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