super.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562
  1. /*
  2. * linux/fs/adfs/super.c
  3. *
  4. * Copyright (C) 1997-1999 Russell King
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #include <linux/module.h>
  11. #include <linux/init.h>
  12. #include <linux/buffer_head.h>
  13. #include <linux/parser.h>
  14. #include <linux/mount.h>
  15. #include <linux/seq_file.h>
  16. #include <linux/slab.h>
  17. #include <linux/statfs.h>
  18. #include <linux/user_namespace.h>
  19. #include "adfs.h"
  20. #include "dir_f.h"
  21. #include "dir_fplus.h"
  22. #define ADFS_DEFAULT_OWNER_MASK S_IRWXU
  23. #define ADFS_DEFAULT_OTHER_MASK (S_IRWXG | S_IRWXO)
  24. void __adfs_error(struct super_block *sb, const char *function, const char *fmt, ...)
  25. {
  26. char error_buf[128];
  27. va_list args;
  28. va_start(args, fmt);
  29. vsnprintf(error_buf, sizeof(error_buf), fmt, args);
  30. va_end(args);
  31. printk(KERN_CRIT "ADFS-fs error (device %s)%s%s: %s\n",
  32. sb->s_id, function ? ": " : "",
  33. function ? function : "", error_buf);
  34. }
  35. static int adfs_checkdiscrecord(struct adfs_discrecord *dr)
  36. {
  37. int i;
  38. /* sector size must be 256, 512 or 1024 bytes */
  39. if (dr->log2secsize != 8 &&
  40. dr->log2secsize != 9 &&
  41. dr->log2secsize != 10)
  42. return 1;
  43. /* idlen must be at least log2secsize + 3 */
  44. if (dr->idlen < dr->log2secsize + 3)
  45. return 1;
  46. /* we cannot have such a large disc that we
  47. * are unable to represent sector offsets in
  48. * 32 bits. This works out at 2.0 TB.
  49. */
  50. if (le32_to_cpu(dr->disc_size_high) >> dr->log2secsize)
  51. return 1;
  52. /* idlen must be no greater than 19 v2 [1.0] */
  53. if (dr->idlen > 19)
  54. return 1;
  55. /* reserved bytes should be zero */
  56. for (i = 0; i < sizeof(dr->unused52); i++)
  57. if (dr->unused52[i] != 0)
  58. return 1;
  59. return 0;
  60. }
  61. static unsigned char adfs_calczonecheck(struct super_block *sb, unsigned char *map)
  62. {
  63. unsigned int v0, v1, v2, v3;
  64. int i;
  65. v0 = v1 = v2 = v3 = 0;
  66. for (i = sb->s_blocksize - 4; i; i -= 4) {
  67. v0 += map[i] + (v3 >> 8);
  68. v3 &= 0xff;
  69. v1 += map[i + 1] + (v0 >> 8);
  70. v0 &= 0xff;
  71. v2 += map[i + 2] + (v1 >> 8);
  72. v1 &= 0xff;
  73. v3 += map[i + 3] + (v2 >> 8);
  74. v2 &= 0xff;
  75. }
  76. v0 += v3 >> 8;
  77. v1 += map[1] + (v0 >> 8);
  78. v2 += map[2] + (v1 >> 8);
  79. v3 += map[3] + (v2 >> 8);
  80. return v0 ^ v1 ^ v2 ^ v3;
  81. }
  82. static int adfs_checkmap(struct super_block *sb, struct adfs_discmap *dm)
  83. {
  84. unsigned char crosscheck = 0, zonecheck = 1;
  85. int i;
  86. for (i = 0; i < ADFS_SB(sb)->s_map_size; i++) {
  87. unsigned char *map;
  88. map = dm[i].dm_bh->b_data;
  89. if (adfs_calczonecheck(sb, map) != map[0]) {
  90. adfs_error(sb, "zone %d fails zonecheck", i);
  91. zonecheck = 0;
  92. }
  93. crosscheck ^= map[3];
  94. }
  95. if (crosscheck != 0xff)
  96. adfs_error(sb, "crosscheck != 0xff");
  97. return crosscheck == 0xff && zonecheck;
  98. }
  99. static void adfs_put_super(struct super_block *sb)
  100. {
  101. int i;
  102. struct adfs_sb_info *asb = ADFS_SB(sb);
  103. for (i = 0; i < asb->s_map_size; i++)
  104. brelse(asb->s_map[i].dm_bh);
  105. kfree(asb->s_map);
  106. kfree_rcu(asb, rcu);
  107. }
  108. static int adfs_show_options(struct seq_file *seq, struct dentry *root)
  109. {
  110. struct adfs_sb_info *asb = ADFS_SB(root->d_sb);
  111. if (!uid_eq(asb->s_uid, GLOBAL_ROOT_UID))
  112. seq_printf(seq, ",uid=%u", from_kuid_munged(&init_user_ns, asb->s_uid));
  113. if (!gid_eq(asb->s_gid, GLOBAL_ROOT_GID))
  114. seq_printf(seq, ",gid=%u", from_kgid_munged(&init_user_ns, asb->s_gid));
  115. if (asb->s_owner_mask != ADFS_DEFAULT_OWNER_MASK)
  116. seq_printf(seq, ",ownmask=%o", asb->s_owner_mask);
  117. if (asb->s_other_mask != ADFS_DEFAULT_OTHER_MASK)
  118. seq_printf(seq, ",othmask=%o", asb->s_other_mask);
  119. if (asb->s_ftsuffix != 0)
  120. seq_printf(seq, ",ftsuffix=%u", asb->s_ftsuffix);
  121. return 0;
  122. }
  123. enum {Opt_uid, Opt_gid, Opt_ownmask, Opt_othmask, Opt_ftsuffix, Opt_err};
  124. static const match_table_t tokens = {
  125. {Opt_uid, "uid=%u"},
  126. {Opt_gid, "gid=%u"},
  127. {Opt_ownmask, "ownmask=%o"},
  128. {Opt_othmask, "othmask=%o"},
  129. {Opt_ftsuffix, "ftsuffix=%u"},
  130. {Opt_err, NULL}
  131. };
  132. static int parse_options(struct super_block *sb, char *options)
  133. {
  134. char *p;
  135. struct adfs_sb_info *asb = ADFS_SB(sb);
  136. int option;
  137. if (!options)
  138. return 0;
  139. while ((p = strsep(&options, ",")) != NULL) {
  140. substring_t args[MAX_OPT_ARGS];
  141. int token;
  142. if (!*p)
  143. continue;
  144. token = match_token(p, tokens, args);
  145. switch (token) {
  146. case Opt_uid:
  147. if (match_int(args, &option))
  148. return -EINVAL;
  149. asb->s_uid = make_kuid(current_user_ns(), option);
  150. if (!uid_valid(asb->s_uid))
  151. return -EINVAL;
  152. break;
  153. case Opt_gid:
  154. if (match_int(args, &option))
  155. return -EINVAL;
  156. asb->s_gid = make_kgid(current_user_ns(), option);
  157. if (!gid_valid(asb->s_gid))
  158. return -EINVAL;
  159. break;
  160. case Opt_ownmask:
  161. if (match_octal(args, &option))
  162. return -EINVAL;
  163. asb->s_owner_mask = option;
  164. break;
  165. case Opt_othmask:
  166. if (match_octal(args, &option))
  167. return -EINVAL;
  168. asb->s_other_mask = option;
  169. break;
  170. case Opt_ftsuffix:
  171. if (match_int(args, &option))
  172. return -EINVAL;
  173. asb->s_ftsuffix = option;
  174. break;
  175. default:
  176. printk("ADFS-fs: unrecognised mount option \"%s\" "
  177. "or missing value\n", p);
  178. return -EINVAL;
  179. }
  180. }
  181. return 0;
  182. }
  183. static int adfs_remount(struct super_block *sb, int *flags, char *data)
  184. {
  185. sync_filesystem(sb);
  186. *flags |= MS_NODIRATIME;
  187. return parse_options(sb, data);
  188. }
  189. static int adfs_statfs(struct dentry *dentry, struct kstatfs *buf)
  190. {
  191. struct super_block *sb = dentry->d_sb;
  192. struct adfs_sb_info *sbi = ADFS_SB(sb);
  193. u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
  194. buf->f_type = ADFS_SUPER_MAGIC;
  195. buf->f_namelen = sbi->s_namelen;
  196. buf->f_bsize = sb->s_blocksize;
  197. buf->f_blocks = sbi->s_size;
  198. buf->f_files = sbi->s_ids_per_zone * sbi->s_map_size;
  199. buf->f_bavail =
  200. buf->f_bfree = adfs_map_free(sb);
  201. buf->f_ffree = (long)(buf->f_bfree * buf->f_files) / (long)buf->f_blocks;
  202. buf->f_fsid.val[0] = (u32)id;
  203. buf->f_fsid.val[1] = (u32)(id >> 32);
  204. return 0;
  205. }
  206. static struct kmem_cache *adfs_inode_cachep;
  207. static struct inode *adfs_alloc_inode(struct super_block *sb)
  208. {
  209. struct adfs_inode_info *ei;
  210. ei = kmem_cache_alloc(adfs_inode_cachep, GFP_KERNEL);
  211. if (!ei)
  212. return NULL;
  213. return &ei->vfs_inode;
  214. }
  215. static void adfs_i_callback(struct rcu_head *head)
  216. {
  217. struct inode *inode = container_of(head, struct inode, i_rcu);
  218. kmem_cache_free(adfs_inode_cachep, ADFS_I(inode));
  219. }
  220. static void adfs_destroy_inode(struct inode *inode)
  221. {
  222. call_rcu(&inode->i_rcu, adfs_i_callback);
  223. }
  224. static void init_once(void *foo)
  225. {
  226. struct adfs_inode_info *ei = (struct adfs_inode_info *) foo;
  227. inode_init_once(&ei->vfs_inode);
  228. }
  229. static int __init init_inodecache(void)
  230. {
  231. adfs_inode_cachep = kmem_cache_create("adfs_inode_cache",
  232. sizeof(struct adfs_inode_info),
  233. 0, (SLAB_RECLAIM_ACCOUNT|
  234. SLAB_MEM_SPREAD),
  235. init_once);
  236. if (adfs_inode_cachep == NULL)
  237. return -ENOMEM;
  238. return 0;
  239. }
  240. static void destroy_inodecache(void)
  241. {
  242. /*
  243. * Make sure all delayed rcu free inodes are flushed before we
  244. * destroy cache.
  245. */
  246. rcu_barrier();
  247. kmem_cache_destroy(adfs_inode_cachep);
  248. }
  249. static const struct super_operations adfs_sops = {
  250. .alloc_inode = adfs_alloc_inode,
  251. .destroy_inode = adfs_destroy_inode,
  252. .write_inode = adfs_write_inode,
  253. .put_super = adfs_put_super,
  254. .statfs = adfs_statfs,
  255. .remount_fs = adfs_remount,
  256. .show_options = adfs_show_options,
  257. };
  258. static struct adfs_discmap *adfs_read_map(struct super_block *sb, struct adfs_discrecord *dr)
  259. {
  260. struct adfs_discmap *dm;
  261. unsigned int map_addr, zone_size, nzones;
  262. int i, zone;
  263. struct adfs_sb_info *asb = ADFS_SB(sb);
  264. nzones = asb->s_map_size;
  265. zone_size = (8 << dr->log2secsize) - le16_to_cpu(dr->zone_spare);
  266. map_addr = (nzones >> 1) * zone_size -
  267. ((nzones > 1) ? ADFS_DR_SIZE_BITS : 0);
  268. map_addr = signed_asl(map_addr, asb->s_map2blk);
  269. asb->s_ids_per_zone = zone_size / (asb->s_idlen + 1);
  270. dm = kmalloc(nzones * sizeof(*dm), GFP_KERNEL);
  271. if (dm == NULL) {
  272. adfs_error(sb, "not enough memory");
  273. return ERR_PTR(-ENOMEM);
  274. }
  275. for (zone = 0; zone < nzones; zone++, map_addr++) {
  276. dm[zone].dm_startbit = 0;
  277. dm[zone].dm_endbit = zone_size;
  278. dm[zone].dm_startblk = zone * zone_size - ADFS_DR_SIZE_BITS;
  279. dm[zone].dm_bh = sb_bread(sb, map_addr);
  280. if (!dm[zone].dm_bh) {
  281. adfs_error(sb, "unable to read map");
  282. goto error_free;
  283. }
  284. }
  285. /* adjust the limits for the first and last map zones */
  286. i = zone - 1;
  287. dm[0].dm_startblk = 0;
  288. dm[0].dm_startbit = ADFS_DR_SIZE_BITS;
  289. dm[i].dm_endbit = (le32_to_cpu(dr->disc_size_high) << (32 - dr->log2bpmb)) +
  290. (le32_to_cpu(dr->disc_size) >> dr->log2bpmb) +
  291. (ADFS_DR_SIZE_BITS - i * zone_size);
  292. if (adfs_checkmap(sb, dm))
  293. return dm;
  294. adfs_error(sb, "map corrupted");
  295. error_free:
  296. while (--zone >= 0)
  297. brelse(dm[zone].dm_bh);
  298. kfree(dm);
  299. return ERR_PTR(-EIO);
  300. }
  301. static inline unsigned long adfs_discsize(struct adfs_discrecord *dr, int block_bits)
  302. {
  303. unsigned long discsize;
  304. discsize = le32_to_cpu(dr->disc_size_high) << (32 - block_bits);
  305. discsize |= le32_to_cpu(dr->disc_size) >> block_bits;
  306. return discsize;
  307. }
  308. static int adfs_fill_super(struct super_block *sb, void *data, int silent)
  309. {
  310. struct adfs_discrecord *dr;
  311. struct buffer_head *bh;
  312. struct object_info root_obj;
  313. unsigned char *b_data;
  314. struct adfs_sb_info *asb;
  315. struct inode *root;
  316. int ret = -EINVAL;
  317. sb->s_flags |= MS_NODIRATIME;
  318. asb = kzalloc(sizeof(*asb), GFP_KERNEL);
  319. if (!asb)
  320. return -ENOMEM;
  321. sb->s_fs_info = asb;
  322. /* set default options */
  323. asb->s_uid = GLOBAL_ROOT_UID;
  324. asb->s_gid = GLOBAL_ROOT_GID;
  325. asb->s_owner_mask = ADFS_DEFAULT_OWNER_MASK;
  326. asb->s_other_mask = ADFS_DEFAULT_OTHER_MASK;
  327. asb->s_ftsuffix = 0;
  328. if (parse_options(sb, data))
  329. goto error;
  330. sb_set_blocksize(sb, BLOCK_SIZE);
  331. if (!(bh = sb_bread(sb, ADFS_DISCRECORD / BLOCK_SIZE))) {
  332. adfs_error(sb, "unable to read superblock");
  333. ret = -EIO;
  334. goto error;
  335. }
  336. b_data = bh->b_data + (ADFS_DISCRECORD % BLOCK_SIZE);
  337. if (adfs_checkbblk(b_data)) {
  338. if (!silent)
  339. printk("VFS: Can't find an adfs filesystem on dev "
  340. "%s.\n", sb->s_id);
  341. ret = -EINVAL;
  342. goto error_free_bh;
  343. }
  344. dr = (struct adfs_discrecord *)(b_data + ADFS_DR_OFFSET);
  345. /*
  346. * Do some sanity checks on the ADFS disc record
  347. */
  348. if (adfs_checkdiscrecord(dr)) {
  349. if (!silent)
  350. printk("VPS: Can't find an adfs filesystem on dev "
  351. "%s.\n", sb->s_id);
  352. ret = -EINVAL;
  353. goto error_free_bh;
  354. }
  355. brelse(bh);
  356. if (sb_set_blocksize(sb, 1 << dr->log2secsize)) {
  357. bh = sb_bread(sb, ADFS_DISCRECORD / sb->s_blocksize);
  358. if (!bh) {
  359. adfs_error(sb, "couldn't read superblock on "
  360. "2nd try.");
  361. ret = -EIO;
  362. goto error;
  363. }
  364. b_data = bh->b_data + (ADFS_DISCRECORD % sb->s_blocksize);
  365. if (adfs_checkbblk(b_data)) {
  366. adfs_error(sb, "disc record mismatch, very weird!");
  367. ret = -EINVAL;
  368. goto error_free_bh;
  369. }
  370. dr = (struct adfs_discrecord *)(b_data + ADFS_DR_OFFSET);
  371. } else {
  372. if (!silent)
  373. printk(KERN_ERR "VFS: Unsupported blocksize on dev "
  374. "%s.\n", sb->s_id);
  375. ret = -EINVAL;
  376. goto error;
  377. }
  378. /*
  379. * blocksize on this device should now be set to the ADFS log2secsize
  380. */
  381. sb->s_magic = ADFS_SUPER_MAGIC;
  382. asb->s_idlen = dr->idlen;
  383. asb->s_map_size = dr->nzones | (dr->nzones_high << 8);
  384. asb->s_map2blk = dr->log2bpmb - dr->log2secsize;
  385. asb->s_size = adfs_discsize(dr, sb->s_blocksize_bits);
  386. asb->s_version = dr->format_version;
  387. asb->s_log2sharesize = dr->log2sharesize;
  388. asb->s_map = adfs_read_map(sb, dr);
  389. if (IS_ERR(asb->s_map)) {
  390. ret = PTR_ERR(asb->s_map);
  391. goto error_free_bh;
  392. }
  393. brelse(bh);
  394. /*
  395. * set up enough so that we can read an inode
  396. */
  397. sb->s_op = &adfs_sops;
  398. dr = (struct adfs_discrecord *)(asb->s_map[0].dm_bh->b_data + 4);
  399. root_obj.parent_id = root_obj.file_id = le32_to_cpu(dr->root);
  400. root_obj.name_len = 0;
  401. /* Set root object date as 01 Jan 1987 00:00:00 */
  402. root_obj.loadaddr = 0xfff0003f;
  403. root_obj.execaddr = 0xec22c000;
  404. root_obj.size = ADFS_NEWDIR_SIZE;
  405. root_obj.attr = ADFS_NDA_DIRECTORY | ADFS_NDA_OWNER_READ |
  406. ADFS_NDA_OWNER_WRITE | ADFS_NDA_PUBLIC_READ;
  407. root_obj.filetype = -1;
  408. /*
  409. * If this is a F+ disk with variable length directories,
  410. * get the root_size from the disc record.
  411. */
  412. if (asb->s_version) {
  413. root_obj.size = le32_to_cpu(dr->root_size);
  414. asb->s_dir = &adfs_fplus_dir_ops;
  415. asb->s_namelen = ADFS_FPLUS_NAME_LEN;
  416. } else {
  417. asb->s_dir = &adfs_f_dir_ops;
  418. asb->s_namelen = ADFS_F_NAME_LEN;
  419. }
  420. /*
  421. * ,xyz hex filetype suffix may be added by driver
  422. * to files that have valid RISC OS filetype
  423. */
  424. if (asb->s_ftsuffix)
  425. asb->s_namelen += 4;
  426. sb->s_d_op = &adfs_dentry_operations;
  427. root = adfs_iget(sb, &root_obj);
  428. sb->s_root = d_make_root(root);
  429. if (!sb->s_root) {
  430. int i;
  431. for (i = 0; i < asb->s_map_size; i++)
  432. brelse(asb->s_map[i].dm_bh);
  433. kfree(asb->s_map);
  434. adfs_error(sb, "get root inode failed\n");
  435. ret = -EIO;
  436. goto error;
  437. }
  438. return 0;
  439. error_free_bh:
  440. brelse(bh);
  441. error:
  442. sb->s_fs_info = NULL;
  443. kfree(asb);
  444. return ret;
  445. }
  446. static struct dentry *adfs_mount(struct file_system_type *fs_type,
  447. int flags, const char *dev_name, void *data)
  448. {
  449. return mount_bdev(fs_type, flags, dev_name, data, adfs_fill_super);
  450. }
  451. static struct file_system_type adfs_fs_type = {
  452. .owner = THIS_MODULE,
  453. .name = "adfs",
  454. .mount = adfs_mount,
  455. .kill_sb = kill_block_super,
  456. .fs_flags = FS_REQUIRES_DEV,
  457. };
  458. MODULE_ALIAS_FS("adfs");
  459. static int __init init_adfs_fs(void)
  460. {
  461. int err = init_inodecache();
  462. if (err)
  463. goto out1;
  464. err = register_filesystem(&adfs_fs_type);
  465. if (err)
  466. goto out;
  467. return 0;
  468. out:
  469. destroy_inodecache();
  470. out1:
  471. return err;
  472. }
  473. static void __exit exit_adfs_fs(void)
  474. {
  475. unregister_filesystem(&adfs_fs_type);
  476. destroy_inodecache();
  477. }
  478. module_init(init_adfs_fs)
  479. module_exit(exit_adfs_fs)
  480. MODULE_LICENSE("GPL");