OSDN Git Service

(split) Convert release and draft pages to UTF-8.
[linuxjm/LDP_man-pages.git] / release / man2 / setfsgid.2
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.
11 .\"
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.
19 .\"
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
26 .\" Modified, 27 May 2004, Michael Kerrisk <mtk.manpages@gmail.com>
27 .\"     Added notes on capability requirements
28 .\"
29 .\" Japanese Version Copyright (c) 1997 HANATAKA Shinya
30 .\"         all rights reserved.
31 .\" Translated Sat Mar  1 00:54:23 JST 1997
32 .\"         by HANATAKA Shinya <hanataka@abyss.rim.or.jp>
33 .\" Modified Mon Sep 23 21:21:54 JST 2000
34 .\"         by HANATAKA Shinya <hanataka@abyss.rim.or.jp>
35 .\" Modified 2002-09-24 by Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
36 .\" Modified 2005-02-24, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
37 .\"
38 .\"WORD:        identity                ID
39 .\"WORD:        kernel                  カーネル
40 .\"WORD:        file system             ファイル・システム
41 .\"WORD:        effective group ID      実効グループID
42 .\"WORD:        real group ID           実グループID
43 .\"WORD:        signal                  シグナル
44 .\"WORD:        security hole           セキュリティ・ホール
45 .\"WORD:        saved set-group-ID      保存セットグループID
46 .\"
47 .TH SETFSGID 2 2008-12-05 "Linux" "Linux Programmer's Manual"
48 .SH 名前
49 setfsgid \- ファイル・システムのチェックに用いられるグループ ID を設定する
50 .SH 書式
51 .B #include <unistd.h>
52 /* glibc では <sys/fsuid.h> */
53 .sp
54 .BI "int setfsgid(uid_t " fsgid );
55 .SH 説明
56 システムコール
57 .BR setfsgid ()
58 は Linux カーネルがファイル・システムに対する
59 全てのアクセスのチェックに使用するグループ IDを設定する。通常は
60 .I fsgid
61 の値は実効 (effective) グループID と同じになる。実際、
62 実効グループ ID が変更される度に
63 .I fsgid
64 もまた新しい実効グループID の値に変更される。
65
66 通常、
67 .BR setfsuid ()
68
69 .BR setfsgid ()
70 が明示的に呼び出されるのは、Linux NFS サーバー のように、
71 ファイル・アクセスに用いるユーザID / グループID を変更しなければならないが、
72 対応する実(real)/実効(effective) ユーザID / グループID は変更したくないような
73 プログラムに限られる。
74 NFS サーバーのようなプログラムで、通常のユーザID を変更すると、
75 プロセスを望まないシグナルにさらす可能性があり、
76 セキュリティ・ホールになる。(下記参照)
77
78 .BR setfsgid ()
79 は、スーパー・ユーザによって呼び出された場合か、
80 .I fsgid
81 が実グループID、実効グループID、
82 保存セットグループID (saved set-group-ID)、現在の
83 .I fsgid
84 の値のいずれかに一致する場合にのみ成功する。
85 .SH 返り値
86 成功した場合、
87 .I fsgid
88 の以前の値を返す。エラーの場合は
89 .I fsgid
90 の現在の値を返す。
91 .SH バージョン
92 このシステムコールはバージョン 1.2 以降の Linux に存在する。
93 .\" This system call is present since Linux 1.1.44
94 .\" and in libc since libc 4.7.6.
95 .SH 準拠
96 .BR setfsgid ()
97 は Linux 特有であり、移植を想定したプログラムで使用してはいけない。
98 .SH 注意
99 glibc が引き数がグループID として不正だと判断した場合は、
100 システム・コールを行わず \fIerrno\fP に
101 .B EINVAL
102 を設定して \-1 が返される。
103 .LP
104 このシステムコールが導入された当時、プロセスは
105 同じ実効ユーザIDのプロセスへシグナルを送ることができた。
106 今日では、シグナル送信権限の扱いはかなり違うものになっている。
107 .SH バグ
108 いかなる種類のエラー・メッセージも返さない。
109 失敗した場合は (呼び出し元には
110 .B CAP_SETGID
111 ケーパビリティがなかったのだから) 最低でも
112 .B EPERM
113 くらいは返すべきである。
114 .SH 関連項目
115 .BR kill (2),
116 .BR setfsuid (2),
117 .BR capabilities (7),
118 .BR credentials (7)