[PATCH] shared mounts handling: umount
[safe/jmp/linux-2.6] / include / linux / fs.h
1 #ifndef _LINUX_FS_H
2 #define _LINUX_FS_H
3
4 /*
5  * This file has definitions for some important file table
6  * structures etc.
7  */
8
9 #include <linux/config.h>
10 #include <linux/limits.h>
11 #include <linux/ioctl.h>
12 #include <linux/rcuref.h>
13
14 /*
15  * It's silly to have NR_OPEN bigger than NR_FILE, but you can change
16  * the file limit at runtime and only root can increase the per-process
17  * nr_file rlimit, so it's safe to set up a ridiculously high absolute
18  * upper limit on files-per-process.
19  *
20  * Some programs (notably those using select()) may have to be 
21  * recompiled to take full advantage of the new limits..  
22  */
23
24 /* Fixed constants first: */
25 #undef NR_OPEN
26 #define NR_OPEN (1024*1024)     /* Absolute upper limit on fd num */
27 #define INR_OPEN 1024           /* Initial setting for nfile rlimits */
28
29 #define BLOCK_SIZE_BITS 10
30 #define BLOCK_SIZE (1<<BLOCK_SIZE_BITS)
31
32 /* And dynamically-tunable limits and defaults: */
33 struct files_stat_struct {
34         int nr_files;           /* read only */
35         int nr_free_files;      /* read only */
36         int max_files;          /* tunable */
37 };
38 extern struct files_stat_struct files_stat;
39
40 struct inodes_stat_t {
41         int nr_inodes;
42         int nr_unused;
43         int dummy[5];
44 };
45 extern struct inodes_stat_t inodes_stat;
46
47 extern int leases_enable, lease_break_time;
48
49 #ifdef CONFIG_DNOTIFY
50 extern int dir_notify_enable;
51 #endif
52
53 #define NR_FILE  8192   /* this can well be larger on a larger system */
54
55 #define MAY_EXEC 1
56 #define MAY_WRITE 2
57 #define MAY_READ 4
58 #define MAY_APPEND 8
59
60 #define FMODE_READ 1
61 #define FMODE_WRITE 2
62
63 /* Internal kernel extensions */
64 #define FMODE_LSEEK     4
65 #define FMODE_PREAD     8
66 #define FMODE_PWRITE    FMODE_PREAD     /* These go hand in hand */
67
68 #define RW_MASK         1
69 #define RWA_MASK        2
70 #define READ 0
71 #define WRITE 1
72 #define READA 2         /* read-ahead  - don't block if no resources */
73 #define SWRITE 3        /* for ll_rw_block() - wait for buffer lock */
74 #define SPECIAL 4       /* For non-blockdevice requests in request queue */
75 #define READ_SYNC       (READ | (1 << BIO_RW_SYNC))
76 #define WRITE_SYNC      (WRITE | (1 << BIO_RW_SYNC))
77 #define WRITE_BARRIER   ((1 << BIO_RW) | (1 << BIO_RW_BARRIER))
78
79 #define SEL_IN          1
80 #define SEL_OUT         2
81 #define SEL_EX          4
82
83 /* public flags for file_system_type */
84 #define FS_REQUIRES_DEV 1 
85 #define FS_BINARY_MOUNTDATA 2
86 #define FS_REVAL_DOT    16384   /* Check the paths ".", ".." for staleness */
87 #define FS_ODD_RENAME   32768   /* Temporary stuff; will go away as soon
88                                   * as nfs_rename() will be cleaned up
89                                   */
90 /*
91  * These are the fs-independent mount-flags: up to 32 flags are supported
92  */
93 #define MS_RDONLY        1      /* Mount read-only */
94 #define MS_NOSUID        2      /* Ignore suid and sgid bits */
95 #define MS_NODEV         4      /* Disallow access to device special files */
96 #define MS_NOEXEC        8      /* Disallow program execution */
97 #define MS_SYNCHRONOUS  16      /* Writes are synced at once */
98 #define MS_REMOUNT      32      /* Alter flags of a mounted FS */
99 #define MS_MANDLOCK     64      /* Allow mandatory locks on an FS */
100 #define MS_DIRSYNC      128     /* Directory modifications are synchronous */
101 #define MS_NOATIME      1024    /* Do not update access times. */
102 #define MS_NODIRATIME   2048    /* Do not update directory access times */
103 #define MS_BIND         4096
104 #define MS_MOVE         8192
105 #define MS_REC          16384
106 #define MS_VERBOSE      32768
107 #define MS_PRIVATE      (1<<18) /* change to private */
108 #define MS_SHARED       (1<<20) /* change to shared */
109 #define MS_POSIXACL     (1<<16) /* VFS does not apply the umask */
110 #define MS_ACTIVE       (1<<30)
111 #define MS_NOUSER       (1<<31)
112
113 /*
114  * Superblock flags that can be altered by MS_REMOUNT
115  */
116 #define MS_RMT_MASK     (MS_RDONLY|MS_SYNCHRONOUS|MS_MANDLOCK|MS_NOATIME|\
117                          MS_NODIRATIME)
118
119 /*
120  * Old magic mount flag and mask
121  */
122 #define MS_MGC_VAL 0xC0ED0000
123 #define MS_MGC_MSK 0xffff0000
124
125 /* Inode flags - they have nothing to superblock flags now */
126
127 #define S_SYNC          1       /* Writes are synced at once */
128 #define S_NOATIME       2       /* Do not update access times */
129 #define S_APPEND        4       /* Append-only file */
130 #define S_IMMUTABLE     8       /* Immutable file */
131 #define S_DEAD          16      /* removed, but still open directory */
132 #define S_NOQUOTA       32      /* Inode is not counted to quota */
133 #define S_DIRSYNC       64      /* Directory modifications are synchronous */
134 #define S_NOCMTIME      128     /* Do not update file c/mtime */
135 #define S_SWAPFILE      256     /* Do not truncate: swapon got its bmaps */
136 #define S_PRIVATE       512     /* Inode is fs-internal */
137
138 /*
139  * Note that nosuid etc flags are inode-specific: setting some file-system
140  * flags just means all the inodes inherit those flags by default. It might be
141  * possible to override it selectively if you really wanted to with some
142  * ioctl() that is not currently implemented.
143  *
144  * Exception: MS_RDONLY is always applied to the entire file system.
145  *
146  * Unfortunately, it is possible to change a filesystems flags with it mounted
147  * with files in use.  This means that all of the inodes will not have their
148  * i_flags updated.  Hence, i_flags no longer inherit the superblock mount
149  * flags, so these have to be checked separately. -- rmk@arm.uk.linux.org
150  */
151 #define __IS_FLG(inode,flg) ((inode)->i_sb->s_flags & (flg))
152
153 #define IS_RDONLY(inode) ((inode)->i_sb->s_flags & MS_RDONLY)
154 #define IS_SYNC(inode)          (__IS_FLG(inode, MS_SYNCHRONOUS) || \
155                                         ((inode)->i_flags & S_SYNC))
156 #define IS_DIRSYNC(inode)       (__IS_FLG(inode, MS_SYNCHRONOUS|MS_DIRSYNC) || \
157                                         ((inode)->i_flags & (S_SYNC|S_DIRSYNC)))
158 #define IS_MANDLOCK(inode)      __IS_FLG(inode, MS_MANDLOCK)
159
160 #define IS_NOQUOTA(inode)       ((inode)->i_flags & S_NOQUOTA)
161 #define IS_APPEND(inode)        ((inode)->i_flags & S_APPEND)
162 #define IS_IMMUTABLE(inode)     ((inode)->i_flags & S_IMMUTABLE)
163 #define IS_NOATIME(inode)       (__IS_FLG(inode, MS_NOATIME) || ((inode)->i_flags & S_NOATIME))
164 #define IS_NODIRATIME(inode)    __IS_FLG(inode, MS_NODIRATIME)
165 #define IS_POSIXACL(inode)      __IS_FLG(inode, MS_POSIXACL)
166
167 #define IS_DEADDIR(inode)       ((inode)->i_flags & S_DEAD)
168 #define IS_NOCMTIME(inode)      ((inode)->i_flags & S_NOCMTIME)
169 #define IS_SWAPFILE(inode)      ((inode)->i_flags & S_SWAPFILE)
170 #define IS_PRIVATE(inode)       ((inode)->i_flags & S_PRIVATE)
171
172 /* the read-only stuff doesn't really belong here, but any other place is
173    probably as bad and I don't want to create yet another include file. */
174
175 #define BLKROSET   _IO(0x12,93) /* set device read-only (0 = read-write) */
176 #define BLKROGET   _IO(0x12,94) /* get read-only status (0 = read_write) */
177 #define BLKRRPART  _IO(0x12,95) /* re-read partition table */
178 #define BLKGETSIZE _IO(0x12,96) /* return device size /512 (long *arg) */
179 #define BLKFLSBUF  _IO(0x12,97) /* flush buffer cache */
180 #define BLKRASET   _IO(0x12,98) /* set read ahead for block device */
181 #define BLKRAGET   _IO(0x12,99) /* get current read ahead setting */
182 #define BLKFRASET  _IO(0x12,100)/* set filesystem (mm/filemap.c) read-ahead */
183 #define BLKFRAGET  _IO(0x12,101)/* get filesystem (mm/filemap.c) read-ahead */
184 #define BLKSECTSET _IO(0x12,102)/* set max sectors per request (ll_rw_blk.c) */
185 #define BLKSECTGET _IO(0x12,103)/* get max sectors per request (ll_rw_blk.c) */
186 #define BLKSSZGET  _IO(0x12,104)/* get block device sector size */
187 #if 0
188 #define BLKPG      _IO(0x12,105)/* See blkpg.h */
189
190 /* Some people are morons.  Do not use sizeof! */
191
192 #define BLKELVGET  _IOR(0x12,106,size_t)/* elevator get */
193 #define BLKELVSET  _IOW(0x12,107,size_t)/* elevator set */
194 /* This was here just to show that the number is taken -
195    probably all these _IO(0x12,*) ioctls should be moved to blkpg.h. */
196 #endif
197 /* A jump here: 108-111 have been used for various private purposes. */
198 #define BLKBSZGET  _IOR(0x12,112,size_t)
199 #define BLKBSZSET  _IOW(0x12,113,size_t)
200 #define BLKGETSIZE64 _IOR(0x12,114,size_t)      /* return device size in bytes (u64 *arg) */
201
202 #define BMAP_IOCTL 1            /* obsolete - kept for compatibility */
203 #define FIBMAP     _IO(0x00,1)  /* bmap access */
204 #define FIGETBSZ   _IO(0x00,2)  /* get the block size used for bmap */
205
206 #ifdef __KERNEL__
207
208 #include <linux/linkage.h>
209 #include <linux/wait.h>
210 #include <linux/types.h>
211 #include <linux/kdev_t.h>
212 #include <linux/dcache.h>
213 #include <linux/stat.h>
214 #include <linux/cache.h>
215 #include <linux/kobject.h>
216 #include <linux/list.h>
217 #include <linux/radix-tree.h>
218 #include <linux/prio_tree.h>
219 #include <linux/init.h>
220 #include <linux/sched.h>
221
222 #include <asm/atomic.h>
223 #include <asm/semaphore.h>
224 #include <asm/byteorder.h>
225
226 struct iovec;
227 struct nameidata;
228 struct kiocb;
229 struct pipe_inode_info;
230 struct poll_table_struct;
231 struct kstatfs;
232 struct vm_area_struct;
233 struct vfsmount;
234
235 /* Used to be a macro which just called the function, now just a function */
236 extern void update_atime (struct inode *);
237
238 extern void __init inode_init(unsigned long);
239 extern void __init inode_init_early(void);
240 extern void __init mnt_init(unsigned long);
241 extern void __init files_init(unsigned long);
242
243 struct buffer_head;
244 typedef int (get_block_t)(struct inode *inode, sector_t iblock,
245                         struct buffer_head *bh_result, int create);
246 typedef int (get_blocks_t)(struct inode *inode, sector_t iblock,
247                         unsigned long max_blocks,
248                         struct buffer_head *bh_result, int create);
249 typedef void (dio_iodone_t)(struct kiocb *iocb, loff_t offset,
250                         ssize_t bytes, void *private);
251
252 /*
253  * Attribute flags.  These should be or-ed together to figure out what
254  * has been changed!
255  */
256 #define ATTR_MODE       1
257 #define ATTR_UID        2
258 #define ATTR_GID        4
259 #define ATTR_SIZE       8
260 #define ATTR_ATIME      16
261 #define ATTR_MTIME      32
262 #define ATTR_CTIME      64
263 #define ATTR_ATIME_SET  128
264 #define ATTR_MTIME_SET  256
265 #define ATTR_FORCE      512     /* Not a change, but a change it */
266 #define ATTR_ATTR_FLAG  1024
267 #define ATTR_KILL_SUID  2048
268 #define ATTR_KILL_SGID  4096
269 #define ATTR_FILE       8192
270
271 /*
272  * This is the Inode Attributes structure, used for notify_change().  It
273  * uses the above definitions as flags, to know which values have changed.
274  * Also, in this manner, a Filesystem can look at only the values it cares
275  * about.  Basically, these are the attributes that the VFS layer can
276  * request to change from the FS layer.
277  *
278  * Derek Atkins <warlord@MIT.EDU> 94-10-20
279  */
280 struct iattr {
281         unsigned int    ia_valid;
282         umode_t         ia_mode;
283         uid_t           ia_uid;
284         gid_t           ia_gid;
285         loff_t          ia_size;
286         struct timespec ia_atime;
287         struct timespec ia_mtime;
288         struct timespec ia_ctime;
289
290         /*
291          * Not an attribute, but an auxilary info for filesystems wanting to
292          * implement an ftruncate() like method.  NOTE: filesystem should
293          * check for (ia_valid & ATTR_FILE), and not for (ia_file != NULL).
294          */
295         struct file     *ia_file;
296 };
297
298 /*
299  * Includes for diskquotas.
300  */
301 #include <linux/quota.h>
302
303 /*
304  * oh the beauties of C type declarations.
305  */
306 struct page;
307 struct address_space;
308 struct writeback_control;
309
310 struct address_space_operations {
311         int (*writepage)(struct page *page, struct writeback_control *wbc);
312         int (*readpage)(struct file *, struct page *);
313         int (*sync_page)(struct page *);
314
315         /* Write back some dirty pages from this mapping. */
316         int (*writepages)(struct address_space *, struct writeback_control *);
317
318         /* Set a page dirty */
319         int (*set_page_dirty)(struct page *page);
320
321         int (*readpages)(struct file *filp, struct address_space *mapping,
322                         struct list_head *pages, unsigned nr_pages);
323
324         /*
325          * ext3 requires that a successful prepare_write() call be followed
326          * by a commit_write() call - they must be balanced
327          */
328         int (*prepare_write)(struct file *, struct page *, unsigned, unsigned);
329         int (*commit_write)(struct file *, struct page *, unsigned, unsigned);
330         /* Unfortunately this kludge is needed for FIBMAP. Don't use it */
331         sector_t (*bmap)(struct address_space *, sector_t);
332         int (*invalidatepage) (struct page *, unsigned long);
333         int (*releasepage) (struct page *, gfp_t);
334         ssize_t (*direct_IO)(int, struct kiocb *, const struct iovec *iov,
335                         loff_t offset, unsigned long nr_segs);
336         struct page* (*get_xip_page)(struct address_space *, sector_t,
337                         int);
338 };
339
340 struct backing_dev_info;
341 struct address_space {
342         struct inode            *host;          /* owner: inode, block_device */
343         struct radix_tree_root  page_tree;      /* radix tree of all pages */
344         rwlock_t                tree_lock;      /* and rwlock protecting it */
345         unsigned int            i_mmap_writable;/* count VM_SHARED mappings */
346         struct prio_tree_root   i_mmap;         /* tree of private and shared mappings */
347         struct list_head        i_mmap_nonlinear;/*list VM_NONLINEAR mappings */
348         spinlock_t              i_mmap_lock;    /* protect tree, count, list */
349         unsigned int            truncate_count; /* Cover race condition with truncate */
350         unsigned long           nrpages;        /* number of total pages */
351         pgoff_t                 writeback_index;/* writeback starts here */
352         struct address_space_operations *a_ops; /* methods */
353         unsigned long           flags;          /* error bits/gfp mask */
354         struct backing_dev_info *backing_dev_info; /* device readahead, etc */
355         spinlock_t              private_lock;   /* for use by the address_space */
356         struct list_head        private_list;   /* ditto */
357         struct address_space    *assoc_mapping; /* ditto */
358 } __attribute__((aligned(sizeof(long))));
359         /*
360          * On most architectures that alignment is already the case; but
361          * must be enforced here for CRIS, to let the least signficant bit
362          * of struct page's "mapping" pointer be used for PAGE_MAPPING_ANON.
363          */
364
365 struct block_device {
366         dev_t                   bd_dev;  /* not a kdev_t - it's a search key */
367         struct inode *          bd_inode;       /* will die */
368         int                     bd_openers;
369         struct semaphore        bd_sem; /* open/close mutex */
370         struct semaphore        bd_mount_sem;   /* mount mutex */
371         struct list_head        bd_inodes;
372         void *                  bd_holder;
373         int                     bd_holders;
374         struct block_device *   bd_contains;
375         unsigned                bd_block_size;
376         struct hd_struct *      bd_part;
377         /* number of times partitions within this device have been opened. */
378         unsigned                bd_part_count;
379         int                     bd_invalidated;
380         struct gendisk *        bd_disk;
381         struct list_head        bd_list;
382         struct backing_dev_info *bd_inode_backing_dev_info;
383         /*
384          * Private data.  You must have bd_claim'ed the block_device
385          * to use this.  NOTE:  bd_claim allows an owner to claim
386          * the same device multiple times, the owner must take special
387          * care to not mess up bd_private for that case.
388          */
389         unsigned long           bd_private;
390 };
391
392 /*
393  * Radix-tree tags, for tagging dirty and writeback pages within the pagecache
394  * radix trees
395  */
396 #define PAGECACHE_TAG_DIRTY     0
397 #define PAGECACHE_TAG_WRITEBACK 1
398
399 int mapping_tagged(struct address_space *mapping, int tag);
400
401 /*
402  * Might pages of this file be mapped into userspace?
403  */
404 static inline int mapping_mapped(struct address_space *mapping)
405 {
406         return  !prio_tree_empty(&mapping->i_mmap) ||
407                 !list_empty(&mapping->i_mmap_nonlinear);
408 }
409
410 /*
411  * Might pages of this file have been modified in userspace?
412  * Note that i_mmap_writable counts all VM_SHARED vmas: do_mmap_pgoff
413  * marks vma as VM_SHARED if it is shared, and the file was opened for
414  * writing i.e. vma may be mprotected writable even if now readonly.
415  */
416 static inline int mapping_writably_mapped(struct address_space *mapping)
417 {
418         return mapping->i_mmap_writable != 0;
419 }
420
421 /*
422  * Use sequence counter to get consistent i_size on 32-bit processors.
423  */
424 #if BITS_PER_LONG==32 && defined(CONFIG_SMP)
425 #include <linux/seqlock.h>
426 #define __NEED_I_SIZE_ORDERED
427 #define i_size_ordered_init(inode) seqcount_init(&inode->i_size_seqcount)
428 #else
429 #define i_size_ordered_init(inode) do { } while (0)
430 #endif
431
432 struct inode {
433         struct hlist_node       i_hash;
434         struct list_head        i_list;
435         struct list_head        i_sb_list;
436         struct list_head        i_dentry;
437         unsigned long           i_ino;
438         atomic_t                i_count;
439         umode_t                 i_mode;
440         unsigned int            i_nlink;
441         uid_t                   i_uid;
442         gid_t                   i_gid;
443         dev_t                   i_rdev;
444         loff_t                  i_size;
445         struct timespec         i_atime;
446         struct timespec         i_mtime;
447         struct timespec         i_ctime;
448         unsigned int            i_blkbits;
449         unsigned long           i_blksize;
450         unsigned long           i_version;
451         unsigned long           i_blocks;
452         unsigned short          i_bytes;
453         spinlock_t              i_lock; /* i_blocks, i_bytes, maybe i_size */
454         struct semaphore        i_sem;
455         struct rw_semaphore     i_alloc_sem;
456         struct inode_operations *i_op;
457         struct file_operations  *i_fop; /* former ->i_op->default_file_ops */
458         struct super_block      *i_sb;
459         struct file_lock        *i_flock;
460         struct address_space    *i_mapping;
461         struct address_space    i_data;
462 #ifdef CONFIG_QUOTA
463         struct dquot            *i_dquot[MAXQUOTAS];
464 #endif
465         /* These three should probably be a union */
466         struct list_head        i_devices;
467         struct pipe_inode_info  *i_pipe;
468         struct block_device     *i_bdev;
469         struct cdev             *i_cdev;
470         int                     i_cindex;
471
472         __u32                   i_generation;
473
474 #ifdef CONFIG_DNOTIFY
475         unsigned long           i_dnotify_mask; /* Directory notify events */
476         struct dnotify_struct   *i_dnotify; /* for directory notifications */
477 #endif
478
479 #ifdef CONFIG_INOTIFY
480         struct list_head        inotify_watches; /* watches on this inode */
481         struct semaphore        inotify_sem;    /* protects the watches list */
482 #endif
483
484         unsigned long           i_state;
485         unsigned long           dirtied_when;   /* jiffies of first dirtying */
486
487         unsigned int            i_flags;
488
489         atomic_t                i_writecount;
490         void                    *i_security;
491         union {
492                 void            *generic_ip;
493         } u;
494 #ifdef __NEED_I_SIZE_ORDERED
495         seqcount_t              i_size_seqcount;
496 #endif
497 };
498
499 /*
500  * NOTE: in a 32bit arch with a preemptable kernel and
501  * an UP compile the i_size_read/write must be atomic
502  * with respect to the local cpu (unlike with preempt disabled),
503  * but they don't need to be atomic with respect to other cpus like in
504  * true SMP (so they need either to either locally disable irq around
505  * the read or for example on x86 they can be still implemented as a
506  * cmpxchg8b without the need of the lock prefix). For SMP compiles
507  * and 64bit archs it makes no difference if preempt is enabled or not.
508  */
509 static inline loff_t i_size_read(struct inode *inode)
510 {
511 #if BITS_PER_LONG==32 && defined(CONFIG_SMP)
512         loff_t i_size;
513         unsigned int seq;
514
515         do {
516                 seq = read_seqcount_begin(&inode->i_size_seqcount);
517                 i_size = inode->i_size;
518         } while (read_seqcount_retry(&inode->i_size_seqcount, seq));
519         return i_size;
520 #elif BITS_PER_LONG==32 && defined(CONFIG_PREEMPT)
521         loff_t i_size;
522
523         preempt_disable();
524         i_size = inode->i_size;
525         preempt_enable();
526         return i_size;
527 #else
528         return inode->i_size;
529 #endif
530 }
531
532
533 static inline void i_size_write(struct inode *inode, loff_t i_size)
534 {
535 #if BITS_PER_LONG==32 && defined(CONFIG_SMP)
536         write_seqcount_begin(&inode->i_size_seqcount);
537         inode->i_size = i_size;
538         write_seqcount_end(&inode->i_size_seqcount);
539 #elif BITS_PER_LONG==32 && defined(CONFIG_PREEMPT)
540         preempt_disable();
541         inode->i_size = i_size;
542         preempt_enable();
543 #else
544         inode->i_size = i_size;
545 #endif
546 }
547
548 static inline unsigned iminor(struct inode *inode)
549 {
550         return MINOR(inode->i_rdev);
551 }
552
553 static inline unsigned imajor(struct inode *inode)
554 {
555         return MAJOR(inode->i_rdev);
556 }
557
558 extern struct block_device *I_BDEV(struct inode *inode);
559
560 struct fown_struct {
561         rwlock_t lock;          /* protects pid, uid, euid fields */
562         int pid;                /* pid or -pgrp where SIGIO should be sent */
563         uid_t uid, euid;        /* uid/euid of process setting the owner */
564         void *security;
565         int signum;             /* posix.1b rt signal to be delivered on IO */
566 };
567
568 /*
569  * Track a single file's readahead state
570  */
571 struct file_ra_state {
572         unsigned long start;            /* Current window */
573         unsigned long size;
574         unsigned long flags;            /* ra flags RA_FLAG_xxx*/
575         unsigned long cache_hit;        /* cache hit count*/
576         unsigned long prev_page;        /* Cache last read() position */
577         unsigned long ahead_start;      /* Ahead window */
578         unsigned long ahead_size;
579         unsigned long ra_pages;         /* Maximum readahead window */
580         unsigned long mmap_hit;         /* Cache hit stat for mmap accesses */
581         unsigned long mmap_miss;        /* Cache miss stat for mmap accesses */
582 };
583 #define RA_FLAG_MISS 0x01       /* a cache miss occured against this file */
584 #define RA_FLAG_INCACHE 0x02    /* file is already in cache */
585
586 struct file {
587         /*
588          * fu_list becomes invalid after file_free is called and queued via
589          * fu_rcuhead for RCU freeing
590          */
591         union {
592                 struct list_head        fu_list;
593                 struct rcu_head         fu_rcuhead;
594         } f_u;
595         struct dentry           *f_dentry;
596         struct vfsmount         *f_vfsmnt;
597         struct file_operations  *f_op;
598         atomic_t                f_count;
599         unsigned int            f_flags;
600         mode_t                  f_mode;
601         loff_t                  f_pos;
602         struct fown_struct      f_owner;
603         unsigned int            f_uid, f_gid;
604         struct file_ra_state    f_ra;
605
606         unsigned long           f_version;
607         void                    *f_security;
608
609         /* needed for tty driver, and maybe others */
610         void                    *private_data;
611
612 #ifdef CONFIG_EPOLL
613         /* Used by fs/eventpoll.c to link all the hooks to this file */
614         struct list_head        f_ep_links;
615         spinlock_t              f_ep_lock;
616 #endif /* #ifdef CONFIG_EPOLL */
617         struct address_space    *f_mapping;
618 };
619 extern spinlock_t files_lock;
620 #define file_list_lock() spin_lock(&files_lock);
621 #define file_list_unlock() spin_unlock(&files_lock);
622
623 #define get_file(x)     rcuref_inc(&(x)->f_count)
624 #define file_count(x)   atomic_read(&(x)->f_count)
625
626 #define MAX_NON_LFS     ((1UL<<31) - 1)
627
628 /* Page cache limit. The filesystems should put that into their s_maxbytes 
629    limits, otherwise bad things can happen in VM. */ 
630 #if BITS_PER_LONG==32
631 #define MAX_LFS_FILESIZE        (((u64)PAGE_CACHE_SIZE << (BITS_PER_LONG-1))-1) 
632 #elif BITS_PER_LONG==64
633 #define MAX_LFS_FILESIZE        0x7fffffffffffffffUL
634 #endif
635
636 #define FL_POSIX        1
637 #define FL_FLOCK        2
638 #define FL_ACCESS       8       /* not trying to lock, just looking */
639 #define FL_LOCKD        16      /* lock held by rpc.lockd */
640 #define FL_LEASE        32      /* lease held on this file */
641 #define FL_SLEEP        128     /* A blocking lock */
642
643 /*
644  * The POSIX file lock owner is determined by
645  * the "struct files_struct" in the thread group
646  * (or NULL for no owner - BSD locks).
647  *
648  * Lockd stuffs a "host" pointer into this.
649  */
650 typedef struct files_struct *fl_owner_t;
651
652 struct file_lock_operations {
653         void (*fl_insert)(struct file_lock *);  /* lock insertion callback */
654         void (*fl_remove)(struct file_lock *);  /* lock removal callback */
655         void (*fl_copy_lock)(struct file_lock *, struct file_lock *);
656         void (*fl_release_private)(struct file_lock *);
657 };
658
659 struct lock_manager_operations {
660         int (*fl_compare_owner)(struct file_lock *, struct file_lock *);
661         void (*fl_notify)(struct file_lock *);  /* unblock callback */
662         void (*fl_copy_lock)(struct file_lock *, struct file_lock *);
663         void (*fl_release_private)(struct file_lock *);
664         void (*fl_break)(struct file_lock *);
665         int (*fl_mylease)(struct file_lock *, struct file_lock *);
666         int (*fl_change)(struct file_lock **, int);
667 };
668
669 /* that will die - we need it for nfs_lock_info */
670 #include <linux/nfs_fs_i.h>
671
672 struct file_lock {
673         struct file_lock *fl_next;      /* singly linked list for this inode  */
674         struct list_head fl_link;       /* doubly linked list of all locks */
675         struct list_head fl_block;      /* circular list of blocked processes */
676         fl_owner_t fl_owner;
677         unsigned int fl_pid;
678         wait_queue_head_t fl_wait;
679         struct file *fl_file;
680         unsigned char fl_flags;
681         unsigned char fl_type;
682         loff_t fl_start;
683         loff_t fl_end;
684
685         struct fasync_struct *  fl_fasync; /* for lease break notifications */
686         unsigned long fl_break_time;    /* for nonblocking lease breaks */
687
688         struct file_lock_operations *fl_ops;    /* Callbacks for filesystems */
689         struct lock_manager_operations *fl_lmops;       /* Callbacks for lockmanagers */
690         union {
691                 struct nfs_lock_info    nfs_fl;
692                 struct nfs4_lock_info   nfs4_fl;
693         } fl_u;
694 };
695
696 /* The following constant reflects the upper bound of the file/locking space */
697 #ifndef OFFSET_MAX
698 #define INT_LIMIT(x)    (~((x)1 << (sizeof(x)*8 - 1)))
699 #define OFFSET_MAX      INT_LIMIT(loff_t)
700 #define OFFT_OFFSET_MAX INT_LIMIT(off_t)
701 #endif
702
703 extern struct list_head file_lock_list;
704
705 #include <linux/fcntl.h>
706
707 extern int fcntl_getlk(struct file *, struct flock __user *);
708 extern int fcntl_setlk(unsigned int, struct file *, unsigned int,
709                         struct flock __user *);
710
711 #if BITS_PER_LONG == 32
712 extern int fcntl_getlk64(struct file *, struct flock64 __user *);
713 extern int fcntl_setlk64(unsigned int, struct file *, unsigned int,
714                         struct flock64 __user *);
715 #endif
716
717 extern void send_sigio(struct fown_struct *fown, int fd, int band);
718 extern int fcntl_setlease(unsigned int fd, struct file *filp, long arg);
719 extern int fcntl_getlease(struct file *filp);
720
721 /* fs/locks.c */
722 extern void locks_init_lock(struct file_lock *);
723 extern void locks_copy_lock(struct file_lock *, struct file_lock *);
724 extern void locks_remove_posix(struct file *, fl_owner_t);
725 extern void locks_remove_flock(struct file *);
726 extern struct file_lock *posix_test_lock(struct file *, struct file_lock *);
727 extern int posix_lock_file(struct file *, struct file_lock *);
728 extern int posix_lock_file_wait(struct file *, struct file_lock *);
729 extern void posix_block_lock(struct file_lock *, struct file_lock *);
730 extern void posix_unblock_lock(struct file *, struct file_lock *);
731 extern int posix_locks_deadlock(struct file_lock *, struct file_lock *);
732 extern int flock_lock_file_wait(struct file *filp, struct file_lock *fl);
733 extern int __break_lease(struct inode *inode, unsigned int flags);
734 extern void lease_get_mtime(struct inode *, struct timespec *time);
735 extern int setlease(struct file *, long, struct file_lock **);
736 extern int lease_modify(struct file_lock **, int);
737 extern int lock_may_read(struct inode *, loff_t start, unsigned long count);
738 extern int lock_may_write(struct inode *, loff_t start, unsigned long count);
739 extern void steal_locks(fl_owner_t from);
740
741 struct fasync_struct {
742         int     magic;
743         int     fa_fd;
744         struct  fasync_struct   *fa_next; /* singly linked list */
745         struct  file            *fa_file;
746 };
747
748 #define FASYNC_MAGIC 0x4601
749
750 /* SMP safe fasync helpers: */
751 extern int fasync_helper(int, struct file *, int, struct fasync_struct **);
752 /* can be called from interrupts */
753 extern void kill_fasync(struct fasync_struct **, int, int);
754 /* only for net: no internal synchronization */
755 extern void __kill_fasync(struct fasync_struct *, int, int);
756
757 extern int f_setown(struct file *filp, unsigned long arg, int force);
758 extern void f_delown(struct file *filp);
759 extern int send_sigurg(struct fown_struct *fown);
760
761 /*
762  *      Umount options
763  */
764
765 #define MNT_FORCE       0x00000001      /* Attempt to forcibily umount */
766 #define MNT_DETACH      0x00000002      /* Just detach from the tree */
767 #define MNT_EXPIRE      0x00000004      /* Mark for expiry */
768
769 extern struct list_head super_blocks;
770 extern spinlock_t sb_lock;
771
772 #define sb_entry(list)  list_entry((list), struct super_block, s_list)
773 #define S_BIAS (1<<30)
774 struct super_block {
775         struct list_head        s_list;         /* Keep this first */
776         dev_t                   s_dev;          /* search index; _not_ kdev_t */
777         unsigned long           s_blocksize;
778         unsigned long           s_old_blocksize;
779         unsigned char           s_blocksize_bits;
780         unsigned char           s_dirt;
781         unsigned long long      s_maxbytes;     /* Max file size */
782         struct file_system_type *s_type;
783         struct super_operations *s_op;
784         struct dquot_operations *dq_op;
785         struct quotactl_ops     *s_qcop;
786         struct export_operations *s_export_op;
787         unsigned long           s_flags;
788         unsigned long           s_magic;
789         struct dentry           *s_root;
790         struct rw_semaphore     s_umount;
791         struct semaphore        s_lock;
792         int                     s_count;
793         int                     s_syncing;
794         int                     s_need_sync_fs;
795         atomic_t                s_active;
796         void                    *s_security;
797         struct xattr_handler    **s_xattr;
798
799         struct list_head        s_inodes;       /* all inodes */
800         struct list_head        s_dirty;        /* dirty inodes */
801         struct list_head        s_io;           /* parked for writeback */
802         struct hlist_head       s_anon;         /* anonymous dentries for (nfs) exporting */
803         struct list_head        s_files;
804
805         struct block_device     *s_bdev;
806         struct list_head        s_instances;
807         struct quota_info       s_dquot;        /* Diskquota specific options */
808
809         int                     s_frozen;
810         wait_queue_head_t       s_wait_unfrozen;
811
812         char s_id[32];                          /* Informational name */
813
814         void                    *s_fs_info;     /* Filesystem private info */
815
816         /*
817          * The next field is for VFS *only*. No filesystems have any business
818          * even looking at it. You had been warned.
819          */
820         struct semaphore s_vfs_rename_sem;      /* Kludge */
821
822         /* Granuality of c/m/atime in ns.
823            Cannot be worse than a second */
824         u32                s_time_gran;
825 };
826
827 extern struct timespec current_fs_time(struct super_block *sb);
828
829 /*
830  * Snapshotting support.
831  */
832 enum {
833         SB_UNFROZEN = 0,
834         SB_FREEZE_WRITE = 1,
835         SB_FREEZE_TRANS = 2,
836 };
837
838 #define vfs_check_frozen(sb, level) \
839         wait_event((sb)->s_wait_unfrozen, ((sb)->s_frozen < (level)))
840
841 static inline void get_fs_excl(void)
842 {
843         atomic_inc(&current->fs_excl);
844 }
845
846 static inline void put_fs_excl(void)
847 {
848         atomic_dec(&current->fs_excl);
849 }
850
851 static inline int has_fs_excl(void)
852 {
853         return atomic_read(&current->fs_excl);
854 }
855
856
857 /*
858  * Superblock locking.
859  */
860 static inline void lock_super(struct super_block * sb)
861 {
862         get_fs_excl();
863         down(&sb->s_lock);
864 }
865
866 static inline void unlock_super(struct super_block * sb)
867 {
868         put_fs_excl();
869         up(&sb->s_lock);
870 }
871
872 /*
873  * VFS helper functions..
874  */
875 extern int vfs_create(struct inode *, struct dentry *, int, struct nameidata *);
876 extern int vfs_mkdir(struct inode *, struct dentry *, int);
877 extern int vfs_mknod(struct inode *, struct dentry *, int, dev_t);
878 extern int vfs_symlink(struct inode *, struct dentry *, const char *, int);
879 extern int vfs_link(struct dentry *, struct inode *, struct dentry *);
880 extern int vfs_rmdir(struct inode *, struct dentry *);
881 extern int vfs_unlink(struct inode *, struct dentry *);
882 extern int vfs_rename(struct inode *, struct dentry *, struct inode *, struct dentry *);
883
884 /*
885  * VFS dentry helper functions.
886  */
887 extern void dentry_unhash(struct dentry *dentry);
888
889 /*
890  * File types
891  *
892  * NOTE! These match bits 12..15 of stat.st_mode
893  * (ie "(i_mode >> 12) & 15").
894  */
895 #define DT_UNKNOWN      0
896 #define DT_FIFO         1
897 #define DT_CHR          2
898 #define DT_DIR          4
899 #define DT_BLK          6
900 #define DT_REG          8
901 #define DT_LNK          10
902 #define DT_SOCK         12
903 #define DT_WHT          14
904
905 #define OSYNC_METADATA  (1<<0)
906 #define OSYNC_DATA      (1<<1)
907 #define OSYNC_INODE     (1<<2)
908 int generic_osync_inode(struct inode *, struct address_space *, int);
909
910 /*
911  * This is the "filldir" function type, used by readdir() to let
912  * the kernel specify what kind of dirent layout it wants to have.
913  * This allows the kernel to read directories into kernel space or
914  * to have different dirent layouts depending on the binary type.
915  */
916 typedef int (*filldir_t)(void *, const char *, int, loff_t, ino_t, unsigned);
917
918 struct block_device_operations {
919         int (*open) (struct inode *, struct file *);
920         int (*release) (struct inode *, struct file *);
921         int (*ioctl) (struct inode *, struct file *, unsigned, unsigned long);
922         long (*unlocked_ioctl) (struct file *, unsigned, unsigned long);
923         long (*compat_ioctl) (struct file *, unsigned, unsigned long);
924         int (*direct_access) (struct block_device *, sector_t, unsigned long *);
925         int (*media_changed) (struct gendisk *);
926         int (*revalidate_disk) (struct gendisk *);
927         struct module *owner;
928 };
929
930 /*
931  * "descriptor" for what we're up to with a read for sendfile().
932  * This allows us to use the same read code yet
933  * have multiple different users of the data that
934  * we read from a file.
935  *
936  * The simplest case just copies the data to user
937  * mode.
938  */
939 typedef struct {
940         size_t written;
941         size_t count;
942         union {
943                 char __user * buf;
944                 void *data;
945         } arg;
946         int error;
947 } read_descriptor_t;
948
949 typedef int (*read_actor_t)(read_descriptor_t *, struct page *, unsigned long, unsigned long);
950
951 /* These macros are for out of kernel modules to test that
952  * the kernel supports the unlocked_ioctl and compat_ioctl
953  * fields in struct file_operations. */
954 #define HAVE_COMPAT_IOCTL 1
955 #define HAVE_UNLOCKED_IOCTL 1
956
957 /*
958  * NOTE:
959  * read, write, poll, fsync, readv, writev, unlocked_ioctl and compat_ioctl
960  * can be called without the big kernel lock held in all filesystems.
961  */
962 struct file_operations {
963         struct module *owner;
964         loff_t (*llseek) (struct file *, loff_t, int);
965         ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
966         ssize_t (*aio_read) (struct kiocb *, char __user *, size_t, loff_t);
967         ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
968         ssize_t (*aio_write) (struct kiocb *, const char __user *, size_t, loff_t);
969         int (*readdir) (struct file *, void *, filldir_t);
970         unsigned int (*poll) (struct file *, struct poll_table_struct *);
971         int (*ioctl) (struct inode *, struct file *, unsigned int, unsigned long);
972         long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
973         long (*compat_ioctl) (struct file *, unsigned int, unsigned long);
974         int (*mmap) (struct file *, struct vm_area_struct *);
975         int (*open) (struct inode *, struct file *);
976         int (*flush) (struct file *);
977         int (*release) (struct inode *, struct file *);
978         int (*fsync) (struct file *, struct dentry *, int datasync);
979         int (*aio_fsync) (struct kiocb *, int datasync);
980         int (*fasync) (int, struct file *, int);
981         int (*lock) (struct file *, int, struct file_lock *);
982         ssize_t (*readv) (struct file *, const struct iovec *, unsigned long, loff_t *);
983         ssize_t (*writev) (struct file *, const struct iovec *, unsigned long, loff_t *);
984         ssize_t (*sendfile) (struct file *, loff_t *, size_t, read_actor_t, void *);
985         ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *, int);
986         unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
987         int (*check_flags)(int);
988         int (*dir_notify)(struct file *filp, unsigned long arg);
989         int (*flock) (struct file *, int, struct file_lock *);
990 };
991
992 struct inode_operations {
993         int (*create) (struct inode *,struct dentry *,int, struct nameidata *);
994         struct dentry * (*lookup) (struct inode *,struct dentry *, struct nameidata *);
995         int (*link) (struct dentry *,struct inode *,struct dentry *);
996         int (*unlink) (struct inode *,struct dentry *);
997         int (*symlink) (struct inode *,struct dentry *,const char *);
998         int (*mkdir) (struct inode *,struct dentry *,int);
999         int (*rmdir) (struct inode *,struct dentry *);
1000         int (*mknod) (struct inode *,struct dentry *,int,dev_t);
1001         int (*rename) (struct inode *, struct dentry *,
1002                         struct inode *, struct dentry *);
1003         int (*readlink) (struct dentry *, char __user *,int);
1004         void * (*follow_link) (struct dentry *, struct nameidata *);
1005         void (*put_link) (struct dentry *, struct nameidata *, void *);
1006         void (*truncate) (struct inode *);
1007         int (*permission) (struct inode *, int, struct nameidata *);
1008         int (*setattr) (struct dentry *, struct iattr *);
1009         int (*getattr) (struct vfsmount *mnt, struct dentry *, struct kstat *);
1010         int (*setxattr) (struct dentry *, const char *,const void *,size_t,int);
1011         ssize_t (*getxattr) (struct dentry *, const char *, void *, size_t);
1012         ssize_t (*listxattr) (struct dentry *, char *, size_t);
1013         int (*removexattr) (struct dentry *, const char *);
1014 };
1015
1016 struct seq_file;
1017
1018 extern ssize_t vfs_read(struct file *, char __user *, size_t, loff_t *);
1019 extern ssize_t vfs_write(struct file *, const char __user *, size_t, loff_t *);
1020 extern ssize_t vfs_readv(struct file *, const struct iovec __user *,
1021                 unsigned long, loff_t *);
1022 extern ssize_t vfs_writev(struct file *, const struct iovec __user *,
1023                 unsigned long, loff_t *);
1024
1025 /*
1026  * NOTE: write_inode, delete_inode, clear_inode, put_inode can be called
1027  * without the big kernel lock held in all filesystems.
1028  */
1029 struct super_operations {
1030         struct inode *(*alloc_inode)(struct super_block *sb);
1031         void (*destroy_inode)(struct inode *);
1032
1033         void (*read_inode) (struct inode *);
1034   
1035         void (*dirty_inode) (struct inode *);
1036         int (*write_inode) (struct inode *, int);
1037         void (*put_inode) (struct inode *);
1038         void (*drop_inode) (struct inode *);
1039         void (*delete_inode) (struct inode *);
1040         void (*put_super) (struct super_block *);
1041         void (*write_super) (struct super_block *);
1042         int (*sync_fs)(struct super_block *sb, int wait);
1043         void (*write_super_lockfs) (struct super_block *);
1044         void (*unlockfs) (struct super_block *);
1045         int (*statfs) (struct super_block *, struct kstatfs *);
1046         int (*remount_fs) (struct super_block *, int *, char *);
1047         void (*clear_inode) (struct inode *);
1048         void (*umount_begin) (struct super_block *);
1049
1050         int (*show_options)(struct seq_file *, struct vfsmount *);
1051
1052         ssize_t (*quota_read)(struct super_block *, int, char *, size_t, loff_t);
1053         ssize_t (*quota_write)(struct super_block *, int, const char *, size_t, loff_t);
1054 };
1055
1056 /* Inode state bits.  Protected by inode_lock. */
1057 #define I_DIRTY_SYNC            1 /* Not dirty enough for O_DATASYNC */
1058 #define I_DIRTY_DATASYNC        2 /* Data-related inode changes pending */
1059 #define I_DIRTY_PAGES           4 /* Data-related inode changes pending */
1060 #define __I_LOCK                3
1061 #define I_LOCK                  (1 << __I_LOCK)
1062 #define I_FREEING               16
1063 #define I_CLEAR                 32
1064 #define I_NEW                   64
1065 #define I_WILL_FREE             128
1066
1067 #define I_DIRTY (I_DIRTY_SYNC | I_DIRTY_DATASYNC | I_DIRTY_PAGES)
1068
1069 extern void __mark_inode_dirty(struct inode *, int);
1070 static inline void mark_inode_dirty(struct inode *inode)
1071 {
1072         __mark_inode_dirty(inode, I_DIRTY);
1073 }
1074
1075 static inline void mark_inode_dirty_sync(struct inode *inode)
1076 {
1077         __mark_inode_dirty(inode, I_DIRTY_SYNC);
1078 }
1079
1080 static inline void touch_atime(struct vfsmount *mnt, struct dentry *dentry)
1081 {
1082         /* per-mountpoint checks will go here */
1083         update_atime(dentry->d_inode);
1084 }
1085
1086 static inline void file_accessed(struct file *file)
1087 {
1088         if (!(file->f_flags & O_NOATIME))
1089                 touch_atime(file->f_vfsmnt, file->f_dentry);
1090 }
1091
1092 int sync_inode(struct inode *inode, struct writeback_control *wbc);
1093
1094 /**
1095  * struct export_operations - for nfsd to communicate with file systems
1096  * @decode_fh:      decode a file handle fragment and return a &struct dentry
1097  * @encode_fh:      encode a file handle fragment from a dentry
1098  * @get_name:       find the name for a given inode in a given directory
1099  * @get_parent:     find the parent of a given directory
1100  * @get_dentry:     find a dentry for the inode given a file handle sub-fragment
1101  * @find_exported_dentry:
1102  *      set by the exporting module to a standard helper function.
1103  *
1104  * Description:
1105  *    The export_operations structure provides a means for nfsd to communicate
1106  *    with a particular exported file system  - particularly enabling nfsd and
1107  *    the filesystem to co-operate when dealing with file handles.
1108  *
1109  *    export_operations contains two basic operation for dealing with file
1110  *    handles, decode_fh() and encode_fh(), and allows for some other
1111  *    operations to be defined which standard helper routines use to get
1112  *    specific information from the filesystem.
1113  *
1114  *    nfsd encodes information use to determine which filesystem a filehandle
1115  *    applies to in the initial part of the file handle.  The remainder, termed
1116  *    a file handle fragment, is controlled completely by the filesystem.  The
1117  *    standard helper routines assume that this fragment will contain one or
1118  *    two sub-fragments, one which identifies the file, and one which may be
1119  *    used to identify the (a) directory containing the file.
1120  *
1121  *    In some situations, nfsd needs to get a dentry which is connected into a
1122  *    specific part of the file tree.  To allow for this, it passes the
1123  *    function acceptable() together with a @context which can be used to see
1124  *    if the dentry is acceptable.  As there can be multiple dentrys for a
1125  *    given file, the filesystem should check each one for acceptability before
1126  *    looking for the next.  As soon as an acceptable one is found, it should
1127  *    be returned.
1128  *
1129  * decode_fh:
1130  *    @decode_fh is given a &struct super_block (@sb), a file handle fragment
1131  *    (@fh, @fh_len) and an acceptability testing function (@acceptable,
1132  *    @context).  It should return a &struct dentry which refers to the same
1133  *    file that the file handle fragment refers to,  and which passes the
1134  *    acceptability test.  If it cannot, it should return a %NULL pointer if
1135  *    the file was found but no acceptable &dentries were available, or a
1136  *    %ERR_PTR error code indicating why it couldn't be found (e.g. %ENOENT or
1137  *    %ENOMEM).
1138  *
1139  * encode_fh:
1140  *    @encode_fh should store in the file handle fragment @fh (using at most
1141  *    @max_len bytes) information that can be used by @decode_fh to recover the
1142  *    file refered to by the &struct dentry @de.  If the @connectable flag is
1143  *    set, the encode_fh() should store sufficient information so that a good
1144  *    attempt can be made to find not only the file but also it's place in the
1145  *    filesystem.   This typically means storing a reference to de->d_parent in
1146  *    the filehandle fragment.  encode_fh() should return the number of bytes
1147  *    stored or a negative error code such as %-ENOSPC
1148  *
1149  * get_name:
1150  *    @get_name should find a name for the given @child in the given @parent
1151  *    directory.  The name should be stored in the @name (with the
1152  *    understanding that it is already pointing to a a %NAME_MAX+1 sized
1153  *    buffer.   get_name() should return %0 on success, a negative error code
1154  *    or error.  @get_name will be called without @parent->i_sem held.
1155  *
1156  * get_parent:
1157  *    @get_parent should find the parent directory for the given @child which
1158  *    is also a directory.  In the event that it cannot be found, or storage
1159  *    space cannot be allocated, a %ERR_PTR should be returned.
1160  *
1161  * get_dentry:
1162  *    Given a &super_block (@sb) and a pointer to a file-system specific inode
1163  *    identifier, possibly an inode number, (@inump) get_dentry() should find
1164  *    the identified inode and return a dentry for that inode.  Any suitable
1165  *    dentry can be returned including, if necessary, a new dentry created with
1166  *    d_alloc_root.  The caller can then find any other extant dentrys by
1167  *    following the d_alias links.  If a new dentry was created using
1168  *    d_alloc_root, DCACHE_NFSD_DISCONNECTED should be set, and the dentry
1169  *    should be d_rehash()ed.
1170  *
1171  *    If the inode cannot be found, either a %NULL pointer or an %ERR_PTR code
1172  *    can be returned.  The @inump will be whatever was passed to
1173  *    nfsd_find_fh_dentry() in either the @obj or @parent parameters.
1174  *
1175  * Locking rules:
1176  *    get_parent is called with child->d_inode->i_sem down
1177  *    get_name is not (which is possibly inconsistent)
1178  */
1179
1180 struct export_operations {
1181         struct dentry *(*decode_fh)(struct super_block *sb, __u32 *fh, int fh_len, int fh_type,
1182                          int (*acceptable)(void *context, struct dentry *de),
1183                          void *context);
1184         int (*encode_fh)(struct dentry *de, __u32 *fh, int *max_len,
1185                          int connectable);
1186
1187         /* the following are only called from the filesystem itself */
1188         int (*get_name)(struct dentry *parent, char *name,
1189                         struct dentry *child);
1190         struct dentry * (*get_parent)(struct dentry *child);
1191         struct dentry * (*get_dentry)(struct super_block *sb, void *inump);
1192
1193         /* This is set by the exporting module to a standard helper */
1194         struct dentry * (*find_exported_dentry)(
1195                 struct super_block *sb, void *obj, void *parent,
1196                 int (*acceptable)(void *context, struct dentry *de),
1197                 void *context);
1198
1199
1200 };
1201
1202 extern struct dentry *
1203 find_exported_dentry(struct super_block *sb, void *obj, void *parent,
1204                      int (*acceptable)(void *context, struct dentry *de),
1205                      void *context);
1206
1207 struct file_system_type {
1208         const char *name;
1209         int fs_flags;
1210         struct super_block *(*get_sb) (struct file_system_type *, int,
1211                                        const char *, void *);
1212         void (*kill_sb) (struct super_block *);
1213         struct module *owner;
1214         struct file_system_type * next;
1215         struct list_head fs_supers;
1216 };
1217
1218 struct super_block *get_sb_bdev(struct file_system_type *fs_type,
1219         int flags, const char *dev_name, void *data,
1220         int (*fill_super)(struct super_block *, void *, int));
1221 struct super_block *get_sb_single(struct file_system_type *fs_type,
1222         int flags, void *data,
1223         int (*fill_super)(struct super_block *, void *, int));
1224 struct super_block *get_sb_nodev(struct file_system_type *fs_type,
1225         int flags, void *data,
1226         int (*fill_super)(struct super_block *, void *, int));
1227 void generic_shutdown_super(struct super_block *sb);
1228 void kill_block_super(struct super_block *sb);
1229 void kill_anon_super(struct super_block *sb);
1230 void kill_litter_super(struct super_block *sb);
1231 void deactivate_super(struct super_block *sb);
1232 int set_anon_super(struct super_block *s, void *data);
1233 struct super_block *sget(struct file_system_type *type,
1234                         int (*test)(struct super_block *,void *),
1235                         int (*set)(struct super_block *,void *),
1236                         void *data);
1237 struct super_block *get_sb_pseudo(struct file_system_type *, char *,
1238                         struct super_operations *ops, unsigned long);
1239 int __put_super(struct super_block *sb);
1240 int __put_super_and_need_restart(struct super_block *sb);
1241 void unnamed_dev_init(void);
1242
1243 /* Alas, no aliases. Too much hassle with bringing module.h everywhere */
1244 #define fops_get(fops) \
1245         (((fops) && try_module_get((fops)->owner) ? (fops) : NULL))
1246 #define fops_put(fops) \
1247         do { if (fops) module_put((fops)->owner); } while(0)
1248
1249 extern int register_filesystem(struct file_system_type *);
1250 extern int unregister_filesystem(struct file_system_type *);
1251 extern struct vfsmount *kern_mount(struct file_system_type *);
1252 extern int may_umount_tree(struct vfsmount *);
1253 extern int may_umount(struct vfsmount *);
1254 extern void umount_tree(struct vfsmount *, int, struct list_head *);
1255 extern void release_mounts(struct list_head *);
1256 extern long do_mount(char *, char *, char *, unsigned long, void *);
1257 extern struct vfsmount *copy_tree(struct vfsmount *, struct dentry *, int);
1258 extern void mnt_set_mountpoint(struct vfsmount *, struct dentry *,
1259                                   struct vfsmount *);
1260
1261 extern int vfs_statfs(struct super_block *, struct kstatfs *);
1262
1263 #define FLOCK_VERIFY_READ  1
1264 #define FLOCK_VERIFY_WRITE 2
1265
1266 extern int locks_mandatory_locked(struct inode *);
1267 extern int locks_mandatory_area(int, struct inode *, struct file *, loff_t, size_t);
1268
1269 /*
1270  * Candidates for mandatory locking have the setgid bit set
1271  * but no group execute bit -  an otherwise meaningless combination.
1272  */
1273 #define MANDATORY_LOCK(inode) \
1274         (IS_MANDLOCK(inode) && ((inode)->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID)
1275
1276 static inline int locks_verify_locked(struct inode *inode)
1277 {
1278         if (MANDATORY_LOCK(inode))
1279                 return locks_mandatory_locked(inode);
1280         return 0;
1281 }
1282
1283 extern int rw_verify_area(int, struct file *, loff_t *, size_t);
1284
1285 static inline int locks_verify_truncate(struct inode *inode,
1286                                     struct file *filp,
1287                                     loff_t size)
1288 {
1289         if (inode->i_flock && MANDATORY_LOCK(inode))
1290                 return locks_mandatory_area(
1291                         FLOCK_VERIFY_WRITE, inode, filp,
1292                         size < inode->i_size ? size : inode->i_size,
1293                         (size < inode->i_size ? inode->i_size - size
1294                          : size - inode->i_size)
1295                 );
1296         return 0;
1297 }
1298
1299 static inline int break_lease(struct inode *inode, unsigned int mode)
1300 {
1301         if (inode->i_flock)
1302                 return __break_lease(inode, mode);
1303         return 0;
1304 }
1305
1306 /* fs/open.c */
1307
1308 extern int do_truncate(struct dentry *, loff_t start, struct file *filp);
1309 extern long do_sys_open(const char __user *filename, int flags, int mode);
1310 extern struct file *filp_open(const char *, int, int);
1311 extern struct file * dentry_open(struct dentry *, struct vfsmount *, int);
1312 extern int filp_close(struct file *, fl_owner_t id);
1313 extern char * getname(const char __user *);
1314
1315 /* fs/dcache.c */
1316 extern void __init vfs_caches_init_early(void);
1317 extern void __init vfs_caches_init(unsigned long);
1318
1319 #define __getname()     kmem_cache_alloc(names_cachep, SLAB_KERNEL)
1320 #define __putname(name) kmem_cache_free(names_cachep, (void *)(name))
1321 #ifndef CONFIG_AUDITSYSCALL
1322 #define putname(name)   __putname(name)
1323 #else
1324 extern void putname(const char *name);
1325 #endif
1326
1327 extern int register_blkdev(unsigned int, const char *);
1328 extern int unregister_blkdev(unsigned int, const char *);
1329 extern struct block_device *bdget(dev_t);
1330 extern void bd_set_size(struct block_device *, loff_t size);
1331 extern void bd_forget(struct inode *inode);
1332 extern void bdput(struct block_device *);
1333 extern struct block_device *open_by_devnum(dev_t, unsigned);
1334 extern struct file_operations def_blk_fops;
1335 extern struct address_space_operations def_blk_aops;
1336 extern struct file_operations def_chr_fops;
1337 extern struct file_operations bad_sock_fops;
1338 extern struct file_operations def_fifo_fops;
1339 extern int ioctl_by_bdev(struct block_device *, unsigned, unsigned long);
1340 extern int blkdev_ioctl(struct inode *, struct file *, unsigned, unsigned long);
1341 extern long compat_blkdev_ioctl(struct file *, unsigned, unsigned long);
1342 extern int blkdev_get(struct block_device *, mode_t, unsigned);
1343 extern int blkdev_put(struct block_device *);
1344 extern int bd_claim(struct block_device *, void *);
1345 extern void bd_release(struct block_device *);
1346
1347 /* fs/char_dev.c */
1348 extern int alloc_chrdev_region(dev_t *, unsigned, unsigned, const char *);
1349 extern int register_chrdev_region(dev_t, unsigned, const char *);
1350 extern int register_chrdev(unsigned int, const char *,
1351                            struct file_operations *);
1352 extern int unregister_chrdev(unsigned int, const char *);
1353 extern void unregister_chrdev_region(dev_t, unsigned);
1354 extern int chrdev_open(struct inode *, struct file *);
1355
1356 /* fs/block_dev.c */
1357 #define BDEVNAME_SIZE   32      /* Largest string for a blockdev identifier */
1358 extern const char *__bdevname(dev_t, char *buffer);
1359 extern const char *bdevname(struct block_device *bdev, char *buffer);
1360 extern struct block_device *lookup_bdev(const char *);
1361 extern struct block_device *open_bdev_excl(const char *, int, void *);
1362 extern void close_bdev_excl(struct block_device *);
1363
1364 extern void init_special_inode(struct inode *, umode_t, dev_t);
1365
1366 /* Invalid inode operations -- fs/bad_inode.c */
1367 extern void make_bad_inode(struct inode *);
1368 extern int is_bad_inode(struct inode *);
1369
1370 extern struct file_operations read_fifo_fops;
1371 extern struct file_operations write_fifo_fops;
1372 extern struct file_operations rdwr_fifo_fops;
1373 extern struct file_operations read_pipe_fops;
1374 extern struct file_operations write_pipe_fops;
1375 extern struct file_operations rdwr_pipe_fops;
1376
1377 extern int fs_may_remount_ro(struct super_block *);
1378
1379 /*
1380  * return READ, READA, or WRITE
1381  */
1382 #define bio_rw(bio)             ((bio)->bi_rw & (RW_MASK | RWA_MASK))
1383
1384 /*
1385  * return data direction, READ or WRITE
1386  */
1387 #define bio_data_dir(bio)       ((bio)->bi_rw & 1)
1388
1389 extern int check_disk_change(struct block_device *);
1390 extern int invalidate_inodes(struct super_block *);
1391 extern int __invalidate_device(struct block_device *);
1392 extern int invalidate_partition(struct gendisk *, int);
1393 unsigned long invalidate_mapping_pages(struct address_space *mapping,
1394                                         pgoff_t start, pgoff_t end);
1395 unsigned long invalidate_inode_pages(struct address_space *mapping);
1396 static inline void invalidate_remote_inode(struct inode *inode)
1397 {
1398         if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1399             S_ISLNK(inode->i_mode))
1400                 invalidate_inode_pages(inode->i_mapping);
1401 }
1402 extern int invalidate_inode_pages2(struct address_space *mapping);
1403 extern int invalidate_inode_pages2_range(struct address_space *mapping,
1404                                          pgoff_t start, pgoff_t end);
1405 extern int write_inode_now(struct inode *, int);
1406 extern int filemap_fdatawrite(struct address_space *);
1407 extern int filemap_flush(struct address_space *);
1408 extern int filemap_fdatawait(struct address_space *);
1409 extern int filemap_write_and_wait(struct address_space *mapping);
1410 extern int filemap_write_and_wait_range(struct address_space *mapping,
1411                                         loff_t lstart, loff_t lend);
1412 extern void sync_supers(void);
1413 extern void sync_filesystems(int wait);
1414 extern void emergency_sync(void);
1415 extern void emergency_remount(void);
1416 extern int do_remount_sb(struct super_block *sb, int flags,
1417                          void *data, int force);
1418 extern sector_t bmap(struct inode *, sector_t);
1419 extern int notify_change(struct dentry *, struct iattr *);
1420 extern int permission(struct inode *, int, struct nameidata *);
1421 extern int generic_permission(struct inode *, int,
1422                 int (*check_acl)(struct inode *, int));
1423
1424 extern int get_write_access(struct inode *);
1425 extern int deny_write_access(struct file *);
1426 static inline void put_write_access(struct inode * inode)
1427 {
1428         atomic_dec(&inode->i_writecount);
1429 }
1430 static inline void allow_write_access(struct file *file)
1431 {
1432         if (file)
1433                 atomic_inc(&file->f_dentry->d_inode->i_writecount);
1434 }
1435 extern int do_pipe(int *);
1436
1437 extern int open_namei(const char *, int, int, struct nameidata *);
1438 extern int may_open(struct nameidata *, int, int);
1439
1440 extern int kernel_read(struct file *, unsigned long, char *, unsigned long);
1441 extern struct file * open_exec(const char *);
1442  
1443 /* fs/dcache.c -- generic fs support functions */
1444 extern int is_subdir(struct dentry *, struct dentry *);
1445 extern ino_t find_inode_number(struct dentry *, struct qstr *);
1446
1447 #include <linux/err.h>
1448
1449 /* needed for stackable file system support */
1450 extern loff_t default_llseek(struct file *file, loff_t offset, int origin);
1451
1452 extern loff_t vfs_llseek(struct file *file, loff_t offset, int origin);
1453
1454 extern void inode_init_once(struct inode *);
1455 extern void iput(struct inode *);
1456 extern struct inode * igrab(struct inode *);
1457 extern ino_t iunique(struct super_block *, ino_t);
1458 extern int inode_needs_sync(struct inode *inode);
1459 extern void generic_delete_inode(struct inode *inode);
1460 extern void generic_drop_inode(struct inode *inode);
1461
1462 extern struct inode *ilookup5_nowait(struct super_block *sb,
1463                 unsigned long hashval, int (*test)(struct inode *, void *),
1464                 void *data);
1465 extern struct inode *ilookup5(struct super_block *sb, unsigned long hashval,
1466                 int (*test)(struct inode *, void *), void *data);
1467 extern struct inode *ilookup(struct super_block *sb, unsigned long ino);
1468
1469 extern struct inode * iget5_locked(struct super_block *, unsigned long, int (*test)(struct inode *, void *), int (*set)(struct inode *, void *), void *);
1470 extern struct inode * iget_locked(struct super_block *, unsigned long);
1471 extern void unlock_new_inode(struct inode *);
1472
1473 static inline struct inode *iget(struct super_block *sb, unsigned long ino)
1474 {
1475         struct inode *inode = iget_locked(sb, ino);
1476         
1477         if (inode && (inode->i_state & I_NEW)) {
1478                 sb->s_op->read_inode(inode);
1479                 unlock_new_inode(inode);
1480         }
1481
1482         return inode;
1483 }
1484
1485 extern void __iget(struct inode * inode);
1486 extern void clear_inode(struct inode *);
1487 extern void destroy_inode(struct inode *);
1488 extern struct inode *new_inode(struct super_block *);
1489 extern int remove_suid(struct dentry *);
1490 extern void remove_dquot_ref(struct super_block *, int, struct list_head *);
1491 extern struct semaphore iprune_sem;
1492
1493 extern void __insert_inode_hash(struct inode *, unsigned long hashval);
1494 extern void remove_inode_hash(struct inode *);
1495 static inline void insert_inode_hash(struct inode *inode) {
1496         __insert_inode_hash(inode, inode->i_ino);
1497 }
1498
1499 extern struct file * get_empty_filp(void);
1500 extern void file_move(struct file *f, struct list_head *list);
1501 extern void file_kill(struct file *f);
1502 struct bio;
1503 extern void submit_bio(int, struct bio *);
1504 extern int bdev_read_only(struct block_device *);
1505 extern int set_blocksize(struct block_device *, int);
1506 extern int sb_set_blocksize(struct super_block *, int);
1507 extern int sb_min_blocksize(struct super_block *, int);
1508
1509 extern int generic_file_mmap(struct file *, struct vm_area_struct *);
1510 extern int generic_file_readonly_mmap(struct file *, struct vm_area_struct *);
1511 extern int file_read_actor(read_descriptor_t * desc, struct page *page, unsigned long offset, unsigned long size);
1512 extern int file_send_actor(read_descriptor_t * desc, struct page *page, unsigned long offset, unsigned long size);
1513 extern ssize_t generic_file_read(struct file *, char __user *, size_t, loff_t *);
1514 int generic_write_checks(struct file *file, loff_t *pos, size_t *count, int isblk);
1515 extern ssize_t generic_file_write(struct file *, const char __user *, size_t, loff_t *);
1516 extern ssize_t generic_file_aio_read(struct kiocb *, char __user *, size_t, loff_t);
1517 extern ssize_t __generic_file_aio_read(struct kiocb *, const struct iovec *, unsigned long, loff_t *);
1518 extern ssize_t generic_file_aio_write(struct kiocb *, const char __user *, size_t, loff_t);
1519 extern ssize_t generic_file_aio_write_nolock(struct kiocb *, const struct iovec *,
1520                 unsigned long, loff_t *);
1521 extern ssize_t generic_file_direct_write(struct kiocb *, const struct iovec *,
1522                 unsigned long *, loff_t, loff_t *, size_t, size_t);
1523 extern ssize_t generic_file_buffered_write(struct kiocb *, const struct iovec *,
1524                 unsigned long, loff_t, loff_t *, size_t, ssize_t);
1525 extern ssize_t do_sync_read(struct file *filp, char __user *buf, size_t len, loff_t *ppos);
1526 extern ssize_t do_sync_write(struct file *filp, const char __user *buf, size_t len, loff_t *ppos);
1527 ssize_t generic_file_write_nolock(struct file *file, const struct iovec *iov,
1528                                 unsigned long nr_segs, loff_t *ppos);
1529 extern ssize_t generic_file_sendfile(struct file *, loff_t *, size_t, read_actor_t, void *);
1530 extern void do_generic_mapping_read(struct address_space *mapping,
1531                                     struct file_ra_state *, struct file *,
1532                                     loff_t *, read_descriptor_t *, read_actor_t);
1533 extern void
1534 file_ra_state_init(struct file_ra_state *ra, struct address_space *mapping);
1535 extern ssize_t generic_file_readv(struct file *filp, const struct iovec *iov, 
1536         unsigned long nr_segs, loff_t *ppos);
1537 ssize_t generic_file_writev(struct file *filp, const struct iovec *iov, 
1538                         unsigned long nr_segs, loff_t *ppos);
1539 extern loff_t no_llseek(struct file *file, loff_t offset, int origin);
1540 extern loff_t generic_file_llseek(struct file *file, loff_t offset, int origin);
1541 extern loff_t remote_llseek(struct file *file, loff_t offset, int origin);
1542 extern int generic_file_open(struct inode * inode, struct file * filp);
1543 extern int nonseekable_open(struct inode * inode, struct file * filp);
1544
1545 #ifdef CONFIG_FS_XIP
1546 extern ssize_t xip_file_read(struct file *filp, char __user *buf, size_t len,
1547                              loff_t *ppos);
1548 extern ssize_t xip_file_sendfile(struct file *in_file, loff_t *ppos,
1549                                  size_t count, read_actor_t actor,
1550                                  void *target);
1551 extern int xip_file_mmap(struct file * file, struct vm_area_struct * vma);
1552 extern ssize_t xip_file_write(struct file *filp, const char __user *buf,
1553                               size_t len, loff_t *ppos);
1554 extern int xip_truncate_page(struct address_space *mapping, loff_t from);
1555 #else
1556 static inline int xip_truncate_page(struct address_space *mapping, loff_t from)
1557 {
1558         return 0;
1559 }
1560 #endif
1561
1562 static inline void do_generic_file_read(struct file * filp, loff_t *ppos,
1563                                         read_descriptor_t * desc,
1564                                         read_actor_t actor)
1565 {
1566         do_generic_mapping_read(filp->f_mapping,
1567                                 &filp->f_ra,
1568                                 filp,
1569                                 ppos,
1570                                 desc,
1571                                 actor);
1572 }
1573
1574 ssize_t __blockdev_direct_IO(int rw, struct kiocb *iocb, struct inode *inode,
1575         struct block_device *bdev, const struct iovec *iov, loff_t offset,
1576         unsigned long nr_segs, get_blocks_t get_blocks, dio_iodone_t end_io,
1577         int lock_type);
1578
1579 enum {
1580         DIO_LOCKING = 1, /* need locking between buffered and direct access */
1581         DIO_NO_LOCKING,  /* bdev; no locking at all between buffered/direct */
1582         DIO_OWN_LOCKING, /* filesystem locks buffered and direct internally */
1583 };
1584
1585 static inline ssize_t blockdev_direct_IO(int rw, struct kiocb *iocb,
1586         struct inode *inode, struct block_device *bdev, const struct iovec *iov,
1587         loff_t offset, unsigned long nr_segs, get_blocks_t get_blocks,
1588         dio_iodone_t end_io)
1589 {
1590         return __blockdev_direct_IO(rw, iocb, inode, bdev, iov, offset,
1591                                 nr_segs, get_blocks, end_io, DIO_LOCKING);
1592 }
1593
1594 static inline ssize_t blockdev_direct_IO_no_locking(int rw, struct kiocb *iocb,
1595         struct inode *inode, struct block_device *bdev, const struct iovec *iov,
1596         loff_t offset, unsigned long nr_segs, get_blocks_t get_blocks,
1597         dio_iodone_t end_io)
1598 {
1599         return __blockdev_direct_IO(rw, iocb, inode, bdev, iov, offset,
1600                                 nr_segs, get_blocks, end_io, DIO_NO_LOCKING);
1601 }
1602
1603 static inline ssize_t blockdev_direct_IO_own_locking(int rw, struct kiocb *iocb,
1604         struct inode *inode, struct block_device *bdev, const struct iovec *iov,
1605         loff_t offset, unsigned long nr_segs, get_blocks_t get_blocks,
1606         dio_iodone_t end_io)
1607 {
1608         return __blockdev_direct_IO(rw, iocb, inode, bdev, iov, offset,
1609                                 nr_segs, get_blocks, end_io, DIO_OWN_LOCKING);
1610 }
1611
1612 extern struct file_operations generic_ro_fops;
1613
1614 #define special_file(m) (S_ISCHR(m)||S_ISBLK(m)||S_ISFIFO(m)||S_ISSOCK(m))
1615
1616 extern int vfs_readlink(struct dentry *, char __user *, int, const char *);
1617 extern int vfs_follow_link(struct nameidata *, const char *);
1618 extern int page_readlink(struct dentry *, char __user *, int);
1619 extern void *page_follow_link_light(struct dentry *, struct nameidata *);
1620 extern void page_put_link(struct dentry *, struct nameidata *, void *);
1621 extern int page_symlink(struct inode *inode, const char *symname, int len);
1622 extern struct inode_operations page_symlink_inode_operations;
1623 extern int generic_readlink(struct dentry *, char __user *, int);
1624 extern void generic_fillattr(struct inode *, struct kstat *);
1625 extern int vfs_getattr(struct vfsmount *, struct dentry *, struct kstat *);
1626 void inode_add_bytes(struct inode *inode, loff_t bytes);
1627 void inode_sub_bytes(struct inode *inode, loff_t bytes);
1628 loff_t inode_get_bytes(struct inode *inode);
1629 void inode_set_bytes(struct inode *inode, loff_t bytes);
1630
1631 extern int vfs_readdir(struct file *, filldir_t, void *);
1632
1633 extern int vfs_stat(char __user *, struct kstat *);
1634 extern int vfs_lstat(char __user *, struct kstat *);
1635 extern int vfs_fstat(unsigned int, struct kstat *);
1636
1637 extern int vfs_ioctl(struct file *, unsigned int, unsigned int, unsigned long);
1638
1639 extern struct file_system_type *get_fs_type(const char *name);
1640 extern struct super_block *get_super(struct block_device *);
1641 extern struct super_block *user_get_super(dev_t);
1642 extern void drop_super(struct super_block *sb);
1643
1644 extern int dcache_dir_open(struct inode *, struct file *);
1645 extern int dcache_dir_close(struct inode *, struct file *);
1646 extern loff_t dcache_dir_lseek(struct file *, loff_t, int);
1647 extern int dcache_readdir(struct file *, void *, filldir_t);
1648 extern int simple_getattr(struct vfsmount *, struct dentry *, struct kstat *);
1649 extern int simple_statfs(struct super_block *, struct kstatfs *);
1650 extern int simple_link(struct dentry *, struct inode *, struct dentry *);
1651 extern int simple_unlink(struct inode *, struct dentry *);
1652 extern int simple_rmdir(struct inode *, struct dentry *);
1653 extern int simple_rename(struct inode *, struct dentry *, struct inode *, struct dentry *);
1654 extern int simple_sync_file(struct file *, struct dentry *, int);
1655 extern int simple_empty(struct dentry *);
1656 extern int simple_readpage(struct file *file, struct page *page);
1657 extern int simple_prepare_write(struct file *file, struct page *page,
1658                         unsigned offset, unsigned to);
1659 extern int simple_commit_write(struct file *file, struct page *page,
1660                                 unsigned offset, unsigned to);
1661
1662 extern struct dentry *simple_lookup(struct inode *, struct dentry *, struct nameidata *);
1663 extern ssize_t generic_read_dir(struct file *, char __user *, size_t, loff_t *);
1664 extern struct file_operations simple_dir_operations;
1665 extern struct inode_operations simple_dir_inode_operations;
1666 struct tree_descr { char *name; struct file_operations *ops; int mode; };
1667 struct dentry *d_alloc_name(struct dentry *, const char *);
1668 extern int simple_fill_super(struct super_block *, int, struct tree_descr *);
1669 extern int simple_pin_fs(char *name, struct vfsmount **mount, int *count);
1670 extern void simple_release_fs(struct vfsmount **mount, int *count);
1671
1672 extern ssize_t simple_read_from_buffer(void __user *, size_t, loff_t *, const void *, size_t);
1673
1674 extern int inode_change_ok(struct inode *, struct iattr *);
1675 extern int __must_check inode_setattr(struct inode *, struct iattr *);
1676
1677 extern void inode_update_time(struct inode *inode, int ctime_too);
1678
1679 static inline ino_t parent_ino(struct dentry *dentry)
1680 {
1681         ino_t res;
1682
1683         spin_lock(&dentry->d_lock);
1684         res = dentry->d_parent->d_inode->i_ino;
1685         spin_unlock(&dentry->d_lock);
1686         return res;
1687 }
1688
1689 /* kernel/fork.c */
1690 extern int unshare_files(void);
1691
1692 /* Transaction based IO helpers */
1693
1694 /*
1695  * An argresp is stored in an allocated page and holds the
1696  * size of the argument or response, along with its content
1697  */
1698 struct simple_transaction_argresp {
1699         ssize_t size;
1700         char data[0];
1701 };
1702
1703 #define SIMPLE_TRANSACTION_LIMIT (PAGE_SIZE - sizeof(struct simple_transaction_argresp))
1704
1705 char *simple_transaction_get(struct file *file, const char __user *buf,
1706                                 size_t size);
1707 ssize_t simple_transaction_read(struct file *file, char __user *buf,
1708                                 size_t size, loff_t *pos);
1709 int simple_transaction_release(struct inode *inode, struct file *file);
1710
1711 static inline void simple_transaction_set(struct file *file, size_t n)
1712 {
1713         struct simple_transaction_argresp *ar = file->private_data;
1714
1715         BUG_ON(n > SIMPLE_TRANSACTION_LIMIT);
1716
1717         /*
1718          * The barrier ensures that ar->size will really remain zero until
1719          * ar->data is ready for reading.
1720          */
1721         smp_mb();
1722         ar->size = n;
1723 }
1724
1725 /*
1726  * simple attribute files
1727  *
1728  * These attributes behave similar to those in sysfs:
1729  *
1730  * Writing to an attribute immediately sets a value, an open file can be
1731  * written to multiple times.
1732  *
1733  * Reading from an attribute creates a buffer from the value that might get
1734  * read with multiple read calls. When the attribute has been read
1735  * completely, no further read calls are possible until the file is opened
1736  * again.
1737  *
1738  * All attributes contain a text representation of a numeric value
1739  * that are accessed with the get() and set() functions.
1740  */
1741 #define DEFINE_SIMPLE_ATTRIBUTE(__fops, __get, __set, __fmt)            \
1742 static int __fops ## _open(struct inode *inode, struct file *file)      \
1743 {                                                                       \
1744         __simple_attr_check_format(__fmt, 0ull);                        \
1745         return simple_attr_open(inode, file, __get, __set, __fmt);      \
1746 }                                                                       \
1747 static struct file_operations __fops = {                                \
1748         .owner   = THIS_MODULE,                                         \
1749         .open    = __fops ## _open,                                     \
1750         .release = simple_attr_close,                                   \
1751         .read    = simple_attr_read,                                    \
1752         .write   = simple_attr_write,                                   \
1753 };
1754
1755 static inline void __attribute__((format(printf, 1, 2)))
1756 __simple_attr_check_format(const char *fmt, ...)
1757 {
1758         /* don't do anything, just let the compiler check the arguments; */
1759 }
1760
1761 int simple_attr_open(struct inode *inode, struct file *file,
1762                      u64 (*get)(void *), void (*set)(void *, u64),
1763                      const char *fmt);
1764 int simple_attr_close(struct inode *inode, struct file *file);
1765 ssize_t simple_attr_read(struct file *file, char __user *buf,
1766                          size_t len, loff_t *ppos);
1767 ssize_t simple_attr_write(struct file *file, const char __user *buf,
1768                           size_t len, loff_t *ppos);
1769
1770
1771 #ifdef CONFIG_SECURITY
1772 static inline char *alloc_secdata(void)
1773 {
1774         return (char *)get_zeroed_page(GFP_KERNEL);
1775 }
1776
1777 static inline void free_secdata(void *secdata)
1778 {
1779         free_page((unsigned long)secdata);
1780 }
1781 #else
1782 static inline char *alloc_secdata(void)
1783 {
1784         return (char *)1;
1785 }
1786
1787 static inline void free_secdata(void *secdata)
1788 { }
1789 #endif  /* CONFIG_SECURITY */
1790
1791 #endif /* __KERNEL__ */
1792 #endif /* _LINUX_FS_H */