isofs.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #include <linux/fs.h>
  3. #include <linux/buffer_head.h>
  4. #include <linux/exportfs.h>
  5. #include <linux/iso_fs.h>
  6. #include <asm/unaligned.h>
  7. enum isofs_file_format {
  8. isofs_file_normal = 0,
  9. isofs_file_sparse = 1,
  10. isofs_file_compressed = 2,
  11. };
  12. /*
  13. * iso fs inode data in memory
  14. */
  15. struct iso_inode_info {
  16. unsigned long i_iget5_block;
  17. unsigned long i_iget5_offset;
  18. unsigned int i_first_extent;
  19. unsigned char i_file_format;
  20. unsigned char i_format_parm[3];
  21. unsigned long i_next_section_block;
  22. unsigned long i_next_section_offset;
  23. off_t i_section_size;
  24. struct inode vfs_inode;
  25. };
  26. /*
  27. * iso9660 super-block data in memory
  28. */
  29. struct isofs_sb_info {
  30. unsigned long s_ninodes;
  31. unsigned long s_nzones;
  32. unsigned long s_firstdatazone;
  33. unsigned long s_log_zone_size;
  34. unsigned long s_max_size;
  35. int s_rock_offset; /* offset of SUSP fields within SU area */
  36. s32 s_sbsector;
  37. unsigned char s_joliet_level;
  38. unsigned char s_mapping;
  39. unsigned char s_check;
  40. unsigned char s_session;
  41. unsigned int s_high_sierra:1;
  42. unsigned int s_rock:2;
  43. unsigned int s_utf8:1;
  44. unsigned int s_cruft:1; /* Broken disks with high byte of length
  45. * containing junk */
  46. unsigned int s_nocompress:1;
  47. unsigned int s_hide:1;
  48. unsigned int s_showassoc:1;
  49. unsigned int s_overriderockperm:1;
  50. unsigned int s_uid_set:1;
  51. unsigned int s_gid_set:1;
  52. umode_t s_fmode;
  53. umode_t s_dmode;
  54. kgid_t s_gid;
  55. kuid_t s_uid;
  56. struct nls_table *s_nls_iocharset; /* Native language support table */
  57. };
  58. #define ISOFS_INVALID_MODE ((umode_t) -1)
  59. static inline struct isofs_sb_info *ISOFS_SB(struct super_block *sb)
  60. {
  61. return sb->s_fs_info;
  62. }
  63. static inline struct iso_inode_info *ISOFS_I(struct inode *inode)
  64. {
  65. return container_of(inode, struct iso_inode_info, vfs_inode);
  66. }
  67. static inline int isonum_711(u8 *p)
  68. {
  69. return *p;
  70. }
  71. static inline int isonum_712(s8 *p)
  72. {
  73. return *p;
  74. }
  75. static inline unsigned int isonum_721(u8 *p)
  76. {
  77. return get_unaligned_le16(p);
  78. }
  79. static inline unsigned int isonum_722(u8 *p)
  80. {
  81. return get_unaligned_be16(p);
  82. }
  83. static inline unsigned int isonum_723(u8 *p)
  84. {
  85. /* Ignore bigendian datum due to broken mastering programs */
  86. return get_unaligned_le16(p);
  87. }
  88. static inline unsigned int isonum_731(u8 *p)
  89. {
  90. return get_unaligned_le32(p);
  91. }
  92. static inline unsigned int isonum_732(u8 *p)
  93. {
  94. return get_unaligned_be32(p);
  95. }
  96. static inline unsigned int isonum_733(u8 *p)
  97. {
  98. /* Ignore bigendian datum due to broken mastering programs */
  99. return get_unaligned_le32(p);
  100. }
  101. extern int iso_date(u8 *, int);
  102. struct inode; /* To make gcc happy */
  103. extern int parse_rock_ridge_inode(struct iso_directory_record *, struct inode *, int relocated);
  104. extern int get_rock_ridge_filename(struct iso_directory_record *, char *, struct inode *);
  105. extern int isofs_name_translate(struct iso_directory_record *, char *, struct inode *);
  106. int get_joliet_filename(struct iso_directory_record *, unsigned char *, struct inode *);
  107. int get_acorn_filename(struct iso_directory_record *, char *, struct inode *);
  108. extern struct dentry *isofs_lookup(struct inode *, struct dentry *, unsigned int flags);
  109. extern struct buffer_head *isofs_bread(struct inode *, sector_t);
  110. extern int isofs_get_blocks(struct inode *, sector_t, struct buffer_head **, unsigned long);
  111. struct inode *__isofs_iget(struct super_block *sb,
  112. unsigned long block,
  113. unsigned long offset,
  114. int relocated);
  115. static inline struct inode *isofs_iget(struct super_block *sb,
  116. unsigned long block,
  117. unsigned long offset)
  118. {
  119. return __isofs_iget(sb, block, offset, 0);
  120. }
  121. static inline struct inode *isofs_iget_reloc(struct super_block *sb,
  122. unsigned long block,
  123. unsigned long offset)
  124. {
  125. return __isofs_iget(sb, block, offset, 1);
  126. }
  127. /* Because the inode number is no longer relevant to finding the
  128. * underlying meta-data for an inode, we are free to choose a more
  129. * convenient 32-bit number as the inode number. The inode numbering
  130. * scheme was recommended by Sergey Vlasov and Eric Lammerts. */
  131. static inline unsigned long isofs_get_ino(unsigned long block,
  132. unsigned long offset,
  133. unsigned long bufbits)
  134. {
  135. return (block << (bufbits - 5)) | (offset >> 5);
  136. }
  137. /* Every directory can have many redundant directory entries scattered
  138. * throughout the directory tree. First there is the directory entry
  139. * with the name of the directory stored in the parent directory.
  140. * Then, there is the "." directory entry stored in the directory
  141. * itself. Finally, there are possibly many ".." directory entries
  142. * stored in all the subdirectories.
  143. *
  144. * In order for the NFS get_parent() method to work and for the
  145. * general consistency of the dcache, we need to make sure the
  146. * "i_iget5_block" and "i_iget5_offset" all point to exactly one of
  147. * the many redundant entries for each directory. We normalize the
  148. * block and offset by always making them point to the "." directory.
  149. *
  150. * Notice that we do not use the entry for the directory with the name
  151. * that is located in the parent directory. Even though choosing this
  152. * first directory is more natural, it is much easier to find the "."
  153. * entry in the NFS get_parent() method because it is implicitly
  154. * encoded in the "extent + ext_attr_length" fields of _all_ the
  155. * redundant entries for the directory. Thus, it can always be
  156. * reached regardless of which directory entry you have in hand.
  157. *
  158. * This works because the "." entry is simply the first directory
  159. * record when you start reading the file that holds all the directory
  160. * records, and this file starts at "extent + ext_attr_length" blocks.
  161. * Because the "." entry is always the first entry listed in the
  162. * directories file, the normalized "offset" value is always 0.
  163. *
  164. * You should pass the directory entry in "de". On return, "block"
  165. * and "offset" will hold normalized values. Only directories are
  166. * affected making it safe to call even for non-directory file
  167. * types. */
  168. static inline void
  169. isofs_normalize_block_and_offset(struct iso_directory_record* de,
  170. unsigned long *block,
  171. unsigned long *offset)
  172. {
  173. /* Only directories are normalized. */
  174. if (de->flags[0] & 2) {
  175. *offset = 0;
  176. *block = (unsigned long)isonum_733(de->extent)
  177. + (unsigned long)isonum_711(de->ext_attr_length);
  178. }
  179. }
  180. extern const struct inode_operations isofs_dir_inode_operations;
  181. extern const struct file_operations isofs_dir_operations;
  182. extern const struct address_space_operations isofs_symlink_aops;
  183. extern const struct export_operations isofs_export_ops;