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

Linux/Unix编程

开发平台:

Unix_Linux

  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.
  6.  *      1994  Eberhard Moenkeberg - multi session handling.
  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.  */
  11. #include <linux/config.h>
  12. #include <linux/module.h>
  13. #include <linux/stat.h>
  14. #include <linux/sched.h>
  15. #include <linux/iso_fs.h>
  16. #include <linux/kernel.h>
  17. #include <linux/major.h>
  18. #include <linux/mm.h>
  19. #include <linux/string.h>
  20. #include <linux/locks.h>
  21. #include <linux/slab.h>
  22. #include <linux/errno.h>
  23. #include <linux/cdrom.h>
  24. #include <linux/init.h>
  25. #include <linux/nls.h>
  26. #include <linux/ctype.h>
  27. #include <linux/smp_lock.h>
  28. #include <linux/blkdev.h>
  29. #include <asm/system.h>
  30. #include <asm/uaccess.h>
  31. #include "zisofs.h"
  32. /*
  33.  * We have no support for "multi volume" CDs, but more and more disks carry
  34.  * wrong information within the volume descriptors.
  35.  */
  36. #define IGNORE_WRONG_MULTI_VOLUME_SPECS
  37. #define BEQUIET
  38. #ifdef LEAK_CHECK
  39. static int check_malloc = 0;
  40. static int check_bread = 0;
  41. #endif
  42. static int isofs_hashi(struct dentry *parent, struct qstr *qstr);
  43. static int isofs_hash(struct dentry *parent, struct qstr *qstr);
  44. static int isofs_dentry_cmpi(struct dentry *dentry, struct qstr *a, struct qstr *b);
  45. static int isofs_dentry_cmp(struct dentry *dentry, struct qstr *a, struct qstr *b);
  46. #ifdef CONFIG_JOLIET
  47. static int isofs_hashi_ms(struct dentry *parent, struct qstr *qstr);
  48. static int isofs_hash_ms(struct dentry *parent, struct qstr *qstr);
  49. static int isofs_dentry_cmpi_ms(struct dentry *dentry, struct qstr *a, struct qstr *b);
  50. static int isofs_dentry_cmp_ms(struct dentry *dentry, struct qstr *a, struct qstr *b);
  51. #endif
  52. static void isofs_put_super(struct super_block *sb)
  53. {
  54. #ifdef CONFIG_JOLIET
  55. if (sb->u.isofs_sb.s_nls_iocharset) {
  56. unload_nls(sb->u.isofs_sb.s_nls_iocharset);
  57. sb->u.isofs_sb.s_nls_iocharset = NULL;
  58. }
  59. #endif
  60. #ifdef LEAK_CHECK
  61. printk("Outstanding mallocs:%d, outstanding buffers: %dn",
  62.        check_malloc, check_bread);
  63. #endif
  64. return;
  65. }
  66. static void isofs_read_inode(struct inode *);
  67. static int isofs_statfs (struct super_block *, struct statfs *);
  68. static struct super_operations isofs_sops = {
  69. read_inode: isofs_read_inode,
  70. put_super: isofs_put_super,
  71. statfs: isofs_statfs,
  72. };
  73. static struct dentry_operations isofs_dentry_ops[] = {
  74. {
  75. d_hash: isofs_hash,
  76. d_compare: isofs_dentry_cmp,
  77. },
  78. {
  79. d_hash: isofs_hashi,
  80. d_compare: isofs_dentry_cmpi,
  81. },
  82. #ifdef CONFIG_JOLIET
  83. {
  84. d_hash: isofs_hash_ms,
  85. d_compare: isofs_dentry_cmp_ms,
  86. },
  87. {
  88. d_hash: isofs_hashi_ms,
  89. d_compare: isofs_dentry_cmpi_ms,
  90. }
  91. #endif
  92. };
  93. struct iso9660_options{
  94. char map;
  95. char rock;
  96. char joliet;
  97. char cruft;
  98. char unhide;
  99. char nocompress;
  100. unsigned char check;
  101. unsigned int blocksize;
  102. mode_t mode;
  103. gid_t gid;
  104. uid_t uid;
  105. char *iocharset;
  106. unsigned char utf8;
  107.         /* LVE */
  108.         s32 session;
  109.         s32 sbsector;
  110. };
  111. /*
  112.  * Compute the hash for the isofs name corresponding to the dentry.
  113.  */
  114. static int
  115. isofs_hash_common(struct dentry *dentry, struct qstr *qstr, int ms)
  116. {
  117. const char *name;
  118. int len;
  119. len = qstr->len;
  120. name = qstr->name;
  121. if (ms) {
  122. while (len && name[len-1] == '.')
  123. len--;
  124. }
  125. qstr->hash = full_name_hash(name, len);
  126. return 0;
  127. }
  128. /*
  129.  * Compute the hash for the isofs name corresponding to the dentry.
  130.  */
  131. static int
  132. isofs_hashi_common(struct dentry *dentry, struct qstr *qstr, int ms)
  133. {
  134. const char *name;
  135. int len;
  136. char c;
  137. unsigned long hash;
  138. len = qstr->len;
  139. name = qstr->name;
  140. if (ms) {
  141. while (len && name[len-1] == '.')
  142. len--;
  143. }
  144. hash = init_name_hash();
  145. while (len--) {
  146. c = tolower(*name++);
  147. hash = partial_name_hash(tolower(c), hash);
  148. }
  149. qstr->hash = end_name_hash(hash);
  150. return 0;
  151. }
  152. /*
  153.  * Case insensitive compare of two isofs names.
  154.  */
  155. static int
  156. isofs_dentry_cmpi_common(struct dentry *dentry,struct qstr *a,struct qstr *b,int ms)
  157. {
  158. int alen, blen;
  159. /* A filename cannot end in '.' or we treat it like it has none */
  160. alen = a->len;
  161. blen = b->len;
  162. if (ms) {
  163. while (alen && a->name[alen-1] == '.')
  164. alen--;
  165. while (blen && b->name[blen-1] == '.')
  166. blen--;
  167. }
  168. if (alen == blen) {
  169. if (strnicmp(a->name, b->name, alen) == 0)
  170. return 0;
  171. }
  172. return 1;
  173. }
  174. /*
  175.  * Case sensitive compare of two isofs names.
  176.  */
  177. static int
  178. isofs_dentry_cmp_common(struct dentry *dentry,struct qstr *a,struct qstr *b,int ms)
  179. {
  180. int alen, blen;
  181. /* A filename cannot end in '.' or we treat it like it has none */
  182. alen = a->len;
  183. blen = b->len;
  184. if (ms) {
  185. while (alen && a->name[alen-1] == '.')
  186. alen--;
  187. while (blen && b->name[blen-1] == '.')
  188. blen--;
  189. }
  190. if (alen == blen) {
  191. if (strncmp(a->name, b->name, alen) == 0)
  192. return 0;
  193. }
  194. return 1;
  195. }
  196. static int
  197. isofs_hash(struct dentry *dentry, struct qstr *qstr)
  198. {
  199. return isofs_hash_common(dentry, qstr, 0);
  200. }
  201. static int
  202. isofs_hashi(struct dentry *dentry, struct qstr *qstr)
  203. {
  204. return isofs_hashi_common(dentry, qstr, 0);
  205. }
  206. static int
  207. isofs_dentry_cmp(struct dentry *dentry,struct qstr *a,struct qstr *b)
  208. {
  209. return isofs_dentry_cmp_common(dentry, a, b, 0);
  210. }
  211. static int
  212. isofs_dentry_cmpi(struct dentry *dentry,struct qstr *a,struct qstr *b)
  213. {
  214. return isofs_dentry_cmpi_common(dentry, a, b, 0);
  215. }
  216. #ifdef CONFIG_JOLIET
  217. static int
  218. isofs_hash_ms(struct dentry *dentry, struct qstr *qstr)
  219. {
  220. return isofs_hash_common(dentry, qstr, 1);
  221. }
  222. static int
  223. isofs_hashi_ms(struct dentry *dentry, struct qstr *qstr)
  224. {
  225. return isofs_hashi_common(dentry, qstr, 1);
  226. }
  227. static int
  228. isofs_dentry_cmp_ms(struct dentry *dentry,struct qstr *a,struct qstr *b)
  229. {
  230. return isofs_dentry_cmp_common(dentry, a, b, 1);
  231. }
  232. static int
  233. isofs_dentry_cmpi_ms(struct dentry *dentry,struct qstr *a,struct qstr *b)
  234. {
  235. return isofs_dentry_cmpi_common(dentry, a, b, 1);
  236. }
  237. #endif
  238. static int parse_options(char *options, struct iso9660_options * popt)
  239. {
  240. char *this_char,*value;
  241. popt->map = 'n';
  242. popt->rock = 'y';
  243. popt->joliet = 'y';
  244. popt->cruft = 'n';
  245. popt->unhide = 'n';
  246. popt->check = 'u'; /* unset */
  247. popt->nocompress = 0;
  248. popt->blocksize = 1024;
  249. popt->mode = S_IRUGO | S_IXUGO; /* r-x for all.  The disc could
  250.    be shared with DOS machines so
  251.    virtually anything could be
  252.    a valid executable. */
  253. popt->gid = 0;
  254. popt->uid = 0;
  255. popt->iocharset = NULL;
  256. popt->utf8 = 0;
  257. popt->session=-1;
  258. popt->sbsector=-1;
  259. if (!options) return 1;
  260. for (this_char = strtok(options,","); this_char; this_char = strtok(NULL,",")) {
  261.         if (strncmp(this_char,"norock",6) == 0) {
  262.   popt->rock = 'n';
  263.   continue;
  264. }
  265.         if (strncmp(this_char,"nojoliet",8) == 0) {
  266.   popt->joliet = 'n';
  267.   continue;
  268. }
  269.         if (strncmp(this_char,"unhide",6) == 0) {
  270.   popt->unhide = 'y';
  271.   continue;
  272. }
  273.         if (strncmp(this_char,"cruft",5) == 0) {
  274.   popt->cruft = 'y';
  275.   continue;
  276. }
  277.         if (strncmp(this_char,"utf8",4) == 0) {
  278.   popt->utf8 = 1;
  279.   continue;
  280. }
  281.         if (strncmp(this_char,"nocompress",10) == 0) {
  282.   popt->nocompress = 1;
  283.   continue;
  284. }
  285. if ((value = strchr(this_char,'=')) != NULL)
  286. *value++ = 0;
  287. #ifdef CONFIG_JOLIET
  288. if (!strcmp(this_char,"iocharset") && value) {
  289. popt->iocharset = value;
  290. while (*value && *value != ',')
  291. value++;
  292. if (value == popt->iocharset)
  293. return 0;
  294. *value = 0;
  295. } else
  296. #endif
  297. if (!strcmp(this_char,"map") && value) {
  298. if (value[0] && !value[1] && strchr("ano",*value))
  299. popt->map = *value;
  300. else if (!strcmp(value,"off")) popt->map = 'o';
  301. else if (!strcmp(value,"normal")) popt->map = 'n';
  302. else if (!strcmp(value,"acorn")) popt->map = 'a';
  303. else return 0;
  304. }
  305. if (!strcmp(this_char,"session") && value) {
  306. char * vpnt = value;
  307. unsigned int ivalue = simple_strtoul(vpnt, &vpnt, 0);
  308. if(ivalue < 0 || ivalue >99) return 0;
  309. popt->session=ivalue+1;
  310. }
  311. if (!strcmp(this_char,"sbsector") && value) {
  312. char * vpnt = value;
  313. unsigned int ivalue = simple_strtoul(vpnt, &vpnt, 0);
  314. if(ivalue < 0 || ivalue >660*512) return 0;
  315. popt->sbsector=ivalue;
  316. }
  317. else if (!strcmp(this_char,"check") && value) {
  318. if (value[0] && !value[1] && strchr("rs",*value))
  319. popt->check = *value;
  320. else if (!strcmp(value,"relaxed")) popt->check = 'r';
  321. else if (!strcmp(value,"strict")) popt->check = 's';
  322. else return 0;
  323. }
  324. else if (!strcmp(this_char,"conv") && value) {
  325. /* no conversion is done anymore;
  326.    we still accept the same mount options,
  327.    but ignore them */
  328. if (value[0] && !value[1] && strchr("btma",*value)) ;
  329. else if (!strcmp(value,"binary")) ;
  330. else if (!strcmp(value,"text")) ;
  331. else if (!strcmp(value,"mtext")) ;
  332. else if (!strcmp(value,"auto")) ;
  333. else return 0;
  334. }
  335. else if (value &&
  336.  (!strcmp(this_char,"block") ||
  337.   !strcmp(this_char,"mode") ||
  338.   !strcmp(this_char,"uid") ||
  339.   !strcmp(this_char,"gid"))) {
  340.   char * vpnt = value;
  341.   unsigned int ivalue = simple_strtoul(vpnt, &vpnt, 0);
  342.   if (*vpnt) return 0;
  343.   switch(*this_char) {
  344.   case 'b':
  345.     if (   ivalue != 512
  346. && ivalue != 1024
  347. && ivalue != 2048) return 0;
  348.     popt->blocksize = ivalue;
  349.     break;
  350.   case 'u':
  351.     popt->uid = ivalue;
  352.     break;
  353.   case 'g':
  354.     popt->gid = ivalue;
  355.     break;
  356.   case 'm':
  357.     popt->mode = ivalue;
  358.     break;
  359.   }
  360. }
  361. else return 1;
  362. }
  363. return 1;
  364. }
  365. /*
  366.  * look if the driver can tell the multi session redirection value
  367.  *
  368.  * don't change this if you don't know what you do, please!
  369.  * Multisession is legal only with XA disks.
  370.  * A non-XA disk with more than one volume descriptor may do it right, but
  371.  * usually is written in a nowhere standardized "multi-partition" manner.
  372.  * Multisession uses absolute addressing (solely the first frame of the whole
  373.  * track is #0), multi-partition uses relative addressing (each first frame of
  374.  * each track is #0), and a track is not a session.
  375.  *
  376.  * A broken CDwriter software or drive firmware does not set new standards,
  377.  * at least not if conflicting with the existing ones.
  378.  *
  379.  * emoenke@gwdg.de
  380.  */
  381. #define WE_OBEY_THE_WRITTEN_STANDARDS 1
  382. static unsigned int isofs_get_last_session(struct super_block *sb,s32 session )
  383. {
  384. struct cdrom_multisession ms_info;
  385. unsigned int vol_desc_start;
  386. struct block_device *bdev = sb->s_bdev;
  387. int i;
  388. vol_desc_start=0;
  389. ms_info.addr_format=CDROM_LBA;
  390. if(session >= 0 && session <= 99) {
  391. struct cdrom_tocentry Te;
  392. Te.cdte_track=session;
  393. Te.cdte_format=CDROM_LBA;
  394. i = ioctl_by_bdev(bdev, CDROMREADTOCENTRY, (unsigned long) &Te);
  395. if (!i) {
  396. printk(KERN_DEBUG "Session %d start %d type %dn",
  397.        session, Te.cdte_addr.lba,
  398.        Te.cdte_ctrl&CDROM_DATA_TRACK);
  399. if ((Te.cdte_ctrl&CDROM_DATA_TRACK) == 4)
  400. return Te.cdte_addr.lba;
  401. }
  402. printk(KERN_ERR "Invalid session number or type of trackn");
  403. }
  404. i = ioctl_by_bdev(bdev, CDROMMULTISESSION, (unsigned long) &ms_info);
  405. if(session > 0) printk(KERN_ERR "Invalid session numbern");
  406. #if 0
  407. printk("isofs.inode: CDROMMULTISESSION: rc=%dn",i);
  408. if (i==0) {
  409. printk("isofs.inode: XA disk: %sn",ms_info.xa_flag?"yes":"no");
  410. printk("isofs.inode: vol_desc_start = %dn", ms_info.addr.lba);
  411. }
  412. #endif
  413. if (i==0)
  414. #if WE_OBEY_THE_WRITTEN_STANDARDS
  415.         if (ms_info.xa_flag) /* necessary for a valid ms_info.addr */
  416. #endif
  417. vol_desc_start=ms_info.addr.lba;
  418. return vol_desc_start;
  419. }
  420. /*
  421.  * Initialize the superblock and read the root inode.
  422.  *
  423.  * Note: a check_disk_change() has been done immediately prior
  424.  * to this call, so we don't need to check again.
  425.  */
  426. static struct super_block *isofs_read_super(struct super_block *s, void *data,
  427.     int silent)
  428. {
  429. kdev_t dev = s->s_dev;
  430. struct buffer_head       * bh = NULL, *pri_bh = NULL;
  431. struct hs_primary_descriptor  * h_pri = NULL;
  432. struct iso_primary_descriptor * pri = NULL;
  433. struct iso_supplementary_descriptor *sec = NULL;
  434. struct iso_directory_record   * rootp;
  435. int joliet_level = 0;
  436. int high_sierra;
  437. int iso_blknum, block;
  438. int orig_zonesize;
  439. int table;
  440. unsigned int blocksize, blocksize_bits;
  441. unsigned int vol_desc_start;
  442. unsigned long first_data_zone;
  443. struct inode       * inode;
  444. struct iso9660_options opt;
  445. if (!parse_options((char *) data, &opt))
  446. goto out_unlock;
  447. #if 0
  448. printk("map = %cn", opt.map);
  449. printk("rock = %cn", opt.rock);
  450. printk("joliet = %cn", opt.joliet);
  451. printk("check = %cn", opt.check);
  452. printk("cruft = %cn", opt.cruft);
  453. printk("unhide = %cn", opt.unhide);
  454. printk("blocksize = %dn", opt.blocksize);
  455. printk("gid = %dn", opt.gid);
  456. printk("uid = %dn", opt.uid);
  457. printk("iocharset = %sn", opt.iocharset);
  458. #endif
  459. /*
  460.  * First of all, get the hardware blocksize for this device.
  461.  * If we don't know what it is, or the hardware blocksize is
  462.  * larger than the blocksize the user specified, then use
  463.  * that value.
  464.  */
  465. blocksize = get_hardsect_size(dev);
  466. if(blocksize > opt.blocksize) {
  467.     /*
  468.      * Force the blocksize we are going to use to be the
  469.      * hardware blocksize.
  470.      */
  471.     opt.blocksize = blocksize;
  472. }
  473. blocksize_bits = 0;
  474. {
  475.   int i = opt.blocksize;
  476.   while (i != 1){
  477.     blocksize_bits++;
  478.     i >>=1;
  479.   }
  480. }
  481. set_blocksize(dev, opt.blocksize);
  482. s->s_blocksize = opt.blocksize;
  483. s->u.isofs_sb.s_high_sierra = high_sierra = 0; /* default is iso9660 */
  484. vol_desc_start = (opt.sbsector != -1) ?
  485. opt.sbsector : isofs_get_last_session(s,opt.session);
  486.    for (iso_blknum = vol_desc_start+16;
  487.              iso_blknum < vol_desc_start+100; iso_blknum++)
  488. {
  489.     struct hs_volume_descriptor   * hdp;
  490.     struct iso_volume_descriptor  * vdp;
  491.     block = iso_blknum << (ISOFS_BLOCK_BITS-blocksize_bits);
  492.     if (!(bh = sb_bread(s, block)))
  493. goto out_no_read;
  494.     vdp = (struct iso_volume_descriptor *)bh->b_data;
  495.     hdp = (struct hs_volume_descriptor *)bh->b_data;
  496.     
  497.     /* Due to the overlapping physical location of the descriptors, 
  498.      * ISO CDs can match hdp->id==HS_STANDARD_ID as well. To ensure 
  499.      * proper identification in this case, we first check for ISO.
  500.      */
  501.     if (strncmp (vdp->id, ISO_STANDARD_ID, sizeof vdp->id) == 0) {
  502. if (isonum_711 (vdp->type) == ISO_VD_END)
  503.     break;
  504. if (isonum_711 (vdp->type) == ISO_VD_PRIMARY) {
  505.     if (pri == NULL) {
  506. pri = (struct iso_primary_descriptor *)vdp;
  507. /* Save the buffer in case we need it ... */
  508. pri_bh = bh;
  509. bh = NULL;
  510.     }
  511. }
  512. #ifdef CONFIG_JOLIET
  513. else if (isonum_711 (vdp->type) == ISO_VD_SUPPLEMENTARY) {
  514.     sec = (struct iso_supplementary_descriptor *)vdp;
  515.     if (sec->escape[0] == 0x25 && sec->escape[1] == 0x2f) {
  516. if (opt.joliet == 'y') {
  517.     if (sec->escape[2] == 0x40) {
  518. joliet_level = 1;
  519.     } else if (sec->escape[2] == 0x43) {
  520. joliet_level = 2;
  521.     } else if (sec->escape[2] == 0x45) {
  522. joliet_level = 3;
  523.     }
  524.     printk(KERN_DEBUG"ISO 9660 Extensions: Microsoft Joliet Level %dn",
  525.    joliet_level);
  526. }
  527. goto root_found;
  528.     } else {
  529. /* Unknown supplementary volume descriptor */
  530. sec = NULL;
  531.     }
  532. }
  533. #endif
  534.     } else {
  535.         if (strncmp (hdp->id, HS_STANDARD_ID, sizeof hdp->id) == 0) {
  536.     if (isonum_711 (hdp->type) != ISO_VD_PRIMARY)
  537.         goto out_freebh;
  538.     s->u.isofs_sb.s_high_sierra = 1;
  539.     high_sierra = 1;
  540.     opt.rock = 'n';
  541.     h_pri = (struct hs_primary_descriptor *)vdp;
  542.     goto root_found;
  543. }
  544.     }
  545.             /* Just skip any volume descriptors we don't recognize */
  546.     brelse(bh);
  547.     bh = NULL;
  548. }
  549. /*
  550.  * If we fall through, either no volume descriptor was found,
  551.  * or else we passed a primary descriptor looking for others.
  552.  */
  553. if (!pri)
  554. goto out_unknown_format;
  555. brelse(bh);
  556. bh = pri_bh;
  557. pri_bh = NULL;
  558. root_found:
  559. if (joliet_level && (pri == NULL || opt.rock == 'n')) {
  560.     /* This is the case of Joliet with the norock mount flag.
  561.      * A disc with both Joliet and Rock Ridge is handled later
  562.      */
  563.     pri = (struct iso_primary_descriptor *) sec;
  564. }
  565. if(high_sierra){
  566.   rootp = (struct iso_directory_record *) h_pri->root_directory_record;
  567. #ifndef IGNORE_WRONG_MULTI_VOLUME_SPECS
  568.   if (isonum_723 (h_pri->volume_set_size) != 1)
  569. goto out_no_support;
  570. #endif /* IGNORE_WRONG_MULTI_VOLUME_SPECS */
  571.   s->u.isofs_sb.s_nzones = isonum_733 (h_pri->volume_space_size);
  572.   s->u.isofs_sb.s_log_zone_size = isonum_723 (h_pri->logical_block_size);
  573.   s->u.isofs_sb.s_max_size = isonum_733(h_pri->volume_space_size);
  574. } else {
  575.   rootp = (struct iso_directory_record *) pri->root_directory_record;
  576. #ifndef IGNORE_WRONG_MULTI_VOLUME_SPECS
  577.   if (isonum_723 (pri->volume_set_size) != 1)
  578. goto out_no_support;
  579. #endif /* IGNORE_WRONG_MULTI_VOLUME_SPECS */
  580.   s->u.isofs_sb.s_nzones = isonum_733 (pri->volume_space_size);
  581.   s->u.isofs_sb.s_log_zone_size = isonum_723 (pri->logical_block_size);
  582.   s->u.isofs_sb.s_max_size = isonum_733(pri->volume_space_size);
  583. }
  584. s->u.isofs_sb.s_ninodes = 0; /* No way to figure this out easily */
  585. orig_zonesize = s -> u.isofs_sb.s_log_zone_size;
  586. /*
  587.  * If the zone size is smaller than the hardware sector size,
  588.  * this is a fatal error.  This would occur if the disc drive
  589.  * had sectors that were 2048 bytes, but the filesystem had
  590.  * blocks that were 512 bytes (which should only very rarely
  591.  * happen.)
  592.  */
  593. if(blocksize != 0 && orig_zonesize < blocksize)
  594. goto out_bad_size;
  595. /* RDE: convert log zone size to bit shift */
  596. switch (s -> u.isofs_sb.s_log_zone_size)
  597.   { case  512: s -> u.isofs_sb.s_log_zone_size =  9; break;
  598.     case 1024: s -> u.isofs_sb.s_log_zone_size = 10; break;
  599.     case 2048: s -> u.isofs_sb.s_log_zone_size = 11; break;
  600.     default:
  601. goto out_bad_zone_size;
  602.   }
  603. s->s_magic = ISOFS_SUPER_MAGIC;
  604. /* The CDROM is read-only, has no nodes (devices) on it, and since
  605.    all of the files appear to be owned by root, we really do not want
  606.    to allow suid.  (suid or devices will not show up unless we have
  607.    Rock Ridge extensions) */
  608. s->s_flags |= MS_RDONLY /* | MS_NODEV | MS_NOSUID */;
  609. /* Set this for reference. Its not currently used except on write
  610.    which we don't have .. */
  611.    
  612. /* RDE: data zone now byte offset! */
  613. first_data_zone = ((isonum_733 (rootp->extent) +
  614.   isonum_711 (rootp->ext_attr_length))
  615.  << s -> u.isofs_sb.s_log_zone_size);
  616. s->u.isofs_sb.s_firstdatazone = first_data_zone;
  617. #ifndef BEQUIET
  618. printk(KERN_DEBUG "Max size:%ld   Log zone size:%ldn",
  619.        s->u.isofs_sb.s_max_size,
  620.        1UL << s->u.isofs_sb.s_log_zone_size);
  621. printk(KERN_DEBUG "First datazone:%ld   Root inode number:%ldn",
  622.        s->u.isofs_sb.s_firstdatazone >> s -> u.isofs_sb.s_log_zone_size,
  623.        s->u.isofs_sb.s_firstdatazone);
  624. if(high_sierra)
  625. printk(KERN_DEBUG "Disc in High Sierra format.n");
  626. #endif
  627. /*
  628.  * If the Joliet level is set, we _may_ decide to use the
  629.  * secondary descriptor, but can't be sure until after we
  630.  * read the root inode. But before reading the root inode
  631.  * we may need to change the device blocksize, and would
  632.  * rather release the old buffer first. So, we cache the
  633.  * first_data_zone value from the secondary descriptor.
  634.  */
  635. if (joliet_level) {
  636. pri = (struct iso_primary_descriptor *) sec;
  637. rootp = (struct iso_directory_record *)
  638. pri->root_directory_record;
  639. first_data_zone = ((isonum_733 (rootp->extent) +
  640.    isonum_711 (rootp->ext_attr_length))
  641.  << s -> u.isofs_sb.s_log_zone_size);
  642. }
  643. /*
  644.  * We're all done using the volume descriptor, and may need
  645.  * to change the device blocksize, so release the buffer now.
  646.  */
  647. brelse(pri_bh);
  648. brelse(bh);
  649. /*
  650.  * Force the blocksize to 512 for 512 byte sectors.  The file
  651.  * read primitives really get it wrong in a bad way if we don't
  652.  * do this.
  653.  *
  654.  * Note - we should never be setting the blocksize to something
  655.  * less than the hardware sector size for the device.  If we
  656.  * do, we would end up having to read larger buffers and split
  657.  * out portions to satisfy requests.
  658.  *
  659.  * Note2- the idea here is that we want to deal with the optimal
  660.  * zonesize in the filesystem.  If we have it set to something less,
  661.  * then we have horrible problems with trying to piece together
  662.  * bits of adjacent blocks in order to properly read directory
  663.  * entries.  By forcing the blocksize in this way, we ensure
  664.  * that we will never be required to do this.
  665.  */
  666. if ( orig_zonesize != opt.blocksize ) {
  667. set_blocksize(dev, orig_zonesize);
  668. #ifndef BEQUIET
  669. printk(KERN_DEBUG 
  670. "ISOFS: Forcing new log zone size:%dn", orig_zonesize);
  671. #endif
  672. }
  673. s->s_blocksize = orig_zonesize;
  674. s->s_blocksize_bits = s -> u.isofs_sb.s_log_zone_size;
  675. s->u.isofs_sb.s_nls_iocharset = NULL;
  676. #ifdef CONFIG_JOLIET
  677. if (joliet_level && opt.utf8 == 0) {
  678. char * p = opt.iocharset ? opt.iocharset : "iso8859-1";
  679. s->u.isofs_sb.s_nls_iocharset = load_nls(p);
  680. if (! s->u.isofs_sb.s_nls_iocharset) {
  681. /* Fail only if explicit charset specified */
  682. if (opt.iocharset)
  683. goto out_unlock;
  684. s->u.isofs_sb.s_nls_iocharset = load_nls_default();
  685. }
  686. }
  687. #endif
  688. s->s_op = &isofs_sops;
  689. s->u.isofs_sb.s_mapping = opt.map;
  690. s->u.isofs_sb.s_rock = (opt.rock == 'y' ? 2 : 0);
  691. s->u.isofs_sb.s_rock_offset = -1; /* initial offset, will guess until SP is found*/
  692. s->u.isofs_sb.s_cruft = opt.cruft;
  693. s->u.isofs_sb.s_unhide = opt.unhide;
  694. s->u.isofs_sb.s_uid = opt.uid;
  695. s->u.isofs_sb.s_gid = opt.gid;
  696. s->u.isofs_sb.s_utf8 = opt.utf8;
  697. s->u.isofs_sb.s_nocompress = opt.nocompress;
  698. /*
  699.  * It would be incredibly stupid to allow people to mark every file
  700.  * on the disk as suid, so we merely allow them to set the default
  701.  * permissions.
  702.  */
  703. s->u.isofs_sb.s_mode = opt.mode & 0777;
  704. /*
  705.  * Read the root inode, which _may_ result in changing
  706.  * the s_rock flag. Once we have the final s_rock value,
  707.  * we then decide whether to use the Joliet descriptor.
  708.  */
  709. inode = iget(s, s->u.isofs_sb.s_firstdatazone);
  710. /*
  711.  * If this disk has both Rock Ridge and Joliet on it, then we
  712.  * want to use Rock Ridge by default.  This can be overridden
  713.  * by using the norock mount option.  There is still one other
  714.  * possibility that is not taken into account: a Rock Ridge
  715.  * CD with Unicode names.  Until someone sees such a beast, it
  716.  * will not be supported.
  717.  */
  718. if (s->u.isofs_sb.s_rock == 1) {
  719. joliet_level = 0;
  720. } else if (joliet_level) {
  721. s->u.isofs_sb.s_rock = 0;
  722. if (s->u.isofs_sb.s_firstdatazone != first_data_zone) {
  723. s->u.isofs_sb.s_firstdatazone = first_data_zone;
  724. printk(KERN_DEBUG 
  725. "ISOFS: changing to secondary rootn");
  726. iput(inode);
  727. inode = iget(s, s->u.isofs_sb.s_firstdatazone);
  728. }
  729. }
  730. if (opt.check == 'u') {
  731. /* Only Joliet is case insensitive by default */
  732. if (joliet_level) opt.check = 'r';
  733. else opt.check = 's';
  734. }
  735. s->u.isofs_sb.s_joliet_level = joliet_level;
  736. /* check the root inode */
  737. if (!inode)
  738. goto out_no_root;
  739. if (!inode->i_op)
  740. goto out_bad_root;
  741. /* get the root dentry */
  742. s->s_root = d_alloc_root(inode);
  743. if (!(s->s_root))
  744. goto out_no_root;
  745. table = 0;
  746. if (joliet_level) table += 2;
  747. if (opt.check == 'r') table++;
  748. s->s_root->d_op = &isofs_dentry_ops[table];
  749. return s;
  750. /*
  751.  * Display error messages and free resources.
  752.  */
  753. out_bad_root:
  754. printk(KERN_WARNING "isofs_read_super: root inode not initializedn");
  755. goto out_iput;
  756. out_no_root:
  757. printk(KERN_WARNING "isofs_read_super: get root inode failedn");
  758. out_iput:
  759. iput(inode);
  760. #ifdef CONFIG_JOLIET
  761. if (s->u.isofs_sb.s_nls_iocharset)
  762. unload_nls(s->u.isofs_sb.s_nls_iocharset);
  763. #endif
  764. goto out_unlock;
  765. out_no_read:
  766. printk(KERN_WARNING "isofs_read_super: "
  767. "bread failed, dev=%s, iso_blknum=%d, block=%dn",
  768. kdevname(dev), iso_blknum, block);
  769. goto out_unlock;
  770. out_bad_zone_size:
  771. printk(KERN_WARNING "Bad logical zone size %ldn",
  772. s->u.isofs_sb.s_log_zone_size);
  773. goto out_freebh;
  774. out_bad_size:
  775. printk(KERN_WARNING "Logical zone size(%d) < hardware blocksize(%u)n",
  776. orig_zonesize, blocksize);
  777. goto out_freebh;
  778. #ifndef IGNORE_WRONG_MULTI_VOLUME_SPECS
  779. out_no_support:
  780. printk(KERN_WARNING "Multi-volume disks not supported.n");
  781. goto out_freebh;
  782. #endif
  783. out_unknown_format:
  784. if (!silent)
  785. printk(KERN_WARNING "Unable to identify CD-ROM format.n");
  786. out_freebh:
  787. brelse(bh);
  788. out_unlock:
  789. return NULL;
  790. }
  791. static int isofs_statfs (struct super_block *sb, struct statfs *buf)
  792. {
  793. buf->f_type = ISOFS_SUPER_MAGIC;
  794. buf->f_bsize = sb->s_blocksize;
  795. buf->f_blocks = (sb->u.isofs_sb.s_nzones
  796.                   << (sb->u.isofs_sb.s_log_zone_size - sb->s_blocksize_bits));
  797. buf->f_bfree = 0;
  798. buf->f_bavail = 0;
  799. buf->f_files = sb->u.isofs_sb.s_ninodes;
  800. buf->f_ffree = 0;
  801. buf->f_namelen = NAME_MAX;
  802. return 0;
  803. }
  804. /*
  805.  * Get a set of blocks; filling in buffer_heads if already allocated
  806.  * or getblk() if they are not.  Returns the number of blocks inserted
  807.  * (0 == error.)
  808.  */
  809. int isofs_get_blocks(struct inode *inode, long iblock,
  810.      struct buffer_head **bh_result, unsigned long nblocks)
  811. {
  812. unsigned long b_off;
  813. unsigned offset, sect_size;
  814. unsigned int firstext;
  815. unsigned long nextino;
  816. int section, rv;
  817. lock_kernel();
  818. rv = 0;
  819. if (iblock < 0) {
  820. printk("isofs_get_blocks: block < 0n");
  821. goto abort;
  822. }
  823. b_off = iblock;
  824. offset    = 0;
  825. firstext  = inode->u.isofs_i.i_first_extent;
  826. sect_size = inode->u.isofs_i.i_section_size >> ISOFS_BUFFER_BITS(inode);
  827. nextino   = inode->u.isofs_i.i_next_section_ino;
  828. section   = 0;
  829. while ( nblocks ) {
  830. /* If we are *way* beyond the end of the file, print a message.
  831.  * Access beyond the end of the file up to the next page boundary
  832.  * is normal, however because of the way the page cache works.
  833.  * In this case, we just return 0 so that we can properly fill
  834.  * the page with useless information without generating any
  835.  * I/O errors.
  836.  */
  837. if (b_off > ((inode->i_size + PAGE_CACHE_SIZE - 1) >> ISOFS_BUFFER_BITS(inode))) {
  838. printk("isofs_get_blocks: block >= EOF (%ld, %ld)n",
  839.        iblock, (unsigned long) inode->i_size);
  840. goto abort;
  841. }
  842. if (nextino) {
  843. while (b_off >= (offset + sect_size)) {
  844. struct inode *ninode;
  845. offset += sect_size;
  846. if (nextino == 0)
  847. goto abort;
  848. ninode = iget(inode->i_sb, nextino);
  849. if (!ninode)
  850. goto abort;
  851. firstext  = ninode->u.isofs_i.i_first_extent;
  852. sect_size = ninode->u.isofs_i.i_section_size;
  853. nextino   = ninode->u.isofs_i.i_next_section_ino;
  854. iput(ninode);
  855. if (++section > 100) {
  856. printk("isofs_get_blocks: More than 100 file sections ?!?, aborting...n");
  857. printk("isofs_get_blocks: ino=%lu block=%ld firstext=%u sect_size=%u nextino=%lun",
  858.        inode->i_ino, iblock, firstext, (unsigned) sect_size, nextino);
  859. goto abort;
  860. }
  861. }
  862. }
  863. if ( *bh_result ) {
  864. (*bh_result)->b_dev      = inode->i_dev;
  865. (*bh_result)->b_blocknr  = firstext + b_off - offset;
  866. (*bh_result)->b_state   |= (1UL << BH_Mapped);
  867. } else {
  868. *bh_result = sb_getblk(inode->i_sb, firstext+b_off-offset);
  869. if ( !*bh_result )
  870. goto abort;
  871. }
  872. bh_result++; /* Next buffer head */
  873. b_off++; /* Next buffer offset */
  874. nblocks--;
  875. rv++;
  876. }
  877. abort:
  878. unlock_kernel();
  879. return rv;
  880. }
  881. /*
  882.  * Used by the standard interfaces.
  883.  */
  884. static int isofs_get_block(struct inode *inode, long iblock,
  885.     struct buffer_head *bh_result, int create)
  886. {
  887. if ( create ) {
  888. printk("isofs_get_block: Kernel tries to allocate a blockn");
  889. return -EROFS;
  890. }
  891. return isofs_get_blocks(inode, iblock, &bh_result, 1) ? 0 : -EIO;
  892. }
  893. static int isofs_bmap(struct inode *inode, int block)
  894. {
  895. struct buffer_head dummy;
  896. int error;
  897. dummy.b_state = 0;
  898. dummy.b_blocknr = -1000;
  899. error = isofs_get_block(inode, block, &dummy, 0);
  900. if (!error)
  901. return dummy.b_blocknr;
  902. return 0;
  903. }
  904. struct buffer_head *isofs_bread(struct inode *inode, unsigned int block)
  905. {
  906. unsigned int blknr = isofs_bmap(inode, block);
  907. if (!blknr)
  908. return NULL;
  909. return sb_bread(inode->i_sb, blknr);
  910. }
  911. static int isofs_readpage(struct file *file, struct page *page)
  912. {
  913. return block_read_full_page(page,isofs_get_block);
  914. }
  915. static int _isofs_bmap(struct address_space *mapping, long block)
  916. {
  917. return generic_block_bmap(mapping,block,isofs_get_block);
  918. }
  919. static struct address_space_operations isofs_aops = {
  920. readpage: isofs_readpage,
  921. sync_page: block_sync_page,
  922. bmap: _isofs_bmap
  923. };
  924. static inline void test_and_set_uid(uid_t *p, uid_t value)
  925. {
  926. if(value) {
  927. *p = value;
  928. }
  929. }
  930. static inline void test_and_set_gid(gid_t *p, gid_t value)
  931. {
  932.         if(value) {
  933.                 *p = value;
  934.         }
  935. }
  936. static int isofs_read_level3_size(struct inode * inode)
  937. {
  938. unsigned long f_pos = inode->i_ino;
  939. unsigned long bufsize = ISOFS_BUFFER_SIZE(inode);
  940. int high_sierra = inode->i_sb->u.isofs_sb.s_high_sierra;
  941. struct buffer_head * bh = NULL;
  942. unsigned long block, offset;
  943. int i = 0;
  944. int more_entries = 0;
  945. struct iso_directory_record * tmpde = NULL;
  946. inode->i_size = 0;
  947. inode->u.isofs_i.i_next_section_ino = 0;
  948. block = f_pos >> ISOFS_BUFFER_BITS(inode);
  949. offset = f_pos & (bufsize-1);
  950. do {
  951. struct iso_directory_record * de;
  952. unsigned int de_len;
  953. if (!bh) {
  954. bh = sb_bread(inode->i_sb, block);
  955. if (!bh)
  956. goto out_noread;
  957. }
  958. de = (struct iso_directory_record *) (bh->b_data + offset);
  959. de_len = *(unsigned char *) de;
  960. if (de_len == 0) {
  961. brelse(bh);
  962. bh = NULL;
  963. f_pos = (f_pos + ISOFS_BLOCK_SIZE) & ~(ISOFS_BLOCK_SIZE - 1);
  964. block = f_pos >> ISOFS_BUFFER_BITS(inode);
  965. offset = 0;
  966. continue;
  967. }
  968. offset += de_len;
  969. /* Make sure we have a full directory entry */
  970. if (offset >= bufsize) {
  971. int slop = bufsize - offset + de_len;
  972. if (!tmpde) {
  973. tmpde = kmalloc(256, GFP_KERNEL);
  974. if (!tmpde)
  975. goto out_nomem;
  976. }
  977. memcpy(tmpde, de, slop);
  978. offset &= bufsize - 1;
  979. block++;
  980. brelse(bh);
  981. bh = NULL;
  982. if (offset) {
  983. bh = sb_bread(inode->i_sb, block);
  984. if (!bh)
  985. goto out_noread;
  986. memcpy((void *) tmpde + slop, bh->b_data, offset);
  987. }
  988. de = tmpde;
  989. }
  990. inode->i_size += isonum_733(de->size);
  991. if (i == 1)
  992. inode->u.isofs_i.i_next_section_ino = f_pos;
  993. more_entries = de->flags[-high_sierra] & 0x80;
  994. f_pos += de_len;
  995. i++;
  996. if(i > 100)
  997. goto out_toomany;
  998. } while(more_entries);
  999. out:
  1000. if (tmpde)
  1001. kfree(tmpde);
  1002. if (bh)
  1003. brelse(bh);
  1004. return 0;
  1005. out_nomem:
  1006. if (bh)
  1007. brelse(bh);
  1008. return -ENOMEM;
  1009. out_noread:
  1010. printk(KERN_INFO "ISOFS: unable to read i-node block %lun", block);
  1011. if (tmpde)
  1012. kfree(tmpde);
  1013. return -EIO;
  1014. out_toomany:
  1015. printk(KERN_INFO "isofs_read_level3_size: "
  1016. "More than 100 file sections ?!?, aborting...n"
  1017.    "isofs_read_level3_size: inode=%lu ino=%lun",
  1018. inode->i_ino, f_pos);
  1019. goto out;
  1020. }
  1021. static void isofs_read_inode(struct inode * inode)
  1022. {
  1023. struct super_block *sb = inode->i_sb;
  1024. unsigned long bufsize = ISOFS_BUFFER_SIZE(inode);
  1025. int block = inode->i_ino >> ISOFS_BUFFER_BITS(inode);
  1026. int high_sierra = sb->u.isofs_sb.s_high_sierra;
  1027. struct buffer_head * bh = NULL;
  1028. struct iso_directory_record * de;
  1029. struct iso_directory_record * tmpde = NULL;
  1030. unsigned int de_len;
  1031. unsigned long offset;
  1032. int volume_seq_no, i;
  1033. bh = sb_bread(inode->i_sb, block);
  1034. if (!bh)
  1035. goto out_badread;
  1036. offset = (inode->i_ino & (bufsize - 1));
  1037. de = (struct iso_directory_record *) (bh->b_data + offset);
  1038. de_len = *(unsigned char *) de;
  1039. if (offset + de_len > bufsize) {
  1040. int frag1 = bufsize - offset;
  1041. tmpde = kmalloc(de_len, GFP_KERNEL);
  1042. if (tmpde == NULL) {
  1043. printk(KERN_INFO "isofs_read_inode: out of memoryn");
  1044. goto fail;
  1045. }
  1046. memcpy(tmpde, bh->b_data + offset, frag1);
  1047. brelse(bh);
  1048. bh = sb_bread(inode->i_sb, ++block);
  1049. if (!bh)
  1050. goto out_badread;
  1051. memcpy((char *)tmpde+frag1, bh->b_data, de_len - frag1);
  1052. de = tmpde;
  1053. }
  1054. /* Assume it is a normal-format file unless told otherwise */
  1055. inode->u.isofs_i.i_file_format = isofs_file_normal;
  1056. if (de->flags[-high_sierra] & 2) {
  1057. inode->i_mode = S_IRUGO | S_IXUGO | S_IFDIR;
  1058. inode->i_nlink = 1; /* Set to 1.  We know there are 2, but
  1059.        the find utility tries to optimize
  1060.        if it is 2, and it screws up.  It is
  1061.        easier to give 1 which tells find to
  1062.        do it the hard way. */
  1063. } else {
  1064.   /* Everybody gets to read the file. */
  1065. inode->i_mode = inode->i_sb->u.isofs_sb.s_mode;
  1066. inode->i_nlink = 1;
  1067.         inode->i_mode |= S_IFREG;
  1068. /* If there are no periods in the name,
  1069.  * then set the execute permission bit
  1070.  */
  1071. for(i=0; i< de->name_len[0]; i++)
  1072. if(de->name[i]=='.' || de->name[i]==';')
  1073. break;
  1074. if(i == de->name_len[0] || de->name[i] == ';')
  1075. inode->i_mode |= S_IXUGO; /* execute permission */
  1076. }
  1077. inode->i_uid = inode->i_sb->u.isofs_sb.s_uid;
  1078. inode->i_gid = inode->i_sb->u.isofs_sb.s_gid;
  1079. inode->i_blocks = inode->i_blksize = 0;
  1080. inode->u.isofs_i.i_section_size = isonum_733 (de->size);
  1081. if(de->flags[-high_sierra] & 0x80) {
  1082. if(isofs_read_level3_size(inode)) goto fail;
  1083. } else {
  1084. inode->i_size = isonum_733 (de->size);
  1085. }
  1086. /*
  1087.  * The ISO-9660 filesystem only stores 32 bits for file size.
  1088.  * mkisofs handles files up to 2GB-2 = 2147483646 = 0x7FFFFFFE bytes
  1089.  * in size. This is according to the large file summit paper from 1996.
  1090.  * WARNING: ISO-9660 filesystems > 1 GB and even > 2 GB are fully
  1091.  *     legal. Do not prevent to use DVD's schilling@fokus.gmd.de
  1092.  */
  1093. if ((inode->i_size < 0 || inode->i_size > 0x7FFFFFFE) &&
  1094.     inode->i_sb->u.isofs_sb.s_cruft == 'n') {
  1095. printk(KERN_WARNING "Warning: defective CD-ROM.  "
  1096.        "Enabling "cruft" mount option.n");
  1097. inode->i_sb->u.isofs_sb.s_cruft = 'y';
  1098. }
  1099. /*
  1100.  * Some dipshit decided to store some other bit of information
  1101.  * in the high byte of the file length.  Catch this and holler.
  1102.  * WARNING: this will make it impossible for a file to be > 16MB
  1103.  * on the CDROM.
  1104.  */
  1105. if (inode->i_sb->u.isofs_sb.s_cruft == 'y' &&
  1106.     inode->i_size & 0xff000000) {
  1107. inode->i_size &= 0x00ffffff;
  1108. }
  1109. if (de->interleave[0]) {
  1110. printk("Interleaved files not (yet) supported.n");
  1111. inode->i_size = 0;
  1112. }
  1113. /* I have no idea what file_unit_size is used for, so
  1114.    we will flag it for now */
  1115. if (de->file_unit_size[0] != 0) {
  1116. printk("File unit size != 0 for ISO file (%ld).n",
  1117.        inode->i_ino);
  1118. }
  1119. /* I have no idea what other flag bits are used for, so
  1120.    we will flag it for now */
  1121. #ifdef DEBUG
  1122. if((de->flags[-high_sierra] & ~2)!= 0){
  1123. printk("Unusual flag settings for ISO file (%ld %x).n",
  1124.        inode->i_ino, de->flags[-high_sierra]);
  1125. }
  1126. #endif
  1127. inode->i_mtime = inode->i_atime = inode->i_ctime =
  1128. iso_date(de->date, high_sierra);
  1129. inode->u.isofs_i.i_first_extent = (isonum_733 (de->extent) +
  1130.    isonum_711 (de->ext_attr_length));
  1131. /* Set the number of blocks for stat() - should be done before RR */
  1132. inode->i_blksize = PAGE_CACHE_SIZE; /* For stat() only */
  1133. inode->i_blocks  = (inode->i_size + 511) >> 9;
  1134. /*
  1135.  * Now test for possible Rock Ridge extensions which will override
  1136.  * some of these numbers in the inode structure.
  1137.  */
  1138. if (!high_sierra) {
  1139. parse_rock_ridge_inode(de, inode);
  1140. /* if we want uid/gid set, override the rock ridge setting */
  1141. test_and_set_uid(&inode->i_uid, inode->i_sb->u.isofs_sb.s_uid);
  1142. test_and_set_gid(&inode->i_gid, inode->i_sb->u.isofs_sb.s_gid);
  1143. }
  1144. /* get the volume sequence number */
  1145. volume_seq_no = isonum_723 (de->volume_sequence_number) ;
  1146.     /*
  1147.      * Multi volume means tagging a group of CDs with info in their headers.
  1148.      * All CDs of a group must share the same vol set name and vol set size
  1149.      * and have different vol set seq num. Deciding that data is wrong based
  1150.      * in that three fields is wrong. The fields are informative, for
  1151.      * cataloging purposes in a big jukebox, ie. Read sections 4.17, 4.18, 6.6
  1152.      * of ftp://ftp.ecma.ch/ecma-st/Ecma-119.pdf (ECMA 119 2nd Ed = ISO 9660)
  1153.      */
  1154. #ifndef IGNORE_WRONG_MULTI_VOLUME_SPECS
  1155. /*
  1156.  * Disable checking if we see any volume number other than 0 or 1.
  1157.  * We could use the cruft option, but that has multiple purposes, one
  1158.  * of which is limiting the file size to 16Mb.  Thus we silently allow
  1159.  * volume numbers of 0 to go through without complaining.
  1160.  */
  1161. if (inode->i_sb->u.isofs_sb.s_cruft == 'n' &&
  1162.     (volume_seq_no != 0) && (volume_seq_no != 1)) {
  1163. printk(KERN_WARNING "Warning: defective CD-ROM "
  1164.        "(volume sequence number %d). "
  1165.        "Enabling "cruft" mount option.n", volume_seq_no);
  1166. inode->i_sb->u.isofs_sb.s_cruft = 'y';
  1167. }
  1168. #endif /*IGNORE_WRONG_MULTI_VOLUME_SPECS */
  1169. /* Install the inode operations vector */
  1170. #ifndef IGNORE_WRONG_MULTI_VOLUME_SPECS
  1171. if (inode->i_sb->u.isofs_sb.s_cruft != 'y' &&
  1172.     (volume_seq_no != 0) && (volume_seq_no != 1)) {
  1173. printk(KERN_WARNING "Multi-volume CD somehow got mounted.n");
  1174. } else
  1175. #endif /*IGNORE_WRONG_MULTI_VOLUME_SPECS */
  1176. {
  1177. if (S_ISREG(inode->i_mode)) {
  1178. inode->i_fop = &generic_ro_fops;
  1179. switch ( inode->u.isofs_i.i_file_format ) {
  1180. #ifdef CONFIG_ZISOFS
  1181. case isofs_file_compressed:
  1182. inode->i_data.a_ops = &zisofs_aops;
  1183. break;
  1184. #endif
  1185. default:
  1186. inode->i_data.a_ops = &isofs_aops;
  1187. break;
  1188. }
  1189. } else if (S_ISDIR(inode->i_mode)) {
  1190. inode->i_op = &isofs_dir_inode_operations;
  1191. inode->i_fop = &isofs_dir_operations;
  1192. } else if (S_ISLNK(inode->i_mode)) {
  1193. inode->i_op = &page_symlink_inode_operations;
  1194. inode->i_data.a_ops = &isofs_symlink_aops;
  1195. } else
  1196. /* XXX - parse_rock_ridge_inode() had already set i_rdev. */
  1197. init_special_inode(inode, inode->i_mode,
  1198.    kdev_t_to_nr(inode->i_rdev));
  1199. }
  1200.  out:
  1201. if (tmpde)
  1202. kfree(tmpde);
  1203. if (bh)
  1204. brelse(bh);
  1205. return;
  1206.  out_badread:
  1207. printk(KERN_WARNING "ISOFS: unable to read i-node blockn");
  1208.  fail:
  1209. make_bad_inode(inode);
  1210. goto out;
  1211. }
  1212. #ifdef LEAK_CHECK
  1213. #undef malloc
  1214. #undef free_s
  1215. #undef sb_bread
  1216. #undef brelse
  1217. void * leak_check_malloc(unsigned int size){
  1218.   void * tmp;
  1219.   check_malloc++;
  1220.   tmp = kmalloc(size, GFP_KERNEL);
  1221.   return tmp;
  1222. }
  1223. void leak_check_free_s(void * obj, int size){
  1224.   check_malloc--;
  1225.   return kfree(obj);
  1226. }
  1227. struct buffer_head * leak_check_bread(struct super_block *sb, int block){
  1228.   check_bread++;
  1229.   return sb_bread(sb, block);
  1230. }
  1231. void leak_check_brelse(struct buffer_head * bh){
  1232.   check_bread--;
  1233.   return brelse(bh);
  1234. }
  1235. #endif
  1236. static DECLARE_FSTYPE_DEV(iso9660_fs_type, "iso9660", isofs_read_super);
  1237. static int __init init_iso9660_fs(void)
  1238. {
  1239. #ifdef CONFIG_ZISOFS
  1240. int err;
  1241. err = zisofs_init();
  1242. if ( err )
  1243. return err;
  1244. #endif
  1245.         return register_filesystem(&iso9660_fs_type);
  1246. }
  1247. static void __exit exit_iso9660_fs(void)
  1248. {
  1249.         unregister_filesystem(&iso9660_fs_type);
  1250. #ifdef CONFIG_ZISOFS
  1251. zisofs_cleanup();
  1252. #endif
  1253. }
  1254. EXPORT_NO_SYMBOLS;
  1255. module_init(init_iso9660_fs)
  1256. module_exit(exit_iso9660_fs)
  1257. MODULE_LICENSE("GPL");