super.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569
  1. /*
  2. * linux/fs/affs/inode.c
  3. *
  4. * (c) 1996 Hans-Joachim Widmaier - Rewritten
  5. *
  6. * (C) 1993 Ray Burr - Modified for Amiga FFS filesystem.
  7. *
  8. * (C) 1992 Eric Youngdale Modified for ISO 9660 filesystem.
  9. *
  10. * (C) 1991 Linus Torvalds - minix filesystem
  11. */
  12. #include <linux/module.h>
  13. #include <linux/init.h>
  14. #include <linux/statfs.h>
  15. #include <linux/parser.h>
  16. #include <linux/magic.h>
  17. #include "affs.h"
  18. extern struct timezone sys_tz;
  19. static int affs_statfs(struct dentry *dentry, struct kstatfs *buf);
  20. static int affs_remount (struct super_block *sb, int *flags, char *data);
  21. static void
  22. affs_put_super(struct super_block *sb)
  23. {
  24. struct affs_sb_info *sbi = AFFS_SB(sb);
  25. pr_debug("AFFS: put_super()\n");
  26. if (!(sb->s_flags & MS_RDONLY)) {
  27. AFFS_ROOT_TAIL(sb, sbi->s_root_bh)->bm_flag = cpu_to_be32(1);
  28. secs_to_datestamp(get_seconds(),
  29. &AFFS_ROOT_TAIL(sb, sbi->s_root_bh)->disk_change);
  30. affs_fix_checksum(sb, sbi->s_root_bh);
  31. mark_buffer_dirty(sbi->s_root_bh);
  32. }
  33. kfree(sbi->s_prefix);
  34. affs_free_bitmap(sb);
  35. affs_brelse(sbi->s_root_bh);
  36. kfree(sbi);
  37. sb->s_fs_info = NULL;
  38. return;
  39. }
  40. static void
  41. affs_write_super(struct super_block *sb)
  42. {
  43. int clean = 2;
  44. struct affs_sb_info *sbi = AFFS_SB(sb);
  45. if (!(sb->s_flags & MS_RDONLY)) {
  46. // if (sbi->s_bitmap[i].bm_bh) {
  47. // if (buffer_dirty(sbi->s_bitmap[i].bm_bh)) {
  48. // clean = 0;
  49. AFFS_ROOT_TAIL(sb, sbi->s_root_bh)->bm_flag = cpu_to_be32(clean);
  50. secs_to_datestamp(get_seconds(),
  51. &AFFS_ROOT_TAIL(sb, sbi->s_root_bh)->disk_change);
  52. affs_fix_checksum(sb, sbi->s_root_bh);
  53. mark_buffer_dirty(sbi->s_root_bh);
  54. sb->s_dirt = !clean; /* redo until bitmap synced */
  55. } else
  56. sb->s_dirt = 0;
  57. pr_debug("AFFS: write_super() at %lu, clean=%d\n", get_seconds(), clean);
  58. }
  59. static kmem_cache_t * affs_inode_cachep;
  60. static struct inode *affs_alloc_inode(struct super_block *sb)
  61. {
  62. struct affs_inode_info *ei;
  63. ei = (struct affs_inode_info *)kmem_cache_alloc(affs_inode_cachep, SLAB_KERNEL);
  64. if (!ei)
  65. return NULL;
  66. ei->vfs_inode.i_version = 1;
  67. return &ei->vfs_inode;
  68. }
  69. static void affs_destroy_inode(struct inode *inode)
  70. {
  71. kmem_cache_free(affs_inode_cachep, AFFS_I(inode));
  72. }
  73. static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
  74. {
  75. struct affs_inode_info *ei = (struct affs_inode_info *) foo;
  76. if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
  77. SLAB_CTOR_CONSTRUCTOR) {
  78. init_MUTEX(&ei->i_link_lock);
  79. init_MUTEX(&ei->i_ext_lock);
  80. inode_init_once(&ei->vfs_inode);
  81. }
  82. }
  83. static int init_inodecache(void)
  84. {
  85. affs_inode_cachep = kmem_cache_create("affs_inode_cache",
  86. sizeof(struct affs_inode_info),
  87. 0, (SLAB_RECLAIM_ACCOUNT|
  88. SLAB_MEM_SPREAD),
  89. init_once, NULL);
  90. if (affs_inode_cachep == NULL)
  91. return -ENOMEM;
  92. return 0;
  93. }
  94. static void destroy_inodecache(void)
  95. {
  96. kmem_cache_destroy(affs_inode_cachep);
  97. }
  98. static struct super_operations affs_sops = {
  99. .alloc_inode = affs_alloc_inode,
  100. .destroy_inode = affs_destroy_inode,
  101. .read_inode = affs_read_inode,
  102. .write_inode = affs_write_inode,
  103. .put_inode = affs_put_inode,
  104. .delete_inode = affs_delete_inode,
  105. .clear_inode = affs_clear_inode,
  106. .put_super = affs_put_super,
  107. .write_super = affs_write_super,
  108. .statfs = affs_statfs,
  109. .remount_fs = affs_remount,
  110. };
  111. enum {
  112. Opt_bs, Opt_mode, Opt_mufs, Opt_prefix, Opt_protect,
  113. Opt_reserved, Opt_root, Opt_setgid, Opt_setuid,
  114. Opt_verbose, Opt_volume, Opt_ignore, Opt_err,
  115. };
  116. static match_table_t tokens = {
  117. {Opt_bs, "bs=%u"},
  118. {Opt_mode, "mode=%o"},
  119. {Opt_mufs, "mufs"},
  120. {Opt_prefix, "prefix=%s"},
  121. {Opt_protect, "protect"},
  122. {Opt_reserved, "reserved=%u"},
  123. {Opt_root, "root=%u"},
  124. {Opt_setgid, "setgid=%u"},
  125. {Opt_setuid, "setuid=%u"},
  126. {Opt_verbose, "verbose"},
  127. {Opt_volume, "volume=%s"},
  128. {Opt_ignore, "grpquota"},
  129. {Opt_ignore, "noquota"},
  130. {Opt_ignore, "quota"},
  131. {Opt_ignore, "usrquota"},
  132. {Opt_err, NULL},
  133. };
  134. static int
  135. parse_options(char *options, uid_t *uid, gid_t *gid, int *mode, int *reserved, s32 *root,
  136. int *blocksize, char **prefix, char *volume, unsigned long *mount_opts)
  137. {
  138. char *p;
  139. substring_t args[MAX_OPT_ARGS];
  140. /* Fill in defaults */
  141. *uid = current->uid;
  142. *gid = current->gid;
  143. *reserved = 2;
  144. *root = -1;
  145. *blocksize = -1;
  146. volume[0] = ':';
  147. volume[1] = 0;
  148. *mount_opts = 0;
  149. if (!options)
  150. return 1;
  151. while ((p = strsep(&options, ",")) != NULL) {
  152. int token, n, option;
  153. if (!*p)
  154. continue;
  155. token = match_token(p, tokens, args);
  156. switch (token) {
  157. case Opt_bs:
  158. if (match_int(&args[0], &n))
  159. return -EINVAL;
  160. if (n != 512 && n != 1024 && n != 2048
  161. && n != 4096) {
  162. printk ("AFFS: Invalid blocksize (512, 1024, 2048, 4096 allowed)\n");
  163. return 0;
  164. }
  165. *blocksize = n;
  166. break;
  167. case Opt_mode:
  168. if (match_octal(&args[0], &option))
  169. return 1;
  170. *mode = option & 0777;
  171. *mount_opts |= SF_SETMODE;
  172. break;
  173. case Opt_mufs:
  174. *mount_opts |= SF_MUFS;
  175. break;
  176. case Opt_prefix:
  177. /* Free any previous prefix */
  178. kfree(*prefix);
  179. *prefix = NULL;
  180. *prefix = match_strdup(&args[0]);
  181. if (!*prefix)
  182. return 0;
  183. *mount_opts |= SF_PREFIX;
  184. break;
  185. case Opt_protect:
  186. *mount_opts |= SF_IMMUTABLE;
  187. break;
  188. case Opt_reserved:
  189. if (match_int(&args[0], reserved))
  190. return 1;
  191. break;
  192. case Opt_root:
  193. if (match_int(&args[0], root))
  194. return 1;
  195. break;
  196. case Opt_setgid:
  197. if (match_int(&args[0], &option))
  198. return 1;
  199. *gid = option;
  200. *mount_opts |= SF_SETGID;
  201. break;
  202. case Opt_setuid:
  203. if (match_int(&args[0], &option))
  204. return -EINVAL;
  205. *uid = option;
  206. *mount_opts |= SF_SETUID;
  207. break;
  208. case Opt_verbose:
  209. *mount_opts |= SF_VERBOSE;
  210. break;
  211. case Opt_volume: {
  212. char *vol = match_strdup(&args[0]);
  213. strlcpy(volume, vol, 32);
  214. kfree(vol);
  215. break;
  216. }
  217. case Opt_ignore:
  218. /* Silently ignore the quota options */
  219. break;
  220. default:
  221. printk("AFFS: Unrecognized mount option \"%s\" "
  222. "or missing value\n", p);
  223. return 0;
  224. }
  225. }
  226. return 1;
  227. }
  228. /* This function definitely needs to be split up. Some fine day I'll
  229. * hopefully have the guts to do so. Until then: sorry for the mess.
  230. */
  231. static int affs_fill_super(struct super_block *sb, void *data, int silent)
  232. {
  233. struct affs_sb_info *sbi;
  234. struct buffer_head *root_bh = NULL;
  235. struct buffer_head *boot_bh;
  236. struct inode *root_inode = NULL;
  237. s32 root_block;
  238. int size, blocksize;
  239. u32 chksum;
  240. int num_bm;
  241. int i, j;
  242. s32 key;
  243. uid_t uid;
  244. gid_t gid;
  245. int reserved;
  246. unsigned long mount_flags;
  247. int tmp_flags; /* fix remount prototype... */
  248. u8 sig[4];
  249. pr_debug("AFFS: read_super(%s)\n",data ? (const char *)data : "no options");
  250. sb->s_magic = AFFS_SUPER_MAGIC;
  251. sb->s_op = &affs_sops;
  252. sb->s_flags |= MS_NODIRATIME;
  253. sbi = kzalloc(sizeof(struct affs_sb_info), GFP_KERNEL);
  254. if (!sbi)
  255. return -ENOMEM;
  256. sb->s_fs_info = sbi;
  257. init_MUTEX(&sbi->s_bmlock);
  258. if (!parse_options(data,&uid,&gid,&i,&reserved,&root_block,
  259. &blocksize,&sbi->s_prefix,
  260. sbi->s_volume, &mount_flags)) {
  261. printk(KERN_ERR "AFFS: Error parsing options\n");
  262. return -EINVAL;
  263. }
  264. /* N.B. after this point s_prefix must be released */
  265. sbi->s_flags = mount_flags;
  266. sbi->s_mode = i;
  267. sbi->s_uid = uid;
  268. sbi->s_gid = gid;
  269. sbi->s_reserved= reserved;
  270. /* Get the size of the device in 512-byte blocks.
  271. * If we later see that the partition uses bigger
  272. * blocks, we will have to change it.
  273. */
  274. size = sb->s_bdev->bd_inode->i_size >> 9;
  275. pr_debug("AFFS: initial blocksize=%d, #blocks=%d\n", 512, size);
  276. affs_set_blocksize(sb, PAGE_SIZE);
  277. /* Try to find root block. Its location depends on the block size. */
  278. i = 512;
  279. j = 4096;
  280. if (blocksize > 0) {
  281. i = j = blocksize;
  282. size = size / (blocksize / 512);
  283. }
  284. for (blocksize = i, key = 0; blocksize <= j; blocksize <<= 1, size >>= 1) {
  285. sbi->s_root_block = root_block;
  286. if (root_block < 0)
  287. sbi->s_root_block = (reserved + size - 1) / 2;
  288. pr_debug("AFFS: setting blocksize to %d\n", blocksize);
  289. affs_set_blocksize(sb, blocksize);
  290. sbi->s_partition_size = size;
  291. /* The root block location that was calculated above is not
  292. * correct if the partition size is an odd number of 512-
  293. * byte blocks, which will be rounded down to a number of
  294. * 1024-byte blocks, and if there were an even number of
  295. * reserved blocks. Ideally, all partition checkers should
  296. * report the real number of blocks of the real blocksize,
  297. * but since this just cannot be done, we have to try to
  298. * find the root block anyways. In the above case, it is one
  299. * block behind the calculated one. So we check this one, too.
  300. */
  301. for (num_bm = 0; num_bm < 2; num_bm++) {
  302. pr_debug("AFFS: Dev %s, trying root=%u, bs=%d, "
  303. "size=%d, reserved=%d\n",
  304. sb->s_id,
  305. sbi->s_root_block + num_bm,
  306. blocksize, size, reserved);
  307. root_bh = affs_bread(sb, sbi->s_root_block + num_bm);
  308. if (!root_bh)
  309. continue;
  310. if (!affs_checksum_block(sb, root_bh) &&
  311. be32_to_cpu(AFFS_ROOT_HEAD(root_bh)->ptype) == T_SHORT &&
  312. be32_to_cpu(AFFS_ROOT_TAIL(sb, root_bh)->stype) == ST_ROOT) {
  313. sbi->s_hashsize = blocksize / 4 - 56;
  314. sbi->s_root_block += num_bm;
  315. key = 1;
  316. goto got_root;
  317. }
  318. affs_brelse(root_bh);
  319. root_bh = NULL;
  320. }
  321. }
  322. if (!silent)
  323. printk(KERN_ERR "AFFS: No valid root block on device %s\n",
  324. sb->s_id);
  325. goto out_error;
  326. /* N.B. after this point bh must be released */
  327. got_root:
  328. root_block = sbi->s_root_block;
  329. /* Find out which kind of FS we have */
  330. boot_bh = sb_bread(sb, 0);
  331. if (!boot_bh) {
  332. printk(KERN_ERR "AFFS: Cannot read boot block\n");
  333. goto out_error;
  334. }
  335. memcpy(sig, boot_bh->b_data, 4);
  336. brelse(boot_bh);
  337. chksum = be32_to_cpu(*(__be32 *)sig);
  338. /* Dircache filesystems are compatible with non-dircache ones
  339. * when reading. As long as they aren't supported, writing is
  340. * not recommended.
  341. */
  342. if ((chksum == FS_DCFFS || chksum == MUFS_DCFFS || chksum == FS_DCOFS
  343. || chksum == MUFS_DCOFS) && !(sb->s_flags & MS_RDONLY)) {
  344. printk(KERN_NOTICE "AFFS: Dircache FS - mounting %s read only\n",
  345. sb->s_id);
  346. sb->s_flags |= MS_RDONLY;
  347. }
  348. switch (chksum) {
  349. case MUFS_FS:
  350. case MUFS_INTLFFS:
  351. case MUFS_DCFFS:
  352. sbi->s_flags |= SF_MUFS;
  353. /* fall thru */
  354. case FS_INTLFFS:
  355. case FS_DCFFS:
  356. sbi->s_flags |= SF_INTL;
  357. break;
  358. case MUFS_FFS:
  359. sbi->s_flags |= SF_MUFS;
  360. break;
  361. case FS_FFS:
  362. break;
  363. case MUFS_OFS:
  364. sbi->s_flags |= SF_MUFS;
  365. /* fall thru */
  366. case FS_OFS:
  367. sbi->s_flags |= SF_OFS;
  368. sb->s_flags |= MS_NOEXEC;
  369. break;
  370. case MUFS_DCOFS:
  371. case MUFS_INTLOFS:
  372. sbi->s_flags |= SF_MUFS;
  373. case FS_DCOFS:
  374. case FS_INTLOFS:
  375. sbi->s_flags |= SF_INTL | SF_OFS;
  376. sb->s_flags |= MS_NOEXEC;
  377. break;
  378. default:
  379. printk(KERN_ERR "AFFS: Unknown filesystem on device %s: %08X\n",
  380. sb->s_id, chksum);
  381. goto out_error;
  382. }
  383. if (mount_flags & SF_VERBOSE) {
  384. u8 len = AFFS_ROOT_TAIL(sb, root_bh)->disk_name[0];
  385. printk(KERN_NOTICE "AFFS: Mounting volume \"%.*s\": Type=%.3s\\%c, Blocksize=%d\n",
  386. len > 31 ? 31 : len,
  387. AFFS_ROOT_TAIL(sb, root_bh)->disk_name + 1,
  388. sig, sig[3] + '0', blocksize);
  389. }
  390. sb->s_flags |= MS_NODEV | MS_NOSUID;
  391. sbi->s_data_blksize = sb->s_blocksize;
  392. if (sbi->s_flags & SF_OFS)
  393. sbi->s_data_blksize -= 24;
  394. /* Keep super block in cache */
  395. sbi->s_root_bh = root_bh;
  396. /* N.B. after this point s_root_bh must be released */
  397. tmp_flags = sb->s_flags;
  398. if (affs_init_bitmap(sb, &tmp_flags))
  399. goto out_error;
  400. sb->s_flags = tmp_flags;
  401. /* set up enough so that it can read an inode */
  402. root_inode = iget(sb, root_block);
  403. sb->s_root = d_alloc_root(root_inode);
  404. if (!sb->s_root) {
  405. printk(KERN_ERR "AFFS: Get root inode failed\n");
  406. goto out_error;
  407. }
  408. sb->s_root->d_op = &affs_dentry_operations;
  409. pr_debug("AFFS: s_flags=%lX\n",sb->s_flags);
  410. return 0;
  411. /*
  412. * Begin the cascaded cleanup ...
  413. */
  414. out_error:
  415. if (root_inode)
  416. iput(root_inode);
  417. kfree(sbi->s_bitmap);
  418. affs_brelse(root_bh);
  419. kfree(sbi->s_prefix);
  420. kfree(sbi);
  421. sb->s_fs_info = NULL;
  422. return -EINVAL;
  423. }
  424. static int
  425. affs_remount(struct super_block *sb, int *flags, char *data)
  426. {
  427. struct affs_sb_info *sbi = AFFS_SB(sb);
  428. int blocksize;
  429. uid_t uid;
  430. gid_t gid;
  431. int mode;
  432. int reserved;
  433. int root_block;
  434. unsigned long mount_flags;
  435. int res = 0;
  436. pr_debug("AFFS: remount(flags=0x%x,opts=\"%s\")\n",*flags,data);
  437. *flags |= MS_NODIRATIME;
  438. if (!parse_options(data,&uid,&gid,&mode,&reserved,&root_block,
  439. &blocksize,&sbi->s_prefix,sbi->s_volume,&mount_flags))
  440. return -EINVAL;
  441. sbi->s_flags = mount_flags;
  442. sbi->s_mode = mode;
  443. sbi->s_uid = uid;
  444. sbi->s_gid = gid;
  445. if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
  446. return 0;
  447. if (*flags & MS_RDONLY) {
  448. sb->s_dirt = 1;
  449. while (sb->s_dirt)
  450. affs_write_super(sb);
  451. affs_free_bitmap(sb);
  452. } else
  453. res = affs_init_bitmap(sb, flags);
  454. return res;
  455. }
  456. static int
  457. affs_statfs(struct dentry *dentry, struct kstatfs *buf)
  458. {
  459. struct super_block *sb = dentry->d_sb;
  460. int free;
  461. pr_debug("AFFS: statfs() partsize=%d, reserved=%d\n",AFFS_SB(sb)->s_partition_size,
  462. AFFS_SB(sb)->s_reserved);
  463. free = affs_count_free_blocks(sb);
  464. buf->f_type = AFFS_SUPER_MAGIC;
  465. buf->f_bsize = sb->s_blocksize;
  466. buf->f_blocks = AFFS_SB(sb)->s_partition_size - AFFS_SB(sb)->s_reserved;
  467. buf->f_bfree = free;
  468. buf->f_bavail = free;
  469. return 0;
  470. }
  471. static int affs_get_sb(struct file_system_type *fs_type,
  472. int flags, const char *dev_name, void *data, struct vfsmount *mnt)
  473. {
  474. return get_sb_bdev(fs_type, flags, dev_name, data, affs_fill_super,
  475. mnt);
  476. }
  477. static struct file_system_type affs_fs_type = {
  478. .owner = THIS_MODULE,
  479. .name = "affs",
  480. .get_sb = affs_get_sb,
  481. .kill_sb = kill_block_super,
  482. .fs_flags = FS_REQUIRES_DEV,
  483. };
  484. static int __init init_affs_fs(void)
  485. {
  486. int err = init_inodecache();
  487. if (err)
  488. goto out1;
  489. err = register_filesystem(&affs_fs_type);
  490. if (err)
  491. goto out;
  492. return 0;
  493. out:
  494. destroy_inodecache();
  495. out1:
  496. return err;
  497. }
  498. static void __exit exit_affs_fs(void)
  499. {
  500. unregister_filesystem(&affs_fs_type);
  501. destroy_inodecache();
  502. }
  503. MODULE_DESCRIPTION("Amiga filesystem support for Linux");
  504. MODULE_LICENSE("GPL");
  505. module_init(init_affs_fs)
  506. module_exit(exit_affs_fs)