2 * Optimized MPEG FS - inode and super operations.
4 * Released under GPL v2.
6 #include <linux/module.h>
7 #include <linux/sched.h>
8 #include <linux/slab.h>
10 #include <linux/vfs.h>
11 #include <linux/parser.h>
12 #include <linux/buffer_head.h>
13 #include <linux/vmalloc.h>
14 #include <linux/writeback.h>
15 #include <linux/crc-itu-t.h>
19 MODULE_DESCRIPTION("OMFS (ReplayTV/Karma) Filesystem for Linux");
20 MODULE_LICENSE("GPL");
22 struct inode *omfs_new_inode(struct inode *dir, int mode)
28 struct omfs_sb_info *sbi = OMFS_SB(dir->i_sb);
30 inode = new_inode(dir->i_sb);
32 return ERR_PTR(-ENOMEM);
34 err = omfs_allocate_range(dir->i_sb, sbi->s_mirrors, sbi->s_mirrors,
39 inode->i_ino = new_block;
40 inode_init_owner(inode, NULL, mode);
41 inode->i_mapping->a_ops = &omfs_aops;
43 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
44 switch (mode & S_IFMT) {
46 inode->i_op = &omfs_dir_inops;
47 inode->i_fop = &omfs_dir_operations;
48 inode->i_size = sbi->s_sys_blocksize;
52 inode->i_op = &omfs_file_inops;
53 inode->i_fop = &omfs_file_operations;
58 insert_inode_hash(inode);
59 mark_inode_dirty(inode);
62 make_bad_inode(inode);
68 * Update the header checksums for a dirty inode based on its contents.
69 * Caller is expected to hold the buffer head underlying oi and mark it
72 static void omfs_update_checksums(struct omfs_inode *oi)
74 int xor, i, ofs = 0, count;
76 unsigned char *ptr = (unsigned char *) oi;
78 count = be32_to_cpu(oi->i_head.h_body_size);
79 ofs = sizeof(struct omfs_header);
81 crc = crc_itu_t(crc, ptr + ofs, count);
82 oi->i_head.h_crc = cpu_to_be16(crc);
85 for (i = 1; i < OMFS_XOR_COUNT; i++)
88 oi->i_head.h_check_xor = xor;
91 static int __omfs_write_inode(struct inode *inode, int wait)
93 struct omfs_inode *oi;
94 struct omfs_sb_info *sbi = OMFS_SB(inode->i_sb);
95 struct buffer_head *bh, *bh2;
102 /* get current inode since we may have written sibling ptrs etc. */
103 block = clus_to_blk(sbi, inode->i_ino);
104 bh = sb_bread(inode->i_sb, block);
108 oi = (struct omfs_inode *) bh->b_data;
110 oi->i_head.h_self = cpu_to_be64(inode->i_ino);
111 if (S_ISDIR(inode->i_mode))
112 oi->i_type = OMFS_DIR;
113 else if (S_ISREG(inode->i_mode))
114 oi->i_type = OMFS_FILE;
116 printk(KERN_WARNING "omfs: unknown file type: %d\n",
121 oi->i_head.h_body_size = cpu_to_be32(sbi->s_sys_blocksize -
122 sizeof(struct omfs_header));
123 oi->i_head.h_version = 1;
124 oi->i_head.h_type = OMFS_INODE_NORMAL;
125 oi->i_head.h_magic = OMFS_IMAGIC;
126 oi->i_size = cpu_to_be64(inode->i_size);
128 ctime = inode->i_ctime.tv_sec * 1000LL +
129 ((inode->i_ctime.tv_nsec + 999)/1000);
130 oi->i_ctime = cpu_to_be64(ctime);
132 omfs_update_checksums(oi);
134 mark_buffer_dirty(bh);
136 sync_dirty_buffer(bh);
137 if (buffer_req(bh) && !buffer_uptodate(bh))
141 /* if mirroring writes, copy to next fsblock */
142 for (i = 1; i < sbi->s_mirrors; i++) {
143 bh2 = sb_bread(inode->i_sb, block + i *
144 (sbi->s_blocksize / sbi->s_sys_blocksize));
148 memcpy(bh2->b_data, bh->b_data, bh->b_size);
149 mark_buffer_dirty(bh2);
151 sync_dirty_buffer(bh2);
152 if (buffer_req(bh2) && !buffer_uptodate(bh2))
157 ret = (sync_failed) ? -EIO : 0;
164 static int omfs_write_inode(struct inode *inode, struct writeback_control *wbc)
166 return __omfs_write_inode(inode, wbc->sync_mode == WB_SYNC_ALL);
169 int omfs_sync_inode(struct inode *inode)
171 return __omfs_write_inode(inode, 1);
175 * called when an entry is deleted, need to clear the bits in the
178 static void omfs_delete_inode(struct inode *inode)
180 truncate_inode_pages(&inode->i_data, 0);
182 if (S_ISREG(inode->i_mode)) {
184 omfs_shrink_inode(inode);
187 omfs_clear_range(inode->i_sb, inode->i_ino, 2);
191 struct inode *omfs_iget(struct super_block *sb, ino_t ino)
193 struct omfs_sb_info *sbi = OMFS_SB(sb);
194 struct omfs_inode *oi;
195 struct buffer_head *bh;
201 inode = iget_locked(sb, ino);
203 return ERR_PTR(-ENOMEM);
204 if (!(inode->i_state & I_NEW))
207 block = clus_to_blk(sbi, ino);
208 bh = sb_bread(inode->i_sb, block);
212 oi = (struct omfs_inode *)bh->b_data;
215 if (ino != be64_to_cpu(oi->i_head.h_self))
218 inode->i_uid = sbi->s_uid;
219 inode->i_gid = sbi->s_gid;
221 ctime = be64_to_cpu(oi->i_ctime);
222 nsecs = do_div(ctime, 1000) * 1000L;
224 inode->i_atime.tv_sec = ctime;
225 inode->i_mtime.tv_sec = ctime;
226 inode->i_ctime.tv_sec = ctime;
227 inode->i_atime.tv_nsec = nsecs;
228 inode->i_mtime.tv_nsec = nsecs;
229 inode->i_ctime.tv_nsec = nsecs;
231 inode->i_mapping->a_ops = &omfs_aops;
233 switch (oi->i_type) {
235 inode->i_mode = S_IFDIR | (S_IRWXUGO & ~sbi->s_dmask);
236 inode->i_op = &omfs_dir_inops;
237 inode->i_fop = &omfs_dir_operations;
238 inode->i_size = sbi->s_sys_blocksize;
242 inode->i_mode = S_IFREG | (S_IRWXUGO & ~sbi->s_fmask);
243 inode->i_fop = &omfs_file_operations;
244 inode->i_size = be64_to_cpu(oi->i_size);
248 unlock_new_inode(inode);
254 return ERR_PTR(-EIO);
257 static void omfs_put_super(struct super_block *sb)
259 struct omfs_sb_info *sbi = OMFS_SB(sb);
262 sb->s_fs_info = NULL;
265 static int omfs_statfs(struct dentry *dentry, struct kstatfs *buf)
267 struct super_block *s = dentry->d_sb;
268 struct omfs_sb_info *sbi = OMFS_SB(s);
269 u64 id = huge_encode_dev(s->s_bdev->bd_dev);
271 buf->f_type = OMFS_MAGIC;
272 buf->f_bsize = sbi->s_blocksize;
273 buf->f_blocks = sbi->s_num_blocks;
274 buf->f_files = sbi->s_num_blocks;
275 buf->f_namelen = OMFS_NAMELEN;
276 buf->f_fsid.val[0] = (u32)id;
277 buf->f_fsid.val[1] = (u32)(id >> 32);
279 buf->f_bfree = buf->f_bavail = buf->f_ffree =
285 static const struct super_operations omfs_sops = {
286 .write_inode = omfs_write_inode,
287 .delete_inode = omfs_delete_inode,
288 .put_super = omfs_put_super,
289 .statfs = omfs_statfs,
290 .show_options = generic_show_options,
294 * For Rio Karma, there is an on-disk free bitmap whose location is
295 * stored in the root block. For ReplayTV, there is no such free bitmap
296 * so we have to walk the tree. Both inodes and file data are allocated
297 * from the same map. This array can be big (300k) so we allocate
298 * in units of the blocksize.
300 static int omfs_get_imap(struct super_block *sb)
305 struct omfs_sb_info *sbi = OMFS_SB(sb);
306 struct buffer_head *bh;
310 bitmap_size = DIV_ROUND_UP(sbi->s_num_blocks, 8);
311 array_size = DIV_ROUND_UP(bitmap_size, sb->s_blocksize);
313 if (sbi->s_bitmap_ino == ~0ULL)
316 sbi->s_imap_size = array_size;
317 sbi->s_imap = kzalloc(array_size * sizeof(unsigned long *), GFP_KERNEL);
321 block = clus_to_blk(sbi, sbi->s_bitmap_ino);
323 for (count = bitmap_size; count > 0; count -= sb->s_blocksize) {
324 bh = sb_bread(sb, block++);
327 *ptr = kmalloc(sb->s_blocksize, GFP_KERNEL);
332 memcpy(*ptr, bh->b_data, sb->s_blocksize);
333 if (count < sb->s_blocksize)
334 memset((void *)*ptr + count, 0xff,
335 sb->s_blocksize - count);
343 for (count = 0; count < array_size; count++)
344 kfree(sbi->s_imap[count]);
349 sbi->s_imap_size = 0;
354 Opt_uid, Opt_gid, Opt_umask, Opt_dmask, Opt_fmask
357 static const match_table_t tokens = {
360 {Opt_umask, "umask=%o"},
361 {Opt_dmask, "dmask=%o"},
362 {Opt_fmask, "fmask=%o"},
365 static int parse_options(char *options, struct omfs_sb_info *sbi)
368 substring_t args[MAX_OPT_ARGS];
374 while ((p = strsep(&options, ",")) != NULL) {
379 token = match_token(p, tokens, args);
382 if (match_int(&args[0], &option))
387 if (match_int(&args[0], &option))
392 if (match_octal(&args[0], &option))
394 sbi->s_fmask = sbi->s_dmask = option;
397 if (match_octal(&args[0], &option))
399 sbi->s_dmask = option;
402 if (match_octal(&args[0], &option))
404 sbi->s_fmask = option;
413 static int omfs_fill_super(struct super_block *sb, void *data, int silent)
415 struct buffer_head *bh, *bh2;
416 struct omfs_super_block *omfs_sb;
417 struct omfs_root_block *omfs_rb;
418 struct omfs_sb_info *sbi;
423 save_mount_options(sb, (char *) data);
425 sbi = kzalloc(sizeof(struct omfs_sb_info), GFP_KERNEL);
431 sbi->s_uid = current_uid();
432 sbi->s_gid = current_gid();
433 sbi->s_dmask = sbi->s_fmask = current_umask();
435 if (!parse_options((char *) data, sbi))
438 sb->s_maxbytes = 0xffffffff;
440 sb_set_blocksize(sb, 0x200);
442 bh = sb_bread(sb, 0);
446 omfs_sb = (struct omfs_super_block *)bh->b_data;
448 if (omfs_sb->s_magic != cpu_to_be32(OMFS_MAGIC)) {
450 printk(KERN_ERR "omfs: Invalid superblock (%x)\n",
454 sb->s_magic = OMFS_MAGIC;
456 sbi->s_num_blocks = be64_to_cpu(omfs_sb->s_num_blocks);
457 sbi->s_blocksize = be32_to_cpu(omfs_sb->s_blocksize);
458 sbi->s_mirrors = be32_to_cpu(omfs_sb->s_mirrors);
459 sbi->s_root_ino = be64_to_cpu(omfs_sb->s_root_block);
460 sbi->s_sys_blocksize = be32_to_cpu(omfs_sb->s_sys_blocksize);
461 mutex_init(&sbi->s_bitmap_lock);
463 if (sbi->s_sys_blocksize > PAGE_SIZE) {
464 printk(KERN_ERR "omfs: sysblock size (%d) is out of range\n",
465 sbi->s_sys_blocksize);
469 if (sbi->s_blocksize < sbi->s_sys_blocksize ||
470 sbi->s_blocksize > OMFS_MAX_BLOCK_SIZE) {
471 printk(KERN_ERR "omfs: block size (%d) is out of range\n",
477 * Use sys_blocksize as the fs block since it is smaller than a
478 * page while the fs blocksize can be larger.
480 sb_set_blocksize(sb, sbi->s_sys_blocksize);
483 * ...and the difference goes into a shift. sys_blocksize is always
484 * a power of two factor of blocksize.
486 sbi->s_block_shift = get_bitmask_order(sbi->s_blocksize) -
487 get_bitmask_order(sbi->s_sys_blocksize);
489 start = clus_to_blk(sbi, be64_to_cpu(omfs_sb->s_root_block));
490 bh2 = sb_bread(sb, start);
494 omfs_rb = (struct omfs_root_block *)bh2->b_data;
496 sbi->s_bitmap_ino = be64_to_cpu(omfs_rb->r_bitmap);
497 sbi->s_clustersize = be32_to_cpu(omfs_rb->r_clustersize);
499 if (sbi->s_num_blocks != be64_to_cpu(omfs_rb->r_num_blocks)) {
500 printk(KERN_ERR "omfs: block count discrepancy between "
501 "super and root blocks (%llx, %llx)\n",
502 (unsigned long long)sbi->s_num_blocks,
503 (unsigned long long)be64_to_cpu(omfs_rb->r_num_blocks));
507 ret = omfs_get_imap(sb);
511 sb->s_op = &omfs_sops;
513 root = omfs_iget(sb, be64_to_cpu(omfs_rb->r_root_dir));
519 sb->s_root = d_alloc_root(root);
524 printk(KERN_DEBUG "omfs: Mounted volume %s\n", omfs_rb->r_name);
535 static int omfs_get_sb(struct file_system_type *fs_type,
536 int flags, const char *dev_name,
537 void *data, struct vfsmount *m)
539 return get_sb_bdev(fs_type, flags, dev_name, data, omfs_fill_super, m);
542 static struct file_system_type omfs_fs_type = {
543 .owner = THIS_MODULE,
545 .get_sb = omfs_get_sb,
546 .kill_sb = kill_block_super,
547 .fs_flags = FS_REQUIRES_DEV,
550 static int __init init_omfs_fs(void)
552 return register_filesystem(&omfs_fs_type);
555 static void __exit exit_omfs_fs(void)
557 unregister_filesystem(&omfs_fs_type);
560 module_init(init_omfs_fs);
561 module_exit(exit_omfs_fs);