super.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  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/smp_lock.h>
  18. #include <linux/statfs.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. lock_kernel();
  104. for (i = 0; i < asb->s_map_size; i++)
  105. brelse(asb->s_map[i].dm_bh);
  106. kfree(asb->s_map);
  107. kfree(asb);
  108. sb->s_fs_info = NULL;
  109. unlock_kernel();
  110. }
  111. static int adfs_show_options(struct seq_file *seq, struct vfsmount *mnt)
  112. {
  113. struct adfs_sb_info *asb = ADFS_SB(mnt->mnt_sb);
  114. if (asb->s_uid != 0)
  115. seq_printf(seq, ",uid=%u", asb->s_uid);
  116. if (asb->s_gid != 0)
  117. seq_printf(seq, ",gid=%u", asb->s_gid);
  118. if (asb->s_owner_mask != ADFS_DEFAULT_OWNER_MASK)
  119. seq_printf(seq, ",ownmask=%o", asb->s_owner_mask);
  120. if (asb->s_other_mask != ADFS_DEFAULT_OTHER_MASK)
  121. seq_printf(seq, ",othmask=%o", asb->s_other_mask);
  122. return 0;
  123. }
  124. enum {Opt_uid, Opt_gid, Opt_ownmask, Opt_othmask, Opt_err};
  125. static const match_table_t tokens = {
  126. {Opt_uid, "uid=%u"},
  127. {Opt_gid, "gid=%u"},
  128. {Opt_ownmask, "ownmask=%o"},
  129. {Opt_othmask, "othmask=%o"},
  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 = option;
  150. break;
  151. case Opt_gid:
  152. if (match_int(args, &option))
  153. return -EINVAL;
  154. asb->s_gid = option;
  155. break;
  156. case Opt_ownmask:
  157. if (match_octal(args, &option))
  158. return -EINVAL;
  159. asb->s_owner_mask = option;
  160. break;
  161. case Opt_othmask:
  162. if (match_octal(args, &option))
  163. return -EINVAL;
  164. asb->s_other_mask = option;
  165. break;
  166. default:
  167. printk("ADFS-fs: unrecognised mount option \"%s\" "
  168. "or missing value\n", p);
  169. return -EINVAL;
  170. }
  171. }
  172. return 0;
  173. }
  174. static int adfs_remount(struct super_block *sb, int *flags, char *data)
  175. {
  176. *flags |= MS_NODIRATIME;
  177. return parse_options(sb, data);
  178. }
  179. static int adfs_statfs(struct dentry *dentry, struct kstatfs *buf)
  180. {
  181. struct super_block *sb = dentry->d_sb;
  182. struct adfs_sb_info *sbi = ADFS_SB(sb);
  183. u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
  184. buf->f_type = ADFS_SUPER_MAGIC;
  185. buf->f_namelen = sbi->s_namelen;
  186. buf->f_bsize = sb->s_blocksize;
  187. buf->f_blocks = sbi->s_size;
  188. buf->f_files = sbi->s_ids_per_zone * sbi->s_map_size;
  189. buf->f_bavail =
  190. buf->f_bfree = adfs_map_free(sb);
  191. buf->f_ffree = (long)(buf->f_bfree * buf->f_files) / (long)buf->f_blocks;
  192. buf->f_fsid.val[0] = (u32)id;
  193. buf->f_fsid.val[1] = (u32)(id >> 32);
  194. return 0;
  195. }
  196. static struct kmem_cache *adfs_inode_cachep;
  197. static struct inode *adfs_alloc_inode(struct super_block *sb)
  198. {
  199. struct adfs_inode_info *ei;
  200. ei = (struct adfs_inode_info *)kmem_cache_alloc(adfs_inode_cachep, GFP_KERNEL);
  201. if (!ei)
  202. return NULL;
  203. return &ei->vfs_inode;
  204. }
  205. static void adfs_destroy_inode(struct inode *inode)
  206. {
  207. kmem_cache_free(adfs_inode_cachep, ADFS_I(inode));
  208. }
  209. static void init_once(void *foo)
  210. {
  211. struct adfs_inode_info *ei = (struct adfs_inode_info *) foo;
  212. inode_init_once(&ei->vfs_inode);
  213. }
  214. static int init_inodecache(void)
  215. {
  216. adfs_inode_cachep = kmem_cache_create("adfs_inode_cache",
  217. sizeof(struct adfs_inode_info),
  218. 0, (SLAB_RECLAIM_ACCOUNT|
  219. SLAB_MEM_SPREAD),
  220. init_once);
  221. if (adfs_inode_cachep == NULL)
  222. return -ENOMEM;
  223. return 0;
  224. }
  225. static void destroy_inodecache(void)
  226. {
  227. kmem_cache_destroy(adfs_inode_cachep);
  228. }
  229. static const struct super_operations adfs_sops = {
  230. .alloc_inode = adfs_alloc_inode,
  231. .destroy_inode = adfs_destroy_inode,
  232. .write_inode = adfs_write_inode,
  233. .put_super = adfs_put_super,
  234. .statfs = adfs_statfs,
  235. .remount_fs = adfs_remount,
  236. .show_options = adfs_show_options,
  237. };
  238. static struct adfs_discmap *adfs_read_map(struct super_block *sb, struct adfs_discrecord *dr)
  239. {
  240. struct adfs_discmap *dm;
  241. unsigned int map_addr, zone_size, nzones;
  242. int i, zone;
  243. struct adfs_sb_info *asb = ADFS_SB(sb);
  244. nzones = asb->s_map_size;
  245. zone_size = (8 << dr->log2secsize) - le16_to_cpu(dr->zone_spare);
  246. map_addr = (nzones >> 1) * zone_size -
  247. ((nzones > 1) ? ADFS_DR_SIZE_BITS : 0);
  248. map_addr = signed_asl(map_addr, asb->s_map2blk);
  249. asb->s_ids_per_zone = zone_size / (asb->s_idlen + 1);
  250. dm = kmalloc(nzones * sizeof(*dm), GFP_KERNEL);
  251. if (dm == NULL) {
  252. adfs_error(sb, "not enough memory");
  253. return NULL;
  254. }
  255. for (zone = 0; zone < nzones; zone++, map_addr++) {
  256. dm[zone].dm_startbit = 0;
  257. dm[zone].dm_endbit = zone_size;
  258. dm[zone].dm_startblk = zone * zone_size - ADFS_DR_SIZE_BITS;
  259. dm[zone].dm_bh = sb_bread(sb, map_addr);
  260. if (!dm[zone].dm_bh) {
  261. adfs_error(sb, "unable to read map");
  262. goto error_free;
  263. }
  264. }
  265. /* adjust the limits for the first and last map zones */
  266. i = zone - 1;
  267. dm[0].dm_startblk = 0;
  268. dm[0].dm_startbit = ADFS_DR_SIZE_BITS;
  269. dm[i].dm_endbit = (le32_to_cpu(dr->disc_size_high) << (32 - dr->log2bpmb)) +
  270. (le32_to_cpu(dr->disc_size) >> dr->log2bpmb) +
  271. (ADFS_DR_SIZE_BITS - i * zone_size);
  272. if (adfs_checkmap(sb, dm))
  273. return dm;
  274. adfs_error(sb, "map corrupted");
  275. error_free:
  276. while (--zone >= 0)
  277. brelse(dm[zone].dm_bh);
  278. kfree(dm);
  279. return NULL;
  280. }
  281. static inline unsigned long adfs_discsize(struct adfs_discrecord *dr, int block_bits)
  282. {
  283. unsigned long discsize;
  284. discsize = le32_to_cpu(dr->disc_size_high) << (32 - block_bits);
  285. discsize |= le32_to_cpu(dr->disc_size) >> block_bits;
  286. return discsize;
  287. }
  288. static int adfs_fill_super(struct super_block *sb, void *data, int silent)
  289. {
  290. struct adfs_discrecord *dr;
  291. struct buffer_head *bh;
  292. struct object_info root_obj;
  293. unsigned char *b_data;
  294. struct adfs_sb_info *asb;
  295. struct inode *root;
  296. sb->s_flags |= MS_NODIRATIME;
  297. asb = kzalloc(sizeof(*asb), GFP_KERNEL);
  298. if (!asb)
  299. return -ENOMEM;
  300. sb->s_fs_info = asb;
  301. /* set default options */
  302. asb->s_uid = 0;
  303. asb->s_gid = 0;
  304. asb->s_owner_mask = ADFS_DEFAULT_OWNER_MASK;
  305. asb->s_other_mask = ADFS_DEFAULT_OTHER_MASK;
  306. if (parse_options(sb, data))
  307. goto error;
  308. sb_set_blocksize(sb, BLOCK_SIZE);
  309. if (!(bh = sb_bread(sb, ADFS_DISCRECORD / BLOCK_SIZE))) {
  310. adfs_error(sb, "unable to read superblock");
  311. goto error;
  312. }
  313. b_data = bh->b_data + (ADFS_DISCRECORD % BLOCK_SIZE);
  314. if (adfs_checkbblk(b_data)) {
  315. if (!silent)
  316. printk("VFS: Can't find an adfs filesystem on dev "
  317. "%s.\n", sb->s_id);
  318. goto error_free_bh;
  319. }
  320. dr = (struct adfs_discrecord *)(b_data + ADFS_DR_OFFSET);
  321. /*
  322. * Do some sanity checks on the ADFS disc record
  323. */
  324. if (adfs_checkdiscrecord(dr)) {
  325. if (!silent)
  326. printk("VPS: Can't find an adfs filesystem on dev "
  327. "%s.\n", sb->s_id);
  328. goto error_free_bh;
  329. }
  330. brelse(bh);
  331. if (sb_set_blocksize(sb, 1 << dr->log2secsize)) {
  332. bh = sb_bread(sb, ADFS_DISCRECORD / sb->s_blocksize);
  333. if (!bh) {
  334. adfs_error(sb, "couldn't read superblock on "
  335. "2nd try.");
  336. goto error;
  337. }
  338. b_data = bh->b_data + (ADFS_DISCRECORD % sb->s_blocksize);
  339. if (adfs_checkbblk(b_data)) {
  340. adfs_error(sb, "disc record mismatch, very weird!");
  341. goto error_free_bh;
  342. }
  343. dr = (struct adfs_discrecord *)(b_data + ADFS_DR_OFFSET);
  344. } else {
  345. if (!silent)
  346. printk(KERN_ERR "VFS: Unsupported blocksize on dev "
  347. "%s.\n", sb->s_id);
  348. goto error;
  349. }
  350. /*
  351. * blocksize on this device should now be set to the ADFS log2secsize
  352. */
  353. sb->s_magic = ADFS_SUPER_MAGIC;
  354. asb->s_idlen = dr->idlen;
  355. asb->s_map_size = dr->nzones | (dr->nzones_high << 8);
  356. asb->s_map2blk = dr->log2bpmb - dr->log2secsize;
  357. asb->s_size = adfs_discsize(dr, sb->s_blocksize_bits);
  358. asb->s_version = dr->format_version;
  359. asb->s_log2sharesize = dr->log2sharesize;
  360. asb->s_map = adfs_read_map(sb, dr);
  361. if (!asb->s_map)
  362. goto error_free_bh;
  363. brelse(bh);
  364. /*
  365. * set up enough so that we can read an inode
  366. */
  367. sb->s_op = &adfs_sops;
  368. dr = (struct adfs_discrecord *)(asb->s_map[0].dm_bh->b_data + 4);
  369. root_obj.parent_id = root_obj.file_id = le32_to_cpu(dr->root);
  370. root_obj.name_len = 0;
  371. root_obj.loadaddr = 0;
  372. root_obj.execaddr = 0;
  373. root_obj.size = ADFS_NEWDIR_SIZE;
  374. root_obj.attr = ADFS_NDA_DIRECTORY | ADFS_NDA_OWNER_READ |
  375. ADFS_NDA_OWNER_WRITE | ADFS_NDA_PUBLIC_READ;
  376. /*
  377. * If this is a F+ disk with variable length directories,
  378. * get the root_size from the disc record.
  379. */
  380. if (asb->s_version) {
  381. root_obj.size = le32_to_cpu(dr->root_size);
  382. asb->s_dir = &adfs_fplus_dir_ops;
  383. asb->s_namelen = ADFS_FPLUS_NAME_LEN;
  384. } else {
  385. asb->s_dir = &adfs_f_dir_ops;
  386. asb->s_namelen = ADFS_F_NAME_LEN;
  387. }
  388. root = adfs_iget(sb, &root_obj);
  389. sb->s_root = d_alloc_root(root);
  390. if (!sb->s_root) {
  391. int i;
  392. iput(root);
  393. for (i = 0; i < asb->s_map_size; i++)
  394. brelse(asb->s_map[i].dm_bh);
  395. kfree(asb->s_map);
  396. adfs_error(sb, "get root inode failed\n");
  397. goto error;
  398. } else
  399. sb->s_root->d_op = &adfs_dentry_operations;
  400. return 0;
  401. error_free_bh:
  402. brelse(bh);
  403. error:
  404. sb->s_fs_info = NULL;
  405. kfree(asb);
  406. return -EINVAL;
  407. }
  408. static int adfs_get_sb(struct file_system_type *fs_type,
  409. int flags, const char *dev_name, void *data, struct vfsmount *mnt)
  410. {
  411. return get_sb_bdev(fs_type, flags, dev_name, data, adfs_fill_super,
  412. mnt);
  413. }
  414. static struct file_system_type adfs_fs_type = {
  415. .owner = THIS_MODULE,
  416. .name = "adfs",
  417. .get_sb = adfs_get_sb,
  418. .kill_sb = kill_block_super,
  419. .fs_flags = FS_REQUIRES_DEV,
  420. };
  421. static int __init init_adfs_fs(void)
  422. {
  423. int err = init_inodecache();
  424. if (err)
  425. goto out1;
  426. err = register_filesystem(&adfs_fs_type);
  427. if (err)
  428. goto out;
  429. return 0;
  430. out:
  431. destroy_inodecache();
  432. out1:
  433. return err;
  434. }
  435. static void __exit exit_adfs_fs(void)
  436. {
  437. unregister_filesystem(&adfs_fs_type);
  438. destroy_inodecache();
  439. }
  440. module_init(init_adfs_fs)
  441. module_exit(exit_adfs_fs)
  442. MODULE_LICENSE("GPL");