]> git.saurik.com Git - apple/xnu.git/blob - bsd/man/man2/getdirentriesattr.2
xnu-4903.270.47.tar.gz
[apple/xnu.git] / bsd / man / man2 / getdirentriesattr.2
1 q.\" Copyright (c) 2003 Apple Computer, Inc. All rights reserved.
2 .\"
3 .\" The contents of this file constitute Original Code as defined in and
4 .\" are subject to the Apple Public Source License Version 1.1 (the
5 .\" "License"). You may not use this file except in compliance with the
6 .\" License. Please obtain a copy of the License at
7 .\" http://www.apple.com/publicsource and read it before using this file.
8 .\"
9 .\" This Original Code and all software distributed under the License are
10 .\" distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
11 .\" EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
12 .\" INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
13 .\" FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
14 .\" License for the specific language governing rights and limitations
15 .\" under the License.
16 .\"
17 .\" @(#)getdirentriesattr.2
18 .
19 .Dd December 15, 2003
20 .Dt GETDIRENTRIESATTR 2
21 .Os Darwin
22 .Sh NAME
23 .Nm getdirentriesattr(NOW DEPRECATED)
24 .Nd get file system attributes for multiple directory entries
25 .Sh SYNOPSIS
26 .Fd #include <sys/attr.h>
27 .Fd #include <unistd.h>
28 .Pp
29 .Fd #if __LP64__
30 .Ft int
31 .Fn getdirentriesattr "int fd" "struct attrlist * attrList" "void * attrBuf" "size_t attrBufSize" "unsigned int * count" "unsigned int * basep" "unsigned int * newState" "unsigned int options"
32 .Fd #else
33 .Ft int
34 .Fn getdirentriesattr "int fd" "struct attrlist * attrList" "void * attrBuf" "size_t attrBufSize" "unsigned long * count" "unsigned long * basep" "unsigned long * newState" "unsigned long options"
35 .Fd #endif
36 .
37 .
38 .Sh DESCRIPTION
39 The
40 .Fn getdirentriesattr
41 function reads directory entries and returns their attributes (that is, metadata).
42 You can think of it as a combination of
43 .Xr getdirentries 2
44 and
45 .Xr getattrlist 2 .
46 .Fn getdirentriesattr
47 iterates over the items in a directory like
48 .Xr getdirentries 2 ,
49 and returns information about each directory entry like
50 .Xr getattrlist 2 .
51 Note: when
52 .Fn getdirentriesattr
53 returns information about a symbolic link, the information returned is about the link itself, not the target of the link.
54 .Pp
55 The function reads directory entries from the directory referenced by the
56 file descriptor
57 .Fa fd .
58 Attributes of those directory entries are placed into the buffer specified by
59 .Fa attrBuf
60 and
61 .Fa attrBufSize .
62 The
63 .Fa attrList
64 parameter determines what attributes are returned for each entry.
65 The
66 .Fa count
67 parameter contains the number of directory entries requested and returned.
68 The
69 .Fa basep
70 parameter returns the directory offset in a manner similar to
71 .Xr getdirentries 2 .
72 The
73 .Fa newState
74 parameter allows you to check whether the directory has been modified while
75 you were reading it.
76 The
77 .Fa options
78 parameter lets you control specific aspects of the function's behaviour.
79 .Pp
80 .
81 The
82 .Fn getdirentriesattr
83 function is only supported by certain volume format implementations.
84 For maximum compatibility, client programs should use high-level APIs
85 (such as the Carbon File Manager) to access file system attributes.
86 These high-level APIs include logic to emulate file system attributes
87 on volumes that don't support
88 .Fn getdirentriesattr .
89 .Pp
90 .
91 .\" fd parameter
92 .
93 The
94 .Fa fd
95 parameter must be a file descriptor that references a directory that you have opened for reading.
96 .Pp
97 .
98 .\" attrList parameter
99 .
100 The
101 .Fa attrList
102 parameter is a pointer to an
103 .Vt attrlist
104 structure.
105 You are responsible for filling out all fields of this structure before calling the function.
106 See the discussion of the
107 .Xr getattrlist 2
108 function for a detailed description of this structure.
109 To get an attribute you must set the corresponding bit in the appropriate
110 .Vt attrgroup_t
111 field of the
112 .Vt attrlist
113 structure.
114 You must not request volume attributes.
115 .Pp
116 .
117 .\" attrBuf and attrBufSize parameters
118 .
119 The
120 .Fa attrBuf
121 and
122 .Fa attrBufSize
123 parameters specify a buffer into which the function places attribute values.
124 The attributes for any given directory entry are grouped together and
125 packed in exactly the same way as they are returned from
126 .Xr getattrlist 2 .
127 These groups are then placed into the buffer, one after another.
128 As each group starts with a leading
129 .Vt u_int32_t
130 that contains the
131 overall length of the group, you can step from one group to the next
132 by simply adding this length to your pointer.
133 The sample code (below) shows how to do this.
134 The initial contents of this buffer are ignored.
135 .Pp
136 .
137 .\" count parameter
138 .
139 The
140 .Fa count
141 parameter points to an
142 .Vt unsigned long
143 or
144 .Vt unsigned int
145 variable.
146 You should initialise this variable to be the number of directory entries for which
147 you wish to get attributes.
148 On return, this variable contains the number of directory entries whose attributes
149 have been placed into the attribute buffer.
150 This may be smaller than the number that you requested.
151 .Pp
152 .
153 .\" basep parameter
154 The
155 .Fa basep
156 parameter returns the offset of the last directory entry read, in a
157 manner identical to
158 .Xr getdirentries 2 .
159 You can use this value to reset a directory iteration to a known position
160 using
161 .Xr lseek 2 .
162 However, since the variable is too small to hold an
163 .Vt off_t ,
164 you should use
165 .Xr lseek 2
166 to get the directory's current position instead of using this parameter.
167 The initial value of the variable is ignored.
168 .Pp
169 .
170 .\" newState parameter
171 .
172 The
173 .Fa newState
174 parameter returns a value that changes if the directory has been modified.
175 If you're iterating through the directory by making repeated calls to
176 .Fn getdirentriesattr ,
177 you can compare subsequent values of
178 .Fa newState
179 to determine whether the directory has been modified (and thus restart
180 your iteration at the beginning).
181 The initial value of the variable is ignored.
182 .Pp
183 .
184 .\" options parameter
185 .
186 The
187 .Fa options
188 parameter is a bit set that controls the behaviour of
189 .Fn getdirentriesattr .
190 The following option bits are defined.
191 .
192 .Bl -tag -width FSOPT_NOINMEMUPDATE
193 .
194 .It FSOPT_NOINMEMUPDATE
195 This tells
196 .Fn getdirentriesattr
197 to return the directory entries from disk rather than taking the extra step of looking
198 at data structures in-memory which may contain changes that haven't been flushed to disk.
199 .Pp
200 This option allowed for specific performance optimizations for specific clients on older systems.
201 We currently recommend that clients not set this option and that file system
202 implementations ignore it.
203 .
204 .El
205 .Pp
206 It is typical to ask for a combination of common, file, and directory
207 attributes and then use the value of the
208 .Dv ATTR_CMN_OBJTYPE
209 attribute to parse the resulting attribute buffer.
210 .Sh NOTES
211 As of Mac OS X 10.10,
212 .Fn getdirentriesattr
213 is deprecated. It is replaced by
214 .Nm getattrlistbulk(2).
215 Continued use of
216 .Fn getdirentriesattr
217 is strongly discouraged as comprehensive results are not guaranteed.
218 .Sh RETURN VALUES
219 Upon successful completion a value of 0 or 1 is returned.
220 The value 0 indicates that the routine completed successfully.
221 The value 1 indicates that the routine completed successfully and has
222 returned the last entry in the directory.
223 On error, a value of -1 is returned and
224 .Va errno
225 is set to indicate the error.
226 .
227 .Sh COMPATIBILITY
228 Not all volumes support
229 .Fn getdirentriesattr .
230 You can test whether a volume supports
231 .Fn getdirentriesattr
232 by using
233 .Xr getattrlist 2
234 to get the volume capabilities attribute
235 .Dv ATTR_VOL_CAPABILITIES ,
236 and then testing the
237 .Dv VOL_CAP_INT_READDIRATTR
238 flag.
239 .Pp
240 .
241 The
242 .Fn getdirentriesattr
243 function has been undocumented for more than two years.
244 In that time a number of volume format implementations have been created without
245 a proper specification for the behaviour of this routine.
246 You may encounter volume format implementations with slightly different
247 behaviour than what is described here.
248 Your program is expected to be tolerant of this variant behaviour.
249 .Pp
250 .
251 If you're implementing a volume format that supports
252 .Fn getdirentriesattr ,
253 you should be careful to support the behaviour specified by this document.
254 .
255 .Pp
256 If the directory contains a mount point, then
257 .Dv DIR_MNTSTATUS_MNTPOINT
258 will be set in the
259 .Dv ATTR_DIR_MOUNTSTATUS
260 for that entry; all other attributes for that entry, however,
261 will be for the underlying file system (as opposed to the mounted
262 file system).
263 .Xr getattrlist 2
264 should be used to get the attributes for the mount point.
265 .Sh ERRORS
266 .Fn getdirentriesattr
267 will fail if:
268 .Bl -tag -width Er
269 .
270 .It Bq Er ENOTSUP
271 The volume does not support
272 .Fn getdirentriesattr .
273 .
274 .It Bq Er EBADF
275 .Fa fd
276 is not a valid file descriptor for a directory open for reading.
277 .
278 .It Bq Er EFAULT
279 .Fa attrList
280 or
281 .Em attrBuf
282 points to an invalid address.
283 .
284 .It Bq Er EINVAL
285 The
286 .Fa bitmapcount
287 field of
288 .Fa attrList
289 is not
290 .Dv ATTR_BIT_MAP_COUNT .
291 .
292 .It Bq Er EINVAL
293 You requested an invalid attribute.
294 .
295 .It Bq Er EINVAL
296 You requested volume attributes.
297 .
298 .It Bq Er EINVAL
299 The
300 .Fa options
301 parameter contains an invalid flag.
302 .
303 .It Bq Er EIO
304 An I/O error occurred while reading from or writing to the file system.
305 .El
306 .Pp
307 .
308 .Sh EXAMPLES
309 .
310 The following code lists the contents of a directory using
311 .Fn getdirentriesattr .
312 The listing includes the file type and creator for files.
313 .
314 .Bd -literal
315 #include <assert.h>
316 #include <stdio.h>
317 #include <stddef.h>
318 #include <string.h>
319 #include <sys/attr.h>
320 #include <sys/errno.h>
321 #include <unistd.h>
322 #include <sys/vnode.h>
323 #include <stdbool.h>
324 #include <fcntl.h>
325 .Pp
326 .
327 typedef struct attrlist attrlist_t;
328 .Pp
329 .
330 struct FInfoAttrBuf {
331 u_int32_t length;
332 attrreference_t name;
333 fsobj_type_t objType;
334 char finderInfo[32];
335 u_int32_t dirStatus;
336 } __attribute__((aligned(4), packed));
337 typedef struct FInfoAttrBuf FInfoAttrBuf;
338 .Pp
339 .
340 enum {
341 kEntriesPerCall = 10
342 };
343 .Pp
344 .
345 static int FInfoDemo(const char *dirPath)
346 {
347 int err;
348 int junk;
349 int dirFD;
350 attrlist_t attrList;
351 #ifdef __LP64__
352 unsigned int index;
353 unsigned int count;
354 unsigned int junkBaseP;
355 unsigned int oldState;
356 unsigned int newState;
357 #else
358 unsigned long index;
359 unsigned long count;
360 unsigned long junkBaseP;
361 unsigned long oldState;
362 unsigned long newState;
363 #endif
364 bool oldStateValid;
365 bool done;
366 FInfoAttrBuf * thisEntry;
367 char attrBuf[kEntriesPerCall * (sizeof(FInfoAttrBuf) + 64)];
368 .Pp
369 .
370 // attrBuf is big enough for kEntriesPerCall entries, assuming that
371 // the average name length is less than 64.
372 .Pp
373 .
374 memset(&attrList, 0, sizeof(attrList));
375 attrList.bitmapcount = ATTR_BIT_MAP_COUNT;
376 attrList.commonattr = ATTR_CMN_NAME
377 | ATTR_CMN_OBJTYPE
378 | ATTR_CMN_FNDRINFO;
379 attrList.dirattr = ATTR_DIR_MOUNTSTATUS;
380 .Pp
381
382 err = 0;
383 dirFD = open(dirPath, O_RDONLY, 0);
384 if (dirFD < 0) {
385 err = errno;
386 }
387 if (err == 0) {
388 oldStateValid = false;
389 done = false;
390 do {
391 count = kEntriesPerCall;
392 .Pp
393 err = getdirentriesattr(
394 dirFD,
395 &attrList,
396 &attrBuf,
397 sizeof(attrBuf),
398 &count,
399 &junkBaseP,
400 &newState,
401 0
402 );
403 if (err < 0) {
404 err = errno;
405 } else {
406 done = err;
407 err = 0;
408 }
409 .Pp
410 if (err == 0) {
411 if (oldStateValid) {
412 if (newState != oldState) {
413 printf("*** Directory has changed\en");
414 oldState = newState;
415 }
416 } else {
417 oldState = newState;
418 oldStateValid = true;
419 }
420 .Pp
421 thisEntry = (FInfoAttrBuf *) attrBuf;
422 .Pp
423 for (index = 0; index < count; index++) {
424 switch (thisEntry->objType) {
425 case VREG:
426 printf(
427 "'%4.4s' '%4.4s' ",
428 &thisEntry->finderInfo[0],
429 &thisEntry->finderInfo[4]
430 );
431 break;
432 case VDIR:
433 if (thisEntry->dirStatus & DIR_MNTSTATUS_MNTPOINT)
434 printf("mount-point ");
435 else
436 printf("directory ");
437 break;
438 default:
439 printf(
440 "objType = %-2d ",
441 thisEntry->objType
442 );
443 break;
444 }
445 printf(
446 "%s\en",
447 ((char *) &thisEntry->name)
448 + thisEntry->name.attr_dataoffset
449 );
450 .Pp
451 // Advance to the next entry.
452 .Pp
453 thisEntry = (FInfoAttrBuf*)((char*)thisEntry + thisEntry->length);
454 }
455 }
456 } while ( err == 0 && ! done );
457 }
458 .Pp
459 if (dirFD != -1) {
460 junk = close(dirFD);
461 assert(junk == 0);
462 }
463 .Pp
464 return err;
465 }
466 .Ed
467 .Pp
468 .
469 .Sh SEE ALSO
470 .
471 .Xr getattrlist 2 ,
472 .Xr getdirentries 2 ,
473 .Xr lseek 2
474 .
475 .Sh HISTORY
476 A
477 .Fn getdirentriesattr
478 function call appeared in Darwin 1.3.1 (Mac OS X version 10.0).
479 .