inode.c 39 KB

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