fs.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:54k
源码类别:

Linux/Unix编程

开发平台:

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