root/include/linux/fs.h

/* [previous][next][first][last][top][bottom][index][help] */

INCLUDED FROM


   1 #ifndef _LINUX_FS_H
   2 #define _LINUX_FS_H
   3 
   4 /*
   5  * This file has definitions for some important file table
   6  * structures etc.
   7  */
   8 
   9 #include <linux/limits.h>
  10 #include <linux/wait.h>
  11 #include <linux/types.h>
  12 #include <linux/dirent.h>
  13 #include <linux/vfs.h>
  14 
  15 /*
  16  * It's silly to have NR_OPEN bigger than NR_FILE, but I'll fix
  17  * that later. Anyway, now the file code is no longer dependent
  18  * on bitmaps in unsigned longs, but uses the new fd_set structure..
  19  *
  20  * Some programs (notably those using select()) may have to be 
  21  * recompiled to take full advantage of the new limits..
  22  */
  23 #undef NR_OPEN
  24 #define NR_OPEN 256
  25 
  26 #define NR_INODE 256
  27 #define NR_FILE 128
  28 #define NR_SUPER 16
  29 #define NR_HASH 997
  30 #define NR_FILE_LOCKS 32
  31 #define BLOCK_SIZE 1024
  32 #define BLOCK_SIZE_BITS 10
  33 #define MAX_CHRDEV 32
  34 #define MAX_BLKDEV 32
  35 
  36 /* devices are as follows: (same as minix, so we can use the minix
  37  * file system. These are major numbers.)
  38  *
  39  *  0 - unnamed (minor 0 = true nodev)
  40  *  1 - /dev/mem
  41  *  2 - /dev/fd
  42  *  3 - /dev/hd
  43  *  4 - /dev/ttyx
  44  *  5 - /dev/tty
  45  *  6 - /dev/lp
  46  *  7 -
  47  *  8 - /dev/sd
  48  *  9 - /dev/st
  49  * 10 - mice
  50  * 11 - scsi cdrom
  51  * 12 -
  52  * 13 -
  53  * 14 - sound card (?)
  54  * 15 -
  55  */
  56 
  57 #define UNNAMED_MAJOR 0
  58 
  59 #define MAY_EXEC 1
  60 #define MAY_WRITE 2
  61 #define MAY_READ 4
  62 
  63 #define READ 0
  64 #define WRITE 1
  65 #define READA 2         /* read-ahead - don't pause */
  66 #define WRITEA 3        /* "write-ahead" - silly, but somewhat useful */
  67 
  68 extern void buffer_init(void);
  69 extern unsigned long inode_init(unsigned long start, unsigned long end);
  70 
  71 #define MAJOR(a) (((unsigned)(a))>>8)
  72 #define MINOR(a) ((a)&0xff)
  73 
  74 #ifndef NULL
  75 #define NULL ((void *) 0)
  76 #endif
  77 
  78 #define NIL_FILP        ((struct file *)0)
  79 #define SEL_IN          1
  80 #define SEL_OUT         2
  81 #define SEL_EX          4
  82 
  83 /*
  84  * These are the fs-independent mount-flags: up to 16 flags are supported
  85  */
  86 #define MS_RDONLY    1 /* mount read-only */
  87 #define MS_NOSUID    2 /* ignore suid and sgid bits */
  88 #define MS_NODEV     4 /* disallow access to device special files */
  89 #define MS_NOEXEC    8 /* disallow program execution */
  90 #define MS_SYNC     16 /* writes are synced at once */
  91 #define MS_REMOUNT  32 /* alter flags of a mounted FS */
  92 
  93 /*
  94  * Flags that can be altered by MS_REMOUNT
  95  */
  96 #define MS_RMT_MASK (MS_RDONLY)
  97 
  98 /*
  99  * Magic mount flag number. Has to be or-ed to the flag values.
 100  */
 101 #define MS_MGC_VAL 0xC0ED0000 /* magic flag number to indicate "new" flags */
 102 #define MS_MGC_MSK 0xffff0000 /* magic flag number mask */
 103 
 104 /*
 105  * Note that read-only etc flags are inode-specific: setting some file-system
 106  * flags just means all the inodes inherit those flags by default. It might be
 107  * possible to overrride it sevelctively if you really wanted to with some
 108  * ioctl() that is not currently implemented.
 109  *
 110  * Exception: MS_RDONLY is always applied to the entire file system.
 111  */
 112 #define IS_RDONLY(inode) (((inode)->i_sb) && ((inode)->i_sb->s_flags & MS_RDONLY))
 113 #define IS_NOSUID(inode) ((inode)->i_flags & MS_NOSUID)
 114 #define IS_NODEV(inode) ((inode)->i_flags & MS_NODEV)
 115 #define IS_NOEXEC(inode) ((inode)->i_flags & MS_NOEXEC)
 116 #define IS_SYNC(inode) ((inode)->i_flags & MS_SYNC)
 117 
 118 /* the read-only stuff doesn't really belong here, but any other place is
 119    probably as bad and I don't want to create yet another include file. */
 120 
 121 #define BLKROSET 4701 /* set device read-only (0 = read-write) */
 122 #define BLKROGET 4702 /* get read-only status (0 = read_write) */
 123 #define BLKRRPART 4703 /* re-read partition table */
 124 #define BLKGETSIZE 4704 /* return device size */
 125 
 126 #define BMAP_IOCTL 1    /* obsolete - kept for compatibility */
 127 #define FIBMAP     1    /* bmap access */
 128 #define FIGETBSZ   2    /* get the block size used for bmap */
 129 
 130 /* these flags tell notify_change what is being changed */
 131 
 132 #define NOTIFY_SIZE     1
 133 #define NOTIFY_MODE     2
 134 #define NOTIFY_TIME     4
 135 #define NOTIFY_UIDGID   8
 136 
 137 typedef char buffer_block[BLOCK_SIZE];
 138 
 139 struct buffer_head {
 140         char * b_data;                  /* pointer to data block (1024 bytes) */
 141         unsigned long b_size;           /* block size */
 142         unsigned long b_blocknr;        /* block number */
 143         dev_t b_dev;                    /* device (0 = free) */
 144         unsigned short b_count;         /* users using this block */
 145         unsigned char b_uptodate;
 146         unsigned char b_dirt;           /* 0-clean,1-dirty */
 147         unsigned char b_lock;           /* 0 - ok, 1 -locked */
 148         struct wait_queue * b_wait;
 149         struct buffer_head * b_prev;            /* doubly linked list of hash-queue */
 150         struct buffer_head * b_next;
 151         struct buffer_head * b_prev_free;       /* doubly linked list of buffers */
 152         struct buffer_head * b_next_free;
 153         struct buffer_head * b_this_page;       /* circular list of buffers in one page */
 154         struct buffer_head * b_reqnext;         /* request queue */
 155 };
 156 
 157 #include <linux/pipe_fs_i.h>
 158 #include <linux/minix_fs_i.h>
 159 #include <linux/ext_fs_i.h>
 160 #include <linux/ext2_fs_i.h>
 161 #include <linux/msdos_fs_i.h>
 162 #include <linux/iso_fs_i.h>
 163 #include <linux/nfs_fs_i.h>
 164 #include <linux/xia_fs_i.h>
 165 
 166 struct inode {
 167         dev_t           i_dev;
 168         unsigned long   i_ino;
 169         umode_t         i_mode;
 170         nlink_t         i_nlink;
 171         uid_t           i_uid;
 172         gid_t           i_gid;
 173         dev_t           i_rdev;
 174         off_t           i_size;
 175         time_t          i_atime;
 176         time_t          i_mtime;
 177         time_t          i_ctime;
 178         unsigned long   i_blksize;
 179         unsigned long   i_blocks;
 180         struct inode_operations * i_op;
 181         struct super_block * i_sb;
 182         struct wait_queue * i_wait;
 183         struct file_lock * i_flock;
 184         struct vm_area_struct * i_mmap;
 185         struct inode * i_next, * i_prev;
 186         struct inode * i_hash_next, * i_hash_prev;
 187         struct inode * i_bound_to, * i_bound_by;
 188         unsigned short i_count;
 189         unsigned short i_flags;
 190         unsigned char i_lock;
 191         unsigned char i_dirt;
 192         unsigned char i_pipe;
 193         unsigned char i_mount;
 194         unsigned char i_seek;
 195         unsigned char i_update;
 196         union {
 197                 struct pipe_inode_info pipe_i;
 198                 struct minix_inode_info minix_i;
 199                 struct ext_inode_info ext_i;
 200                 struct ext2_inode_info ext2_i;
 201                 struct msdos_inode_info msdos_i;
 202                 struct iso_inode_info isofs_i;
 203                 struct nfs_inode_info nfs_i;
 204                 struct xiafs_inode_info xiafs_i;
 205         } u;
 206 };
 207 
 208 struct file {
 209         mode_t f_mode;
 210         dev_t f_rdev;                   /* needed for /dev/tty */
 211         off_t f_pos;
 212         unsigned short f_flags;
 213         unsigned short f_count;
 214         unsigned short f_reada;
 215         struct inode * f_inode;
 216         struct file_operations * f_op;
 217 };
 218 
 219 struct file_lock {
 220         struct file_lock *fl_next;      /* singly linked list */
 221         struct task_struct *fl_owner;   /* NULL if on free list, for sanity checks */
 222         struct wait_queue *fl_wait;
 223         char fl_type;
 224         char fl_whence;
 225         off_t fl_start;
 226         off_t fl_end;
 227 };
 228 
 229 #include <linux/minix_fs_sb.h>
 230 #include <linux/ext_fs_sb.h>
 231 #include <linux/ext2_fs_sb.h>
 232 #include <linux/msdos_fs_sb.h>
 233 #include <linux/iso_fs_sb.h>
 234 #include <linux/nfs_fs_sb.h>
 235 #include <linux/xia_fs_sb.h>
 236 
 237 struct super_block {
 238         dev_t s_dev;
 239         unsigned long s_blocksize;
 240         unsigned char s_lock;
 241         unsigned char s_rd_only;
 242         unsigned char s_dirt;
 243         struct super_operations *s_op;
 244         unsigned long s_flags;
 245         unsigned long s_magic;
 246         unsigned long s_time;
 247         struct inode * s_covered;
 248         struct inode * s_mounted;
 249         struct wait_queue * s_wait;
 250         union {
 251                 struct minix_sb_info minix_sb;
 252                 struct ext_sb_info ext_sb;
 253                 struct ext2_sb_info ext2_sb;
 254                 struct msdos_sb_info msdos_sb;
 255                 struct isofs_sb_info isofs_sb;
 256                 struct nfs_sb_info nfs_sb;
 257                 struct xiafs_sb_info xiafs_sb;
 258         } u;
 259 };
 260 
 261 struct file_operations {
 262         int (*lseek) (struct inode *, struct file *, off_t, int);
 263         int (*read) (struct inode *, struct file *, char *, int);
 264         int (*write) (struct inode *, struct file *, char *, int);
 265         int (*readdir) (struct inode *, struct file *, struct dirent *, int);
 266         int (*select) (struct inode *, struct file *, int, select_table *);
 267         int (*ioctl) (struct inode *, struct file *, unsigned int, unsigned int);
 268         int (*mmap) (struct inode *, struct file *, unsigned long, size_t, int, unsigned long);
 269         int (*open) (struct inode *, struct file *);
 270         void (*release) (struct inode *, struct file *);
 271         int (*fsync) (struct inode *, struct file *);
 272 };
 273 
 274 struct inode_operations {
 275         struct file_operations * default_file_ops;
 276         int (*create) (struct inode *,const char *,int,int,struct inode **);
 277         int (*lookup) (struct inode *,const char *,int,struct inode **);
 278         int (*link) (struct inode *,struct inode *,const char *,int);
 279         int (*unlink) (struct inode *,const char *,int);
 280         int (*symlink) (struct inode *,const char *,int,const char *);
 281         int (*mkdir) (struct inode *,const char *,int,int);
 282         int (*rmdir) (struct inode *,const char *,int);
 283         int (*mknod) (struct inode *,const char *,int,int,int);
 284         int (*rename) (struct inode *,const char *,int,struct inode *,const char *,int);
 285         int (*readlink) (struct inode *,char *,int);
 286         int (*follow_link) (struct inode *,struct inode *,int,int,struct inode **);
 287         int (*bmap) (struct inode *,int);
 288         void (*truncate) (struct inode *);
 289         int (*permission) (struct inode *, int);
 290 };
 291 
 292 struct super_operations {
 293         void (*read_inode) (struct inode *);
 294         int (*notify_change) (int flags, struct inode *);
 295         void (*write_inode) (struct inode *);
 296         void (*put_inode) (struct inode *);
 297         void (*put_super) (struct super_block *);
 298         void (*write_super) (struct super_block *);
 299         void (*statfs) (struct super_block *, struct statfs *);
 300 };
 301 
 302 struct file_system_type {
 303         struct super_block *(*read_super) (struct super_block *, void *, int);
 304         char *name;
 305         int requires_dev;
 306 };
 307 
 308 extern int getname(const char * filename, char **result);
 309 extern void putname(char * name);
 310 
 311 extern int register_blkdev(unsigned int, const char *, struct file_operations *);
 312 extern int blkdev_open(struct inode * inode, struct file * filp);
 313 extern struct file_operations def_blk_fops;
 314 extern struct inode_operations blkdev_inode_operations;
 315 
 316 extern int register_chrdev(unsigned int, const char *, struct file_operations *);
 317 extern int chrdev_open(struct inode * inode, struct file * filp);
 318 extern struct file_operations def_chr_fops;
 319 extern struct inode_operations chrdev_inode_operations;
 320 
 321 extern void init_fifo(struct inode * inode);
 322 
 323 extern struct file_system_type *get_fs_type(char *name);
 324 
 325 extern int fs_may_mount(dev_t dev);
 326 extern int fs_may_umount(dev_t dev, struct inode * mount_root);
 327 
 328 extern struct file file_table[NR_FILE];
 329 extern struct super_block super_block[NR_SUPER];
 330 
 331 extern void grow_buffers(int size);
 332 extern int shrink_buffers(unsigned int priority);
 333 
 334 extern int nr_buffers;
 335 extern int buffermem;
 336 extern int nr_buffer_heads;
 337 
 338 extern void check_disk_change(dev_t dev);
 339 extern void invalidate_inodes(dev_t dev);
 340 extern void invalidate_buffers(dev_t dev);
 341 extern int floppy_change(struct buffer_head * first_block);
 342 extern int ticks_to_floppy_on(unsigned int dev);
 343 extern void floppy_on(unsigned int dev);
 344 extern void floppy_off(unsigned int dev);
 345 extern void sync_inodes(dev_t dev);
 346 extern void sync_dev(dev_t dev);
 347 extern void sync_supers(dev_t dev);
 348 extern int bmap(struct inode * inode,int block);
 349 extern int notify_change(int flags, struct inode * inode);
 350 extern int namei(const char * pathname, struct inode ** res_inode);
 351 extern int lnamei(const char * pathname, struct inode ** res_inode);
 352 extern int permission(struct inode * inode,int mask);
 353 extern int open_namei(const char * pathname, int flag, int mode,
 354         struct inode ** res_inode, struct inode * base);
 355 extern int do_mknod(const char * filename, int mode, dev_t dev);
 356 extern void iput(struct inode * inode);
 357 extern struct inode * iget(struct super_block * sb,int nr);
 358 extern struct inode * get_empty_inode(void);
 359 extern void clear_inode(struct inode *);
 360 extern struct inode * get_pipe_inode(void);
 361 extern struct file * get_empty_filp(void);
 362 extern struct buffer_head * get_hash_table(dev_t dev, int block, int size);
 363 extern struct buffer_head * getblk(dev_t dev, int block, int size);
 364 extern void ll_rw_block(int rw, int nr, struct buffer_head * bh[]);
 365 extern void ll_rw_page(int rw, int dev, int nr, char * buffer);
 366 extern void ll_rw_swap_file(int rw, int dev, unsigned int *b, int nb, char *buffer);
 367 extern void brelse(struct buffer_head * buf);
 368 extern struct buffer_head * bread(dev_t dev, int block, int size);
 369 extern unsigned long bread_page(unsigned long addr,dev_t dev,int b[],int size,int prot);
 370 extern struct buffer_head * breada(dev_t dev,int block,...);
 371 extern void put_super(dev_t dev);
 372 extern dev_t ROOT_DEV;
 373 
 374 extern void mount_root(void);
 375 
 376 extern int char_read(struct inode *, struct file *, char *, int);
 377 extern int block_read(struct inode *, struct file *, char *, int);
 378 extern int read_ahead[];
 379 
 380 extern int char_write(struct inode *, struct file *, char *, int);
 381 extern int block_write(struct inode *, struct file *, char *, int);
 382 
 383 #endif

/* [previous][next][first][last][top][bottom][index][help] */