inode.c 40 KB

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