inode.c 40 KB

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