super.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551
  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. *flags |= MS_NODIRATIME;
  186. return parse_options(sb, data);
  187. }
  188. static int adfs_statfs(struct dentry *dentry, struct kstatfs *buf)
  189. {
  190. struct super_block *sb = dentry->d_sb;
  191. struct adfs_sb_info *sbi = ADFS_SB(sb);
  192. u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
  193. buf->f_type = ADFS_SUPER_MAGIC;
  194. buf->f_namelen = sbi->s_namelen;
  195. buf->f_bsize = sb->s_blocksize;
  196. buf->f_blocks = sbi->s_size;
  197. buf->f_files = sbi->s_ids_per_zone * sbi->s_map_size;
  198. buf->f_bavail =
  199. buf->f_bfree = adfs_map_free(sb);
  200. buf->f_ffree = (long)(buf->f_bfree * buf->f_files) / (long)buf->f_blocks;
  201. buf->f_fsid.val[0] = (u32)id;
  202. buf->f_fsid.val[1] = (u32)(id >> 32);
  203. return 0;
  204. }
  205. static struct kmem_cache *adfs_inode_cachep;
  206. static struct inode *adfs_alloc_inode(struct super_block *sb)
  207. {
  208. struct adfs_inode_info *ei;
  209. ei = (struct adfs_inode_info *)kmem_cache_alloc(adfs_inode_cachep, GFP_KERNEL);
  210. if (!ei)
  211. return NULL;
  212. return &ei->vfs_inode;
  213. }
  214. static void adfs_i_callback(struct rcu_head *head)
  215. {
  216. struct inode *inode = container_of(head, struct inode, i_rcu);
  217. kmem_cache_free(adfs_inode_cachep, ADFS_I(inode));
  218. }
  219. static void adfs_destroy_inode(struct inode *inode)
  220. {
  221. call_rcu(&inode->i_rcu, adfs_i_callback);
  222. }
  223. static void init_once(void *foo)
  224. {
  225. struct adfs_inode_info *ei = (struct adfs_inode_info *) foo;
  226. inode_init_once(&ei->vfs_inode);
  227. }
  228. static int init_inodecache(void)
  229. {
  230. adfs_inode_cachep = kmem_cache_create("adfs_inode_cache",
  231. sizeof(struct adfs_inode_info),
  232. 0, (SLAB_RECLAIM_ACCOUNT|
  233. SLAB_MEM_SPREAD),
  234. init_once);
  235. if (adfs_inode_cachep == NULL)
  236. return -ENOMEM;
  237. return 0;
  238. }
  239. static void destroy_inodecache(void)
  240. {
  241. /*
  242. * Make sure all delayed rcu free inodes are flushed before we
  243. * destroy cache.
  244. */
  245. rcu_barrier();
  246. kmem_cache_destroy(adfs_inode_cachep);
  247. }
  248. static const struct super_operations adfs_sops = {
  249. .alloc_inode = adfs_alloc_inode,
  250. .destroy_inode = adfs_destroy_inode,
  251. .write_inode = adfs_write_inode,
  252. .put_super = adfs_put_super,
  253. .statfs = adfs_statfs,
  254. .remount_fs = adfs_remount,
  255. .show_options = adfs_show_options,
  256. };
  257. static struct adfs_discmap *adfs_read_map(struct super_block *sb, struct adfs_discrecord *dr)
  258. {
  259. struct adfs_discmap *dm;
  260. unsigned int map_addr, zone_size, nzones;
  261. int i, zone;
  262. struct adfs_sb_info *asb = ADFS_SB(sb);
  263. nzones = asb->s_map_size;
  264. zone_size = (8 << dr->log2secsize) - le16_to_cpu(dr->zone_spare);
  265. map_addr = (nzones >> 1) * zone_size -
  266. ((nzones > 1) ? ADFS_DR_SIZE_BITS : 0);
  267. map_addr = signed_asl(map_addr, asb->s_map2blk);
  268. asb->s_ids_per_zone = zone_size / (asb->s_idlen + 1);
  269. dm = kmalloc(nzones * sizeof(*dm), GFP_KERNEL);
  270. if (dm == NULL) {
  271. adfs_error(sb, "not enough memory");
  272. return NULL;
  273. }
  274. for (zone = 0; zone < nzones; zone++, map_addr++) {
  275. dm[zone].dm_startbit = 0;
  276. dm[zone].dm_endbit = zone_size;
  277. dm[zone].dm_startblk = zone * zone_size - ADFS_DR_SIZE_BITS;
  278. dm[zone].dm_bh = sb_bread(sb, map_addr);
  279. if (!dm[zone].dm_bh) {
  280. adfs_error(sb, "unable to read map");
  281. goto error_free;
  282. }
  283. }
  284. /* adjust the limits for the first and last map zones */
  285. i = zone - 1;
  286. dm[0].dm_startblk = 0;
  287. dm[0].dm_startbit = ADFS_DR_SIZE_BITS;
  288. dm[i].dm_endbit = (le32_to_cpu(dr->disc_size_high) << (32 - dr->log2bpmb)) +
  289. (le32_to_cpu(dr->disc_size) >> dr->log2bpmb) +
  290. (ADFS_DR_SIZE_BITS - i * zone_size);
  291. if (adfs_checkmap(sb, dm))
  292. return dm;
  293. adfs_error(sb, "map corrupted");
  294. error_free:
  295. while (--zone >= 0)
  296. brelse(dm[zone].dm_bh);
  297. kfree(dm);
  298. return NULL;
  299. }
  300. static inline unsigned long adfs_discsize(struct adfs_discrecord *dr, int block_bits)
  301. {
  302. unsigned long discsize;
  303. discsize = le32_to_cpu(dr->disc_size_high) << (32 - block_bits);
  304. discsize |= le32_to_cpu(dr->disc_size) >> block_bits;
  305. return discsize;
  306. }
  307. static int adfs_fill_super(struct super_block *sb, void *data, int silent)
  308. {
  309. struct adfs_discrecord *dr;
  310. struct buffer_head *bh;
  311. struct object_info root_obj;
  312. unsigned char *b_data;
  313. struct adfs_sb_info *asb;
  314. struct inode *root;
  315. sb->s_flags |= MS_NODIRATIME;
  316. asb = kzalloc(sizeof(*asb), GFP_KERNEL);
  317. if (!asb)
  318. return -ENOMEM;
  319. sb->s_fs_info = asb;
  320. /* set default options */
  321. asb->s_uid = GLOBAL_ROOT_UID;
  322. asb->s_gid = GLOBAL_ROOT_GID;
  323. asb->s_owner_mask = ADFS_DEFAULT_OWNER_MASK;
  324. asb->s_other_mask = ADFS_DEFAULT_OTHER_MASK;
  325. asb->s_ftsuffix = 0;
  326. if (parse_options(sb, data))
  327. goto error;
  328. sb_set_blocksize(sb, BLOCK_SIZE);
  329. if (!(bh = sb_bread(sb, ADFS_DISCRECORD / BLOCK_SIZE))) {
  330. adfs_error(sb, "unable to read superblock");
  331. goto error;
  332. }
  333. b_data = bh->b_data + (ADFS_DISCRECORD % BLOCK_SIZE);
  334. if (adfs_checkbblk(b_data)) {
  335. if (!silent)
  336. printk("VFS: Can't find an adfs filesystem on dev "
  337. "%s.\n", sb->s_id);
  338. goto error_free_bh;
  339. }
  340. dr = (struct adfs_discrecord *)(b_data + ADFS_DR_OFFSET);
  341. /*
  342. * Do some sanity checks on the ADFS disc record
  343. */
  344. if (adfs_checkdiscrecord(dr)) {
  345. if (!silent)
  346. printk("VPS: Can't find an adfs filesystem on dev "
  347. "%s.\n", sb->s_id);
  348. goto error_free_bh;
  349. }
  350. brelse(bh);
  351. if (sb_set_blocksize(sb, 1 << dr->log2secsize)) {
  352. bh = sb_bread(sb, ADFS_DISCRECORD / sb->s_blocksize);
  353. if (!bh) {
  354. adfs_error(sb, "couldn't read superblock on "
  355. "2nd try.");
  356. goto error;
  357. }
  358. b_data = bh->b_data + (ADFS_DISCRECORD % sb->s_blocksize);
  359. if (adfs_checkbblk(b_data)) {
  360. adfs_error(sb, "disc record mismatch, very weird!");
  361. goto error_free_bh;
  362. }
  363. dr = (struct adfs_discrecord *)(b_data + ADFS_DR_OFFSET);
  364. } else {
  365. if (!silent)
  366. printk(KERN_ERR "VFS: Unsupported blocksize on dev "
  367. "%s.\n", sb->s_id);
  368. goto error;
  369. }
  370. /*
  371. * blocksize on this device should now be set to the ADFS log2secsize
  372. */
  373. sb->s_magic = ADFS_SUPER_MAGIC;
  374. asb->s_idlen = dr->idlen;
  375. asb->s_map_size = dr->nzones | (dr->nzones_high << 8);
  376. asb->s_map2blk = dr->log2bpmb - dr->log2secsize;
  377. asb->s_size = adfs_discsize(dr, sb->s_blocksize_bits);
  378. asb->s_version = dr->format_version;
  379. asb->s_log2sharesize = dr->log2sharesize;
  380. asb->s_map = adfs_read_map(sb, dr);
  381. if (!asb->s_map)
  382. goto error_free_bh;
  383. brelse(bh);
  384. /*
  385. * set up enough so that we can read an inode
  386. */
  387. sb->s_op = &adfs_sops;
  388. dr = (struct adfs_discrecord *)(asb->s_map[0].dm_bh->b_data + 4);
  389. root_obj.parent_id = root_obj.file_id = le32_to_cpu(dr->root);
  390. root_obj.name_len = 0;
  391. /* Set root object date as 01 Jan 1987 00:00:00 */
  392. root_obj.loadaddr = 0xfff0003f;
  393. root_obj.execaddr = 0xec22c000;
  394. root_obj.size = ADFS_NEWDIR_SIZE;
  395. root_obj.attr = ADFS_NDA_DIRECTORY | ADFS_NDA_OWNER_READ |
  396. ADFS_NDA_OWNER_WRITE | ADFS_NDA_PUBLIC_READ;
  397. root_obj.filetype = -1;
  398. /*
  399. * If this is a F+ disk with variable length directories,
  400. * get the root_size from the disc record.
  401. */
  402. if (asb->s_version) {
  403. root_obj.size = le32_to_cpu(dr->root_size);
  404. asb->s_dir = &adfs_fplus_dir_ops;
  405. asb->s_namelen = ADFS_FPLUS_NAME_LEN;
  406. } else {
  407. asb->s_dir = &adfs_f_dir_ops;
  408. asb->s_namelen = ADFS_F_NAME_LEN;
  409. }
  410. /*
  411. * ,xyz hex filetype suffix may be added by driver
  412. * to files that have valid RISC OS filetype
  413. */
  414. if (asb->s_ftsuffix)
  415. asb->s_namelen += 4;
  416. sb->s_d_op = &adfs_dentry_operations;
  417. root = adfs_iget(sb, &root_obj);
  418. sb->s_root = d_make_root(root);
  419. if (!sb->s_root) {
  420. int i;
  421. for (i = 0; i < asb->s_map_size; i++)
  422. brelse(asb->s_map[i].dm_bh);
  423. kfree(asb->s_map);
  424. adfs_error(sb, "get root inode failed\n");
  425. goto error;
  426. }
  427. return 0;
  428. error_free_bh:
  429. brelse(bh);
  430. error:
  431. sb->s_fs_info = NULL;
  432. kfree(asb);
  433. return -EINVAL;
  434. }
  435. static struct dentry *adfs_mount(struct file_system_type *fs_type,
  436. int flags, const char *dev_name, void *data)
  437. {
  438. return mount_bdev(fs_type, flags, dev_name, data, adfs_fill_super);
  439. }
  440. static struct file_system_type adfs_fs_type = {
  441. .owner = THIS_MODULE,
  442. .name = "adfs",
  443. .mount = adfs_mount,
  444. .kill_sb = kill_block_super,
  445. .fs_flags = FS_REQUIRES_DEV,
  446. };
  447. MODULE_ALIAS_FS("adfs");
  448. static int __init init_adfs_fs(void)
  449. {
  450. int err = init_inodecache();
  451. if (err)
  452. goto out1;
  453. err = register_filesystem(&adfs_fs_type);
  454. if (err)
  455. goto out;
  456. return 0;
  457. out:
  458. destroy_inodecache();
  459. out1:
  460. return err;
  461. }
  462. static void __exit exit_adfs_fs(void)
  463. {
  464. unregister_filesystem(&adfs_fs_type);
  465. destroy_inodecache();
  466. }
  467. module_init(init_adfs_fs)
  468. module_exit(exit_adfs_fs)
  469. MODULE_LICENSE("GPL");