root/include/linux/msdos_fs.h

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

INCLUDED FROM


DEFINITIONS

This source file includes following definitions.
  1. msdos_sread

   1 #ifndef _LINUX_MSDOS_FS_H
   2 #define _LINUX_MSDOS_FS_H
   3 
   4 /*
   5  * The MS-DOS filesystem constants/structures
   6  */
   7 #include <linux/fs.h>
   8 #include <linux/stat.h>
   9 #include <linux/fd.h>
  10 
  11 #define MSDOS_ROOT_INO  1 /* == MINIX_ROOT_INO */
  12 #define SECTOR_SIZE     512 /* sector size (bytes) */
  13 #define SECTOR_BITS     9 /* log2(SECTOR_SIZE) */
  14 #define MSDOS_DPB       (MSDOS_DPS*2) /* dir entries per block */
  15 #define MSDOS_DPB_BITS  5 /* log2(MSDOS_DPB) */
  16 #define MSDOS_DPS       (SECTOR_SIZE/sizeof(struct msdos_dir_entry))
  17 #define MSDOS_DPS_BITS  4 /* log2(MSDOS_DPS) */
  18 #define MSDOS_DIR_BITS  5 /* log2(sizeof(struct msdos_dir_entry)) */
  19 
  20 #define MSDOS_SUPER_MAGIC 0x4d44 /* MD */
  21 
  22 #define FAT_CACHE    8 /* FAT cache size */
  23 
  24 #define ATTR_RO      1  /* read-only */
  25 #define ATTR_HIDDEN  2  /* hidden */
  26 #define ATTR_SYS     4  /* system */
  27 #define ATTR_VOLUME  8  /* volume label */
  28 #define ATTR_DIR     16 /* directory */
  29 #define ATTR_ARCH    32 /* archived */
  30 
  31 #define ATTR_NONE    0 /* no attribute bits */
  32 #define ATTR_UNUSED  (ATTR_VOLUME | ATTR_ARCH | ATTR_SYS | ATTR_HIDDEN)
  33         /* attribute bits that are copied "as is" */
  34 
  35 #define DELETED_FLAG 0xe5 /* marks file as deleted when in name[0] */
  36 #define IS_FREE(n) (!*(n) || *(unsigned char *) (n) == DELETED_FLAG || \
  37   *(unsigned char *) (n) == FD_FILL_BYTE)
  38 
  39 #define MSDOS_VALID_MODE (S_IFREG | S_IFDIR | S_IRWXU | S_IRWXG | S_IRWXO)
  40         /* valid file mode bits */
  41 
  42 #define MSDOS_SB(s) (&((s)->u.msdos_sb))
  43 #define MSDOS_I(i) (&((i)->u.msdos_i))
  44 
  45 #define MSDOS_NAME 11 /* maximum name length */
  46 #define MSDOS_DOT    ".          " /* ".", padded to MSDOS_NAME chars */
  47 #define MSDOS_DOTDOT "..         " /* "..", padded to MSDOS_NAME chars */
  48 
  49 #define MSDOS_FAT12 4078 /* maximum number of clusters in a 12 bit FAT */
  50 
  51 /*
  52  * Conversion from and to little-endian byte order. (no-op on i386/i486)
  53  *
  54  * Naming: Ca_b_c, where a: F = from, T = to, b: LE = little-endian, BE = big-
  55  * endian, c: W = word (16 bits), L = longword (32 bits)
  56  */
  57 
  58 #define CF_LE_W(v) (v)
  59 #define CF_LE_L(v) (v)
  60 #define CT_LE_W(v) (v)
  61 #define CT_LE_L(v) (v)
  62 
  63 
  64 struct msdos_boot_sector {
  65         char ignored[3];            /* Boot strap short or near jump */
  66         char system_id[8];          /* Name - can be used to special case
  67                                        partition manager volumes */
  68         unsigned char sector_size[2];/* bytes per logical sector */
  69         unsigned char cluster_size; /* sectors/cluster */
  70         unsigned short reserved;    /* reserved sectors */
  71         unsigned char fats;         /* number of FATs */
  72         unsigned char dir_entries[2];/* root directory entries */
  73         unsigned char sectors[2];   /* number of sectors */
  74         unsigned char media;        /* media code (unused) */
  75         unsigned short fat_length;  /* sectors/FAT */
  76         unsigned short secs_track;  /* sectors per track */
  77         unsigned short heads;       /* number of heads */
  78         unsigned long hidden;       /* hidden sectors (unused) */
  79         unsigned long total_sect;   /* number of sectors (if sectors == 0) */
  80 };
  81 
  82 struct msdos_dir_entry {
  83         char name[8],ext[3]; /* name and extension */
  84         unsigned char attr;  /* attribute bits */
  85         char unused[10];
  86         unsigned short time,date,start; /* time, date and first cluster */
  87         unsigned long size;  /* file size (in bytes) */
  88 };
  89 
  90 struct fat_cache {
  91         int device; /* device number. 0 means unused. */
  92         int ino; /* inode number. */
  93         int file_cluster; /* cluster number in the file. */
  94         int disk_cluster; /* cluster number on disk. */
  95         struct fat_cache *next; /* next cache entry */
  96 };
  97 
  98 /* Determine whether this FS has kB-aligned data. */
  99 
 100 #define MSDOS_CAN_BMAP(mib) (!(((mib)->cluster_size & 1) || \
 101     ((mib)->data_start & 1)))
 102 
 103 /* Convert attribute bits and a mask to the UNIX mode. */
 104 
 105 #define MSDOS_MKMODE(a,m) (m & (a & ATTR_RO ? S_IRUGO|S_IXUGO : S_IRWXUGO))
 106 
 107 /* Convert the UNIX mode to MS-DOS attribute bits. */
 108 
 109 #define MSDOS_MKATTR(m) ((m & S_IWUGO) ? ATTR_NONE : ATTR_RO)
 110 
 111 #ifdef __KERNEL__
 112 
 113 static inline struct buffer_head *msdos_sread(int dev,int sector,void **start)
     /* [previous][next][first][last][top][bottom][index][help] */
 114 {
 115         struct buffer_head *bh;
 116 
 117         if (!(bh = bread(dev,sector >> 1, 1024)))
 118                 return NULL;
 119         *start = bh->b_data+((sector & 1) << SECTOR_BITS);
 120         return bh;
 121 }
 122 
 123 
 124 /* misc.c */
 125 
 126 extern void fs_panic(struct super_block *s,char *msg);
 127 extern int is_binary(char conversion,char *extension);
 128 extern void lock_creation(void);
 129 extern void unlock_creation(void);
 130 extern void lock_fat(struct super_block *sb);
 131 extern void unlock_fat(struct super_block *sb);
 132 extern int msdos_add_cluster(struct inode *inode);
 133 extern int date_dos2unix(unsigned short time,unsigned short date);
 134 extern void date_unix2dos(int unix_date,unsigned short *time,
 135     unsigned short *date);
 136 extern int msdos_get_entry(struct inode *dir,loff_t *pos,struct buffer_head **bh,
 137     struct msdos_dir_entry **de);
 138 extern int msdos_scan(struct inode *dir,char *name,struct buffer_head **res_bh,
 139     struct msdos_dir_entry **res_de,int *ino);
 140 extern int msdos_parent_ino(struct inode *dir,int locked);
 141 extern int msdos_subdirs(struct inode *dir);
 142 
 143 /* fat.c */
 144 
 145 extern int fat_access(struct super_block *sb,int nr,int new_value);
 146 extern int msdos_smap(struct inode *inode,int sector);
 147 extern int fat_free(struct inode *inode,int skip);
 148 extern void cache_init(void);
 149 void cache_lookup(struct inode *inode,int cluster,int *f_clu,int *d_clu);
 150 void cache_add(struct inode *inode,int f_clu,int d_clu);
 151 void cache_inval_inode(struct inode *inode);
 152 void cache_inval_dev(int device);
 153 int get_cluster(struct inode *inode,int cluster);
 154 
 155 /* namei.c */
 156 
 157 extern int msdos_lookup(struct inode *dir,const char *name,int len,
 158         struct inode **result);
 159 extern int msdos_create(struct inode *dir,const char *name,int len,int mode,
 160         struct inode **result);
 161 extern int msdos_mkdir(struct inode *dir,const char *name,int len,int mode);
 162 extern int msdos_rmdir(struct inode *dir,const char *name,int len);
 163 extern int msdos_unlink(struct inode *dir,const char *name,int len);
 164 extern int msdos_unlink_umsdos(struct inode *dir,const char *name,int len);
 165 extern int msdos_rename(struct inode *old_dir,const char *old_name,int old_len,
 166         struct inode *new_dir,const char *new_name,int new_len);
 167 
 168 /* inode.c */
 169 
 170 extern void msdos_put_inode(struct inode *inode);
 171 extern void msdos_put_super(struct super_block *sb);
 172 extern struct super_block *msdos_read_super(struct super_block *s,
 173                                             void *data,int);
 174 extern void msdos_statfs(struct super_block *sb,struct statfs *buf);
 175 extern int msdos_bmap(struct inode *inode,int block);
 176 extern void msdos_read_inode(struct inode *inode);
 177 extern void msdos_write_inode(struct inode *inode);
 178 extern int msdos_notify_change(struct inode *,struct iattr *);
 179 
 180 /* dir.c */
 181 
 182 extern struct inode_operations msdos_dir_inode_operations;
 183 extern int msdos_readdir (struct inode *inode, struct file *filp,
 184         struct dirent *dirent, int count);
 185 /* file.c */
 186 
 187 extern struct inode_operations msdos_file_inode_operations;
 188 extern int msdos_file_read(struct inode *, struct file *, char *, int);
 189 extern int msdos_file_write(struct inode *, struct file *, char *, int);
 190 extern struct inode_operations msdos_file_inode_operations_no_bmap;
 191 
 192 extern void msdos_truncate(struct inode *inode);
 193 
 194 /* mmap.c */
 195 extern int msdos_mmap(struct inode *, struct file *, struct vm_area_struct *);
 196 
 197 #endif /* __KERNEL__ */
 198 
 199 #endif

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