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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _ISOFS_FS_H
  2. #define _ISOFS_FS_H
  3. #include <linux/types.h>
  4. /*
  5.  * The isofs filesystem constants/structures
  6.  */
  7. /* This part borrowed from the bsd386 isofs */
  8. #define ISODCL(from, to) (to - from + 1)
  9. struct iso_volume_descriptor {
  10. char type[ISODCL(1,1)]; /* 711 */
  11. char id[ISODCL(2,6)];
  12. char version[ISODCL(7,7)];
  13. char data[ISODCL(8,2048)];
  14. };
  15. /* volume descriptor types */
  16. #define ISO_VD_PRIMARY 1
  17. #define ISO_VD_SUPPLEMENTARY 2
  18. #define ISO_VD_END 255
  19. #define ISO_STANDARD_ID "CD001"
  20. struct iso_primary_descriptor {
  21. char type [ISODCL (  1,   1)]; /* 711 */
  22. char id [ISODCL (  2,   6)];
  23. char version [ISODCL (  7,   7)]; /* 711 */
  24. char unused1 [ISODCL (  8,   8)];
  25. char system_id [ISODCL (  9,  40)]; /* achars */
  26. char volume_id [ISODCL ( 41,  72)]; /* dchars */
  27. char unused2 [ISODCL ( 73,  80)];
  28. char volume_space_size [ISODCL ( 81,  88)]; /* 733 */
  29. char unused3 [ISODCL ( 89, 120)];
  30. char volume_set_size [ISODCL (121, 124)]; /* 723 */
  31. char volume_sequence_number [ISODCL (125, 128)]; /* 723 */
  32. char logical_block_size [ISODCL (129, 132)]; /* 723 */
  33. char path_table_size [ISODCL (133, 140)]; /* 733 */
  34. char type_l_path_table [ISODCL (141, 144)]; /* 731 */
  35. char opt_type_l_path_table [ISODCL (145, 148)]; /* 731 */
  36. char type_m_path_table [ISODCL (149, 152)]; /* 732 */
  37. char opt_type_m_path_table [ISODCL (153, 156)]; /* 732 */
  38. char root_directory_record [ISODCL (157, 190)]; /* 9.1 */
  39. char volume_set_id [ISODCL (191, 318)]; /* dchars */
  40. char publisher_id [ISODCL (319, 446)]; /* achars */
  41. char preparer_id [ISODCL (447, 574)]; /* achars */
  42. char application_id [ISODCL (575, 702)]; /* achars */
  43. char copyright_file_id [ISODCL (703, 739)]; /* 7.5 dchars */
  44. char abstract_file_id [ISODCL (740, 776)]; /* 7.5 dchars */
  45. char bibliographic_file_id [ISODCL (777, 813)]; /* 7.5 dchars */
  46. char creation_date [ISODCL (814, 830)]; /* 8.4.26.1 */
  47. char modification_date [ISODCL (831, 847)]; /* 8.4.26.1 */
  48. char expiration_date [ISODCL (848, 864)]; /* 8.4.26.1 */
  49. char effective_date [ISODCL (865, 881)]; /* 8.4.26.1 */
  50. char file_structure_version [ISODCL (882, 882)]; /* 711 */
  51. char unused4 [ISODCL (883, 883)];
  52. char application_data [ISODCL (884, 1395)];
  53. char unused5 [ISODCL (1396, 2048)];
  54. };
  55. /* Almost the same as the primary descriptor but two fields are specified */
  56. struct iso_supplementary_descriptor {
  57. char type [ISODCL (  1,   1)]; /* 711 */
  58. char id [ISODCL (  2,   6)];
  59. char version [ISODCL (  7,   7)]; /* 711 */
  60. char flags [ISODCL (  8,   8)]; /* 853 */
  61. char system_id [ISODCL (  9,  40)]; /* achars */
  62. char volume_id [ISODCL ( 41,  72)]; /* dchars */
  63. char unused2 [ISODCL ( 73,  80)];
  64. char volume_space_size [ISODCL ( 81,  88)]; /* 733 */
  65. char escape [ISODCL ( 89, 120)]; /* 856 */
  66. char volume_set_size [ISODCL (121, 124)]; /* 723 */
  67. char volume_sequence_number [ISODCL (125, 128)]; /* 723 */
  68. char logical_block_size [ISODCL (129, 132)]; /* 723 */
  69. char path_table_size [ISODCL (133, 140)]; /* 733 */
  70. char type_l_path_table [ISODCL (141, 144)]; /* 731 */
  71. char opt_type_l_path_table [ISODCL (145, 148)]; /* 731 */
  72. char type_m_path_table [ISODCL (149, 152)]; /* 732 */
  73. char opt_type_m_path_table [ISODCL (153, 156)]; /* 732 */
  74. char root_directory_record [ISODCL (157, 190)]; /* 9.1 */
  75. char volume_set_id [ISODCL (191, 318)]; /* dchars */
  76. char publisher_id [ISODCL (319, 446)]; /* achars */
  77. char preparer_id [ISODCL (447, 574)]; /* achars */
  78. char application_id [ISODCL (575, 702)]; /* achars */
  79. char copyright_file_id [ISODCL (703, 739)]; /* 7.5 dchars */
  80. char abstract_file_id [ISODCL (740, 776)]; /* 7.5 dchars */
  81. char bibliographic_file_id [ISODCL (777, 813)]; /* 7.5 dchars */
  82. char creation_date [ISODCL (814, 830)]; /* 8.4.26.1 */
  83. char modification_date [ISODCL (831, 847)]; /* 8.4.26.1 */
  84. char expiration_date [ISODCL (848, 864)]; /* 8.4.26.1 */
  85. char effective_date [ISODCL (865, 881)]; /* 8.4.26.1 */
  86. char file_structure_version [ISODCL (882, 882)]; /* 711 */
  87. char unused4 [ISODCL (883, 883)];
  88. char application_data [ISODCL (884, 1395)];
  89. char unused5 [ISODCL (1396, 2048)];
  90. };
  91. #define HS_STANDARD_ID "CDROM"
  92. struct  hs_volume_descriptor {
  93. char foo [ISODCL (  1,   8)]; /* 733 */
  94. char type [ISODCL (  9,   9)]; /* 711 */
  95. char id [ISODCL ( 10,  14)];
  96. char version [ISODCL ( 15,  15)]; /* 711 */
  97. char data[ISODCL(16,2048)];
  98. };
  99. struct hs_primary_descriptor {
  100. char foo [ISODCL (  1,   8)]; /* 733 */
  101. char type [ISODCL (  9,   9)]; /* 711 */
  102. char id [ISODCL ( 10,  14)];
  103. char version [ISODCL ( 15,  15)]; /* 711 */
  104. char unused1 [ISODCL ( 16,  16)]; /* 711 */
  105. char system_id [ISODCL ( 17,  48)]; /* achars */
  106. char volume_id [ISODCL ( 49,  80)]; /* dchars */
  107. char unused2 [ISODCL ( 81,  88)]; /* 733 */
  108. char volume_space_size [ISODCL ( 89,  96)]; /* 733 */
  109. char unused3 [ISODCL ( 97, 128)]; /* 733 */
  110. char volume_set_size [ISODCL (129, 132)]; /* 723 */
  111. char volume_sequence_number [ISODCL (133, 136)]; /* 723 */
  112. char logical_block_size [ISODCL (137, 140)]; /* 723 */
  113. char path_table_size [ISODCL (141, 148)]; /* 733 */
  114. char type_l_path_table [ISODCL (149, 152)]; /* 731 */
  115. char unused4 [ISODCL (153, 180)]; /* 733 */
  116. char root_directory_record [ISODCL (181, 214)]; /* 9.1 */
  117. };
  118. /* We use this to help us look up the parent inode numbers. */
  119. struct iso_path_table{
  120. unsigned char  name_len[2]; /* 721 */
  121. char extent[4]; /* 731 */
  122. char  parent[2]; /* 721 */
  123. char name[0];
  124. } __attribute__((packed));
  125. /* high sierra is identical to iso, except that the date is only 6 bytes, and
  126.    there is an extra reserved byte after the flags */
  127. struct iso_directory_record {
  128. char length [ISODCL (1, 1)]; /* 711 */
  129. char ext_attr_length [ISODCL (2, 2)]; /* 711 */
  130. char extent [ISODCL (3, 10)]; /* 733 */
  131. char size [ISODCL (11, 18)]; /* 733 */
  132. char date [ISODCL (19, 25)]; /* 7 by 711 */
  133. char flags [ISODCL (26, 26)];
  134. char file_unit_size [ISODCL (27, 27)]; /* 711 */
  135. char interleave [ISODCL (28, 28)]; /* 711 */
  136. char volume_sequence_number [ISODCL (29, 32)]; /* 723 */
  137. unsigned char name_len [ISODCL (33, 33)]; /* 711 */
  138. char name [0];
  139. } __attribute__((packed));
  140. #define ISOFS_BLOCK_BITS 11
  141. #define ISOFS_BLOCK_SIZE 2048
  142. #define ISOFS_BUFFER_SIZE(INODE) ((INODE)->i_sb->s_blocksize)
  143. #define ISOFS_BUFFER_BITS(INODE) ((INODE)->i_sb->s_blocksize_bits)
  144. #define ISOFS_ZONE_BITS(INODE)   ((INODE)->i_sb->u.isofs_sb.s_log_zone_size)
  145. #define ISOFS_SUPER_MAGIC 0x9660
  146. #ifdef __KERNEL__
  147. /* Number conversion inlines, named after the section in ISO 9660
  148.    they correspond to. */
  149. #include <asm/byteorder.h>
  150. #include <asm/unaligned.h>
  151. static inline int isonum_711(char *p)
  152. {
  153. return *(u8 *)p;
  154. }
  155. static inline int isonum_712(char *p)
  156. {
  157. return *(s8 *)p;
  158. }
  159. static inline int isonum_721(char *p)
  160. {
  161. return le16_to_cpu(get_unaligned((u16 *)p));
  162. }
  163. static inline int isonum_722(char *p)
  164. {
  165. return be16_to_cpu(get_unaligned((u16 *)p));
  166. }
  167. static inline int isonum_723(char *p)
  168. {
  169. /* Ignore bigendian datum due to broken mastering programs */
  170. return le16_to_cpu(get_unaligned((u16 *)p));
  171. }
  172. static inline int isonum_731(char *p)
  173. {
  174. return le32_to_cpu(get_unaligned((u32 *)p));
  175. }
  176. static inline int isonum_732(char *p)
  177. {
  178. return be32_to_cpu(get_unaligned((u32 *)p));
  179. }
  180. static inline int isonum_733(char *p)
  181. {
  182. /* Ignore bigendian datum due to broken mastering programs */
  183. return le32_to_cpu(get_unaligned((u32 *)p));
  184. }
  185. extern int iso_date(char *, int);
  186. struct inode; /* To make gcc happy */
  187. extern int parse_rock_ridge_inode(struct iso_directory_record *, struct inode *);
  188. extern int get_rock_ridge_filename(struct iso_directory_record *, char *, struct inode *);
  189. extern int isofs_name_translate(struct iso_directory_record *, char *, struct inode *);
  190. extern int find_rock_ridge_relocation(struct iso_directory_record *, struct inode *);
  191. int get_joliet_filename(struct iso_directory_record *, unsigned char *, struct inode *);
  192. int get_acorn_filename(struct iso_directory_record *, char *, struct inode *);
  193. extern struct dentry *isofs_lookup(struct inode *, struct dentry *);
  194. extern struct buffer_head *isofs_bread(struct inode *inode, unsigned int block);
  195. extern int isofs_get_blocks(struct inode *, long, struct buffer_head **, unsigned long);
  196. extern struct inode_operations isofs_dir_inode_operations;
  197. extern struct file_operations isofs_dir_operations;
  198. extern struct address_space_operations isofs_symlink_aops;
  199. /* The following macros are used to check for memory leaks. */
  200. #ifdef LEAK_CHECK
  201. #define free_s leak_check_free_s
  202. #define malloc leak_check_malloc
  203. #define sb_bread leak_check_bread
  204. #define brelse leak_check_brelse
  205. extern void * leak_check_malloc(unsigned int size);
  206. extern void leak_check_free_s(void * obj, int size);
  207. extern struct buffer_head * leak_check_bread(struct super_block *sb, int block);
  208. extern void leak_check_brelse(struct buffer_head * bh);
  209. #endif /* LEAK_CHECK */
  210. #endif /* __KERNEL__ */
  211. #endif