inode.c 40 KB

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