OSDN Git Service

376470abf08a7e8e3aee124cbb55de73496642e7
[linuxjm/LDP_man-pages.git] / draft / man2 / getxattr.2
1 .\"
2 .\" Extended attributes system calls manual pages
3 .\"
4 .\" Copyright (C) Andreas Gruenbacher, February 2001
5 .\" Copyright (C) Silicon Graphics Inc, September 2001
6 .\"
7 .\" This is free documentation; you can redistribute it and/or
8 .\" modify it under the terms of the GNU General Public License as
9 .\" published by the Free Software Foundation; either version 2 of
10 .\" the License, or (at your option) any later version.
11 .\"
12 .\" The GNU General Public License's references to "object code"
13 .\" and "executables" are to be interpreted as the output of any
14 .\" document formatting or typesetting system, including
15 .\" intermediate and printed output.
16 .\"
17 .\" This manual is distributed in the hope that it will be useful,
18 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
19 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20 .\" GNU General Public License for more details.
21 .\"
22 .\" You should have received a copy of the GNU General Public
23 .\" License along with this manual; if not, write to the Free
24 .\" Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111,
25 .\" USA.
26 .\"
27 .\" Japanese Version Copyright (c) 2003  Akihiro MOTOKI
28 .\"         all rights reserved.
29 .\" Translated Tue Jul  8 02:47:19 JST 2003
30 .\"         by Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
31 .\"
32 .\"WORD:        extended attributes     拡張属性
33 .\"WORD:        namespace               名前空間
34 .\"
35 .TH GETXATTR 2 2001-12-01 "Linux" "Linux Programmer's Manual"
36 .\"O .SH NAME
37 .\"O getxattr, lgetxattr, fgetxattr \- retrieve an extended attribute value
38 .SH 名前
39 getxattr, lgetxattr, fgetxattr \- 拡張属性の値を取得する
40 .\"O .SH SYNOPSIS
41 .SH 書式
42 .fam C
43 .nf
44 .B #include <sys/types.h>
45 .B #include <attr/xattr.h>
46 .sp
47 .BI "ssize_t getxattr(const char\ *" path ", const char\ *" name ,
48 .BI "                 void\ *" value ", size_t " size );
49 .BI "ssize_t lgetxattr(const char\ *" path ", const char\ *" name ,
50 .BI "                 void\ *" value ", size_t " size );
51 .BI "ssize_t fgetxattr(int " fd ", const char\ *" name ,
52 .BI "                 void\ *" value ", size_t " size );
53 .fi
54 .fam T
55 .\"O .SH DESCRIPTION
56 .SH 説明
57 .\"O Extended attributes are
58 .\"O .IR name :\c
59 .\"O .I value
60 .\"O pairs associated with inodes (files, directories, symbolic links, etc.).
61 .\"O They are extensions to the normal attributes which are associated
62 .\"O with all inodes in the system (i.e., the
63 .\"O .BR stat (2)
64 .\"O data).
65 .\"O A complete overview of extended attributes concepts can be found in
66 .\"O .BR attr (5).
67 拡張属性は、inode (ファイル、ディレクトリ、シンボリックリンク等) に
68 関連付けられた
69 .IR name :\c
70 .I value
71 の対である。
72 これらは、システム上のすべての inode に関連付けられた通常の属性
73 .RB ( stat (2)
74 が返すデータ) を拡張するものである。
75 拡張属性のコンセプトは
76 .BR attr (5)
77 に書かれている。
78 .PP
79 .\"O .BR getxattr ()
80 .\"O retrieves the
81 .\"O .I value
82 .\"O of the extended attribute identified by
83 .\"O .I name
84 .\"O and associated with the given
85 .\"O .I path
86 .\"O in the file system.
87 .\"O The length of the attribute
88 .\"O .I value
89 .\"O is returned.
90 .BR getxattr ()
91 は、ファイルシステム内の指定された
92 .I path
93 に対応する、名前
94 .I name
95 の拡張属性の
96 .I value
97 (値) を取得する。
98 属性
99 .I value
100 の長さが返される。
101 .PP
102 .\"O .BR lgetxattr ()
103 .\"O is identical to
104 .\"O .BR getxattr (),
105 .\"O except in the case of a symbolic link, where the link itself is
106 .\"O interrogated, not the file that it refers to.
107 .BR lgetxattr ()
108
109 .BR getxattr ()
110 と同じだが、シンボリックリンクの場合に、リンクが参照しているファイル
111 ではなく、リンクそのものの情報を取得する点だけが異なる。
112 .PP
113 .\"O .BR fgetxattr ()
114 .\"O is identical to
115 .\"O .BR getxattr (),
116 .\"O only the open file referred to by
117 .\"O .I fd
118 .\"O (as returned by
119 .\"O .BR open (2))
120 .\"O is interrogated in place of
121 .\"O .IR path .
122 .BR fgetxattr ()
123
124 .BR getxattr ()
125 と同じだが、
126 .I path
127 の代わりに
128 .I fd
129 で参照されたオープン済みファイルの情報だけを取得する点が異なる
130 .RI ( fd
131
132 .BR open (2)
133 によって返される)。
134 .PP
135 .\"O An extended attribute
136 .\"O .I name
137 .\"O is a simple null-terminated string.
138 .\"O The name includes a namespace prefix; there may be several, disjoint
139 .\"O namespaces associated with an individual inode.
140 .\"O The value of an extended attribute is a chunk of arbitrary textual or
141 .\"O binary data of specified length.
142 拡張属性の名前
143 .I name
144 は普通の NULL 終端された文字列である。
145 名前には、名前空間を表す接頭辞 (prefix) が含まれる;
146 個々の inode に対して、互いに独立な名前空間が複数あってもよい。
147 拡張属性の値は、ある一定の長さの任意のテキスト・データまたは
148 バイナリ・データの集合である。
149 .PP
150 .\"O An empty buffer of
151 .\"O .I size
152 .\"O zero can be passed into these calls to return the current size of the
153 .\"O named extended attribute, which can be used to estimate the size of a
154 .\"O buffer which is sufficiently large to hold the value associated with
155 .\"O the extended attribute.
156 .I size
157 に 0 を指定して空のバッファをこれらのシステムコールに渡すことができ、
158 この場合には指定された名前の拡張属性の現在のサイズが返される。
159 この方法は、拡張属性の値を保持するのに十分な大きさのバッファ・サイズを
160 見積もるのに使うことができる、
161 .PP
162 .\"O The interface is designed to allow guessing of initial buffer
163 .\"O sizes, and to enlarge buffers when the return value indicates
164 .\"O that the buffer provided was too small.
165 このシステムコール・インタフェースは、初期バッファのサイズの推測をしたり、
166 与えられたバッファが小さすぎたことを返り値で知らせることでバッファを大きく
167 したりできるように設計されている。
168 .\"O .SH RETURN VALUE
169 .SH 返り値
170 .\"O On success, a positive number is returned indicating the size of the
171 .\"O extended attribute value.
172 .\"O On failure, \-1 is returned and
173 .\"O .I errno
174 .\"O is set appropriately.
175 成功した場合、拡張属性の値の長さを表す正の数が返される。
176 失敗した場合、 \-1 が返され、
177 .I errno
178 に適切な値がセットされる。
179 .PP
180 .\"O If the named attribute does not exist, or the process has no access to
181 .\"O this attribute,
182 .\"O .I errno
183 .\"O is set to
184 .\"O .BR ENOATTR .
185 指定された名前の属性が存在しない場合、またはプロセスがその属性にアクセス
186 する権限がない場合、
187 .I errno
188
189 .B ENOATTR
190 がセットされる。
191 .PP
192 .\"O If the
193 .\"O .I size
194 .\"O of the
195 .\"O .I value
196 .\"O buffer is too small to hold the result,
197 .\"O .I errno
198 .\"O is set to
199 .\"O .B ERANGE .
200 .I value
201 バッファの大きさ
202 .I size
203 が結果を保持するのに十分な大きさでない場合、
204 .I errno
205
206 .B ERANGE
207 がセットされる。
208 .PP
209 .\"O If extended attributes are not supported by the file system, or are disabled,
210 .\"O .I errno
211 .\"O is set to
212 .\"O .B ENOTSUP .
213 拡張属性がそのファイルシステムでサポートされていない場合、
214 もしくは無効になっている場合、
215 .I errno
216
217 .B ENOTSUP
218 がセットされる。
219 .PP
220 .\"O The errors documented for the
221 .\"O .BR stat (2)
222 .\"O system call are also applicable here.
223 .BR stat (2)
224 システムコールの説明に書かれているエラーは
225 これらのシステムコールにも適用される。
226 .\"O .SH VERSIONS
227 .SH バージョン
228 .\"O These system calls have been available on Linux since kernel 2.4;
229 .\"O glibc support is provided since version 2.3.
230 これらのシステムコールはカーネル 2.4 以降の Linux で利用できる。
231 glibc でのサポートはバージョン 2.3 以降で行われている。
232 .\"O .SH "CONFORMING TO"
233 .SH 準拠
234 .\"O These system calls are Linux-specific.
235 これらのシステムコールは Linux 独自である。
236 .\"O .\" .SH AUTHORS
237 .\" .SH 著者
238 .\"O .\" Andreas Gruenbacher,
239 .\"O .\" .RI < a.gruenbacher@computer.org >
240 .\"O .\" and the SGI XFS development team,
241 .\"O .\" .RI < linux-xfs@oss.sgi.com >.
242 .\"O .\" Please send any bug reports or comments to these addresses.
243 .\" Andreas Gruenbacher,
244 .\" .RI < a.gruenbacher@computer.org >
245 .\" と SGI XFS 開発チーム,
246 .\" .RI < linux-xfs@oss.sgi.com >。
247 .\" バグレポートやコメントは上記のアドレスまで送って下さい。
248 .\"O .SH SEE ALSO
249 .SH 関連項目
250 .BR getfattr (1),
251 .BR setfattr (1),
252 .BR listxattr (2),
253 .BR open (2),
254 .BR removexattr (2),
255 .BR setxattr (2),
256 .BR stat (2),
257 .BR attr (5),
258 .BR symlink (7)