]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man2/setfsgid.2
Wrapped long lines, wrapped at sentence boundaries; stripped trailing
[thirdparty/man-pages.git] / man2 / setfsgid.2
CommitLineData
fea681da
MK
1.\" Copyright (C) 1995, Thomas K. Dyas <tdyas@eden.rutgers.edu>
2.\"
3.\" Permission is granted to make and distribute verbatim copies of this
4.\" manual provided the copyright notice and this permission notice are
5.\" preserved on all copies.
6.\"
7.\" Permission is granted to copy and distribute modified versions of this
8.\" manual under the conditions for verbatim copying, provided that the
9.\" entire resulting derived work is distributed under the terms of a
10.\" permission notice identical to this one.
c13182ef 11.\"
fea681da
MK
12.\" Since the Linux kernel and libraries are constantly changing, this
13.\" manual page may be incorrect or out-of-date. The author(s) assume no
14.\" responsibility for errors or omissions, or for damages resulting from
15.\" the use of the information contained herein. The author(s) may not
16.\" have taken the same level of care in the production of this manual,
17.\" which is licensed free of charge, as they might when working
18.\" professionally.
c13182ef 19.\"
fea681da
MK
20.\" Formatted or processed versions of this manual, if unaccompanied by
21.\" the source, must acknowledge the copyright and authors of this work.
22.\"
23.\" Created 1995-08-06 Thomas K. Dyas <tdyas@eden.rutgers.edu>
24.\" Modified 2000-07-01 aeb
25.\" Modified 2002-07-23 aeb
305a0578 26.\" Modified, 27 May 2004, Michael Kerrisk <mtk-manpages@gmx.net>
fea681da
MK
27.\" Added notes on capability requirements
28.\"
29.TH SETFSGID 2 2004-05-27 "Linux 2.6.6" "Linux Programmer's Manual"
30.SH NAME
31setfsgid \- set group identity used for file system checks
32.SH SYNOPSIS
33.B #include <unistd.h>
34/* glibc uses <sys/fsuid.h> */
35.sp
36.BI "int setfsgid(uid_t " fsgid );
37.SH DESCRIPTION
38The system call
e511ffb6 39.BR setfsgid ()
fea681da 40sets the group ID that the Linux kernel uses to check for all accesses
c13182ef
MK
41to the file system.
42Normally, the value of
fea681da 43.I fsgid
c13182ef
MK
44will shadow the value of the effective group ID.
45In fact, whenever the
fea681da
MK
46effective group ID is changed,
47.I fsgid
48will also be changed to the new value of the effective group ID.
49
50Explicit calls to
e1d6264d 51.BR setfsuid ()
fea681da 52and
e511ffb6 53.BR setfsgid ()
fea681da
MK
54are usually only used by programs such as the Linux NFS server that
55need to change what user and group ID is used for file access without a
56corresponding change in the real and effective user and group IDs.
57A change in the normal user IDs for a program such as the NFS server
58is a security hole that can expose it to unwanted signals. (But see below.)
59
e511ffb6 60.BR setfsgid ()
fea681da
MK
61will only succeed if the caller is the superuser or if
62.I fsgid
63matches either the real group ID, effective group ID,
64saved set-group-ID, or the current value of
65.IR fsgid .
66.SH "RETURN VALUE"
67On success, the previous value of
68.I fsgid
c13182ef
MK
69is returned.
70On error, the current value of
fea681da
MK
71.I fsgid
72is returned.
73.SH "CONFORMING TO"
e511ffb6 74.BR setfsgid ()
c13182ef 75is Linux specific and should not be used in programs intended
97c1eac8 76to be portable.
fea681da
MK
77It is present since Linux 1.1.44 and in libc since libc 4.7.6.
78.SH BUGS
c13182ef
MK
79No error messages of any kind are returned to the caller.
80At the very
fea681da
MK
81least,
82.B EPERM
83should be returned when the call fails (because the caller lacks the
84.B CAP_SETGID
85capability).
86.SH NOTES
87When glibc determines that the argument is not a valid group ID,
88it will return \-1 and set \fIerrno\fP to EINVAL without attempting
89the system call.
90.LP
91Note that at the time this system call was introduced, a process
92could send a signal to a process with the same effective user ID.
93Today signal permission handling is slightly different.
94.SH "SEE ALSO"
95.BR kill (2),
96.BR setfsuid (2),
97.BR capabilities (7)