revoke-core-code
[linux-2.6/linux-trees-mm.git] / include / linux / fs.h
blob4e8ecc1f7ba6937acf630c86556c024351d374a4
1 #ifndef _LINUX_FS_H
2 #define _LINUX_FS_H
4 /*
5 * This file has definitions for some important file table
6 * structures etc.
7 */
9 #include <linux/limits.h>
10 #include <linux/ioctl.h>
13 * It's silly to have NR_OPEN bigger than NR_FILE, but you can change
14 * the file limit at runtime and only root can increase the per-process
15 * nr_file rlimit, so it's safe to set up a ridiculously high absolute
16 * upper limit on files-per-process.
18 * Some programs (notably those using select()) may have to be
19 * recompiled to take full advantage of the new limits..
22 /* Fixed constants first: */
23 #undef NR_OPEN
24 #define NR_OPEN (1024*1024) /* Absolute upper limit on fd num */
25 #define INR_OPEN 1024 /* Initial setting for nfile rlimits */
27 #define BLOCK_SIZE_BITS 10
28 #define BLOCK_SIZE (1<<BLOCK_SIZE_BITS)
30 #define SEEK_SET 0 /* seek relative to beginning of file */
31 #define SEEK_CUR 1 /* seek relative to current file position */
32 #define SEEK_END 2 /* seek relative to end of file */
33 #define SEEK_MAX SEEK_END
35 /* And dynamically-tunable limits and defaults: */
36 struct files_stat_struct {
37 int nr_files; /* read only */
38 int nr_free_files; /* read only */
39 int max_files; /* tunable */
41 extern struct files_stat_struct files_stat;
42 extern int get_max_files(void);
44 struct inodes_stat_t {
45 int nr_inodes;
46 int nr_unused;
47 int dummy[5]; /* padding for sysctl ABI compatibility */
49 extern struct inodes_stat_t inodes_stat;
51 extern int leases_enable, lease_break_time;
53 extern int nr_user_mounts;
54 extern int max_user_mounts;
56 #ifdef CONFIG_DNOTIFY
57 extern int dir_notify_enable;
58 #endif
60 #define NR_FILE 8192 /* this can well be larger on a larger system */
62 #define MAY_EXEC 1
63 #define MAY_WRITE 2
64 #define MAY_READ 4
65 #define MAY_APPEND 8
67 #define FMODE_READ 1
68 #define FMODE_WRITE 2
70 /* Internal kernel extensions */
71 #define FMODE_LSEEK 4
72 #define FMODE_PREAD 8
73 #define FMODE_PWRITE FMODE_PREAD /* These go hand in hand */
75 /* File is being opened for execution. Primary users of this flag are
76 distributed filesystems that can use it to achieve correct ETXTBUSY
77 behavior for cross-node execution/opening_for_writing of files */
78 #define FMODE_EXEC 16
80 #define RW_MASK 1
81 #define RWA_MASK 2
82 #define READ 0
83 #define WRITE 1
84 #define READA 2 /* read-ahead - don't block if no resources */
85 #define SWRITE 3 /* for ll_rw_block() - wait for buffer lock */
86 #define READ_SYNC (READ | (1 << BIO_RW_SYNC))
87 #define READ_META (READ | (1 << BIO_RW_META))
88 #define WRITE_SYNC (WRITE | (1 << BIO_RW_SYNC))
89 #define WRITE_BARRIER ((1 << BIO_RW) | (1 << BIO_RW_BARRIER))
91 #define SEL_IN 1
92 #define SEL_OUT 2
93 #define SEL_EX 4
95 /* public flags for file_system_type */
96 #define FS_REQUIRES_DEV 1
97 #define FS_BINARY_MOUNTDATA 2
98 #define FS_HAS_SUBTYPE 4
99 #define FS_SAFE 8 /* Safe to mount by unprivileged users */
100 #define FS_REVAL_DOT 16384 /* Check the paths ".", ".." for staleness */
101 #define FS_RENAME_DOES_D_MOVE 32768 /* FS will handle d_move()
102 * during rename() internally.
106 * These are the fs-independent mount-flags: up to 32 flags are supported
108 #define MS_RDONLY 1 /* Mount read-only */
109 #define MS_NOSUID 2 /* Ignore suid and sgid bits */
110 #define MS_NODEV 4 /* Disallow access to device special files */
111 #define MS_NOEXEC 8 /* Disallow program execution */
112 #define MS_SYNCHRONOUS 16 /* Writes are synced at once */
113 #define MS_REMOUNT 32 /* Alter flags of a mounted FS */
114 #define MS_MANDLOCK 64 /* Allow mandatory locks on an FS */
115 #define MS_DIRSYNC 128 /* Directory modifications are synchronous */
116 #define MS_NOATIME 1024 /* Do not update access times. */
117 #define MS_NODIRATIME 2048 /* Do not update directory access times */
118 #define MS_BIND 4096
119 #define MS_MOVE 8192
120 #define MS_REC 16384
121 #define MS_VERBOSE 32768 /* War is peace. Verbosity is silence.
122 MS_VERBOSE is deprecated. */
123 #define MS_SILENT 32768
124 #define MS_POSIXACL (1<<16) /* VFS does not apply the umask */
125 #define MS_UNBINDABLE (1<<17) /* change to unbindable */
126 #define MS_PRIVATE (1<<18) /* change to private */
127 #define MS_SLAVE (1<<19) /* change to slave */
128 #define MS_SHARED (1<<20) /* change to shared */
129 #define MS_RELATIME (1<<21) /* Update atime relative to mtime/ctime. */
130 #define MS_KERNMOUNT (1<<22) /* this is a kern_mount call */
131 #define MS_SETUSER (1<<23) /* set mnt_uid to current user */
132 #define MS_NOMNT (1<<24) /* don't allow unprivileged submounts */
133 #define MS_ACTIVE (1<<30)
134 #define MS_NOUSER (1<<31)
137 * Superblock flags that can be altered by MS_REMOUNT
139 #define MS_RMT_MASK (MS_RDONLY|MS_SYNCHRONOUS|MS_MANDLOCK)
142 * Old magic mount flag and mask
144 #define MS_MGC_VAL 0xC0ED0000
145 #define MS_MGC_MSK 0xffff0000
147 /* Inode flags - they have nothing to superblock flags now */
149 #define S_SYNC 1 /* Writes are synced at once */
150 #define S_NOATIME 2 /* Do not update access times */
151 #define S_APPEND 4 /* Append-only file */
152 #define S_IMMUTABLE 8 /* Immutable file */
153 #define S_DEAD 16 /* removed, but still open directory */
154 #define S_NOQUOTA 32 /* Inode is not counted to quota */
155 #define S_DIRSYNC 64 /* Directory modifications are synchronous */
156 #define S_NOCMTIME 128 /* Do not update file c/mtime */
157 #define S_SWAPFILE 256 /* Do not truncate: swapon got its bmaps */
158 #define S_PRIVATE 512 /* Inode is fs-internal */
161 * Note that nosuid etc flags are inode-specific: setting some file-system
162 * flags just means all the inodes inherit those flags by default. It might be
163 * possible to override it selectively if you really wanted to with some
164 * ioctl() that is not currently implemented.
166 * Exception: MS_RDONLY is always applied to the entire file system.
168 * Unfortunately, it is possible to change a filesystems flags with it mounted
169 * with files in use. This means that all of the inodes will not have their
170 * i_flags updated. Hence, i_flags no longer inherit the superblock mount
171 * flags, so these have to be checked separately. -- rmk@arm.uk.linux.org
173 #define __IS_FLG(inode,flg) ((inode)->i_sb->s_flags & (flg))
175 #define IS_RDONLY(inode) ((inode)->i_sb->s_flags & MS_RDONLY)
176 #define IS_SYNC(inode) (__IS_FLG(inode, MS_SYNCHRONOUS) || \
177 ((inode)->i_flags & S_SYNC))
178 #define IS_DIRSYNC(inode) (__IS_FLG(inode, MS_SYNCHRONOUS|MS_DIRSYNC) || \
179 ((inode)->i_flags & (S_SYNC|S_DIRSYNC)))
180 #define IS_MANDLOCK(inode) __IS_FLG(inode, MS_MANDLOCK)
181 #define IS_NOATIME(inode) __IS_FLG(inode, MS_RDONLY|MS_NOATIME)
183 #define IS_NOQUOTA(inode) ((inode)->i_flags & S_NOQUOTA)
184 #define IS_APPEND(inode) ((inode)->i_flags & S_APPEND)
185 #define IS_IMMUTABLE(inode) ((inode)->i_flags & S_IMMUTABLE)
186 #define IS_POSIXACL(inode) __IS_FLG(inode, MS_POSIXACL)
188 #define IS_DEADDIR(inode) ((inode)->i_flags & S_DEAD)
189 #define IS_NOCMTIME(inode) ((inode)->i_flags & S_NOCMTIME)
190 #define IS_SWAPFILE(inode) ((inode)->i_flags & S_SWAPFILE)
191 #define IS_PRIVATE(inode) ((inode)->i_flags & S_PRIVATE)
193 /* the read-only stuff doesn't really belong here, but any other place is
194 probably as bad and I don't want to create yet another include file. */
196 #define BLKROSET _IO(0x12,93) /* set device read-only (0 = read-write) */
197 #define BLKROGET _IO(0x12,94) /* get read-only status (0 = read_write) */
198 #define BLKRRPART _IO(0x12,95) /* re-read partition table */
199 #define BLKGETSIZE _IO(0x12,96) /* return device size /512 (long *arg) */
200 #define BLKFLSBUF _IO(0x12,97) /* flush buffer cache */
201 #define BLKRASET _IO(0x12,98) /* set read ahead for block device */
202 #define BLKRAGET _IO(0x12,99) /* get current read ahead setting */
203 #define BLKFRASET _IO(0x12,100)/* set filesystem (mm/filemap.c) read-ahead */
204 #define BLKFRAGET _IO(0x12,101)/* get filesystem (mm/filemap.c) read-ahead */
205 #define BLKSECTSET _IO(0x12,102)/* set max sectors per request (ll_rw_blk.c) */
206 #define BLKSECTGET _IO(0x12,103)/* get max sectors per request (ll_rw_blk.c) */
207 #define BLKSSZGET _IO(0x12,104)/* get block device sector size */
208 #if 0
209 #define BLKPG _IO(0x12,105)/* See blkpg.h */
211 /* Some people are morons. Do not use sizeof! */
213 #define BLKELVGET _IOR(0x12,106,size_t)/* elevator get */
214 #define BLKELVSET _IOW(0x12,107,size_t)/* elevator set */
215 /* This was here just to show that the number is taken -
216 probably all these _IO(0x12,*) ioctls should be moved to blkpg.h. */
217 #endif
218 /* A jump here: 108-111 have been used for various private purposes. */
219 #define BLKBSZGET _IOR(0x12,112,size_t)
220 #define BLKBSZSET _IOW(0x12,113,size_t)
221 #define BLKGETSIZE64 _IOR(0x12,114,size_t) /* return device size in bytes (u64 *arg) */
222 #define BLKTRACESETUP _IOWR(0x12,115,struct blk_user_trace_setup)
223 #define BLKTRACESTART _IO(0x12,116)
224 #define BLKTRACESTOP _IO(0x12,117)
225 #define BLKTRACETEARDOWN _IO(0x12,118)
227 #define BMAP_IOCTL 1 /* obsolete - kept for compatibility */
228 #define FIBMAP _IO(0x00,1) /* bmap access */
229 #define FIGETBSZ _IO(0x00,2) /* get the block size used for bmap */
231 #define FS_IOC_GETFLAGS _IOR('f', 1, long)
232 #define FS_IOC_SETFLAGS _IOW('f', 2, long)
233 #define FS_IOC_GETVERSION _IOR('v', 1, long)
234 #define FS_IOC_SETVERSION _IOW('v', 2, long)
235 #define FS_IOC32_GETFLAGS _IOR('f', 1, int)
236 #define FS_IOC32_SETFLAGS _IOW('f', 2, int)
237 #define FS_IOC32_GETVERSION _IOR('v', 1, int)
238 #define FS_IOC32_SETVERSION _IOW('v', 2, int)
241 * Inode flags (FS_IOC_GETFLAGS / FS_IOC_SETFLAGS)
243 #define FS_SECRM_FL 0x00000001 /* Secure deletion */
244 #define FS_UNRM_FL 0x00000002 /* Undelete */
245 #define FS_COMPR_FL 0x00000004 /* Compress file */
246 #define FS_SYNC_FL 0x00000008 /* Synchronous updates */
247 #define FS_IMMUTABLE_FL 0x00000010 /* Immutable file */
248 #define FS_APPEND_FL 0x00000020 /* writes to file may only append */
249 #define FS_NODUMP_FL 0x00000040 /* do not dump file */
250 #define FS_NOATIME_FL 0x00000080 /* do not update atime */
251 /* Reserved for compression usage... */
252 #define FS_DIRTY_FL 0x00000100
253 #define FS_COMPRBLK_FL 0x00000200 /* One or more compressed clusters */
254 #define FS_NOCOMP_FL 0x00000400 /* Don't compress */
255 #define FS_ECOMPR_FL 0x00000800 /* Compression error */
256 /* End compression flags --- maybe not all used */
257 #define FS_BTREE_FL 0x00001000 /* btree format dir */
258 #define FS_INDEX_FL 0x00001000 /* hash-indexed directory */
259 #define FS_IMAGIC_FL 0x00002000 /* AFS directory */
260 #define FS_JOURNAL_DATA_FL 0x00004000 /* Reserved for ext3 */
261 #define FS_NOTAIL_FL 0x00008000 /* file tail should not be merged */
262 #define FS_DIRSYNC_FL 0x00010000 /* dirsync behaviour (directories only) */
263 #define FS_TOPDIR_FL 0x00020000 /* Top of directory hierarchies*/
264 #define FS_EXTENT_FL 0x00080000 /* Extents */
265 #define FS_DIRECTIO_FL 0x00100000 /* Use direct i/o */
266 #define FS_RESERVED_FL 0x80000000 /* reserved for ext2 lib */
268 #define FS_FL_USER_VISIBLE 0x0003DFFF /* User visible flags */
269 #define FS_FL_USER_MODIFIABLE 0x000380FF /* User modifiable flags */
272 #define SYNC_FILE_RANGE_WAIT_BEFORE 1
273 #define SYNC_FILE_RANGE_WRITE 2
274 #define SYNC_FILE_RANGE_WAIT_AFTER 4
276 #ifdef __KERNEL__
278 #include <linux/linkage.h>
279 #include <linux/wait.h>
280 #include <linux/types.h>
281 #include <linux/kdev_t.h>
282 #include <linux/dcache.h>
283 #include <linux/namei.h>
284 #include <linux/stat.h>
285 #include <linux/cache.h>
286 #include <linux/kobject.h>
287 #include <linux/list.h>
288 #include <linux/radix-tree.h>
289 #include <linux/prio_tree.h>
290 #include <linux/init.h>
291 #include <linux/pid.h>
292 #include <linux/mutex.h>
293 #include <linux/capability.h>
295 #include <asm/atomic.h>
296 #include <asm/semaphore.h>
297 #include <asm/byteorder.h>
299 struct export_operations;
300 struct hd_geometry;
301 struct iovec;
302 struct nameidata;
303 struct kiocb;
304 struct pipe_inode_info;
305 struct poll_table_struct;
306 struct kstatfs;
307 struct vm_area_struct;
308 struct vfsmount;
310 extern void __init inode_init(void);
311 extern void __init inode_init_early(void);
312 extern void __init mnt_init(void);
313 extern void __init files_init(unsigned long);
315 struct buffer_head;
316 typedef int (get_block_t)(struct inode *inode, sector_t iblock,
317 struct buffer_head *bh_result, int create);
318 typedef void (dio_iodone_t)(struct kiocb *iocb, loff_t offset,
319 ssize_t bytes, void *private);
322 * Attribute flags. These should be or-ed together to figure out what
323 * has been changed!
325 #define ATTR_MODE 1
326 #define ATTR_UID 2
327 #define ATTR_GID 4
328 #define ATTR_SIZE 8
329 #define ATTR_ATIME 16
330 #define ATTR_MTIME 32
331 #define ATTR_CTIME 64
332 #define ATTR_ATIME_SET 128
333 #define ATTR_MTIME_SET 256
334 #define ATTR_FORCE 512 /* Not a change, but a change it */
335 #define ATTR_ATTR_FLAG 1024
336 #define ATTR_KILL_SUID 2048
337 #define ATTR_KILL_SGID 4096
338 #define ATTR_FILE 8192
339 #define ATTR_KILL_PRIV 16384
340 #define ATTR_OPEN 32768 /* Truncating from open(O_TRUNC) */
343 * This is the Inode Attributes structure, used for notify_change(). It
344 * uses the above definitions as flags, to know which values have changed.
345 * Also, in this manner, a Filesystem can look at only the values it cares
346 * about. Basically, these are the attributes that the VFS layer can
347 * request to change from the FS layer.
349 * Derek Atkins <warlord@MIT.EDU> 94-10-20
351 struct iattr {
352 unsigned int ia_valid;
353 umode_t ia_mode;
354 uid_t ia_uid;
355 gid_t ia_gid;
356 loff_t ia_size;
357 struct timespec ia_atime;
358 struct timespec ia_mtime;
359 struct timespec ia_ctime;
362 * Not an attribute, but an auxilary info for filesystems wanting to
363 * implement an ftruncate() like method. NOTE: filesystem should
364 * check for (ia_valid & ATTR_FILE), and not for (ia_file != NULL).
366 struct file *ia_file;
370 * Includes for diskquotas.
372 #include <linux/quota.h>
374 /**
375 * enum positive_aop_returns - aop return codes with specific semantics
377 * @AOP_WRITEPAGE_ACTIVATE: Informs the caller that page writeback has
378 * completed, that the page is still locked, and
379 * should be considered active. The VM uses this hint
380 * to return the page to the active list -- it won't
381 * be a candidate for writeback again in the near
382 * future. Other callers must be careful to unlock
383 * the page if they get this return. Returned by
384 * writepage();
386 * @AOP_TRUNCATED_PAGE: The AOP method that was handed a locked page has
387 * unlocked it and the page might have been truncated.
388 * The caller should back up to acquiring a new page and
389 * trying again. The aop will be taking reasonable
390 * precautions not to livelock. If the caller held a page
391 * reference, it should drop it before retrying. Returned
392 * by readpage().
394 * address_space_operation functions return these large constants to indicate
395 * special semantics to the caller. These are much larger than the bytes in a
396 * page to allow for functions that return the number of bytes operated on in a
397 * given page.
400 enum positive_aop_returns {
401 AOP_WRITEPAGE_ACTIVATE = 0x80000,
402 AOP_TRUNCATED_PAGE = 0x80001,
405 #define AOP_FLAG_UNINTERRUPTIBLE 0x0001 /* will not do a short write */
406 #define AOP_FLAG_CONT_EXPAND 0x0002 /* called from cont_expand */
409 * oh the beauties of C type declarations.
411 struct page;
412 struct address_space;
413 struct writeback_control;
415 struct iov_iter {
416 const struct iovec *iov;
417 unsigned long nr_segs;
418 size_t iov_offset;
419 size_t count;
422 size_t iov_iter_copy_from_user_atomic(struct page *page,
423 struct iov_iter *i, unsigned long offset, size_t bytes);
424 size_t iov_iter_copy_from_user(struct page *page,
425 struct iov_iter *i, unsigned long offset, size_t bytes);
426 void iov_iter_advance(struct iov_iter *i, size_t bytes);
427 int iov_iter_fault_in_readable(struct iov_iter *i, size_t bytes);
428 size_t iov_iter_single_seg_count(struct iov_iter *i);
430 static inline void iov_iter_init(struct iov_iter *i,
431 const struct iovec *iov, unsigned long nr_segs,
432 size_t count, size_t written)
434 i->iov = iov;
435 i->nr_segs = nr_segs;
436 i->iov_offset = 0;
437 i->count = count + written;
439 iov_iter_advance(i, written);
442 static inline size_t iov_iter_count(struct iov_iter *i)
444 return i->count;
448 struct address_space_operations {
449 int (*writepage)(struct page *page, struct writeback_control *wbc);
450 int (*readpage)(struct file *, struct page *);
451 void (*sync_page)(struct page *);
453 /* Write back some dirty pages from this mapping. */
454 int (*writepages)(struct address_space *, struct writeback_control *);
456 /* Set a page dirty. Return true if this dirtied it */
457 int (*set_page_dirty)(struct page *page);
459 int (*readpages)(struct file *filp, struct address_space *mapping,
460 struct list_head *pages, unsigned nr_pages);
463 * ext3 requires that a successful prepare_write() call be followed
464 * by a commit_write() call - they must be balanced
466 int (*prepare_write)(struct file *, struct page *, unsigned, unsigned);
467 int (*commit_write)(struct file *, struct page *, unsigned, unsigned);
469 int (*write_begin)(struct file *, struct address_space *mapping,
470 loff_t pos, unsigned len, unsigned flags,
471 struct page **pagep, void **fsdata);
472 int (*write_end)(struct file *, struct address_space *mapping,
473 loff_t pos, unsigned len, unsigned copied,
474 struct page *page, void *fsdata);
476 /* Unfortunately this kludge is needed for FIBMAP. Don't use it */
477 sector_t (*bmap)(struct address_space *, sector_t);
478 void (*invalidatepage) (struct page *, unsigned long);
479 int (*releasepage) (struct page *, gfp_t);
480 ssize_t (*direct_IO)(int, struct kiocb *, const struct iovec *iov,
481 loff_t offset, unsigned long nr_segs);
482 struct page* (*get_xip_page)(struct address_space *, sector_t,
483 int);
484 /* migrate the contents of a page to the specified target */
485 int (*migratepage) (struct address_space *,
486 struct page *, struct page *);
487 int (*launder_page) (struct page *);
491 * pagecache_write_begin/pagecache_write_end must be used by general code
492 * to write into the pagecache.
494 int pagecache_write_begin(struct file *, struct address_space *mapping,
495 loff_t pos, unsigned len, unsigned flags,
496 struct page **pagep, void **fsdata);
498 int pagecache_write_end(struct file *, struct address_space *mapping,
499 loff_t pos, unsigned len, unsigned copied,
500 struct page *page, void *fsdata);
502 struct backing_dev_info;
503 struct address_space {
504 struct inode *host; /* owner: inode, block_device */
505 struct radix_tree_root page_tree; /* radix tree of all pages */
506 rwlock_t tree_lock; /* and rwlock protecting it */
507 unsigned int i_mmap_writable;/* count VM_SHARED mappings */
508 struct prio_tree_root i_mmap; /* tree of private and shared mappings */
509 struct list_head i_mmap_nonlinear;/*list VM_NONLINEAR mappings */
510 spinlock_t i_mmap_lock; /* protect tree, count, list */
511 unsigned int truncate_count; /* Cover race condition with truncate */
512 unsigned long nrpages; /* number of total pages */
513 pgoff_t writeback_index;/* writeback starts here */
514 const struct address_space_operations *a_ops; /* methods */
515 unsigned long flags; /* error bits/gfp mask */
516 struct backing_dev_info *backing_dev_info; /* device readahead, etc */
517 spinlock_t private_lock; /* for use by the address_space */
518 struct list_head private_list; /* ditto */
519 struct address_space *assoc_mapping; /* ditto */
520 } __attribute__((aligned(sizeof(long))));
522 * On most architectures that alignment is already the case; but
523 * must be enforced here for CRIS, to let the least signficant bit
524 * of struct page's "mapping" pointer be used for PAGE_MAPPING_ANON.
527 struct block_device {
528 dev_t bd_dev; /* not a kdev_t - it's a search key */
529 struct inode * bd_inode; /* will die */
530 int bd_openers;
531 struct mutex bd_mutex; /* open/close mutex */
532 struct semaphore bd_mount_sem;
533 struct list_head bd_inodes;
534 void * bd_holder;
535 int bd_holders;
536 #ifdef CONFIG_SYSFS
537 struct list_head bd_holder_list;
538 #endif
539 struct block_device * bd_contains;
540 unsigned bd_block_size;
541 struct hd_struct * bd_part;
542 /* number of times partitions within this device have been opened. */
543 unsigned bd_part_count;
544 int bd_invalidated;
545 struct gendisk * bd_disk;
546 struct list_head bd_list;
547 struct backing_dev_info *bd_inode_backing_dev_info;
549 * Private data. You must have bd_claim'ed the block_device
550 * to use this. NOTE: bd_claim allows an owner to claim
551 * the same device multiple times, the owner must take special
552 * care to not mess up bd_private for that case.
554 unsigned long bd_private;
558 * Radix-tree tags, for tagging dirty and writeback pages within the pagecache
559 * radix trees
561 #define PAGECACHE_TAG_DIRTY 0
562 #define PAGECACHE_TAG_WRITEBACK 1
564 int mapping_tagged(struct address_space *mapping, int tag);
567 * Might pages of this file be mapped into userspace?
569 static inline int mapping_mapped(struct address_space *mapping)
571 return !prio_tree_empty(&mapping->i_mmap) ||
572 !list_empty(&mapping->i_mmap_nonlinear);
576 * Might pages of this file have been modified in userspace?
577 * Note that i_mmap_writable counts all VM_SHARED vmas: do_mmap_pgoff
578 * marks vma as VM_SHARED if it is shared, and the file was opened for
579 * writing i.e. vma may be mprotected writable even if now readonly.
581 static inline int mapping_writably_mapped(struct address_space *mapping)
583 return mapping->i_mmap_writable != 0;
587 * Use sequence counter to get consistent i_size on 32-bit processors.
589 #if BITS_PER_LONG==32 && defined(CONFIG_SMP)
590 #include <linux/seqlock.h>
591 #define __NEED_I_SIZE_ORDERED
592 #define i_size_ordered_init(inode) seqcount_init(&inode->i_size_seqcount)
593 #else
594 #define i_size_ordered_init(inode) do { } while (0)
595 #endif
597 struct inode {
598 struct hlist_node i_hash;
599 struct list_head i_list;
600 struct list_head i_sb_list;
601 struct list_head i_dentry;
602 unsigned long i_ino;
603 atomic_t i_count;
604 unsigned int i_nlink;
605 uid_t i_uid;
606 gid_t i_gid;
607 dev_t i_rdev;
608 u64 i_version;
609 loff_t i_size;
610 #ifdef __NEED_I_SIZE_ORDERED
611 seqcount_t i_size_seqcount;
612 #endif
613 struct timespec i_atime;
614 struct timespec i_mtime;
615 struct timespec i_ctime;
616 unsigned int i_blkbits;
617 blkcnt_t i_blocks;
618 unsigned short i_bytes;
619 umode_t i_mode;
620 spinlock_t i_lock; /* i_blocks, i_bytes, maybe i_size */
621 struct mutex i_mutex;
622 struct rw_semaphore i_alloc_sem;
623 const struct inode_operations *i_op;
624 const struct file_operations *i_fop; /* former ->i_op->default_file_ops */
625 struct super_block *i_sb;
626 struct file_lock *i_flock;
627 struct address_space *i_mapping;
628 struct address_space i_data;
629 #ifdef CONFIG_QUOTA
630 struct dquot *i_dquot[MAXQUOTAS];
631 #endif
632 struct list_head i_devices;
633 union {
634 struct pipe_inode_info *i_pipe;
635 struct block_device *i_bdev;
636 struct cdev *i_cdev;
638 int i_cindex;
640 __u32 i_generation;
642 #ifdef CONFIG_DNOTIFY
643 unsigned long i_dnotify_mask; /* Directory notify events */
644 struct dnotify_struct *i_dnotify; /* for directory notifications */
645 #endif
647 #ifdef CONFIG_INOTIFY
648 struct list_head inotify_watches; /* watches on this inode */
649 struct mutex inotify_mutex; /* protects the watches list */
650 #endif
652 unsigned long i_state;
653 unsigned long dirtied_when; /* jiffies of first dirtying */
655 unsigned int i_flags;
657 atomic_t i_writecount;
658 #ifdef CONFIG_SECURITY
659 void *i_security;
660 #endif
661 void *i_private; /* fs or device private pointer */
665 * inode->i_mutex nesting subclasses for the lock validator:
667 * 0: the object of the current VFS operation
668 * 1: parent
669 * 2: child/target
670 * 3: quota file
672 * The locking order between these classes is
673 * parent -> child -> normal -> xattr -> quota
675 enum inode_i_mutex_lock_class
677 I_MUTEX_NORMAL,
678 I_MUTEX_PARENT,
679 I_MUTEX_CHILD,
680 I_MUTEX_XATTR,
681 I_MUTEX_QUOTA
684 extern void inode_double_lock(struct inode *inode1, struct inode *inode2);
685 extern void inode_double_unlock(struct inode *inode1, struct inode *inode2);
688 * NOTE: in a 32bit arch with a preemptable kernel and
689 * an UP compile the i_size_read/write must be atomic
690 * with respect to the local cpu (unlike with preempt disabled),
691 * but they don't need to be atomic with respect to other cpus like in
692 * true SMP (so they need either to either locally disable irq around
693 * the read or for example on x86 they can be still implemented as a
694 * cmpxchg8b without the need of the lock prefix). For SMP compiles
695 * and 64bit archs it makes no difference if preempt is enabled or not.
697 static inline loff_t i_size_read(const struct inode *inode)
699 #if BITS_PER_LONG==32 && defined(CONFIG_SMP)
700 loff_t i_size;
701 unsigned int seq;
703 do {
704 seq = read_seqcount_begin(&inode->i_size_seqcount);
705 i_size = inode->i_size;
706 } while (read_seqcount_retry(&inode->i_size_seqcount, seq));
707 return i_size;
708 #elif BITS_PER_LONG==32 && defined(CONFIG_PREEMPT)
709 loff_t i_size;
711 preempt_disable();
712 i_size = inode->i_size;
713 preempt_enable();
714 return i_size;
715 #else
716 return inode->i_size;
717 #endif
721 * NOTE: unlike i_size_read(), i_size_write() does need locking around it
722 * (normally i_mutex), otherwise on 32bit/SMP an update of i_size_seqcount
723 * can be lost, resulting in subsequent i_size_read() calls spinning forever.
725 static inline void i_size_write(struct inode *inode, loff_t i_size)
727 #if BITS_PER_LONG==32 && defined(CONFIG_SMP)
728 write_seqcount_begin(&inode->i_size_seqcount);
729 inode->i_size = i_size;
730 write_seqcount_end(&inode->i_size_seqcount);
731 #elif BITS_PER_LONG==32 && defined(CONFIG_PREEMPT)
732 preempt_disable();
733 inode->i_size = i_size;
734 preempt_enable();
735 #else
736 inode->i_size = i_size;
737 #endif
740 static inline unsigned iminor(const struct inode *inode)
742 return MINOR(inode->i_rdev);
745 static inline unsigned imajor(const struct inode *inode)
747 return MAJOR(inode->i_rdev);
750 extern struct block_device *I_BDEV(struct inode *inode);
752 struct fown_struct {
753 rwlock_t lock; /* protects pid, uid, euid fields */
754 struct pid *pid; /* pid or -pgrp where SIGIO should be sent */
755 enum pid_type pid_type; /* Kind of process group SIGIO should be sent to */
756 uid_t uid, euid; /* uid/euid of process setting the owner */
757 int signum; /* posix.1b rt signal to be delivered on IO */
761 * Track a single file's readahead state
763 struct file_ra_state {
764 pgoff_t start; /* where readahead started */
765 unsigned int size; /* # of readahead pages */
766 unsigned int async_size; /* do asynchronous readahead when
767 there are only # of pages ahead */
769 unsigned int ra_pages; /* Maximum readahead window */
770 int mmap_miss; /* Cache miss stat for mmap accesses */
771 loff_t prev_pos; /* Cache last read() position */
775 * Check if @index falls in the readahead windows.
777 static inline int ra_has_index(struct file_ra_state *ra, pgoff_t index)
779 return (index >= ra->start &&
780 index < ra->start + ra->size);
783 #define FILE_MNT_WRITE_TAKEN 1
784 #define FILE_MNT_WRITE_RELEASED 2
786 struct file {
788 * fu_list becomes invalid after file_free is called and queued via
789 * fu_rcuhead for RCU freeing
791 union {
792 struct list_head fu_list;
793 struct rcu_head fu_rcuhead;
794 } f_u;
795 struct path f_path;
796 #define f_dentry f_path.dentry
797 #define f_vfsmnt f_path.mnt
798 const struct file_operations *f_op;
799 atomic_t f_count;
800 unsigned int f_flags;
801 mode_t f_mode;
802 loff_t f_pos;
803 struct fown_struct f_owner;
804 unsigned int f_uid, f_gid;
805 struct file_ra_state f_ra;
807 u64 f_version;
808 #ifdef CONFIG_SECURITY
809 void *f_security;
810 #endif
811 /* needed for tty driver, and maybe others */
812 void *private_data;
814 #ifdef CONFIG_EPOLL
815 /* Used by fs/eventpoll.c to link all the hooks to this file */
816 struct list_head f_ep_links;
817 spinlock_t f_ep_lock;
818 #endif /* #ifdef CONFIG_EPOLL */
819 struct address_space *f_mapping;
820 unsigned long f_mnt_write_state;
822 extern spinlock_t files_lock;
823 #define file_list_lock() spin_lock(&files_lock);
824 #define file_list_unlock() spin_unlock(&files_lock);
826 #define get_file(x) atomic_inc(&(x)->f_count)
827 #define file_count(x) atomic_read(&(x)->f_count)
829 #define MAX_NON_LFS ((1UL<<31) - 1)
831 /* Page cache limit. The filesystems should put that into their s_maxbytes
832 limits, otherwise bad things can happen in VM. */
833 #if BITS_PER_LONG==32
834 #define MAX_LFS_FILESIZE (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1)
835 #elif BITS_PER_LONG==64
836 #define MAX_LFS_FILESIZE 0x7fffffffffffffffUL
837 #endif
839 #define FL_POSIX 1
840 #define FL_FLOCK 2
841 #define FL_ACCESS 8 /* not trying to lock, just looking */
842 #define FL_EXISTS 16 /* when unlocking, test for existence */
843 #define FL_LEASE 32 /* lease held on this file */
844 #define FL_CLOSE 64 /* unlock on close */
845 #define FL_SLEEP 128 /* A blocking lock */
848 * The POSIX file lock owner is determined by
849 * the "struct files_struct" in the thread group
850 * (or NULL for no owner - BSD locks).
852 * Lockd stuffs a "host" pointer into this.
854 typedef struct files_struct *fl_owner_t;
856 struct file_lock_operations {
857 void (*fl_insert)(struct file_lock *); /* lock insertion callback */
858 void (*fl_remove)(struct file_lock *); /* lock removal callback */
859 void (*fl_copy_lock)(struct file_lock *, struct file_lock *);
860 void (*fl_release_private)(struct file_lock *);
863 struct lock_manager_operations {
864 int (*fl_compare_owner)(struct file_lock *, struct file_lock *);
865 void (*fl_notify)(struct file_lock *); /* unblock callback */
866 int (*fl_grant)(struct file_lock *, struct file_lock *, int);
867 void (*fl_copy_lock)(struct file_lock *, struct file_lock *);
868 void (*fl_release_private)(struct file_lock *);
869 void (*fl_break)(struct file_lock *);
870 int (*fl_mylease)(struct file_lock *, struct file_lock *);
871 int (*fl_change)(struct file_lock **, int);
874 /* that will die - we need it for nfs_lock_info */
875 #include <linux/nfs_fs_i.h>
877 struct file_lock {
878 struct file_lock *fl_next; /* singly linked list for this inode */
879 struct list_head fl_link; /* doubly linked list of all locks */
880 struct list_head fl_block; /* circular list of blocked processes */
881 fl_owner_t fl_owner;
882 unsigned int fl_pid;
883 wait_queue_head_t fl_wait;
884 struct file *fl_file;
885 unsigned char fl_flags;
886 unsigned char fl_type;
887 loff_t fl_start;
888 loff_t fl_end;
890 struct fasync_struct * fl_fasync; /* for lease break notifications */
891 unsigned long fl_break_time; /* for nonblocking lease breaks */
893 struct file_lock_operations *fl_ops; /* Callbacks for filesystems */
894 struct lock_manager_operations *fl_lmops; /* Callbacks for lockmanagers */
895 union {
896 struct nfs_lock_info nfs_fl;
897 struct nfs4_lock_info nfs4_fl;
898 struct {
899 struct list_head link; /* link in AFS vnode's pending_locks list */
900 int state; /* state of grant or error if -ve */
901 } afs;
902 } fl_u;
905 /* The following constant reflects the upper bound of the file/locking space */
906 #ifndef OFFSET_MAX
907 #define INT_LIMIT(x) (~((x)1 << (sizeof(x)*8 - 1)))
908 #define OFFSET_MAX INT_LIMIT(loff_t)
909 #define OFFT_OFFSET_MAX INT_LIMIT(off_t)
910 #endif
912 #include <linux/fcntl.h>
914 extern int fcntl_getlk(struct file *, struct flock __user *);
915 extern int fcntl_setlk(unsigned int, struct file *, unsigned int,
916 struct flock __user *);
918 #if BITS_PER_LONG == 32
919 extern int fcntl_getlk64(struct file *, struct flock64 __user *);
920 extern int fcntl_setlk64(unsigned int, struct file *, unsigned int,
921 struct flock64 __user *);
922 #endif
924 extern void send_sigio(struct fown_struct *fown, int fd, int band);
925 extern int fcntl_setlease(unsigned int fd, struct file *filp, long arg);
926 extern int fcntl_getlease(struct file *filp);
928 /* fs/sync.c */
929 extern int do_sync_mapping_range(struct address_space *mapping, loff_t offset,
930 loff_t endbyte, unsigned int flags);
932 /* fs/locks.c */
933 extern void locks_init_lock(struct file_lock *);
934 extern void locks_copy_lock(struct file_lock *, struct file_lock *);
935 extern void locks_remove_posix(struct file *, fl_owner_t);
936 extern void locks_remove_flock(struct file *);
937 extern void posix_test_lock(struct file *, struct file_lock *);
938 extern int posix_lock_file(struct file *, struct file_lock *, struct file_lock *);
939 extern int posix_lock_file_wait(struct file *, struct file_lock *);
940 extern int posix_unblock_lock(struct file *, struct file_lock *);
941 extern int vfs_test_lock(struct file *, struct file_lock *);
942 extern int vfs_lock_file(struct file *, unsigned int, struct file_lock *, struct file_lock *);
943 extern int vfs_cancel_lock(struct file *filp, struct file_lock *fl);
944 extern int flock_lock_file_wait(struct file *filp, struct file_lock *fl);
945 extern int __break_lease(struct inode *inode, unsigned int flags);
946 extern void lease_get_mtime(struct inode *, struct timespec *time);
947 extern int generic_setlease(struct file *, long, struct file_lock **);
948 extern int vfs_setlease(struct file *, long, struct file_lock **);
949 extern int lease_modify(struct file_lock **, int);
950 extern int lock_may_read(struct inode *, loff_t start, unsigned long count);
951 extern int lock_may_write(struct inode *, loff_t start, unsigned long count);
952 extern struct seq_operations locks_seq_operations;
954 struct fasync_struct {
955 int magic;
956 int fa_fd;
957 struct fasync_struct *fa_next; /* singly linked list */
958 struct file *fa_file;
961 #define FASYNC_MAGIC 0x4601
963 /* SMP safe fasync helpers: */
964 extern int fasync_helper(int, struct file *, int, struct fasync_struct **);
965 /* can be called from interrupts */
966 extern void kill_fasync(struct fasync_struct **, int, int);
967 /* only for net: no internal synchronization */
968 extern void __kill_fasync(struct fasync_struct *, int, int);
970 extern int __f_setown(struct file *filp, struct pid *, enum pid_type, int force);
971 extern int f_setown(struct file *filp, unsigned long arg, int force);
972 extern void f_delown(struct file *filp);
973 extern pid_t f_getown(struct file *filp);
974 extern int send_sigurg(struct fown_struct *fown);
977 * Umount options
980 #define MNT_FORCE 0x00000001 /* Attempt to forcibily umount */
981 #define MNT_DETACH 0x00000002 /* Just detach from the tree */
982 #define MNT_EXPIRE 0x00000004 /* Mark for expiry */
984 extern struct list_head super_blocks;
985 extern spinlock_t sb_lock;
987 #define sb_entry(list) list_entry((list), struct super_block, s_list)
988 #define S_BIAS (1<<30)
989 struct super_block {
990 struct list_head s_list; /* Keep this first */
991 dev_t s_dev; /* search index; _not_ kdev_t */
992 unsigned long s_blocksize;
993 unsigned char s_blocksize_bits;
994 unsigned char s_dirt;
995 unsigned long long s_maxbytes; /* Max file size */
996 struct file_system_type *s_type;
997 const struct super_operations *s_op;
998 struct dquot_operations *dq_op;
999 struct quotactl_ops *s_qcop;
1000 const struct export_operations *s_export_op;
1001 unsigned long s_flags;
1002 unsigned long s_magic;
1003 struct dentry *s_root;
1004 struct rw_semaphore s_umount;
1005 struct mutex s_lock;
1006 int s_count;
1007 int s_syncing;
1008 int s_need_sync_fs;
1009 atomic_t s_active;
1010 #ifdef CONFIG_SECURITY
1011 void *s_security;
1012 #endif
1013 struct xattr_handler **s_xattr;
1015 struct list_head s_inodes; /* all inodes */
1016 struct list_head s_dirty; /* dirty inodes */
1017 struct list_head s_io; /* parked for writeback */
1018 struct list_head s_more_io; /* parked for more writeback */
1019 struct hlist_head s_anon; /* anonymous dentries for (nfs) exporting */
1020 struct list_head s_files;
1022 struct block_device *s_bdev;
1023 struct mtd_info *s_mtd;
1024 struct list_head s_instances;
1025 struct quota_info s_dquot; /* Diskquota specific options */
1027 int s_frozen;
1028 wait_queue_head_t s_wait_unfrozen;
1030 char s_id[32]; /* Informational name */
1032 void *s_fs_info; /* Filesystem private info */
1035 * The next field is for VFS *only*. No filesystems have any business
1036 * even looking at it. You had been warned.
1038 struct mutex s_vfs_rename_mutex; /* Kludge */
1040 /* Granularity of c/m/atime in ns.
1041 Cannot be worse than a second */
1042 u32 s_time_gran;
1045 * Filesystem subtype. If non-empty the filesystem type field
1046 * in /proc/mounts will be "type.subtype"
1048 char *s_subtype;
1051 extern struct timespec current_fs_time(struct super_block *sb);
1054 * Snapshotting support.
1056 enum {
1057 SB_UNFROZEN = 0,
1058 SB_FREEZE_WRITE = 1,
1059 SB_FREEZE_TRANS = 2,
1062 #define vfs_check_frozen(sb, level) \
1063 wait_event((sb)->s_wait_unfrozen, ((sb)->s_frozen < (level)))
1065 #define get_fs_excl() atomic_inc(&current->fs_excl)
1066 #define put_fs_excl() atomic_dec(&current->fs_excl)
1067 #define has_fs_excl() atomic_read(&current->fs_excl)
1069 #define is_owner_or_cap(inode) \
1070 ((current->fsuid == (inode)->i_uid) || capable(CAP_FOWNER))
1072 /* not quite ready to be deprecated, but... */
1073 extern void lock_super(struct super_block *);
1074 extern void unlock_super(struct super_block *);
1077 * VFS helper functions..
1079 extern int vfs_permission(struct nameidata *, int);
1080 extern int vfs_create(struct inode *, struct dentry *, int, struct nameidata *);
1081 extern int vfs_mkdir(struct inode *, struct dentry *, int);
1082 extern int vfs_mknod(struct inode *, struct dentry *, int, dev_t);
1083 extern int vfs_symlink(struct inode *, struct dentry *, const char *, int);
1084 extern int vfs_link(struct dentry *, struct inode *, struct dentry *);
1085 extern int vfs_rmdir(struct inode *, struct dentry *);
1086 extern int vfs_unlink(struct inode *, struct dentry *);
1087 extern int vfs_rename(struct inode *, struct dentry *, struct inode *, struct dentry *);
1090 * VFS dentry helper functions.
1092 extern void dentry_unhash(struct dentry *dentry);
1095 * VFS file helper functions.
1097 extern int file_permission(struct file *, int);
1100 * File types
1102 * NOTE! These match bits 12..15 of stat.st_mode
1103 * (ie "(i_mode >> 12) & 15").
1105 #define DT_UNKNOWN 0
1106 #define DT_FIFO 1
1107 #define DT_CHR 2
1108 #define DT_DIR 4
1109 #define DT_BLK 6
1110 #define DT_REG 8
1111 #define DT_LNK 10
1112 #define DT_SOCK 12
1113 #define DT_WHT 14
1115 #define OSYNC_METADATA (1<<0)
1116 #define OSYNC_DATA (1<<1)
1117 #define OSYNC_INODE (1<<2)
1118 int generic_osync_inode(struct inode *, struct address_space *, int);
1121 * This is the "filldir" function type, used by readdir() to let
1122 * the kernel specify what kind of dirent layout it wants to have.
1123 * This allows the kernel to read directories into kernel space or
1124 * to have different dirent layouts depending on the binary type.
1126 typedef int (*filldir_t)(void *, const char *, int, loff_t, u64, unsigned);
1128 struct block_device_operations {
1129 int (*open) (struct inode *, struct file *);
1130 int (*release) (struct inode *, struct file *);
1131 int (*ioctl) (struct inode *, struct file *, unsigned, unsigned long);
1132 long (*unlocked_ioctl) (struct file *, unsigned, unsigned long);
1133 long (*compat_ioctl) (struct file *, unsigned, unsigned long);
1134 int (*direct_access) (struct block_device *, sector_t, unsigned long *);
1135 int (*media_changed) (struct gendisk *);
1136 int (*revalidate_disk) (struct gendisk *);
1137 int (*getgeo)(struct block_device *, struct hd_geometry *);
1138 struct module *owner;
1142 * "descriptor" for what we're up to with a read.
1143 * This allows us to use the same read code yet
1144 * have multiple different users of the data that
1145 * we read from a file.
1147 * The simplest case just copies the data to user
1148 * mode.
1150 typedef struct {
1151 size_t written;
1152 size_t count;
1153 union {
1154 char __user * buf;
1155 void *data;
1156 } arg;
1157 int error;
1158 } read_descriptor_t;
1160 typedef int (*read_actor_t)(read_descriptor_t *, struct page *, unsigned long, unsigned long);
1162 /* These macros are for out of kernel modules to test that
1163 * the kernel supports the unlocked_ioctl and compat_ioctl
1164 * fields in struct file_operations. */
1165 #define HAVE_COMPAT_IOCTL 1
1166 #define HAVE_UNLOCKED_IOCTL 1
1169 * NOTE:
1170 * read, write, poll, fsync, readv, writev, unlocked_ioctl and compat_ioctl
1171 * can be called without the big kernel lock held in all filesystems.
1173 struct file_operations {
1174 struct module *owner;
1175 loff_t (*llseek) (struct file *, loff_t, int);
1176 ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
1177 ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
1178 ssize_t (*aio_read) (struct kiocb *, const struct iovec *, unsigned long, loff_t);
1179 ssize_t (*aio_write) (struct kiocb *, const struct iovec *, unsigned long, loff_t);
1180 int (*readdir) (struct file *, void *, filldir_t);
1181 unsigned int (*poll) (struct file *, struct poll_table_struct *);
1182 int (*ioctl) (struct inode *, struct file *, unsigned int, unsigned long);
1183 long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
1184 long (*compat_ioctl) (struct file *, unsigned int, unsigned long);
1185 int (*mmap) (struct file *, struct vm_area_struct *);
1186 int (*open) (struct inode *, struct file *);
1187 int (*flush) (struct file *, fl_owner_t id);
1188 int (*release) (struct inode *, struct file *);
1189 int (*fsync) (struct file *, struct dentry *, int datasync);
1190 int (*aio_fsync) (struct kiocb *, int datasync);
1191 int (*fasync) (int, struct file *, int);
1192 int (*lock) (struct file *, int, struct file_lock *);
1193 ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *, int);
1194 unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
1195 int (*check_flags)(int);
1196 int (*dir_notify)(struct file *filp, unsigned long arg);
1197 int (*flock) (struct file *, int, struct file_lock *);
1198 ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int);
1199 ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int);
1200 int (*setlease)(struct file *, long, struct file_lock **);
1201 int (*revoke)(struct file *, struct address_space *);
1204 struct inode_operations {
1205 int (*create) (struct inode *,struct dentry *,int, struct nameidata *);
1206 struct dentry * (*lookup) (struct inode *,struct dentry *, struct nameidata *);
1207 int (*link) (struct dentry *,struct inode *,struct dentry *);
1208 int (*unlink) (struct inode *,struct dentry *);
1209 int (*symlink) (struct inode *,struct dentry *,const char *);
1210 int (*mkdir) (struct inode *,struct dentry *,int);
1211 int (*rmdir) (struct inode *,struct dentry *);
1212 int (*mknod) (struct inode *,struct dentry *,int,dev_t);
1213 int (*rename) (struct inode *, struct dentry *,
1214 struct inode *, struct dentry *);
1215 int (*readlink) (struct dentry *, char __user *,int);
1216 void * (*follow_link) (struct dentry *, struct nameidata *);
1217 void (*put_link) (struct dentry *, struct nameidata *, void *);
1218 void (*truncate) (struct inode *);
1219 int (*permission) (struct inode *, int, struct nameidata *);
1220 int (*setattr) (struct dentry *, struct iattr *);
1221 int (*getattr) (struct vfsmount *mnt, struct dentry *, struct kstat *);
1222 int (*setxattr) (struct dentry *, const char *,const void *,size_t,int);
1223 ssize_t (*getxattr) (struct dentry *, const char *, void *, size_t);
1224 ssize_t (*listxattr) (struct dentry *, char *, size_t);
1225 int (*removexattr) (struct dentry *, const char *);
1226 void (*truncate_range)(struct inode *, loff_t, loff_t);
1227 long (*fallocate)(struct inode *inode, int mode, loff_t offset,
1228 loff_t len);
1231 struct seq_file;
1233 ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
1234 unsigned long nr_segs, unsigned long fast_segs,
1235 struct iovec *fast_pointer,
1236 struct iovec **ret_pointer);
1238 extern ssize_t vfs_read(struct file *, char __user *, size_t, loff_t *);
1239 extern ssize_t vfs_write(struct file *, const char __user *, size_t, loff_t *);
1240 extern ssize_t vfs_readv(struct file *, const struct iovec __user *,
1241 unsigned long, loff_t *);
1242 extern ssize_t vfs_writev(struct file *, const struct iovec __user *,
1243 unsigned long, loff_t *);
1246 * NOTE: write_inode, delete_inode, clear_inode, put_inode can be called
1247 * without the big kernel lock held in all filesystems.
1249 struct super_operations {
1250 struct inode *(*alloc_inode)(struct super_block *sb);
1251 void (*destroy_inode)(struct inode *);
1253 void (*read_inode) (struct inode *);
1255 void (*dirty_inode) (struct inode *);
1256 int (*write_inode) (struct inode *, int);
1257 void (*put_inode) (struct inode *);
1258 void (*drop_inode) (struct inode *);
1259 void (*delete_inode) (struct inode *);
1260 void (*put_super) (struct super_block *);
1261 void (*write_super) (struct super_block *);
1262 int (*sync_fs)(struct super_block *sb, int wait);
1263 void (*write_super_lockfs) (struct super_block *);
1264 void (*unlockfs) (struct super_block *);
1265 int (*statfs) (struct dentry *, struct kstatfs *);
1266 int (*remount_fs) (struct super_block *, int *, char *);
1267 void (*clear_inode) (struct inode *);
1268 void (*umount_begin) (struct vfsmount *, int);
1270 int (*show_options)(struct seq_file *, struct vfsmount *);
1271 int (*show_stats)(struct seq_file *, struct vfsmount *);
1272 #ifdef CONFIG_QUOTA
1273 ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t);
1274 ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t);
1275 #endif
1279 * Inode state bits. Protected by inode_lock.
1281 * Three bits determine the dirty state of the inode, I_DIRTY_SYNC,
1282 * I_DIRTY_DATASYNC and I_DIRTY_PAGES.
1284 * Four bits define the lifetime of an inode. Initially, inodes are I_NEW,
1285 * until that flag is cleared. I_WILL_FREE, I_FREEING and I_CLEAR are set at
1286 * various stages of removing an inode.
1288 * Two bits are used for locking and completion notification, I_LOCK and I_SYNC.
1290 * I_DIRTY_SYNC Inode itself is dirty.
1291 * I_DIRTY_DATASYNC Data-related inode changes pending
1292 * I_DIRTY_PAGES Inode has dirty pages. Inode itself may be clean.
1293 * I_NEW get_new_inode() sets i_state to I_LOCK|I_NEW. Both
1294 * are cleared by unlock_new_inode(), called from iget().
1295 * I_WILL_FREE Must be set when calling write_inode_now() if i_count
1296 * is zero. I_FREEING must be set when I_WILL_FREE is
1297 * cleared.
1298 * I_FREEING Set when inode is about to be freed but still has dirty
1299 * pages or buffers attached or the inode itself is still
1300 * dirty.
1301 * I_CLEAR Set by clear_inode(). In this state the inode is clean
1302 * and can be destroyed.
1304 * Inodes that are I_WILL_FREE, I_FREEING or I_CLEAR are
1305 * prohibited for many purposes. iget() must wait for
1306 * the inode to be completely released, then create it
1307 * anew. Other functions will just ignore such inodes,
1308 * if appropriate. I_LOCK is used for waiting.
1310 * I_LOCK Serves as both a mutex and completion notification.
1311 * New inodes set I_LOCK. If two processes both create
1312 * the same inode, one of them will release its inode and
1313 * wait for I_LOCK to be released before returning.
1314 * Inodes in I_WILL_FREE, I_FREEING or I_CLEAR state can
1315 * also cause waiting on I_LOCK, without I_LOCK actually
1316 * being set. find_inode() uses this to prevent returning
1317 * nearly-dead inodes.
1318 * I_SYNC Similar to I_LOCK, but limited in scope to writeback
1319 * of inode dirty data. Having a seperate lock for this
1320 * purpose reduces latency and prevents some filesystem-
1321 * specific deadlocks.
1323 * Q: Why does I_DIRTY_DATASYNC exist? It appears as if it could be replaced
1324 * by (I_DIRTY_SYNC|I_DIRTY_PAGES).
1325 * Q: What is the difference between I_WILL_FREE and I_FREEING?
1326 * Q: igrab() only checks on (I_FREEING|I_WILL_FREE). Should it also check on
1327 * I_CLEAR? If not, why?
1329 #define I_DIRTY_SYNC 1
1330 #define I_DIRTY_DATASYNC 2
1331 #define I_DIRTY_PAGES 4
1332 #define I_NEW 8
1333 #define I_WILL_FREE 16
1334 #define I_FREEING 32
1335 #define I_CLEAR 64
1336 #define __I_LOCK 7
1337 #define I_LOCK (1 << __I_LOCK)
1338 #define __I_SYNC 8
1339 #define I_SYNC (1 << __I_SYNC)
1341 #define I_DIRTY (I_DIRTY_SYNC | I_DIRTY_DATASYNC | I_DIRTY_PAGES)
1343 extern void __mark_inode_dirty(struct inode *, int);
1344 static inline void mark_inode_dirty(struct inode *inode)
1346 __mark_inode_dirty(inode, I_DIRTY);
1349 static inline void mark_inode_dirty_sync(struct inode *inode)
1351 __mark_inode_dirty(inode, I_DIRTY_SYNC);
1355 * inc_nlink - directly increment an inode's link count
1356 * @inode: inode
1358 * This is a low-level filesystem helper to replace any
1359 * direct filesystem manipulation of i_nlink. Currently,
1360 * it is only here for parity with dec_nlink().
1362 static inline void inc_nlink(struct inode *inode)
1364 inode->i_nlink++;
1367 static inline void inode_inc_link_count(struct inode *inode)
1369 inc_nlink(inode);
1370 mark_inode_dirty(inode);
1374 * drop_nlink - directly drop an inode's link count
1375 * @inode: inode
1377 * This is a low-level filesystem helper to replace any
1378 * direct filesystem manipulation of i_nlink. In cases
1379 * where we are attempting to track writes to the
1380 * filesystem, a decrement to zero means an imminent
1381 * write when the file is truncated and actually unlinked
1382 * on the filesystem.
1384 static inline void drop_nlink(struct inode *inode)
1386 inode->i_nlink--;
1390 * clear_nlink - directly zero an inode's link count
1391 * @inode: inode
1393 * This is a low-level filesystem helper to replace any
1394 * direct filesystem manipulation of i_nlink. See
1395 * drop_nlink() for why we care about i_nlink hitting zero.
1397 static inline void clear_nlink(struct inode *inode)
1399 inode->i_nlink = 0;
1402 static inline void inode_dec_link_count(struct inode *inode)
1404 drop_nlink(inode);
1405 mark_inode_dirty(inode);
1408 extern void touch_atime(struct vfsmount *mnt, struct dentry *dentry);
1409 static inline void file_accessed(struct file *file)
1411 if (!(file->f_flags & O_NOATIME))
1412 touch_atime(file->f_path.mnt, file->f_path.dentry);
1415 int sync_inode(struct inode *inode, struct writeback_control *wbc);
1417 struct file_system_type {
1418 const char *name;
1419 int fs_flags;
1420 int (*get_sb) (struct file_system_type *, int,
1421 const char *, void *, struct vfsmount *);
1422 void (*kill_sb) (struct super_block *);
1423 struct module *owner;
1424 struct file_system_type * next;
1425 struct list_head fs_supers;
1427 struct lock_class_key s_lock_key;
1428 struct lock_class_key s_umount_key;
1430 struct lock_class_key i_lock_key;
1431 struct lock_class_key i_mutex_key;
1432 struct lock_class_key i_mutex_dir_key;
1433 struct lock_class_key i_alloc_sem_key;
1436 extern int get_sb_bdev(struct file_system_type *fs_type,
1437 int flags, const char *dev_name, void *data,
1438 int (*fill_super)(struct super_block *, void *, int),
1439 struct vfsmount *mnt);
1440 extern int get_sb_single(struct file_system_type *fs_type,
1441 int flags, void *data,
1442 int (*fill_super)(struct super_block *, void *, int),
1443 struct vfsmount *mnt);
1444 extern int get_sb_nodev(struct file_system_type *fs_type,
1445 int flags, void *data,
1446 int (*fill_super)(struct super_block *, void *, int),
1447 struct vfsmount *mnt);
1448 void generic_shutdown_super(struct super_block *sb);
1449 void kill_block_super(struct super_block *sb);
1450 void kill_anon_super(struct super_block *sb);
1451 void kill_litter_super(struct super_block *sb);
1452 void deactivate_super(struct super_block *sb);
1453 int set_anon_super(struct super_block *s, void *data);
1454 struct super_block *sget(struct file_system_type *type,
1455 int (*test)(struct super_block *,void *),
1456 int (*set)(struct super_block *,void *),
1457 void *data);
1458 extern int get_sb_pseudo(struct file_system_type *, char *,
1459 const struct super_operations *ops, unsigned long,
1460 struct vfsmount *mnt);
1461 extern int simple_set_mnt(struct vfsmount *mnt, struct super_block *sb);
1462 int __put_super(struct super_block *sb);
1463 int __put_super_and_need_restart(struct super_block *sb);
1464 void unnamed_dev_init(void);
1466 /* Alas, no aliases. Too much hassle with bringing module.h everywhere */
1467 #define fops_get(fops) \
1468 (((fops) && try_module_get((fops)->owner) ? (fops) : NULL))
1469 #define fops_put(fops) \
1470 do { if (fops) module_put((fops)->owner); } while(0)
1472 extern int register_filesystem(struct file_system_type *);
1473 extern int unregister_filesystem(struct file_system_type *);
1474 extern struct vfsmount *kern_mount_data(struct file_system_type *, void *data);
1475 #define kern_mount(type) kern_mount_data(type, NULL)
1476 extern int may_umount_tree(struct vfsmount *);
1477 extern int may_umount(struct vfsmount *);
1478 extern void umount_tree(struct vfsmount *, int, struct list_head *);
1479 extern void release_mounts(struct list_head *);
1480 extern long do_mount(char *, char *, char *, unsigned long, void *);
1481 extern void mnt_set_mountpoint(struct vfsmount *, struct dentry *,
1482 struct vfsmount *);
1483 extern struct vfsmount *collect_mounts(struct vfsmount *, struct dentry *);
1484 extern void drop_collected_mounts(struct vfsmount *);
1486 extern int vfs_statfs(struct dentry *, struct kstatfs *);
1488 /* /sys/fs */
1489 extern struct kobject *fs_kobj;
1491 #define FLOCK_VERIFY_READ 1
1492 #define FLOCK_VERIFY_WRITE 2
1494 extern int locks_mandatory_locked(struct inode *);
1495 extern int locks_mandatory_area(int, struct inode *, struct file *, loff_t, size_t);
1498 * Candidates for mandatory locking have the setgid bit set
1499 * but no group execute bit - an otherwise meaningless combination.
1502 static inline int __mandatory_lock(struct inode *ino)
1504 return (ino->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID;
1508 * ... and these candidates should be on MS_MANDLOCK mounted fs,
1509 * otherwise these will be advisory locks
1512 static inline int mandatory_lock(struct inode *ino)
1514 return IS_MANDLOCK(ino) && __mandatory_lock(ino);
1517 static inline int locks_verify_locked(struct inode *inode)
1519 if (mandatory_lock(inode))
1520 return locks_mandatory_locked(inode);
1521 return 0;
1524 extern int rw_verify_area(int, struct file *, loff_t *, size_t);
1526 static inline int locks_verify_truncate(struct inode *inode,
1527 struct file *filp,
1528 loff_t size)
1530 if (inode->i_flock && mandatory_lock(inode))
1531 return locks_mandatory_area(
1532 FLOCK_VERIFY_WRITE, inode, filp,
1533 size < inode->i_size ? size : inode->i_size,
1534 (size < inode->i_size ? inode->i_size - size
1535 : size - inode->i_size)
1537 return 0;
1540 static inline int break_lease(struct inode *inode, unsigned int mode)
1542 if (inode->i_flock)
1543 return __break_lease(inode, mode);
1544 return 0;
1547 /* fs/open.c */
1549 extern int do_truncate(struct dentry *, loff_t start, unsigned int time_attrs,
1550 struct file *filp);
1551 extern long do_sys_open(int dfd, const char __user *filename, int flags,
1552 int mode);
1553 extern struct file * dentry_open(struct dentry *, struct vfsmount *, int);
1554 extern int filp_close(struct file *, fl_owner_t id);
1555 extern char * getname(const char __user *);
1557 /* fs/dcache.c */
1558 extern void __init vfs_caches_init_early(void);
1559 extern void __init vfs_caches_init(unsigned long);
1561 extern struct kmem_cache *names_cachep;
1563 #define __getname() kmem_cache_alloc(names_cachep, GFP_KERNEL)
1564 #define __putname(name) kmem_cache_free(names_cachep, (void *)(name))
1565 #ifndef CONFIG_AUDITSYSCALL
1566 #define putname(name) __putname(name)
1567 #else
1568 extern void putname(const char *name);
1569 #endif
1571 #ifdef CONFIG_BLOCK
1572 extern int register_blkdev(unsigned int, const char *);
1573 extern void unregister_blkdev(unsigned int, const char *);
1574 extern struct block_device *bdget(dev_t);
1575 extern void bd_set_size(struct block_device *, loff_t size);
1576 extern void bd_forget(struct inode *inode);
1577 extern void bdput(struct block_device *);
1578 extern struct block_device *open_by_devnum(dev_t, unsigned);
1579 extern const struct address_space_operations def_blk_aops;
1580 #else
1581 static inline void bd_forget(struct inode *inode) {}
1582 #endif
1583 extern const struct file_operations def_blk_fops;
1584 extern const struct file_operations def_chr_fops;
1585 extern const struct file_operations bad_sock_fops;
1586 extern const struct file_operations def_fifo_fops;
1587 #ifdef CONFIG_BLOCK
1588 extern int ioctl_by_bdev(struct block_device *, unsigned, unsigned long);
1589 extern int blkdev_ioctl(struct inode *, struct file *, unsigned, unsigned long);
1590 extern int blkdev_driver_ioctl(struct inode *inode, struct file *file,
1591 struct gendisk *disk, unsigned cmd,
1592 unsigned long arg);
1593 extern long compat_blkdev_ioctl(struct file *, unsigned, unsigned long);
1594 extern int blkdev_get(struct block_device *, mode_t, unsigned);
1595 extern int blkdev_put(struct block_device *);
1596 extern int bd_claim(struct block_device *, void *);
1597 extern void bd_release(struct block_device *);
1598 #ifdef CONFIG_SYSFS
1599 extern int bd_claim_by_disk(struct block_device *, void *, struct gendisk *);
1600 extern void bd_release_from_disk(struct block_device *, struct gendisk *);
1601 #else
1602 #define bd_claim_by_disk(bdev, holder, disk) bd_claim(bdev, holder)
1603 #define bd_release_from_disk(bdev, disk) bd_release(bdev)
1604 #endif
1605 #endif
1607 /* fs/char_dev.c */
1608 #define CHRDEV_MAJOR_HASH_SIZE 255
1609 extern int alloc_chrdev_region(dev_t *, unsigned, unsigned, const char *);
1610 extern int register_chrdev_region(dev_t, unsigned, const char *);
1611 extern int register_chrdev(unsigned int, const char *,
1612 const struct file_operations *);
1613 extern void unregister_chrdev(unsigned int, const char *);
1614 extern void unregister_chrdev_region(dev_t, unsigned);
1615 extern int chrdev_open(struct inode *, struct file *);
1616 extern void chrdev_show(struct seq_file *,off_t);
1618 /* fs/block_dev.c */
1619 #define BDEVNAME_SIZE 32 /* Largest string for a blockdev identifier */
1621 #ifdef CONFIG_BLOCK
1622 #define BLKDEV_MAJOR_HASH_SIZE 255
1623 extern const char *__bdevname(dev_t, char *buffer);
1624 extern const char *bdevname(struct block_device *bdev, char *buffer);
1625 extern struct block_device *lookup_bdev(const char *);
1626 extern struct block_device *open_bdev_excl(const char *, int, void *);
1627 extern void close_bdev_excl(struct block_device *);
1628 extern void blkdev_show(struct seq_file *,off_t);
1629 #else
1630 #define BLKDEV_MAJOR_HASH_SIZE 0
1631 #endif
1633 extern void init_special_inode(struct inode *, umode_t, dev_t);
1635 /* Invalid inode operations -- fs/bad_inode.c */
1636 extern void make_bad_inode(struct inode *);
1637 extern int is_bad_inode(struct inode *);
1639 extern const struct file_operations read_fifo_fops;
1640 extern const struct file_operations write_fifo_fops;
1641 extern const struct file_operations rdwr_fifo_fops;
1643 extern int fs_may_remount_ro(struct super_block *);
1645 #ifdef CONFIG_BLOCK
1647 * return READ, READA, or WRITE
1649 #define bio_rw(bio) ((bio)->bi_rw & (RW_MASK | RWA_MASK))
1652 * return data direction, READ or WRITE
1654 #define bio_data_dir(bio) ((bio)->bi_rw & 1)
1656 extern int check_disk_change(struct block_device *);
1657 extern int __invalidate_device(struct block_device *);
1658 extern int invalidate_partition(struct gendisk *, int);
1659 #endif
1660 extern int invalidate_inodes(struct super_block *);
1661 unsigned long __invalidate_mapping_pages(struct address_space *mapping,
1662 pgoff_t start, pgoff_t end,
1663 bool be_atomic);
1664 unsigned long invalidate_mapping_pages(struct address_space *mapping,
1665 pgoff_t start, pgoff_t end);
1667 static inline unsigned long __deprecated
1668 invalidate_inode_pages(struct address_space *mapping)
1670 return invalidate_mapping_pages(mapping, 0, ~0UL);
1673 static inline void invalidate_remote_inode(struct inode *inode)
1675 if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1676 S_ISLNK(inode->i_mode))
1677 invalidate_mapping_pages(inode->i_mapping, 0, -1);
1679 extern int invalidate_inode_pages2(struct address_space *mapping);
1680 extern int invalidate_inode_pages2_range(struct address_space *mapping,
1681 pgoff_t start, pgoff_t end);
1682 extern int write_inode_now(struct inode *, int);
1683 extern int filemap_fdatawrite(struct address_space *);
1684 extern int filemap_flush(struct address_space *);
1685 extern int filemap_fdatawait(struct address_space *);
1686 extern int filemap_write_and_wait(struct address_space *mapping);
1687 extern int filemap_write_and_wait_range(struct address_space *mapping,
1688 loff_t lstart, loff_t lend);
1689 extern int wait_on_page_writeback_range(struct address_space *mapping,
1690 pgoff_t start, pgoff_t end);
1691 extern int __filemap_fdatawrite_range(struct address_space *mapping,
1692 loff_t start, loff_t end, int sync_mode);
1694 extern long do_fsync(struct file *file, int datasync);
1695 extern void sync_supers(void);
1696 extern void sync_filesystems(int wait);
1697 extern void __fsync_super(struct super_block *sb);
1698 extern void emergency_sync(void);
1699 extern void emergency_remount(void);
1700 extern int do_remount_sb(struct super_block *sb, int flags,
1701 void *data, int force);
1702 #ifdef CONFIG_BLOCK
1703 extern sector_t bmap(struct inode *, sector_t);
1704 #endif
1705 extern int notify_change(struct dentry *, struct iattr *);
1706 extern int permission(struct inode *, int, struct nameidata *);
1707 extern int generic_permission(struct inode *, int,
1708 int (*check_acl)(struct inode *, int));
1710 extern int get_write_access(struct inode *);
1711 extern int deny_write_access(struct file *);
1712 static inline void put_write_access(struct inode * inode)
1714 atomic_dec(&inode->i_writecount);
1716 static inline void allow_write_access(struct file *file)
1718 if (file)
1719 atomic_inc(&file->f_path.dentry->d_inode->i_writecount);
1721 extern int do_pipe(int *);
1722 extern struct file *create_read_pipe(struct file *f);
1723 extern struct file *create_write_pipe(void);
1724 extern void free_write_pipe(struct file *);
1726 extern struct file *open_pathname(int dfd, const char *, int, int);
1727 extern int may_open(struct nameidata *, int, int);
1729 extern int kernel_read(struct file *, unsigned long, char *, unsigned long);
1730 extern struct file * open_exec(const char *);
1732 /* fs/dcache.c -- generic fs support functions */
1733 extern int is_subdir(struct dentry *, struct dentry *);
1734 extern ino_t find_inode_number(struct dentry *, struct qstr *);
1736 #include <linux/err.h>
1738 /* needed for stackable file system support */
1739 extern loff_t default_llseek(struct file *file, loff_t offset, int origin);
1741 extern loff_t vfs_llseek(struct file *file, loff_t offset, int origin);
1743 extern void inode_init_once(struct inode *);
1744 extern void iput(struct inode *);
1745 extern struct inode * igrab(struct inode *);
1746 extern ino_t iunique(struct super_block *, ino_t);
1747 extern int inode_needs_sync(struct inode *inode);
1748 extern void generic_delete_inode(struct inode *inode);
1749 extern void generic_drop_inode(struct inode *inode);
1751 extern struct inode *ilookup5_nowait(struct super_block *sb,
1752 unsigned long hashval, int (*test)(struct inode *, void *),
1753 void *data);
1754 extern struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
1755 int (*test)(struct inode *, void *), void *data);
1756 extern struct inode *ilookup(struct super_block *sb, unsigned long ino);
1758 extern struct inode * iget5_locked(struct super_block *, unsigned long, int (*test)(struct inode *, void *), int (*set)(struct inode *, void *), void *);
1759 extern struct inode * iget_locked(struct super_block *, unsigned long);
1760 extern void unlock_new_inode(struct inode *);
1762 static inline struct inode *iget(struct super_block *sb, unsigned long ino)
1764 struct inode *inode = iget_locked(sb, ino);
1766 if (inode && (inode->i_state & I_NEW)) {
1767 sb->s_op->read_inode(inode);
1768 unlock_new_inode(inode);
1771 return inode;
1774 extern void __iget(struct inode * inode);
1775 extern void clear_inode(struct inode *);
1776 extern void destroy_inode(struct inode *);
1777 extern struct inode *new_inode(struct super_block *);
1778 extern int __remove_suid(struct dentry *, int);
1779 extern int should_remove_suid(struct dentry *);
1780 extern int remove_suid(struct dentry *);
1782 extern void __insert_inode_hash(struct inode *, unsigned long hashval);
1783 extern void remove_inode_hash(struct inode *);
1784 static inline void insert_inode_hash(struct inode *inode) {
1785 __insert_inode_hash(inode, inode->i_ino);
1788 extern struct file * get_empty_filp(void);
1789 extern void file_move(struct file *f, struct list_head *list);
1790 extern void file_kill(struct file *f);
1791 #ifdef CONFIG_BLOCK
1792 struct bio;
1793 extern void submit_bio(int, struct bio *);
1794 extern int bdev_read_only(struct block_device *);
1795 #endif
1796 extern int set_blocksize(struct block_device *, int);
1797 extern int sb_set_blocksize(struct super_block *, int);
1798 extern int sb_min_blocksize(struct super_block *, int);
1799 extern int sb_has_dirty_inodes(struct super_block *);
1801 extern int generic_file_mmap(struct file *, struct vm_area_struct *);
1802 extern int generic_file_readonly_mmap(struct file *, struct vm_area_struct *);
1803 extern int file_read_actor(read_descriptor_t * desc, struct page *page, unsigned long offset, unsigned long size);
1804 int generic_write_checks(struct file *file, loff_t *pos, size_t *count, int isblk);
1805 extern ssize_t generic_file_aio_read(struct kiocb *, const struct iovec *, unsigned long, loff_t);
1806 extern ssize_t generic_file_aio_write(struct kiocb *, const struct iovec *, unsigned long, loff_t);
1807 extern ssize_t generic_file_aio_write_nolock(struct kiocb *, const struct iovec *,
1808 unsigned long, loff_t);
1809 extern ssize_t generic_file_direct_write(struct kiocb *, const struct iovec *,
1810 unsigned long *, loff_t, loff_t *, size_t, size_t);
1811 extern ssize_t generic_file_buffered_write(struct kiocb *, const struct iovec *,
1812 unsigned long, loff_t, loff_t *, size_t, ssize_t);
1813 extern ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos);
1814 extern ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos);
1815 extern void do_generic_mapping_read(struct address_space *mapping,
1816 struct file_ra_state *, struct file *,
1817 loff_t *, read_descriptor_t *, read_actor_t);
1818 extern int generic_segment_checks(const struct iovec *iov,
1819 unsigned long *nr_segs, size_t *count, int access_flags);
1821 /* fs/splice.c */
1822 extern ssize_t generic_file_splice_read(struct file *, loff_t *,
1823 struct pipe_inode_info *, size_t, unsigned int);
1824 extern ssize_t generic_file_splice_write(struct pipe_inode_info *,
1825 struct file *, loff_t *, size_t, unsigned int);
1826 extern ssize_t generic_file_splice_write_nolock(struct pipe_inode_info *,
1827 struct file *, loff_t *, size_t, unsigned int);
1828 extern ssize_t generic_splice_sendpage(struct pipe_inode_info *pipe,
1829 struct file *out, loff_t *, size_t len, unsigned int flags);
1830 extern long do_splice_direct(struct file *in, loff_t *ppos, struct file *out,
1831 size_t len, unsigned int flags);
1833 /* fs/revoke.c */
1834 #ifdef CONFIG_MMU
1835 extern int generic_file_revoke(struct file *, struct address_space *);
1836 #else
1837 #define generic_file_revoke NULL
1838 #endif
1840 extern void
1841 file_ra_state_init(struct file_ra_state *ra, struct address_space *mapping);
1842 extern loff_t no_llseek(struct file *file, loff_t offset, int origin);
1843 extern loff_t generic_file_llseek(struct file *file, loff_t offset, int origin);
1844 extern loff_t remote_llseek(struct file *file, loff_t offset, int origin);
1845 extern int generic_file_open(struct inode * inode, struct file * filp);
1846 extern int nonseekable_open(struct inode * inode, struct file * filp);
1848 #ifdef CONFIG_FS_XIP
1849 extern ssize_t xip_file_read(struct file *filp, char __user *buf, size_t len,
1850 loff_t *ppos);
1851 extern int xip_file_mmap(struct file * file, struct vm_area_struct * vma);
1852 extern ssize_t xip_file_write(struct file *filp, const char __user *buf,
1853 size_t len, loff_t *ppos);
1854 extern int xip_truncate_page(struct address_space *mapping, loff_t from);
1855 #else
1856 static inline int xip_truncate_page(struct address_space *mapping, loff_t from)
1858 return 0;
1860 #endif
1862 static inline void do_generic_file_read(struct file * filp, loff_t *ppos,
1863 read_descriptor_t * desc,
1864 read_actor_t actor)
1866 do_generic_mapping_read(filp->f_mapping,
1867 &filp->f_ra,
1868 filp,
1869 ppos,
1870 desc,
1871 actor);
1874 #ifdef CONFIG_BLOCK
1875 ssize_t __blockdev_direct_IO(int rw, struct kiocb *iocb, struct inode *inode,
1876 struct block_device *bdev, const struct iovec *iov, loff_t offset,
1877 unsigned long nr_segs, get_block_t get_block, dio_iodone_t end_io,
1878 int lock_type);
1880 enum {
1881 DIO_LOCKING = 1, /* need locking between buffered and direct access */
1882 DIO_NO_LOCKING, /* bdev; no locking at all between buffered/direct */
1883 DIO_OWN_LOCKING, /* filesystem locks buffered and direct internally */
1886 static inline ssize_t blockdev_direct_IO(int rw, struct kiocb *iocb,
1887 struct inode *inode, struct block_device *bdev, const struct iovec *iov,
1888 loff_t offset, unsigned long nr_segs, get_block_t get_block,
1889 dio_iodone_t end_io)
1891 return __blockdev_direct_IO(rw, iocb, inode, bdev, iov, offset,
1892 nr_segs, get_block, end_io, DIO_LOCKING);
1895 static inline ssize_t blockdev_direct_IO_no_locking(int rw, struct kiocb *iocb,
1896 struct inode *inode, struct block_device *bdev, const struct iovec *iov,
1897 loff_t offset, unsigned long nr_segs, get_block_t get_block,
1898 dio_iodone_t end_io)
1900 return __blockdev_direct_IO(rw, iocb, inode, bdev, iov, offset,
1901 nr_segs, get_block, end_io, DIO_NO_LOCKING);
1904 static inline ssize_t blockdev_direct_IO_own_locking(int rw, struct kiocb *iocb,
1905 struct inode *inode, struct block_device *bdev, const struct iovec *iov,
1906 loff_t offset, unsigned long nr_segs, get_block_t get_block,
1907 dio_iodone_t end_io)
1909 return __blockdev_direct_IO(rw, iocb, inode, bdev, iov, offset,
1910 nr_segs, get_block, end_io, DIO_OWN_LOCKING);
1912 #endif
1914 extern const struct file_operations generic_ro_fops;
1916 #define special_file(m) (S_ISCHR(m)||S_ISBLK(m)||S_ISFIFO(m)||S_ISSOCK(m))
1918 extern int vfs_readlink(struct dentry *, char __user *, int, const char *);
1919 extern int vfs_follow_link(struct nameidata *, const char *);
1920 extern int page_readlink(struct dentry *, char __user *, int);
1921 extern void *page_follow_link_light(struct dentry *, struct nameidata *);
1922 extern void page_put_link(struct dentry *, struct nameidata *, void *);
1923 extern int __page_symlink(struct inode *inode, const char *symname, int len,
1924 gfp_t gfp_mask);
1925 extern int page_symlink(struct inode *inode, const char *symname, int len);
1926 extern const struct inode_operations page_symlink_inode_operations;
1927 extern int generic_readlink(struct dentry *, char __user *, int);
1928 extern void generic_fillattr(struct inode *, struct kstat *);
1929 extern int vfs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
1930 void inode_add_bytes(struct inode *inode, loff_t bytes);
1931 void inode_sub_bytes(struct inode *inode, loff_t bytes);
1932 loff_t inode_get_bytes(struct inode *inode);
1933 void inode_set_bytes(struct inode *inode, loff_t bytes);
1935 extern int vfs_readdir(struct file *, filldir_t, void *);
1937 extern int vfs_stat(char __user *, struct kstat *);
1938 extern int vfs_lstat(char __user *, struct kstat *);
1939 extern int vfs_stat_fd(int dfd, char __user *, struct kstat *);
1940 extern int vfs_lstat_fd(int dfd, char __user *, struct kstat *);
1941 extern int vfs_fstat(unsigned int, struct kstat *);
1943 extern long vfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg);
1944 extern int do_vfs_ioctl(struct file *filp, unsigned int fd, unsigned int cmd,
1945 unsigned long arg);
1947 extern void get_filesystem(struct file_system_type *fs);
1948 extern void put_filesystem(struct file_system_type *fs);
1949 extern struct file_system_type *get_fs_type(const char *name);
1950 extern struct super_block *get_super(struct block_device *);
1951 extern struct super_block *user_get_super(dev_t);
1952 extern void drop_super(struct super_block *sb);
1954 extern int dcache_dir_open(struct inode *, struct file *);
1955 extern int dcache_dir_close(struct inode *, struct file *);
1956 extern loff_t dcache_dir_lseek(struct file *, loff_t, int);
1957 extern int dcache_readdir(struct file *, void *, filldir_t);
1958 extern int simple_getattr(struct vfsmount *, struct dentry *, struct kstat *);
1959 extern int simple_statfs(struct dentry *, struct kstatfs *);
1960 extern int simple_link(struct dentry *, struct inode *, struct dentry *);
1961 extern int simple_unlink(struct inode *, struct dentry *);
1962 extern int simple_rmdir(struct inode *, struct dentry *);
1963 extern int simple_rename(struct inode *, struct dentry *, struct inode *, struct dentry *);
1964 extern int simple_sync_file(struct file *, struct dentry *, int);
1965 extern int simple_empty(struct dentry *);
1966 extern int simple_readpage(struct file *file, struct page *page);
1967 extern int simple_prepare_write(struct file *file, struct page *page,
1968 unsigned offset, unsigned to);
1969 extern int simple_write_begin(struct file *file, struct address_space *mapping,
1970 loff_t pos, unsigned len, unsigned flags,
1971 struct page **pagep, void **fsdata);
1972 extern int simple_write_end(struct file *file, struct address_space *mapping,
1973 loff_t pos, unsigned len, unsigned copied,
1974 struct page *page, void *fsdata);
1976 extern struct dentry *simple_lookup(struct inode *, struct dentry *, struct nameidata *);
1977 extern ssize_t generic_read_dir(struct file *, char __user *, size_t, loff_t *);
1978 extern const struct file_operations simple_dir_operations;
1979 extern const struct inode_operations simple_dir_inode_operations;
1980 struct tree_descr { char *name; const struct file_operations *ops; int mode; };
1981 struct dentry *d_alloc_name(struct dentry *, const char *);
1982 extern int simple_fill_super(struct super_block *, int, struct tree_descr *);
1983 extern int simple_pin_fs(struct file_system_type *, struct vfsmount **mount, int *count);
1984 extern void simple_release_fs(struct vfsmount **mount, int *count);
1986 extern ssize_t simple_read_from_buffer(void __user *, size_t, loff_t *, const void *, size_t);
1988 #ifdef CONFIG_MIGRATION
1989 extern int buffer_migrate_page(struct address_space *,
1990 struct page *, struct page *);
1991 #else
1992 #define buffer_migrate_page NULL
1993 #endif
1995 extern int inode_change_ok(struct inode *, struct iattr *);
1996 extern int __must_check inode_setattr(struct inode *, struct iattr *);
1998 extern void file_update_time(struct file *file);
2000 static inline ino_t parent_ino(struct dentry *dentry)
2002 ino_t res;
2004 spin_lock(&dentry->d_lock);
2005 res = dentry->d_parent->d_inode->i_ino;
2006 spin_unlock(&dentry->d_lock);
2007 return res;
2010 /* kernel/fork.c */
2011 extern int unshare_files(void);
2013 /* Transaction based IO helpers */
2016 * An argresp is stored in an allocated page and holds the
2017 * size of the argument or response, along with its content
2019 struct simple_transaction_argresp {
2020 ssize_t size;
2021 char data[0];
2024 #define SIMPLE_TRANSACTION_LIMIT (PAGE_SIZE - sizeof(struct simple_transaction_argresp))
2026 char *simple_transaction_get(struct file *file, const char __user *buf,
2027 size_t size);
2028 ssize_t simple_transaction_read(struct file *file, char __user *buf,
2029 size_t size, loff_t *pos);
2030 int simple_transaction_release(struct inode *inode, struct file *file);
2032 static inline void simple_transaction_set(struct file *file, size_t n)
2034 struct simple_transaction_argresp *ar = file->private_data;
2036 BUG_ON(n > SIMPLE_TRANSACTION_LIMIT);
2039 * The barrier ensures that ar->size will really remain zero until
2040 * ar->data is ready for reading.
2042 smp_mb();
2043 ar->size = n;
2047 * simple attribute files
2049 * These attributes behave similar to those in sysfs:
2051 * Writing to an attribute immediately sets a value, an open file can be
2052 * written to multiple times.
2054 * Reading from an attribute creates a buffer from the value that might get
2055 * read with multiple read calls. When the attribute has been read
2056 * completely, no further read calls are possible until the file is opened
2057 * again.
2059 * All attributes contain a text representation of a numeric value
2060 * that are accessed with the get() and set() functions.
2062 #define DEFINE_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt) \
2063 static int __fops ## _open(struct inode *inode, struct file *file) \
2065 __simple_attr_check_format(__fmt, 0ull); \
2066 return simple_attr_open(inode, file, __get, __set, __fmt); \
2068 static struct file_operations __fops = { \
2069 .owner = THIS_MODULE, \
2070 .open = __fops ## _open, \
2071 .release = simple_attr_close, \
2072 .read = simple_attr_read, \
2073 .write = simple_attr_write, \
2076 static inline void __attribute__((format(printf, 1, 2)))
2077 __simple_attr_check_format(const char *fmt, ...)
2079 /* don't do anything, just let the compiler check the arguments; */
2082 int simple_attr_open(struct inode *inode, struct file *file,
2083 u64 (*get)(void *), void (*set)(void *, u64),
2084 const char *fmt);
2085 int simple_attr_close(struct inode *inode, struct file *file);
2086 ssize_t simple_attr_read(struct file *file, char __user *buf,
2087 size_t len, loff_t *ppos);
2088 ssize_t simple_attr_write(struct file *file, const char __user *buf,
2089 size_t len, loff_t *ppos);
2092 #ifdef CONFIG_SECURITY
2093 static inline char *alloc_secdata(void)
2095 return (char *)get_zeroed_page(GFP_KERNEL);
2098 static inline void free_secdata(void *secdata)
2100 free_page((unsigned long)secdata);
2102 #else
2103 static inline char *alloc_secdata(void)
2105 return (char *)1;
2108 static inline void free_secdata(void *secdata)
2110 #endif /* CONFIG_SECURITY */
2112 struct ctl_table;
2113 int proc_nr_files(struct ctl_table *table, int write, struct file *filp,
2114 void __user *buffer, size_t *lenp, loff_t *ppos);
2116 int get_filesystem_list(char * buf);
2118 #endif /* __KERNEL__ */
2119 #endif /* _LINUX_FS_H */