blob: c5083d2e2c0296949a383dde6ebb74ab89dcc30c [file] [log] [blame]
David Howells607ca462012-10-13 10:46:48 +01001#ifndef _UAPI_LINUX_FS_H
2#define _UAPI_LINUX_FS_H
3
4/*
Theodore Ts'o68ce7bfc2016-01-08 16:01:25 -05005 * This file has definitions for some important file table structures
6 * and constants and structures used by various generic file system
7 * ioctl's. Please do not make any changes in this file before
8 * sending patches for review to linux-fsdevel@vger.kernel.org and
9 * linux-api@vger.kernel.org.
David Howells607ca462012-10-13 10:46:48 +010010 */
11
12#include <linux/limits.h>
13#include <linux/ioctl.h>
14#include <linux/types.h>
15
16/*
17 * It's silly to have NR_OPEN bigger than NR_FILE, but you can change
18 * the file limit at runtime and only root can increase the per-process
19 * nr_file rlimit, so it's safe to set up a ridiculously high absolute
20 * upper limit on files-per-process.
21 *
22 * Some programs (notably those using select()) may have to be
23 * recompiled to take full advantage of the new limits..
24 */
25
26/* Fixed constants first: */
27#undef NR_OPEN
28#define INR_OPEN_CUR 1024 /* Initial setting for nfile rlimits */
29#define INR_OPEN_MAX 4096 /* Hard limit for nfile rlimits */
30
31#define BLOCK_SIZE_BITS 10
32#define BLOCK_SIZE (1<<BLOCK_SIZE_BITS)
33
34#define SEEK_SET 0 /* seek relative to beginning of file */
35#define SEEK_CUR 1 /* seek relative to current file position */
36#define SEEK_END 2 /* seek relative to end of file */
37#define SEEK_DATA 3 /* seek to the next data */
38#define SEEK_HOLE 4 /* seek to the next hole */
39#define SEEK_MAX SEEK_HOLE
40
Miklos Szeredi0a7c3932014-04-01 17:08:43 +020041#define RENAME_NOREPLACE (1 << 0) /* Don't overwrite target */
Miklos Szeredida1ce062014-04-01 17:08:43 +020042#define RENAME_EXCHANGE (1 << 1) /* Exchange source and dest */
Miklos Szeredi0d7a8552014-10-24 00:14:37 +020043#define RENAME_WHITEOUT (1 << 2) /* Whiteout source */
Miklos Szeredi0a7c3932014-04-01 17:08:43 +020044
David Howells607ca462012-10-13 10:46:48 +010045struct fstrim_range {
46 __u64 start;
47 __u64 len;
48 __u64 minlen;
49};
50
51/* And dynamically-tunable limits and defaults: */
52struct files_stat_struct {
53 unsigned long nr_files; /* read only */
54 unsigned long nr_free_files; /* read only */
55 unsigned long max_files; /* tunable */
56};
57
58struct inodes_stat_t {
Glauber Costa3942c072013-08-28 10:17:53 +100059 long nr_inodes;
60 long nr_unused;
61 long dummy[5]; /* padding for sysctl ABI compatibility */
David Howells607ca462012-10-13 10:46:48 +010062};
63
64
65#define NR_FILE 8192 /* this can well be larger on a larger system */
66
David Howells607ca462012-10-13 10:46:48 +010067
68/*
69 * These are the fs-independent mount-flags: up to 32 flags are supported
70 */
71#define MS_RDONLY 1 /* Mount read-only */
72#define MS_NOSUID 2 /* Ignore suid and sgid bits */
73#define MS_NODEV 4 /* Disallow access to device special files */
74#define MS_NOEXEC 8 /* Disallow program execution */
75#define MS_SYNCHRONOUS 16 /* Writes are synced at once */
76#define MS_REMOUNT 32 /* Alter flags of a mounted FS */
77#define MS_MANDLOCK 64 /* Allow mandatory locks on an FS */
78#define MS_DIRSYNC 128 /* Directory modifications are synchronous */
79#define MS_NOATIME 1024 /* Do not update access times. */
80#define MS_NODIRATIME 2048 /* Do not update directory access times */
81#define MS_BIND 4096
82#define MS_MOVE 8192
83#define MS_REC 16384
84#define MS_VERBOSE 32768 /* War is peace. Verbosity is silence.
85 MS_VERBOSE is deprecated. */
86#define MS_SILENT 32768
87#define MS_POSIXACL (1<<16) /* VFS does not apply the umask */
88#define MS_UNBINDABLE (1<<17) /* change to unbindable */
89#define MS_PRIVATE (1<<18) /* change to private */
90#define MS_SLAVE (1<<19) /* change to slave */
91#define MS_SHARED (1<<20) /* change to shared */
92#define MS_RELATIME (1<<21) /* Update atime relative to mtime/ctime. */
93#define MS_KERNMOUNT (1<<22) /* this is a kern_mount call */
94#define MS_I_VERSION (1<<23) /* Update inode I_version field */
95#define MS_STRICTATIME (1<<24) /* Always perform atime updates */
Theodore Ts'o0ae45f62015-02-02 00:37:00 -050096#define MS_LAZYTIME (1<<25) /* Update the on-disk [acm]times lazily */
Darrick J. Wongffecfd12013-02-21 16:42:55 -080097
98/* These sb flags are internal to the kernel */
David Howells607ca462012-10-13 10:46:48 +010099#define MS_NOSEC (1<<28)
100#define MS_BORN (1<<29)
101#define MS_ACTIVE (1<<30)
102#define MS_NOUSER (1<<31)
103
104/*
105 * Superblock flags that can be altered by MS_REMOUNT
106 */
Theodore Ts'o0ae45f62015-02-02 00:37:00 -0500107#define MS_RMT_MASK (MS_RDONLY|MS_SYNCHRONOUS|MS_MANDLOCK|MS_I_VERSION|\
108 MS_LAZYTIME)
David Howells607ca462012-10-13 10:46:48 +0100109
110/*
111 * Old magic mount flag and mask
112 */
113#define MS_MGC_VAL 0xC0ED0000
114#define MS_MGC_MSK 0xffff0000
115
David Howells607ca462012-10-13 10:46:48 +0100116/* the read-only stuff doesn't really belong here, but any other place is
117 probably as bad and I don't want to create yet another include file. */
118
119#define BLKROSET _IO(0x12,93) /* set device read-only (0 = read-write) */
120#define BLKROGET _IO(0x12,94) /* get read-only status (0 = read_write) */
121#define BLKRRPART _IO(0x12,95) /* re-read partition table */
122#define BLKGETSIZE _IO(0x12,96) /* return device size /512 (long *arg) */
123#define BLKFLSBUF _IO(0x12,97) /* flush buffer cache */
124#define BLKRASET _IO(0x12,98) /* set read ahead for block device */
125#define BLKRAGET _IO(0x12,99) /* get current read ahead setting */
126#define BLKFRASET _IO(0x12,100)/* set filesystem (mm/filemap.c) read-ahead */
127#define BLKFRAGET _IO(0x12,101)/* get filesystem (mm/filemap.c) read-ahead */
128#define BLKSECTSET _IO(0x12,102)/* set max sectors per request (ll_rw_blk.c) */
129#define BLKSECTGET _IO(0x12,103)/* get max sectors per request (ll_rw_blk.c) */
130#define BLKSSZGET _IO(0x12,104)/* get block device sector size */
131#if 0
132#define BLKPG _IO(0x12,105)/* See blkpg.h */
133
134/* Some people are morons. Do not use sizeof! */
135
136#define BLKELVGET _IOR(0x12,106,size_t)/* elevator get */
137#define BLKELVSET _IOW(0x12,107,size_t)/* elevator set */
138/* This was here just to show that the number is taken -
139 probably all these _IO(0x12,*) ioctls should be moved to blkpg.h. */
140#endif
141/* A jump here: 108-111 have been used for various private purposes. */
142#define BLKBSZGET _IOR(0x12,112,size_t)
143#define BLKBSZSET _IOW(0x12,113,size_t)
144#define BLKGETSIZE64 _IOR(0x12,114,size_t) /* return device size in bytes (u64 *arg) */
145#define BLKTRACESETUP _IOWR(0x12,115,struct blk_user_trace_setup)
146#define BLKTRACESTART _IO(0x12,116)
147#define BLKTRACESTOP _IO(0x12,117)
148#define BLKTRACETEARDOWN _IO(0x12,118)
149#define BLKDISCARD _IO(0x12,119)
150#define BLKIOMIN _IO(0x12,120)
151#define BLKIOOPT _IO(0x12,121)
152#define BLKALIGNOFF _IO(0x12,122)
153#define BLKPBSZGET _IO(0x12,123)
154#define BLKDISCARDZEROES _IO(0x12,124)
155#define BLKSECDISCARD _IO(0x12,125)
156#define BLKROTATIONAL _IO(0x12,126)
157#define BLKZEROOUT _IO(0x12,127)
158
159#define BMAP_IOCTL 1 /* obsolete - kept for compatibility */
160#define FIBMAP _IO(0x00,1) /* bmap access */
161#define FIGETBSZ _IO(0x00,2) /* get the block size used for bmap */
162#define FIFREEZE _IOWR('X', 119, int) /* Freeze */
163#define FITHAW _IOWR('X', 120, int) /* Thaw */
164#define FITRIM _IOWR('X', 121, struct fstrim_range) /* Trim */
165
166#define FS_IOC_GETFLAGS _IOR('f', 1, long)
167#define FS_IOC_SETFLAGS _IOW('f', 2, long)
168#define FS_IOC_GETVERSION _IOR('v', 1, long)
169#define FS_IOC_SETVERSION _IOW('v', 2, long)
170#define FS_IOC_FIEMAP _IOWR('f', 11, struct fiemap)
171#define FS_IOC32_GETFLAGS _IOR('f', 1, int)
172#define FS_IOC32_SETFLAGS _IOW('f', 2, int)
173#define FS_IOC32_GETVERSION _IOR('v', 1, int)
174#define FS_IOC32_SETVERSION _IOW('v', 2, int)
175
176/*
177 * Inode flags (FS_IOC_GETFLAGS / FS_IOC_SETFLAGS)
Theodore Ts'o68ce7bfc2016-01-08 16:01:25 -0500178 *
179 * Note: for historical reasons, these flags were originally used and
180 * defined for use by ext2/ext3, and then other file systems started
181 * using these flags so they wouldn't need to write their own version
182 * of chattr/lsattr (which was shipped as part of e2fsprogs). You
183 * should think twice before trying to use these flags in new
184 * contexts, or trying to assign these flags, since they are used both
185 * as the UAPI and the on-disk encoding for ext2/3/4. Also, we are
186 * almost out of 32-bit flags. :-)
187 *
188 * We have recently hoisted FS_IOC_FSGETXATTR / FS_IOC_FSSETXATTR from
189 * XFS to the generic FS level interface. This uses a structure that
190 * has padding and hence has more room to grow, so it may be more
191 * appropriate for many new use cases.
192 *
193 * Please do not change these flags or interfaces before checking with
194 * linux-fsdevel@vger.kernel.org and linux-api@vger.kernel.org.
David Howells607ca462012-10-13 10:46:48 +0100195 */
196#define FS_SECRM_FL 0x00000001 /* Secure deletion */
197#define FS_UNRM_FL 0x00000002 /* Undelete */
198#define FS_COMPR_FL 0x00000004 /* Compress file */
199#define FS_SYNC_FL 0x00000008 /* Synchronous updates */
200#define FS_IMMUTABLE_FL 0x00000010 /* Immutable file */
201#define FS_APPEND_FL 0x00000020 /* writes to file may only append */
202#define FS_NODUMP_FL 0x00000040 /* do not dump file */
203#define FS_NOATIME_FL 0x00000080 /* do not update atime */
204/* Reserved for compression usage... */
205#define FS_DIRTY_FL 0x00000100
206#define FS_COMPRBLK_FL 0x00000200 /* One or more compressed clusters */
207#define FS_NOCOMP_FL 0x00000400 /* Don't compress */
David Howells607ca462012-10-13 10:46:48 +0100208/* End compression flags --- maybe not all used */
Theodore Ts'o68ce7bfc2016-01-08 16:01:25 -0500209#define FS_ENCRYPT_FL 0x00000800 /* Encrypted file */
David Howells607ca462012-10-13 10:46:48 +0100210#define FS_BTREE_FL 0x00001000 /* btree format dir */
211#define FS_INDEX_FL 0x00001000 /* hash-indexed directory */
212#define FS_IMAGIC_FL 0x00002000 /* AFS directory */
213#define FS_JOURNAL_DATA_FL 0x00004000 /* Reserved for ext3 */
214#define FS_NOTAIL_FL 0x00008000 /* file tail should not be merged */
215#define FS_DIRSYNC_FL 0x00010000 /* dirsync behaviour (directories only) */
216#define FS_TOPDIR_FL 0x00020000 /* Top of directory hierarchies*/
Theodore Ts'o68ce7bfc2016-01-08 16:01:25 -0500217#define FS_HUGE_FILE_FL 0x00040000 /* Reserved for ext4 */
David Howells607ca462012-10-13 10:46:48 +0100218#define FS_EXTENT_FL 0x00080000 /* Extents */
Theodore Ts'o68ce7bfc2016-01-08 16:01:25 -0500219#define FS_EA_INODE_FL 0x00200000 /* Inode used for large EA */
220#define FS_EOFBLOCKS_FL 0x00400000 /* Reserved for ext4 */
David Howells607ca462012-10-13 10:46:48 +0100221#define FS_NOCOW_FL 0x00800000 /* Do not cow file */
Theodore Ts'o68ce7bfc2016-01-08 16:01:25 -0500222#define FS_INLINE_DATA_FL 0x10000000 /* Reserved for ext4 */
Theodore Ts'o8b4953e2015-10-17 16:15:18 -0400223#define FS_PROJINHERIT_FL 0x20000000 /* Create with parents projid */
David Howells607ca462012-10-13 10:46:48 +0100224#define FS_RESERVED_FL 0x80000000 /* reserved for ext2 lib */
225
226#define FS_FL_USER_VISIBLE 0x0003DFFF /* User visible flags */
227#define FS_FL_USER_MODIFIABLE 0x000380FF /* User modifiable flags */
228
229
230#define SYNC_FILE_RANGE_WAIT_BEFORE 1
231#define SYNC_FILE_RANGE_WRITE 2
232#define SYNC_FILE_RANGE_WAIT_AFTER 4
233
234#endif /* _UAPI_LINUX_FS_H */