inode.c 38 KB

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