inode.c 39 KB

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