fs: consolidate dentry kill sequence
[deliverable/linux.git] / fs / isofs / inode.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/isofs/inode.c
3 *
4 * (C) 1991 Linus Torvalds - minix filesystem
5 * 1992, 1993, 1994 Eric Youngdale Modified for ISO 9660 filesystem.
96de0e25 6 * 1994 Eberhard Mönkeberg - multi session handling.
1da177e4
LT
7 * 1995 Mark Dobie - allow mounting of some weird VideoCDs and PhotoCDs.
8 * 1997 Gordon Chaffee - Joliet CDs
9 * 1998 Eric Lammerts - ISO 9660 Level 3
10 * 2004 Paul Serice - Inode Support pushed out from 4GB to 128GB
11 * 2004 Paul Serice - NFS Export Operations
12 */
13
94f2f715 14#include <linux/init.h>
1da177e4
LT
15#include <linux/module.h>
16
1da177e4 17#include <linux/slab.h>
1da177e4
LT
18#include <linux/nls.h>
19#include <linux/ctype.h>
94f2f715
AV
20#include <linux/statfs.h>
21#include <linux/cdrom.h>
1da177e4 22#include <linux/parser.h>
1da177e4 23
94f2f715 24#include "isofs.h"
1da177e4
LT
25#include "zisofs.h"
26
27#define BEQUIET
28
b1e6a015
NP
29static int isofs_hashi(const struct dentry *parent, const struct inode *inode,
30 struct qstr *qstr);
31static int isofs_hash(const struct dentry *parent, const struct inode *inode,
32 struct qstr *qstr);
621e155a
NP
33static int isofs_dentry_cmpi(const struct dentry *parent,
34 const struct inode *pinode,
35 const struct dentry *dentry, const struct inode *inode,
36 unsigned int len, const char *str, const struct qstr *name);
37static int isofs_dentry_cmp(const struct dentry *parent,
38 const struct inode *pinode,
39 const struct dentry *dentry, const struct inode *inode,
40 unsigned int len, const char *str, const struct qstr *name);
1da177e4
LT
41
42#ifdef CONFIG_JOLIET
b1e6a015
NP
43static int isofs_hashi_ms(const struct dentry *parent, const struct inode *inode,
44 struct qstr *qstr);
45static int isofs_hash_ms(const struct dentry *parent, const struct inode *inode,
46 struct qstr *qstr);
621e155a
NP
47static int isofs_dentry_cmpi_ms(const struct dentry *parent,
48 const struct inode *pinode,
49 const struct dentry *dentry, const struct inode *inode,
50 unsigned int len, const char *str, const struct qstr *name);
51static int isofs_dentry_cmp_ms(const struct dentry *parent,
52 const struct inode *pinode,
53 const struct dentry *dentry, const struct inode *inode,
54 unsigned int len, const char *str, const struct qstr *name);
1da177e4
LT
55#endif
56
57static void isofs_put_super(struct super_block *sb)
58{
59 struct isofs_sb_info *sbi = ISOFS_SB(sb);
6cfd0148 60
1da177e4 61#ifdef CONFIG_JOLIET
6d729e44 62 unload_nls(sbi->s_nls_iocharset);
1da177e4
LT
63#endif
64
1da177e4
LT
65 kfree(sbi);
66 sb->s_fs_info = NULL;
67 return;
68}
69
c4386c83 70static int isofs_read_inode(struct inode *);
726c3342 71static int isofs_statfs (struct dentry *, struct kstatfs *);
1da177e4 72
e18b890b 73static struct kmem_cache *isofs_inode_cachep;
1da177e4
LT
74
75static struct inode *isofs_alloc_inode(struct super_block *sb)
76{
77 struct iso_inode_info *ei;
e94b1766 78 ei = kmem_cache_alloc(isofs_inode_cachep, GFP_KERNEL);
1da177e4
LT
79 if (!ei)
80 return NULL;
81 return &ei->vfs_inode;
82}
83
84static void isofs_destroy_inode(struct inode *inode)
85{
86 kmem_cache_free(isofs_inode_cachep, ISOFS_I(inode));
87}
88
51cc5068 89static void init_once(void *foo)
1da177e4 90{
9eb7f2c6 91 struct iso_inode_info *ei = foo;
1da177e4 92
a35afb83 93 inode_init_once(&ei->vfs_inode);
1da177e4 94}
c3ed85a3 95
1da177e4
LT
96static int init_inodecache(void)
97{
98 isofs_inode_cachep = kmem_cache_create("isofs_inode_cache",
c3ed85a3
DJ
99 sizeof(struct iso_inode_info),
100 0, (SLAB_RECLAIM_ACCOUNT|
101 SLAB_MEM_SPREAD),
20c2df83 102 init_once);
1da177e4
LT
103 if (isofs_inode_cachep == NULL)
104 return -ENOMEM;
105 return 0;
106}
107
108static void destroy_inodecache(void)
109{
1a1d92c1 110 kmem_cache_destroy(isofs_inode_cachep);
1da177e4
LT
111}
112
113static int isofs_remount(struct super_block *sb, int *flags, char *data)
114{
115 /* we probably want a lot more here */
116 *flags |= MS_RDONLY;
117 return 0;
118}
119
ee9b6d61 120static const struct super_operations isofs_sops = {
1da177e4
LT
121 .alloc_inode = isofs_alloc_inode,
122 .destroy_inode = isofs_destroy_inode,
1da177e4
LT
123 .put_super = isofs_put_super,
124 .statfs = isofs_statfs,
125 .remount_fs = isofs_remount,
d0132eea 126 .show_options = generic_show_options,
1da177e4
LT
127};
128
129
e16404ed 130static const struct dentry_operations isofs_dentry_ops[] = {
1da177e4
LT
131 {
132 .d_hash = isofs_hash,
133 .d_compare = isofs_dentry_cmp,
134 },
135 {
136 .d_hash = isofs_hashi,
137 .d_compare = isofs_dentry_cmpi,
138 },
139#ifdef CONFIG_JOLIET
140 {
141 .d_hash = isofs_hash_ms,
142 .d_compare = isofs_dentry_cmp_ms,
143 },
144 {
145 .d_hash = isofs_hashi_ms,
146 .d_compare = isofs_dentry_cmpi_ms,
9eb7f2c6 147 },
1da177e4
LT
148#endif
149};
150
151struct iso9660_options{
5404ac8e 152 unsigned int rock:1;
8711c67b 153 unsigned int joliet:1;
5404ac8e
JK
154 unsigned int cruft:1;
155 unsigned int hide:1;
156 unsigned int showassoc:1;
157 unsigned int nocompress:1;
158 unsigned int overriderockperm:1;
159 unsigned int uid_set:1;
160 unsigned int gid_set:1;
161 unsigned int utf8:1;
162 unsigned char map;
1da177e4
LT
163 unsigned char check;
164 unsigned int blocksize;
9b7880e7
JK
165 mode_t fmode;
166 mode_t dmode;
1da177e4
LT
167 gid_t gid;
168 uid_t uid;
169 char *iocharset;
c3ed85a3
DJ
170 /* LVE */
171 s32 session;
172 s32 sbsector;
1da177e4
LT
173};
174
175/*
176 * Compute the hash for the isofs name corresponding to the dentry.
177 */
178static int
b1e6a015 179isofs_hash_common(const struct dentry *dentry, struct qstr *qstr, int ms)
1da177e4
LT
180{
181 const char *name;
182 int len;
183
184 len = qstr->len;
185 name = qstr->name;
186 if (ms) {
187 while (len && name[len-1] == '.')
188 len--;
189 }
190
191 qstr->hash = full_name_hash(name, len);
192
193 return 0;
194}
195
196/*
197 * Compute the hash for the isofs name corresponding to the dentry.
198 */
199static int
b1e6a015 200isofs_hashi_common(const struct dentry *dentry, struct qstr *qstr, int ms)
1da177e4
LT
201{
202 const char *name;
203 int len;
204 char c;
205 unsigned long hash;
206
207 len = qstr->len;
208 name = qstr->name;
209 if (ms) {
210 while (len && name[len-1] == '.')
211 len--;
212 }
213
214 hash = init_name_hash();
215 while (len--) {
216 c = tolower(*name++);
f17e121f 217 hash = partial_name_hash(c, hash);
1da177e4
LT
218 }
219 qstr->hash = end_name_hash(hash);
220
221 return 0;
222}
223
224/*
621e155a 225 * Compare of two isofs names.
1da177e4 226 */
621e155a
NP
227static int isofs_dentry_cmp_common(
228 unsigned int len, const char *str,
229 const struct qstr *name, int ms, int ci)
1da177e4
LT
230{
231 int alen, blen;
232
233 /* A filename cannot end in '.' or we treat it like it has none */
621e155a
NP
234 alen = name->len;
235 blen = len;
1da177e4 236 if (ms) {
621e155a 237 while (alen && name->name[alen-1] == '.')
1da177e4 238 alen--;
621e155a 239 while (blen && str[blen-1] == '.')
1da177e4
LT
240 blen--;
241 }
242 if (alen == blen) {
621e155a
NP
243 if (ci) {
244 if (strnicmp(name->name, str, alen) == 0)
245 return 0;
246 } else {
247 if (strncmp(name->name, str, alen) == 0)
248 return 0;
249 }
1da177e4
LT
250 }
251 return 1;
252}
253
254static int
b1e6a015
NP
255isofs_hash(const struct dentry *dentry, const struct inode *inode,
256 struct qstr *qstr)
1da177e4
LT
257{
258 return isofs_hash_common(dentry, qstr, 0);
259}
260
261static int
b1e6a015
NP
262isofs_hashi(const struct dentry *dentry, const struct inode *inode,
263 struct qstr *qstr)
1da177e4
LT
264{
265 return isofs_hashi_common(dentry, qstr, 0);
266}
267
268static int
621e155a
NP
269isofs_dentry_cmp(const struct dentry *parent, const struct inode *pinode,
270 const struct dentry *dentry, const struct inode *inode,
271 unsigned int len, const char *str, const struct qstr *name)
1da177e4 272{
621e155a 273 return isofs_dentry_cmp_common(len, str, name, 0, 0);
1da177e4
LT
274}
275
276static int
621e155a
NP
277isofs_dentry_cmpi(const struct dentry *parent, const struct inode *pinode,
278 const struct dentry *dentry, const struct inode *inode,
279 unsigned int len, const char *str, const struct qstr *name)
1da177e4 280{
621e155a 281 return isofs_dentry_cmp_common(len, str, name, 0, 1);
1da177e4
LT
282}
283
284#ifdef CONFIG_JOLIET
285static int
b1e6a015
NP
286isofs_hash_ms(const struct dentry *dentry, const struct inode *inode,
287 struct qstr *qstr)
1da177e4
LT
288{
289 return isofs_hash_common(dentry, qstr, 1);
290}
291
292static int
b1e6a015
NP
293isofs_hashi_ms(const struct dentry *dentry, const struct inode *inode,
294 struct qstr *qstr)
1da177e4
LT
295{
296 return isofs_hashi_common(dentry, qstr, 1);
297}
298
299static int
621e155a
NP
300isofs_dentry_cmp_ms(const struct dentry *parent, const struct inode *pinode,
301 const struct dentry *dentry, const struct inode *inode,
302 unsigned int len, const char *str, const struct qstr *name)
1da177e4 303{
621e155a 304 return isofs_dentry_cmp_common(len, str, name, 1, 0);
1da177e4
LT
305}
306
307static int
621e155a
NP
308isofs_dentry_cmpi_ms(const struct dentry *parent, const struct inode *pinode,
309 const struct dentry *dentry, const struct inode *inode,
310 unsigned int len, const char *str, const struct qstr *name)
1da177e4 311{
621e155a 312 return isofs_dentry_cmp_common(len, str, name, 1, 1);
1da177e4
LT
313}
314#endif
315
316enum {
317 Opt_block, Opt_check_r, Opt_check_s, Opt_cruft, Opt_gid, Opt_ignore,
318 Opt_iocharset, Opt_map_a, Opt_map_n, Opt_map_o, Opt_mode, Opt_nojoliet,
319 Opt_norock, Opt_sb, Opt_session, Opt_uid, Opt_unhide, Opt_utf8, Opt_err,
52b680c8 320 Opt_nocompress, Opt_hide, Opt_showassoc, Opt_dmode, Opt_overriderockperm,
1da177e4
LT
321};
322
a447c093 323static const match_table_t tokens = {
1da177e4
LT
324 {Opt_norock, "norock"},
325 {Opt_nojoliet, "nojoliet"},
326 {Opt_unhide, "unhide"},
9769f4eb
JW
327 {Opt_hide, "hide"},
328 {Opt_showassoc, "showassoc"},
1da177e4
LT
329 {Opt_cruft, "cruft"},
330 {Opt_utf8, "utf8"},
331 {Opt_iocharset, "iocharset=%s"},
332 {Opt_map_a, "map=acorn"},
333 {Opt_map_a, "map=a"},
334 {Opt_map_n, "map=normal"},
335 {Opt_map_n, "map=n"},
336 {Opt_map_o, "map=off"},
337 {Opt_map_o, "map=o"},
338 {Opt_session, "session=%u"},
339 {Opt_sb, "sbsector=%u"},
340 {Opt_check_r, "check=relaxed"},
341 {Opt_check_r, "check=r"},
342 {Opt_check_s, "check=strict"},
343 {Opt_check_s, "check=s"},
344 {Opt_uid, "uid=%u"},
345 {Opt_gid, "gid=%u"},
346 {Opt_mode, "mode=%u"},
9b7880e7 347 {Opt_dmode, "dmode=%u"},
52b680c8 348 {Opt_overriderockperm, "overriderockperm"},
1da177e4
LT
349 {Opt_block, "block=%u"},
350 {Opt_ignore, "conv=binary"},
351 {Opt_ignore, "conv=b"},
352 {Opt_ignore, "conv=text"},
353 {Opt_ignore, "conv=t"},
354 {Opt_ignore, "conv=mtext"},
355 {Opt_ignore, "conv=m"},
356 {Opt_ignore, "conv=auto"},
357 {Opt_ignore, "conv=a"},
358 {Opt_nocompress, "nocompress"},
359 {Opt_err, NULL}
360};
361
9eb7f2c6 362static int parse_options(char *options, struct iso9660_options *popt)
1da177e4
LT
363{
364 char *p;
365 int option;
366
367 popt->map = 'n';
5404ac8e
JK
368 popt->rock = 1;
369 popt->joliet = 1;
370 popt->cruft = 0;
371 popt->hide = 0;
372 popt->showassoc = 0;
1da177e4
LT
373 popt->check = 'u'; /* unset */
374 popt->nocompress = 0;
375 popt->blocksize = 1024;
52b680c8 376 popt->fmode = popt->dmode = ISOFS_INVALID_MODE;
5c4a656b
JK
377 popt->uid_set = 0;
378 popt->gid_set = 0;
1da177e4
LT
379 popt->gid = 0;
380 popt->uid = 0;
381 popt->iocharset = NULL;
382 popt->utf8 = 0;
52b680c8 383 popt->overriderockperm = 0;
1da177e4
LT
384 popt->session=-1;
385 popt->sbsector=-1;
386 if (!options)
387 return 1;
388
389 while ((p = strsep(&options, ",")) != NULL) {
390 int token;
391 substring_t args[MAX_OPT_ARGS];
392 unsigned n;
393
394 if (!*p)
395 continue;
396
397 token = match_token(p, tokens, args);
398 switch (token) {
399 case Opt_norock:
5404ac8e 400 popt->rock = 0;
1da177e4
LT
401 break;
402 case Opt_nojoliet:
5404ac8e 403 popt->joliet = 0;
1da177e4 404 break;
9769f4eb 405 case Opt_hide:
5404ac8e 406 popt->hide = 1;
9769f4eb 407 break;
1da177e4 408 case Opt_unhide:
9769f4eb 409 case Opt_showassoc:
5404ac8e 410 popt->showassoc = 1;
1da177e4
LT
411 break;
412 case Opt_cruft:
5404ac8e 413 popt->cruft = 1;
1da177e4
LT
414 break;
415 case Opt_utf8:
416 popt->utf8 = 1;
417 break;
418#ifdef CONFIG_JOLIET
419 case Opt_iocharset:
420 popt->iocharset = match_strdup(&args[0]);
421 break;
422#endif
423 case Opt_map_a:
424 popt->map = 'a';
425 break;
426 case Opt_map_o:
427 popt->map = 'o';
428 break;
429 case Opt_map_n:
430 popt->map = 'n';
431 break;
432 case Opt_session:
433 if (match_int(&args[0], &option))
434 return 0;
435 n = option;
436 if (n > 99)
437 return 0;
438 popt->session = n + 1;
439 break;
440 case Opt_sb:
441 if (match_int(&args[0], &option))
442 return 0;
443 popt->sbsector = option;
444 break;
445 case Opt_check_r:
446 popt->check = 'r';
447 break;
448 case Opt_check_s:
449 popt->check = 's';
450 break;
451 case Opt_ignore:
452 break;
453 case Opt_uid:
454 if (match_int(&args[0], &option))
455 return 0;
456 popt->uid = option;
5c4a656b 457 popt->uid_set = 1;
1da177e4
LT
458 break;
459 case Opt_gid:
460 if (match_int(&args[0], &option))
461 return 0;
462 popt->gid = option;
5c4a656b 463 popt->gid_set = 1;
1da177e4
LT
464 break;
465 case Opt_mode:
466 if (match_int(&args[0], &option))
467 return 0;
9b7880e7
JK
468 popt->fmode = option;
469 break;
470 case Opt_dmode:
471 if (match_int(&args[0], &option))
472 return 0;
473 popt->dmode = option;
1da177e4 474 break;
52b680c8
JK
475 case Opt_overriderockperm:
476 popt->overriderockperm = 1;
477 break;
1da177e4
LT
478 case Opt_block:
479 if (match_int(&args[0], &option))
480 return 0;
481 n = option;
482 if (n != 512 && n != 1024 && n != 2048)
483 return 0;
484 popt->blocksize = n;
485 break;
486 case Opt_nocompress:
487 popt->nocompress = 1;
488 break;
489 default:
490 return 0;
491 }
492 }
493 return 1;
494}
495
496/*
497 * look if the driver can tell the multi session redirection value
498 *
499 * don't change this if you don't know what you do, please!
500 * Multisession is legal only with XA disks.
501 * A non-XA disk with more than one volume descriptor may do it right, but
502 * usually is written in a nowhere standardized "multi-partition" manner.
503 * Multisession uses absolute addressing (solely the first frame of the whole
504 * track is #0), multi-partition uses relative addressing (each first frame of
505 * each track is #0), and a track is not a session.
506 *
507 * A broken CDwriter software or drive firmware does not set new standards,
508 * at least not if conflicting with the existing ones.
509 *
510 * emoenke@gwdg.de
511 */
512#define WE_OBEY_THE_WRITTEN_STANDARDS 1
513
9eb7f2c6 514static unsigned int isofs_get_last_session(struct super_block *sb, s32 session)
1da177e4
LT
515{
516 struct cdrom_multisession ms_info;
517 unsigned int vol_desc_start;
518 struct block_device *bdev = sb->s_bdev;
519 int i;
520
521 vol_desc_start=0;
522 ms_info.addr_format=CDROM_LBA;
523 if(session >= 0 && session <= 99) {
524 struct cdrom_tocentry Te;
525 Te.cdte_track=session;
526 Te.cdte_format=CDROM_LBA;
527 i = ioctl_by_bdev(bdev, CDROMREADTOCENTRY, (unsigned long) &Te);
528 if (!i) {
c3ed85a3
DJ
529 printk(KERN_DEBUG "ISOFS: Session %d start %d type %d\n",
530 session, Te.cdte_addr.lba,
531 Te.cdte_ctrl&CDROM_DATA_TRACK);
1da177e4
LT
532 if ((Te.cdte_ctrl&CDROM_DATA_TRACK) == 4)
533 return Te.cdte_addr.lba;
534 }
c3ed85a3
DJ
535
536 printk(KERN_ERR "ISOFS: Invalid session number or type of track\n");
1da177e4
LT
537 }
538 i = ioctl_by_bdev(bdev, CDROMMULTISESSION, (unsigned long) &ms_info);
9eb7f2c6 539 if (session > 0)
c3ed85a3 540 printk(KERN_ERR "ISOFS: Invalid session number\n");
1da177e4 541#if 0
c3ed85a3 542 printk(KERN_DEBUG "isofs.inode: CDROMMULTISESSION: rc=%d\n",i);
1da177e4 543 if (i==0) {
c3ed85a3
DJ
544 printk(KERN_DEBUG "isofs.inode: XA disk: %s\n",ms_info.xa_flag?"yes":"no");
545 printk(KERN_DEBUG "isofs.inode: vol_desc_start = %d\n", ms_info.addr.lba);
1da177e4
LT
546 }
547#endif
548 if (i==0)
549#if WE_OBEY_THE_WRITTEN_STANDARDS
c3ed85a3 550 if (ms_info.xa_flag) /* necessary for a valid ms_info.addr */
1da177e4 551#endif
c3ed85a3 552 vol_desc_start=ms_info.addr.lba;
1da177e4
LT
553 return vol_desc_start;
554}
555
e45c9eff
OZ
556/*
557 * Check if root directory is empty (has less than 3 files).
558 *
559 * Used to detect broken CDs where ISO root directory is empty but Joliet root
560 * directory is OK. If such CD has Rock Ridge extensions, they will be disabled
561 * (and Joliet used instead) or else no files would be visible.
562 */
563static bool rootdir_empty(struct super_block *sb, unsigned long block)
564{
565 int offset = 0, files = 0, de_len;
566 struct iso_directory_record *de;
567 struct buffer_head *bh;
568
569 bh = sb_bread(sb, block);
570 if (!bh)
571 return true;
572 while (files < 3) {
573 de = (struct iso_directory_record *) (bh->b_data + offset);
574 de_len = *(unsigned char *) de;
575 if (de_len == 0)
576 break;
577 files++;
578 offset += de_len;
579 }
580 brelse(bh);
581 return files < 3;
582}
583
1da177e4
LT
584/*
585 * Initialize the superblock and read the root inode.
586 *
587 * Note: a check_disk_change() has been done immediately prior
588 * to this call, so we don't need to check again.
589 */
590static int isofs_fill_super(struct super_block *s, void *data, int silent)
591{
c3ed85a3
DJ
592 struct buffer_head *bh = NULL, *pri_bh = NULL;
593 struct hs_primary_descriptor *h_pri = NULL;
594 struct iso_primary_descriptor *pri = NULL;
1da177e4 595 struct iso_supplementary_descriptor *sec = NULL;
c3ed85a3
DJ
596 struct iso_directory_record *rootp;
597 struct inode *inode;
598 struct iso9660_options opt;
599 struct isofs_sb_info *sbi;
600 unsigned long first_data_zone;
601 int joliet_level = 0;
602 int iso_blknum, block;
603 int orig_zonesize;
c4386c83 604 int table, error = -EINVAL;
c3ed85a3 605 unsigned int vol_desc_start;
1da177e4 606
d0132eea
MS
607 save_mount_options(s, data);
608
f8314dc6 609 sbi = kzalloc(sizeof(*sbi), GFP_KERNEL);
4f819a78 610 if (!sbi)
1da177e4
LT
611 return -ENOMEM;
612 s->s_fs_info = sbi;
1da177e4 613
9eb7f2c6 614 if (!parse_options((char *)data, &opt))
1da177e4
LT
615 goto out_freesbi;
616
617 /*
618 * First of all, get the hardware blocksize for this device.
619 * If we don't know what it is, or the hardware blocksize is
620 * larger than the blocksize the user specified, then use
621 * that value.
622 */
623 /*
624 * What if bugger tells us to go beyond page size?
625 */
626 opt.blocksize = sb_min_blocksize(s, opt.blocksize);
627
628 sbi->s_high_sierra = 0; /* default is iso9660 */
629
630 vol_desc_start = (opt.sbsector != -1) ?
631 opt.sbsector : isofs_get_last_session(s,opt.session);
632
c3ed85a3
DJ
633 for (iso_blknum = vol_desc_start+16;
634 iso_blknum < vol_desc_start+100; iso_blknum++) {
635 struct hs_volume_descriptor *hdp;
636 struct iso_volume_descriptor *vdp;
637
638 block = iso_blknum << (ISOFS_BLOCK_BITS - s->s_blocksize_bits);
639 if (!(bh = sb_bread(s, block)))
640 goto out_no_read;
641
642 vdp = (struct iso_volume_descriptor *)bh->b_data;
643 hdp = (struct hs_volume_descriptor *)bh->b_data;
644
645 /*
646 * Due to the overlapping physical location of the descriptors,
647 * ISO CDs can match hdp->id==HS_STANDARD_ID as well. To ensure
648 * proper identification in this case, we first check for ISO.
649 */
650 if (strncmp (vdp->id, ISO_STANDARD_ID, sizeof vdp->id) == 0) {
651 if (isonum_711(vdp->type) == ISO_VD_END)
652 break;
653 if (isonum_711(vdp->type) == ISO_VD_PRIMARY) {
654 if (pri == NULL) {
655 pri = (struct iso_primary_descriptor *)vdp;
656 /* Save the buffer in case we need it ... */
657 pri_bh = bh;
658 bh = NULL;
659 }
660 }
1da177e4 661#ifdef CONFIG_JOLIET
c3ed85a3
DJ
662 else if (isonum_711(vdp->type) == ISO_VD_SUPPLEMENTARY) {
663 sec = (struct iso_supplementary_descriptor *)vdp;
664 if (sec->escape[0] == 0x25 && sec->escape[1] == 0x2f) {
8711c67b 665 if (opt.joliet) {
c3ed85a3
DJ
666 if (sec->escape[2] == 0x40)
667 joliet_level = 1;
668 else if (sec->escape[2] == 0x43)
669 joliet_level = 2;
670 else if (sec->escape[2] == 0x45)
671 joliet_level = 3;
672
673 printk(KERN_DEBUG "ISO 9660 Extensions: "
674 "Microsoft Joliet Level %d\n",
675 joliet_level);
676 }
677 goto root_found;
678 } else {
679 /* Unknown supplementary volume descriptor */
680 sec = NULL;
681 }
1da177e4 682 }
1da177e4 683#endif
c3ed85a3
DJ
684 } else {
685 if (strncmp (hdp->id, HS_STANDARD_ID, sizeof hdp->id) == 0) {
686 if (isonum_711(hdp->type) != ISO_VD_PRIMARY)
687 goto out_freebh;
688
689 sbi->s_high_sierra = 1;
5404ac8e 690 opt.rock = 0;
c3ed85a3
DJ
691 h_pri = (struct hs_primary_descriptor *)vdp;
692 goto root_found;
693 }
1da177e4 694 }
1da177e4 695
c3ed85a3 696 /* Just skip any volume descriptors we don't recognize */
1da177e4 697
c3ed85a3
DJ
698 brelse(bh);
699 bh = NULL;
1da177e4
LT
700 }
701 /*
702 * If we fall through, either no volume descriptor was found,
703 * or else we passed a primary descriptor looking for others.
704 */
705 if (!pri)
706 goto out_unknown_format;
707 brelse(bh);
708 bh = pri_bh;
709 pri_bh = NULL;
710
711root_found:
712
5404ac8e 713 if (joliet_level && (pri == NULL || !opt.rock)) {
c3ed85a3
DJ
714 /* This is the case of Joliet with the norock mount flag.
715 * A disc with both Joliet and Rock Ridge is handled later
716 */
717 pri = (struct iso_primary_descriptor *) sec;
1da177e4
LT
718 }
719
720 if(sbi->s_high_sierra){
c3ed85a3
DJ
721 rootp = (struct iso_directory_record *) h_pri->root_directory_record;
722 sbi->s_nzones = isonum_733(h_pri->volume_space_size);
723 sbi->s_log_zone_size = isonum_723(h_pri->logical_block_size);
724 sbi->s_max_size = isonum_733(h_pri->volume_space_size);
1da177e4 725 } else {
c3ed85a3
DJ
726 if (!pri)
727 goto out_freebh;
728 rootp = (struct iso_directory_record *) pri->root_directory_record;
729 sbi->s_nzones = isonum_733(pri->volume_space_size);
730 sbi->s_log_zone_size = isonum_723(pri->logical_block_size);
731 sbi->s_max_size = isonum_733(pri->volume_space_size);
1da177e4
LT
732 }
733
734 sbi->s_ninodes = 0; /* No way to figure this out easily */
735
736 orig_zonesize = sbi->s_log_zone_size;
737 /*
738 * If the zone size is smaller than the hardware sector size,
739 * this is a fatal error. This would occur if the disc drive
740 * had sectors that were 2048 bytes, but the filesystem had
741 * blocks that were 512 bytes (which should only very rarely
742 * happen.)
743 */
c3ed85a3 744 if (orig_zonesize < opt.blocksize)
1da177e4
LT
745 goto out_bad_size;
746
747 /* RDE: convert log zone size to bit shift */
c3ed85a3
DJ
748 switch (sbi->s_log_zone_size) {
749 case 512: sbi->s_log_zone_size = 9; break;
750 case 1024: sbi->s_log_zone_size = 10; break;
751 case 2048: sbi->s_log_zone_size = 11; break;
1da177e4 752
c3ed85a3 753 default:
1da177e4 754 goto out_bad_zone_size;
c3ed85a3 755 }
1da177e4
LT
756
757 s->s_magic = ISOFS_SUPER_MAGIC;
66a362a2
JA
758
759 /*
760 * With multi-extent files, file size is only limited by the maximum
761 * size of a file system, which is 8 TB.
762 */
763 s->s_maxbytes = 0x80000000000LL;
1da177e4 764
c3ed85a3
DJ
765 /*
766 * The CDROM is read-only, has no nodes (devices) on it, and since
767 * all of the files appear to be owned by root, we really do not want
768 * to allow suid. (suid or devices will not show up unless we have
769 * Rock Ridge extensions)
770 */
1da177e4
LT
771
772 s->s_flags |= MS_RDONLY /* | MS_NODEV | MS_NOSUID */;
773
774 /* Set this for reference. Its not currently used except on write
775 which we don't have .. */
c3ed85a3
DJ
776
777 first_data_zone = isonum_733(rootp->extent) +
778 isonum_711(rootp->ext_attr_length);
1da177e4
LT
779 sbi->s_firstdatazone = first_data_zone;
780#ifndef BEQUIET
c3ed85a3
DJ
781 printk(KERN_DEBUG "ISOFS: Max size:%ld Log zone size:%ld\n",
782 sbi->s_max_size, 1UL << sbi->s_log_zone_size);
783 printk(KERN_DEBUG "ISOFS: First datazone:%ld\n", sbi->s_firstdatazone);
1da177e4 784 if(sbi->s_high_sierra)
c3ed85a3 785 printk(KERN_DEBUG "ISOFS: Disc in High Sierra format.\n");
1da177e4
LT
786#endif
787
788 /*
789 * If the Joliet level is set, we _may_ decide to use the
790 * secondary descriptor, but can't be sure until after we
791 * read the root inode. But before reading the root inode
792 * we may need to change the device blocksize, and would
793 * rather release the old buffer first. So, we cache the
794 * first_data_zone value from the secondary descriptor.
795 */
796 if (joliet_level) {
797 pri = (struct iso_primary_descriptor *) sec;
798 rootp = (struct iso_directory_record *)
799 pri->root_directory_record;
c3ed85a3
DJ
800 first_data_zone = isonum_733(rootp->extent) +
801 isonum_711(rootp->ext_attr_length);
1da177e4
LT
802 }
803
804 /*
805 * We're all done using the volume descriptor, and may need
806 * to change the device blocksize, so release the buffer now.
807 */
808 brelse(pri_bh);
809 brelse(bh);
810
811 /*
812 * Force the blocksize to 512 for 512 byte sectors. The file
813 * read primitives really get it wrong in a bad way if we don't
814 * do this.
815 *
816 * Note - we should never be setting the blocksize to something
817 * less than the hardware sector size for the device. If we
818 * do, we would end up having to read larger buffers and split
819 * out portions to satisfy requests.
820 *
821 * Note2- the idea here is that we want to deal with the optimal
822 * zonesize in the filesystem. If we have it set to something less,
823 * then we have horrible problems with trying to piece together
824 * bits of adjacent blocks in order to properly read directory
825 * entries. By forcing the blocksize in this way, we ensure
826 * that we will never be required to do this.
827 */
828 sb_set_blocksize(s, orig_zonesize);
829
830 sbi->s_nls_iocharset = NULL;
831
832#ifdef CONFIG_JOLIET
833 if (joliet_level && opt.utf8 == 0) {
c3ed85a3 834 char *p = opt.iocharset ? opt.iocharset : CONFIG_NLS_DEFAULT;
1da177e4
LT
835 sbi->s_nls_iocharset = load_nls(p);
836 if (! sbi->s_nls_iocharset) {
837 /* Fail only if explicit charset specified */
838 if (opt.iocharset)
839 goto out_freesbi;
840 sbi->s_nls_iocharset = load_nls_default();
841 }
842 }
843#endif
844 s->s_op = &isofs_sops;
845 s->s_export_op = &isofs_export_ops;
846 sbi->s_mapping = opt.map;
5404ac8e 847 sbi->s_rock = (opt.rock ? 2 : 0);
1da177e4
LT
848 sbi->s_rock_offset = -1; /* initial offset, will guess until SP is found*/
849 sbi->s_cruft = opt.cruft;
9769f4eb
JW
850 sbi->s_hide = opt.hide;
851 sbi->s_showassoc = opt.showassoc;
1da177e4
LT
852 sbi->s_uid = opt.uid;
853 sbi->s_gid = opt.gid;
5c4a656b
JK
854 sbi->s_uid_set = opt.uid_set;
855 sbi->s_gid_set = opt.gid_set;
1da177e4
LT
856 sbi->s_utf8 = opt.utf8;
857 sbi->s_nocompress = opt.nocompress;
52b680c8 858 sbi->s_overriderockperm = opt.overriderockperm;
4f819a78 859 mutex_init(&sbi->s_mutex);
1da177e4
LT
860 /*
861 * It would be incredibly stupid to allow people to mark every file
862 * on the disk as suid, so we merely allow them to set the default
863 * permissions.
864 */
52b680c8
JK
865 if (opt.fmode != ISOFS_INVALID_MODE)
866 sbi->s_fmode = opt.fmode & 0777;
867 else
868 sbi->s_fmode = ISOFS_INVALID_MODE;
869 if (opt.dmode != ISOFS_INVALID_MODE)
870 sbi->s_dmode = opt.dmode & 0777;
871 else
872 sbi->s_dmode = ISOFS_INVALID_MODE;
1da177e4
LT
873
874 /*
875 * Read the root inode, which _may_ result in changing
876 * the s_rock flag. Once we have the final s_rock value,
877 * we then decide whether to use the Joliet descriptor.
878 */
879 inode = isofs_iget(s, sbi->s_firstdatazone, 0);
c4386c83
DH
880 if (IS_ERR(inode))
881 goto out_no_root;
1da177e4 882
e45c9eff
OZ
883 /*
884 * Fix for broken CDs with Rock Ridge and empty ISO root directory but
885 * correct Joliet root directory.
886 */
887 if (sbi->s_rock == 1 && joliet_level &&
888 rootdir_empty(s, sbi->s_firstdatazone)) {
889 printk(KERN_NOTICE
890 "ISOFS: primary root directory is empty. "
891 "Disabling Rock Ridge and switching to Joliet.");
892 sbi->s_rock = 0;
893 }
894
1da177e4
LT
895 /*
896 * If this disk has both Rock Ridge and Joliet on it, then we
897 * want to use Rock Ridge by default. This can be overridden
898 * by using the norock mount option. There is still one other
899 * possibility that is not taken into account: a Rock Ridge
900 * CD with Unicode names. Until someone sees such a beast, it
901 * will not be supported.
902 */
903 if (sbi->s_rock == 1) {
904 joliet_level = 0;
905 } else if (joliet_level) {
906 sbi->s_rock = 0;
907 if (sbi->s_firstdatazone != first_data_zone) {
908 sbi->s_firstdatazone = first_data_zone;
c3ed85a3 909 printk(KERN_DEBUG
1da177e4
LT
910 "ISOFS: changing to secondary root\n");
911 iput(inode);
912 inode = isofs_iget(s, sbi->s_firstdatazone, 0);
c4386c83
DH
913 if (IS_ERR(inode))
914 goto out_no_root;
1da177e4
LT
915 }
916 }
917
918 if (opt.check == 'u') {
919 /* Only Joliet is case insensitive by default */
c3ed85a3
DJ
920 if (joliet_level)
921 opt.check = 'r';
922 else
923 opt.check = 's';
1da177e4
LT
924 }
925 sbi->s_joliet_level = joliet_level;
926
817794e0
KK
927 /* Make sure the root inode is a directory */
928 if (!S_ISDIR(inode->i_mode)) {
929 printk(KERN_WARNING
930 "isofs_fill_super: root inode is not a directory. "
931 "Corrupted media?\n");
932 goto out_iput;
933 }
934
1da177e4
LT
935 /* get the root dentry */
936 s->s_root = d_alloc_root(inode);
937 if (!(s->s_root))
938 goto out_no_root;
939
940 table = 0;
c3ed85a3
DJ
941 if (joliet_level)
942 table += 2;
943 if (opt.check == 'r')
944 table++;
1da177e4
LT
945 s->s_root->d_op = &isofs_dentry_ops[table];
946
f99d49ad 947 kfree(opt.iocharset);
1da177e4
LT
948
949 return 0;
950
951 /*
952 * Display error messages and free resources.
953 */
1da177e4
LT
954out_iput:
955 iput(inode);
c4386c83
DH
956 goto out_no_inode;
957out_no_root:
958 error = PTR_ERR(inode);
959 if (error != -ENOMEM)
960 printk(KERN_WARNING "%s: get root inode failed\n", __func__);
961out_no_inode:
1da177e4 962#ifdef CONFIG_JOLIET
6d729e44 963 unload_nls(sbi->s_nls_iocharset);
1da177e4
LT
964#endif
965 goto out_freesbi;
966out_no_read:
c3ed85a3
DJ
967 printk(KERN_WARNING "%s: bread failed, dev=%s, iso_blknum=%d, block=%d\n",
968 __func__, s->s_id, iso_blknum, block);
1da177e4
LT
969 goto out_freesbi;
970out_bad_zone_size:
c3ed85a3 971 printk(KERN_WARNING "ISOFS: Bad logical zone size %ld\n",
1da177e4
LT
972 sbi->s_log_zone_size);
973 goto out_freebh;
974out_bad_size:
c3ed85a3 975 printk(KERN_WARNING "ISOFS: Logical zone size(%d) < hardware blocksize(%u)\n",
1da177e4
LT
976 orig_zonesize, opt.blocksize);
977 goto out_freebh;
978out_unknown_format:
979 if (!silent)
c3ed85a3 980 printk(KERN_WARNING "ISOFS: Unable to identify CD-ROM format.\n");
1da177e4
LT
981
982out_freebh:
983 brelse(bh);
984out_freesbi:
f99d49ad 985 kfree(opt.iocharset);
1da177e4
LT
986 kfree(sbi);
987 s->s_fs_info = NULL;
c4386c83 988 return error;
1da177e4
LT
989}
990
726c3342 991static int isofs_statfs (struct dentry *dentry, struct kstatfs *buf)
1da177e4 992{
726c3342 993 struct super_block *sb = dentry->d_sb;
2430c4da 994 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
726c3342 995
1da177e4
LT
996 buf->f_type = ISOFS_SUPER_MAGIC;
997 buf->f_bsize = sb->s_blocksize;
998 buf->f_blocks = (ISOFS_SB(sb)->s_nzones
c3ed85a3 999 << (ISOFS_SB(sb)->s_log_zone_size - sb->s_blocksize_bits));
1da177e4
LT
1000 buf->f_bfree = 0;
1001 buf->f_bavail = 0;
1002 buf->f_files = ISOFS_SB(sb)->s_ninodes;
1003 buf->f_ffree = 0;
2430c4da
CL
1004 buf->f_fsid.val[0] = (u32)id;
1005 buf->f_fsid.val[1] = (u32)(id >> 32);
1da177e4
LT
1006 buf->f_namelen = NAME_MAX;
1007 return 0;
1008}
1009
1010/*
1011 * Get a set of blocks; filling in buffer_heads if already allocated
1012 * or getblk() if they are not. Returns the number of blocks inserted
c4386c83 1013 * (-ve == error.)
1da177e4 1014 */
fde214d4 1015int isofs_get_blocks(struct inode *inode, sector_t iblock,
1da177e4
LT
1016 struct buffer_head **bh, unsigned long nblocks)
1017{
fde214d4 1018 unsigned long b_off = iblock;
1da177e4
LT
1019 unsigned offset, sect_size;
1020 unsigned int firstext;
1021 unsigned long nextblk, nextoff;
c4386c83 1022 int section, rv, error;
1da177e4
LT
1023 struct iso_inode_info *ei = ISOFS_I(inode);
1024
c4386c83 1025 error = -EIO;
1da177e4 1026 rv = 0;
fde214d4 1027 if (iblock != b_off) {
c3ed85a3 1028 printk(KERN_DEBUG "%s: block number too large\n", __func__);
1da177e4
LT
1029 goto abort;
1030 }
1031
c3ed85a3
DJ
1032
1033 offset = 0;
1034 firstext = ei->i_first_extent;
1da177e4 1035 sect_size = ei->i_section_size >> ISOFS_BUFFER_BITS(inode);
c3ed85a3
DJ
1036 nextblk = ei->i_next_section_block;
1037 nextoff = ei->i_next_section_offset;
1038 section = 0;
1da177e4 1039
c3ed85a3 1040 while (nblocks) {
1da177e4
LT
1041 /* If we are *way* beyond the end of the file, print a message.
1042 * Access beyond the end of the file up to the next page boundary
1043 * is normal, however because of the way the page cache works.
1044 * In this case, we just return 0 so that we can properly fill
1045 * the page with useless information without generating any
1046 * I/O errors.
1047 */
1048 if (b_off > ((inode->i_size + PAGE_CACHE_SIZE - 1) >> ISOFS_BUFFER_BITS(inode))) {
fde214d4
JK
1049 printk(KERN_DEBUG "%s: block >= EOF (%lu, %llu)\n",
1050 __func__, b_off,
1051 (unsigned long long)inode->i_size);
1da177e4
LT
1052 goto abort;
1053 }
c3ed85a3 1054
fb50ae74
JRV
1055 /* On the last section, nextblk == 0, section size is likely to
1056 * exceed sect_size by a partial block, and access beyond the
1057 * end of the file will reach beyond the section size, too.
1058 */
1059 while (nextblk && (b_off >= (offset + sect_size))) {
1060 struct inode *ninode;
1061
1062 offset += sect_size;
1063 ninode = isofs_iget(inode->i_sb, nextblk, nextoff);
c4386c83
DH
1064 if (IS_ERR(ninode)) {
1065 error = PTR_ERR(ninode);
fb50ae74 1066 goto abort;
c4386c83 1067 }
fb50ae74
JRV
1068 firstext = ISOFS_I(ninode)->i_first_extent;
1069 sect_size = ISOFS_I(ninode)->i_section_size >> ISOFS_BUFFER_BITS(ninode);
1070 nextblk = ISOFS_I(ninode)->i_next_section_block;
1071 nextoff = ISOFS_I(ninode)->i_next_section_offset;
1072 iput(ninode);
1073
1074 if (++section > 100) {
c3ed85a3
DJ
1075 printk(KERN_DEBUG "%s: More than 100 file sections ?!?"
1076 " aborting...\n", __func__);
fde214d4 1077 printk(KERN_DEBUG "%s: block=%lu firstext=%u sect_size=%u "
c3ed85a3 1078 "nextblk=%lu nextoff=%lu\n", __func__,
fde214d4 1079 b_off, firstext, (unsigned) sect_size,
c3ed85a3 1080 nextblk, nextoff);
fb50ae74 1081 goto abort;
1da177e4
LT
1082 }
1083 }
c3ed85a3
DJ
1084
1085 if (*bh) {
1da177e4
LT
1086 map_bh(*bh, inode->i_sb, firstext + b_off - offset);
1087 } else {
1088 *bh = sb_getblk(inode->i_sb, firstext+b_off-offset);
c3ed85a3 1089 if (!*bh)
1da177e4
LT
1090 goto abort;
1091 }
1092 bh++; /* Next buffer head */
1093 b_off++; /* Next buffer offset */
1094 nblocks--;
1095 rv++;
1096 }
1097
c4386c83 1098 error = 0;
1da177e4 1099abort:
c4386c83 1100 return rv != 0 ? rv : error;
1da177e4
LT
1101}
1102
1103/*
1104 * Used by the standard interfaces.
1105 */
1106static int isofs_get_block(struct inode *inode, sector_t iblock,
1107 struct buffer_head *bh_result, int create)
1108{
c4386c83
DH
1109 int ret;
1110
9eb7f2c6 1111 if (create) {
c3ed85a3 1112 printk(KERN_DEBUG "%s: Kernel tries to allocate a block\n", __func__);
1da177e4
LT
1113 return -EROFS;
1114 }
1115
c4386c83
DH
1116 ret = isofs_get_blocks(inode, iblock, &bh_result, 1);
1117 return ret < 0 ? ret : 0;
1da177e4
LT
1118}
1119
1120static int isofs_bmap(struct inode *inode, sector_t block)
1121{
1122 struct buffer_head dummy;
1123 int error;
1124
1125 dummy.b_state = 0;
1126 dummy.b_blocknr = -1000;
1127 error = isofs_get_block(inode, block, &dummy, 0);
1128 if (!error)
1129 return dummy.b_blocknr;
1130 return 0;
1131}
1132
1133struct buffer_head *isofs_bread(struct inode *inode, sector_t block)
1134{
1135 sector_t blknr = isofs_bmap(inode, block);
1136 if (!blknr)
1137 return NULL;
1138 return sb_bread(inode->i_sb, blknr);
1139}
1140
1141static int isofs_readpage(struct file *file, struct page *page)
1142{
1143 return block_read_full_page(page,isofs_get_block);
1144}
1145
1146static sector_t _isofs_bmap(struct address_space *mapping, sector_t block)
1147{
1148 return generic_block_bmap(mapping,block,isofs_get_block);
1149}
1150
f5e54d6e 1151static const struct address_space_operations isofs_aops = {
1da177e4
LT
1152 .readpage = isofs_readpage,
1153 .sync_page = block_sync_page,
1154 .bmap = _isofs_bmap
1155};
1156
9eb7f2c6 1157static int isofs_read_level3_size(struct inode *inode)
1da177e4
LT
1158{
1159 unsigned long bufsize = ISOFS_BUFFER_SIZE(inode);
1160 int high_sierra = ISOFS_SB(inode->i_sb)->s_high_sierra;
c3ed85a3 1161 struct buffer_head *bh = NULL;
1da177e4
LT
1162 unsigned long block, offset, block_saved, offset_saved;
1163 int i = 0;
1164 int more_entries = 0;
c3ed85a3 1165 struct iso_directory_record *tmpde = NULL;
1da177e4
LT
1166 struct iso_inode_info *ei = ISOFS_I(inode);
1167
1168 inode->i_size = 0;
1169
1170 /* The first 16 blocks are reserved as the System Area. Thus,
1171 * no inodes can appear in block 0. We use this to flag that
1172 * this is the last section. */
1173 ei->i_next_section_block = 0;
1174 ei->i_next_section_offset = 0;
1175
1176 block = ei->i_iget5_block;
1177 offset = ei->i_iget5_offset;
1178
1179 do {
c3ed85a3 1180 struct iso_directory_record *de;
1da177e4
LT
1181 unsigned int de_len;
1182
1183 if (!bh) {
1184 bh = sb_bread(inode->i_sb, block);
1185 if (!bh)
1186 goto out_noread;
1187 }
1188 de = (struct iso_directory_record *) (bh->b_data + offset);
1189 de_len = *(unsigned char *) de;
1190
1191 if (de_len == 0) {
1192 brelse(bh);
1193 bh = NULL;
1194 ++block;
1195 offset = 0;
1196 continue;
1197 }
1198
1199 block_saved = block;
1200 offset_saved = offset;
1201 offset += de_len;
1202
1203 /* Make sure we have a full directory entry */
1204 if (offset >= bufsize) {
1205 int slop = bufsize - offset + de_len;
1206 if (!tmpde) {
1207 tmpde = kmalloc(256, GFP_KERNEL);
1208 if (!tmpde)
1209 goto out_nomem;
1210 }
1211 memcpy(tmpde, de, slop);
1212 offset &= bufsize - 1;
1213 block++;
1214 brelse(bh);
1215 bh = NULL;
1216 if (offset) {
1217 bh = sb_bread(inode->i_sb, block);
1218 if (!bh)
1219 goto out_noread;
9eb7f2c6 1220 memcpy((void *)tmpde+slop, bh->b_data, offset);
1da177e4
LT
1221 }
1222 de = tmpde;
1223 }
1224
1225 inode->i_size += isonum_733(de->size);
1226 if (i == 1) {
1227 ei->i_next_section_block = block_saved;
1228 ei->i_next_section_offset = offset_saved;
1229 }
1230
1231 more_entries = de->flags[-high_sierra] & 0x80;
1232
1233 i++;
9eb7f2c6 1234 if (i > 100)
1da177e4 1235 goto out_toomany;
9eb7f2c6 1236 } while (more_entries);
1da177e4 1237out:
9eb7f2c6 1238 kfree(tmpde);
1da177e4
LT
1239 if (bh)
1240 brelse(bh);
1241 return 0;
1242
1243out_nomem:
1244 if (bh)
1245 brelse(bh);
1246 return -ENOMEM;
1247
1248out_noread:
1249 printk(KERN_INFO "ISOFS: unable to read i-node block %lu\n", block);
f99d49ad 1250 kfree(tmpde);
1da177e4
LT
1251 return -EIO;
1252
1253out_toomany:
c3ed85a3
DJ
1254 printk(KERN_INFO "%s: More than 100 file sections ?!?, aborting...\n"
1255 "isofs_read_level3_size: inode=%lu\n",
1256 __func__, inode->i_ino);
1da177e4
LT
1257 goto out;
1258}
1259
c4386c83 1260static int isofs_read_inode(struct inode *inode)
1da177e4
LT
1261{
1262 struct super_block *sb = inode->i_sb;
1263 struct isofs_sb_info *sbi = ISOFS_SB(sb);
1264 unsigned long bufsize = ISOFS_BUFFER_SIZE(inode);
1265 unsigned long block;
1266 int high_sierra = sbi->s_high_sierra;
c3ed85a3
DJ
1267 struct buffer_head *bh = NULL;
1268 struct iso_directory_record *de;
1269 struct iso_directory_record *tmpde = NULL;
1da177e4
LT
1270 unsigned int de_len;
1271 unsigned long offset;
1272 struct iso_inode_info *ei = ISOFS_I(inode);
c4386c83 1273 int ret = -EIO;
1da177e4
LT
1274
1275 block = ei->i_iget5_block;
1276 bh = sb_bread(inode->i_sb, block);
1277 if (!bh)
1278 goto out_badread;
1279
1280 offset = ei->i_iget5_offset;
1281
1282 de = (struct iso_directory_record *) (bh->b_data + offset);
1283 de_len = *(unsigned char *) de;
1284
1285 if (offset + de_len > bufsize) {
1286 int frag1 = bufsize - offset;
1287
1288 tmpde = kmalloc(de_len, GFP_KERNEL);
1289 if (tmpde == NULL) {
c3ed85a3 1290 printk(KERN_INFO "%s: out of memory\n", __func__);
c4386c83 1291 ret = -ENOMEM;
1da177e4
LT
1292 goto fail;
1293 }
1294 memcpy(tmpde, bh->b_data + offset, frag1);
1295 brelse(bh);
1296 bh = sb_bread(inode->i_sb, ++block);
1297 if (!bh)
1298 goto out_badread;
1299 memcpy((char *)tmpde+frag1, bh->b_data, de_len - frag1);
1300 de = tmpde;
1301 }
1302
1303 inode->i_ino = isofs_get_ino(ei->i_iget5_block,
c3ed85a3
DJ
1304 ei->i_iget5_offset,
1305 ISOFS_BUFFER_BITS(inode));
1da177e4
LT
1306
1307 /* Assume it is a normal-format file unless told otherwise */
1308 ei->i_file_format = isofs_file_normal;
1309
1310 if (de->flags[-high_sierra] & 2) {
52b680c8
JK
1311 if (sbi->s_dmode != ISOFS_INVALID_MODE)
1312 inode->i_mode = S_IFDIR | sbi->s_dmode;
1313 else
1314 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO;
c3ed85a3
DJ
1315 inode->i_nlink = 1; /*
1316 * Set to 1. We know there are 2, but
1317 * the find utility tries to optimize
1318 * if it is 2, and it screws up. It is
1319 * easier to give 1 which tells find to
1320 * do it the hard way.
1321 */
1da177e4 1322 } else {
52b680c8
JK
1323 if (sbi->s_fmode != ISOFS_INVALID_MODE) {
1324 inode->i_mode = S_IFREG | sbi->s_fmode;
1325 } else {
1326 /*
1327 * Set default permissions: r-x for all. The disc
1328 * could be shared with DOS machines so virtually
1329 * anything could be a valid executable.
1330 */
1331 inode->i_mode = S_IFREG | S_IRUGO | S_IXUGO;
1332 }
1da177e4 1333 inode->i_nlink = 1;
1da177e4
LT
1334 }
1335 inode->i_uid = sbi->s_uid;
1336 inode->i_gid = sbi->s_gid;
ba52de12 1337 inode->i_blocks = 0;
1da177e4
LT
1338
1339 ei->i_format_parm[0] = 0;
1340 ei->i_format_parm[1] = 0;
1341 ei->i_format_parm[2] = 0;
1342
c3ed85a3 1343 ei->i_section_size = isonum_733(de->size);
9eb7f2c6 1344 if (de->flags[-high_sierra] & 0x80) {
c4386c83
DH
1345 ret = isofs_read_level3_size(inode);
1346 if (ret < 0)
c3ed85a3 1347 goto fail;
c4386c83 1348 ret = -EIO;
1da177e4
LT
1349 } else {
1350 ei->i_next_section_block = 0;
1351 ei->i_next_section_offset = 0;
c3ed85a3 1352 inode->i_size = isonum_733(de->size);
1da177e4
LT
1353 }
1354
1355 /*
1356 * Some dipshit decided to store some other bit of information
1357 * in the high byte of the file length. Truncate size in case
1358 * this CDROM was mounted with the cruft option.
1359 */
1360
5404ac8e 1361 if (sbi->s_cruft)
1da177e4
LT
1362 inode->i_size &= 0x00ffffff;
1363
1364 if (de->interleave[0]) {
c3ed85a3 1365 printk(KERN_DEBUG "ISOFS: Interleaved files not (yet) supported.\n");
1da177e4
LT
1366 inode->i_size = 0;
1367 }
1368
1369 /* I have no idea what file_unit_size is used for, so
1370 we will flag it for now */
1371 if (de->file_unit_size[0] != 0) {
c3ed85a3
DJ
1372 printk(KERN_DEBUG "ISOFS: File unit size != 0 for ISO file (%ld).\n",
1373 inode->i_ino);
1da177e4
LT
1374 }
1375
1376 /* I have no idea what other flag bits are used for, so
1377 we will flag it for now */
1378#ifdef DEBUG
1379 if((de->flags[-high_sierra] & ~2)!= 0){
c3ed85a3
DJ
1380 printk(KERN_DEBUG "ISOFS: Unusual flag settings for ISO file "
1381 "(%ld %x).\n",
1382 inode->i_ino, de->flags[-high_sierra]);
1da177e4
LT
1383 }
1384#endif
1385
1386 inode->i_mtime.tv_sec =
1387 inode->i_atime.tv_sec =
1388 inode->i_ctime.tv_sec = iso_date(de->date, high_sierra);
1389 inode->i_mtime.tv_nsec =
1390 inode->i_atime.tv_nsec =
1391 inode->i_ctime.tv_nsec = 0;
1392
c3ed85a3
DJ
1393 ei->i_first_extent = (isonum_733(de->extent) +
1394 isonum_711(de->ext_attr_length));
1da177e4
LT
1395
1396 /* Set the number of blocks for stat() - should be done before RR */
c3ed85a3 1397 inode->i_blocks = (inode->i_size + 511) >> 9;
1da177e4
LT
1398
1399 /*
1400 * Now test for possible Rock Ridge extensions which will override
1401 * some of these numbers in the inode structure.
1402 */
1403
1404 if (!high_sierra) {
1405 parse_rock_ridge_inode(de, inode);
1406 /* if we want uid/gid set, override the rock ridge setting */
5c4a656b
JK
1407 if (sbi->s_uid_set)
1408 inode->i_uid = sbi->s_uid;
1409 if (sbi->s_gid_set)
1410 inode->i_gid = sbi->s_gid;
1da177e4 1411 }
52b680c8
JK
1412 /* Now set final access rights if overriding rock ridge setting */
1413 if (S_ISDIR(inode->i_mode) && sbi->s_overriderockperm &&
1414 sbi->s_dmode != ISOFS_INVALID_MODE)
1415 inode->i_mode = S_IFDIR | sbi->s_dmode;
1416 if (S_ISREG(inode->i_mode) && sbi->s_overriderockperm &&
1417 sbi->s_fmode != ISOFS_INVALID_MODE)
1418 inode->i_mode = S_IFREG | sbi->s_fmode;
1da177e4
LT
1419
1420 /* Install the inode operations vector */
1421 if (S_ISREG(inode->i_mode)) {
1422 inode->i_fop = &generic_ro_fops;
c3ed85a3 1423 switch (ei->i_file_format) {
1da177e4
LT
1424#ifdef CONFIG_ZISOFS
1425 case isofs_file_compressed:
1426 inode->i_data.a_ops = &zisofs_aops;
1427 break;
1428#endif
1429 default:
1430 inode->i_data.a_ops = &isofs_aops;
1431 break;
1432 }
1433 } else if (S_ISDIR(inode->i_mode)) {
1434 inode->i_op = &isofs_dir_inode_operations;
1435 inode->i_fop = &isofs_dir_operations;
1436 } else if (S_ISLNK(inode->i_mode)) {
1437 inode->i_op = &page_symlink_inode_operations;
1438 inode->i_data.a_ops = &isofs_symlink_aops;
1439 } else
1440 /* XXX - parse_rock_ridge_inode() had already set i_rdev. */
1441 init_special_inode(inode, inode->i_mode, inode->i_rdev);
1442
c4386c83 1443 ret = 0;
9eb7f2c6 1444out:
f99d49ad 1445 kfree(tmpde);
1da177e4
LT
1446 if (bh)
1447 brelse(bh);
c4386c83 1448 return ret;
1da177e4 1449
9eb7f2c6 1450out_badread:
1da177e4 1451 printk(KERN_WARNING "ISOFS: unable to read i-node block\n");
9eb7f2c6 1452fail:
1da177e4
LT
1453 goto out;
1454}
1455
1456struct isofs_iget5_callback_data {
1457 unsigned long block;
1458 unsigned long offset;
1459};
1460
1461static int isofs_iget5_test(struct inode *ino, void *data)
1462{
1463 struct iso_inode_info *i = ISOFS_I(ino);
1464 struct isofs_iget5_callback_data *d =
1465 (struct isofs_iget5_callback_data*)data;
1466 return (i->i_iget5_block == d->block)
c3ed85a3 1467 && (i->i_iget5_offset == d->offset);
1da177e4
LT
1468}
1469
1470static int isofs_iget5_set(struct inode *ino, void *data)
1471{
1472 struct iso_inode_info *i = ISOFS_I(ino);
1473 struct isofs_iget5_callback_data *d =
1474 (struct isofs_iget5_callback_data*)data;
1475 i->i_iget5_block = d->block;
1476 i->i_iget5_offset = d->offset;
1477 return 0;
1478}
1479
1480/* Store, in the inode's containing structure, the block and block
1481 * offset that point to the underlying meta-data for the inode. The
1482 * code below is otherwise similar to the iget() code in
1483 * include/linux/fs.h */
1484struct inode *isofs_iget(struct super_block *sb,
1485 unsigned long block,
1486 unsigned long offset)
1487{
1488 unsigned long hashval;
1489 struct inode *inode;
1490 struct isofs_iget5_callback_data data;
c4386c83 1491 long ret;
1da177e4
LT
1492
1493 if (offset >= 1ul << sb->s_blocksize_bits)
c4386c83 1494 return ERR_PTR(-EINVAL);
1da177e4
LT
1495
1496 data.block = block;
1497 data.offset = offset;
1498
1499 hashval = (block << sb->s_blocksize_bits) | offset;
1500
9eb7f2c6 1501 inode = iget5_locked(sb, hashval, &isofs_iget5_test,
c3ed85a3 1502 &isofs_iget5_set, &data);
1da177e4 1503
c4386c83
DH
1504 if (!inode)
1505 return ERR_PTR(-ENOMEM);
1506
1507 if (inode->i_state & I_NEW) {
1508 ret = isofs_read_inode(inode);
1509 if (ret < 0) {
1510 iget_failed(inode);
1511 inode = ERR_PTR(ret);
1512 } else {
1513 unlock_new_inode(inode);
1514 }
1da177e4
LT
1515 }
1516
1517 return inode;
1518}
1519
152a0836
AV
1520static struct dentry *isofs_mount(struct file_system_type *fs_type,
1521 int flags, const char *dev_name, void *data)
1da177e4 1522{
152a0836 1523 return mount_bdev(fs_type, flags, dev_name, data, isofs_fill_super);
1da177e4
LT
1524}
1525
1526static struct file_system_type iso9660_fs_type = {
1527 .owner = THIS_MODULE,
1528 .name = "iso9660",
152a0836 1529 .mount = isofs_mount,
1da177e4
LT
1530 .kill_sb = kill_block_super,
1531 .fs_flags = FS_REQUIRES_DEV,
1532};
1533
1534static int __init init_iso9660_fs(void)
1535{
1536 int err = init_inodecache();
1537 if (err)
1538 goto out;
1539#ifdef CONFIG_ZISOFS
1540 err = zisofs_init();
1541 if (err)
1542 goto out1;
1543#endif
1544 err = register_filesystem(&iso9660_fs_type);
1545 if (err)
1546 goto out2;
1547 return 0;
1548out2:
1549#ifdef CONFIG_ZISOFS
1550 zisofs_cleanup();
1551out1:
1552#endif
1553 destroy_inodecache();
1554out:
1555 return err;
1556}
1557
1558static void __exit exit_iso9660_fs(void)
1559{
1560 unregister_filesystem(&iso9660_fs_type);
1561#ifdef CONFIG_ZISOFS
1562 zisofs_cleanup();
1563#endif
1564 destroy_inodecache();
1565}
1566
1567module_init(init_iso9660_fs)
1568module_exit(exit_iso9660_fs)
1569MODULE_LICENSE("GPL");
1570/* Actual filesystem name is iso9660, as requested in filesystems.c */
1571MODULE_ALIAS("iso9660");
This page took 0.635119 seconds and 5 git commands to generate.