]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - share/man/man5/group.5
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / share / man / man5 / group.5
1 .\" Copyright (c) 1980, 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 .\"     From: @(#)group.5       8.3 (Berkeley) 4/19/94
33 .\" $FreeBSD$
34 .\"
35 .Dd February 8, 2013
36 .Dt GROUP 5
37 .Os
38 .Sh NAME
39 .Nm group
40 .Nd format of the group permissions file
41 .Sh DESCRIPTION
42 The
43 .Nm
44 file is the local source of group information.
45 It can be used in conjunction with the Hesiod domain
46 `group', and the NIS maps `group.byname' and `group.bygid',
47 as controlled by
48 .Xr nsswitch.conf 5 .
49 .Pp
50 The file
51 .Nm
52 consists of newline separated
53 .Tn ASCII
54 records, one per group, containing four colon
55 .Ql \&:
56 separated fields.
57 These fields are as follows:
58 .Bl -tag -width password -offset indent -compact
59 .It group
60 Name of the group.
61 .It passwd
62 Group's
63 .Em encrypted
64 password.
65 .It gid
66 The group's decimal ID.
67 .It member
68 Group members.
69 .El
70 .Pp
71 Lines whose first non-whitespace character is a pound-sign (#)
72 are comments, and are ignored.
73 Blank lines that consist
74 only of spaces, tabs or newlines are also ignored.
75 .Pp
76 The
77 .Ar group
78 field is the group name used for granting file access to users
79 who are members of the group.
80 The
81 .Ar gid
82 field is the number associated with the group name.
83 They should both be unique across the system (and often
84 across a group of systems) since they control file access.
85 The
86 .Ar passwd
87 field
88 is an optional
89 .Em encrypted
90 password.
91 This field is rarely used
92 and an asterisk is normally placed in it rather than leaving it blank.
93 The
94 .Ar member
95 field contains the names of users granted the privileges of
96 .Ar group .
97 The member names are separated by commas without spaces or newlines.
98 A user is automatically in a group if that group was specified
99 in their
100 .Pa /etc/passwd
101 entry and does not need to be added to that group in the
102 .Nm
103 file.
104 .\" .Pp
105 .\" When the system reads the file
106 .\" .Pa /etc/group
107 .\" the fields are read into the structure
108 .\" .Fa group
109 .\" declared in
110 .\" .In grp.h :
111 .\" .Bd -literal -offset indent
112 .\" struct group {
113 .\"     char    *gr_name;        /* group name */
114 .\"     char    *gr_passwd;      /* group password */
115 .\"     int     gr_gid;          /* group id */
116 .\"     char    **gr_mem;        /* group members */
117 .\" };
118 .\" .Ed
119 .Sh IMPLEMENTATION NOTES
120 The
121 .Xr passwd 1
122 command does not change the
123 .Nm
124 passwords.
125 The
126 .Xr pw 8
127 utility's
128 .Cm groupmod
129 command should be used instead.
130 .Sh LIMITS
131 There are various limitations which are explained in
132 the function where they occur; see section
133 .Sx SEE ALSO .
134 .Pp
135 In older implementations,
136 a group cannot have more than 200 members.
137 The maximum line length of
138 .Pa /etc/group
139 is 1024 characters.
140 Longer lines will be skipped.
141 This limitation disappeared in
142 .Fx 3.0 .
143 Older binaries that are statically linked, depend on old
144 shared libraries, or
145 .No non- Ns Fx
146 binaries in compatibility mode
147 may still have this limit.
148 .Sh FILES
149 .Bl -tag -width /etc/group -compact
150 .It Pa /etc/group
151 .El
152 .Sh SEE ALSO
153 .Xr newgrp 1 ,
154 .Xr passwd 1 ,
155 .Xr setgroups 2 ,
156 .Xr crypt 3 ,
157 .Xr getgrent 3 ,
158 .Xr initgroups 3 ,
159 .Xr nsswitch.conf 5 ,
160 .Xr passwd 5 ,
161 .Xr chkgrp 8 ,
162 .Xr pw 8 ,
163 .Xr yp 8
164 .Sh HISTORY
165 A
166 .Nm
167 file format appeared in
168 .At v6 .
169 Support for comments first appeared in
170 .Fx 3.0 .