fcntl.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. #ifndef _FCNTL_H
  2. # error "Never use <bits/fcntl.h> directly; include <fcntl.h> instead."
  3. #endif
  4. #include <sys/types.h>
  5. #ifdef __USE_GNU
  6. # include <bits/uio.h>
  7. #endif
  8. /* open/fcntl - O_SYNC is only implemented on blocks devices and on files
  9. located on an ext2 file system */
  10. #define O_ACCMODE 0003
  11. #define O_RDONLY 00
  12. #define O_WRONLY 01
  13. #define O_RDWR 02
  14. #define O_CREAT 0100 /* not fcntl */
  15. #define O_EXCL 0200 /* not fcntl */
  16. #define O_NOCTTY 0400 /* not fcntl */
  17. #define O_TRUNC 01000 /* not fcntl */
  18. #define O_APPEND 02000
  19. #define O_NONBLOCK 04000
  20. #define O_NDELAY O_NONBLOCK
  21. #define O_SYNC 010000
  22. #define O_FSYNC O_SYNC
  23. #define O_ASYNC 020000
  24. #ifdef __USE_GNU
  25. # define O_DIRECTORY 040000 /* Must be a directory. */
  26. # define O_NOFOLLOW 0100000 /* Do not follow links. */
  27. # define O_DIRECT 0200000 /* Direct disk access. */
  28. # define O_STREAMING 04000000/* streaming access */
  29. # define O_CLOEXEC 02000000 /* set close_on_exec */
  30. #endif
  31. /* For now Linux has synchronisity options for data and read operations.
  32. We define the symbols here but let them do the same as O_SYNC since
  33. this is a superset. */
  34. #if defined __USE_POSIX199309 || defined __USE_UNIX98
  35. # define O_DSYNC O_SYNC /* Synchronize data. */
  36. # define O_RSYNC O_SYNC /* Synchronize read operations. */
  37. #endif
  38. #ifdef __USE_LARGEFILE64
  39. # define O_LARGEFILE 0400000
  40. #endif
  41. /* Values for the second argument to `fcntl'. */
  42. #define F_DUPFD 0 /* Duplicate file descriptor. */
  43. #define F_GETFD 1 /* Get file descriptor flags. */
  44. #define F_SETFD 2 /* Set file descriptor flags. */
  45. #define F_GETFL 3 /* Get file status flags. */
  46. #define F_SETFL 4 /* Set file status flags. */
  47. #ifndef __USE_FILE_OFFSET64
  48. # define F_GETLK 5 /* Get record locking info. */
  49. # define F_SETLK 6 /* Set record locking info (non-blocking). */
  50. # define F_SETLKW 7 /* Set record locking info (blocking). */
  51. #else
  52. # define F_GETLK F_GETLK64 /* Get record locking info. */
  53. # define F_SETLK F_SETLK64 /* Set record locking info (non-blocking).*/
  54. # define F_SETLKW F_SETLKW64 /* Set record locking info (blocking). */
  55. #endif
  56. #define F_GETLK64 12 /* Get record locking info. */
  57. #define F_SETLK64 13 /* Set record locking info (non-blocking). */
  58. #define F_SETLKW64 14 /* Set record locking info (blocking). */
  59. #if defined __USE_BSD || defined __USE_XOPEN2K
  60. # define F_SETOWN 8 /* Get owner of socket (receiver of SIGIO). */
  61. # define F_GETOWN 9 /* Set owner of socket (receiver of SIGIO). */
  62. #endif
  63. #ifdef __USE_GNU
  64. # define F_SETSIG 10 /* Set number of signal to be sent. */
  65. # define F_GETSIG 11 /* Get number of signal to be sent. */
  66. #endif
  67. #ifdef __USE_GNU
  68. # define F_SETLEASE 1024 /* Set a lease. */
  69. # define F_GETLEASE 1025 /* Enquire what lease is active. */
  70. # define F_NOTIFY 1026 /* Request notfications on a directory. */
  71. #endif
  72. /* For F_[GET|SET]FL. */
  73. #define FD_CLOEXEC 1 /* actually anything with low bit set goes */
  74. /* For posix fcntl() and `l_type' field of a `struct flock' for lockf(). */
  75. #define F_RDLCK 0 /* Read lock. */
  76. #define F_WRLCK 1 /* Write lock. */
  77. #define F_UNLCK 2 /* Remove lock. */
  78. /* For old implementation of bsd flock(). */
  79. #define F_EXLCK 4 /* or 3 */
  80. #define F_SHLCK 8 /* or 4 */
  81. #ifdef __USE_BSD
  82. /* Operations for bsd flock(), also used by the kernel implementation. */
  83. # define LOCK_SH 1 /* shared lock */
  84. # define LOCK_EX 2 /* exclusive lock */
  85. # define LOCK_NB 4 /* or'd with one of the above to prevent
  86. blocking */
  87. # define LOCK_UN 8 /* remove lock */
  88. #endif
  89. #ifdef __USE_GNU
  90. # define LOCK_MAND 32 /* This is a mandatory flock: */
  91. # define LOCK_READ 64 /* ... which allows concurrent read operations. */
  92. # define LOCK_WRITE 128 /* ... which allows concurrent write operations. */
  93. # define LOCK_RW 192 /* ... Which allows concurrent read & write operations. */
  94. #endif
  95. #ifdef __USE_GNU
  96. /* Types of directory notifications that may be requested with F_NOTIFY. */
  97. # define DN_ACCESS 0x00000001 /* File accessed. */
  98. # define DN_MODIFY 0x00000002 /* File modified. */
  99. # define DN_CREATE 0x00000004 /* File created. */
  100. # define DN_DELETE 0x00000008 /* File removed. */
  101. # define DN_RENAME 0x00000010 /* File renamed. */
  102. # define DN_ATTRIB 0x00000020 /* File changed attibutes. */
  103. # define DN_MULTISHOT 0x80000000 /* Don't remove notifier. */
  104. #endif
  105. struct flock
  106. {
  107. short int l_type; /* Type of lock: F_RDLCK, F_WRLCK, or F_UNLCK. */
  108. short int l_whence; /* Where `l_start' is relative to (like `lseek'). */
  109. #ifndef __USE_FILE_OFFSET64
  110. __off_t l_start; /* Offset where the lock begins. */
  111. __off_t l_len; /* Size of the locked area; zero means until EOF. */
  112. #else
  113. __off64_t l_start; /* Offset where the lock begins. */
  114. __off64_t l_len; /* Size of the locked area; zero means until EOF. */
  115. #endif
  116. __pid_t l_pid; /* Process holding the lock. */
  117. };
  118. #ifdef __USE_LARGEFILE64
  119. struct flock64
  120. {
  121. short int l_type; /* Type of lock: F_RDLCK, F_WRLCK, or F_UNLCK. */
  122. short int l_whence; /* Where `l_start' is relative to (like `lseek'). */
  123. __off64_t l_start; /* Offset where the lock begins. */
  124. __off64_t l_len; /* Size of the locked area; zero means until EOF. */
  125. __pid_t l_pid; /* Process holding the lock. */
  126. };
  127. #endif
  128. /* Define some more compatibility macros to be backward compatible with
  129. BSD systems which did not managed to hide these kernel macros. */
  130. #ifdef __USE_BSD
  131. # define FAPPEND O_APPEND
  132. # define FFSYNC O_FSYNC
  133. # define FASYNC O_ASYNC
  134. # define FNONBLOCK O_NONBLOCK
  135. # define FNDELAY O_NDELAY
  136. #endif /* Use BSD. */
  137. /* Advise to `posix_fadvise'. */
  138. #ifdef __USE_XOPEN2K
  139. # define POSIX_FADV_NORMAL 0 /* No further special treatment. */
  140. # define POSIX_FADV_RANDOM 1 /* Expect random page references. */
  141. # define POSIX_FADV_SEQUENTIAL 2 /* Expect sequential page references. */
  142. # define POSIX_FADV_WILLNEED 3 /* Will need these pages. */
  143. # define POSIX_FADV_DONTNEED 4 /* Don't need these pages. */
  144. # define POSIX_FADV_NOREUSE 5 /* Data will be accessed once. */
  145. #endif
  146. __BEGIN_DECLS
  147. #if defined __USE_GNU && defined __UCLIBC_LINUX_SPECIFIC__
  148. /* Provide kernel hint to read ahead. */
  149. extern ssize_t readahead (int __fd, __off64_t __offset, size_t __count)
  150. __THROW;
  151. /* Selective file content synch'ing. */
  152. extern int sync_file_range (int __fd, __off64_t __from, __off64_t __to,
  153. unsigned int __flags);
  154. /* Splice address range into a pipe. */
  155. extern ssize_t vmsplice (int __fdout, const struct iovec *__iov,
  156. size_t __count, unsigned int __flags);
  157. /* Splice two files together. */
  158. extern ssize_t splice (int __fdin, __off64_t *__offin, int __fdout,
  159. __off64_t *__offout, size_t __len,
  160. unsigned int __flags);
  161. /* In-kernel implementation of tee for pipe buffers. */
  162. extern ssize_t tee (int __fdin, int __fdout, size_t __len,
  163. unsigned int __flags);
  164. #endif
  165. __END_DECLS