OSDN Git Service

(split) Convert release and draft pages to UTF-8.
[linuxjm/LDP_man-pages.git] / draft / man2 / faccessat.2
1 .\" Hey Emacs! This file is -*- nroff -*- source.
2 .\"
3 .\" This manpage is Copyright (C) 2006, Michael Kerrisk
4 .\"
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\"
25 .\" Japanese Version Copyright (c) 2006-2007 Yuichi SATO
26 .\"         all rights reserved.
27 .\" Translated 2006-10-14 by Yuichi SATO <ysato444@yahoo.co.jp>, LDP v2.39
28 .\" Updated & Modified 2007-01-08 by Yuichi SATO, LDP v2.43
29 .\" Updated 2007-05-04, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
30 .\"
31 .TH FACCESSAT 2 2009-12-13 "Linux" "Linux Programmer's Manual"
32 .\"O .SH NAME
33 .SH 名前
34 .\"O faccessat \- check user's permissions of a file relative to a \
35 .\"O directory file descriptor
36 faccessat \- ディレクトリファイルディスクリプタから相対的な位置にある
37 ファイルのアクセス権をチェックする
38 .\"O .SH SYNOPSIS
39 .SH 書式
40 .nf
41 .\"O .B #include <fcntl.h>           /* Definition of AT_* constants */
42 .B #include <fcntl.h>           /* AT_* 定数の定義 */
43 .B #include <unistd.h>
44 .sp
45 .BI "int faccessat(int " dirfd ", const char *" pathname ", int " \
46 mode ", int " flags );
47 .fi
48 .sp
49 .in -4n
50 .\"O Feature Test Macro Requirements for glibc (see
51 .\"O .BR feature_test_macros (7)):
52 glibc 向けの機能検査マクロの要件
53 .RB ( feature_test_macros (7)
54 参照):
55 .in
56 .sp
57 .BR faccessat ():
58 .PD 0
59 .ad l
60 .RS 4
61 .TP 4
62 .\"O Since glibc 2.10:
63 glibc 2.10 以降:
64 _XOPEN_SOURCE\ >=\ 700 || _POSIX_C_SOURCE\ >=\ 200809L
65 .TP
66 .\"O Before glibc 2.10:
67 glibc 2.10 より前:
68 _ATFILE_SOURCE
69 .RE
70 .ad
71 .PD
72 .\"O .SH DESCRIPTION
73 .SH 説明
74 .\"O The
75 .\"O .BR faccessat ()
76 .\"O system call operates in exactly the same way as
77 .\"O .BR access (2),
78 .\"O except for the differences described in this manual page.
79 .BR faccessat ()
80 システムコールは、この man ページで説明している違いがある以外は、
81 .BR access (2)
82 と全く同じように動作する。
83
84 .\"O If the pathname given in
85 .\"O .I pathname
86 .\"O is relative, then it is interpreted relative to the directory
87 .\"O referred to by the file descriptor
88 .\"O .I dirfd
89 .\"O (rather than relative to the current working directory of
90 .\"O the calling process, as is done by
91 .\"O .BR access (2)
92 .\"O for a relative pathname).
93 .I pathname
94 で指定されるパス名が相対パスである場合、
95 ファイルディスクリプタ
96 .I dirfd
97 で参照されるディレクトリからの相対パス名として解釈される
98 .RB ( access (2)
99 では、相対パスは呼び出し元プロセスのカレントワーキングディレクトリからの
100 相対パスとなる)。
101
102 .\"O If
103 .\"O .I pathname
104 .\"O is relative and
105 .\"O .I dirfd
106 .\"O is the special value
107 .\"O .BR AT_FDCWD ,
108 .\"O then
109 .\"O .I pathname
110 .\"O is interpreted relative to the current working
111 .\"O directory of the calling process (like
112 .\"O .BR access (2)).
113 .I pathname
114 が相対パスであり、かつ
115 .I dirfd
116 が特別な値
117 .B AT_FDCWD
118 である場合、
119 .I pathname
120
121 .RB ( access (2)
122 と同じように) 呼び出し元プロセスの
123 カレントワーキングディレクトリからの相対パス名として解釈される。
124
125 .\"O If
126 .\"O .I pathname
127 .\"O is absolute, then
128 .\"O .I dirfd
129 .\"O is ignored.
130 .I pathname
131 が絶対パスである場合、
132 .I dirfd
133 は無視される。
134
135 .\"O .I flags
136 .\"O is constructed by ORing together zero or more of the following values:
137 .I flags
138 は以下の値を 0 個以上 OR して作られる。
139 .TP
140 .B AT_EACCESS
141 .\"O Perform access checks using the effective user and group IDs.
142 .\"O By default,
143 .\"O .BR faccessat ()
144 .\"O uses the real IDs (like
145 .\"O .BR access (2)).
146 実効 (effective) ユーザ ID と実効グループ ID を使って、
147 アクセス権のチェックを行う。
148 デフォルトでは、
149 .BR faccessat ()
150
151 .RB ( access (2)
152 と同様に) 実 ID を使う。
153 .TP
154 .B AT_SYMLINK_NOFOLLOW
155 .\"O If
156 .\"O .I pathname
157 .\"O is a symbolic link, do not dereference it:
158 .\"O instead return information about the link itself.
159 .I pathname
160 がシンボリックリンクの場合は、それを辿るのではなく、
161 リンク自身についての情報を返す。
162 .\"O .SH "RETURN VALUE"
163 .SH 返り値
164 .\"O On success, (all requested permissions granted)
165 .\"O .BR faccessat ()
166 .\"O returns 0.
167 成功した場合 (全ての要求された許可が得られたら)、
168 .BR faccessat ()
169 は 0 を返す。
170 .\"O On error, \-1 is returned and
171 .\"O .I errno
172 .\"O is set to indicate the error.
173 エラーの場合、\-1 が返され、
174 .I errno
175 にはエラーを示す値が設定される。
176 .\"O .SH ERRORS
177 .SH エラー
178 .\"O The same errors that occur for
179 .\"O .BR access (2)
180 .\"O can also occur for
181 .\"O .BR faccessat ().
182 .BR access (2)
183 と同じエラーが
184 .BR faccessat ()
185 でも起こる。
186 .\"O The following additional errors can occur for
187 .\"O .BR faccessat ():
188 .BR faccessat ()
189 では、その他に以下のエラーが起こる:
190 .TP
191 .B EBADF
192 .\"O .I dirfd
193 .\"O is not a valid file descriptor.
194 .I dirfd
195 が有効なファイルディスクリプタでない。
196 .TP
197 .B EINVAL
198 .\"O Invalid flag specified in
199 .\"O .IR flags .
200 .I flags
201 に不正なフラグ値が指定された。
202 .TP
203 .B ENOTDIR
204 .\"O .I pathname
205 .\"O is relative and
206 .\"O .I dirfd
207 .\"O is a file descriptor referring to a file other than a directory.
208 .I pathname
209 が相対パスで、かつ
210 .I dirfd
211 がディレクトリ以外のファイルを参照するファイルディスクリプタである。
212 .\"O .SH VERSIONS
213 .SH バージョン
214 .\"O .BR faccessat ()
215 .\"O was added to Linux in kernel 2.6.16.
216 .BR faccessat ()
217 は Linux カーネル 2.6.16 で追加された。
218 .\"O .SH "CONFORMING TO"
219 .SH 準拠
220 POSIX.1-2008.
221 .\"O .SH NOTES
222 .SH 注意
223 .\"O See
224 .\"O .BR openat (2)
225 .\"O for an explanation of the need for
226 .\"O .BR faccessat ().
227 .BR faccessat ()
228 が必要な理由については、
229 .BR openat (2)
230 を参照すること。
231 .\"O .SS Glibc Notes
232 .SS glibc についての注意
233 .\"O The
234 .\"O .B AT_EACCESS
235 .\"O and
236 .\"O .B AT_SYMLINK_NOFOLLOW
237 .\"O flags are actually implemented within the glibc wrapper function for
238 .\"O .BR faccessat ().
239 .B AT_EACCESS
240
241 .B AT_SYMLINK_NOFOLLOW
242 フラグは、
243 .BR faccessat ()
244 の glibc ラッパー関数で実際に実装されている。
245 .\"O If either of these flags are specified, then the wrapper function employs
246 .\"O .BR fstatat (2)
247 .\"O to determine access permissions.
248 これらのフラグのいずれかが指定された場合、
249 ラッパー関数はアクセス権を決定するために
250 .BR fstatat (2)
251 を使う。
252 .\"O .SH "SEE ALSO"
253 .SH 関連項目
254 .BR access (2),
255 .BR openat (2),
256 .BR eauidaccess (3),
257 .BR credentials (7),
258 .BR path_resolution (7),
259 .BR symlink (7)