fs.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:53k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_FS_H
  2. #define _LINUX_FS_H
  3. /*
  4.  * This file has definitions for some important file table
  5.  * structures etc.
  6.  */
  7. #include <linux/config.h>
  8. #include <linux/linkage.h>
  9. #include <linux/limits.h>
  10. #include <linux/wait.h>
  11. #include <linux/types.h>
  12. #include <linux/vfs.h>
  13. #include <linux/net.h>
  14. #include <linux/kdev_t.h>
  15. #include <linux/ioctl.h>
  16. #include <linux/list.h>
  17. #include <linux/dcache.h>
  18. #include <linux/stat.h>
  19. #include <linux/cache.h>
  20. #include <linux/stddef.h>
  21. #include <linux/string.h>
  22. #include <asm/atomic.h>
  23. #include <asm/bitops.h>
  24. struct poll_table_struct;
  25. /*
  26.  * It's silly to have NR_OPEN bigger than NR_FILE, but you can change
  27.  * the file limit at runtime and only root can increase the per-process
  28.  * nr_file rlimit, so it's safe to set up a ridiculously high absolute
  29.  * upper limit on files-per-process.
  30.  *
  31.  * Some programs (notably those using select()) may have to be 
  32.  * recompiled to take full advantage of the new limits..  
  33.  */
  34. /* Fixed constants first: */
  35. #undef NR_OPEN
  36. #define NR_OPEN (1024*1024) /* Absolute upper limit on fd num */
  37. #define INR_OPEN 1024 /* Initial setting for nfile rlimits */
  38. #define BLOCK_SIZE_BITS 10
  39. #define BLOCK_SIZE (1<<BLOCK_SIZE_BITS)
  40. /* And dynamically-tunable limits and defaults: */
  41. struct files_stat_struct {
  42. int nr_files; /* read only */
  43. int nr_free_files; /* read only */
  44. int max_files; /* tunable */
  45. };
  46. extern struct files_stat_struct files_stat;
  47. struct inodes_stat_t {
  48. int nr_inodes;
  49. int nr_unused;
  50. int dummy[5];
  51. };
  52. extern struct inodes_stat_t inodes_stat;
  53. extern int leases_enable, dir_notify_enable, lease_break_time;
  54. #define NR_FILE  8192 /* this can well be larger on a larger system */
  55. #define NR_RESERVED_FILES 10 /* reserved for root */
  56. #define NR_SUPER 256
  57. #define MAY_EXEC 1
  58. #define MAY_WRITE 2
  59. #define MAY_READ 4
  60. #define FMODE_READ 1
  61. #define FMODE_WRITE 2
  62. #define READ 0
  63. #define WRITE 1
  64. #define READA 2 /* read-ahead  - don't block if no resources */
  65. #define SPECIAL 4 /* For non-blockdevice requests in request queue */
  66. #define SEL_IN 1
  67. #define SEL_OUT 2
  68. #define SEL_EX 4
  69. /* public flags for file_system_type */
  70. #define FS_REQUIRES_DEV 1 
  71. #define FS_NO_DCACHE 2 /* Only dcache the necessary things. */
  72. #define FS_NO_PRELIM 4 /* prevent preloading of dentries, even if
  73.    * FS_NO_DCACHE is not set.
  74.    */
  75. #define FS_SINGLE 8 /* Filesystem that can have only one superblock */
  76. #define FS_NOMOUNT 16 /* Never mount from userland */
  77. #define FS_LITTER 32 /* Keeps the tree in dcache */
  78. #define FS_ODD_RENAME 32768 /* Temporary stuff; will go away as soon
  79.   * as nfs_rename() will be cleaned up
  80.   */
  81. /*
  82.  * These are the fs-independent mount-flags: up to 32 flags are supported
  83.  */
  84. #define MS_RDONLY  1 /* Mount read-only */
  85. #define MS_NOSUID  2 /* Ignore suid and sgid bits */
  86. #define MS_NODEV  4 /* Disallow access to device special files */
  87. #define MS_NOEXEC  8 /* Disallow program execution */
  88. #define MS_SYNCHRONOUS 16 /* Writes are synced at once */
  89. #define MS_REMOUNT 32 /* Alter flags of a mounted FS */
  90. #define MS_MANDLOCK 64 /* Allow mandatory locks on an FS */
  91. #define MS_NOATIME 1024 /* Do not update access times. */
  92. #define MS_NODIRATIME 2048 /* Do not update directory access times */
  93. #define MS_BIND 4096
  94. #define MS_MOVE 8192
  95. #define MS_REC 16384
  96. #define MS_VERBOSE 32768
  97. #define MS_ACTIVE (1<<30)
  98. #define MS_NOUSER (1<<31)
  99. /*
  100.  * Superblock flags that can be altered by MS_REMOUNT
  101.  */
  102. #define MS_RMT_MASK (MS_RDONLY|MS_SYNCHRONOUS|MS_MANDLOCK|MS_NOATIME|
  103.  MS_NODIRATIME)
  104. /*
  105.  * Old magic mount flag and mask
  106.  */
  107. #define MS_MGC_VAL 0xC0ED0000
  108. #define MS_MGC_MSK 0xffff0000
  109. /* Inode flags - they have nothing to superblock flags now */
  110. #define S_SYNC 1 /* Writes are synced at once */
  111. #define S_NOATIME 2 /* Do not update access times */
  112. #define S_QUOTA 4 /* Quota initialized for file */
  113. #define S_APPEND 8 /* Append-only file */
  114. #define S_IMMUTABLE 16 /* Immutable file */
  115. #define S_DEAD 32 /* removed, but still open directory */
  116. #define S_NOQUOTA 64 /* Inode is not counted to quota */
  117. /*
  118.  * Note that nosuid etc flags are inode-specific: setting some file-system
  119.  * flags just means all the inodes inherit those flags by default. It might be
  120.  * possible to override it selectively if you really wanted to with some
  121.  * ioctl() that is not currently implemented.
  122.  *
  123.  * Exception: MS_RDONLY is always applied to the entire file system.
  124.  *
  125.  * Unfortunately, it is possible to change a filesystems flags with it mounted
  126.  * with files in use.  This means that all of the inodes will not have their
  127.  * i_flags updated.  Hence, i_flags no longer inherit the superblock mount
  128.  * flags, so these have to be checked separately. -- rmk@arm.uk.linux.org
  129.  */
  130. #define __IS_FLG(inode,flg) ((inode)->i_sb->s_flags & (flg))
  131. #define IS_RDONLY(inode) ((inode)->i_sb->s_flags & MS_RDONLY)
  132. #define IS_SYNC(inode) (__IS_FLG(inode, MS_SYNCHRONOUS) || ((inode)->i_flags & S_SYNC))
  133. #define IS_MANDLOCK(inode) __IS_FLG(inode, MS_MANDLOCK)
  134. #define IS_QUOTAINIT(inode) ((inode)->i_flags & S_QUOTA)
  135. #define IS_NOQUOTA(inode) ((inode)->i_flags & S_NOQUOTA)
  136. #define IS_APPEND(inode) ((inode)->i_flags & S_APPEND)
  137. #define IS_IMMUTABLE(inode) ((inode)->i_flags & S_IMMUTABLE)
  138. #define IS_NOATIME(inode) (__IS_FLG(inode, MS_NOATIME) || ((inode)->i_flags & S_NOATIME))
  139. #define IS_NODIRATIME(inode) __IS_FLG(inode, MS_NODIRATIME)
  140. #define IS_DEADDIR(inode) ((inode)->i_flags & S_DEAD)
  141. /* the read-only stuff doesn't really belong here, but any other place is
  142.    probably as bad and I don't want to create yet another include file. */
  143. #define BLKROSET   _IO(0x12,93) /* set device read-only (0 = read-write) */
  144. #define BLKROGET   _IO(0x12,94) /* get read-only status (0 = read_write) */
  145. #define BLKRRPART  _IO(0x12,95) /* re-read partition table */
  146. #define BLKGETSIZE _IO(0x12,96) /* return device size /512 (long *arg) */
  147. #define BLKFLSBUF  _IO(0x12,97) /* flush buffer cache */
  148. #define BLKRASET   _IO(0x12,98) /* Set read ahead for block device */
  149. #define BLKRAGET   _IO(0x12,99) /* get current read ahead setting */
  150. #define BLKFRASET  _IO(0x12,100)/* set filesystem (mm/filemap.c) read-ahead */
  151. #define BLKFRAGET  _IO(0x12,101)/* get filesystem (mm/filemap.c) read-ahead */
  152. #define BLKSECTSET _IO(0x12,102)/* set max sectors per request (ll_rw_blk.c) */
  153. #define BLKSECTGET _IO(0x12,103)/* get max sectors per request (ll_rw_blk.c) */
  154. #define BLKSSZGET  _IO(0x12,104)/* get block device sector size */
  155. #if 0
  156. #define BLKPG      _IO(0x12,105)/* See blkpg.h */
  157. #define BLKELVGET  _IOR(0x12,106,sizeof(blkelv_ioctl_arg_t))/* elevator get */
  158. #define BLKELVSET  _IOW(0x12,107,sizeof(blkelv_ioctl_arg_t))/* elevator set */
  159. /* This was here just to show that the number is taken -
  160.    probably all these _IO(0x12,*) ioctls should be moved to blkpg.h. */
  161. #endif
  162. /* A jump here: 108-111 have been used for various private purposes. */
  163. #define BLKBSZGET  _IOR(0x12,112,sizeof(int))
  164. #define BLKBSZSET  _IOW(0x12,113,sizeof(int))
  165. #define BLKGETSIZE64 _IOR(0x12,114,sizeof(u64)) /* return device size in bytes (u64 *arg) */
  166. #define BMAP_IOCTL 1 /* obsolete - kept for compatibility */
  167. #define FIBMAP    _IO(0x00,1) /* bmap access */
  168. #define FIGETBSZ   _IO(0x00,2) /* get the block size used for bmap */
  169. #ifdef __KERNEL__
  170. #include <asm/semaphore.h>
  171. #include <asm/byteorder.h>
  172. extern void update_atime (struct inode *);
  173. #define UPDATE_ATIME(inode) update_atime (inode)
  174. extern void buffer_init(unsigned long);
  175. extern void inode_init(unsigned long);
  176. extern void mnt_init(unsigned long);
  177. /* bh state bits */
  178. enum bh_state_bits {
  179. BH_Uptodate, /* 1 if the buffer contains valid data */
  180. BH_Dirty, /* 1 if the buffer is dirty */
  181. BH_Lock, /* 1 if the buffer is locked */
  182. BH_Req, /* 0 if the buffer has been invalidated */
  183. BH_Mapped, /* 1 if the buffer has a disk mapping */
  184. BH_New, /* 1 if the buffer is new and not yet written out */
  185. BH_Async, /* 1 if the buffer is under end_buffer_io_async I/O */
  186. BH_Wait_IO, /* 1 if we should write out this buffer */
  187. BH_launder, /* 1 if we should throttle on this buffer */
  188. BH_JBD, /* 1 if it has an attached journal_head */
  189. BH_PrivateStart,/* not a state bit, but the first bit available
  190.  * for private allocation by other entities
  191.  */
  192. };
  193. /*
  194.  * Try to keep the most commonly used fields in single cache lines (16
  195.  * bytes) to improve performance.  This ordering should be
  196.  * particularly beneficial on 32-bit processors.
  197.  * 
  198.  * We use the first 16 bytes for the data which is used in searches
  199.  * over the block hash lists (ie. getblk() and friends).
  200.  * 
  201.  * The second 16 bytes we use for lru buffer scans, as used by
  202.  * sync_buffers() and refill_freelist().  -- sct
  203.  */
  204. struct buffer_head {
  205. /* First cache line: */
  206. struct buffer_head *b_next; /* Hash queue list */
  207. unsigned long b_blocknr; /* block number */
  208. unsigned short b_size; /* block size */
  209. unsigned short b_list; /* List that this buffer appears */
  210. kdev_t b_dev; /* device (B_FREE = free) */
  211. atomic_t b_count; /* users using this block */
  212. kdev_t b_rdev; /* Real device */
  213. unsigned long b_state; /* buffer state bitmap (see above) */
  214. unsigned long b_flushtime; /* Time when (dirty) buffer should be written */
  215. struct buffer_head *b_next_free;/* lru/free list linkage */
  216. struct buffer_head *b_prev_free;/* doubly linked list of buffers */
  217. struct buffer_head *b_this_page;/* circular list of buffers in one page */
  218. struct buffer_head *b_reqnext; /* request queue */
  219. struct buffer_head **b_pprev; /* doubly linked list of hash-queue */
  220. char * b_data; /* pointer to data block */
  221. struct page *b_page; /* the page this bh is mapped to */
  222. void (*b_end_io)(struct buffer_head *bh, int uptodate); /* I/O completion */
  223.   void *b_private; /* reserved for b_end_io */
  224. unsigned long b_rsector; /* Real buffer location on disk */
  225. wait_queue_head_t b_wait;
  226. struct inode *      b_inode;
  227. struct list_head     b_inode_buffers; /* doubly linked list of inode dirty buffers */
  228. };
  229. typedef void (bh_end_io_t)(struct buffer_head *bh, int uptodate);
  230. void init_buffer(struct buffer_head *, bh_end_io_t *, void *);
  231. #define __buffer_state(bh, state) (((bh)->b_state & (1UL << BH_##state)) != 0)
  232. #define buffer_uptodate(bh) __buffer_state(bh,Uptodate)
  233. #define buffer_dirty(bh) __buffer_state(bh,Dirty)
  234. #define buffer_locked(bh) __buffer_state(bh,Lock)
  235. #define buffer_req(bh) __buffer_state(bh,Req)
  236. #define buffer_mapped(bh) __buffer_state(bh,Mapped)
  237. #define buffer_new(bh) __buffer_state(bh,New)
  238. #define buffer_async(bh) __buffer_state(bh,Async)
  239. #define bh_offset(bh) ((unsigned long)(bh)->b_data & ~PAGE_MASK)
  240. extern void set_bh_page(struct buffer_head *bh, struct page *page, unsigned long offset);
  241. #define touch_buffer(bh) mark_page_accessed(bh->b_page)
  242. #include <linux/pipe_fs_i.h>
  243. #include <linux/minix_fs_i.h>
  244. #include <linux/ext2_fs_i.h>
  245. #include <linux/ext3_fs_i.h>
  246. #include <linux/hpfs_fs_i.h>
  247. #include <linux/ntfs_fs_i.h>
  248. #include <linux/msdos_fs_i.h>
  249. #include <linux/umsdos_fs_i.h>
  250. #include <linux/iso_fs_i.h>
  251. #include <linux/nfs_fs_i.h>
  252. #include <linux/sysv_fs_i.h>
  253. #include <linux/affs_fs_i.h>
  254. #include <linux/ufs_fs_i.h>
  255. #include <linux/efs_fs_i.h>
  256. #include <linux/coda_fs_i.h>
  257. #include <linux/romfs_fs_i.h>
  258. #include <linux/shmem_fs.h>
  259. #include <linux/smb_fs_i.h>
  260. #include <linux/hfs_fs_i.h>
  261. #include <linux/adfs_fs_i.h>
  262. #include <linux/qnx4_fs_i.h>
  263. #include <linux/reiserfs_fs_i.h>
  264. #include <linux/bfs_fs_i.h>
  265. #include <linux/udf_fs_i.h>
  266. #include <linux/ncp_fs_i.h>
  267. #include <linux/proc_fs_i.h>
  268. #include <linux/usbdev_fs_i.h>
  269. #include <linux/jffs2_fs_i.h>
  270. #include <linux/cramfs_fs_sb.h>
  271. /*
  272.  * Attribute flags.  These should be or-ed together to figure out what
  273.  * has been changed!
  274.  */
  275. #define ATTR_MODE 1
  276. #define ATTR_UID 2
  277. #define ATTR_GID 4
  278. #define ATTR_SIZE 8
  279. #define ATTR_ATIME 16
  280. #define ATTR_MTIME 32
  281. #define ATTR_CTIME 64
  282. #define ATTR_ATIME_SET 128
  283. #define ATTR_MTIME_SET 256
  284. #define ATTR_FORCE 512 /* Not a change, but a change it */
  285. #define ATTR_ATTR_FLAG 1024
  286. /*
  287.  * This is the Inode Attributes structure, used for notify_change().  It
  288.  * uses the above definitions as flags, to know which values have changed.
  289.  * Also, in this manner, a Filesystem can look at only the values it cares
  290.  * about.  Basically, these are the attributes that the VFS layer can
  291.  * request to change from the FS layer.
  292.  *
  293.  * Derek Atkins <warlord@MIT.EDU> 94-10-20
  294.  */
  295. struct iattr {
  296. unsigned int ia_valid;
  297. umode_t ia_mode;
  298. uid_t ia_uid;
  299. gid_t ia_gid;
  300. loff_t ia_size;
  301. time_t ia_atime;
  302. time_t ia_mtime;
  303. time_t ia_ctime;
  304. unsigned int ia_attr_flags;
  305. };
  306. /*
  307.  * This is the inode attributes flag definitions
  308.  */
  309. #define ATTR_FLAG_SYNCRONOUS 1  /* Syncronous write */
  310. #define ATTR_FLAG_NOATIME 2  /* Don't update atime */
  311. #define ATTR_FLAG_APPEND 4  /* Append-only file */
  312. #define ATTR_FLAG_IMMUTABLE 8  /* Immutable file */
  313. #define ATTR_FLAG_NODIRATIME 16  /* Don't update atime for directory */
  314. /*
  315.  * Includes for diskquotas and mount structures.
  316.  */
  317. #include <linux/quota.h>
  318. #include <linux/mount.h>
  319. /*
  320.  * oh the beauties of C type declarations.
  321.  */
  322. struct page;
  323. struct address_space;
  324. struct kiobuf;
  325. struct address_space_operations {
  326. int (*writepage)(struct page *);
  327. int (*readpage)(struct file *, struct page *);
  328. int (*sync_page)(struct page *);
  329. /*
  330.  * ext3 requires that a successful prepare_write() call be followed
  331.  * by a commit_write() call - they must be balanced
  332.  */
  333. int (*prepare_write)(struct file *, struct page *, unsigned, unsigned);
  334. int (*commit_write)(struct file *, struct page *, unsigned, unsigned);
  335. /* Unfortunately this kludge is needed for FIBMAP. Don't use it */
  336. int (*bmap)(struct address_space *, long);
  337. int (*flushpage) (struct page *, unsigned long);
  338. int (*releasepage) (struct page *, int);
  339. #define KERNEL_HAS_O_DIRECT /* this is for modules out of the kernel */
  340. int (*direct_IO)(int, struct inode *, struct kiobuf *, unsigned long, int);
  341. };
  342. struct address_space {
  343. struct list_head clean_pages; /* list of clean pages */
  344. struct list_head dirty_pages; /* list of dirty pages */
  345. struct list_head locked_pages; /* list of locked pages */
  346. unsigned long nrpages; /* number of total pages */
  347. struct address_space_operations *a_ops; /* methods */
  348. struct inode *host; /* owner: inode, block_device */
  349. struct vm_area_struct *i_mmap; /* list of private mappings */
  350. struct vm_area_struct *i_mmap_shared; /* list of shared mappings */
  351. spinlock_t i_shared_lock;  /* and spinlock protecting it */
  352. int gfp_mask; /* how to allocate the pages */
  353. };
  354. struct char_device {
  355. struct list_head hash;
  356. atomic_t count;
  357. dev_t dev;
  358. atomic_t openers;
  359. struct semaphore sem;
  360. };
  361. struct block_device {
  362. struct list_head bd_hash;
  363. atomic_t bd_count;
  364. struct inode * bd_inode;
  365. dev_t bd_dev;  /* not a kdev_t - it's a search key */
  366. int bd_openers;
  367. const struct block_device_operations *bd_op;
  368. struct semaphore bd_sem; /* open/close mutex */
  369. struct list_head bd_inodes;
  370. };
  371. struct inode {
  372. struct list_head i_hash;
  373. struct list_head i_list;
  374. struct list_head i_dentry;
  375. struct list_head i_dirty_buffers;
  376. struct list_head i_dirty_data_buffers;
  377. unsigned long i_ino;
  378. atomic_t i_count;
  379. kdev_t i_dev;
  380. umode_t i_mode;
  381. nlink_t i_nlink;
  382. uid_t i_uid;
  383. gid_t i_gid;
  384. kdev_t i_rdev;
  385. loff_t i_size;
  386. time_t i_atime;
  387. time_t i_mtime;
  388. time_t i_ctime;
  389. unsigned int i_blkbits;
  390. unsigned long i_blksize;
  391. unsigned long i_blocks;
  392. unsigned long i_version;
  393. struct semaphore i_sem;
  394. struct semaphore i_zombie;
  395. struct inode_operations *i_op;
  396. struct file_operations *i_fop; /* former ->i_op->default_file_ops */
  397. struct super_block *i_sb;
  398. wait_queue_head_t i_wait;
  399. struct file_lock *i_flock;
  400. struct address_space *i_mapping;
  401. struct address_space i_data;
  402. struct dquot *i_dquot[MAXQUOTAS];
  403. /* These three should probably be a union */
  404. struct list_head i_devices;
  405. struct pipe_inode_info *i_pipe;
  406. struct block_device *i_bdev;
  407. struct char_device *i_cdev;
  408. unsigned long i_dnotify_mask; /* Directory notify events */
  409. struct dnotify_struct *i_dnotify; /* for directory notifications */
  410. unsigned long i_state;
  411. unsigned int i_flags;
  412. unsigned char i_sock;
  413. atomic_t i_writecount;
  414. unsigned int i_attr_flags;
  415. __u32 i_generation;
  416. union {
  417. struct minix_inode_info minix_i;
  418. struct ext2_inode_info ext2_i;
  419. struct ext3_inode_info ext3_i;
  420. struct hpfs_inode_info hpfs_i;
  421. struct ntfs_inode_info ntfs_i;
  422. struct msdos_inode_info msdos_i;
  423. struct umsdos_inode_info umsdos_i;
  424. struct iso_inode_info isofs_i;
  425. struct nfs_inode_info nfs_i;
  426. struct sysv_inode_info sysv_i;
  427. struct affs_inode_info affs_i;
  428. struct ufs_inode_info ufs_i;
  429. struct efs_inode_info efs_i;
  430. struct romfs_inode_info romfs_i;
  431. struct shmem_inode_info shmem_i;
  432. struct coda_inode_info coda_i;
  433. struct smb_inode_info smbfs_i;
  434. struct hfs_inode_info hfs_i;
  435. struct adfs_inode_info adfs_i;
  436. struct qnx4_inode_info qnx4_i;
  437. struct reiserfs_inode_info reiserfs_i;
  438. struct bfs_inode_info bfs_i;
  439. struct udf_inode_info udf_i;
  440. struct ncp_inode_info ncpfs_i;
  441. struct proc_inode_info proc_i;
  442. struct socket socket_i;
  443. struct usbdev_inode_info        usbdev_i;
  444. struct jffs2_inode_info jffs2_i;
  445. void *generic_ip;
  446. } u;
  447. };
  448. struct fown_struct {
  449. int pid; /* pid or -pgrp where SIGIO should be sent */
  450. uid_t uid, euid; /* uid/euid of process setting the owner */
  451. int signum; /* posix.1b rt signal to be delivered on IO */
  452. };
  453. struct file {
  454. struct list_head f_list;
  455. struct dentry *f_dentry;
  456. struct vfsmount         *f_vfsmnt;
  457. struct file_operations *f_op;
  458. atomic_t f_count;
  459. unsigned int  f_flags;
  460. mode_t f_mode;
  461. loff_t f_pos;
  462. unsigned long  f_reada, f_ramax, f_raend, f_ralen, f_rawin;
  463. struct fown_struct f_owner;
  464. unsigned int f_uid, f_gid;
  465. int f_error;
  466. unsigned long f_version;
  467. /* needed for tty driver, and maybe others */
  468. void *private_data;
  469. /* preallocated helper kiobuf to speedup O_DIRECT */
  470. struct kiobuf *f_iobuf;
  471. long f_iobuf_lock;
  472. };
  473. extern spinlock_t files_lock;
  474. #define file_list_lock() spin_lock(&files_lock);
  475. #define file_list_unlock() spin_unlock(&files_lock);
  476. #define get_file(x) atomic_inc(&(x)->f_count)
  477. #define file_count(x) atomic_read(&(x)->f_count)
  478. extern int init_private_file(struct file *, struct dentry *, int);
  479. #define MAX_NON_LFS ((1UL<<31) - 1)
  480. #define FL_POSIX 1
  481. #define FL_FLOCK 2
  482. #define FL_BROKEN 4 /* broken flock() emulation */
  483. #define FL_ACCESS 8 /* for processes suspended by mandatory locking */
  484. #define FL_LOCKD 16 /* lock held by rpc.lockd */
  485. #define FL_LEASE 32 /* lease held on this file */
  486. /*
  487.  * The POSIX file lock owner is determined by
  488.  * the "struct files_struct" in the thread group
  489.  * (or NULL for no owner - BSD locks).
  490.  *
  491.  * Lockd stuffs a "host" pointer into this.
  492.  */
  493. typedef struct files_struct *fl_owner_t;
  494. struct file_lock {
  495. struct file_lock *fl_next; /* singly linked list for this inode  */
  496. struct list_head fl_link; /* doubly linked list of all locks */
  497. struct list_head fl_block; /* circular list of blocked processes */
  498. fl_owner_t fl_owner;
  499. unsigned int fl_pid;
  500. wait_queue_head_t fl_wait;
  501. struct file *fl_file;
  502. unsigned char fl_flags;
  503. unsigned char fl_type;
  504. loff_t fl_start;
  505. loff_t fl_end;
  506. void (*fl_notify)(struct file_lock *); /* unblock callback */
  507. void (*fl_insert)(struct file_lock *); /* lock insertion callback */
  508. void (*fl_remove)(struct file_lock *); /* lock removal callback */
  509. struct fasync_struct * fl_fasync; /* for lease break notifications */
  510. union {
  511. struct nfs_lock_info nfs_fl;
  512. } fl_u;
  513. };
  514. /* The following constant reflects the upper bound of the file/locking space */
  515. #ifndef OFFSET_MAX
  516. #define INT_LIMIT(x) (~((x)1 << (sizeof(x)*8 - 1)))
  517. #define OFFSET_MAX INT_LIMIT(loff_t)
  518. #define OFFT_OFFSET_MAX INT_LIMIT(off_t)
  519. #endif
  520. extern struct list_head file_lock_list;
  521. #include <linux/fcntl.h>
  522. extern int fcntl_getlk(unsigned int, struct flock *);
  523. extern int fcntl_setlk(unsigned int, unsigned int, struct flock *);
  524. extern int fcntl_getlk64(unsigned int, struct flock64 *);
  525. extern int fcntl_setlk64(unsigned int, unsigned int, struct flock64 *);
  526. /* fs/locks.c */
  527. extern void locks_init_lock(struct file_lock *);
  528. extern void locks_copy_lock(struct file_lock *, struct file_lock *);
  529. extern void locks_remove_posix(struct file *, fl_owner_t);
  530. extern void locks_remove_flock(struct file *);
  531. extern struct file_lock *posix_test_lock(struct file *, struct file_lock *);
  532. extern int posix_lock_file(struct file *, struct file_lock *, unsigned int);
  533. extern void posix_block_lock(struct file_lock *, struct file_lock *);
  534. extern void posix_unblock_lock(struct file_lock *);
  535. extern int posix_locks_deadlock(struct file_lock *, struct file_lock *);
  536. extern int __get_lease(struct inode *inode, unsigned int flags);
  537. extern time_t lease_get_mtime(struct inode *);
  538. extern int lock_may_read(struct inode *, loff_t start, unsigned long count);
  539. extern int lock_may_write(struct inode *, loff_t start, unsigned long count);
  540. struct fasync_struct {
  541. int magic;
  542. int fa_fd;
  543. struct fasync_struct *fa_next; /* singly linked list */
  544. struct file  *fa_file;
  545. };
  546. #define FASYNC_MAGIC 0x4601
  547. /* SMP safe fasync helpers: */
  548. extern int fasync_helper(int, struct file *, int, struct fasync_struct **);
  549. /* can be called from interrupts */
  550. extern void kill_fasync(struct fasync_struct **, int, int);
  551. /* only for net: no internal synchronization */
  552. extern void __kill_fasync(struct fasync_struct *, int, int);
  553. struct nameidata {
  554. struct dentry *dentry;
  555. struct vfsmount *mnt;
  556. struct qstr last;
  557. unsigned int flags;
  558. int last_type;
  559. };
  560. #define DQUOT_USR_ENABLED 0x01 /* User diskquotas enabled */
  561. #define DQUOT_GRP_ENABLED 0x02 /* Group diskquotas enabled */
  562. struct quota_mount_options
  563. {
  564. unsigned int flags; /* Flags for diskquotas on this device */
  565. struct semaphore dqio_sem; /* lock device while I/O in progress */
  566. struct semaphore dqoff_sem; /* serialize quota_off() and quota_on() on device */
  567. struct file *files[MAXQUOTAS]; /* fp's to quotafiles */
  568. time_t inode_expire[MAXQUOTAS]; /* expiretime for inode-quota */
  569. time_t block_expire[MAXQUOTAS]; /* expiretime for block-quota */
  570. char rsquash[MAXQUOTAS]; /* for quotas threat root as any other user */
  571. };
  572. /*
  573.  * Umount options
  574.  */
  575. #define MNT_FORCE 0x00000001 /* Attempt to forcibily umount */
  576. #define MNT_DETACH 0x00000002 /* Just detach from the tree */
  577. #include <linux/minix_fs_sb.h>
  578. #include <linux/ext2_fs_sb.h>
  579. #include <linux/ext3_fs_sb.h>
  580. #include <linux/hpfs_fs_sb.h>
  581. #include <linux/ntfs_fs_sb.h>
  582. #include <linux/msdos_fs_sb.h>
  583. #include <linux/iso_fs_sb.h>
  584. #include <linux/nfs_fs_sb.h>
  585. #include <linux/sysv_fs_sb.h>
  586. #include <linux/affs_fs_sb.h>
  587. #include <linux/ufs_fs_sb.h>
  588. #include <linux/efs_fs_sb.h>
  589. #include <linux/romfs_fs_sb.h>
  590. #include <linux/smb_fs_sb.h>
  591. #include <linux/hfs_fs_sb.h>
  592. #include <linux/adfs_fs_sb.h>
  593. #include <linux/qnx4_fs_sb.h>
  594. #include <linux/reiserfs_fs_sb.h>
  595. #include <linux/bfs_fs_sb.h>
  596. #include <linux/udf_fs_sb.h>
  597. #include <linux/ncp_fs_sb.h>
  598. #include <linux/usbdev_fs_sb.h>
  599. #include <linux/cramfs_fs_sb.h>
  600. #include <linux/jffs2_fs_sb.h>
  601. extern struct list_head super_blocks;
  602. extern spinlock_t sb_lock;
  603. #define sb_entry(list) list_entry((list), struct super_block, s_list)
  604. #define S_BIAS (1<<30)
  605. struct super_block {
  606. struct list_head s_list; /* Keep this first */
  607. kdev_t s_dev;
  608. unsigned long s_blocksize;
  609. unsigned char s_blocksize_bits;
  610. unsigned char s_dirt;
  611. unsigned long long s_maxbytes; /* Max file size */
  612. struct file_system_type *s_type;
  613. struct super_operations *s_op;
  614. struct dquot_operations *dq_op;
  615. unsigned long s_flags;
  616. unsigned long s_magic;
  617. struct dentry *s_root;
  618. struct rw_semaphore s_umount;
  619. struct semaphore s_lock;
  620. int s_count;
  621. atomic_t s_active;
  622. struct list_head s_dirty; /* dirty inodes */
  623. struct list_head s_locked_inodes;/* inodes being synced */
  624. struct list_head s_files;
  625. struct block_device *s_bdev;
  626. struct list_head s_instances;
  627. struct quota_mount_options s_dquot; /* Diskquota specific options */
  628. union {
  629. struct minix_sb_info minix_sb;
  630. struct ext2_sb_info ext2_sb;
  631. struct ext3_sb_info ext3_sb;
  632. struct hpfs_sb_info hpfs_sb;
  633. struct ntfs_sb_info ntfs_sb;
  634. struct msdos_sb_info msdos_sb;
  635. struct isofs_sb_info isofs_sb;
  636. struct nfs_sb_info nfs_sb;
  637. struct sysv_sb_info sysv_sb;
  638. struct affs_sb_info affs_sb;
  639. struct ufs_sb_info ufs_sb;
  640. struct efs_sb_info efs_sb;
  641. struct shmem_sb_info shmem_sb;
  642. struct romfs_sb_info romfs_sb;
  643. struct smb_sb_info smbfs_sb;
  644. struct hfs_sb_info hfs_sb;
  645. struct adfs_sb_info adfs_sb;
  646. struct qnx4_sb_info qnx4_sb;
  647. struct reiserfs_sb_info reiserfs_sb;
  648. struct bfs_sb_info bfs_sb;
  649. struct udf_sb_info udf_sb;
  650. struct ncp_sb_info ncpfs_sb;
  651. struct usbdev_sb_info   usbdevfs_sb;
  652. struct jffs2_sb_info jffs2_sb;
  653. struct cramfs_sb_info cramfs_sb;
  654. void *generic_sbp;
  655. } u;
  656. /*
  657.  * The next field is for VFS *only*. No filesystems have any business
  658.  * even looking at it. You had been warned.
  659.  */
  660. struct semaphore s_vfs_rename_sem; /* Kludge */
  661. /* The next field is used by knfsd when converting a (inode number based)
  662.  * file handle into a dentry. As it builds a path in the dcache tree from
  663.  * the bottom up, there may for a time be a subpath of dentrys which is not
  664.  * connected to the main tree.  This semaphore ensure that there is only ever
  665.  * one such free path per filesystem.  Note that unconnected files (or other
  666.  * non-directories) are allowed, but not unconnected diretories.
  667.  */
  668. struct semaphore s_nfsd_free_path_sem;
  669. };
  670. /*
  671.  * VFS helper functions..
  672.  */
  673. extern int vfs_create(struct inode *, struct dentry *, int);
  674. extern int vfs_mkdir(struct inode *, struct dentry *, int);
  675. extern int vfs_mknod(struct inode *, struct dentry *, int, dev_t);
  676. extern int vfs_symlink(struct inode *, struct dentry *, const char *);
  677. extern int vfs_link(struct dentry *, struct inode *, struct dentry *);
  678. extern int vfs_rmdir(struct inode *, struct dentry *);
  679. extern int vfs_unlink(struct inode *, struct dentry *);
  680. extern int vfs_rename(struct inode *, struct dentry *, struct inode *, struct dentry *);
  681. /*
  682.  * File types
  683.  */
  684. #define DT_UNKNOWN 0
  685. #define DT_FIFO 1
  686. #define DT_CHR 2
  687. #define DT_DIR 4
  688. #define DT_BLK 6
  689. #define DT_REG 8
  690. #define DT_LNK 10
  691. #define DT_SOCK 12
  692. #define DT_WHT 14
  693. /*
  694.  * This is the "filldir" function type, used by readdir() to let
  695.  * the kernel specify what kind of dirent layout it wants to have.
  696.  * This allows the kernel to read directories into kernel space or
  697.  * to have different dirent layouts depending on the binary type.
  698.  */
  699. typedef int (*filldir_t)(void *, const char *, int, loff_t, ino_t, unsigned);
  700. struct block_device_operations {
  701. int (*open) (struct inode *, struct file *);
  702. int (*release) (struct inode *, struct file *);
  703. int (*ioctl) (struct inode *, struct file *, unsigned, unsigned long);
  704. int (*check_media_change) (kdev_t);
  705. int (*revalidate) (kdev_t);
  706. struct module *owner;
  707. };
  708. /*
  709.  * NOTE:
  710.  * read, write, poll, fsync, readv, writev can be called
  711.  *   without the big kernel lock held in all filesystems.
  712.  */
  713. struct file_operations {
  714. struct module *owner;
  715. loff_t (*llseek) (struct file *, loff_t, int);
  716. ssize_t (*read) (struct file *, char *, size_t, loff_t *);
  717. ssize_t (*write) (struct file *, const char *, size_t, loff_t *);
  718. int (*readdir) (struct file *, void *, filldir_t);
  719. unsigned int (*poll) (struct file *, struct poll_table_struct *);
  720. int (*ioctl) (struct inode *, struct file *, unsigned int, unsigned long);
  721. int (*mmap) (struct file *, struct vm_area_struct *);
  722. int (*open) (struct inode *, struct file *);
  723. int (*flush) (struct file *);
  724. int (*release) (struct inode *, struct file *);
  725. int (*fsync) (struct file *, struct dentry *, int datasync);
  726. int (*fasync) (int, struct file *, int);
  727. int (*lock) (struct file *, int, struct file_lock *);
  728. ssize_t (*readv) (struct file *, const struct iovec *, unsigned long, loff_t *);
  729. ssize_t (*writev) (struct file *, const struct iovec *, unsigned long, loff_t *);
  730. ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *, int);
  731. unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
  732. };
  733. struct inode_operations {
  734. int (*create) (struct inode *,struct dentry *,int);
  735. struct dentry * (*lookup) (struct inode *,struct dentry *);
  736. int (*link) (struct dentry *,struct inode *,struct dentry *);
  737. int (*unlink) (struct inode *,struct dentry *);
  738. int (*symlink) (struct inode *,struct dentry *,const char *);
  739. int (*mkdir) (struct inode *,struct dentry *,int);
  740. int (*rmdir) (struct inode *,struct dentry *);
  741. int (*mknod) (struct inode *,struct dentry *,int,int);
  742. int (*rename) (struct inode *, struct dentry *,
  743. struct inode *, struct dentry *);
  744. int (*readlink) (struct dentry *, char *,int);
  745. int (*follow_link) (struct dentry *, struct nameidata *);
  746. void (*truncate) (struct inode *);
  747. int (*permission) (struct inode *, int);
  748. int (*revalidate) (struct dentry *);
  749. int (*setattr) (struct dentry *, struct iattr *);
  750. int (*getattr) (struct dentry *, struct iattr *);
  751. };
  752. struct seq_file;
  753. /*
  754.  * NOTE: write_inode, delete_inode, clear_inode, put_inode can be called
  755.  * without the big kernel lock held in all filesystems.
  756.  */
  757. struct super_operations {
  758. void (*read_inode) (struct inode *);
  759.   
  760.    /* reiserfs kludge.  reiserfs needs 64 bits of information to
  761.      ** find an inode.  We are using the read_inode2 call to get
  762.     ** that information.  We don't like this, and are waiting on some
  763.     ** VFS changes for the real solution.
  764.     ** iget4 calls read_inode2, iff it is defined
  765.     */
  766.      void (*read_inode2) (struct inode *, void *) ;
  767.     void (*dirty_inode) (struct inode *);
  768. void (*write_inode) (struct inode *, int);
  769. void (*put_inode) (struct inode *);
  770. void (*delete_inode) (struct inode *);
  771. void (*put_super) (struct super_block *);
  772. void (*write_super) (struct super_block *);
  773. void (*write_super_lockfs) (struct super_block *);
  774. void (*unlockfs) (struct super_block *);
  775. int (*statfs) (struct super_block *, struct statfs *);
  776. int (*remount_fs) (struct super_block *, int *, char *);
  777. void (*clear_inode) (struct inode *);
  778. void (*umount_begin) (struct super_block *);
  779. /* Following are for knfsd to interact with "interesting" filesystems
  780.  * Currently just reiserfs, but possibly FAT and others later
  781.  *
  782.  * fh_to_dentry is given a filehandle fragement with length, and a type flag
  783.  *   and must return a dentry for the referenced object or, if "parent" is
  784.  *   set, a dentry for the parent of the object.
  785.  *   If a dentry cannot be found, a "root" dentry should be created and
  786.  *   flaged as DCACHE_NFSD_DISCONNECTED. nfsd_iget is an example implementation.
  787.  *
  788.  * dentry_to_fh is given a dentry and must generate the filesys specific
  789.  *   part of the file handle.  Available length is passed in *lenp and used
  790.  *   length should be returned therein.
  791.  *   If need_parent is set, then dentry_to_fh should encode sufficient information
  792.  *   to find the (current) parent.
  793.  *   dentry_to_fh should return a 1byte "type" which will be passed back in
  794.  *   the fhtype arguement to fh_to_dentry.  Type of 0 is reserved.
  795.  *   If filesystem was exportable before the introduction of fh_to_dentry,
  796.  *   types 1 and 2 should be used is that same way as the generic code.
  797.  *   Type 255 means error.
  798.  *
  799.  * Lengths are in units of 4bytes, not bytes.
  800.  */
  801. struct dentry * (*fh_to_dentry)(struct super_block *sb, __u32 *fh, int len, int fhtype, int parent);
  802. int (*dentry_to_fh)(struct dentry *, __u32 *fh, int *lenp, int need_parent);
  803. int (*show_options)(struct seq_file *, struct vfsmount *);
  804. };
  805. /* Inode state bits.. */
  806. #define I_DIRTY_SYNC 1 /* Not dirty enough for O_DATASYNC */
  807. #define I_DIRTY_DATASYNC 2 /* Data-related inode changes pending */
  808. #define I_DIRTY_PAGES 4 /* Data-related inode changes pending */
  809. #define I_LOCK 8
  810. #define I_FREEING 16
  811. #define I_CLEAR 32
  812. #define I_DIRTY (I_DIRTY_SYNC | I_DIRTY_DATASYNC | I_DIRTY_PAGES)
  813. extern void __mark_inode_dirty(struct inode *, int);
  814. static inline void mark_inode_dirty(struct inode *inode)
  815. {
  816. __mark_inode_dirty(inode, I_DIRTY);
  817. }
  818. static inline void mark_inode_dirty_sync(struct inode *inode)
  819. {
  820. __mark_inode_dirty(inode, I_DIRTY_SYNC);
  821. }
  822. static inline void mark_inode_dirty_pages(struct inode *inode)
  823. {
  824. __mark_inode_dirty(inode, I_DIRTY_PAGES);
  825. }
  826. struct dquot_operations {
  827. void (*initialize) (struct inode *, short);
  828. void (*drop) (struct inode *);
  829. int (*alloc_block) (struct inode *, unsigned long, char);
  830. int (*alloc_inode) (const struct inode *, unsigned long);
  831. void (*free_block) (struct inode *, unsigned long);
  832. void (*free_inode) (const struct inode *, unsigned long);
  833. int (*transfer) (struct inode *, struct iattr *);
  834. };
  835. struct file_system_type {
  836. const char *name;
  837. int fs_flags;
  838. struct super_block *(*read_super) (struct super_block *, void *, int);
  839. struct module *owner;
  840. struct file_system_type * next;
  841. struct list_head fs_supers;
  842. };
  843. #define DECLARE_FSTYPE(var,type,read,flags) 
  844. struct file_system_type var = { 
  845. name: type, 
  846. read_super: read, 
  847. fs_flags: flags, 
  848. owner: THIS_MODULE, 
  849. }
  850. #define DECLARE_FSTYPE_DEV(var,type,read) 
  851. DECLARE_FSTYPE(var,type,read,FS_REQUIRES_DEV)
  852. /* Alas, no aliases. Too much hassle with bringing module.h everywhere */
  853. #define fops_get(fops) 
  854. (((fops) && (fops)->owner)
  855. ? ( try_inc_mod_count((fops)->owner) ? (fops) : NULL ) 
  856. : (fops))
  857. #define fops_put(fops) 
  858. do {
  859. if ((fops) && (fops)->owner) 
  860. __MOD_DEC_USE_COUNT((fops)->owner);
  861. } while(0)
  862. extern int register_filesystem(struct file_system_type *);
  863. extern int unregister_filesystem(struct file_system_type *);
  864. extern struct vfsmount *kern_mount(struct file_system_type *);
  865. extern int may_umount(struct vfsmount *);
  866. extern long do_mount(char *, char *, char *, unsigned long, void *);
  867. #define kern_umount mntput
  868. extern int vfs_statfs(struct super_block *, struct statfs *);
  869. /* Return value for VFS lock functions - tells locks.c to lock conventionally
  870.  * REALLY kosha for root NFS and nfs_lock
  871.  */ 
  872. #define LOCK_USE_CLNT 1
  873. #define FLOCK_VERIFY_READ  1
  874. #define FLOCK_VERIFY_WRITE 2
  875. extern int locks_mandatory_locked(struct inode *);
  876. extern int locks_mandatory_area(int, struct inode *, struct file *, loff_t, size_t);
  877. /*
  878.  * Candidates for mandatory locking have the setgid bit set
  879.  * but no group execute bit -  an otherwise meaningless combination.
  880.  */
  881. #define MANDATORY_LOCK(inode) 
  882. (IS_MANDLOCK(inode) && ((inode)->i_mode & (S_ISGID | S_IXGRP)) == S_ISGID)
  883. static inline int locks_verify_locked(struct inode *inode)
  884. {
  885. if (MANDATORY_LOCK(inode))
  886. return locks_mandatory_locked(inode);
  887. return 0;
  888. }
  889. static inline int locks_verify_area(int read_write, struct inode *inode,
  890.     struct file *filp, loff_t offset,
  891.     size_t count)
  892. {
  893. if (inode->i_flock && MANDATORY_LOCK(inode))
  894. return locks_mandatory_area(read_write, inode, filp, offset, count);
  895. return 0;
  896. }
  897. static inline int locks_verify_truncate(struct inode *inode,
  898.     struct file *filp,
  899.     loff_t size)
  900. {
  901. if (inode->i_flock && MANDATORY_LOCK(inode))
  902. return locks_mandatory_area(
  903. FLOCK_VERIFY_WRITE, inode, filp,
  904. size < inode->i_size ? size : inode->i_size,
  905. (size < inode->i_size ? inode->i_size - size
  906.  : size - inode->i_size)
  907. );
  908. return 0;
  909. }
  910. static inline int get_lease(struct inode *inode, unsigned int mode)
  911. {
  912. if (inode->i_flock && (inode->i_flock->fl_flags & FL_LEASE))
  913. return __get_lease(inode, mode);
  914. return 0;
  915. }
  916. /* fs/open.c */
  917. asmlinkage long sys_open(const char *, int, int);
  918. asmlinkage long sys_close(unsigned int); /* yes, it's really unsigned */
  919. extern int do_truncate(struct dentry *, loff_t start);
  920. extern struct file *filp_open(const char *, int, int);
  921. extern struct file * dentry_open(struct dentry *, struct vfsmount *, int);
  922. extern int filp_close(struct file *, fl_owner_t id);
  923. extern char * getname(const char *);
  924. /* fs/dcache.c */
  925. extern void vfs_caches_init(unsigned long);
  926. #define __getname() kmem_cache_alloc(names_cachep, SLAB_KERNEL)
  927. #define putname(name) kmem_cache_free(names_cachep, (void *)(name))
  928. enum {BDEV_FILE, BDEV_SWAP, BDEV_FS, BDEV_RAW};
  929. extern int register_blkdev(unsigned int, const char *, struct block_device_operations *);
  930. extern int unregister_blkdev(unsigned int, const char *);
  931. extern struct block_device *bdget(dev_t);
  932. extern int bd_acquire(struct inode *inode);
  933. extern void bd_forget(struct inode *inode);
  934. extern void bdput(struct block_device *);
  935. extern struct char_device *cdget(dev_t);
  936. extern void cdput(struct char_device *);
  937. extern int blkdev_open(struct inode *, struct file *);
  938. extern int blkdev_close(struct inode *, struct file *);
  939. extern struct file_operations def_blk_fops;
  940. extern struct address_space_operations def_blk_aops;
  941. extern struct file_operations def_fifo_fops;
  942. extern int ioctl_by_bdev(struct block_device *, unsigned, unsigned long);
  943. extern int blkdev_get(struct block_device *, mode_t, unsigned, int);
  944. extern int blkdev_put(struct block_device *, int);
  945. /* fs/devices.c */
  946. extern const struct block_device_operations *get_blkfops(unsigned int);
  947. extern int register_chrdev(unsigned int, const char *, struct file_operations *);
  948. extern int unregister_chrdev(unsigned int, const char *);
  949. extern int chrdev_open(struct inode *, struct file *);
  950. extern const char * bdevname(kdev_t);
  951. extern const char * cdevname(kdev_t);
  952. extern const char * kdevname(kdev_t);
  953. extern void init_special_inode(struct inode *, umode_t, int);
  954. /* Invalid inode operations -- fs/bad_inode.c */
  955. extern void make_bad_inode(struct inode *);
  956. extern int is_bad_inode(struct inode *);
  957. extern struct file_operations read_fifo_fops;
  958. extern struct file_operations write_fifo_fops;
  959. extern struct file_operations rdwr_fifo_fops;
  960. extern struct file_operations read_pipe_fops;
  961. extern struct file_operations write_pipe_fops;
  962. extern struct file_operations rdwr_pipe_fops;
  963. extern int fs_may_remount_ro(struct super_block *);
  964. extern int try_to_free_buffers(struct page *, unsigned int);
  965. extern void refile_buffer(struct buffer_head * buf);
  966. extern void create_empty_buffers(struct page *, kdev_t, unsigned long);
  967. extern void end_buffer_io_sync(struct buffer_head *bh, int uptodate);
  968. /* reiserfs_writepage needs this */
  969. extern void set_buffer_async_io(struct buffer_head *bh) ;
  970. #define BUF_CLEAN 0
  971. #define BUF_LOCKED 1 /* Buffers scheduled for write */
  972. #define BUF_DIRTY 2 /* Dirty buffers, not yet scheduled for write */
  973. #define NR_LIST 3
  974. static inline void get_bh(struct buffer_head * bh)
  975. {
  976.         atomic_inc(&(bh)->b_count);
  977. }
  978. static inline void put_bh(struct buffer_head *bh)
  979. {
  980.         smp_mb__before_atomic_dec();
  981.         atomic_dec(&bh->b_count);
  982. }
  983. /*
  984.  * This is called by bh->b_end_io() handlers when I/O has completed.
  985.  */
  986. static inline void mark_buffer_uptodate(struct buffer_head * bh, int on)
  987. {
  988. if (on)
  989. set_bit(BH_Uptodate, &bh->b_state);
  990. else
  991. clear_bit(BH_Uptodate, &bh->b_state);
  992. }
  993. #define atomic_set_buffer_clean(bh) test_and_clear_bit(BH_Dirty, &(bh)->b_state)
  994. static inline void __mark_buffer_clean(struct buffer_head *bh)
  995. {
  996. refile_buffer(bh);
  997. }
  998. static inline void mark_buffer_clean(struct buffer_head * bh)
  999. {
  1000. if (atomic_set_buffer_clean(bh))
  1001. __mark_buffer_clean(bh);
  1002. }
  1003. extern void FASTCALL(__mark_dirty(struct buffer_head *bh));
  1004. extern void FASTCALL(__mark_buffer_dirty(struct buffer_head *bh));
  1005. extern void FASTCALL(mark_buffer_dirty(struct buffer_head *bh));
  1006. extern void FASTCALL(buffer_insert_inode_data_queue(struct buffer_head *, struct inode *));
  1007. #define atomic_set_buffer_dirty(bh) test_and_set_bit(BH_Dirty, &(bh)->b_state)
  1008. static inline void mark_buffer_async(struct buffer_head * bh, int on)
  1009. {
  1010. if (on)
  1011. set_bit(BH_Async, &bh->b_state);
  1012. else
  1013. clear_bit(BH_Async, &bh->b_state);
  1014. }
  1015. /*
  1016.  * If an error happens during the make_request, this function
  1017.  * has to be recalled. It marks the buffer as clean and not
  1018.  * uptodate, and it notifys the upper layer about the end
  1019.  * of the I/O.
  1020.  */
  1021. static inline void buffer_IO_error(struct buffer_head * bh)
  1022. {
  1023. mark_buffer_clean(bh);
  1024. /*
  1025.  * b_end_io has to clear the BH_Uptodate bitflag in the error case!
  1026.  */
  1027. bh->b_end_io(bh, 0);
  1028. }
  1029. extern void buffer_insert_inode_queue(struct buffer_head *, struct inode *);
  1030. static inline void mark_buffer_dirty_inode(struct buffer_head *bh, struct inode *inode)
  1031. {
  1032. mark_buffer_dirty(bh);
  1033. buffer_insert_inode_queue(bh, inode);
  1034. }
  1035. extern void set_buffer_flushtime(struct buffer_head *);
  1036. extern void balance_dirty(void);
  1037. extern int check_disk_change(kdev_t);
  1038. extern int invalidate_inodes(struct super_block *);
  1039. extern int invalidate_device(kdev_t, int);
  1040. extern void invalidate_inode_pages(struct inode *);
  1041. extern void invalidate_inode_pages2(struct address_space *);
  1042. extern void invalidate_inode_buffers(struct inode *);
  1043. #define invalidate_buffers(dev) __invalidate_buffers((dev), 0)
  1044. #define destroy_buffers(dev) __invalidate_buffers((dev), 1)
  1045. extern void invalidate_bdev(struct block_device *, int);
  1046. extern void __invalidate_buffers(kdev_t dev, int);
  1047. extern void sync_inodes(kdev_t);
  1048. extern void sync_unlocked_inodes(void);
  1049. extern void write_inode_now(struct inode *, int);
  1050. extern int sync_buffers(kdev_t, int);
  1051. extern void sync_dev(kdev_t);
  1052. extern int fsync_dev(kdev_t);
  1053. extern int fsync_super(struct super_block *);
  1054. extern int fsync_no_super(kdev_t);
  1055. extern void sync_inodes_sb(struct super_block *);
  1056. extern int osync_inode_buffers(struct inode *);
  1057. extern int osync_inode_data_buffers(struct inode *);
  1058. extern int fsync_inode_buffers(struct inode *);
  1059. extern int fsync_inode_data_buffers(struct inode *);
  1060. extern int inode_has_buffers(struct inode *);
  1061. extern int filemap_fdatasync(struct address_space *);
  1062. extern int filemap_fdatawait(struct address_space *);
  1063. extern void sync_supers(kdev_t);
  1064. extern int bmap(struct inode *, int);
  1065. extern int notify_change(struct dentry *, struct iattr *);
  1066. extern int permission(struct inode *, int);
  1067. extern int vfs_permission(struct inode *, int);
  1068. extern int get_write_access(struct inode *);
  1069. extern int deny_write_access(struct file *);
  1070. static inline void put_write_access(struct inode * inode)
  1071. {
  1072. atomic_dec(&inode->i_writecount);
  1073. }
  1074. static inline void allow_write_access(struct file *file)
  1075. {
  1076. if (file)
  1077. atomic_inc(&file->f_dentry->d_inode->i_writecount);
  1078. }
  1079. extern int do_pipe(int *);
  1080. extern int open_namei(const char *, int, int, struct nameidata *);
  1081. extern int kernel_read(struct file *, unsigned long, char *, unsigned long);
  1082. extern struct file * open_exec(const char *);
  1083.  
  1084. /* fs/dcache.c -- generic fs support functions */
  1085. extern int is_subdir(struct dentry *, struct dentry *);
  1086. extern ino_t find_inode_number(struct dentry *, struct qstr *);
  1087. /*
  1088.  * Kernel pointers have redundant information, so we can use a
  1089.  * scheme where we can return either an error code or a dentry
  1090.  * pointer with the same return value.
  1091.  *
  1092.  * This should be a per-architecture thing, to allow different
  1093.  * error and pointer decisions.
  1094.  */
  1095. static inline void *ERR_PTR(long error)
  1096. {
  1097. return (void *) error;
  1098. }
  1099. static inline long PTR_ERR(const void *ptr)
  1100. {
  1101. return (long) ptr;
  1102. }
  1103. static inline long IS_ERR(const void *ptr)
  1104. {
  1105. return (unsigned long)ptr > (unsigned long)-1000L;
  1106. }
  1107. /*
  1108.  * The bitmask for a lookup event:
  1109.  *  - follow links at the end
  1110.  *  - require a directory
  1111.  *  - ending slashes ok even for nonexistent files
  1112.  *  - internal "there are more path compnents" flag
  1113.  */
  1114. #define LOOKUP_FOLLOW (1)
  1115. #define LOOKUP_DIRECTORY (2)
  1116. #define LOOKUP_CONTINUE (4)
  1117. #define LOOKUP_POSITIVE (8)
  1118. #define LOOKUP_PARENT (16)
  1119. #define LOOKUP_NOALT (32)
  1120. /*
  1121.  * Type of the last component on LOOKUP_PARENT
  1122.  */
  1123. enum {LAST_NORM, LAST_ROOT, LAST_DOT, LAST_DOTDOT, LAST_BIND};
  1124. /*
  1125.  * "descriptor" for what we're up to with a read for sendfile().
  1126.  * This allows us to use the same read code yet
  1127.  * have multiple different users of the data that
  1128.  * we read from a file.
  1129.  *
  1130.  * The simplest case just copies the data to user
  1131.  * mode.
  1132.  */
  1133. typedef struct {
  1134. size_t written;
  1135. size_t count;
  1136. char * buf;
  1137. int error;
  1138. } read_descriptor_t;
  1139. typedef int (*read_actor_t)(read_descriptor_t *, struct page *, unsigned long, unsigned long);
  1140. /* needed for stackable file system support */
  1141. extern loff_t default_llseek(struct file *file, loff_t offset, int origin);
  1142. extern int FASTCALL(__user_walk(const char *, unsigned, struct nameidata *));
  1143. extern int FASTCALL(path_init(const char *, unsigned, struct nameidata *));
  1144. extern int FASTCALL(path_walk(const char *, struct nameidata *));
  1145. extern int FASTCALL(link_path_walk(const char *, struct nameidata *));
  1146. extern void path_release(struct nameidata *);
  1147. extern int follow_down(struct vfsmount **, struct dentry **);
  1148. extern int follow_up(struct vfsmount **, struct dentry **);
  1149. extern struct dentry * lookup_one_len(const char *, struct dentry *, int);
  1150. extern struct dentry * lookup_hash(struct qstr *, struct dentry *);
  1151. #define user_path_walk(name,nd)  __user_walk(name, LOOKUP_FOLLOW|LOOKUP_POSITIVE, nd)
  1152. #define user_path_walk_link(name,nd) __user_walk(name, LOOKUP_POSITIVE, nd)
  1153. extern void iput(struct inode *);
  1154. extern void force_delete(struct inode *);
  1155. extern struct inode * igrab(struct inode *);
  1156. extern ino_t iunique(struct super_block *, ino_t);
  1157. typedef int (*find_inode_t)(struct inode *, unsigned long, void *);
  1158. extern struct inode * iget4(struct super_block *, unsigned long, find_inode_t, void *);
  1159. static inline struct inode *iget(struct super_block *sb, unsigned long ino)
  1160. {
  1161. return iget4(sb, ino, NULL, NULL);
  1162. }
  1163. extern void clear_inode(struct inode *);
  1164. extern struct inode * get_empty_inode(void);
  1165. static inline struct inode * new_inode(struct super_block *sb)
  1166. {
  1167. struct inode *inode = get_empty_inode();
  1168. if (inode) {
  1169. inode->i_sb = sb;
  1170. inode->i_dev = sb->s_dev;
  1171. inode->i_blkbits = sb->s_blocksize_bits;
  1172. }
  1173. return inode;
  1174. }
  1175. extern void remove_suid(struct inode *inode);
  1176. extern void insert_inode_hash(struct inode *);
  1177. extern void remove_inode_hash(struct inode *);
  1178. extern struct file * get_empty_filp(void);
  1179. extern void file_move(struct file *f, struct list_head *list);
  1180. extern struct buffer_head * get_hash_table(kdev_t, int, int);
  1181. extern struct buffer_head * getblk(kdev_t, int, int);
  1182. extern void ll_rw_block(int, int, struct buffer_head * bh[]);
  1183. extern void submit_bh(int, struct buffer_head *);
  1184. extern int is_read_only(kdev_t);
  1185. extern void __brelse(struct buffer_head *);
  1186. static inline void brelse(struct buffer_head *buf)
  1187. {
  1188. if (buf)
  1189. __brelse(buf);
  1190. }
  1191. extern void __bforget(struct buffer_head *);
  1192. static inline void bforget(struct buffer_head *buf)
  1193. {
  1194. if (buf)
  1195. __bforget(buf);
  1196. }
  1197. extern int set_blocksize(kdev_t, int);
  1198. extern struct buffer_head * bread(kdev_t, int, int);
  1199. static inline struct buffer_head * sb_bread(struct super_block *sb, int block)
  1200. {
  1201. return bread(sb->s_dev, block, sb->s_blocksize);
  1202. }
  1203. static inline struct buffer_head * sb_getblk(struct super_block *sb, int block)
  1204. {
  1205. return getblk(sb->s_dev, block, sb->s_blocksize);
  1206. }
  1207. static inline struct buffer_head * sb_get_hash_table(struct super_block *sb, int block)
  1208. {
  1209. return get_hash_table(sb->s_dev, block, sb->s_blocksize);
  1210. }
  1211. extern void wakeup_bdflush(void);
  1212. extern void put_unused_buffer_head(struct buffer_head * bh);
  1213. extern struct buffer_head * get_unused_buffer_head(int async);
  1214. extern int brw_page(int, struct page *, kdev_t, int [], int);
  1215. typedef int (get_block_t)(struct inode*,long,struct buffer_head*,int);
  1216. /* Generic buffer handling for block filesystems.. */
  1217. extern int try_to_release_page(struct page * page, int gfp_mask);
  1218. extern int discard_bh_page(struct page *, unsigned long, int);
  1219. #define block_flushpage(page, offset) discard_bh_page(page, offset, 1)
  1220. #define block_invalidate_page(page) discard_bh_page(page, 0, 0)
  1221. extern int block_symlink(struct inode *, const char *, int);
  1222. extern int block_write_full_page(struct page*, get_block_t*);
  1223. extern int block_read_full_page(struct page*, get_block_t*);
  1224. extern int block_prepare_write(struct page*, unsigned, unsigned, get_block_t*);
  1225. extern int cont_prepare_write(struct page*, unsigned, unsigned, get_block_t*,
  1226. unsigned long *);
  1227. extern int generic_cont_expand(struct inode *inode, loff_t size) ;
  1228. extern int block_commit_write(struct page *page, unsigned from, unsigned to);
  1229. extern int block_sync_page(struct page *);
  1230. int generic_block_bmap(struct address_space *, long, get_block_t *);
  1231. int generic_commit_write(struct file *, struct page *, unsigned, unsigned);
  1232. int block_truncate_page(struct address_space *, loff_t, get_block_t *);
  1233. extern int generic_direct_IO(int, struct inode *, struct kiobuf *, unsigned long, int, get_block_t *);
  1234. extern int waitfor_one_page(struct page *);
  1235. extern int writeout_one_page(struct page *);
  1236. extern int generic_file_mmap(struct file *, struct vm_area_struct *);
  1237. extern int file_read_actor(read_descriptor_t * desc, struct page *page, unsigned long offset, unsigned long size);
  1238. extern ssize_t generic_file_read(struct file *, char *, size_t, loff_t *);
  1239. extern ssize_t generic_file_write(struct file *, const char *, size_t, loff_t *);
  1240. extern void do_generic_file_read(struct file *, loff_t *, read_descriptor_t *, read_actor_t);
  1241. extern loff_t no_llseek(struct file *file, loff_t offset, int origin);
  1242. extern loff_t generic_file_llseek(struct file *file, loff_t offset, int origin);
  1243. extern ssize_t generic_read_dir(struct file *, char *, size_t, loff_t *);
  1244. extern int generic_file_open(struct inode * inode, struct file * filp);
  1245. extern struct file_operations generic_ro_fops;
  1246. extern int vfs_readlink(struct dentry *, char *, int, const char *);
  1247. extern int vfs_follow_link(struct nameidata *, const char *);
  1248. extern int page_readlink(struct dentry *, char *, int);
  1249. extern int page_follow_link(struct dentry *, struct nameidata *);
  1250. extern struct inode_operations page_symlink_inode_operations;
  1251. extern int vfs_readdir(struct file *, filldir_t, void *);
  1252. extern int dcache_readdir(struct file *, void *, filldir_t);
  1253. extern struct file_system_type *get_fs_type(const char *name);
  1254. extern struct super_block *get_super(kdev_t);
  1255. extern void drop_super(struct super_block *sb);
  1256. static inline int is_mounted(kdev_t dev)
  1257. {
  1258. struct super_block *sb = get_super(dev);
  1259. if (sb) {
  1260. drop_super(sb);
  1261. return 1;
  1262. }
  1263. return 0;
  1264. }
  1265. unsigned long generate_cluster(kdev_t, int b[], int);
  1266. unsigned long generate_cluster_swab32(kdev_t, int b[], int);
  1267. extern kdev_t ROOT_DEV;
  1268. extern char root_device_name[];
  1269. extern void show_buffers(void);
  1270. extern void mount_root(void);
  1271. #ifdef CONFIG_BLK_DEV_INITRD
  1272. extern unsigned int real_root_dev;
  1273. extern int change_root(kdev_t, const char *);
  1274. #endif
  1275. extern ssize_t char_read(struct file *, char *, size_t, loff_t *);
  1276. extern ssize_t block_read(struct file *, char *, size_t, loff_t *);
  1277. extern int read_ahead[];
  1278. extern ssize_t char_write(struct file *, const char *, size_t, loff_t *);
  1279. extern ssize_t block_write(struct file *, const char *, size_t, loff_t *);
  1280. extern int file_fsync(struct file *, struct dentry *, int);
  1281. extern int generic_buffer_fdatasync(struct inode *inode, unsigned long start_idx, unsigned long end_idx);
  1282. extern int generic_osync_inode(struct inode *, int);
  1283. #define OSYNC_METADATA (1<<0)
  1284. #define OSYNC_DATA (1<<1)
  1285. #define OSYNC_INODE (1<<2)
  1286. extern int inode_change_ok(struct inode *, struct iattr *);
  1287. extern int inode_setattr(struct inode *, struct iattr *);
  1288. /*
  1289.  * Common dentry functions for inclusion in the VFS
  1290.  * or in other stackable file systems.  Some of these
  1291.  * functions were in linux/fs/ C (VFS) files.
  1292.  *
  1293.  */
  1294. /*
  1295.  * Locking the parent is needed to:
  1296.  *  - serialize directory operations
  1297.  *  - make sure the parent doesn't change from
  1298.  *    under us in the middle of an operation.
  1299.  *
  1300.  * NOTE! Right now we'd rather use a "struct inode"
  1301.  * for this, but as I expect things to move toward
  1302.  * using dentries instead for most things it is
  1303.  * probably better to start with the conceptually
  1304.  * better interface of relying on a path of dentries.
  1305.  */
  1306. static inline struct dentry *lock_parent(struct dentry *dentry)
  1307. {
  1308. struct dentry *dir = dget(dentry->d_parent);
  1309. down(&dir->d_inode->i_sem);
  1310. return dir;
  1311. }
  1312. static inline struct dentry *get_parent(struct dentry *dentry)
  1313. {
  1314. return dget(dentry->d_parent);
  1315. }
  1316. static inline void unlock_dir(struct dentry *dir)
  1317. {
  1318. up(&dir->d_inode->i_sem);
  1319. dput(dir);
  1320. }
  1321. /*
  1322.  * Whee.. Deadlock country. Happily there are only two VFS
  1323.  * operations that does this..
  1324.  */
  1325. static inline void double_down(struct semaphore *s1, struct semaphore *s2)
  1326. {
  1327. if (s1 != s2) {
  1328. if ((unsigned long) s1 < (unsigned long) s2) {
  1329. struct semaphore *tmp = s2;
  1330. s2 = s1; s1 = tmp;
  1331. }
  1332. down(s1);
  1333. }
  1334. down(s2);
  1335. }
  1336. /*
  1337.  * Ewwwwwwww... _triple_ lock. We are guaranteed that the 3rd argument is
  1338.  * not equal to 1st and not equal to 2nd - the first case (target is parent of
  1339.  * source) would be already caught, the second is plain impossible (target is
  1340.  * its own parent and that case would be caught even earlier). Very messy.
  1341.  * I _think_ that it works, but no warranties - please, look it through.
  1342.  * Pox on bloody lusers who mandated overwriting rename() for directories...
  1343.  */
  1344. static inline void triple_down(struct semaphore *s1,
  1345.        struct semaphore *s2,
  1346.        struct semaphore *s3)
  1347. {
  1348. if (s1 != s2) {
  1349. if ((unsigned long) s1 < (unsigned long) s2) {
  1350. if ((unsigned long) s1 < (unsigned long) s3) {
  1351. struct semaphore *tmp = s3;
  1352. s3 = s1; s1 = tmp;
  1353. }
  1354. if ((unsigned long) s1 < (unsigned long) s2) {
  1355. struct semaphore *tmp = s2;
  1356. s2 = s1; s1 = tmp;
  1357. }
  1358. } else {
  1359. if ((unsigned long) s1 < (unsigned long) s3) {
  1360. struct semaphore *tmp = s3;
  1361. s3 = s1; s1 = tmp;
  1362. }
  1363. if ((unsigned long) s2 < (unsigned long) s3) {
  1364. struct semaphore *tmp = s3;
  1365. s3 = s2; s2 = tmp;
  1366. }
  1367. }
  1368. down(s1);
  1369. } else if ((unsigned long) s2 < (unsigned long) s3) {
  1370. struct semaphore *tmp = s3;
  1371. s3 = s2; s2 = tmp;
  1372. }
  1373. down(s2);
  1374. down(s3);
  1375. }
  1376. static inline void double_up(struct semaphore *s1, struct semaphore *s2)
  1377. {
  1378. up(s1);
  1379. if (s1 != s2)
  1380. up(s2);
  1381. }
  1382. static inline void triple_up(struct semaphore *s1,
  1383.      struct semaphore *s2,
  1384.      struct semaphore *s3)
  1385. {
  1386. up(s1);
  1387. if (s1 != s2)
  1388. up(s2);
  1389. up(s3);
  1390. }
  1391. static inline void double_lock(struct dentry *d1, struct dentry *d2)
  1392. {
  1393. double_down(&d1->d_inode->i_sem, &d2->d_inode->i_sem);
  1394. }
  1395. static inline void double_unlock(struct dentry *d1, struct dentry *d2)
  1396. {
  1397. double_up(&d1->d_inode->i_sem,&d2->d_inode->i_sem);
  1398. dput(d1);
  1399. dput(d2);
  1400. }
  1401. #endif /* __KERNEL__ */
  1402. #endif /* _LINUX_FS_H */