inode.c 39 KB

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