super.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567
  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 |= SB_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|SLAB_ACCOUNT),
  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. .drop_inode = generic_delete_inode,
  253. .write_inode = adfs_write_inode,
  254. .put_super = adfs_put_super,
  255. .statfs = adfs_statfs,
  256. .remount_fs = adfs_remount,
  257. .show_options = adfs_show_options,
  258. };
  259. static struct adfs_discmap *adfs_read_map(struct super_block *sb, struct adfs_discrecord *dr)
  260. {
  261. struct adfs_discmap *dm;
  262. unsigned int map_addr, zone_size, nzones;
  263. int i, zone;
  264. struct adfs_sb_info *asb = ADFS_SB(sb);
  265. nzones = asb->s_map_size;
  266. zone_size = (8 << dr->log2secsize) - le16_to_cpu(dr->zone_spare);
  267. map_addr = (nzones >> 1) * zone_size -
  268. ((nzones > 1) ? ADFS_DR_SIZE_BITS : 0);
  269. map_addr = signed_asl(map_addr, asb->s_map2blk);
  270. asb->s_ids_per_zone = zone_size / (asb->s_idlen + 1);
  271. dm = kmalloc_array(nzones, sizeof(*dm), GFP_KERNEL);
  272. if (dm == NULL) {
  273. adfs_error(sb, "not enough memory");
  274. return ERR_PTR(-ENOMEM);
  275. }
  276. for (zone = 0; zone < nzones; zone++, map_addr++) {
  277. dm[zone].dm_startbit = 0;
  278. dm[zone].dm_endbit = zone_size;
  279. dm[zone].dm_startblk = zone * zone_size - ADFS_DR_SIZE_BITS;
  280. dm[zone].dm_bh = sb_bread(sb, map_addr);
  281. if (!dm[zone].dm_bh) {
  282. adfs_error(sb, "unable to read map");
  283. goto error_free;
  284. }
  285. }
  286. /* adjust the limits for the first and last map zones */
  287. i = zone - 1;
  288. dm[0].dm_startblk = 0;
  289. dm[0].dm_startbit = ADFS_DR_SIZE_BITS;
  290. dm[i].dm_endbit = (le32_to_cpu(dr->disc_size_high) << (32 - dr->log2bpmb)) +
  291. (le32_to_cpu(dr->disc_size) >> dr->log2bpmb) +
  292. (ADFS_DR_SIZE_BITS - i * zone_size);
  293. if (adfs_checkmap(sb, dm))
  294. return dm;
  295. adfs_error(sb, "map corrupted");
  296. error_free:
  297. while (--zone >= 0)
  298. brelse(dm[zone].dm_bh);
  299. kfree(dm);
  300. return ERR_PTR(-EIO);
  301. }
  302. static inline unsigned long adfs_discsize(struct adfs_discrecord *dr, int block_bits)
  303. {
  304. unsigned long discsize;
  305. discsize = le32_to_cpu(dr->disc_size_high) << (32 - block_bits);
  306. discsize |= le32_to_cpu(dr->disc_size) >> block_bits;
  307. return discsize;
  308. }
  309. static int adfs_fill_super(struct super_block *sb, void *data, int silent)
  310. {
  311. struct adfs_discrecord *dr;
  312. struct buffer_head *bh;
  313. struct object_info root_obj;
  314. unsigned char *b_data;
  315. unsigned int blocksize;
  316. struct adfs_sb_info *asb;
  317. struct inode *root;
  318. int ret = -EINVAL;
  319. sb->s_flags |= SB_NODIRATIME;
  320. asb = kzalloc(sizeof(*asb), GFP_KERNEL);
  321. if (!asb)
  322. return -ENOMEM;
  323. sb->s_fs_info = asb;
  324. /* set default options */
  325. asb->s_uid = GLOBAL_ROOT_UID;
  326. asb->s_gid = GLOBAL_ROOT_GID;
  327. asb->s_owner_mask = ADFS_DEFAULT_OWNER_MASK;
  328. asb->s_other_mask = ADFS_DEFAULT_OTHER_MASK;
  329. asb->s_ftsuffix = 0;
  330. if (parse_options(sb, data))
  331. goto error;
  332. sb_set_blocksize(sb, BLOCK_SIZE);
  333. if (!(bh = sb_bread(sb, ADFS_DISCRECORD / BLOCK_SIZE))) {
  334. adfs_error(sb, "unable to read superblock");
  335. ret = -EIO;
  336. goto error;
  337. }
  338. b_data = bh->b_data + (ADFS_DISCRECORD % BLOCK_SIZE);
  339. if (adfs_checkbblk(b_data)) {
  340. if (!silent)
  341. printk("VFS: Can't find an adfs filesystem on dev "
  342. "%s.\n", sb->s_id);
  343. ret = -EINVAL;
  344. goto error_free_bh;
  345. }
  346. dr = (struct adfs_discrecord *)(b_data + ADFS_DR_OFFSET);
  347. /*
  348. * Do some sanity checks on the ADFS disc record
  349. */
  350. if (adfs_checkdiscrecord(dr)) {
  351. if (!silent)
  352. printk("VPS: Can't find an adfs filesystem on dev "
  353. "%s.\n", sb->s_id);
  354. ret = -EINVAL;
  355. goto error_free_bh;
  356. }
  357. blocksize = 1 << dr->log2secsize;
  358. brelse(bh);
  359. if (sb_set_blocksize(sb, blocksize)) {
  360. bh = sb_bread(sb, ADFS_DISCRECORD / sb->s_blocksize);
  361. if (!bh) {
  362. adfs_error(sb, "couldn't read superblock on "
  363. "2nd try.");
  364. ret = -EIO;
  365. goto error;
  366. }
  367. b_data = bh->b_data + (ADFS_DISCRECORD % sb->s_blocksize);
  368. if (adfs_checkbblk(b_data)) {
  369. adfs_error(sb, "disc record mismatch, very weird!");
  370. ret = -EINVAL;
  371. goto error_free_bh;
  372. }
  373. dr = (struct adfs_discrecord *)(b_data + ADFS_DR_OFFSET);
  374. } else {
  375. if (!silent)
  376. printk(KERN_ERR "VFS: Unsupported blocksize on dev "
  377. "%s.\n", sb->s_id);
  378. ret = -EINVAL;
  379. goto error;
  380. }
  381. /*
  382. * blocksize on this device should now be set to the ADFS log2secsize
  383. */
  384. sb->s_magic = ADFS_SUPER_MAGIC;
  385. asb->s_idlen = dr->idlen;
  386. asb->s_map_size = dr->nzones | (dr->nzones_high << 8);
  387. asb->s_map2blk = dr->log2bpmb - dr->log2secsize;
  388. asb->s_size = adfs_discsize(dr, sb->s_blocksize_bits);
  389. asb->s_version = dr->format_version;
  390. asb->s_log2sharesize = dr->log2sharesize;
  391. asb->s_map = adfs_read_map(sb, dr);
  392. if (IS_ERR(asb->s_map)) {
  393. ret = PTR_ERR(asb->s_map);
  394. goto error_free_bh;
  395. }
  396. brelse(bh);
  397. /*
  398. * set up enough so that we can read an inode
  399. */
  400. sb->s_op = &adfs_sops;
  401. dr = (struct adfs_discrecord *)(asb->s_map[0].dm_bh->b_data + 4);
  402. root_obj.parent_id = root_obj.file_id = le32_to_cpu(dr->root);
  403. root_obj.name_len = 0;
  404. /* Set root object date as 01 Jan 1987 00:00:00 */
  405. root_obj.loadaddr = 0xfff0003f;
  406. root_obj.execaddr = 0xec22c000;
  407. root_obj.size = ADFS_NEWDIR_SIZE;
  408. root_obj.attr = ADFS_NDA_DIRECTORY | ADFS_NDA_OWNER_READ |
  409. ADFS_NDA_OWNER_WRITE | ADFS_NDA_PUBLIC_READ;
  410. root_obj.filetype = -1;
  411. /*
  412. * If this is a F+ disk with variable length directories,
  413. * get the root_size from the disc record.
  414. */
  415. if (asb->s_version) {
  416. root_obj.size = le32_to_cpu(dr->root_size);
  417. asb->s_dir = &adfs_fplus_dir_ops;
  418. asb->s_namelen = ADFS_FPLUS_NAME_LEN;
  419. } else {
  420. asb->s_dir = &adfs_f_dir_ops;
  421. asb->s_namelen = ADFS_F_NAME_LEN;
  422. }
  423. /*
  424. * ,xyz hex filetype suffix may be added by driver
  425. * to files that have valid RISC OS filetype
  426. */
  427. if (asb->s_ftsuffix)
  428. asb->s_namelen += 4;
  429. sb->s_d_op = &adfs_dentry_operations;
  430. root = adfs_iget(sb, &root_obj);
  431. sb->s_root = d_make_root(root);
  432. if (!sb->s_root) {
  433. int i;
  434. for (i = 0; i < asb->s_map_size; i++)
  435. brelse(asb->s_map[i].dm_bh);
  436. kfree(asb->s_map);
  437. adfs_error(sb, "get root inode failed\n");
  438. ret = -EIO;
  439. goto error;
  440. }
  441. return 0;
  442. error_free_bh:
  443. brelse(bh);
  444. error:
  445. sb->s_fs_info = NULL;
  446. kfree(asb);
  447. return ret;
  448. }
  449. static struct dentry *adfs_mount(struct file_system_type *fs_type,
  450. int flags, const char *dev_name, void *data)
  451. {
  452. return mount_bdev(fs_type, flags, dev_name, data, adfs_fill_super);
  453. }
  454. static struct file_system_type adfs_fs_type = {
  455. .owner = THIS_MODULE,
  456. .name = "adfs",
  457. .mount = adfs_mount,
  458. .kill_sb = kill_block_super,
  459. .fs_flags = FS_REQUIRES_DEV,
  460. };
  461. MODULE_ALIAS_FS("adfs");
  462. static int __init init_adfs_fs(void)
  463. {
  464. int err = init_inodecache();
  465. if (err)
  466. goto out1;
  467. err = register_filesystem(&adfs_fs_type);
  468. if (err)
  469. goto out;
  470. return 0;
  471. out:
  472. destroy_inodecache();
  473. out1:
  474. return err;
  475. }
  476. static void __exit exit_adfs_fs(void)
  477. {
  478. unregister_filesystem(&adfs_fs_type);
  479. destroy_inodecache();
  480. }
  481. module_init(init_adfs_fs)
  482. module_exit(exit_adfs_fs)
  483. MODULE_LICENSE("GPL");