fs.h 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. #ifndef _UAPI_LINUX_FS_H
  2. #define _UAPI_LINUX_FS_H
  3. /*
  4. * This file has definitions for some important file table
  5. * structures etc.
  6. */
  7. #include <linux/limits.h>
  8. #include <linux/ioctl.h>
  9. #include <linux/types.h>
  10. /*
  11. * It's silly to have NR_OPEN bigger than NR_FILE, but you can change
  12. * the file limit at runtime and only root can increase the per-process
  13. * nr_file rlimit, so it's safe to set up a ridiculously high absolute
  14. * upper limit on files-per-process.
  15. *
  16. * Some programs (notably those using select()) may have to be
  17. * recompiled to take full advantage of the new limits..
  18. */
  19. /* Fixed constants first: */
  20. #undef NR_OPEN
  21. #define INR_OPEN_CUR 1024 /* Initial setting for nfile rlimits */
  22. #define INR_OPEN_MAX 4096 /* Hard limit for nfile rlimits */
  23. #define BLOCK_SIZE_BITS 10
  24. #define BLOCK_SIZE (1<<BLOCK_SIZE_BITS)
  25. #define SEEK_SET 0 /* seek relative to beginning of file */
  26. #define SEEK_CUR 1 /* seek relative to current file position */
  27. #define SEEK_END 2 /* seek relative to end of file */
  28. #define SEEK_DATA 3 /* seek to the next data */
  29. #define SEEK_HOLE 4 /* seek to the next hole */
  30. #define SEEK_MAX SEEK_HOLE
  31. struct fstrim_range {
  32. __u64 start;
  33. __u64 len;
  34. __u64 minlen;
  35. };
  36. /* And dynamically-tunable limits and defaults: */
  37. struct files_stat_struct {
  38. unsigned long nr_files; /* read only */
  39. unsigned long nr_free_files; /* read only */
  40. unsigned long max_files; /* tunable */
  41. };
  42. struct inodes_stat_t {
  43. int nr_inodes;
  44. int nr_unused;
  45. int dummy[5]; /* padding for sysctl ABI compatibility */
  46. };
  47. #define NR_FILE 8192 /* this can well be larger on a larger system */
  48. /*
  49. * These are the fs-independent mount-flags: up to 32 flags are supported
  50. */
  51. #define MS_RDONLY 1 /* Mount read-only */
  52. #define MS_NOSUID 2 /* Ignore suid and sgid bits */
  53. #define MS_NODEV 4 /* Disallow access to device special files */
  54. #define MS_NOEXEC 8 /* Disallow program execution */
  55. #define MS_SYNCHRONOUS 16 /* Writes are synced at once */
  56. #define MS_REMOUNT 32 /* Alter flags of a mounted FS */
  57. #define MS_MANDLOCK 64 /* Allow mandatory locks on an FS */
  58. #define MS_DIRSYNC 128 /* Directory modifications are synchronous */
  59. #define MS_NOATIME 1024 /* Do not update access times. */
  60. #define MS_NODIRATIME 2048 /* Do not update directory access times */
  61. #define MS_BIND 4096
  62. #define MS_MOVE 8192
  63. #define MS_REC 16384
  64. #define MS_VERBOSE 32768 /* War is peace. Verbosity is silence.
  65. MS_VERBOSE is deprecated. */
  66. #define MS_SILENT 32768
  67. #define MS_POSIXACL (1<<16) /* VFS does not apply the umask */
  68. #define MS_UNBINDABLE (1<<17) /* change to unbindable */
  69. #define MS_PRIVATE (1<<18) /* change to private */
  70. #define MS_SLAVE (1<<19) /* change to slave */
  71. #define MS_SHARED (1<<20) /* change to shared */
  72. #define MS_RELATIME (1<<21) /* Update atime relative to mtime/ctime. */
  73. #define MS_KERNMOUNT (1<<22) /* this is a kern_mount call */
  74. #define MS_I_VERSION (1<<23) /* Update inode I_version field */
  75. #define MS_STRICTATIME (1<<24) /* Always perform atime updates */
  76. #define MS_NOSEC (1<<28)
  77. #define MS_BORN (1<<29)
  78. #define MS_ACTIVE (1<<30)
  79. #define MS_NOUSER (1<<31)
  80. /*
  81. * Superblock flags that can be altered by MS_REMOUNT
  82. */
  83. #define MS_RMT_MASK (MS_RDONLY|MS_SYNCHRONOUS|MS_MANDLOCK|MS_I_VERSION)
  84. /*
  85. * Old magic mount flag and mask
  86. */
  87. #define MS_MGC_VAL 0xC0ED0000
  88. #define MS_MGC_MSK 0xffff0000
  89. /* the read-only stuff doesn't really belong here, but any other place is
  90. probably as bad and I don't want to create yet another include file. */
  91. #define BLKROSET _IO(0x12,93) /* set device read-only (0 = read-write) */
  92. #define BLKROGET _IO(0x12,94) /* get read-only status (0 = read_write) */
  93. #define BLKRRPART _IO(0x12,95) /* re-read partition table */
  94. #define BLKGETSIZE _IO(0x12,96) /* return device size /512 (long *arg) */
  95. #define BLKFLSBUF _IO(0x12,97) /* flush buffer cache */
  96. #define BLKRASET _IO(0x12,98) /* set read ahead for block device */
  97. #define BLKRAGET _IO(0x12,99) /* get current read ahead setting */
  98. #define BLKFRASET _IO(0x12,100)/* set filesystem (mm/filemap.c) read-ahead */
  99. #define BLKFRAGET _IO(0x12,101)/* get filesystem (mm/filemap.c) read-ahead */
  100. #define BLKSECTSET _IO(0x12,102)/* set max sectors per request (ll_rw_blk.c) */
  101. #define BLKSECTGET _IO(0x12,103)/* get max sectors per request (ll_rw_blk.c) */
  102. #define BLKSSZGET _IO(0x12,104)/* get block device sector size */
  103. #if 0
  104. #define BLKPG _IO(0x12,105)/* See blkpg.h */
  105. /* Some people are morons. Do not use sizeof! */
  106. #define BLKELVGET _IOR(0x12,106,size_t)/* elevator get */
  107. #define BLKELVSET _IOW(0x12,107,size_t)/* elevator set */
  108. /* This was here just to show that the number is taken -
  109. probably all these _IO(0x12,*) ioctls should be moved to blkpg.h. */
  110. #endif
  111. /* A jump here: 108-111 have been used for various private purposes. */
  112. #define BLKBSZGET _IOR(0x12,112,size_t)
  113. #define BLKBSZSET _IOW(0x12,113,size_t)
  114. #define BLKGETSIZE64 _IOR(0x12,114,size_t) /* return device size in bytes (u64 *arg) */
  115. #define BLKTRACESETUP _IOWR(0x12,115,struct blk_user_trace_setup)
  116. #define BLKTRACESTART _IO(0x12,116)
  117. #define BLKTRACESTOP _IO(0x12,117)
  118. #define BLKTRACETEARDOWN _IO(0x12,118)
  119. #define BLKDISCARD _IO(0x12,119)
  120. #define BLKIOMIN _IO(0x12,120)
  121. #define BLKIOOPT _IO(0x12,121)
  122. #define BLKALIGNOFF _IO(0x12,122)
  123. #define BLKPBSZGET _IO(0x12,123)
  124. #define BLKDISCARDZEROES _IO(0x12,124)
  125. #define BLKSECDISCARD _IO(0x12,125)
  126. #define BLKROTATIONAL _IO(0x12,126)
  127. #define BLKZEROOUT _IO(0x12,127)
  128. #define BMAP_IOCTL 1 /* obsolete - kept for compatibility */
  129. #define FIBMAP _IO(0x00,1) /* bmap access */
  130. #define FIGETBSZ _IO(0x00,2) /* get the block size used for bmap */
  131. #define FIFREEZE _IOWR('X', 119, int) /* Freeze */
  132. #define FITHAW _IOWR('X', 120, int) /* Thaw */
  133. #define FITRIM _IOWR('X', 121, struct fstrim_range) /* Trim */
  134. #define FS_IOC_GETFLAGS _IOR('f', 1, long)
  135. #define FS_IOC_SETFLAGS _IOW('f', 2, long)
  136. #define FS_IOC_GETVERSION _IOR('v', 1, long)
  137. #define FS_IOC_SETVERSION _IOW('v', 2, long)
  138. #define FS_IOC_FIEMAP _IOWR('f', 11, struct fiemap)
  139. #define FS_IOC32_GETFLAGS _IOR('f', 1, int)
  140. #define FS_IOC32_SETFLAGS _IOW('f', 2, int)
  141. #define FS_IOC32_GETVERSION _IOR('v', 1, int)
  142. #define FS_IOC32_SETVERSION _IOW('v', 2, int)
  143. /*
  144. * Inode flags (FS_IOC_GETFLAGS / FS_IOC_SETFLAGS)
  145. */
  146. #define FS_SECRM_FL 0x00000001 /* Secure deletion */
  147. #define FS_UNRM_FL 0x00000002 /* Undelete */
  148. #define FS_COMPR_FL 0x00000004 /* Compress file */
  149. #define FS_SYNC_FL 0x00000008 /* Synchronous updates */
  150. #define FS_IMMUTABLE_FL 0x00000010 /* Immutable file */
  151. #define FS_APPEND_FL 0x00000020 /* writes to file may only append */
  152. #define FS_NODUMP_FL 0x00000040 /* do not dump file */
  153. #define FS_NOATIME_FL 0x00000080 /* do not update atime */
  154. /* Reserved for compression usage... */
  155. #define FS_DIRTY_FL 0x00000100
  156. #define FS_COMPRBLK_FL 0x00000200 /* One or more compressed clusters */
  157. #define FS_NOCOMP_FL 0x00000400 /* Don't compress */
  158. #define FS_ECOMPR_FL 0x00000800 /* Compression error */
  159. /* End compression flags --- maybe not all used */
  160. #define FS_BTREE_FL 0x00001000 /* btree format dir */
  161. #define FS_INDEX_FL 0x00001000 /* hash-indexed directory */
  162. #define FS_IMAGIC_FL 0x00002000 /* AFS directory */
  163. #define FS_JOURNAL_DATA_FL 0x00004000 /* Reserved for ext3 */
  164. #define FS_NOTAIL_FL 0x00008000 /* file tail should not be merged */
  165. #define FS_DIRSYNC_FL 0x00010000 /* dirsync behaviour (directories only) */
  166. #define FS_TOPDIR_FL 0x00020000 /* Top of directory hierarchies*/
  167. #define FS_EXTENT_FL 0x00080000 /* Extents */
  168. #define FS_DIRECTIO_FL 0x00100000 /* Use direct i/o */
  169. #define FS_NOCOW_FL 0x00800000 /* Do not cow file */
  170. #define FS_RESERVED_FL 0x80000000 /* reserved for ext2 lib */
  171. #define FS_FL_USER_VISIBLE 0x0003DFFF /* User visible flags */
  172. #define FS_FL_USER_MODIFIABLE 0x000380FF /* User modifiable flags */
  173. #define SYNC_FILE_RANGE_WAIT_BEFORE 1
  174. #define SYNC_FILE_RANGE_WRITE 2
  175. #define SYNC_FILE_RANGE_WAIT_AFTER 4
  176. #endif /* _UAPI_LINUX_FS_H */