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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/hpfs/hpfs_fn.h
  3.  *
  4.  *  Mikulas Patocka (mikulas@artax.karlin.mff.cuni.cz), 1998-1999
  5.  *
  6.  *  function headers
  7.  */
  8. //#define DBG
  9. //#define DEBUG_LOCKS
  10. #include <linux/fs.h>
  11. #include <linux/hpfs_fs.h>
  12. #include <linux/errno.h>
  13. #include <linux/slab.h>
  14. #include <linux/kernel.h>
  15. #include <linux/sched.h>
  16. #include <linux/locks.h>
  17. #include <linux/stat.h>
  18. #include <linux/string.h>
  19. #include <asm/bitops.h>
  20. #include <asm/segment.h>
  21. #include <asm/uaccess.h>
  22. #include <linux/smp_lock.h>
  23. #include <stdarg.h>
  24. #include "hpfs.h"
  25. #define memcpy_tofs memcpy
  26. #define memcpy_fromfs memcpy
  27. #define EIOERROR  EIO
  28. #define EFSERROR  EPERM
  29. #define EMEMERROR ENOMEM
  30. #define ANODE_ALLOC_FWD 512
  31. #define FNODE_ALLOC_FWD 0
  32. #define ALLOC_FWD_MIN 16
  33. #define ALLOC_FWD_MAX 128
  34. #define ALLOC_M 1
  35. #define FNODE_RD_AHEAD 16
  36. #define ANODE_RD_AHEAD 16
  37. #define DNODE_RD_AHEAD 4
  38. #define FREE_DNODES_ADD 58
  39. #define FREE_DNODES_DEL 29
  40. #define CHKCOND(x,y) if (!(x)) printk y
  41. #ifdef DBG
  42. #define PRINTK(x) printk x
  43. #else
  44. #undef PRINTK
  45. #define PRINTK(x)
  46. #endif
  47. typedef void nonconst; /* What this is for ? */
  48. /*
  49.  * local time (HPFS) to GMT (Unix)
  50.  */
  51. extern inline time_t local_to_gmt(struct super_block *s, time_t t)
  52. {
  53. extern struct timezone sys_tz;
  54. return t + sys_tz.tz_minuteswest * 60 + s->s_hpfs_timeshift;
  55. }
  56. extern inline time_t gmt_to_local(struct super_block *s, time_t t)
  57. {
  58. extern struct timezone sys_tz;
  59. return t - sys_tz.tz_minuteswest * 60 - s->s_hpfs_timeshift;
  60. }
  61. /*
  62.  * conv= options
  63.  */
  64. #define CONV_BINARY 0 /* no conversion */
  65. #define CONV_TEXT 1 /* crlf->newline */
  66. #define CONV_AUTO 2 /* decide based on file contents */
  67. /* Four 512-byte buffers and the 2k block obtained by concatenating them */
  68. struct quad_buffer_head {
  69. struct buffer_head *bh[4];
  70. void *data;
  71. };
  72. /* The b-tree down pointer from a dir entry */
  73. extern inline dnode_secno de_down_pointer (struct hpfs_dirent *de)
  74. {
  75.   CHKCOND(de->down,("HPFS: de_down_pointer: !de->downn"));
  76.   return *(dnode_secno *) ((void *) de + de->length - 4);
  77. }
  78. /* The first dir entry in a dnode */
  79. extern inline struct hpfs_dirent *dnode_first_de (struct dnode *dnode)
  80. {
  81.   return (void *) dnode->dirent;
  82. }
  83. /* The end+1 of the dir entries */
  84. extern inline struct hpfs_dirent *dnode_end_de (struct dnode *dnode)
  85. {
  86.   CHKCOND(dnode->first_free>=0x14 && dnode->first_free<=0xa00,("HPFS: dnode_end_de: dnode->first_free = %dn",(int)dnode->first_free));
  87.   return (void *) dnode + dnode->first_free;
  88. }
  89. /* The dir entry after dir entry de */
  90. extern inline struct hpfs_dirent *de_next_de (struct hpfs_dirent *de)
  91. {
  92.   CHKCOND(de->length>=0x20 && de->length<0x800,("HPFS: de_next_de: de->length = %dn",(int)de->length));
  93.   return (void *) de + de->length;
  94. }
  95. extern inline struct extended_attribute *fnode_ea(struct fnode *fnode)
  96. {
  97. return (struct extended_attribute *)((char *)fnode + fnode->ea_offs);
  98. }
  99. extern inline struct extended_attribute *fnode_end_ea(struct fnode *fnode)
  100. {
  101. return (struct extended_attribute *)((char *)fnode + fnode->ea_offs + fnode->ea_size_s);
  102. }
  103. extern inline struct extended_attribute *next_ea(struct extended_attribute *ea)
  104. {
  105. return (struct extended_attribute *)((char *)ea + 5 + ea->namelen + ea->valuelen);
  106. }
  107. extern inline secno ea_sec(struct extended_attribute *ea)
  108. {
  109. return *(secno *)((char *)ea + 9 + ea->namelen);
  110. }
  111. extern inline secno ea_len(struct extended_attribute *ea)
  112. {
  113. return *(secno *)((char *)ea + 5 + ea->namelen);
  114. }
  115. extern inline char *ea_data(struct extended_attribute *ea)
  116. {
  117. return (char *)((char *)ea + 5 + ea->namelen);
  118. }
  119. extern inline unsigned de_size(int namelen, secno down_ptr)
  120. {
  121. return ((0x1f + namelen + 3) & ~3) + (down_ptr ? 4 : 0);
  122. }
  123. extern inline void copy_de(struct hpfs_dirent *dst, struct hpfs_dirent *src)
  124. {
  125. int a = dst->down;
  126. int n = dst->not_8x3;
  127. if (!dst || !src) return;
  128. memcpy((char *)dst + 2, (char *)src + 2, 28);
  129. dst->down = a;
  130. dst->not_8x3 = n;
  131. }
  132. extern inline unsigned tstbits(unsigned *bmp, unsigned b, unsigned n)
  133. {
  134. int i;
  135. if ((b >= 0x4000) || (b + n - 1 >= 0x4000)) return n;
  136. if (!((bmp[(b & 0x3fff) >> 5] >> (b & 0x1f)) & 1)) return 1;
  137. for (i = 1; i < n; i++)
  138. if (/*b+i < 0x4000 &&*/ !((bmp[((b+i) & 0x3fff) >> 5] >> ((b+i) & 0x1f)) & 1))
  139. return i + 1;
  140. return 0;
  141. }
  142. /* alloc.c */
  143. int hpfs_chk_sectors(struct super_block *, secno, int, char *);
  144. secno hpfs_alloc_sector(struct super_block *, secno, unsigned, int, int);
  145. int hpfs_alloc_if_possible_nolock(struct super_block *, secno);
  146. int hpfs_alloc_if_possible(struct super_block *, secno);
  147. void hpfs_free_sectors(struct super_block *, secno, unsigned);
  148. int hpfs_check_free_dnodes(struct super_block *, int);
  149. void hpfs_free_dnode(struct super_block *, secno);
  150. struct dnode *hpfs_alloc_dnode(struct super_block *, secno, dnode_secno *, struct quad_buffer_head *, int);
  151. struct fnode *hpfs_alloc_fnode(struct super_block *, secno, fnode_secno *, struct buffer_head **);
  152. struct anode *hpfs_alloc_anode(struct super_block *, secno, anode_secno *, struct buffer_head **);
  153. /* anode.c */
  154. secno hpfs_bplus_lookup(struct super_block *, struct inode *, struct bplus_header *, unsigned, struct buffer_head *);
  155. secno hpfs_add_sector_to_btree(struct super_block *, secno, int, unsigned);
  156. void hpfs_remove_btree(struct super_block *, struct bplus_header *);
  157. int hpfs_ea_read(struct super_block *, secno, int, unsigned, unsigned, char *);
  158. int hpfs_ea_write(struct super_block *, secno, int, unsigned, unsigned, char *);
  159. void hpfs_ea_remove(struct super_block *, secno, int, unsigned);
  160. void hpfs_truncate_btree(struct super_block *, secno, int, unsigned);
  161. void hpfs_remove_fnode(struct super_block *, fnode_secno fno);
  162. /* buffer.c */
  163. void hpfs_lock_creation(struct super_block *);
  164. void hpfs_unlock_creation(struct super_block *);
  165. void hpfs_lock_iget(struct super_block *, int);
  166. void hpfs_unlock_iget(struct super_block *);
  167. void hpfs_lock_inode(struct inode *);
  168. void hpfs_unlock_inode(struct inode *);
  169. void hpfs_lock_2inodes(struct inode *, struct inode *);
  170. void hpfs_unlock_2inodes(struct inode *, struct inode *);
  171. void hpfs_lock_3inodes(struct inode *, struct inode *, struct inode *);
  172. void hpfs_unlock_3inodes(struct inode *, struct inode *, struct inode *);
  173. void *hpfs_map_sector(struct super_block *, unsigned, struct buffer_head **, int);
  174. void *hpfs_get_sector(struct super_block *, unsigned, struct buffer_head **);
  175. void *hpfs_map_4sectors(struct super_block *, unsigned, struct quad_buffer_head *, int);
  176. void *hpfs_get_4sectors(struct super_block *, unsigned, struct quad_buffer_head *);
  177. void hpfs_brelse4(struct quad_buffer_head *);
  178. void hpfs_mark_4buffers_dirty(struct quad_buffer_head *);
  179. /* dentry.c */
  180. void hpfs_set_dentry_operations(struct dentry *);
  181. /* dir.c */
  182. int hpfs_dir_release(struct inode *, struct file *);
  183. loff_t hpfs_dir_lseek(struct file *, loff_t, int);
  184. int hpfs_readdir(struct file *, void *, filldir_t);
  185. struct dentry *hpfs_lookup(struct inode *, struct dentry *);
  186. /* dnode.c */
  187. void hpfs_add_pos(struct inode *, loff_t *);
  188. void hpfs_del_pos(struct inode *, loff_t *);
  189. struct hpfs_dirent *hpfs_add_de(struct super_block *, struct dnode *, unsigned char *, unsigned, secno);
  190. void hpfs_delete_de(struct super_block *, struct dnode *, struct hpfs_dirent *);
  191. int hpfs_add_to_dnode(struct inode *, dnode_secno, unsigned char *, unsigned, struct hpfs_dirent *, dnode_secno);
  192. int hpfs_add_dirent(struct inode *, unsigned char *, unsigned, struct hpfs_dirent *, int);
  193. int hpfs_remove_dirent(struct inode *, dnode_secno, struct hpfs_dirent *, struct quad_buffer_head *, int);
  194. void hpfs_count_dnodes(struct super_block *, dnode_secno, int *, int *, int *);
  195. dnode_secno hpfs_de_as_down_as_possible(struct super_block *, dnode_secno dno);
  196. struct hpfs_dirent *map_pos_dirent(struct inode *, loff_t *, struct quad_buffer_head *);
  197. struct hpfs_dirent *map_dirent(struct inode *, dnode_secno, char *, unsigned, dnode_secno *, struct quad_buffer_head *);
  198. void hpfs_remove_dtree(struct super_block *, dnode_secno);
  199. struct hpfs_dirent *map_fnode_dirent(struct super_block *, fnode_secno, struct fnode *, struct quad_buffer_head *);
  200. /* ea.c */
  201. void hpfs_ea_ext_remove(struct super_block *, secno, int, unsigned);
  202. int hpfs_read_ea(struct super_block *, struct fnode *, char *, char *, int);
  203. char *hpfs_get_ea(struct super_block *, struct fnode *, char *, int *);
  204. void hpfs_set_ea(struct inode *, struct fnode *, char *, char *, int);
  205. /* file.c */
  206. int hpfs_file_release(struct inode *, struct file *);
  207. int hpfs_open(struct inode *, struct file *);
  208. int hpfs_file_fsync(struct file *, struct dentry *, int);
  209. secno hpfs_bmap(struct inode *, unsigned);
  210. void hpfs_truncate(struct inode *);
  211. int hpfs_get_block(struct inode *inode, long iblock, struct buffer_head *bh_result, int create);
  212. ssize_t hpfs_file_write(struct file *file, const char *buf, size_t count, loff_t *ppos);
  213. /* inode.c */
  214. void hpfs_read_inode(struct inode *);
  215. void hpfs_write_inode_ea(struct inode *, struct fnode *);
  216. void hpfs_write_inode(struct inode *);
  217. void hpfs_write_inode_nolock(struct inode *);
  218. int hpfs_notify_change(struct dentry *, struct iattr *);
  219. void hpfs_write_if_changed(struct inode *);
  220. void hpfs_delete_inode(struct inode *);
  221. /* map.c */
  222. unsigned *hpfs_map_dnode_bitmap(struct super_block *, struct quad_buffer_head *);
  223. unsigned *hpfs_map_bitmap(struct super_block *, unsigned, struct quad_buffer_head *, char *);
  224. char *hpfs_load_code_page(struct super_block *, secno);
  225. secno *hpfs_load_bitmap_directory(struct super_block *, secno bmp);
  226. struct fnode *hpfs_map_fnode(struct super_block *s, ino_t, struct buffer_head **);
  227. struct anode *hpfs_map_anode(struct super_block *s, anode_secno, struct buffer_head **);
  228. struct dnode *hpfs_map_dnode(struct super_block *s, dnode_secno, struct quad_buffer_head *);
  229. dnode_secno hpfs_fnode_dno(struct super_block *s, ino_t ino);
  230. /* name.c */
  231. unsigned char hpfs_upcase(unsigned char *, unsigned char);
  232. int hpfs_chk_name(unsigned char *, unsigned *);
  233. char *hpfs_translate_name(struct super_block *, unsigned char *, unsigned, int, int);
  234. int hpfs_compare_names(struct super_block *, unsigned char *, unsigned, unsigned char *, unsigned, int);
  235. int hpfs_is_name_long(unsigned char *, unsigned);
  236. void hpfs_adjust_length(unsigned char *, unsigned *);
  237. void hpfs_decide_conv(struct inode *, unsigned char *, unsigned);
  238. /* namei.c */
  239. int hpfs_mkdir(struct inode *, struct dentry *, int);
  240. int hpfs_create(struct inode *, struct dentry *, int);
  241. int hpfs_mknod(struct inode *, struct dentry *, int, int);
  242. int hpfs_symlink(struct inode *, struct dentry *, const char *);
  243. int hpfs_unlink(struct inode *, struct dentry *);
  244. int hpfs_rmdir(struct inode *, struct dentry *);
  245. int hpfs_symlink_readpage(struct file *, struct page *);
  246. int hpfs_rename(struct inode *, struct dentry *, struct inode *, struct dentry *);
  247. /* super.c */
  248. void hpfs_error(struct super_block *, char *, ...);
  249. int hpfs_stop_cycles(struct super_block *, int, int *, int *, char *);
  250. int hpfs_remount_fs(struct super_block *, int *, char *);
  251. void hpfs_put_super(struct super_block *);
  252. unsigned hpfs_count_one_bitmap(struct super_block *, secno);
  253. int hpfs_statfs(struct super_block *, struct statfs *);
  254. extern struct address_space_operations hpfs_aops;