OSDN Git Service

77c7fd4bfde094c76d3f420a81685187bb520311
[linuxjm/LDP_man-pages.git] / original / 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  2007-07-26 "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 CONFORMING TO
89 SVr4, 4.3BSD.
90 .SH SEE ALSO
91 .BR getgroups (2),
92 .BR setgroups (2),
93 .BR credentials (7)
94 .SH COLOPHON
95 This page is part of release 3.67 of the Linux
96 .I man-pages
97 project.
98 A description of the project,
99 information about reporting bugs,
100 and the latest version of this page,
101 can be found at
102 \%http://www.kernel.org/doc/man\-pages/.