blob: 9679fbcbfc036110bd2cd29ec097f79d6c4e9535 [file] [log] [blame]
Al Viro94f2f712005-04-25 18:32:12 -07001#include <linux/fs.h>
2#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -07003#include <linux/exportfs.h>
Al Viro94f2f712005-04-25 18:32:12 -07004#include <linux/iso_fs.h>
5#include <asm/unaligned.h>
6
7enum isofs_file_format {
8 isofs_file_normal = 0,
9 isofs_file_sparse = 1,
10 isofs_file_compressed = 2,
11};
12
13/*
14 * iso fs inode data in memory
15 */
16struct iso_inode_info {
17 unsigned long i_iget5_block;
18 unsigned long i_iget5_offset;
19 unsigned int i_first_extent;
20 unsigned char i_file_format;
21 unsigned char i_format_parm[3];
22 unsigned long i_next_section_block;
23 unsigned long i_next_section_offset;
24 off_t i_section_size;
25 struct inode vfs_inode;
26};
27
28/*
29 * iso9660 super-block data in memory
30 */
31struct isofs_sb_info {
32 unsigned long s_ninodes;
33 unsigned long s_nzones;
34 unsigned long s_firstdatazone;
35 unsigned long s_log_zone_size;
36 unsigned long s_max_size;
37
38 unsigned char s_high_sierra; /* A simple flag */
39 unsigned char s_mapping;
40 int s_rock_offset; /* offset of SUSP fields within SU area */
41 unsigned char s_rock;
42 unsigned char s_joliet_level;
43 unsigned char s_utf8;
44 unsigned char s_cruft; /* Broken disks with high
45 byte of length containing
46 junk */
47 unsigned char s_unhide;
48 unsigned char s_nosuid;
49 unsigned char s_nodev;
50 unsigned char s_nocompress;
Jeremy White9769f4e2005-06-21 17:16:53 -070051 unsigned char s_hide;
52 unsigned char s_showassoc;
Jan Kara52b680c2009-06-17 16:26:25 -070053 unsigned char s_overriderockperm;
Al Viro94f2f712005-04-25 18:32:12 -070054
Jan Kara9b7880e2008-02-08 04:21:09 -080055 mode_t s_fmode;
56 mode_t s_dmode;
Al Viro94f2f712005-04-25 18:32:12 -070057 gid_t s_gid;
58 uid_t s_uid;
59 struct nls_table *s_nls_iocharset; /* Native language support table */
60};
61
Jan Kara52b680c2009-06-17 16:26:25 -070062#define ISOFS_INVALID_MODE ((mode_t) -1)
63
Al Viro94f2f712005-04-25 18:32:12 -070064static inline struct isofs_sb_info *ISOFS_SB(struct super_block *sb)
65{
66 return sb->s_fs_info;
67}
68
69static inline struct iso_inode_info *ISOFS_I(struct inode *inode)
70{
71 return container_of(inode, struct iso_inode_info, vfs_inode);
72}
73
74static inline int isonum_711(char *p)
75{
76 return *(u8 *)p;
77}
78static inline int isonum_712(char *p)
79{
80 return *(s8 *)p;
81}
82static inline unsigned int isonum_721(char *p)
83{
Harvey Harrison58d485d2008-04-29 01:03:44 -070084 return get_unaligned_le16(p);
Al Viro94f2f712005-04-25 18:32:12 -070085}
86static inline unsigned int isonum_722(char *p)
87{
Harvey Harrison58d485d2008-04-29 01:03:44 -070088 return get_unaligned_be16(p);
Al Viro94f2f712005-04-25 18:32:12 -070089}
90static inline unsigned int isonum_723(char *p)
91{
92 /* Ignore bigendian datum due to broken mastering programs */
Harvey Harrison58d485d2008-04-29 01:03:44 -070093 return get_unaligned_le16(p);
Al Viro94f2f712005-04-25 18:32:12 -070094}
95static inline unsigned int isonum_731(char *p)
96{
Harvey Harrison58d485d2008-04-29 01:03:44 -070097 return get_unaligned_le32(p);
Al Viro94f2f712005-04-25 18:32:12 -070098}
99static inline unsigned int isonum_732(char *p)
100{
Harvey Harrison58d485d2008-04-29 01:03:44 -0700101 return get_unaligned_be32(p);
Al Viro94f2f712005-04-25 18:32:12 -0700102}
103static inline unsigned int isonum_733(char *p)
104{
105 /* Ignore bigendian datum due to broken mastering programs */
Harvey Harrison58d485d2008-04-29 01:03:44 -0700106 return get_unaligned_le32(p);
Al Viro94f2f712005-04-25 18:32:12 -0700107}
108extern int iso_date(char *, int);
109
110struct inode; /* To make gcc happy */
111
112extern int parse_rock_ridge_inode(struct iso_directory_record *, struct inode *);
113extern int get_rock_ridge_filename(struct iso_directory_record *, char *, struct inode *);
114extern int isofs_name_translate(struct iso_directory_record *, char *, struct inode *);
115
116int get_joliet_filename(struct iso_directory_record *, unsigned char *, struct inode *);
117int get_acorn_filename(struct iso_directory_record *, char *, struct inode *);
118
119extern struct dentry *isofs_lookup(struct inode *, struct dentry *, struct nameidata *);
120extern struct buffer_head *isofs_bread(struct inode *, sector_t);
121extern int isofs_get_blocks(struct inode *, sector_t, struct buffer_head **, unsigned long);
122
123extern struct inode *isofs_iget(struct super_block *sb,
124 unsigned long block,
125 unsigned long offset);
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. */
131static 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
138/* Every directory can have many redundant directory entries scattered
139 * throughout the directory tree. First there is the directory entry
140 * with the name of the directory stored in the parent directory.
141 * Then, there is the "." directory entry stored in the directory
142 * itself. Finally, there are possibly many ".." directory entries
143 * stored in all the subdirectories.
144 *
145 * In order for the NFS get_parent() method to work and for the
146 * general consistency of the dcache, we need to make sure the
147 * "i_iget5_block" and "i_iget5_offset" all point to exactly one of
148 * the many redundant entries for each directory. We normalize the
149 * block and offset by always making them point to the "." directory.
150 *
151 * Notice that we do not use the entry for the directory with the name
152 * that is located in the parent directory. Even though choosing this
153 * first directory is more natural, it is much easier to find the "."
154 * entry in the NFS get_parent() method because it is implicitly
155 * encoded in the "extent + ext_attr_length" fields of _all_ the
156 * redundant entries for the directory. Thus, it can always be
157 * reached regardless of which directory entry you have in hand.
158 *
159 * This works because the "." entry is simply the first directory
160 * record when you start reading the file that holds all the directory
161 * records, and this file starts at "extent + ext_attr_length" blocks.
162 * Because the "." entry is always the first entry listed in the
163 * directories file, the normalized "offset" value is always 0.
164 *
165 * You should pass the directory entry in "de". On return, "block"
166 * and "offset" will hold normalized values. Only directories are
167 * affected making it safe to call even for non-directory file
168 * types. */
169static inline void
170isofs_normalize_block_and_offset(struct iso_directory_record* de,
171 unsigned long *block,
172 unsigned long *offset)
173{
174 /* Only directories are normalized. */
175 if (de->flags[0] & 2) {
176 *offset = 0;
177 *block = (unsigned long)isonum_733(de->extent)
178 + (unsigned long)isonum_711(de->ext_attr_length);
179 }
180}
181
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800182extern const struct inode_operations isofs_dir_inode_operations;
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800183extern const struct file_operations isofs_dir_operations;
Christoph Hellwigf5e54d62006-06-28 04:26:44 -0700184extern const struct address_space_operations isofs_symlink_aops;
Christoph Hellwig39655162007-10-21 16:42:17 -0700185extern const struct export_operations isofs_export_ops;