]> git.ipfire.org Git - thirdparty/man-pages.git/blob - man3/initgroups.3
intro.1, ldd.1, clone.2, getgroups.2, getpid.2, getsockopt.2, ioctl_list.2, msgop...
[thirdparty/man-pages.git] / man3 / initgroups.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date. The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein. The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .\" References consulted:
26 .\" Linux libc source code
27 .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
28 .\" 386BSD man pages
29 .\" Modified 1993-07-24 by Rik Faith <faith@cs.unc.edu>
30 .\" Modified 2004-10-10 by aeb
31 .\"
32 .TH INITGROUPS 3 2015-03-29 "GNU" "Linux Programmer's Manual"
33 .SH NAME
34 initgroups \- initialize the supplementary group access list
35 .SH SYNOPSIS
36 .nf
37 .B #include <sys/types.h>
38 .B #include <grp.h>
39 .sp
40 .BI "int initgroups(const char *" user ", gid_t " group );
41 .fi
42 .sp
43 .in -4n
44 Feature Test Macro Requirements for glibc (see
45 .BR feature_test_macros (7)):
46 .in
47 .sp
48 .BR initgroups ():
49 _BSD_SOURCE
50 .SH DESCRIPTION
51 The
52 .BR initgroups ()
53 function initializes the group access list by
54 reading the group database
55 .I /etc/group
56 and using all groups of
57 which
58 .I user
59 is a member.
60 The additional group
61 .I group
62 is
63 also added to the list.
64
65 The
66 .I user
67 argument must be non-NULL.
68 .SH RETURN VALUE
69 The
70 .BR initgroups ()
71 function returns 0 on success.
72 On error, \-1 is returned, and
73 .I errno
74 is set appropriately.
75 .SH ERRORS
76 .TP
77 .B ENOMEM
78 Insufficient memory to allocate group information structure.
79 .TP
80 .B EPERM
81 The calling process has insufficient privilege.
82 See the underlying system call
83 .BR setgroups (2).
84 .SH FILES
85 .nf
86 \fI/etc/group\fP group database file
87 .fi
88 .SH ATTRIBUTES
89 For an explanation of the terms used in this section, see
90 .BR attributes (7).
91 .TS
92 allbox;
93 lb lb lb
94 l l l.
95 Interface Attribute Value
96 T{
97 .BR initgroups ()
98 T} Thread safety MT-Safe locale
99 .TE
100
101 .SH CONFORMING TO
102 SVr4, 4.3BSD.
103 .SH SEE ALSO
104 .BR getgroups (2),
105 .BR setgroups (2),
106 .BR credentials (7)