From a74b2e14ebf49cfc598b422fc555ebb378c26655 Mon Sep 17 00:00:00 2001 From: aaron <> Date: Tue, 29 Feb 2000 03:45:12 +0000 Subject: [PATCH] Use Dq/Sq and friends. --- src/lib/libc/string/strmode.3 | 45 ++++++++++++++++++++++------------- 1 file changed, 29 insertions(+), 16 deletions(-) diff --git a/src/lib/libc/string/strmode.3 b/src/lib/libc/string/strmode.3 index 3db95370..3703a7ad 100644 --- a/src/lib/libc/string/strmode.3 +++ b/src/lib/libc/string/strmode.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: strmode.3,v 1.6 1998/06/15 17:55:13 mickey Exp $ +.\" $OpenBSD: strmode.3,v 1.7 2000/02/29 03:45:12 aaron Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -53,8 +53,7 @@ converts a file .Xr stat 2 ) into a symbolic string which is stored in the location referenced by .Fa bp . -This stored string is eleven characters in length plus a trailing -.Dv NUL . +This stored string is eleven characters in length plus a trailing null byte. .Pp The first character is the inode type, and will be one of the following: .Pp @@ -83,46 +82,58 @@ The next nine characters encode three sets of permissions, in three characters each. The first three characters are the permissions for the owner of the file, the second three for the group the file belongs to, and the -third for the ``other'', or default, set of users. +third for the +.Dq other , +or default, set of users. .Pp Permission checking is done as specifically as possible. If read permission is denied to the owner of a file in the first set of permissions, the owner of the file will not be able to read the file. This is true even if the owner is in the file's group and the group -permissions allow reading or the ``other'' permissions allow reading. +permissions allow reading or the +.Dq other +permissions allow reading. .Pp -If the first character of the three character set is an ``r'', the file is -readable for that set of users; if a dash ``\-'', it is not readable. +If the first character of the three character set is an +.Sq r , +the file is readable for that set of users; if a dash +.Pq Ql - , +it is not readable. .Pp -If the second character of the three character set is a ``w'', the file is -writable for that set of users; if a dash ``\-'', it is not writable. +If the second character of the three character set is a +.Sq w , +the file is writable for that set of users; if a dash +.Pq Ql - , +it is not writable. .Pp The third character is the first of the following characters that apply: .Bl -tag -width xxxx .It S If the character is part of the owner permissions and the file is not executable or the directory is not searchable by the owner, and the -set-user-id bit is set. +set-user-ID bit is set. .It S If the character is part of the group permissions and the file is not executable or the directory is not searchable by the group, and the -set-group-id bit is set. +set-group-ID bit is set. .It T If the character is part of the other permissions and the file is not -executable or the directory is not searchable by others, and the ``sticky'' +executable or the directory is not searchable by others, and the +.Dq sticky .Pq Dv S_ISVTX bit is set. .It s If the character is part of the owner permissions and the file is -executable or the directory searchable by the owner, and the set-user-id +executable or the directory searchable by the owner, and the set-user-ID bit is set. .It s If the character is part of the group permissions and the file is -executable or the directory searchable by the group, and the set-group-id +executable or the directory searchable by the group, and the set-group-ID bit is set. .It t If the character is part of the other permissions and the file is -executable or the directory searchable by others, and the ``sticky'' +executable or the directory searchable by others, and the +.Dq sticky .Pq Dv S_ISVTX bit is set. .It x @@ -131,7 +142,9 @@ The file is executable or the directory is searchable. None of the above apply. .El .Pp -The last character is a plus sign ``+'' if there are any alternate +The last character is a plus sign +.Pq Ql + +if there are any alternate or additional access control methods associated with the inode, otherwise it will be a space. .Sh RETURN VALUES