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