xref: /freebsd/lib/libc/string/strmode.3 (revision 17ee9d00bc1ae1e598c38f25826f861e4bc6c3ce)
1.\" Copyright (c) 1990, 1991, 1993
2.\"	The Regents of the University of California.  All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\"    must display the following acknowledgement:
14.\"	This product includes software developed by the University of
15.\"	California, Berkeley and its contributors.
16.\" 4. Neither the name of the University nor the names of its contributors
17.\"    may be used to endorse or promote products derived from this software
18.\"    without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\"     @(#)strmode.3	8.2 (Berkeley) 12/11/93
33.\"
34.Dd December 11, 1993
35.Dt STRMODE 3
36.Os
37.Sh NAME
38.Nm strmode
39.Nd convert inode status information into a symbolic string
40.Sh SYNOPSIS
41.Fd #include <string.h>
42.Ft void
43.Fn strmode "mode_t mode" "char *bp"
44.Sh DESCRIPTION
45The
46.Fn strmode
47function
48converts a file
49.Fa mode
50(the type and permission information associated with an inode, see
51.Xr stat 2 )
52into a symbolic string which is stored in the location referenced by
53.Fa bp .
54This stored string is eleven characters in length plus a trailing
55.Dv NULL .
56.Pp
57The first character is the inode type, and will be one of the following:
58.Pp
59.Bl -tag -width flag -offset indent -compact
60.It \-
61regular file
62.It b
63block special
64.It c
65character special
66.It d
67directory
68.It l
69symbolic link
70.It p
71fifo
72.It s
73socket
74.It ?
75unknown inode type
76.El
77.Pp
78The next nine characters encode three sets of permissions, in three
79characters each.
80The first three characters are the permissions for the owner of the
81file, the second three for the group the file belongs to, and the
82third for the ``other'', or default, set of users.
83.Pp
84Permission checking is done as specifically as possible.
85If read permission is denied to the owner of a file in the first set
86of permissions, the owner of the file will not be able to read the file.
87This is true even if the owner is in the file's group and the group
88permissions allow reading or the ``other'' permissions allow reading.
89.Pp
90If the first character of the three character set is an ``r'', the file is
91readable for that set of users; if a dash ``\-'', it is not readable.
92.Pp
93If the second character of the three character set is a ``w'', the file is
94writable for that set of users; if a dash ``\-'', it is not writable.
95.Pp
96The third character is the first of the following characters that apply:
97.Bl -tag -width xxxx
98.It S
99If the character is part of the owner permissions and the file is not
100executable or the directory is not searchable by the owner, and the
101set-user-id bit is set.
102.It S
103If the character is part of the group permissions and the file is not
104executable or the directory is not searchable by the group, and the
105set-group-id bit is set.
106.It T
107If the character is part of the other permissions and the file is not
108executable or the directory is not searchable by others, and the ``sticky''
109.Pq Dv S_ISVTX
110bit is set.
111.It s
112If the character is part of the owner permissions and the file is
113executable or the directory searchable by the owner, and the set-user-id
114bit is set.
115.It s
116If the character is part of the group permissions and the file is
117executable or the directory searchable by the group, and the set-group-id
118bit is set.
119.It t
120If the character is part of the other permissions and the file is
121executable or the directory searchable by others, and the ``sticky''
122.Pq Dv S_ISVTX
123bit is set.
124.It x
125The file is executable or the directory is searchable.
126.It \-
127None of the above apply.
128.El
129.Pp
130The last character is a plus sign ``+'' if any there are any alternate
131or additional access control methods associated with the inode, otherwise
132it will be a space.
133.Sh RETURN VALUES
134The
135.Fn strmode
136function
137always returns 0.
138.Sh SEE ALSO
139.Xr chmod 1 ,
140.Xr find 1 ,
141.Xr stat 2 ,
142.Xr getmode 3 ,
143.Xr setmode 3
144.Sh HISTORY
145The
146.Fn strmode
147function first appeared in 4.4BSD.
148