Update.
[glibc.git] / manual / filesys.texi
blob8aeea93f1dee374cbae3f08d3465b42c1c2fe25c
1 @node File System Interface, Pipes and FIFOs, Low-Level I/O, Top
2 @c %MENU% Functions for manipulating files
3 @chapter File System Interface
5 This chapter describes the GNU C library's functions for manipulating
6 files.  Unlike the input and output functions (@pxref{I/O on Streams};
7 @pxref{Low-Level I/O}), these functions are concerned with operating
8 on the files themselves rather than on their contents.
10 Among the facilities described in this chapter are functions for
11 examining or modifying directories, functions for renaming and deleting
12 files, and functions for examining and setting file attributes such as
13 access permissions and modification times.
15 @menu
16 * Working Directory::           This is used to resolve relative
17                                  file names.
18 * Accessing Directories::       Finding out what files a directory
19                                  contains.
20 * Working with Directory Trees:: Apply actions to all files or a selectable
21                                  subset of a directory hierarchy.
22 * Hard Links::                  Adding alternate names to a file.
23 * Symbolic Links::              A file that ``points to'' a file name.
24 * Deleting Files::              How to delete a file, and what that means.
25 * Renaming Files::              Changing a file's name.
26 * Creating Directories::        A system call just for creating a directory.
27 * File Attributes::             Attributes of individual files.
28 * Making Special Files::        How to create special files.
29 * Temporary Files::             Naming and creating temporary files.
30 @end menu
32 @node Working Directory
33 @section Working Directory
35 @cindex current working directory
36 @cindex working directory
37 @cindex change working directory
38 Each process has associated with it a directory, called its @dfn{current
39 working directory} or simply @dfn{working directory}, that is used in
40 the resolution of relative file names (@pxref{File Name Resolution}).
42 When you log in and begin a new session, your working directory is
43 initially set to the home directory associated with your login account
44 in the system user database.  You can find any user's home directory
45 using the @code{getpwuid} or @code{getpwnam} functions; see @ref{User
46 Database}.
48 Users can change the working directory using shell commands like
49 @code{cd}.  The functions described in this section are the primitives
50 used by those commands and by other programs for examining and changing
51 the working directory.
52 @pindex cd
54 Prototypes for these functions are declared in the header file
55 @file{unistd.h}.
56 @pindex unistd.h
58 @comment unistd.h
59 @comment POSIX.1
60 @deftypefun {char *} getcwd (char *@var{buffer}, size_t @var{size})
61 The @code{getcwd} function returns an absolute file name representing
62 the current working directory, storing it in the character array
63 @var{buffer} that you provide.  The @var{size} argument is how you tell
64 the system the allocation size of @var{buffer}.
66 The GNU library version of this function also permits you to specify a
67 null pointer for the @var{buffer} argument.  Then @code{getcwd}
68 allocates a buffer automatically, as with @code{malloc}
69 (@pxref{Unconstrained Allocation}).  If the @var{size} is greater than
70 zero, then the buffer is that large; otherwise, the buffer is as large
71 as necessary to hold the result.
73 The return value is @var{buffer} on success and a null pointer on failure.
74 The following @code{errno} error conditions are defined for this function:
76 @table @code
77 @item EINVAL
78 The @var{size} argument is zero and @var{buffer} is not a null pointer.
80 @item ERANGE
81 The @var{size} argument is less than the length of the working directory
82 name.  You need to allocate a bigger array and try again.
84 @item EACCES
85 Permission to read or search a component of the file name was denied.
86 @end table
87 @end deftypefun
89 You could implement the behavior of GNU's @w{@code{getcwd (NULL, 0)}}
90 using only the standard behavior of @code{getcwd}:
92 @smallexample
93 char *
94 gnu_getcwd ()
96   size_t size = 100;
98   while (1)
99     @{
100       char *buffer = (char *) xmalloc (size);
101       if (getcwd (buffer, size) == buffer)
102         return buffer;
103       free (buffer);
104       if (errno != ERANGE)
105         return 0;
106       size *= 2;
107     @}
109 @end smallexample
111 @noindent
112 @xref{Malloc Examples}, for information about @code{xmalloc}, which is
113 not a library function but is a customary name used in most GNU
114 software.
116 @comment unistd.h
117 @comment BSD
118 @deftypefn {Deprecated Function} {char *} getwd (char *@var{buffer})
119 This is similar to @code{getcwd}, but has no way to specify the size of
120 the buffer.  The GNU library provides @code{getwd} only
121 for backwards compatibility with BSD.
123 The @var{buffer} argument should be a pointer to an array at least
124 @code{PATH_MAX} bytes long (@pxref{Limits for Files}).  In the GNU
125 system there is no limit to the size of a file name, so this is not
126 necessarily enough space to contain the directory name.  That is why
127 this function is deprecated.
128 @end deftypefn
130 @comment unistd.h
131 @comment GNU
132 @deftypefun {char *} get_current_dir_name (void)
133 @vindex PWD
134 This @code{get_current_dir_name} function is bascially equivalent to
135 @w{@code{getcwd (NULL, 0)}}.  The only difference is that the value of
136 the @code{PWD} variable is returned if this value is correct.  This is a
137 subtle difference which is visible if the path described by the
138 @code{PWD} value is using one or more symbol links in which case the
139 value returned by @code{getcwd} can resolve the symbol links and
140 therefore yield a different result.
142 This function is a GNU extension.
143 @end deftypefun
145 @comment unistd.h
146 @comment POSIX.1
147 @deftypefun int chdir (const char *@var{filename})
148 This function is used to set the process's working directory to
149 @var{filename}.
151 The normal, successful return value from @code{chdir} is @code{0}.  A
152 value of @code{-1} is returned to indicate an error.  The @code{errno}
153 error conditions defined for this function are the usual file name
154 syntax errors (@pxref{File Name Errors}), plus @code{ENOTDIR} if the
155 file @var{filename} is not a directory.
156 @end deftypefun
158 @comment unistd.h
159 @comment XPG
160 @deftypefun int fchdir (int @var{filedes})
161 This function is used to set the process's working directory to
162 directory associated with the file descriptor @var{filedes}.
164 The normal, successful return value from @code{fchdir} is @code{0}.  A
165 value of @code{-1} is returned to indicate an error.  The following
166 @code{errno} error conditions are defined for this function:
168 @table @code
169 @item EACCES
170 Read permission is denied for the directory named by @code{dirname}.
172 @item EBADF
173 The @var{filedes} argument is not a valid file descriptor.
175 @item ENOTDIR
176 The file descriptor @var{filedes} is not associated with a directory.
178 @item EINTR
179 The function call was interrupt by a signal.
181 @item EIO
182 An I/O error occurred.
183 @end table
184 @end deftypefun
187 @node Accessing Directories
188 @section Accessing Directories
189 @cindex accessing directories
190 @cindex reading from a directory
191 @cindex directories, accessing
193 The facilities described in this section let you read the contents of a
194 directory file.  This is useful if you want your program to list all the
195 files in a directory, perhaps as part of a menu.
197 @cindex directory stream
198 The @code{opendir} function opens a @dfn{directory stream} whose
199 elements are directory entries.  You use the @code{readdir} function on
200 the directory stream to retrieve these entries, represented as
201 @w{@code{struct dirent}} objects.  The name of the file for each entry is
202 stored in the @code{d_name} member of this structure.  There are obvious
203 parallels here to the stream facilities for ordinary files, described in
204 @ref{I/O on Streams}.
206 @menu
207 * Directory Entries::           Format of one directory entry.
208 * Opening a Directory::         How to open a directory stream.
209 * Reading/Closing Directory::   How to read directory entries from the stream.
210 * Simple Directory Lister::     A very simple directory listing program.
211 * Random Access Directory::     Rereading part of the directory
212                                  already read with the same stream.
213 * Scanning Directory Content::  Get entries for user selected subset of
214                                  contents in given directory.
215 * Simple Directory Lister Mark II::  Revised version of the program.
216 @end menu
218 @node Directory Entries
219 @subsection Format of a Directory Entry
221 @pindex dirent.h
222 This section describes what you find in a single directory entry, as you
223 might obtain it from a directory stream.  All the symbols are declared
224 in the header file @file{dirent.h}.
226 @comment dirent.h
227 @comment POSIX.1
228 @deftp {Data Type} {struct dirent}
229 This is a structure type used to return information about directory
230 entries.  It contains the following fields:
232 @table @code
233 @item char d_name[]
234 This is the null-terminated file name component.  This is the only
235 field you can count on in all POSIX systems.
237 @item ino_t d_fileno
238 This is the file serial number.  For BSD compatibility, you can also
239 refer to this member as @code{d_ino}.  In the GNU system and most POSIX
240 systems, for most files this the same as the @code{st_ino} member that
241 @code{stat} will return for the file.  @xref{File Attributes}.
243 @item unsigned char d_namlen
244 This is the length of the file name, not including the terminating null
245 character.  Its type is @code{unsigned char} because that is the integer
246 type of the appropriate size
248 @item unsigned char d_type
249 This is the type of the file, possibly unknown.  The following constants
250 are defined for its value:
252 @vtable @code
253 @item DT_UNKNOWN
254 The type is unknown.  On some systems this is the only value returned.
256 @item DT_REG
257 A regular file.
259 @item DT_DIR
260 A directory.
262 @item DT_FIFO
263 A named pipe, or FIFO.  @xref{FIFO Special Files}.
265 @item DT_SOCK
266 A local-domain socket.  @c !!! @xref{Local Domain}.
268 @item DT_CHR
269 A character device.
271 @item DT_BLK
272 A block device.
273 @end vtable
275 This member is a BSD extension.  The symbol @code{_DIRENT_HAVE_D_TYPE}
276 is defined if this member is available.  On systems where it is used, it
277 corresponds to the file type bits in the @code{st_mode} member of
278 @code{struct statbuf}.  If the value cannot be determine the member
279 value is DT_UNKNOWN.  These two macros convert between @code{d_type}
280 values and @code{st_mode} values:
282 @comment dirent.h
283 @comment BSD
284 @deftypefun int IFTODT (mode_t @var{mode})
285 This returns the @code{d_type} value corresponding to @var{mode}.
286 @end deftypefun
288 @comment dirent.h
289 @comment BSD
290 @deftypefun mode_t DTTOIF (int @var{dtype})
291 This returns the @code{st_mode} value corresponding to @var{dtype}.
292 @end deftypefun
293 @end table
295 This structure may contain additional members in the future.  Their
296 availability is always announced in the compilation environment by a
297 macro names @code{_DIRENT_HAVE_D_@var{xxx}} where @var{xxx} is replaced
298 by the name of the new member.  For instance, the member @code{d_reclen}
299 available on some systems is announced through the macro
300 @code{_DIRENT_HAVE_D_RECLEN}.
302 When a file has multiple names, each name has its own directory entry.
303 The only way you can tell that the directory entries belong to a
304 single file is that they have the same value for the @code{d_fileno}
305 field.
307 File attributes such as size, modification times etc., are part of the
308 file itself, not of any particular directory entry.  @xref{File
309 Attributes}.
310 @end deftp
312 @node Opening a Directory
313 @subsection Opening a Directory Stream
315 @pindex dirent.h
316 This section describes how to open a directory stream.  All the symbols
317 are declared in the header file @file{dirent.h}.
319 @comment dirent.h
320 @comment POSIX.1
321 @deftp {Data Type} DIR
322 The @code{DIR} data type represents a directory stream.
323 @end deftp
325 You shouldn't ever allocate objects of the @code{struct dirent} or
326 @code{DIR} data types, since the directory access functions do that for
327 you.  Instead, you refer to these objects using the pointers returned by
328 the following functions.
330 @comment dirent.h
331 @comment POSIX.1
332 @deftypefun {DIR *} opendir (const char *@var{dirname})
333 The @code{opendir} function opens and returns a directory stream for
334 reading the directory whose file name is @var{dirname}.  The stream has
335 type @code{DIR *}.
337 If unsuccessful, @code{opendir} returns a null pointer.  In addition to
338 the usual file name errors (@pxref{File Name Errors}), the
339 following @code{errno} error conditions are defined for this function:
341 @table @code
342 @item EACCES
343 Read permission is denied for the directory named by @code{dirname}.
345 @item EMFILE
346 The process has too many files open.
348 @item ENFILE
349 The entire system, or perhaps the file system which contains the
350 directory, cannot support any additional open files at the moment.
351 (This problem cannot happen on the GNU system.)
352 @end table
354 The @code{DIR} type is typically implemented using a file descriptor,
355 and the @code{opendir} function in terms of the @code{open} function.
356 @xref{Low-Level I/O}.  Directory streams and the underlying
357 file descriptors are closed on @code{exec} (@pxref{Executing a File}).
358 @end deftypefun
360 In some situations it can be desirable to get hold of the file
361 descriptor which is created by the @code{opendir} call.  For instance,
362 to switch the current working directory to the directory just read the
363 @code{fchdir} function could be used.  Historically the @code{DIR} type
364 was exposed and programs could access the fields.  This does not happen
365 in the GNU C library.  Instead a separate function is provided to allow
366 access.
368 @comment dirent.h
369 @comment GNU
370 @deftypefun int dirfd (DIR *@var{dirstream})
371 The function @code{dirfd} returns the file descriptor associated with
372 the directory stream @var{dirstream}.  This descriptor can be used until
373 the directory is closed with @code{closedir}.  If the directory stream
374 implementation is not using file descriptors the return value is
375 @code{-1}.
376 @end deftypefun
378 @node Reading/Closing Directory
379 @subsection Reading and Closing a Directory Stream
381 @pindex dirent.h
382 This section describes how to read directory entries from a directory
383 stream, and how to close the stream when you are done with it.  All the
384 symbols are declared in the header file @file{dirent.h}.
386 @comment dirent.h
387 @comment POSIX.1
388 @deftypefun {struct dirent *} readdir (DIR *@var{dirstream})
389 This function reads the next entry from the directory.  It normally
390 returns a pointer to a structure containing information about the file.
391 This structure is statically allocated and can be rewritten by a
392 subsequent call.
394 @strong{Portability Note:} On some systems @code{readdir} may not
395 return entries for @file{.} and @file{..}, even though these are always
396 valid file names in any directory.  @xref{File Name Resolution}.
398 If there are no more entries in the directory or an error is detected,
399 @code{readdir} returns a null pointer.  The following @code{errno} error
400 conditions are defined for this function:
402 @table @code
403 @item EBADF
404 The @var{dirstream} argument is not valid.
405 @end table
407 @code{readdir} is not thread safe.  Multiple threads using
408 @code{readdir} on the same @var{dirstream} may overwrite the return
409 value.  Use @code{readdir_r} when this is critical.
410 @end deftypefun
412 @comment dirent.h
413 @comment GNU
414 @deftypefun int readdir_r (DIR *@var{dirstream}, struct dirent *@var{entry}, struct dirent **@var{result})
415 This function is the reentrant version of @code{readdir}.  Like
416 @code{readdir} it returns the next entry from the directory.  But to
417 prevent conflicts between simultaneously running threads the result is
418 not stored in statically allocated memory.  Instead the argument
419 @var{entry} points to a place to store the result.
421 The return value is @code{0} in case the next entry was read
422 successfully.  In this case a pointer to the result is returned in
423 *@var{result}.  It is not required that *@var{result} is the same as
424 @var{entry}.  If something goes wrong while executing @code{readdir_r}
425 the function returns a value indicating the error (as described for
426 @code{readdir}).
428 If there are no more directory entries, @code{readdir_r}'s return value is
429 @code{0}, and *@var{result} is set to @code{NULL}.
431 @strong{Portability Note:} On some systems @code{readdir_r} may not
432 return a NUL terminated string for the file name, even when there is no
433 @code{d_reclen} field in @code{struct dirent} and the file
434 name is the maximum allowed size.  Modern systems all have the
435 @code{d_reclen} field, and on old systems multi-threading is not
436 critical.  In any case there is no such problem with the @code{readdir}
437 function, so that even on systems without the @code{d_reclen} member one
438 could use multiple threads by using external locking.
440 It is also important to look at the definition of the @code{struct
441 dirent} type.  Simply passing a pointer to an object of this type for
442 the second parameter of @code{readdir_r} might not be enough.  Some
443 systems don't define the @code{d_name} element sufficiently long.  In
444 this case the user has to provide additional space.  There must be room
445 for at least @code{NAME_MAX + 1} characters in the @code{d_name} array.
446 Code to call @code{readdir_r} could look like this:
448 @smallexample
449   union
450   @{
451     struct dirent d;
452     char b[offsetof (struct dirent, d_name) + NAME_MAX + 1];
453   @} u;
455   if (readdir_r (dir, &u.d, &res) == 0)
456     @dots{}
457 @end smallexample
458 @end deftypefun
460 To support large filesystems on 32-bit machines there are LFS variants
461 of the last two functions.
463 @comment dirent.h
464 @comment LFS
465 @deftypefun {struct dirent64 *} readdir64 (DIR *@var{dirstream})
466 The @code{readdir64} function is just like the @code{readdir} function
467 except that it returns a pointer to a record of type @code{struct
468 dirent64}.  Some of the members of this data type (notably @code{d_ino})
469 might have a different size to allow large filesystems.
471 In all other aspects this function is equivalent to @code{readdir}.
472 @end deftypefun
474 @comment dirent.h
475 @comment LFS
476 @deftypefun int readdir64_r (DIR *@var{dirstream}, struct dirent64 *@var{entry}, struct dirent64 **@var{result})
477 The @code{readdir64_r} function is equivalent to the @code{readdir_r}
478 function except that it takes parameters of base type @code{struct
479 dirent64} instead of @code{struct dirent} in the second and third
480 position.  The same precautions mentioned in the documentation of
481 @code{readdir_r} also apply here.
482 @end deftypefun
484 @comment dirent.h
485 @comment POSIX.1
486 @deftypefun int closedir (DIR *@var{dirstream})
487 This function closes the directory stream @var{dirstream}.  It returns
488 @code{0} on success and @code{-1} on failure.
490 The following @code{errno} error conditions are defined for this
491 function:
493 @table @code
494 @item EBADF
495 The @var{dirstream} argument is not valid.
496 @end table
497 @end deftypefun
499 @node Simple Directory Lister
500 @subsection Simple Program to List a Directory
502 Here's a simple program that prints the names of the files in
503 the current working directory:
505 @smallexample
506 @include dir.c.texi
507 @end smallexample
509 The order in which files appear in a directory tends to be fairly
510 random.  A more useful program would sort the entries (perhaps by
511 alphabetizing them) before printing them; see
512 @ref{Scanning Directory Content}, and @ref{Array Sort Function}.
515 @node Random Access Directory
516 @subsection Random Access in a Directory Stream
518 @pindex dirent.h
519 This section describes how to reread parts of a directory that you have
520 already read from an open directory stream.  All the symbols are
521 declared in the header file @file{dirent.h}.
523 @comment dirent.h
524 @comment POSIX.1
525 @deftypefun void rewinddir (DIR *@var{dirstream})
526 The @code{rewinddir} function is used to reinitialize the directory
527 stream @var{dirstream}, so that if you call @code{readdir} it
528 returns information about the first entry in the directory again.  This
529 function also notices if files have been added or removed to the
530 directory since it was opened with @code{opendir}.  (Entries for these
531 files might or might not be returned by @code{readdir} if they were
532 added or removed since you last called @code{opendir} or
533 @code{rewinddir}.)
534 @end deftypefun
536 @comment dirent.h
537 @comment BSD
538 @deftypefun off_t telldir (DIR *@var{dirstream})
539 The @code{telldir} function returns the file position of the directory
540 stream @var{dirstream}.  You can use this value with @code{seekdir} to
541 restore the directory stream to that position.
542 @end deftypefun
544 @comment dirent.h
545 @comment BSD
546 @deftypefun void seekdir (DIR *@var{dirstream}, off_t @var{pos})
547 The @code{seekdir} function sets the file position of the directory
548 stream @var{dirstream} to @var{pos}.  The value @var{pos} must be the
549 result of a previous call to @code{telldir} on this particular stream;
550 closing and reopening the directory can invalidate values returned by
551 @code{telldir}.
552 @end deftypefun
555 @node Scanning Directory Content
556 @subsection Scanning the Content of a Directory
558 A higher-level interface to the directory handling functions is the
559 @code{scandir} function.  With its help one can select a subset of the
560 entries in a directory, possibly sort them and get a list of names as
561 the result.
563 @comment dirent.h
564 @comment BSD/SVID
565 @deftypefun int scandir (const char *@var{dir}, struct dirent ***@var{namelist}, int (*@var{selector}) (const struct dirent *), int (*@var{cmp}) (const void *, const void *))
567 The @code{scandir} function scans the contents of the directory selected
568 by @var{dir}.  The result in *@var{namelist} is an array of pointers to
569 structure of type @code{struct dirent} which describe all selected
570 directory entries and which is allocated using @code{malloc}.  Instead
571 of always getting all directory entries returned, the user supplied
572 function @var{selector} can be used to decide which entries are in the
573 result.  Only the entries for which @var{selector} returns a non-zero
574 value are selected.
576 Finally the entries in *@var{namelist} are sorted using the
577 user-supplied function @var{cmp}.  The arguments passed to the @var{cmp}
578 function are of type @code{struct dirent **}, therefore one cannot
579 directly use the @code{strcmp} or @code{strcoll} functions; instead see
580 the functions @code{alphasort} and @code{versionsort} below.
582 The return value of the function is the number of entries placed in
583 *@var{namelist}.  If it is @code{-1} an error occurred (either the
584 directory could not be opened for reading or the malloc call failed) and
585 the global variable @code{errno} contains more information on the error.
586 @end deftypefun
588 As described above the fourth argument to the @code{scandir} function
589 must be a pointer to a sorting function.  For the convenience of the
590 programmer the GNU C library contains implementations of functions which
591 are very helpful for this purpose.
593 @comment dirent.h
594 @comment BSD/SVID
595 @deftypefun int alphasort (const void *@var{a}, const void *@var{b})
596 The @code{alphasort} function behaves like the @code{strcoll} function
597 (@pxref{String/Array Comparison}).  The difference is that the arguments
598 are not string pointers but instead they are of type
599 @code{struct dirent **}.
601 The return value of @code{alphasort} is less than, equal to, or greater
602 than zero depending on the order of the two entries @var{a} and @var{b}.
603 @end deftypefun
605 @comment dirent.h
606 @comment GNU
607 @deftypefun int versionsort (const void *@var{a}, const void *@var{b})
608 The @code{versionsort} function is like @code{alphasort} except that it
609 uses the @code{strverscmp} function internally.
610 @end deftypefun
612 If the filesystem supports large files we cannot use the @code{scandir}
613 anymore since the @code{dirent} structure might not able to contain all
614 the information.  The LFS provides the new type @w{@code{struct
615 dirent64}}.  To use this we need a new function.
617 @comment dirent.h
618 @comment GNU
619 @deftypefun int scandir64 (const char *@var{dir}, struct dirent64 ***@var{namelist}, int (*@var{selector}) (const struct dirent64 *), int (*@var{cmp}) (const void *, const void *))
620 The @code{scandir64} function works like the @code{scandir} function
621 except that the directory entries it returns are described by elements
622 of type @w{@code{struct dirent64}}.  The function pointed to by
623 @var{selector} is again used to select the desired entries, except that
624 @var{selector} now must point to a function which takes a
625 @w{@code{struct dirent64 *}} parameter.
627 Similarly the @var{cmp} function should expect its two arguments to be
628 of type @code{struct dirent64 **}.
629 @end deftypefun
631 As @var{cmp} is now a function of a different type, the functions
632 @code{alphasort} and @code{versionsort} cannot be supplied for that
633 argument.  Instead we provide the two replacement functions below.
635 @comment dirent.h
636 @comment GNU
637 @deftypefun int alphasort64 (const void *@var{a}, const void *@var{b})
638 The @code{alphasort64} function behaves like the @code{strcoll} function
639 (@pxref{String/Array Comparison}).  The difference is that the arguments
640 are not string pointers but instead they are of type
641 @code{struct dirent64 **}.
643 Return value of @code{alphasort64} is less than, equal to, or greater
644 than zero depending on the order of the two entries @var{a} and @var{b}.
645 @end deftypefun
647 @comment dirent.h
648 @comment GNU
649 @deftypefun int versionsort64 (const void *@var{a}, const void *@var{b})
650 The @code{versionsort64} function is like @code{alphasort64}, excepted that it
651 uses the @code{strverscmp} function internally.
652 @end deftypefun
654 It is important not to mix the use of @code{scandir} and the 64-bit
655 comparison functions or vice versa.  There are systems on which this
656 works but on others it will fail miserably.
658 @node Simple Directory Lister Mark II
659 @subsection Simple Program to List a Directory, Mark II
661 Here is a revised version of the directory lister found above
662 (@pxref{Simple Directory Lister}).  Using the @code{scandir} function we
663 can avoid the functions which work directly with the directory contents.
664 After the call the returned entries are available for direct use.
666 @smallexample
667 @include dir2.c.texi
668 @end smallexample
670 Note the simple selector function in this example.  Since we want to see
671 all directory entries we always return @code{1}.
674 @node Working with Directory Trees
675 @section Working with Directory Trees
676 @cindex directory hierarchy
677 @cindex hierarchy, directory
678 @cindex tree, directory
680 The functions described so far for handling the files in a directory
681 have allowed you to either retrieve the information bit by bit, or to
682 process all the files as a group (see @code{scandir}).  Sometimes it is
683 useful to process whole hierarchies of directories and their contained
684 files.  The X/Open specification defines two functions to do this.  The
685 simpler form is derived from an early definition in @w{System V} systems
686 and therefore this function is available on SVID-derived systems.  The
687 prototypes and required definitions can be found in the @file{ftw.h}
688 header.
690 There are four functions in this family: @code{ftw}, @code{nftw} and
691 their 64-bit counterparts @code{ftw64} and @code{nftw64}.  These
692 functions take as one of their arguments a pointer to a callback
693 function of the appropriate type.
695 @comment ftw.h
696 @comment GNU
697 @deftp {Data Type} __ftw_func_t
699 @smallexample
700 int (*) (const char *, const struct stat *, int)
701 @end smallexample
703 The type of callback functions given to the @code{ftw} function.  The
704 first parameter points to the file name, the second parameter to an
705 object of type @code{struct stat} which is filled in for the file named
706 in the first parameter.
708 @noindent
709 The last parameter is a flag giving more information about the current
710 file.  It can have the following values:
712 @vtable @code
713 @item FTW_F
714 The item is either a normal file or a file which does not fit into one
715 of the following categories.  This could be special files, sockets etc.
716 @item FTW_D
717 The item is a directory.
718 @item FTW_NS
719 The @code{stat} call failed and so the information pointed to by the
720 second paramater is invalid.
721 @item FTW_DNR
722 The item is a directory which cannot be read.
723 @item FTW_SL
724 The item is a symbolic link.  Since symbolic links are normally followed
725 seeing this value in a @code{ftw} callback function means the referenced
726 file does not exist.  The situation for @code{nftw} is different.
728 This value is only available if the program is compiled with
729 @code{_BSD_SOURCE} or @code{_XOPEN_EXTENDED} defined before including
730 the first header.  The original SVID systems do not have symbolic links.
731 @end vtable
733 If the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
734 type is in fact @code{__ftw64_func_t} since this mode changes
735 @code{struct stat} to be @code{struct stat64}.
736 @end deftp
738 For the LFS interface and for use in the function @code{ftw64}, the
739 header @file{ftw.h} defines another function type.
741 @comment ftw.h
742 @comment GNU
743 @deftp {Data Type} __ftw64_func_t
745 @smallexample
746 int (*) (const char *, const struct stat64 *, int)
747 @end smallexample
749 This type is used just like @code{__ftw_func_t} for the callback
750 function, but this time is called from @code{ftw64}.  The second
751 parameter to the function is a pointer to a variable of type
752 @code{struct stat64} which is able to represent the larger values.
753 @end deftp
755 @comment ftw.h
756 @comment GNU
757 @deftp {Data Type} __nftw_func_t
759 @smallexample
760 int (*) (const char *, const struct stat *, int, struct FTW *)
761 @end smallexample
763 @vindex FTW_DP
764 @vindex FTW_SLN
765 The first three arguments are the same as for the @code{__ftw_func_t}
766 type.  However for the third argument some additional values are defined
767 to allow finer differentiation:
768 @table @code
769 @item FTW_DP
770 The current item is a directory and all subdirectories have already been
771 visited and reported.  This flag is returned instead of @code{FTW_D} if
772 the @code{FTW_DEPTH} flag is passed to @code{nftw} (see below).
773 @item FTW_SLN
774 The current item is a stale symbolic link.  The file it points to does
775 not exist.
776 @end table
778 The last parameter of the callback function is a pointer to a structure
779 with some extra information as described below.
781 If the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
782 type is in fact @code{__nftw64_func_t} since this mode changes
783 @code{struct stat} to be @code{struct stat64}.
784 @end deftp
786 For the LFS interface there is also a variant of this data type
787 available which has to be used with the @code{nftw64} function.
789 @comment ftw.h
790 @comment GNU
791 @deftp {Data Type} __nftw64_func_t
793 @smallexample
794 int (*) (const char *, const struct stat64 *, int, struct FTW *)
795 @end smallexample
797 This type is used just like @code{__nftw_func_t} for the callback
798 function, but this time is called from @code{nftw64}.  The second
799 parameter to the function is this time a pointer to a variable of type
800 @code{struct stat64} which is able to represent the larger values.
801 @end deftp
803 @comment ftw.h
804 @comment XPG4.2
805 @deftp {Data Type} {struct FTW}
806 The information contained in this structure helps in interpreting the
807 name parameter and gives some information about the current state of the
808 traversal of the directory hierarchy.
810 @table @code
811 @item int base
812 The value is the offset into the string passed in the first parameter to
813 the callback function of the beginning of the file name.  The rest of
814 the string is the path of the file.  This information is especially
815 important if the @code{FTW_CHDIR} flag was set in calling @code{nftw}
816 since then the current directory is the one the current item is found
818 @item int level
819 Whilst processing, the code tracks how many directories down it has gone
820 to find the current file.  This nesting level starts at @math{0} for
821 files in the initial directory (or is zero for the initial file if a
822 file was passed).
823 @end table
824 @end deftp
827 @comment ftw.h
828 @comment SVID
829 @deftypefun int ftw (const char *@var{filename}, __ftw_func_t @var{func}, int @var{descriptors})
830 The @code{ftw} function calls the callback function given in the
831 parameter @var{func} for every item which is found in the directory
832 specified by @var{filename} and all directories below.  The function
833 follows symbolic links if necessary but does not process an item twice.
834 If @var{filename} is not a directory then it itself is the only object
835 returned to the callback function.
837 The file name passed to the callback function is constructed by taking
838 the @var{filename} parameter and appending the names of all passed
839 directories and then the local file name.  So the callback function can
840 use this parameter to access the file.  @code{ftw} also calls
841 @code{stat} for the file and passes that information on to the callback
842 function.  If this @code{stat} call was not successful the failure is
843 indicated by setting the third argument of the callback function to
844 @code{FTW_NS}.  Otherwise it is set according to the description given
845 in the account of @code{__ftw_func_t} above.
847 The callback function is expected to return @math{0} to indicate that no
848 error occurred and that processing should continue.  If an error
849 occurred in the callback function or it wants @code{ftw} to return
850 immediately, the callback function can return a value other than
851 @math{0}.  This is the only correct way to stop the function.  The
852 program must not use @code{setjmp} or similar techniques to continue
853 from another place.  This would leave resources allocated by the
854 @code{ftw} function unfreed.
856 The @var{descriptors} parameter to @code{ftw} specifies how many file
857 descriptors it is allowed to consume.  The function runs faster the more
858 descriptors it can use.  For each level in the directory hierarchy at
859 most one descriptor is used, but for very deep ones any limit on open
860 file descriptors for the process or the system may be exceeded.
861 Moreover, file descriptor limits in a multi-threaded program apply to
862 all the threads as a group, and therefore it is a good idea to supply a
863 reasonable limit to the number of open descriptors.
865 The return value of the @code{ftw} function is @math{0} if all callback
866 function calls returned @math{0} and all actions performed by the
867 @code{ftw} succeeded.  If a function call failed (other than calling
868 @code{stat} on an item) the function returns @math{-1}.  If a callback
869 function returns a value other than @math{0} this value is returned as
870 the return value of @code{ftw}.
872 When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a
873 32-bit system this function is in fact @code{ftw64}, i.e. the LFS
874 interface transparently replaces the old interface.
875 @end deftypefun
877 @comment ftw.h
878 @comment Unix98
879 @deftypefun int ftw64 (const char *@var{filename}, __ftw64_func_t @var{func}, int @var{descriptors})
880 This function is similar to @code{ftw} but it can work on filesystems
881 with large files.  File information is reported using a variable of type
882 @code{struct stat64} which is passed by reference to the callback
883 function.
885 When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a
886 32-bit system this function is available under the name @code{ftw} and
887 transparently replaces the old implementation.
888 @end deftypefun
890 @comment ftw.h
891 @comment XPG4.2
892 @deftypefun int nftw (const char *@var{filename}, __nftw_func_t @var{func}, int @var{descriptors}, int @var{flag})
893 The @code{nftw} function works like the @code{ftw} functions.  They call
894 the callback function @var{func} for all items found in the directory
895 @var{filename} and below.  At most @var{descriptors} file descriptors
896 are consumed during the @code{nftw} call.
898 One difference is that the callback function is of a different type.  It
899 is of type @w{@code{struct FTW *}} and provides the callback function
900 with the extra information described above.
902 A second difference is that @code{nftw} takes a fourth argument, which
903 is @math{0} or a bitwise-OR combination of any of the following values.
905 @vtable @code
906 @item FTW_PHYS
907 While traversing the directory symbolic links are not followed.  Instead
908 symbolic links are reported using the @code{FTW_SL} value for the type
909 parameter to the callback function.  If the file referenced by a
910 symbolic link does not exist @code{FTW_SLN} is returned instead.
911 @item FTW_MOUNT
912 The callback function is only called for items which are on the same
913 mounted filesystem as the directory given by the @var{filename}
914 parameter to @code{nftw}.
915 @item FTW_CHDIR
916 If this flag is given the current working directory is changed to the
917 directory of the reported object before the callback function is called.
918 When @code{ntfw} finally returns the current directory is restored to
919 its original value.
920 @item FTW_DEPTH
921 If this option is specified then all subdirectories and files within
922 them are processed before processing the top directory itself
923 (depth-first processing).  This also means the type flag given to the
924 callback function is @code{FTW_DP} and not @code{FTW_D}.
925 @end vtable
927 The return value is computed in the same way as for @code{ftw}.
928 @code{nftw} returns @math{0} if no failures occurred and all callback
929 functions returned @math{0}.  In case of internal errors, such as memory
930 problems, the return value is @math{-1} and @var{errno} is set
931 accordingly.  If the return value of a callback invocation was non-zero
932 then that value is returned.
934 When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a
935 32-bit system this function is in fact @code{nftw64}, i.e. the LFS
936 interface transparently replaces the old interface.
937 @end deftypefun
939 @comment ftw.h
940 @comment Unix98
941 @deftypefun int nftw64 (const char *@var{filename}, __nftw64_func_t @var{func}, int @var{descriptors}, int @var{flag})
942 This function is similar to @code{nftw} but it can work on filesystems
943 with large files.  File information is reported using a variable of type
944 @code{struct stat64} which is passed by reference to the callback
945 function.
947 When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a
948 32-bit system this function is available under the name @code{nftw} and
949 transparently replaces the old implementation.
950 @end deftypefun
953 @node Hard Links
954 @section Hard Links
955 @cindex hard link
956 @cindex link, hard
957 @cindex multiple names for one file
958 @cindex file names, multiple
960 In POSIX systems, one file can have many names at the same time.  All of
961 the names are equally real, and no one of them is preferred to the
962 others.
964 To add a name to a file, use the @code{link} function.  (The new name is
965 also called a @dfn{hard link} to the file.)  Creating a new link to a
966 file does not copy the contents of the file; it simply makes a new name
967 by which the file can be known, in addition to the file's existing name
968 or names.
970 One file can have names in several directories, so the organization
971 of the file system is not a strict hierarchy or tree.
973 In most implementations, it is not possible to have hard links to the
974 same file in multiple file systems.  @code{link} reports an error if you
975 try to make a hard link to the file from another file system when this
976 cannot be done.
978 The prototype for the @code{link} function is declared in the header
979 file @file{unistd.h}.
980 @pindex unistd.h
982 @comment unistd.h
983 @comment POSIX.1
984 @deftypefun int link (const char *@var{oldname}, const char *@var{newname})
985 The @code{link} function makes a new link to the existing file named by
986 @var{oldname}, under the new name @var{newname}.
988 This function returns a value of @code{0} if it is successful and
989 @code{-1} on failure.  In addition to the usual file name errors
990 (@pxref{File Name Errors}) for both @var{oldname} and @var{newname}, the
991 following @code{errno} error conditions are defined for this function:
993 @table @code
994 @item EACCES
995 You are not allowed to write to the directory in which the new link is
996 to be written.
997 @ignore
998 Some implementations also require that the existing file be accessible
999 by the caller, and use this error to report failure for that reason.
1000 @end ignore
1002 @item EEXIST
1003 There is already a file named @var{newname}.  If you want to replace
1004 this link with a new link, you must remove the old link explicitly first.
1006 @item EMLINK
1007 There are already too many links to the file named by @var{oldname}.
1008 (The maximum number of links to a file is @w{@code{LINK_MAX}}; see
1009 @ref{Limits for Files}.)
1011 @item ENOENT
1012 The file named by @var{oldname} doesn't exist.  You can't make a link to
1013 a file that doesn't exist.
1015 @item ENOSPC
1016 The directory or file system that would contain the new link is full
1017 and cannot be extended.
1019 @item EPERM
1020 In the GNU system and some others, you cannot make links to directories.
1021 Many systems allow only privileged users to do so.  This error
1022 is used to report the problem.
1024 @item EROFS
1025 The directory containing the new link can't be modified because it's on
1026 a read-only file system.
1028 @item EXDEV
1029 The directory specified in @var{newname} is on a different file system
1030 than the existing file.
1032 @item EIO
1033 A hardware error occurred while trying to read or write the to filesystem.
1034 @end table
1035 @end deftypefun
1037 @node Symbolic Links
1038 @section Symbolic Links
1039 @cindex soft link
1040 @cindex link, soft
1041 @cindex symbolic link
1042 @cindex link, symbolic
1044 The GNU system supports @dfn{soft links} or @dfn{symbolic links}.  This
1045 is a kind of ``file'' that is essentially a pointer to another file
1046 name.  Unlike hard links, symbolic links can be made to directories or
1047 across file systems with no restrictions.  You can also make a symbolic
1048 link to a name which is not the name of any file.  (Opening this link
1049 will fail until a file by that name is created.)  Likewise, if the
1050 symbolic link points to an existing file which is later deleted, the
1051 symbolic link continues to point to the same file name even though the
1052 name no longer names any file.
1054 The reason symbolic links work the way they do is that special things
1055 happen when you try to open the link.  The @code{open} function realizes
1056 you have specified the name of a link, reads the file name contained in
1057 the link, and opens that file name instead.  The @code{stat} function
1058 likewise operates on the file that the symbolic link points to, instead
1059 of on the link itself.
1061 By contrast, other operations such as deleting or renaming the file
1062 operate on the link itself.  The functions @code{readlink} and
1063 @code{lstat} also refrain from following symbolic links, because their
1064 purpose is to obtain information about the link.  @code{link}, the
1065 function that makes a hard link, does too.  It makes a hard link to the
1066 symbolic link, which one rarely wants.
1068 Some systems have for some functions operating on files have a limit on
1069 how many symbolic links are followed when resolving a path name.  The
1070 limit if it exists is published in the @file{sys/param.h} header file.
1072 @comment sys/param.h
1073 @comment BSD
1074 @deftypevr Macro int MAXSYMLINKS
1076 The macro @code{MAXSYMLINKS} specifies how many symlinks some function
1077 will follow before returning @code{ELOOP}.  Not all functions behave the
1078 same and this value is not the same a that returned for
1079 @code{_SC_SYMLOOP} by @code{sysconf}.  In fact, the @code{sysconf}
1080 result can indicate that there is no fixed limit although
1081 @code{MAXSYMLINKS} exists and has a finite value.
1082 @end deftypevr
1084 Prototypes for most of the functions listed in this section are in
1085 @file{unistd.h}.
1086 @pindex unistd.h
1088 @comment unistd.h
1089 @comment BSD
1090 @deftypefun int symlink (const char *@var{oldname}, const char *@var{newname})
1091 The @code{symlink} function makes a symbolic link to @var{oldname} named
1092 @var{newname}.
1094 The normal return value from @code{symlink} is @code{0}.  A return value
1095 of @code{-1} indicates an error.  In addition to the usual file name
1096 syntax errors (@pxref{File Name Errors}), the following @code{errno}
1097 error conditions are defined for this function:
1099 @table @code
1100 @item EEXIST
1101 There is already an existing file named @var{newname}.
1103 @item EROFS
1104 The file @var{newname} would exist on a read-only file system.
1106 @item ENOSPC
1107 The directory or file system cannot be extended to make the new link.
1109 @item EIO
1110 A hardware error occurred while reading or writing data on the disk.
1112 @ignore
1113 @comment not sure about these
1114 @item ELOOP
1115 There are too many levels of indirection.  This can be the result of
1116 circular symbolic links to directories.
1118 @item EDQUOT
1119 The new link can't be created because the user's disk quota has been
1120 exceeded.
1121 @end ignore
1122 @end table
1123 @end deftypefun
1125 @comment unistd.h
1126 @comment BSD
1127 @deftypefun int readlink (const char *@var{filename}, char *@var{buffer}, size_t @var{size})
1128 The @code{readlink} function gets the value of the symbolic link
1129 @var{filename}.  The file name that the link points to is copied into
1130 @var{buffer}.  This file name string is @emph{not} null-terminated;
1131 @code{readlink} normally returns the number of characters copied.  The
1132 @var{size} argument specifies the maximum number of characters to copy,
1133 usually the allocation size of @var{buffer}.
1135 If the return value equals @var{size}, you cannot tell whether or not
1136 there was room to return the entire name.  So make a bigger buffer and
1137 call @code{readlink} again.  Here is an example:
1139 @smallexample
1140 char *
1141 readlink_malloc (const char *filename)
1143   int size = 100;
1144   char *buffer = NULL;
1146   while (1)
1147     @{
1148       buffer = (char *) xrealloc (buffer, size);
1149       int nchars = readlink (filename, buffer, size);
1150       if (nchars < 0)
1151         @{
1152           free (buffer);
1153           return NULL;
1154         @}
1155       if (nchars < size)
1156         return buffer;
1157       size *= 2;
1158     @}
1160 @end smallexample
1162 @c @group  Invalid outside example.
1163 A value of @code{-1} is returned in case of error.  In addition to the
1164 usual file name errors (@pxref{File Name Errors}), the following
1165 @code{errno} error conditions are defined for this function:
1167 @table @code
1168 @item EINVAL
1169 The named file is not a symbolic link.
1171 @item EIO
1172 A hardware error occurred while reading or writing data on the disk.
1173 @end table
1174 @c @end group
1175 @end deftypefun
1177 In some situations it is desirable to resolve all the
1178 symbolic links to get the real
1179 name of a file where no prefix names a symbolic link which is followed
1180 and no filename in the path is @code{.} or @code{..}.  This is for
1181 instance desirable if files have to be compare in which case different
1182 names can refer to the same inode.
1184 @comment stdlib.h
1185 @comment GNU
1186 @deftypefun {char *} canonicalize_file_name (const char *@var{name})
1188 The @code{canonicalize_file_name} function returns the absolute name of
1189 the file named by @var{name} which contains no @code{.}, @code{..}
1190 components nor any repeated path separators (@code{/}) or symlinks.  The
1191 result is passed back as the return value of the function in a block of
1192 memory allocated with @code{malloc}.  If the result is not used anymore
1193 the memory should be freed with a call to @code{free}.
1195 In any of the path components except the last one is missing the
1196 function returns a NULL pointer.  This is also what is returned if the
1197 length of the path reaches or exceeds @code{PATH_MAX} characters.  In
1198 any case @code{errno} is set accordingly.
1200 @table @code
1201 @item ENAMETOOLONG
1202 The resulting path is too long.  This error only occurs on systems which
1203 have a limit on the file name length.
1205 @item EACCES
1206 At least one of the path components is not readable.
1208 @item ENOENT
1209 The input file name is empty.
1211 @item ENOENT
1212 At least one of the path components does not exist.
1214 @item ELOOP
1215 More than @code{MAXSYMLINKS} many symlinks have been followed.
1216 @end table
1218 This function is a GNU extension and is declared in @file{stdlib.h}.
1219 @end deftypefun
1221 The Unix standard includes a similar function which differs from
1222 @code{canonicalize_file_name} in that the user has to provide the buffer
1223 where the result is placed in.
1225 @comment stdlib.h
1226 @comment XPG
1227 @deftypefun {char *} realpath (const char *restrict @var{name}, char *restrict @var{resolved})
1229 A call to @code{realpath} where the @var{resolved} parameter is
1230 @code{NULL} behaves exactly like @code{canonicalize_file_name}.  The
1231 function allocates a buffer for the file name and returns a pointer to
1232 it.  If @var{resolved} is not @code{NULL} it points to a buffer into
1233 which the result is copied.  It is the callers responsibility to
1234 allocate a buffer which is large enough.  On systems which define
1235 @code{PATH_MAX} this means the buffer must be large enough for a
1236 pathname of this size.  For systems without limitations on the pathname
1237 length the requirement cannot be met and programs should not call
1238 @code{realpath} with anything but @code{NULL} for the second parameter.
1240 One other difference is that the buffer @var{resolved} (if nonzero) will
1241 contain the part of the path component which does not exist or is not
1242 readable if the function returns @code{NULL} and @code{errno} is set to
1243 @code{EACCES} or @code{ENOENT}.
1245 This function is declared in @file{stdlib.h}.
1246 @end deftypefun
1248 The advantage of using this function is that it is more widely
1249 available.  The drawback is that it reports failures for long path on
1250 systems which have no limits on the file name length.
1252 @node Deleting Files
1253 @section Deleting Files
1254 @cindex deleting a file
1255 @cindex removing a file
1256 @cindex unlinking a file
1258 You can delete a file with @code{unlink} or @code{remove}.
1260 Deletion actually deletes a file name.  If this is the file's only name,
1261 then the file is deleted as well.  If the file has other remaining names
1262 (@pxref{Hard Links}), it remains accessible under those names.
1264 @comment unistd.h
1265 @comment POSIX.1
1266 @deftypefun int unlink (const char *@var{filename})
1267 The @code{unlink} function deletes the file name @var{filename}.  If
1268 this is a file's sole name, the file itself is also deleted.  (Actually,
1269 if any process has the file open when this happens, deletion is
1270 postponed until all processes have closed the file.)
1272 @pindex unistd.h
1273 The function @code{unlink} is declared in the header file @file{unistd.h}.
1275 This function returns @code{0} on successful completion, and @code{-1}
1276 on error.  In addition to the usual file name errors
1277 (@pxref{File Name Errors}), the following @code{errno} error conditions are
1278 defined for this function:
1280 @table @code
1281 @item EACCES
1282 Write permission is denied for the directory from which the file is to be
1283 removed, or the directory has the sticky bit set and you do not own the file.
1285 @item EBUSY
1286 This error indicates that the file is being used by the system in such a
1287 way that it can't be unlinked.  For example, you might see this error if
1288 the file name specifies the root directory or a mount point for a file
1289 system.
1291 @item ENOENT
1292 The file name to be deleted doesn't exist.
1294 @item EPERM
1295 On some systems @code{unlink} cannot be used to delete the name of a
1296 directory, or at least can only be used this way by a privileged user.
1297 To avoid such problems, use @code{rmdir} to delete directories.  (In the
1298 GNU system @code{unlink} can never delete the name of a directory.)
1300 @item EROFS
1301 The directory containing the file name to be deleted is on a read-only
1302 file system and can't be modified.
1303 @end table
1304 @end deftypefun
1306 @comment unistd.h
1307 @comment POSIX.1
1308 @deftypefun int rmdir (const char *@var{filename})
1309 @cindex directories, deleting
1310 @cindex deleting a directory
1311 The @code{rmdir} function deletes a directory.  The directory must be
1312 empty before it can be removed; in other words, it can only contain
1313 entries for @file{.} and @file{..}.
1315 In most other respects, @code{rmdir} behaves like @code{unlink}.  There
1316 are two additional @code{errno} error conditions defined for
1317 @code{rmdir}:
1319 @table @code
1320 @item ENOTEMPTY
1321 @itemx EEXIST
1322 The directory to be deleted is not empty.
1323 @end table
1325 These two error codes are synonymous; some systems use one, and some use
1326 the other.  The GNU system always uses @code{ENOTEMPTY}.
1328 The prototype for this function is declared in the header file
1329 @file{unistd.h}.
1330 @pindex unistd.h
1331 @end deftypefun
1333 @comment stdio.h
1334 @comment ISO
1335 @deftypefun int remove (const char *@var{filename})
1336 This is the @w{ISO C} function to remove a file.  It works like
1337 @code{unlink} for files and like @code{rmdir} for directories.
1338 @code{remove} is declared in @file{stdio.h}.
1339 @pindex stdio.h
1340 @end deftypefun
1342 @node Renaming Files
1343 @section Renaming Files
1345 The @code{rename} function is used to change a file's name.
1347 @cindex renaming a file
1348 @comment stdio.h
1349 @comment ISO
1350 @deftypefun int rename (const char *@var{oldname}, const char *@var{newname})
1351 The @code{rename} function renames the file @var{oldname} to
1352 @var{newname}.  The file formerly accessible under the name
1353 @var{oldname} is afterwards accessible as @var{newname} instead.  (If
1354 the file had any other names aside from @var{oldname}, it continues to
1355 have those names.)
1357 The directory containing the name @var{newname} must be on the same file
1358 system as the directory containing the name @var{oldname}.
1360 One special case for @code{rename} is when @var{oldname} and
1361 @var{newname} are two names for the same file.  The consistent way to
1362 handle this case is to delete @var{oldname}.  However, in this case
1363 POSIX requires that @code{rename} do nothing and report success---which
1364 is inconsistent.  We don't know what your operating system will do.
1366 If @var{oldname} is not a directory, then any existing file named
1367 @var{newname} is removed during the renaming operation.  However, if
1368 @var{newname} is the name of a directory, @code{rename} fails in this
1369 case.
1371 If @var{oldname} is a directory, then either @var{newname} must not
1372 exist or it must name a directory that is empty.  In the latter case,
1373 the existing directory named @var{newname} is deleted first.  The name
1374 @var{newname} must not specify a subdirectory of the directory
1375 @code{oldname} which is being renamed.
1377 One useful feature of @code{rename} is that the meaning of @var{newname}
1378 changes ``atomically'' from any previously existing file by that name to
1379 its new meaning (i.e. the file that was called @var{oldname}).  There is
1380 no instant at which @var{newname} is non-existent ``in between'' the old
1381 meaning and the new meaning.  If there is a system crash during the
1382 operation, it is possible for both names to still exist; but
1383 @var{newname} will always be intact if it exists at all.
1385 If @code{rename} fails, it returns @code{-1}.  In addition to the usual
1386 file name errors (@pxref{File Name Errors}), the following
1387 @code{errno} error conditions are defined for this function:
1389 @table @code
1390 @item EACCES
1391 One of the directories containing @var{newname} or @var{oldname}
1392 refuses write permission; or @var{newname} and @var{oldname} are
1393 directories and write permission is refused for one of them.
1395 @item EBUSY
1396 A directory named by @var{oldname} or @var{newname} is being used by
1397 the system in a way that prevents the renaming from working.  This includes
1398 directories that are mount points for filesystems, and directories
1399 that are the current working directories of processes.
1401 @item ENOTEMPTY
1402 @itemx EEXIST
1403 The directory @var{newname} isn't empty.  The GNU system always returns
1404 @code{ENOTEMPTY} for this, but some other systems return @code{EEXIST}.
1406 @item EINVAL
1407 @var{oldname} is a directory that contains @var{newname}.
1409 @item EISDIR
1410 @var{newname} is a directory but the @var{oldname} isn't.
1412 @item EMLINK
1413 The parent directory of @var{newname} would have too many links
1414 (entries).
1416 @item ENOENT
1417 The file @var{oldname} doesn't exist.
1419 @item ENOSPC
1420 The directory that would contain @var{newname} has no room for another
1421 entry, and there is no space left in the file system to expand it.
1423 @item EROFS
1424 The operation would involve writing to a directory on a read-only file
1425 system.
1427 @item EXDEV
1428 The two file names @var{newname} and @var{oldname} are on different
1429 file systems.
1430 @end table
1431 @end deftypefun
1433 @node Creating Directories
1434 @section Creating Directories
1435 @cindex creating a directory
1436 @cindex directories, creating
1438 @pindex mkdir
1439 Directories are created with the @code{mkdir} function.  (There is also
1440 a shell command @code{mkdir} which does the same thing.)
1441 @c !!! umask
1443 @comment sys/stat.h
1444 @comment POSIX.1
1445 @deftypefun int mkdir (const char *@var{filename}, mode_t @var{mode})
1446 The @code{mkdir} function creates a new, empty directory with name
1447 @var{filename}.
1449 The argument @var{mode} specifies the file permissions for the new
1450 directory file.  @xref{Permission Bits}, for more information about
1451 this.
1453 A return value of @code{0} indicates successful completion, and
1454 @code{-1} indicates failure.  In addition to the usual file name syntax
1455 errors (@pxref{File Name Errors}), the following @code{errno} error
1456 conditions are defined for this function:
1458 @table @code
1459 @item EACCES
1460 Write permission is denied for the parent directory in which the new
1461 directory is to be added.
1463 @item EEXIST
1464 A file named @var{filename} already exists.
1466 @item EMLINK
1467 The parent directory has too many links (entries).
1469 Well-designed file systems never report this error, because they permit
1470 more links than your disk could possibly hold.  However, you must still
1471 take account of the possibility of this error, as it could result from
1472 network access to a file system on another machine.
1474 @item ENOSPC
1475 The file system doesn't have enough room to create the new directory.
1477 @item EROFS
1478 The parent directory of the directory being created is on a read-only
1479 file system and cannot be modified.
1480 @end table
1482 To use this function, your program should include the header file
1483 @file{sys/stat.h}.
1484 @pindex sys/stat.h
1485 @end deftypefun
1487 @node File Attributes
1488 @section File Attributes
1490 @pindex ls
1491 When you issue an @samp{ls -l} shell command on a file, it gives you
1492 information about the size of the file, who owns it, when it was last
1493 modified, etc.  These are called the @dfn{file attributes}, and are
1494 associated with the file itself and not a particular one of its names.
1496 This section contains information about how you can inquire about and
1497 modify the attributes of a file.
1499 @menu
1500 * Attribute Meanings::          The names of the file attributes,
1501                                  and what their values mean.
1502 * Reading Attributes::          How to read the attributes of a file.
1503 * Testing File Type::           Distinguishing ordinary files,
1504                                  directories, links@dots{}
1505 * File Owner::                  How ownership for new files is determined,
1506                                  and how to change it.
1507 * Permission Bits::             How information about a file's access
1508                                  mode is stored.
1509 * Access Permission::           How the system decides who can access a file.
1510 * Setting Permissions::         How permissions for new files are assigned,
1511                                  and how to change them.
1512 * Testing File Access::         How to find out if your process can
1513                                  access a file.
1514 * File Times::                  About the time attributes of a file.
1515 * File Size::                   Manually changing the size of a file.
1516 @end menu
1518 @node Attribute Meanings
1519 @subsection The meaning of the File Attributes
1520 @cindex status of a file
1521 @cindex attributes of a file
1522 @cindex file attributes
1524 When you read the attributes of a file, they come back in a structure
1525 called @code{struct stat}.  This section describes the names of the
1526 attributes, their data types, and what they mean.  For the functions
1527 to read the attributes of a file, see @ref{Reading Attributes}.
1529 The header file @file{sys/stat.h} declares all the symbols defined
1530 in this section.
1531 @pindex sys/stat.h
1533 @comment sys/stat.h
1534 @comment POSIX.1
1535 @deftp {Data Type} {struct stat}
1536 The @code{stat} structure type is used to return information about the
1537 attributes of a file.  It contains at least the following members:
1539 @table @code
1540 @item mode_t st_mode
1541 Specifies the mode of the file.  This includes file type information
1542 (@pxref{Testing File Type}) and the file permission bits
1543 (@pxref{Permission Bits}).
1545 @item ino_t st_ino
1546 The file serial number, which distinguishes this file from all other
1547 files on the same device.
1549 @item dev_t st_dev
1550 Identifies the device containing the file.  The @code{st_ino} and
1551 @code{st_dev}, taken together, uniquely identify the file.  The
1552 @code{st_dev} value is not necessarily consistent across reboots or
1553 system crashes, however.
1555 @item nlink_t st_nlink
1556 The number of hard links to the file.  This count keeps track of how
1557 many directories have entries for this file.  If the count is ever
1558 decremented to zero, then the file itself is discarded as soon as no
1559 process still holds it open.  Symbolic links are not counted in the
1560 total.
1562 @item uid_t st_uid
1563 The user ID of the file's owner.  @xref{File Owner}.
1565 @item gid_t st_gid
1566 The group ID of the file.  @xref{File Owner}.
1568 @item off_t st_size
1569 This specifies the size of a regular file in bytes.  For files that are
1570 really devices this field isn't usually meaningful.  For symbolic links
1571 this specifies the length of the file name the link refers to.
1573 @item time_t st_atime
1574 This is the last access time for the file.  @xref{File Times}.
1576 @item unsigned long int st_atime_usec
1577 This is the fractional part of the last access time for the file.
1578 @xref{File Times}.
1580 @item time_t st_mtime
1581 This is the time of the last modification to the contents of the file.
1582 @xref{File Times}.
1584 @item unsigned long int st_mtime_usec
1585 This is the fractional part of the time of the last modification to the
1586 contents of the file.  @xref{File Times}.
1588 @item time_t st_ctime
1589 This is the time of the last modification to the attributes of the file.
1590 @xref{File Times}.
1592 @item unsigned long int st_ctime_usec
1593 This is the fractional part of the time of the last modification to the
1594 attributes of the file.  @xref{File Times}.
1596 @c !!! st_rdev
1597 @item blkcnt_t st_blocks
1598 This is the amount of disk space that the file occupies, measured in
1599 units of 512-byte blocks.
1601 The number of disk blocks is not strictly proportional to the size of
1602 the file, for two reasons: the file system may use some blocks for
1603 internal record keeping; and the file may be sparse---it may have
1604 ``holes'' which contain zeros but do not actually take up space on the
1605 disk.
1607 You can tell (approximately) whether a file is sparse by comparing this
1608 value with @code{st_size}, like this:
1610 @smallexample
1611 (st.st_blocks * 512 < st.st_size)
1612 @end smallexample
1614 This test is not perfect because a file that is just slightly sparse
1615 might not be detected as sparse at all.  For practical applications,
1616 this is not a problem.
1618 @item unsigned int st_blksize
1619 The optimal block size for reading of writing this file, in bytes.  You
1620 might use this size for allocating the buffer space for reading of
1621 writing the file.  (This is unrelated to @code{st_blocks}.)
1622 @end table
1623 @end deftp
1625 The extensions for the Large File Support (LFS) require, even on 32-bit
1626 machines, types which can handle file sizes up to @math{2^63}.
1627 Therefore a new definition of @code{struct stat} is necessary.
1629 @comment sys/stat.h
1630 @comment LFS
1631 @deftp {Data Type} {struct stat64}
1632 The members of this type are the same and have the same names as those
1633 in @code{struct stat}.  The only difference is that the members
1634 @code{st_ino}, @code{st_size}, and @code{st_blocks} have a different
1635 type to support larger values.
1637 @table @code
1638 @item mode_t st_mode
1639 Specifies the mode of the file.  This includes file type information
1640 (@pxref{Testing File Type}) and the file permission bits
1641 (@pxref{Permission Bits}).
1643 @item ino64_t st_ino
1644 The file serial number, which distinguishes this file from all other
1645 files on the same device.
1647 @item dev_t st_dev
1648 Identifies the device containing the file.  The @code{st_ino} and
1649 @code{st_dev}, taken together, uniquely identify the file.  The
1650 @code{st_dev} value is not necessarily consistent across reboots or
1651 system crashes, however.
1653 @item nlink_t st_nlink
1654 The number of hard links to the file.  This count keeps track of how
1655 many directories have entries for this file.  If the count is ever
1656 decremented to zero, then the file itself is discarded as soon as no
1657 process still holds it open.  Symbolic links are not counted in the
1658 total.
1660 @item uid_t st_uid
1661 The user ID of the file's owner.  @xref{File Owner}.
1663 @item gid_t st_gid
1664 The group ID of the file.  @xref{File Owner}.
1666 @item off64_t st_size
1667 This specifies the size of a regular file in bytes.  For files that are
1668 really devices this field isn't usually meaningful.  For symbolic links
1669 this specifies the length of the file name the link refers to.
1671 @item time_t st_atime
1672 This is the last access time for the file.  @xref{File Times}.
1674 @item unsigned long int st_atime_usec
1675 This is the fractional part of the last access time for the file.
1676 @xref{File Times}.
1678 @item time_t st_mtime
1679 This is the time of the last modification to the contents of the file.
1680 @xref{File Times}.
1682 @item unsigned long int st_mtime_usec
1683 This is the fractional part of the time of the last modification to the
1684 contents of the file.  @xref{File Times}.
1686 @item time_t st_ctime
1687 This is the time of the last modification to the attributes of the file.
1688 @xref{File Times}.
1690 @item unsigned long int st_ctime_usec
1691 This is the fractional part of the time of the last modification to the
1692 attributes of the file.  @xref{File Times}.
1694 @c !!! st_rdev
1695 @item blkcnt64_t st_blocks
1696 This is the amount of disk space that the file occupies, measured in
1697 units of 512-byte blocks.
1699 @item unsigned int st_blksize
1700 The optimal block size for reading of writing this file, in bytes.  You
1701 might use this size for allocating the buffer space for reading of
1702 writing the file.  (This is unrelated to @code{st_blocks}.)
1703 @end table
1704 @end deftp
1706 Some of the file attributes have special data type names which exist
1707 specifically for those attributes.  (They are all aliases for well-known
1708 integer types that you know and love.)  These typedef names are defined
1709 in the header file @file{sys/types.h} as well as in @file{sys/stat.h}.
1710 Here is a list of them.
1712 @comment sys/types.h
1713 @comment POSIX.1
1714 @deftp {Data Type} mode_t
1715 This is an integer data type used to represent file modes.  In the
1716 GNU system, this is equivalent to @code{unsigned int}.
1717 @end deftp
1719 @cindex inode number
1720 @comment sys/types.h
1721 @comment POSIX.1
1722 @deftp {Data Type} ino_t
1723 This is an arithmetic data type used to represent file serial numbers.
1724 (In Unix jargon, these are sometimes called @dfn{inode numbers}.)
1725 In the GNU system, this type is equivalent to @code{unsigned long int}.
1727 If the source is compiled with @code{_FILE_OFFSET_BITS == 64} this type
1728 is transparently replaced by @code{ino64_t}.
1729 @end deftp
1731 @comment sys/types.h
1732 @comment Unix98
1733 @deftp {Data Type} ino64_t
1734 This is an arithmetic data type used to represent file serial numbers
1735 for the use in LFS.  In the GNU system, this type is equivalent to
1736 @code{unsigned long longint}.
1738 When compiling with @code{_FILE_OFFSET_BITS == 64} this type is
1739 available under the name @code{ino_t}.
1740 @end deftp
1742 @comment sys/types.h
1743 @comment POSIX.1
1744 @deftp {Data Type} dev_t
1745 This is an arithmetic data type used to represent file device numbers.
1746 In the GNU system, this is equivalent to @code{int}.
1747 @end deftp
1749 @comment sys/types.h
1750 @comment POSIX.1
1751 @deftp {Data Type} nlink_t
1752 This is an arithmetic data type used to represent file link counts.
1753 In the GNU system, this is equivalent to @code{unsigned short int}.
1754 @end deftp
1756 @comment sys/types.h
1757 @comment Unix98
1758 @deftp {Data Type} blkcnt_t
1759 This is an arithmetic data type used to represent block counts.
1760 In the GNU system, this is equivalent to @code{unsigned long int}.
1762 If the source is compiled with @code{_FILE_OFFSET_BITS == 64} this type
1763 is transparently replaced by @code{blkcnt64_t}.
1764 @end deftp
1766 @comment sys/types.h
1767 @comment Unix98
1768 @deftp {Data Type} blkcnt64_t
1769 This is an arithmetic data type used to represent block counts for the
1770 use in LFS.  In the GNU system, this is equivalent to @code{unsigned
1771 long long int}.
1773 When compiling with @code{_FILE_OFFSET_BITS == 64} this type is
1774 available under the name @code{blkcnt_t}.
1775 @end deftp
1777 @node Reading Attributes
1778 @subsection Reading the Attributes of a File
1780 To examine the attributes of files, use the functions @code{stat},
1781 @code{fstat} and @code{lstat}.  They return the attribute information in
1782 a @code{struct stat} object.  All three functions are declared in the
1783 header file @file{sys/stat.h}.
1785 @comment sys/stat.h
1786 @comment POSIX.1
1787 @deftypefun int stat (const char *@var{filename}, struct stat *@var{buf})
1788 The @code{stat} function returns information about the attributes of the
1789 file named by @w{@var{filename}} in the structure pointed to by @var{buf}.
1791 If @var{filename} is the name of a symbolic link, the attributes you get
1792 describe the file that the link points to.  If the link points to a
1793 nonexistent file name, then @code{stat} fails reporting a nonexistent
1794 file.
1796 The return value is @code{0} if the operation is successful, or
1797 @code{-1} on failure.  In addition to the usual file name errors
1798 (@pxref{File Name Errors}, the following @code{errno} error conditions
1799 are defined for this function:
1801 @table @code
1802 @item ENOENT
1803 The file named by @var{filename} doesn't exist.
1804 @end table
1806 When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
1807 function is in fact @code{stat64} since the LFS interface transparently
1808 replaces the normal implementation.
1809 @end deftypefun
1811 @comment sys/stat.h
1812 @comment Unix98
1813 @deftypefun int stat64 (const char *@var{filename}, struct stat64 *@var{buf})
1814 This function is similar to @code{stat} but it is also able to work on
1815 files larger then @math{2^31} bytes on 32-bit systems.  To be able to do
1816 this the result is stored in a variable of type @code{struct stat64} to
1817 which @var{buf} must point.
1819 When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
1820 function is available under the name @code{stat} and so transparently
1821 replaces the interface for small files on 32-bit machines.
1822 @end deftypefun
1824 @comment sys/stat.h
1825 @comment POSIX.1
1826 @deftypefun int fstat (int @var{filedes}, struct stat *@var{buf})
1827 The @code{fstat} function is like @code{stat}, except that it takes an
1828 open file descriptor as an argument instead of a file name.
1829 @xref{Low-Level I/O}.
1831 Like @code{stat}, @code{fstat} returns @code{0} on success and @code{-1}
1832 on failure.  The following @code{errno} error conditions are defined for
1833 @code{fstat}:
1835 @table @code
1836 @item EBADF
1837 The @var{filedes} argument is not a valid file descriptor.
1838 @end table
1840 When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
1841 function is in fact @code{fstat64} since the LFS interface transparently
1842 replaces the normal implementation.
1843 @end deftypefun
1845 @comment sys/stat.h
1846 @comment Unix98
1847 @deftypefun int fstat64 (int @var{filedes}, struct stat64 *@var{buf})
1848 This function is similar to @code{fstat} but is able to work on large
1849 files on 32-bit platforms.  For large files the file descriptor
1850 @var{filedes} should be obtained by @code{open64} or @code{creat64}.
1851 The @var{buf} pointer points to a variable of type @code{struct stat64}
1852 which is able to represent the larger values.
1854 When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
1855 function is available under the name @code{fstat} and so transparently
1856 replaces the interface for small files on 32-bit machines.
1857 @end deftypefun
1859 @comment sys/stat.h
1860 @comment BSD
1861 @deftypefun int lstat (const char *@var{filename}, struct stat *@var{buf})
1862 The @code{lstat} function is like @code{stat}, except that it does not
1863 follow symbolic links.  If @var{filename} is the name of a symbolic
1864 link, @code{lstat} returns information about the link itself; otherwise
1865 @code{lstat} works like @code{stat}.  @xref{Symbolic Links}.
1867 When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
1868 function is in fact @code{lstat64} since the LFS interface transparently
1869 replaces the normal implementation.
1870 @end deftypefun
1872 @comment sys/stat.h
1873 @comment Unix98
1874 @deftypefun int lstat64 (const char *@var{filename}, struct stat64 *@var{buf})
1875 This function is similar to @code{lstat} but it is also able to work on
1876 files larger then @math{2^31} bytes on 32-bit systems.  To be able to do
1877 this the result is stored in a variable of type @code{struct stat64} to
1878 which @var{buf} must point.
1880 When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} this
1881 function is available under the name @code{lstat} and so transparently
1882 replaces the interface for small files on 32-bit machines.
1883 @end deftypefun
1885 @node Testing File Type
1886 @subsection Testing the Type of a File
1888 The @dfn{file mode}, stored in the @code{st_mode} field of the file
1889 attributes, contains two kinds of information: the file type code, and
1890 the access permission bits.  This section discusses only the type code,
1891 which you can use to tell whether the file is a directory, socket,
1892 symbolic link, and so on.  For details about access permissions see
1893 @ref{Permission Bits}.
1895 There are two ways you can access the file type information in a file
1896 mode.  Firstly, for each file type there is a @dfn{predicate macro}
1897 which examines a given file mode and returns whether it is of that type
1898 or not.  Secondly, you can mask out the rest of the file mode to leave
1899 just the file type code, and compare this against constants for each of
1900 the supported file types.
1902 All of the symbols listed in this section are defined in the header file
1903 @file{sys/stat.h}.
1904 @pindex sys/stat.h
1906 The following predicate macros test the type of a file, given the value
1907 @var{m} which is the @code{st_mode} field returned by @code{stat} on
1908 that file:
1910 @comment sys/stat.h
1911 @comment POSIX
1912 @deftypefn Macro int S_ISDIR (mode_t @var{m})
1913 This macro returns non-zero if the file is a directory.
1914 @end deftypefn
1916 @comment sys/stat.h
1917 @comment POSIX
1918 @deftypefn Macro int S_ISCHR (mode_t @var{m})
1919 This macro returns non-zero if the file is a character special file (a
1920 device like a terminal).
1921 @end deftypefn
1923 @comment sys/stat.h
1924 @comment POSIX
1925 @deftypefn Macro int S_ISBLK (mode_t @var{m})
1926 This macro returns non-zero if the file is a block special file (a device
1927 like a disk).
1928 @end deftypefn
1930 @comment sys/stat.h
1931 @comment POSIX
1932 @deftypefn Macro int S_ISREG (mode_t @var{m})
1933 This macro returns non-zero if the file is a regular file.
1934 @end deftypefn
1936 @comment sys/stat.h
1937 @comment POSIX
1938 @deftypefn Macro int S_ISFIFO (mode_t @var{m})
1939 This macro returns non-zero if the file is a FIFO special file, or a
1940 pipe.  @xref{Pipes and FIFOs}.
1941 @end deftypefn
1943 @comment sys/stat.h
1944 @comment GNU
1945 @deftypefn Macro int S_ISLNK (mode_t @var{m})
1946 This macro returns non-zero if the file is a symbolic link.
1947 @xref{Symbolic Links}.
1948 @end deftypefn
1950 @comment sys/stat.h
1951 @comment GNU
1952 @deftypefn Macro int S_ISSOCK (mode_t @var{m})
1953 This macro returns non-zero if the file is a socket.  @xref{Sockets}.
1954 @end deftypefn
1956 An alternate non-POSIX method of testing the file type is supported for
1957 compatibility with BSD.  The mode can be bitwise AND-ed with
1958 @code{S_IFMT} to extract the file type code, and compared to the
1959 appropriate constant.  For example,
1961 @smallexample
1962 S_ISCHR (@var{mode})
1963 @end smallexample
1965 @noindent
1966 is equivalent to:
1968 @smallexample
1969 ((@var{mode} & S_IFMT) == S_IFCHR)
1970 @end smallexample
1972 @comment sys/stat.h
1973 @comment BSD
1974 @deftypevr Macro int S_IFMT
1975 This is a bit mask used to extract the file type code from a mode value.
1976 @end deftypevr
1978 These are the symbolic names for the different file type codes:
1980 @table @code
1981 @comment sys/stat.h
1982 @comment BSD
1983 @item S_IFDIR
1984 @vindex S_IFDIR
1985 This is the file type constant of a directory file.
1987 @comment sys/stat.h
1988 @comment BSD
1989 @item S_IFCHR
1990 @vindex S_IFCHR
1991 This is the file type constant of a character-oriented device file.
1993 @comment sys/stat.h
1994 @comment BSD
1995 @item S_IFBLK
1996 @vindex S_IFBLK
1997 This is the file type constant of a block-oriented device file.
1999 @comment sys/stat.h
2000 @comment BSD
2001 @item S_IFREG
2002 @vindex S_IFREG
2003 This is the file type constant of a regular file.
2005 @comment sys/stat.h
2006 @comment BSD
2007 @item S_IFLNK
2008 @vindex S_IFLNK
2009 This is the file type constant of a symbolic link.
2011 @comment sys/stat.h
2012 @comment BSD
2013 @item S_IFSOCK
2014 @vindex S_IFSOCK
2015 This is the file type constant of a socket.
2017 @comment sys/stat.h
2018 @comment BSD
2019 @item S_IFIFO
2020 @vindex S_IFIFO
2021 This is the file type constant of a FIFO or pipe.
2022 @end table
2024 The POSIX.1b standard introduced a few more objects which possibly can
2025 be implemented as object in the filesystem.  These are message queues,
2026 semaphores, and shared memory objects.  To allow differentiating these
2027 objects from other files the POSIX standard introduces three new test
2028 macros.  But unlike the other macros it does not take the value of the
2029 @code{st_mode} field as the parameter.  Instead they expect a pointer to
2030 the whole @code{struct stat} structure.
2032 @comment sys/stat.h
2033 @comment POSIX
2034 @deftypefn Macro int S_TYPEISMQ (struct stat *@var{s})
2035 If the system implement POSIX message queues as distinct objects and the
2036 file is a message queue object, this macro returns a non-zero value.
2037 In all other cases the result is zero.
2038 @end deftypefn
2040 @comment sys/stat.h
2041 @comment POSIX
2042 @deftypefn Macro int S_TYPEISSEM (struct stat *@var{s})
2043 If the system implement POSIX semaphores as distinct objects and the
2044 file is a semaphore object, this macro returns a non-zero value.
2045 In all other cases the result is zero.
2046 @end deftypefn
2048 @comment sys/stat.h
2049 @comment POSIX
2050 @deftypefn Macro int S_TYPEISSHM (struct stat *@var{s})
2051 If the system implement POSIX shared memory objects as distinct objects
2052 and the file is an shared memory object, this macro returns a non-zero
2053 value.  In all other cases the result is zero.
2054 @end deftypefn
2056 @node File Owner
2057 @subsection File Owner
2058 @cindex file owner
2059 @cindex owner of a file
2060 @cindex group owner of a file
2062 Every file has an @dfn{owner} which is one of the registered user names
2063 defined on the system.  Each file also has a @dfn{group} which is one of
2064 the defined groups.  The file owner can often be useful for showing you
2065 who edited the file (especially when you edit with GNU Emacs), but its
2066 main purpose is for access control.
2068 The file owner and group play a role in determining access because the
2069 file has one set of access permission bits for the owner, another set
2070 that applies to users who belong to the file's group, and a third set of
2071 bits that applies to everyone else.  @xref{Access Permission}, for the
2072 details of how access is decided based on this data.
2074 When a file is created, its owner is set to the effective user ID of the
2075 process that creates it (@pxref{Process Persona}).  The file's group ID
2076 may be set to either the effective group ID of the process, or the group
2077 ID of the directory that contains the file, depending on the system
2078 where the file is stored.  When you access a remote file system, it
2079 behaves according to its own rules, not according to the system your
2080 program is running on.  Thus, your program must be prepared to encounter
2081 either kind of behavior no matter what kind of system you run it on.
2083 @pindex chown
2084 @pindex chgrp
2085 You can change the owner and/or group owner of an existing file using
2086 the @code{chown} function.  This is the primitive for the @code{chown}
2087 and @code{chgrp} shell commands.
2089 @pindex unistd.h
2090 The prototype for this function is declared in @file{unistd.h}.
2092 @comment unistd.h
2093 @comment POSIX.1
2094 @deftypefun int chown (const char *@var{filename}, uid_t @var{owner}, gid_t @var{group})
2095 The @code{chown} function changes the owner of the file @var{filename} to
2096 @var{owner}, and its group owner to @var{group}.
2098 Changing the owner of the file on certain systems clears the set-user-ID
2099 and set-group-ID permission bits.  (This is because those bits may not
2100 be appropriate for the new owner.)  Other file permission bits are not
2101 changed.
2103 The return value is @code{0} on success and @code{-1} on failure.
2104 In addition to the usual file name errors (@pxref{File Name Errors}),
2105 the following @code{errno} error conditions are defined for this function:
2107 @table @code
2108 @item EPERM
2109 This process lacks permission to make the requested change.
2111 Only privileged users or the file's owner can change the file's group.
2112 On most file systems, only privileged users can change the file owner;
2113 some file systems allow you to change the owner if you are currently the
2114 owner.  When you access a remote file system, the behavior you encounter
2115 is determined by the system that actually holds the file, not by the
2116 system your program is running on.
2118 @xref{Options for Files}, for information about the
2119 @code{_POSIX_CHOWN_RESTRICTED} macro.
2121 @item EROFS
2122 The file is on a read-only file system.
2123 @end table
2124 @end deftypefun
2126 @comment unistd.h
2127 @comment BSD
2128 @deftypefun int fchown (int @var{filedes}, int @var{owner}, int @var{group})
2129 This is like @code{chown}, except that it changes the owner of the open
2130 file with descriptor @var{filedes}.
2132 The return value from @code{fchown} is @code{0} on success and @code{-1}
2133 on failure.  The following @code{errno} error codes are defined for this
2134 function:
2136 @table @code
2137 @item EBADF
2138 The @var{filedes} argument is not a valid file descriptor.
2140 @item EINVAL
2141 The @var{filedes} argument corresponds to a pipe or socket, not an ordinary
2142 file.
2144 @item EPERM
2145 This process lacks permission to make the requested change.  For details
2146 see @code{chmod} above.
2148 @item EROFS
2149 The file resides on a read-only file system.
2150 @end table
2151 @end deftypefun
2153 @node Permission Bits
2154 @subsection The Mode Bits for Access Permission
2156 The @dfn{file mode}, stored in the @code{st_mode} field of the file
2157 attributes, contains two kinds of information: the file type code, and
2158 the access permission bits.  This section discusses only the access
2159 permission bits, which control who can read or write the file.
2160 @xref{Testing File Type}, for information about the file type code.
2162 All of the symbols listed in this section are defined in the header file
2163 @file{sys/stat.h}.
2164 @pindex sys/stat.h
2166 @cindex file permission bits
2167 These symbolic constants are defined for the file mode bits that control
2168 access permission for the file:
2170 @table @code
2171 @comment sys/stat.h
2172 @comment POSIX.1
2173 @item S_IRUSR
2174 @vindex S_IRUSR
2175 @comment sys/stat.h
2176 @comment BSD
2177 @itemx S_IREAD
2178 @vindex S_IREAD
2179 Read permission bit for the owner of the file.  On many systems this bit
2180 is 0400.  @code{S_IREAD} is an obsolete synonym provided for BSD
2181 compatibility.
2183 @comment sys/stat.h
2184 @comment POSIX.1
2185 @item S_IWUSR
2186 @vindex S_IWUSR
2187 @comment sys/stat.h
2188 @comment BSD
2189 @itemx S_IWRITE
2190 @vindex S_IWRITE
2191 Write permission bit for the owner of the file.  Usually 0200.
2192 @w{@code{S_IWRITE}} is an obsolete synonym provided for BSD compatibility.
2194 @comment sys/stat.h
2195 @comment POSIX.1
2196 @item S_IXUSR
2197 @vindex S_IXUSR
2198 @comment sys/stat.h
2199 @comment BSD
2200 @itemx S_IEXEC
2201 @vindex S_IEXEC
2202 Execute (for ordinary files) or search (for directories) permission bit
2203 for the owner of the file.  Usually 0100.  @code{S_IEXEC} is an obsolete
2204 synonym provided for BSD compatibility.
2206 @comment sys/stat.h
2207 @comment POSIX.1
2208 @item S_IRWXU
2209 @vindex S_IRWXU
2210 This is equivalent to @samp{(S_IRUSR | S_IWUSR | S_IXUSR)}.
2212 @comment sys/stat.h
2213 @comment POSIX.1
2214 @item S_IRGRP
2215 @vindex S_IRGRP
2216 Read permission bit for the group owner of the file.  Usually 040.
2218 @comment sys/stat.h
2219 @comment POSIX.1
2220 @item S_IWGRP
2221 @vindex S_IWGRP
2222 Write permission bit for the group owner of the file.  Usually 020.
2224 @comment sys/stat.h
2225 @comment POSIX.1
2226 @item S_IXGRP
2227 @vindex S_IXGRP
2228 Execute or search permission bit for the group owner of the file.
2229 Usually 010.
2231 @comment sys/stat.h
2232 @comment POSIX.1
2233 @item S_IRWXG
2234 @vindex S_IRWXG
2235 This is equivalent to @samp{(S_IRGRP | S_IWGRP | S_IXGRP)}.
2237 @comment sys/stat.h
2238 @comment POSIX.1
2239 @item S_IROTH
2240 @vindex S_IROTH
2241 Read permission bit for other users.  Usually 04.
2243 @comment sys/stat.h
2244 @comment POSIX.1
2245 @item S_IWOTH
2246 @vindex S_IWOTH
2247 Write permission bit for other users.  Usually 02.
2249 @comment sys/stat.h
2250 @comment POSIX.1
2251 @item S_IXOTH
2252 @vindex S_IXOTH
2253 Execute or search permission bit for other users.  Usually 01.
2255 @comment sys/stat.h
2256 @comment POSIX.1
2257 @item S_IRWXO
2258 @vindex S_IRWXO
2259 This is equivalent to @samp{(S_IROTH | S_IWOTH | S_IXOTH)}.
2261 @comment sys/stat.h
2262 @comment POSIX
2263 @item S_ISUID
2264 @vindex S_ISUID
2265 This is the set-user-ID on execute bit, usually 04000.
2266 @xref{How Change Persona}.
2268 @comment sys/stat.h
2269 @comment POSIX
2270 @item S_ISGID
2271 @vindex S_ISGID
2272 This is the set-group-ID on execute bit, usually 02000.
2273 @xref{How Change Persona}.
2275 @cindex sticky bit
2276 @comment sys/stat.h
2277 @comment BSD
2278 @item S_ISVTX
2279 @vindex S_ISVTX
2280 This is the @dfn{sticky} bit, usually 01000.
2282 For a directory it gives permission to delete a file in that directory
2283 only if you own that file.  Ordinarily, a user can either delete all the
2284 files in a directory or cannot delete any of them (based on whether the
2285 user has write permission for the directory).  The same restriction
2286 applies---you must have both write permission for the directory and own
2287 the file you want to delete.  The one exception is that the owner of the
2288 directory can delete any file in the directory, no matter who owns it
2289 (provided the owner has given himself write permission for the
2290 directory).  This is commonly used for the @file{/tmp} directory, where
2291 anyone may create files but not delete files created by other users.
2293 Originally the sticky bit on an executable file modified the swapping
2294 policies of the system.  Normally, when a program terminated, its pages
2295 in core were immediately freed and reused.  If the sticky bit was set on
2296 the executable file, the system kept the pages in core for a while as if
2297 the program were still running.  This was advantageous for a program
2298 likely to be run many times in succession.  This usage is obsolete in
2299 modern systems.  When a program terminates, its pages always remain in
2300 core as long as there is no shortage of memory in the system.  When the
2301 program is next run, its pages will still be in core if no shortage
2302 arose since the last run.
2304 On some modern systems where the sticky bit has no useful meaning for an
2305 executable file, you cannot set the bit at all for a non-directory.
2306 If you try, @code{chmod} fails with @code{EFTYPE};
2307 @pxref{Setting Permissions}.
2309 Some systems (particularly SunOS) have yet another use for the sticky
2310 bit.  If the sticky bit is set on a file that is @emph{not} executable,
2311 it means the opposite: never cache the pages of this file at all.  The
2312 main use of this is for the files on an NFS server machine which are
2313 used as the swap area of diskless client machines.  The idea is that the
2314 pages of the file will be cached in the client's memory, so it is a
2315 waste of the server's memory to cache them a second time.  With this
2316 usage the sticky bit also implies that the filesystem may fail to record
2317 the file's modification time onto disk reliably (the idea being that
2318 no-one cares for a swap file).
2320 This bit is only available on BSD systems (and those derived from
2321 them).  Therefore one has to use the @code{_BSD_SOURCE} feature select
2322 macro to get the definition (@pxref{Feature Test Macros}).
2323 @end table
2325 The actual bit values of the symbols are listed in the table above
2326 so you can decode file mode values when debugging your programs.
2327 These bit values are correct for most systems, but they are not
2328 guaranteed.
2330 @strong{Warning:} Writing explicit numbers for file permissions is bad
2331 practice.  Not only is it not portable, it also requires everyone who
2332 reads your program to remember what the bits mean.  To make your program
2333 clean use the symbolic names.
2335 @node Access Permission
2336 @subsection How Your Access to a File is Decided
2337 @cindex permission to access a file
2338 @cindex access permission for a file
2339 @cindex file access permission
2341 Recall that the operating system normally decides access permission for
2342 a file based on the effective user and group IDs of the process and its
2343 supplementary group IDs, together with the file's owner, group and
2344 permission bits.  These concepts are discussed in detail in @ref{Process
2345 Persona}.
2347 If the effective user ID of the process matches the owner user ID of the
2348 file, then permissions for read, write, and execute/search are
2349 controlled by the corresponding ``user'' (or ``owner'') bits.  Likewise,
2350 if any of the effective group ID or supplementary group IDs of the
2351 process matches the group owner ID of the file, then permissions are
2352 controlled by the ``group'' bits.  Otherwise, permissions are controlled
2353 by the ``other'' bits.
2355 Privileged users, like @samp{root}, can access any file regardless of
2356 its permission bits.  As a special case, for a file to be executable
2357 even by a privileged user, at least one of its execute bits must be set.
2359 @node Setting Permissions
2360 @subsection Assigning File Permissions
2362 @cindex file creation mask
2363 @cindex umask
2364 The primitive functions for creating files (for example, @code{open} or
2365 @code{mkdir}) take a @var{mode} argument, which specifies the file
2366 permissions to give the newly created file.  This mode is modified by
2367 the process's @dfn{file creation mask}, or @dfn{umask}, before it is
2368 used.
2370 The bits that are set in the file creation mask identify permissions
2371 that are always to be disabled for newly created files.  For example, if
2372 you set all the ``other'' access bits in the mask, then newly created
2373 files are not accessible at all to processes in the ``other'' category,
2374 even if the @var{mode} argument passed to the create function would
2375 permit such access.  In other words, the file creation mask is the
2376 complement of the ordinary access permissions you want to grant.
2378 Programs that create files typically specify a @var{mode} argument that
2379 includes all the permissions that make sense for the particular file.
2380 For an ordinary file, this is typically read and write permission for
2381 all classes of users.  These permissions are then restricted as
2382 specified by the individual user's own file creation mask.
2384 @findex chmod
2385 To change the permission of an existing file given its name, call
2386 @code{chmod}.  This function uses the specified permission bits and
2387 ignores the file creation mask.
2389 @pindex umask
2390 In normal use, the file creation mask is initialized by the user's login
2391 shell (using the @code{umask} shell command), and inherited by all
2392 subprocesses.  Application programs normally don't need to worry about
2393 the file creation mask.  It will automatically do what it is supposed to
2396 When your program needs to create a file and bypass the umask for its
2397 access permissions, the easiest way to do this is to use @code{fchmod}
2398 after opening the file, rather than changing the umask.  In fact,
2399 changing the umask is usually done only by shells.  They use the
2400 @code{umask} function.
2402 The functions in this section are declared in @file{sys/stat.h}.
2403 @pindex sys/stat.h
2405 @comment sys/stat.h
2406 @comment POSIX.1
2407 @deftypefun mode_t umask (mode_t @var{mask})
2408 The @code{umask} function sets the file creation mask of the current
2409 process to @var{mask}, and returns the previous value of the file
2410 creation mask.
2412 Here is an example showing how to read the mask with @code{umask}
2413 without changing it permanently:
2415 @smallexample
2416 mode_t
2417 read_umask (void)
2419   mode_t mask = umask (0);
2420   umask (mask);
2421   return mask;
2423 @end smallexample
2425 @noindent
2426 However, it is better to use @code{getumask} if you just want to read
2427 the mask value, because it is reentrant (at least if you use the GNU
2428 operating system).
2429 @end deftypefun
2431 @comment sys/stat.h
2432 @comment GNU
2433 @deftypefun mode_t getumask (void)
2434 Return the current value of the file creation mask for the current
2435 process.  This function is a GNU extension.
2436 @end deftypefun
2438 @comment sys/stat.h
2439 @comment POSIX.1
2440 @deftypefun int chmod (const char *@var{filename}, mode_t @var{mode})
2441 The @code{chmod} function sets the access permission bits for the file
2442 named by @var{filename} to @var{mode}.
2444 If @var{filename} is a symbolic link, @code{chmod} changes the
2445 permissions of the file pointed to by the link, not those of the link
2446 itself.
2448 This function returns @code{0} if successful and @code{-1} if not.  In
2449 addition to the usual file name errors (@pxref{File Name
2450 Errors}), the following @code{errno} error conditions are defined for
2451 this function:
2453 @table @code
2454 @item ENOENT
2455 The named file doesn't exist.
2457 @item EPERM
2458 This process does not have permission to change the access permissions
2459 of this file.  Only the file's owner (as judged by the effective user ID
2460 of the process) or a privileged user can change them.
2462 @item EROFS
2463 The file resides on a read-only file system.
2465 @item EFTYPE
2466 @var{mode} has the @code{S_ISVTX} bit (the ``sticky bit'') set,
2467 and the named file is not a directory.  Some systems do not allow setting the
2468 sticky bit on non-directory files, and some do (and only some of those
2469 assign a useful meaning to the bit for non-directory files).
2471 You only get @code{EFTYPE} on systems where the sticky bit has no useful
2472 meaning for non-directory files, so it is always safe to just clear the
2473 bit in @var{mode} and call @code{chmod} again.  @xref{Permission Bits},
2474 for full details on the sticky bit.
2475 @end table
2476 @end deftypefun
2478 @comment sys/stat.h
2479 @comment BSD
2480 @deftypefun int fchmod (int @var{filedes}, int @var{mode})
2481 This is like @code{chmod}, except that it changes the permissions of the
2482 currently open file given by @var{filedes}.
2484 The return value from @code{fchmod} is @code{0} on success and @code{-1}
2485 on failure.  The following @code{errno} error codes are defined for this
2486 function:
2488 @table @code
2489 @item EBADF
2490 The @var{filedes} argument is not a valid file descriptor.
2492 @item EINVAL
2493 The @var{filedes} argument corresponds to a pipe or socket, or something
2494 else that doesn't really have access permissions.
2496 @item EPERM
2497 This process does not have permission to change the access permissions
2498 of this file.  Only the file's owner (as judged by the effective user ID
2499 of the process) or a privileged user can change them.
2501 @item EROFS
2502 The file resides on a read-only file system.
2503 @end table
2504 @end deftypefun
2506 @node Testing File Access
2507 @subsection Testing Permission to Access a File
2508 @cindex testing access permission
2509 @cindex access, testing for
2510 @cindex setuid programs and file access
2512 In some situations it is desirable to allow programs to access files or
2513 devices even if this is not possible with the permissions granted to the
2514 user.  One possible solution is to set the setuid-bit of the program
2515 file.  If such a program is started the @emph{effective} user ID of the
2516 process is changed to that of the owner of the program file.  So to
2517 allow write access to files like @file{/etc/passwd}, which normally can
2518 be written only by the super-user, the modifying program will have to be
2519 owned by @code{root} and the setuid-bit must be set.
2521 But beside the files the program is intended to change the user should
2522 not be allowed to access any file to which s/he would not have access
2523 anyway.  The program therefore must explicitly check whether @emph{the
2524 user} would have the necessary access to a file, before it reads or
2525 writes the file.
2527 To do this, use the function @code{access}, which checks for access
2528 permission based on the process's @emph{real} user ID rather than the
2529 effective user ID.  (The setuid feature does not alter the real user ID,
2530 so it reflects the user who actually ran the program.)
2532 There is another way you could check this access, which is easy to
2533 describe, but very hard to use.  This is to examine the file mode bits
2534 and mimic the system's own access computation.  This method is
2535 undesirable because many systems have additional access control
2536 features; your program cannot portably mimic them, and you would not
2537 want to try to keep track of the diverse features that different systems
2538 have.  Using @code{access} is simple and automatically does whatever is
2539 appropriate for the system you are using.
2541 @code{access} is @emph{only} only appropriate to use in setuid programs.
2542 A non-setuid program will always use the effective ID rather than the
2543 real ID.
2545 @pindex unistd.h
2546 The symbols in this section are declared in @file{unistd.h}.
2548 @comment unistd.h
2549 @comment POSIX.1
2550 @deftypefun int access (const char *@var{filename}, int @var{how})
2551 The @code{access} function checks to see whether the file named by
2552 @var{filename} can be accessed in the way specified by the @var{how}
2553 argument.  The @var{how} argument either can be the bitwise OR of the
2554 flags @code{R_OK}, @code{W_OK}, @code{X_OK}, or the existence test
2555 @code{F_OK}.
2557 This function uses the @emph{real} user and group IDs of the calling
2558 process, rather than the @emph{effective} IDs, to check for access
2559 permission.  As a result, if you use the function from a @code{setuid}
2560 or @code{setgid} program (@pxref{How Change Persona}), it gives
2561 information relative to the user who actually ran the program.
2563 The return value is @code{0} if the access is permitted, and @code{-1}
2564 otherwise.  (In other words, treated as a predicate function,
2565 @code{access} returns true if the requested access is @emph{denied}.)
2567 In addition to the usual file name errors (@pxref{File Name
2568 Errors}), the following @code{errno} error conditions are defined for
2569 this function:
2571 @table @code
2572 @item EACCES
2573 The access specified by @var{how} is denied.
2575 @item ENOENT
2576 The file doesn't exist.
2578 @item EROFS
2579 Write permission was requested for a file on a read-only file system.
2580 @end table
2581 @end deftypefun
2583 These macros are defined in the header file @file{unistd.h} for use
2584 as the @var{how} argument to the @code{access} function.  The values
2585 are integer constants.
2586 @pindex unistd.h
2588 @comment unistd.h
2589 @comment POSIX.1
2590 @deftypevr Macro int R_OK
2591 Flag meaning test for read permission.
2592 @end deftypevr
2594 @comment unistd.h
2595 @comment POSIX.1
2596 @deftypevr Macro int W_OK
2597 Flag meaning test for write permission.
2598 @end deftypevr
2600 @comment unistd.h
2601 @comment POSIX.1
2602 @deftypevr Macro int X_OK
2603 Flag meaning test for execute/search permission.
2604 @end deftypevr
2606 @comment unistd.h
2607 @comment POSIX.1
2608 @deftypevr Macro int F_OK
2609 Flag meaning test for existence of the file.
2610 @end deftypevr
2612 @node File Times
2613 @subsection File Times
2615 @cindex file access time
2616 @cindex file modification time
2617 @cindex file attribute modification time
2618 Each file has three time stamps associated with it:  its access time,
2619 its modification time, and its attribute modification time.  These
2620 correspond to the @code{st_atime}, @code{st_mtime}, and @code{st_ctime}
2621 members of the @code{stat} structure; see @ref{File Attributes}.
2623 All of these times are represented in calendar time format, as
2624 @code{time_t} objects.  This data type is defined in @file{time.h}.
2625 For more information about representation and manipulation of time
2626 values, see @ref{Calendar Time}.
2627 @pindex time.h
2629 Reading from a file updates its access time attribute, and writing
2630 updates its modification time.  When a file is created, all three
2631 time stamps for that file are set to the current time.  In addition, the
2632 attribute change time and modification time fields of the directory that
2633 contains the new entry are updated.
2635 Adding a new name for a file with the @code{link} function updates the
2636 attribute change time field of the file being linked, and both the
2637 attribute change time and modification time fields of the directory
2638 containing the new name.  These same fields are affected if a file name
2639 is deleted with @code{unlink}, @code{remove} or @code{rmdir}.  Renaming
2640 a file with @code{rename} affects only the attribute change time and
2641 modification time fields of the two parent directories involved, and not
2642 the times for the file being renamed.
2644 Changing the attributes of a file (for example, with @code{chmod})
2645 updates its attribute change time field.
2647 You can also change some of the time stamps of a file explicitly using
2648 the @code{utime} function---all except the attribute change time.  You
2649 need to include the header file @file{utime.h} to use this facility.
2650 @pindex utime.h
2652 @comment time.h
2653 @comment POSIX.1
2654 @deftp {Data Type} {struct utimbuf}
2655 The @code{utimbuf} structure is used with the @code{utime} function to
2656 specify new access and modification times for a file.  It contains the
2657 following members:
2659 @table @code
2660 @item time_t actime
2661 This is the access time for the file.
2663 @item time_t modtime
2664 This is the modification time for the file.
2665 @end table
2666 @end deftp
2668 @comment time.h
2669 @comment POSIX.1
2670 @deftypefun int utime (const char *@var{filename}, const struct utimbuf *@var{times})
2671 This function is used to modify the file times associated with the file
2672 named @var{filename}.
2674 If @var{times} is a null pointer, then the access and modification times
2675 of the file are set to the current time.  Otherwise, they are set to the
2676 values from the @code{actime} and @code{modtime} members (respectively)
2677 of the @code{utimbuf} structure pointed to by @var{times}.
2679 The attribute modification time for the file is set to the current time
2680 in either case (since changing the time stamps is itself a modification
2681 of the file attributes).
2683 The @code{utime} function returns @code{0} if successful and @code{-1}
2684 on failure.  In addition to the usual file name errors
2685 (@pxref{File Name Errors}), the following @code{errno} error conditions
2686 are defined for this function:
2688 @table @code
2689 @item EACCES
2690 There is a permission problem in the case where a null pointer was
2691 passed as the @var{times} argument.  In order to update the time stamp on
2692 the file, you must either be the owner of the file, have write
2693 permission for the file, or be a privileged user.
2695 @item ENOENT
2696 The file doesn't exist.
2698 @item EPERM
2699 If the @var{times} argument is not a null pointer, you must either be
2700 the owner of the file or be a privileged user.
2702 @item EROFS
2703 The file lives on a read-only file system.
2704 @end table
2705 @end deftypefun
2707 Each of the three time stamps has a corresponding microsecond part,
2708 which extends its resolution.  These fields are called
2709 @code{st_atime_usec}, @code{st_mtime_usec}, and @code{st_ctime_usec};
2710 each has a value between 0 and 999,999, which indicates the time in
2711 microseconds.  They correspond to the @code{tv_usec} field of a
2712 @code{timeval} structure; see @ref{High-Resolution Calendar}.
2714 The @code{utimes} function is like @code{utime}, but also lets you specify
2715 the fractional part of the file times.  The prototype for this function is
2716 in the header file @file{sys/time.h}.
2717 @pindex sys/time.h
2719 @comment sys/time.h
2720 @comment BSD
2721 @deftypefun int utimes (const char *@var{filename}, struct timeval @var{tvp}@t{[2]})
2722 This function sets the file access and modification times of the file
2723 @var{filename}.  The new file access time is specified by
2724 @code{@var{tvp}[0]}, and the new modification time by
2725 @code{@var{tvp}[1]}.  Similar to @code{utime}, if @var{tvp} is a null
2726 pointer then the access and modification times of the file are set to
2727 the current time.  This function comes from BSD.
2729 The return values and error conditions are the same as for the @code{utime}
2730 function.
2731 @end deftypefun
2733 @comment sys/time.h
2734 @comment BSD
2735 @deftypefun int lutimes (const char *@var{filename}, struct timeval @var{tvp}@t{[2]})
2736 This function is like @code{utimes}, except that it does not follow
2737 symbolic links.  If @var{filename} is the name of a symbolic link,
2738 @code{lutimes} sets the file access and modification times of the
2739 symbolic link special file itself (as seen by @code{lstat};
2740 @pxref{Symbolic Links}) while @code{utimes} sets the file access and
2741 modification times of the file the symbolic link refers to.  This
2742 function comes from FreeBSD, and is not available on all platforms (if
2743 not available, it will fail with @code{ENOSYS}).
2745 The return values and error conditions are the same as for the @code{utime}
2746 function.
2747 @end deftypefun
2749 @comment sys/time.h
2750 @comment BSD
2751 @deftypefun int futimes (int *@var{fd}, struct timeval @var{tvp}@t{[2]})
2752 This function is like @code{utimes}, except that it takes an open file
2753 descriptor as an argument instead of a file name.  @xref{Low-Level
2754 I/O}.  This function comes from FreeBSD, and is not available on all
2755 platforms (if not available, it will fail with @code{ENOSYS}).
2757 Like @code{utimes}, @code{futimes} returns @code{0} on success and @code{-1}
2758 on failure.  The following @code{errno} error conditions are defined for
2759 @code{futimes}:
2761 @table @code
2762 @item EACCES
2763 There is a permission problem in the case where a null pointer was
2764 passed as the @var{times} argument.  In order to update the time stamp on
2765 the file, you must either be the owner of the file, have write
2766 permission for the file, or be a privileged user.
2768 @item EBADF
2769 The @var{filedes} argument is not a valid file descriptor.
2771 @item EPERM
2772 If the @var{times} argument is not a null pointer, you must either be
2773 the owner of the file or be a privileged user.
2775 @item EROFS
2776 The file lives on a read-only file system.
2777 @end table
2778 @end deftypefun
2780 @node File Size
2781 @subsection File Size
2783 Normally file sizes are maintained automatically.  A file begins with a
2784 size of @math{0} and is automatically extended when data is written past
2785 its end.  It is also possible to empty a file completely by an
2786 @code{open} or @code{fopen} call.
2788 However, sometimes it is necessary to @emph{reduce} the size of a file.
2789 This can be done with the @code{truncate} and @code{ftruncate} functions.
2790 They were introduced in BSD Unix.  @code{ftruncate} was later added to
2791 POSIX.1.
2793 Some systems allow you to extend a file (creating holes) with these
2794 functions.  This is useful when using memory-mapped I/O
2795 (@pxref{Memory-mapped I/O}), where files are not automatically extended.
2796 However, it is not portable but must be implemented if @code{mmap}
2797 allows mapping of files (i.e., @code{_POSIX_MAPPED_FILES} is defined).
2799 Using these functions on anything other than a regular file gives
2800 @emph{undefined} results.  On many systems, such a call will appear to
2801 succeed, without actually accomplishing anything.
2803 @comment unistd.h
2804 @comment X/Open
2805 @deftypefun int truncate (const char *@var{filename}, off_t @var{length})
2807 The @code{truncate} function changes the size of @var{filename} to
2808 @var{length}.  If @var{length} is shorter than the previous length, data
2809 at the end will be lost.  The file must be writable by the user to
2810 perform this operation.
2812 If @var{length} is longer, holes will be added to the end.  However, some
2813 systems do not support this feature and will leave the file unchanged.
2815 When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} the
2816 @code{truncate} function is in fact @code{truncate64} and the type
2817 @code{off_t} has 64 bits which makes it possible to handle files up to
2818 @math{2^63} bytes in length.
2820 The return value is @math{0} for success, or @math{-1} for an error.  In
2821 addition to the usual file name errors, the following errors may occur:
2823 @table @code
2825 @item EACCES
2826 The file is a directory or not writable.
2828 @item EINVAL
2829 @var{length} is negative.
2831 @item EFBIG
2832 The operation would extend the file beyond the limits of the operating system.
2834 @item EIO
2835 A hardware I/O error occurred.
2837 @item EPERM
2838 The file is "append-only" or "immutable".
2840 @item EINTR
2841 The operation was interrupted by a signal.
2843 @end table
2845 @end deftypefun
2847 @comment unistd.h
2848 @comment Unix98
2849 @deftypefun int truncate64 (const char *@var{name}, off64_t @var{length})
2850 This function is similar to the @code{truncate} function.  The
2851 difference is that the @var{length} argument is 64 bits wide even on 32
2852 bits machines, which allows the handling of files with sizes up to
2853 @math{2^63} bytes.
2855 When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} on a
2856 32 bits machine this function is actually available under the name
2857 @code{truncate} and so transparently replaces the 32 bits interface.
2858 @end deftypefun
2860 @comment unistd.h
2861 @comment POSIX
2862 @deftypefun int ftruncate (int @var{fd}, off_t @var{length})
2864 This is like @code{truncate}, but it works on a file descriptor @var{fd}
2865 for an opened file instead of a file name to identify the object.  The
2866 file must be opened for writing to successfully carry out the operation.
2868 The POSIX standard leaves it implementation defined what happens if the
2869 specified new @var{length} of the file is bigger than the original size.
2870 The @code{ftruncate} function might simply leave the file alone and do
2871 nothing or it can increase the size to the desired size.  In this later
2872 case the extended area should be zero-filled.  So using @code{ftruncate}
2873 is no reliable way to increase the file size but if it is possible it is
2874 probably the fastest way.  The function also operates on POSIX shared
2875 memory segments if these are implemented by the system.
2877 @code{ftruncate} is especially useful in combination with @code{mmap}.
2878 Since the mapped region must have a fixed size one cannot enlarge the
2879 file by writing something beyond the last mapped page.  Instead one has
2880 to enlarge the file itself and then remap the file with the new size.
2881 The example below shows how this works.
2883 When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} the
2884 @code{ftruncate} function is in fact @code{ftruncate64} and the type
2885 @code{off_t} has 64 bits which makes it possible to handle files up to
2886 @math{2^63} bytes in length.
2888 The return value is @math{0} for success, or @math{-1} for an error.  The
2889 following errors may occur:
2891 @table @code
2893 @item EBADF
2894 @var{fd} does not correspond to an open file.
2896 @item EACCES
2897 @var{fd} is a directory or not open for writing.
2899 @item EINVAL
2900 @var{length} is negative.
2902 @item EFBIG
2903 The operation would extend the file beyond the limits of the operating system.
2904 @c or the open() call -- with the not-yet-discussed feature of opening
2905 @c files with extra-large offsets.
2907 @item EIO
2908 A hardware I/O error occurred.
2910 @item EPERM
2911 The file is "append-only" or "immutable".
2913 @item EINTR
2914 The operation was interrupted by a signal.
2916 @c ENOENT is also possible on Linux --- however it only occurs if the file
2917 @c descriptor has a `file' structure but no `inode' structure.  I'm not
2918 @c sure how such an fd could be created.  Perhaps it's a bug.
2920 @end table
2922 @end deftypefun
2924 @comment unistd.h
2925 @comment Unix98
2926 @deftypefun int ftruncate64 (int @var{id}, off64_t @var{length})
2927 This function is similar to the @code{ftruncate} function.  The
2928 difference is that the @var{length} argument is 64 bits wide even on 32
2929 bits machines which allows the handling of files with sizes up to
2930 @math{2^63} bytes.
2932 When the source file is compiled with @code{_FILE_OFFSET_BITS == 64} on a
2933 32 bits machine this function is actually available under the name
2934 @code{ftruncate} and so transparently replaces the 32 bits interface.
2935 @end deftypefun
2937 As announced here is a little example of how to use @code{ftruncate} in
2938 combination with @code{mmap}:
2940 @smallexample
2941 int fd;
2942 void *start;
2943 size_t len;
2946 add (off_t at, void *block, size_t size)
2948   if (at + size > len)
2949     @{
2950       /* Resize the file and remap.  */
2951       size_t ps = sysconf (_SC_PAGESIZE);
2952       size_t ns = (at + size + ps - 1) & ~(ps - 1);
2953       void *np;
2954       if (ftruncate (fd, ns) < 0)
2955         return -1;
2956       np = mmap (NULL, ns, PROT_READ|PROT_WRITE, MAP_SHARED, fd, 0);
2957       if (np == MAP_FAILED)
2958         return -1;
2959       start = np;
2960       len = ns;
2961     @}
2962   memcpy ((char *) start + at, block, size);
2963   return 0;
2965 @end smallexample
2967 The function @code{add} writes a block of memory at an arbitrary
2968 position in the file.  If the current size of the file is too small it
2969 is extended.  Note the it is extended by a round number of pages.  This
2970 is a requirement of @code{mmap}.  The program has to keep track of the
2971 real size, and when it has finished a final @code{ftruncate} call should
2972 set the real size of the file.
2974 @node Making Special Files
2975 @section Making Special Files
2976 @cindex creating special files
2977 @cindex special files
2979 The @code{mknod} function is the primitive for making special files,
2980 such as files that correspond to devices.  The GNU library includes
2981 this function for compatibility with BSD.
2983 The prototype for @code{mknod} is declared in @file{sys/stat.h}.
2984 @pindex sys/stat.h
2986 @comment sys/stat.h
2987 @comment BSD
2988 @deftypefun int mknod (const char *@var{filename}, int @var{mode}, int @var{dev})
2989 The @code{mknod} function makes a special file with name @var{filename}.
2990 The @var{mode} specifies the mode of the file, and may include the various
2991 special file bits, such as @code{S_IFCHR} (for a character special file)
2992 or @code{S_IFBLK} (for a block special file).  @xref{Testing File Type}.
2994 The @var{dev} argument specifies which device the special file refers to.
2995 Its exact interpretation depends on the kind of special file being created.
2997 The return value is @code{0} on success and @code{-1} on error.  In addition
2998 to the usual file name errors (@pxref{File Name Errors}), the
2999 following @code{errno} error conditions are defined for this function:
3001 @table @code
3002 @item EPERM
3003 The calling process is not privileged.  Only the superuser can create
3004 special files.
3006 @item ENOSPC
3007 The directory or file system that would contain the new file is full
3008 and cannot be extended.
3010 @item EROFS
3011 The directory containing the new file can't be modified because it's on
3012 a read-only file system.
3014 @item EEXIST
3015 There is already a file named @var{filename}.  If you want to replace
3016 this file, you must remove the old file explicitly first.
3017 @end table
3018 @end deftypefun
3020 @node Temporary Files
3021 @section Temporary Files
3023 If you need to use a temporary file in your program, you can use the
3024 @code{tmpfile} function to open it.  Or you can use the @code{tmpnam}
3025 (better: @code{tmpnam_r}) function to provide a name for a temporary
3026 file and then you can open it in the usual way with @code{fopen}.
3028 The @code{tempnam} function is like @code{tmpnam} but lets you choose
3029 what directory temporary files will go in, and something about what
3030 their file names will look like.  Important for multi-threaded programs
3031 is that @code{tempnam} is reentrant, while @code{tmpnam} is not since it
3032 returns a pointer to a static buffer.
3034 These facilities are declared in the header file @file{stdio.h}.
3035 @pindex stdio.h
3037 @comment stdio.h
3038 @comment ISO
3039 @deftypefun {FILE *} tmpfile (void)
3040 This function creates a temporary binary file for update mode, as if by
3041 calling @code{fopen} with mode @code{"wb+"}.  The file is deleted
3042 automatically when it is closed or when the program terminates.  (On
3043 some other @w{ISO C} systems the file may fail to be deleted if the program
3044 terminates abnormally).
3046 This function is reentrant.
3048 When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a
3049 32-bit system this function is in fact @code{tmpfile64}, i.e. the LFS
3050 interface transparently replaces the old interface.
3051 @end deftypefun
3053 @comment stdio.h
3054 @comment Unix98
3055 @deftypefun {FILE *} tmpfile64 (void)
3056 This function is similar to @code{tmpfile}, but the stream it returns a
3057 pointer to was opened using @code{tmpfile64}.  Therefore this stream can
3058 be used for files larger then @math{2^31} bytes on 32-bit machines.
3060 Please note that the return type is still @code{FILE *}.  There is no
3061 special @code{FILE} type for the LFS interface.
3063 If the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a 32
3064 bits machine this function is available under the name @code{tmpfile}
3065 and so transparently replaces the old interface.
3066 @end deftypefun
3068 @comment stdio.h
3069 @comment ISO
3070 @deftypefun {char *} tmpnam (char *@var{result})
3071 This function constructs and returns a valid file name that does not
3072 refer to any existing file.  If the @var{result} argument is a null
3073 pointer, the return value is a pointer to an internal static string,
3074 which might be modified by subsequent calls and therefore makes this
3075 function non-reentrant.  Otherwise, the @var{result} argument should be
3076 a pointer to an array of at least @code{L_tmpnam} characters, and the
3077 result is written into that array.
3079 It is possible for @code{tmpnam} to fail if you call it too many times
3080 without removing previously-created files.  This is because the limited
3081 length of the temporary file names gives room for only a finite number
3082 of different names.  If @code{tmpnam} fails it returns a null pointer.
3084 @strong{Warning:} Between the time the pathname is constructed and the
3085 file is created another process might have created a file with the same
3086 name using @code{tmpnam}, leading to a possible security hole.  The
3087 implementation generates names which can hardly be predicted, but when
3088 opening the file you should use the @code{O_EXCL} flag.  Using
3089 @code{tmpfile} or @code{mkstemp} is a safe way to avoid this problem.
3090 @end deftypefun
3092 @comment stdio.h
3093 @comment GNU
3094 @deftypefun {char *} tmpnam_r (char *@var{result})
3095 This function is nearly identical to the @code{tmpnam} function, except
3096 that if @var{result} is a null pointer it returns a null pointer.
3098 This guarantees reentrancy because the non-reentrant situation of
3099 @code{tmpnam} cannot happen here.
3101 @strong{Warning}: This function has the same security problems as
3102 @code{tmpnam}.
3103 @end deftypefun
3105 @comment stdio.h
3106 @comment ISO
3107 @deftypevr Macro int L_tmpnam
3108 The value of this macro is an integer constant expression that
3109 represents the minimum size of a string large enough to hold a file name
3110 generated by the @code{tmpnam} function.
3111 @end deftypevr
3113 @comment stdio.h
3114 @comment ISO
3115 @deftypevr Macro int TMP_MAX
3116 The macro @code{TMP_MAX} is a lower bound for how many temporary names
3117 you can create with @code{tmpnam}.  You can rely on being able to call
3118 @code{tmpnam} at least this many times before it might fail saying you
3119 have made too many temporary file names.
3121 With the GNU library, you can create a very large number of temporary
3122 file names.  If you actually created the files, you would probably run
3123 out of disk space before you ran out of names.  Some other systems have
3124 a fixed, small limit on the number of temporary files.  The limit is
3125 never less than @code{25}.
3126 @end deftypevr
3128 @comment stdio.h
3129 @comment SVID
3130 @deftypefun {char *} tempnam (const char *@var{dir}, const char *@var{prefix})
3131 This function generates a unique temporary file name.  If @var{prefix}
3132 is not a null pointer, up to five characters of this string are used as
3133 a prefix for the file name.  The return value is a string newly
3134 allocated with @code{malloc}, so you should release its storage with
3135 @code{free} when it is no longer needed.
3137 Because the string is dynamically allocated this function is reentrant.
3139 The directory prefix for the temporary file name is determined by
3140 testing each of the following in sequence.  The directory must exist and
3141 be writable.
3143 @itemize @bullet
3144 @item
3145 The environment variable @code{TMPDIR}, if it is defined.  For security
3146 reasons this only happens if the program is not SUID or SGID enabled.
3148 @item
3149 The @var{dir} argument, if it is not a null pointer.
3151 @item
3152 The value of the @code{P_tmpdir} macro.
3154 @item
3155 The directory @file{/tmp}.
3156 @end itemize
3158 This function is defined for SVID compatibility.
3160 @strong{Warning:} Between the time the pathname is constructed and the
3161 file is created another process might have created a file with the same
3162 name using @code{tempnam}, leading to a possible security hole.  The
3163 implementation generates names which can hardly be predicted, but when
3164 opening the file you should use the @code{O_EXCL} flag.  Using
3165 @code{tmpfile} or @code{mkstemp} is a safe way to avoid this problem.
3166 @end deftypefun
3167 @cindex TMPDIR environment variable
3169 @comment stdio.h
3170 @comment SVID
3171 @c !!! are we putting SVID/GNU/POSIX.1/BSD in here or not??
3172 @deftypevr {SVID Macro} {char *} P_tmpdir
3173 This macro is the name of the default directory for temporary files.
3174 @end deftypevr
3176 Older Unix systems did not have the functions just described.  Instead
3177 they used @code{mktemp} and @code{mkstemp}.  Both of these functions
3178 work by modifying a file name template string you pass.  The last six
3179 characters of this string must be @samp{XXXXXX}.  These six @samp{X}s
3180 are replaced with six characters which make the whole string a unique
3181 file name.  Usually the template string is something like
3182 @samp{/tmp/@var{prefix}XXXXXX}, and each program uses a unique @var{prefix}.
3184 @strong{Note:} Because @code{mktemp} and @code{mkstemp} modify the
3185 template string, you @emph{must not} pass string constants to them.
3186 String constants are normally in read-only storage, so your program
3187 would crash when @code{mktemp} or @code{mkstemp} tried to modify the
3188 string.
3190 @comment stdlib.h
3191 @comment Unix
3192 @deftypefun {char *} mktemp (char *@var{template})
3193 The @code{mktemp} function generates a unique file name by modifying
3194 @var{template} as described above.  If successful, it returns
3195 @var{template} as modified.  If @code{mktemp} cannot find a unique file
3196 name, it makes @var{template} an empty string and returns that.  If
3197 @var{template} does not end with @samp{XXXXXX}, @code{mktemp} returns a
3198 null pointer.
3200 @strong{Warning:} Between the time the pathname is constructed and the
3201 file is created another process might have created a file with the same
3202 name using @code{mktemp}, leading to a possible security hole.  The
3203 implementation generates names which can hardly be predicted, but when
3204 opening the file you should use the @code{O_EXCL} flag.  Using
3205 @code{mkstemp} is a safe way to avoid this problem.
3206 @end deftypefun
3208 @comment stdlib.h
3209 @comment BSD
3210 @deftypefun int mkstemp (char *@var{template})
3211 The @code{mkstemp} function generates a unique file name just as
3212 @code{mktemp} does, but it also opens the file for you with @code{open}
3213 (@pxref{Opening and Closing Files}).  If successful, it modifies
3214 @var{template} in place and returns a file descriptor for that file open
3215 for reading and writing.  If @code{mkstemp} cannot create a
3216 uniquely-named file, it returns @code{-1}.  If @var{template} does not
3217 end with @samp{XXXXXX}, @code{mkstemp} returns @code{-1} and does not
3218 modify @var{template}.
3220 The file is opened using mode @code{0600}.  If the file is meant to be
3221 used by other users this mode must be changed explicitly.
3222 @end deftypefun
3224 Unlike @code{mktemp}, @code{mkstemp} is actually guaranteed to create a
3225 unique file that cannot possibly clash with any other program trying to
3226 create a temporary file.  This is because it works by calling
3227 @code{open} with the @code{O_EXCL} flag, which says you want to create a
3228 new file and get an error if the file already exists.
3230 @comment stdlib.h
3231 @comment BSD
3232 @deftypefun {char *} mkdtemp (char *@var{template})
3233 The @code{mkdtemp} function creates a directory with a unique name.  If
3234 it succeeds, it overwrites @var{template} with the name of the
3235 directory, and returns @var{template}.  As with @code{mktemp} and
3236 @code{mkstemp}, @var{template} should be a string ending with
3237 @samp{XXXXXX}.
3239 If @code{mkdtemp} cannot create an uniquely named directory, it returns
3240 @code{NULL} and sets @var{errno} appropriately.  If @var{template} does
3241 not end with @samp{XXXXXX}, @code{mkdtemp} returns @code{NULL} and does
3242 not modify @var{template}.  @var{errno} will be set to @code{EINVAL} in
3243 this case.
3245 The directory is created using mode @code{0700}.
3246 @end deftypefun
3248 The directory created by @code{mkdtemp} cannot clash with temporary
3249 files or directories created by other users.  This is because directory
3250 creation always works like @code{open} with @code{O_EXCL}.
3251 @xref{Creating Directories}.
3253 The @code{mkdtemp} function comes from OpenBSD.