2 * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README
4 * Trivial changes by Alan Cox to add the LFS fixes
7 * Rights granted to Hans Reiser to redistribute under other terms providing
8 * he accepts all liability including but not limited to patent, fitness
9 * for purpose, and direct or indirect claims arising from failure to perform.
14 #include <linux/module.h>
15 #include <linux/slab.h>
16 #include <linux/vmalloc.h>
17 #include <linux/time.h>
18 #include <linux/uaccess.h>
22 #include <linux/init.h>
23 #include <linux/blkdev.h>
24 #include <linux/buffer_head.h>
25 #include <linux/exportfs.h>
26 #include <linux/quotaops.h>
27 #include <linux/vfs.h>
28 #include <linux/mount.h>
29 #include <linux/namei.h>
30 #include <linux/crc32.h>
31 #include <linux/seq_file.h>
33 struct file_system_type reiserfs_fs_type;
35 static const char reiserfs_3_5_magic_string[] = REISERFS_SUPER_MAGIC_STRING;
36 static const char reiserfs_3_6_magic_string[] = REISER2FS_SUPER_MAGIC_STRING;
37 static const char reiserfs_jr_magic_string[] = REISER2FS_JR_SUPER_MAGIC_STRING;
39 int is_reiserfs_3_5(struct reiserfs_super_block *rs)
41 return !strncmp(rs->s_v1.s_magic, reiserfs_3_5_magic_string,
42 strlen(reiserfs_3_5_magic_string));
45 int is_reiserfs_3_6(struct reiserfs_super_block *rs)
47 return !strncmp(rs->s_v1.s_magic, reiserfs_3_6_magic_string,
48 strlen(reiserfs_3_6_magic_string));
51 int is_reiserfs_jr(struct reiserfs_super_block *rs)
53 return !strncmp(rs->s_v1.s_magic, reiserfs_jr_magic_string,
54 strlen(reiserfs_jr_magic_string));
57 static int is_any_reiserfs_magic_string(struct reiserfs_super_block *rs)
59 return (is_reiserfs_3_5(rs) || is_reiserfs_3_6(rs) ||
63 static int reiserfs_remount(struct super_block *s, int *flags, char *data);
64 static int reiserfs_statfs(struct dentry *dentry, struct kstatfs *buf);
66 static int reiserfs_sync_fs(struct super_block *s, int wait)
68 struct reiserfs_transaction_handle th;
71 * Writeback quota in non-journalled quota case - journalled quota has
74 dquot_writeback_dquots(s, -1);
75 reiserfs_write_lock(s);
76 if (!journal_begin(&th, s, 1))
77 if (!journal_end_sync(&th))
78 reiserfs_flush_old_commits(s);
79 reiserfs_write_unlock(s);
83 static void flush_old_commits(struct work_struct *work)
85 struct reiserfs_sb_info *sbi;
86 struct super_block *s;
88 sbi = container_of(work, struct reiserfs_sb_info, old_work.work);
89 s = sbi->s_journal->j_work_sb;
91 spin_lock(&sbi->old_work_lock);
93 spin_unlock(&sbi->old_work_lock);
95 reiserfs_sync_fs(s, 1);
98 void reiserfs_schedule_old_flush(struct super_block *s)
100 struct reiserfs_sb_info *sbi = REISERFS_SB(s);
104 * Avoid scheduling flush when sb is being shut down. It can race
105 * with journal shutdown and free still queued delayed work.
107 if (s->s_flags & MS_RDONLY || !(s->s_flags & MS_ACTIVE))
110 spin_lock(&sbi->old_work_lock);
111 if (!sbi->work_queued) {
112 delay = msecs_to_jiffies(dirty_writeback_interval * 10);
113 queue_delayed_work(system_long_wq, &sbi->old_work, delay);
114 sbi->work_queued = 1;
116 spin_unlock(&sbi->old_work_lock);
119 static void cancel_old_flush(struct super_block *s)
121 struct reiserfs_sb_info *sbi = REISERFS_SB(s);
123 cancel_delayed_work_sync(&REISERFS_SB(s)->old_work);
124 spin_lock(&sbi->old_work_lock);
125 sbi->work_queued = 0;
126 spin_unlock(&sbi->old_work_lock);
129 static int reiserfs_freeze(struct super_block *s)
131 struct reiserfs_transaction_handle th;
135 reiserfs_write_lock(s);
136 if (!(s->s_flags & MS_RDONLY)) {
137 int err = journal_begin(&th, s, 1);
139 reiserfs_block_writes(&th);
141 reiserfs_prepare_for_journal(s, SB_BUFFER_WITH_SB(s),
143 journal_mark_dirty(&th, SB_BUFFER_WITH_SB(s));
144 reiserfs_block_writes(&th);
145 journal_end_sync(&th);
148 reiserfs_write_unlock(s);
152 static int reiserfs_unfreeze(struct super_block *s)
154 reiserfs_allow_writes(s);
158 extern const struct in_core_key MAX_IN_CORE_KEY;
161 * this is used to delete "save link" when there are no items of a
162 * file it points to. It can either happen if unlink is completed but
163 * "save unlink" removal, or if file has both unlink and truncate
164 * pending and as unlink completes first (because key of "save link"
165 * protecting unlink is bigger that a key lf "save link" which
166 * protects truncate), so there left no items to make truncate
169 static int remove_save_link_only(struct super_block *s,
170 struct reiserfs_key *key, int oid_free)
172 struct reiserfs_transaction_handle th;
175 /* we are going to do one balancing */
176 err = journal_begin(&th, s, JOURNAL_PER_BALANCE_CNT);
180 reiserfs_delete_solid_item(&th, NULL, key);
182 /* removals are protected by direct items */
183 reiserfs_release_objectid(&th, le32_to_cpu(key->k_objectid));
185 return journal_end(&th);
189 static int reiserfs_quota_on_mount(struct super_block *, int);
192 /* look for uncompleted unlinks and truncates and complete them */
193 static int finish_unfinished(struct super_block *s)
195 INITIALIZE_PATH(path);
196 struct cpu_key max_cpu_key, obj_key;
197 struct reiserfs_key save_link_key, last_inode_key;
199 struct item_head *ih;
200 struct buffer_head *bh;
209 int quota_enabled[REISERFS_MAXQUOTAS];
212 /* compose key to look for "save" links */
213 max_cpu_key.version = KEY_FORMAT_3_5;
214 max_cpu_key.on_disk_key.k_dir_id = ~0U;
215 max_cpu_key.on_disk_key.k_objectid = ~0U;
216 set_cpu_key_k_offset(&max_cpu_key, ~0U);
217 max_cpu_key.key_length = 3;
219 memset(&last_inode_key, 0, sizeof(last_inode_key));
222 /* Needed for iput() to work correctly and not trash data */
223 if (s->s_flags & MS_ACTIVE) {
227 s->s_flags |= MS_ACTIVE;
229 /* Turn on quotas so that they are updated correctly */
230 for (i = 0; i < REISERFS_MAXQUOTAS; i++) {
231 quota_enabled[i] = 1;
232 if (REISERFS_SB(s)->s_qf_names[i]) {
235 if (sb_has_quota_active(s, i)) {
236 quota_enabled[i] = 0;
239 ret = reiserfs_quota_on_mount(s, i);
241 reiserfs_warning(s, "reiserfs-2500",
242 "cannot turn on journaled "
243 "quota: error %d", ret);
249 REISERFS_SB(s)->s_is_unlinked_ok = 1;
252 retval = search_item(s, &max_cpu_key, &path);
253 if (retval != ITEM_NOT_FOUND) {
254 reiserfs_error(s, "vs-2140",
255 "search_by_key returned %d", retval);
259 bh = get_last_bh(&path);
260 item_pos = get_item_pos(&path);
261 if (item_pos != B_NR_ITEMS(bh)) {
262 reiserfs_warning(s, "vs-2060",
263 "wrong position found");
267 ih = item_head(bh, item_pos);
269 if (le32_to_cpu(ih->ih_key.k_dir_id) != MAX_KEY_OBJECTID)
270 /* there are no "save" links anymore */
273 save_link_key = ih->ih_key;
274 if (is_indirect_le_ih(ih))
279 /* reiserfs_iget needs k_dirid and k_objectid only */
280 item = ih_item_body(bh, ih);
281 obj_key.on_disk_key.k_dir_id = le32_to_cpu(*(__le32 *) item);
282 obj_key.on_disk_key.k_objectid =
283 le32_to_cpu(ih->ih_key.k_objectid);
284 obj_key.on_disk_key.k_offset = 0;
285 obj_key.on_disk_key.k_type = 0;
289 inode = reiserfs_iget(s, &obj_key);
292 * the unlink almost completed, it just did not
293 * manage to remove "save" link and release objectid
295 reiserfs_warning(s, "vs-2180", "iget failed for %K",
297 retval = remove_save_link_only(s, &save_link_key, 1);
301 if (!truncate && inode->i_nlink) {
302 /* file is not unlinked */
303 reiserfs_warning(s, "vs-2185",
304 "file %K is not unlinked",
306 retval = remove_save_link_only(s, &save_link_key, 0);
309 depth = reiserfs_write_unlock_nested(inode->i_sb);
310 dquot_initialize(inode);
311 reiserfs_write_lock_nested(inode->i_sb, depth);
313 if (truncate && S_ISDIR(inode->i_mode)) {
315 * We got a truncate request for a dir which
316 * is impossible. The only imaginable way is to
317 * execute unfinished truncate request then boot
318 * into old kernel, remove the file and create dir
321 reiserfs_warning(s, "green-2101",
322 "impossible truncate on a "
323 "directory %k. Please report",
325 retval = remove_save_link_only(s, &save_link_key, 0);
332 REISERFS_I(inode)->i_flags |=
333 i_link_saved_truncate_mask;
335 * not completed truncate found. New size was
336 * committed together with "save" link
338 reiserfs_info(s, "Truncating %k to %lld ..",
339 INODE_PKEY(inode), inode->i_size);
341 /* don't update modification time */
342 reiserfs_truncate_file(inode, 0);
344 retval = remove_save_link(inode, truncate);
346 REISERFS_I(inode)->i_flags |= i_link_saved_unlink_mask;
347 /* not completed unlink (rmdir) found */
348 reiserfs_info(s, "Removing %k..", INODE_PKEY(inode));
349 if (memcmp(&last_inode_key, INODE_PKEY(inode),
350 sizeof(last_inode_key))){
351 last_inode_key = *INODE_PKEY(inode);
352 /* removal gets completed in iput */
355 reiserfs_warning(s, "super-2189", "Dead loop "
356 "in finish_unfinished "
357 "detected, just remove "
359 retval = remove_save_link_only(s,
368 REISERFS_SB(s)->s_is_unlinked_ok = 0;
371 /* Turn quotas off */
372 reiserfs_write_unlock(s);
373 for (i = 0; i < REISERFS_MAXQUOTAS; i++) {
374 if (sb_dqopt(s)->files[i] && quota_enabled[i])
375 dquot_quota_off(s, i);
377 reiserfs_write_lock(s);
379 /* Restore the flag back */
380 s->s_flags &= ~MS_ACTIVE;
384 reiserfs_info(s, "There were %d uncompleted unlinks/truncates. "
385 "Completed\n", done);
390 * to protect file being unlinked from getting lost we "safe" link files
391 * being unlinked. This link will be deleted in the same transaction with last
392 * item of file. mounting the filesystem we scan all these links and remove
393 * files which almost got lost
395 void add_save_link(struct reiserfs_transaction_handle *th,
396 struct inode *inode, int truncate)
398 INITIALIZE_PATH(path);
404 BUG_ON(!th->t_trans_id);
406 /* file can only get one "save link" of each kind */
408 (REISERFS_I(inode)->i_flags & i_link_saved_truncate_mask),
409 "saved link already exists for truncated inode %lx",
412 (REISERFS_I(inode)->i_flags & i_link_saved_unlink_mask),
413 "saved link already exists for unlinked inode %lx",
416 /* setup key of "save" link */
417 key.version = KEY_FORMAT_3_5;
418 key.on_disk_key.k_dir_id = MAX_KEY_OBJECTID;
419 key.on_disk_key.k_objectid = inode->i_ino;
421 /* unlink, rmdir, rename */
422 set_cpu_key_k_offset(&key, 1 + inode->i_sb->s_blocksize);
423 set_cpu_key_k_type(&key, TYPE_DIRECT);
425 /* item head of "safe" link */
426 make_le_item_head(&ih, &key, key.version,
427 1 + inode->i_sb->s_blocksize, TYPE_DIRECT,
428 4 /*length */ , 0xffff /*free space */ );
431 if (S_ISDIR(inode->i_mode))
432 reiserfs_warning(inode->i_sb, "green-2102",
433 "Adding a truncate savelink for "
434 "a directory %k! Please report",
436 set_cpu_key_k_offset(&key, 1);
437 set_cpu_key_k_type(&key, TYPE_INDIRECT);
439 /* item head of "safe" link */
440 make_le_item_head(&ih, &key, key.version, 1, TYPE_INDIRECT,
441 4 /*length */ , 0 /*free space */ );
445 /* look for its place in the tree */
446 retval = search_item(inode->i_sb, &key, &path);
447 if (retval != ITEM_NOT_FOUND) {
448 if (retval != -ENOSPC)
449 reiserfs_error(inode->i_sb, "vs-2100",
450 "search_by_key (%K) returned %d", &key,
456 /* body of "save" link */
457 link = INODE_PKEY(inode)->k_dir_id;
459 /* put "save" link into tree, don't charge quota to anyone */
461 reiserfs_insert_item(th, &path, &key, &ih, NULL, (char *)&link);
463 if (retval != -ENOSPC)
464 reiserfs_error(inode->i_sb, "vs-2120",
465 "insert_item returned %d", retval);
468 REISERFS_I(inode)->i_flags |=
469 i_link_saved_truncate_mask;
471 REISERFS_I(inode)->i_flags |= i_link_saved_unlink_mask;
475 /* this opens transaction unlike add_save_link */
476 int remove_save_link(struct inode *inode, int truncate)
478 struct reiserfs_transaction_handle th;
479 struct reiserfs_key key;
482 /* we are going to do one balancing only */
483 err = journal_begin(&th, inode->i_sb, JOURNAL_PER_BALANCE_CNT);
487 /* setup key of "save" link */
488 key.k_dir_id = cpu_to_le32(MAX_KEY_OBJECTID);
489 key.k_objectid = INODE_PKEY(inode)->k_objectid;
491 /* unlink, rmdir, rename */
492 set_le_key_k_offset(KEY_FORMAT_3_5, &key,
493 1 + inode->i_sb->s_blocksize);
494 set_le_key_k_type(KEY_FORMAT_3_5, &key, TYPE_DIRECT);
497 set_le_key_k_offset(KEY_FORMAT_3_5, &key, 1);
498 set_le_key_k_type(KEY_FORMAT_3_5, &key, TYPE_INDIRECT);
502 (REISERFS_I(inode)->i_flags & i_link_saved_truncate_mask)) ||
504 (REISERFS_I(inode)->i_flags & i_link_saved_unlink_mask)))
505 /* don't take quota bytes from anywhere */
506 reiserfs_delete_solid_item(&th, NULL, &key);
508 reiserfs_release_objectid(&th, inode->i_ino);
509 REISERFS_I(inode)->i_flags &= ~i_link_saved_unlink_mask;
511 REISERFS_I(inode)->i_flags &= ~i_link_saved_truncate_mask;
513 return journal_end(&th);
516 static void reiserfs_kill_sb(struct super_block *s)
518 if (REISERFS_SB(s)) {
519 reiserfs_proc_info_done(s);
521 * Force any pending inode evictions to occur now. Any
522 * inodes to be removed that have extended attributes
523 * associated with them need to clean them up before
524 * we can release the extended attribute root dentries.
525 * shrink_dcache_for_umount will BUG if we don't release
526 * those before it's called so ->put_super is too late.
530 dput(REISERFS_SB(s)->xattr_root);
531 REISERFS_SB(s)->xattr_root = NULL;
532 dput(REISERFS_SB(s)->priv_root);
533 REISERFS_SB(s)->priv_root = NULL;
539 static void reiserfs_put_super(struct super_block *s)
541 struct reiserfs_transaction_handle th;
544 dquot_disable(s, -1, DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED);
546 reiserfs_write_lock(s);
549 * change file system state to current state if it was mounted
550 * with read-write permissions
552 if (!(s->s_flags & MS_RDONLY)) {
553 if (!journal_begin(&th, s, 10)) {
554 reiserfs_prepare_for_journal(s, SB_BUFFER_WITH_SB(s),
556 set_sb_umount_state(SB_DISK_SUPER_BLOCK(s),
557 REISERFS_SB(s)->s_mount_state);
558 journal_mark_dirty(&th, SB_BUFFER_WITH_SB(s));
563 * note, journal_release checks for readonly mount, and can
564 * decide not to do a journal_end
566 journal_release(&th, s);
568 reiserfs_free_bitmap_cache(s);
570 brelse(SB_BUFFER_WITH_SB(s));
574 if (REISERFS_SB(s)->reserved_blocks != 0) {
575 reiserfs_warning(s, "green-2005", "reserved blocks left %d",
576 REISERFS_SB(s)->reserved_blocks);
579 reiserfs_write_unlock(s);
580 mutex_destroy(&REISERFS_SB(s)->lock);
581 destroy_workqueue(REISERFS_SB(s)->commit_wq);
586 static struct kmem_cache *reiserfs_inode_cachep;
588 static struct inode *reiserfs_alloc_inode(struct super_block *sb)
590 struct reiserfs_inode_info *ei;
591 ei = kmem_cache_alloc(reiserfs_inode_cachep, GFP_KERNEL);
594 atomic_set(&ei->openers, 0);
595 mutex_init(&ei->tailpack);
597 memset(&ei->i_dquot, 0, sizeof(ei->i_dquot));
600 return &ei->vfs_inode;
603 static void reiserfs_i_callback(struct rcu_head *head)
605 struct inode *inode = container_of(head, struct inode, i_rcu);
606 kmem_cache_free(reiserfs_inode_cachep, REISERFS_I(inode));
609 static void reiserfs_destroy_inode(struct inode *inode)
611 call_rcu(&inode->i_rcu, reiserfs_i_callback);
614 static void init_once(void *foo)
616 struct reiserfs_inode_info *ei = (struct reiserfs_inode_info *)foo;
618 INIT_LIST_HEAD(&ei->i_prealloc_list);
619 inode_init_once(&ei->vfs_inode);
622 static int __init init_inodecache(void)
624 reiserfs_inode_cachep = kmem_cache_create("reiser_inode_cache",
626 reiserfs_inode_info),
627 0, (SLAB_RECLAIM_ACCOUNT|
630 if (reiserfs_inode_cachep == NULL)
635 static void destroy_inodecache(void)
638 * Make sure all delayed rcu free inodes are flushed before we
642 kmem_cache_destroy(reiserfs_inode_cachep);
645 /* we don't mark inodes dirty, we just log them */
646 static void reiserfs_dirty_inode(struct inode *inode, int flags)
648 struct reiserfs_transaction_handle th;
652 if (inode->i_sb->s_flags & MS_RDONLY) {
653 reiserfs_warning(inode->i_sb, "clm-6006",
654 "writing inode %lu on readonly FS",
658 reiserfs_write_lock(inode->i_sb);
661 * this is really only used for atime updates, so they don't have
662 * to be included in O_SYNC or fsync
664 err = journal_begin(&th, inode->i_sb, 1);
668 reiserfs_update_sd(&th, inode);
672 reiserfs_write_unlock(inode->i_sb);
675 static int reiserfs_show_options(struct seq_file *seq, struct dentry *root)
677 struct super_block *s = root->d_sb;
678 struct reiserfs_journal *journal = SB_JOURNAL(s);
679 long opts = REISERFS_SB(s)->s_mount_opt;
681 if (opts & (1 << REISERFS_LARGETAIL))
682 seq_puts(seq, ",tails=on");
683 else if (!(opts & (1 << REISERFS_SMALLTAIL)))
684 seq_puts(seq, ",notail");
685 /* tails=small is default so we don't show it */
687 if (!(opts & (1 << REISERFS_BARRIER_FLUSH)))
688 seq_puts(seq, ",barrier=none");
689 /* barrier=flush is default so we don't show it */
691 if (opts & (1 << REISERFS_ERROR_CONTINUE))
692 seq_puts(seq, ",errors=continue");
693 else if (opts & (1 << REISERFS_ERROR_PANIC))
694 seq_puts(seq, ",errors=panic");
695 /* errors=ro is default so we don't show it */
697 if (opts & (1 << REISERFS_DATA_LOG))
698 seq_puts(seq, ",data=journal");
699 else if (opts & (1 << REISERFS_DATA_WRITEBACK))
700 seq_puts(seq, ",data=writeback");
701 /* data=ordered is default so we don't show it */
703 if (opts & (1 << REISERFS_ATTRS))
704 seq_puts(seq, ",attrs");
706 if (opts & (1 << REISERFS_XATTRS_USER))
707 seq_puts(seq, ",user_xattr");
709 if (opts & (1 << REISERFS_EXPOSE_PRIVROOT))
710 seq_puts(seq, ",expose_privroot");
712 if (opts & (1 << REISERFS_POSIXACL))
713 seq_puts(seq, ",acl");
715 if (REISERFS_SB(s)->s_jdev)
716 seq_printf(seq, ",jdev=%s", REISERFS_SB(s)->s_jdev);
718 if (journal->j_max_commit_age != journal->j_default_max_commit_age)
719 seq_printf(seq, ",commit=%d", journal->j_max_commit_age);
722 if (REISERFS_SB(s)->s_qf_names[USRQUOTA])
723 seq_printf(seq, ",usrjquota=%s", REISERFS_SB(s)->s_qf_names[USRQUOTA]);
724 else if (opts & (1 << REISERFS_USRQUOTA))
725 seq_puts(seq, ",usrquota");
726 if (REISERFS_SB(s)->s_qf_names[GRPQUOTA])
727 seq_printf(seq, ",grpjquota=%s", REISERFS_SB(s)->s_qf_names[GRPQUOTA]);
728 else if (opts & (1 << REISERFS_GRPQUOTA))
729 seq_puts(seq, ",grpquota");
730 if (REISERFS_SB(s)->s_jquota_fmt) {
731 if (REISERFS_SB(s)->s_jquota_fmt == QFMT_VFS_OLD)
732 seq_puts(seq, ",jqfmt=vfsold");
733 else if (REISERFS_SB(s)->s_jquota_fmt == QFMT_VFS_V0)
734 seq_puts(seq, ",jqfmt=vfsv0");
738 /* Block allocator options */
739 if (opts & (1 << REISERFS_NO_BORDER))
740 seq_puts(seq, ",block-allocator=noborder");
741 if (opts & (1 << REISERFS_NO_UNHASHED_RELOCATION))
742 seq_puts(seq, ",block-allocator=no_unhashed_relocation");
743 if (opts & (1 << REISERFS_HASHED_RELOCATION))
744 seq_puts(seq, ",block-allocator=hashed_relocation");
745 if (opts & (1 << REISERFS_TEST4))
746 seq_puts(seq, ",block-allocator=test4");
747 show_alloc_options(seq, s);
752 static ssize_t reiserfs_quota_write(struct super_block *, int, const char *,
754 static ssize_t reiserfs_quota_read(struct super_block *, int, char *, size_t,
757 static struct dquot **reiserfs_get_dquots(struct inode *inode)
759 return REISERFS_I(inode)->i_dquot;
763 static const struct super_operations reiserfs_sops = {
764 .alloc_inode = reiserfs_alloc_inode,
765 .destroy_inode = reiserfs_destroy_inode,
766 .write_inode = reiserfs_write_inode,
767 .dirty_inode = reiserfs_dirty_inode,
768 .evict_inode = reiserfs_evict_inode,
769 .put_super = reiserfs_put_super,
770 .sync_fs = reiserfs_sync_fs,
771 .freeze_fs = reiserfs_freeze,
772 .unfreeze_fs = reiserfs_unfreeze,
773 .statfs = reiserfs_statfs,
774 .remount_fs = reiserfs_remount,
775 .show_options = reiserfs_show_options,
777 .quota_read = reiserfs_quota_read,
778 .quota_write = reiserfs_quota_write,
779 .get_dquots = reiserfs_get_dquots,
784 #define QTYPE2NAME(t) ((t)==USRQUOTA?"user":"group")
786 static int reiserfs_write_dquot(struct dquot *);
787 static int reiserfs_acquire_dquot(struct dquot *);
788 static int reiserfs_release_dquot(struct dquot *);
789 static int reiserfs_mark_dquot_dirty(struct dquot *);
790 static int reiserfs_write_info(struct super_block *, int);
791 static int reiserfs_quota_on(struct super_block *, int, int, struct path *);
793 static const struct dquot_operations reiserfs_quota_operations = {
794 .write_dquot = reiserfs_write_dquot,
795 .acquire_dquot = reiserfs_acquire_dquot,
796 .release_dquot = reiserfs_release_dquot,
797 .mark_dirty = reiserfs_mark_dquot_dirty,
798 .write_info = reiserfs_write_info,
799 .alloc_dquot = dquot_alloc,
800 .destroy_dquot = dquot_destroy,
803 static const struct quotactl_ops reiserfs_qctl_operations = {
804 .quota_on = reiserfs_quota_on,
805 .quota_off = dquot_quota_off,
806 .quota_sync = dquot_quota_sync,
807 .get_state = dquot_get_state,
808 .set_info = dquot_set_dqinfo,
809 .get_dqblk = dquot_get_dqblk,
810 .set_dqblk = dquot_set_dqblk,
814 static const struct export_operations reiserfs_export_ops = {
815 .encode_fh = reiserfs_encode_fh,
816 .fh_to_dentry = reiserfs_fh_to_dentry,
817 .fh_to_parent = reiserfs_fh_to_parent,
818 .get_parent = reiserfs_get_parent,
822 * this struct is used in reiserfs_getopt () for containing the value for
823 * those mount options that have values rather than being toggles.
828 * bitmask which is to set on mount_options bitmask
829 * when this value is found, 0 is no bits are to be changed.
833 * bitmask which is to clear on mount_options bitmask
834 * when this value is found, 0 is no bits are to be changed.
835 * This is applied BEFORE setmask
840 /* Set this bit in arg_required to allow empty arguments */
841 #define REISERFS_OPT_ALLOWEMPTY 31
844 * this struct is used in reiserfs_getopt() for describing the
845 * set of reiserfs mount options
850 /* 0 if argument is not required, not 0 otherwise */
853 /* list of values accepted by an option */
854 const arg_desc_t *values;
857 * bitmask which is to set on mount_options bitmask
858 * when this value is found, 0 is no bits are to be changed.
863 * bitmask which is to clear on mount_options bitmask
864 * when this value is found, 0 is no bits are to be changed.
865 * This is applied BEFORE setmask
870 /* possible values for -o data= */
871 static const arg_desc_t logging_mode[] = {
872 {"ordered", 1 << REISERFS_DATA_ORDERED,
873 (1 << REISERFS_DATA_LOG | 1 << REISERFS_DATA_WRITEBACK)},
874 {"journal", 1 << REISERFS_DATA_LOG,
875 (1 << REISERFS_DATA_ORDERED | 1 << REISERFS_DATA_WRITEBACK)},
876 {"writeback", 1 << REISERFS_DATA_WRITEBACK,
877 (1 << REISERFS_DATA_ORDERED | 1 << REISERFS_DATA_LOG)},
881 /* possible values for -o barrier= */
882 static const arg_desc_t barrier_mode[] = {
883 {"none", 1 << REISERFS_BARRIER_NONE, 1 << REISERFS_BARRIER_FLUSH},
884 {"flush", 1 << REISERFS_BARRIER_FLUSH, 1 << REISERFS_BARRIER_NONE},
889 * possible values for "-o block-allocator=" and bits which are to be set in
890 * s_mount_opt of reiserfs specific part of in-core super block
892 static const arg_desc_t balloc[] = {
893 {"noborder", 1 << REISERFS_NO_BORDER, 0},
894 {"border", 0, 1 << REISERFS_NO_BORDER},
895 {"no_unhashed_relocation", 1 << REISERFS_NO_UNHASHED_RELOCATION, 0},
896 {"hashed_relocation", 1 << REISERFS_HASHED_RELOCATION, 0},
897 {"test4", 1 << REISERFS_TEST4, 0},
898 {"notest4", 0, 1 << REISERFS_TEST4},
902 static const arg_desc_t tails[] = {
903 {"on", 1 << REISERFS_LARGETAIL, 1 << REISERFS_SMALLTAIL},
904 {"off", 0, (1 << REISERFS_LARGETAIL) | (1 << REISERFS_SMALLTAIL)},
905 {"small", 1 << REISERFS_SMALLTAIL, 1 << REISERFS_LARGETAIL},
909 static const arg_desc_t error_actions[] = {
910 {"panic", 1 << REISERFS_ERROR_PANIC,
911 (1 << REISERFS_ERROR_RO | 1 << REISERFS_ERROR_CONTINUE)},
912 {"ro-remount", 1 << REISERFS_ERROR_RO,
913 (1 << REISERFS_ERROR_PANIC | 1 << REISERFS_ERROR_CONTINUE)},
914 #ifdef REISERFS_JOURNAL_ERROR_ALLOWS_NO_LOG
915 {"continue", 1 << REISERFS_ERROR_CONTINUE,
916 (1 << REISERFS_ERROR_PANIC | 1 << REISERFS_ERROR_RO)},
922 * proceed only one option from a list *cur - string containing of mount
924 * opts - array of options which are accepted
925 * opt_arg - if option is found and requires an argument and if it is specifed
926 * in the input - pointer to the argument is stored here
927 * bit_flags - if option requires to set a certain bit - it is set here
928 * return -1 if unknown option is found, opt->arg_required otherwise
930 static int reiserfs_getopt(struct super_block *s, char **cur, opt_desc_t * opts,
931 char **opt_arg, unsigned long *bit_flags)
941 const opt_desc_t *opt;
942 const arg_desc_t *arg;
946 /* assume argument cannot contain commas */
947 *cur = strchr(p, ',');
953 if (!strncmp(p, "alloc=", 6)) {
955 * Ugly special case, probably we should redo options
956 * parser so that it can understand several arguments for
957 * some options, also so that it can fill several bitfields
958 * with option values.
960 if (reiserfs_parse_alloc_options(s, p + 6)) {
967 /* for every option in the list */
968 for (opt = opts; opt->option_name; opt++) {
969 if (!strncmp(p, opt->option_name, strlen(opt->option_name))) {
972 (1 << REISERFS_UNSUPPORTED_OPT))
973 reiserfs_warning(s, "super-6500",
974 "%s not supported.\n",
977 *bit_flags &= ~opt->clrmask;
979 (1 << REISERFS_UNSUPPORTED_OPT))
980 reiserfs_warning(s, "super-6501",
981 "%s not supported.\n",
984 *bit_flags |= opt->setmask;
989 if (!opt->option_name) {
990 reiserfs_warning(s, "super-6502",
991 "unknown mount option \"%s\"", p);
995 p += strlen(opt->option_name);
998 if (!opt->arg_required) {
999 reiserfs_warning(s, "super-6503",
1000 "the option \"%s\" does not "
1001 "require an argument\n",
1008 if (opt->arg_required) {
1009 reiserfs_warning(s, "super-6504",
1010 "the option \"%s\" requires an "
1011 "argument\n", opt->option_name);
1016 reiserfs_warning(s, "super-6505",
1017 "head of option \"%s\" is only correct\n",
1023 * move to the argument, or to next option if argument is not
1028 if (opt->arg_required
1029 && !(opt->arg_required & (1 << REISERFS_OPT_ALLOWEMPTY))
1031 /* this catches "option=," if not allowed */
1032 reiserfs_warning(s, "super-6506",
1033 "empty argument for \"%s\"\n",
1039 /* *=NULLopt_arg contains pointer to argument */
1041 return opt->arg_required & ~(1 << REISERFS_OPT_ALLOWEMPTY);
1044 /* values possible for this option are listed in opt->values */
1045 for (arg = opt->values; arg->value; arg++) {
1046 if (!strcmp(p, arg->value)) {
1048 *bit_flags &= ~arg->clrmask;
1049 *bit_flags |= arg->setmask;
1051 return opt->arg_required;
1055 reiserfs_warning(s, "super-6506",
1056 "bad value \"%s\" for option \"%s\"\n", p,
1061 /* returns 0 if something is wrong in option string, 1 - otherwise */
1062 static int reiserfs_parse_options(struct super_block *s,
1064 /* string given via mount's -o */
1068 * after the parsing phase, contains the
1069 * collection of bitflags defining what
1070 * mount options were selected.
1072 unsigned long *mount_options,
1074 /* strtol-ed from NNN of resize=NNN */
1075 unsigned long *blocks,
1077 unsigned int *commit_max_age,
1084 opt_desc_t opts[] = {
1086 * Compatibility stuff, so that -o notail for old
1089 {"tails",.arg_required = 't',.values = tails},
1090 {"notail",.clrmask =
1091 (1 << REISERFS_LARGETAIL) | (1 << REISERFS_SMALLTAIL)},
1092 {"conv",.setmask = 1 << REISERFS_CONVERT},
1093 {"attrs",.setmask = 1 << REISERFS_ATTRS},
1094 {"noattrs",.clrmask = 1 << REISERFS_ATTRS},
1095 {"expose_privroot", .setmask = 1 << REISERFS_EXPOSE_PRIVROOT},
1096 #ifdef CONFIG_REISERFS_FS_XATTR
1097 {"user_xattr",.setmask = 1 << REISERFS_XATTRS_USER},
1098 {"nouser_xattr",.clrmask = 1 << REISERFS_XATTRS_USER},
1100 {"user_xattr",.setmask = 1 << REISERFS_UNSUPPORTED_OPT},
1101 {"nouser_xattr",.clrmask = 1 << REISERFS_UNSUPPORTED_OPT},
1103 #ifdef CONFIG_REISERFS_FS_POSIX_ACL
1104 {"acl",.setmask = 1 << REISERFS_POSIXACL},
1105 {"noacl",.clrmask = 1 << REISERFS_POSIXACL},
1107 {"acl",.setmask = 1 << REISERFS_UNSUPPORTED_OPT},
1108 {"noacl",.clrmask = 1 << REISERFS_UNSUPPORTED_OPT},
1110 {.option_name = "nolog"},
1111 {"replayonly",.setmask = 1 << REPLAYONLY},
1112 {"block-allocator",.arg_required = 'a',.values = balloc},
1113 {"data",.arg_required = 'd',.values = logging_mode},
1114 {"barrier",.arg_required = 'b',.values = barrier_mode},
1115 {"resize",.arg_required = 'r',.values = NULL},
1116 {"jdev",.arg_required = 'j',.values = NULL},
1117 {"nolargeio",.arg_required = 'w',.values = NULL},
1118 {"commit",.arg_required = 'c',.values = NULL},
1119 {"usrquota",.setmask = 1 << REISERFS_USRQUOTA},
1120 {"grpquota",.setmask = 1 << REISERFS_GRPQUOTA},
1121 {"noquota",.clrmask = 1 << REISERFS_USRQUOTA | 1 << REISERFS_GRPQUOTA},
1122 {"errors",.arg_required = 'e',.values = error_actions},
1123 {"usrjquota",.arg_required =
1124 'u' | (1 << REISERFS_OPT_ALLOWEMPTY),.values = NULL},
1125 {"grpjquota",.arg_required =
1126 'g' | (1 << REISERFS_OPT_ALLOWEMPTY),.values = NULL},
1127 {"jqfmt",.arg_required = 'f',.values = NULL},
1128 {.option_name = NULL}
1132 if (!options || !*options)
1134 * use default configuration: create tails, journaling on, no
1135 * conversion to newest format
1139 for (pos = options; pos;) {
1140 c = reiserfs_getopt(s, &pos, opts, &arg, mount_options);
1142 /* wrong option is given */
1149 /* "resize=NNN" or "resize=auto" */
1151 if (!strcmp(arg, "auto")) {
1152 /* From JFS code, to auto-get the size. */
1154 s->s_bdev->bd_inode->i_size >> s->
1157 *blocks = simple_strtoul(arg, &p, 0);
1159 /* NNN does not look like a number */
1160 reiserfs_warning(s, "super-6507",
1170 unsigned long val = simple_strtoul(arg, &p, 0);
1171 /* commit=NNN (time in seconds) */
1172 if (*p != '\0' || val >= (unsigned int)-1) {
1173 reiserfs_warning(s, "super-6508",
1174 "bad value %s for -ocommit\n",
1178 *commit_max_age = (unsigned int)val;
1182 reiserfs_warning(s, "super-6509", "nolargeio option "
1183 "is no longer supported");
1188 if (arg && *arg && jdev_name) {
1189 /* Hm, already assigned? */
1191 reiserfs_warning(s, "super-6510",
1192 "journal device was "
1193 "already specified to "
1194 "be %s", *jdev_name);
1201 if (c == 'u' || c == 'g') {
1202 int qtype = c == 'u' ? USRQUOTA : GRPQUOTA;
1204 if (sb_any_quota_loaded(s) &&
1205 (!*arg != !REISERFS_SB(s)->s_qf_names[qtype])) {
1206 reiserfs_warning(s, "super-6511",
1207 "cannot change journaled "
1208 "quota options when quota "
1212 if (*arg) { /* Some filename specified? */
1213 if (REISERFS_SB(s)->s_qf_names[qtype]
1214 && strcmp(REISERFS_SB(s)->s_qf_names[qtype],
1216 reiserfs_warning(s, "super-6512",
1218 "already specified.",
1222 if (strchr(arg, '/')) {
1223 reiserfs_warning(s, "super-6513",
1224 "quotafile must be "
1225 "on filesystem root.");
1228 qf_names[qtype] = kstrdup(arg, GFP_KERNEL);
1229 if (!qf_names[qtype]) {
1230 reiserfs_warning(s, "reiserfs-2502",
1231 "not enough memory "
1236 if (qtype == USRQUOTA)
1237 *mount_options |= 1 << REISERFS_USRQUOTA;
1239 *mount_options |= 1 << REISERFS_GRPQUOTA;
1241 if (qf_names[qtype] !=
1242 REISERFS_SB(s)->s_qf_names[qtype])
1243 kfree(qf_names[qtype]);
1244 qf_names[qtype] = NULL;
1245 if (qtype == USRQUOTA)
1246 *mount_options &= ~(1 << REISERFS_USRQUOTA);
1248 *mount_options &= ~(1 << REISERFS_GRPQUOTA);
1252 if (!strcmp(arg, "vfsold"))
1253 *qfmt = QFMT_VFS_OLD;
1254 else if (!strcmp(arg, "vfsv0"))
1255 *qfmt = QFMT_VFS_V0;
1257 reiserfs_warning(s, "super-6514",
1258 "unknown quota format "
1262 if (sb_any_quota_loaded(s) &&
1263 *qfmt != REISERFS_SB(s)->s_jquota_fmt) {
1264 reiserfs_warning(s, "super-6515",
1265 "cannot change journaled "
1266 "quota options when quota "
1272 if (c == 'u' || c == 'g' || c == 'f') {
1273 reiserfs_warning(s, "reiserfs-2503", "journaled "
1274 "quota options not supported.");
1281 if (!REISERFS_SB(s)->s_jquota_fmt && !*qfmt
1282 && (qf_names[USRQUOTA] || qf_names[GRPQUOTA])) {
1283 reiserfs_warning(s, "super-6515",
1284 "journaled quota format not specified.");
1287 if ((!(*mount_options & (1 << REISERFS_USRQUOTA)) &&
1288 sb_has_quota_loaded(s, USRQUOTA)) ||
1289 (!(*mount_options & (1 << REISERFS_GRPQUOTA)) &&
1290 sb_has_quota_loaded(s, GRPQUOTA))) {
1291 reiserfs_warning(s, "super-6516", "quota options must "
1292 "be present when quota is turned on.");
1300 static void switch_data_mode(struct super_block *s, unsigned long mode)
1302 REISERFS_SB(s)->s_mount_opt &= ~((1 << REISERFS_DATA_LOG) |
1303 (1 << REISERFS_DATA_ORDERED) |
1304 (1 << REISERFS_DATA_WRITEBACK));
1305 REISERFS_SB(s)->s_mount_opt |= (1 << mode);
1308 static void handle_data_mode(struct super_block *s, unsigned long mount_options)
1310 if (mount_options & (1 << REISERFS_DATA_LOG)) {
1311 if (!reiserfs_data_log(s)) {
1312 switch_data_mode(s, REISERFS_DATA_LOG);
1313 reiserfs_info(s, "switching to journaled data mode\n");
1315 } else if (mount_options & (1 << REISERFS_DATA_ORDERED)) {
1316 if (!reiserfs_data_ordered(s)) {
1317 switch_data_mode(s, REISERFS_DATA_ORDERED);
1318 reiserfs_info(s, "switching to ordered data mode\n");
1320 } else if (mount_options & (1 << REISERFS_DATA_WRITEBACK)) {
1321 if (!reiserfs_data_writeback(s)) {
1322 switch_data_mode(s, REISERFS_DATA_WRITEBACK);
1323 reiserfs_info(s, "switching to writeback data mode\n");
1328 static void handle_barrier_mode(struct super_block *s, unsigned long bits)
1330 int flush = (1 << REISERFS_BARRIER_FLUSH);
1331 int none = (1 << REISERFS_BARRIER_NONE);
1332 int all_barrier = flush | none;
1334 if (bits & all_barrier) {
1335 REISERFS_SB(s)->s_mount_opt &= ~all_barrier;
1337 REISERFS_SB(s)->s_mount_opt |= flush;
1338 printk("reiserfs: enabling write barrier flush mode\n");
1339 } else if (bits & none) {
1340 REISERFS_SB(s)->s_mount_opt |= none;
1341 printk("reiserfs: write barriers turned off\n");
1346 static void handle_attrs(struct super_block *s)
1348 struct reiserfs_super_block *rs = SB_DISK_SUPER_BLOCK(s);
1350 if (reiserfs_attrs(s)) {
1351 if (old_format_only(s)) {
1352 reiserfs_warning(s, "super-6517", "cannot support "
1353 "attributes on 3.5.x disk format");
1354 REISERFS_SB(s)->s_mount_opt &= ~(1 << REISERFS_ATTRS);
1357 if (!(le32_to_cpu(rs->s_flags) & reiserfs_attrs_cleared)) {
1358 reiserfs_warning(s, "super-6518", "cannot support "
1359 "attributes until flag is set in "
1361 REISERFS_SB(s)->s_mount_opt &= ~(1 << REISERFS_ATTRS);
1367 static void handle_quota_files(struct super_block *s, char **qf_names,
1372 for (i = 0; i < REISERFS_MAXQUOTAS; i++) {
1373 if (qf_names[i] != REISERFS_SB(s)->s_qf_names[i])
1374 kfree(REISERFS_SB(s)->s_qf_names[i]);
1375 REISERFS_SB(s)->s_qf_names[i] = qf_names[i];
1378 REISERFS_SB(s)->s_jquota_fmt = *qfmt;
1382 static int reiserfs_remount(struct super_block *s, int *mount_flags, char *arg)
1384 struct reiserfs_super_block *rs;
1385 struct reiserfs_transaction_handle th;
1386 unsigned long blocks;
1387 unsigned long mount_options = REISERFS_SB(s)->s_mount_opt;
1388 unsigned long safe_mask = 0;
1389 unsigned int commit_max_age = (unsigned int)-1;
1390 struct reiserfs_journal *journal = SB_JOURNAL(s);
1391 char *new_opts = kstrdup(arg, GFP_KERNEL);
1393 char *qf_names[REISERFS_MAXQUOTAS];
1394 unsigned int qfmt = 0;
1400 reiserfs_write_lock(s);
1403 memcpy(qf_names, REISERFS_SB(s)->s_qf_names, sizeof(qf_names));
1406 rs = SB_DISK_SUPER_BLOCK(s);
1408 if (!reiserfs_parse_options
1409 (s, arg, &mount_options, &blocks, NULL, &commit_max_age,
1412 for (i = 0; i < REISERFS_MAXQUOTAS; i++)
1413 if (qf_names[i] != REISERFS_SB(s)->s_qf_names[i])
1417 goto out_err_unlock;
1420 handle_quota_files(s, qf_names, &qfmt);
1425 /* Add options that are safe here */
1426 safe_mask |= 1 << REISERFS_SMALLTAIL;
1427 safe_mask |= 1 << REISERFS_LARGETAIL;
1428 safe_mask |= 1 << REISERFS_NO_BORDER;
1429 safe_mask |= 1 << REISERFS_NO_UNHASHED_RELOCATION;
1430 safe_mask |= 1 << REISERFS_HASHED_RELOCATION;
1431 safe_mask |= 1 << REISERFS_TEST4;
1432 safe_mask |= 1 << REISERFS_ATTRS;
1433 safe_mask |= 1 << REISERFS_XATTRS_USER;
1434 safe_mask |= 1 << REISERFS_POSIXACL;
1435 safe_mask |= 1 << REISERFS_BARRIER_FLUSH;
1436 safe_mask |= 1 << REISERFS_BARRIER_NONE;
1437 safe_mask |= 1 << REISERFS_ERROR_RO;
1438 safe_mask |= 1 << REISERFS_ERROR_CONTINUE;
1439 safe_mask |= 1 << REISERFS_ERROR_PANIC;
1440 safe_mask |= 1 << REISERFS_USRQUOTA;
1441 safe_mask |= 1 << REISERFS_GRPQUOTA;
1444 * Update the bitmask, taking care to keep
1445 * the bits we're not allowed to change here
1447 REISERFS_SB(s)->s_mount_opt =
1449 s_mount_opt & ~safe_mask) | (mount_options & safe_mask);
1451 if (commit_max_age != 0 && commit_max_age != (unsigned int)-1) {
1452 journal->j_max_commit_age = commit_max_age;
1453 journal->j_max_trans_age = commit_max_age;
1454 } else if (commit_max_age == 0) {
1455 /* 0 means restore defaults. */
1456 journal->j_max_commit_age = journal->j_default_max_commit_age;
1457 journal->j_max_trans_age = JOURNAL_MAX_TRANS_AGE;
1461 err = reiserfs_resize(s, blocks);
1463 goto out_err_unlock;
1466 if (*mount_flags & MS_RDONLY) {
1467 reiserfs_write_unlock(s);
1468 reiserfs_xattr_init(s, *mount_flags);
1469 /* remount read-only */
1470 if (s->s_flags & MS_RDONLY)
1471 /* it is read-only already */
1472 goto out_ok_unlocked;
1474 err = dquot_suspend(s, -1);
1478 /* try to remount file system with read-only permissions */
1479 if (sb_umount_state(rs) == REISERFS_VALID_FS
1480 || REISERFS_SB(s)->s_mount_state != REISERFS_VALID_FS) {
1481 goto out_ok_unlocked;
1484 reiserfs_write_lock(s);
1486 err = journal_begin(&th, s, 10);
1488 goto out_err_unlock;
1490 /* Mounting a rw partition read-only. */
1491 reiserfs_prepare_for_journal(s, SB_BUFFER_WITH_SB(s), 1);
1492 set_sb_umount_state(rs, REISERFS_SB(s)->s_mount_state);
1493 journal_mark_dirty(&th, SB_BUFFER_WITH_SB(s));
1495 /* remount read-write */
1496 if (!(s->s_flags & MS_RDONLY)) {
1497 reiserfs_write_unlock(s);
1498 reiserfs_xattr_init(s, *mount_flags);
1499 goto out_ok_unlocked; /* We are read-write already */
1502 if (reiserfs_is_journal_aborted(journal)) {
1503 err = journal->j_errno;
1504 goto out_err_unlock;
1507 handle_data_mode(s, mount_options);
1508 handle_barrier_mode(s, mount_options);
1509 REISERFS_SB(s)->s_mount_state = sb_umount_state(rs);
1511 /* now it is safe to call journal_begin */
1512 s->s_flags &= ~MS_RDONLY;
1513 err = journal_begin(&th, s, 10);
1515 goto out_err_unlock;
1517 /* Mount a partition which is read-only, read-write */
1518 reiserfs_prepare_for_journal(s, SB_BUFFER_WITH_SB(s), 1);
1519 REISERFS_SB(s)->s_mount_state = sb_umount_state(rs);
1520 s->s_flags &= ~MS_RDONLY;
1521 set_sb_umount_state(rs, REISERFS_ERROR_FS);
1522 if (!old_format_only(s))
1523 set_sb_mnt_count(rs, sb_mnt_count(rs) + 1);
1524 /* mark_buffer_dirty (SB_BUFFER_WITH_SB (s), 1); */
1525 journal_mark_dirty(&th, SB_BUFFER_WITH_SB(s));
1526 REISERFS_SB(s)->s_mount_state = REISERFS_VALID_FS;
1528 /* this will force a full flush of all journal lists */
1529 SB_JOURNAL(s)->j_must_wait = 1;
1530 err = journal_end(&th);
1532 goto out_err_unlock;
1534 reiserfs_write_unlock(s);
1535 if (!(*mount_flags & MS_RDONLY)) {
1536 dquot_resume(s, -1);
1537 reiserfs_write_lock(s);
1538 finish_unfinished(s);
1539 reiserfs_write_unlock(s);
1540 reiserfs_xattr_init(s, *mount_flags);
1544 replace_mount_options(s, new_opts);
1548 reiserfs_write_unlock(s);
1554 static int read_super_block(struct super_block *s, int offset)
1556 struct buffer_head *bh;
1557 struct reiserfs_super_block *rs;
1560 bh = sb_bread(s, offset / s->s_blocksize);
1562 reiserfs_warning(s, "sh-2006",
1563 "bread failed (dev %s, block %lu, size %lu)",
1564 s->s_id, offset / s->s_blocksize,
1569 rs = (struct reiserfs_super_block *)bh->b_data;
1570 if (!is_any_reiserfs_magic_string(rs)) {
1575 * ok, reiserfs signature (old or new) found in at the given offset
1577 fs_blocksize = sb_blocksize(rs);
1579 sb_set_blocksize(s, fs_blocksize);
1581 bh = sb_bread(s, offset / s->s_blocksize);
1583 reiserfs_warning(s, "sh-2007",
1584 "bread failed (dev %s, block %lu, size %lu)",
1585 s->s_id, offset / s->s_blocksize,
1590 rs = (struct reiserfs_super_block *)bh->b_data;
1591 if (sb_blocksize(rs) != s->s_blocksize) {
1592 reiserfs_warning(s, "sh-2011", "can't find a reiserfs "
1593 "filesystem on (dev %s, block %llu, size %lu)",
1595 (unsigned long long)bh->b_blocknr,
1601 if (rs->s_v1.s_root_block == cpu_to_le32(-1)) {
1603 reiserfs_warning(s, "super-6519", "Unfinished reiserfsck "
1604 "--rebuild-tree run detected. Please run\n"
1605 "reiserfsck --rebuild-tree and wait for a "
1606 "completion. If that fails\n"
1607 "get newer reiserfsprogs package");
1611 SB_BUFFER_WITH_SB(s) = bh;
1612 SB_DISK_SUPER_BLOCK(s) = rs;
1615 * magic is of non-standard journal filesystem, look at s_version to
1616 * find which format is in use
1618 if (is_reiserfs_jr(rs)) {
1619 if (sb_version(rs) == REISERFS_VERSION_2)
1620 reiserfs_info(s, "found reiserfs format \"3.6\""
1621 " with non-standard journal\n");
1622 else if (sb_version(rs) == REISERFS_VERSION_1)
1623 reiserfs_info(s, "found reiserfs format \"3.5\""
1624 " with non-standard journal\n");
1626 reiserfs_warning(s, "sh-2012", "found unknown "
1627 "format \"%u\" of reiserfs with "
1628 "non-standard magic", sb_version(rs));
1633 * s_version of standard format may contain incorrect
1634 * information, so we just look at the magic string
1637 "found reiserfs format \"%s\" with standard journal\n",
1638 is_reiserfs_3_5(rs) ? "3.5" : "3.6");
1640 s->s_op = &reiserfs_sops;
1641 s->s_export_op = &reiserfs_export_ops;
1643 s->s_qcop = &reiserfs_qctl_operations;
1644 s->dq_op = &reiserfs_quota_operations;
1645 s->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP;
1649 * new format is limited by the 32 bit wide i_blocks field, want to
1650 * be one full block below that.
1652 s->s_maxbytes = (512LL << 32) - s->s_blocksize;
1656 /* after journal replay, reread all bitmap and super blocks */
1657 static int reread_meta_blocks(struct super_block *s)
1659 ll_rw_block(READ, 1, &SB_BUFFER_WITH_SB(s));
1660 wait_on_buffer(SB_BUFFER_WITH_SB(s));
1661 if (!buffer_uptodate(SB_BUFFER_WITH_SB(s))) {
1662 reiserfs_warning(s, "reiserfs-2504", "error reading the super");
1669 /* hash detection stuff */
1672 * if root directory is empty - we set default - Yura's - hash and
1674 * FIXME: we look for only one name in a directory. If tea and yura
1675 * both have the same value - we ask user to send report to the
1678 static __u32 find_hash_out(struct super_block *s)
1681 struct inode *inode;
1683 INITIALIZE_PATH(path);
1684 struct reiserfs_dir_entry de;
1685 struct reiserfs_de_head *deh;
1686 __u32 hash = DEFAULT_HASH;
1687 __u32 deh_hashval, teahash, r5hash, yurahash;
1689 inode = d_inode(s->s_root);
1691 make_cpu_key(&key, inode, ~0, TYPE_DIRENTRY, 3);
1692 retval = search_by_entry_key(s, &key, &path, &de);
1693 if (retval == IO_ERROR) {
1697 if (retval == NAME_NOT_FOUND)
1700 set_de_name_and_namelen(&de);
1701 deh = de.de_deh + de.de_entry_num;
1703 if (deh_offset(deh) == DOT_DOT_OFFSET) {
1704 /* allow override in this case */
1705 if (reiserfs_rupasov_hash(s))
1707 reiserfs_info(s, "FS seems to be empty, autodetect is using the default hash\n");
1711 deh_hashval = GET_HASH_VALUE(deh_offset(deh));
1712 r5hash = GET_HASH_VALUE(r5_hash(de.de_name, de.de_namelen));
1713 teahash = GET_HASH_VALUE(keyed_hash(de.de_name, de.de_namelen));
1714 yurahash = GET_HASH_VALUE(yura_hash(de.de_name, de.de_namelen));
1716 if ((teahash == r5hash && deh_hashval == r5hash) ||
1717 (teahash == yurahash && deh_hashval == yurahash) ||
1718 (r5hash == yurahash && deh_hashval == yurahash)) {
1719 reiserfs_warning(s, "reiserfs-2506",
1720 "Unable to automatically detect hash "
1721 "function. Please mount with -o "
1722 "hash={tea,rupasov,r5}");
1727 if (deh_hashval == yurahash)
1729 else if (deh_hashval == teahash)
1731 else if (deh_hashval == r5hash)
1734 reiserfs_warning(s, "reiserfs-2506",
1735 "Unrecognised hash function");
1743 /* finds out which hash names are sorted with */
1744 static int what_hash(struct super_block *s)
1748 code = sb_hash_function_code(SB_DISK_SUPER_BLOCK(s));
1751 * reiserfs_hash_detect() == true if any of the hash mount options
1752 * were used. We must check them to make sure the user isn't
1753 * using a bad hash value
1755 if (code == UNSET_HASH || reiserfs_hash_detect(s))
1756 code = find_hash_out(s);
1758 if (code != UNSET_HASH && reiserfs_hash_detect(s)) {
1760 * detection has found the hash, and we must check against the
1763 if (reiserfs_rupasov_hash(s) && code != YURA_HASH) {
1764 reiserfs_warning(s, "reiserfs-2507",
1765 "Error, %s hash detected, "
1766 "unable to force rupasov hash",
1767 reiserfs_hashname(code));
1769 } else if (reiserfs_tea_hash(s) && code != TEA_HASH) {
1770 reiserfs_warning(s, "reiserfs-2508",
1771 "Error, %s hash detected, "
1772 "unable to force tea hash",
1773 reiserfs_hashname(code));
1775 } else if (reiserfs_r5_hash(s) && code != R5_HASH) {
1776 reiserfs_warning(s, "reiserfs-2509",
1777 "Error, %s hash detected, "
1778 "unable to force r5 hash",
1779 reiserfs_hashname(code));
1784 * find_hash_out was not called or
1785 * could not determine the hash
1787 if (reiserfs_rupasov_hash(s)) {
1789 } else if (reiserfs_tea_hash(s)) {
1791 } else if (reiserfs_r5_hash(s)) {
1797 * if we are mounted RW, and we have a new valid hash code, update
1800 if (code != UNSET_HASH &&
1801 !(s->s_flags & MS_RDONLY) &&
1802 code != sb_hash_function_code(SB_DISK_SUPER_BLOCK(s))) {
1803 set_sb_hash_function_code(SB_DISK_SUPER_BLOCK(s), code);
1808 /* return pointer to appropriate function */
1809 static hashf_t hash_function(struct super_block *s)
1811 switch (what_hash(s)) {
1813 reiserfs_info(s, "Using tea hash to sort names\n");
1816 reiserfs_info(s, "Using rupasov hash to sort names\n");
1819 reiserfs_info(s, "Using r5 hash to sort names\n");
1825 /* this is used to set up correct value for old partitions */
1826 static int function2code(hashf_t func)
1828 if (func == keyed_hash)
1830 if (func == yura_hash)
1832 if (func == r5_hash)
1835 BUG(); /* should never happen */
1840 #define SWARN(silent, s, id, ...) \
1842 reiserfs_warning(s, id, __VA_ARGS__)
1844 static int reiserfs_fill_super(struct super_block *s, void *data, int silent)
1846 struct inode *root_inode;
1847 struct reiserfs_transaction_handle th;
1849 unsigned long blocks;
1850 unsigned int commit_max_age = 0;
1852 struct reiserfs_iget_args args;
1853 struct reiserfs_super_block *rs;
1855 struct reiserfs_sb_info *sbi;
1856 int errval = -EINVAL;
1857 char *qf_names[REISERFS_MAXQUOTAS] = {};
1858 unsigned int qfmt = 0;
1860 save_mount_options(s, data);
1862 sbi = kzalloc(sizeof(struct reiserfs_sb_info), GFP_KERNEL);
1866 /* Set default values for options: non-aggressive tails, RO on errors */
1867 sbi->s_mount_opt |= (1 << REISERFS_SMALLTAIL);
1868 sbi->s_mount_opt |= (1 << REISERFS_ERROR_RO);
1869 sbi->s_mount_opt |= (1 << REISERFS_BARRIER_FLUSH);
1870 /* no preallocation minimum, be smart in reiserfs_file_write instead */
1871 sbi->s_alloc_options.preallocmin = 0;
1872 /* Preallocate by 16 blocks (17-1) at once */
1873 sbi->s_alloc_options.preallocsize = 17;
1874 /* setup default block allocator options */
1875 reiserfs_init_alloc_options(s);
1877 spin_lock_init(&sbi->old_work_lock);
1878 INIT_DELAYED_WORK(&sbi->old_work, flush_old_commits);
1879 mutex_init(&sbi->lock);
1880 sbi->lock_depth = -1;
1882 sbi->commit_wq = alloc_workqueue("reiserfs/%s", WQ_MEM_RECLAIM, 0,
1884 if (!sbi->commit_wq) {
1885 SWARN(silent, s, "", "Cannot allocate commit workqueue");
1887 goto error_unlocked;
1891 if (reiserfs_parse_options
1892 (s, (char *)data, &sbi->s_mount_opt, &blocks, &jdev_name,
1893 &commit_max_age, qf_names, &qfmt) == 0) {
1894 goto error_unlocked;
1896 if (jdev_name && jdev_name[0]) {
1897 sbi->s_jdev = kstrdup(jdev_name, GFP_KERNEL);
1899 SWARN(silent, s, "", "Cannot allocate memory for "
1900 "journal device name");
1905 handle_quota_files(s, qf_names, &qfmt);
1909 SWARN(silent, s, "jmacd-7", "resize option for remount only");
1910 goto error_unlocked;
1914 * try old format (undistributed bitmap, super block in 8-th 1k
1915 * block of a device)
1917 if (!read_super_block(s, REISERFS_OLD_DISK_OFFSET_IN_BYTES))
1921 * try new format (64-th 1k block), which can contain reiserfs
1924 else if (read_super_block(s, REISERFS_DISK_OFFSET_IN_BYTES)) {
1925 SWARN(silent, s, "sh-2021", "can not find reiserfs on %s",
1927 goto error_unlocked;
1930 rs = SB_DISK_SUPER_BLOCK(s);
1932 * Let's do basic sanity check to verify that underlying device is not
1933 * smaller than the filesystem. If the check fails then abort and
1934 * scream, because bad stuff will happen otherwise.
1936 if (s->s_bdev && s->s_bdev->bd_inode
1937 && i_size_read(s->s_bdev->bd_inode) <
1938 sb_block_count(rs) * sb_blocksize(rs)) {
1939 SWARN(silent, s, "", "Filesystem cannot be "
1940 "mounted because it is bigger than the device");
1941 SWARN(silent, s, "", "You may need to run fsck "
1942 "or increase size of your LVM partition");
1943 SWARN(silent, s, "", "Or may be you forgot to "
1944 "reboot after fdisk when it told you to");
1945 goto error_unlocked;
1948 sbi->s_mount_state = SB_REISERFS_STATE(s);
1949 sbi->s_mount_state = REISERFS_VALID_FS;
1951 if ((errval = reiserfs_init_bitmap_cache(s))) {
1952 SWARN(silent, s, "jmacd-8", "unable to read bitmap");
1953 goto error_unlocked;
1957 #ifdef CONFIG_REISERFS_CHECK
1958 SWARN(silent, s, "", "CONFIG_REISERFS_CHECK is set ON");
1959 SWARN(silent, s, "", "- it is slow mode for debugging.");
1962 /* make data=ordered the default */
1963 if (!reiserfs_data_log(s) && !reiserfs_data_ordered(s) &&
1964 !reiserfs_data_writeback(s)) {
1965 sbi->s_mount_opt |= (1 << REISERFS_DATA_ORDERED);
1968 if (reiserfs_data_log(s)) {
1969 reiserfs_info(s, "using journaled data mode\n");
1970 } else if (reiserfs_data_ordered(s)) {
1971 reiserfs_info(s, "using ordered data mode\n");
1973 reiserfs_info(s, "using writeback data mode\n");
1975 if (reiserfs_barrier_flush(s)) {
1976 printk("reiserfs: using flush barriers\n");
1979 if (journal_init(s, jdev_name, old_format, commit_max_age)) {
1980 SWARN(silent, s, "sh-2022",
1981 "unable to initialize journal space");
1982 goto error_unlocked;
1985 * once this is set, journal_release must be called
1986 * if we error out of the mount
1991 if (reread_meta_blocks(s)) {
1992 SWARN(silent, s, "jmacd-9",
1993 "unable to reread meta blocks after journal init");
1994 goto error_unlocked;
1998 goto error_unlocked;
2000 if (bdev_read_only(s->s_bdev) && !(s->s_flags & MS_RDONLY)) {
2001 SWARN(silent, s, "clm-7000",
2002 "Detected readonly device, marking FS readonly");
2003 s->s_flags |= MS_RDONLY;
2005 args.objectid = REISERFS_ROOT_OBJECTID;
2006 args.dirid = REISERFS_ROOT_PARENT_OBJECTID;
2008 iget5_locked(s, REISERFS_ROOT_OBJECTID, reiserfs_find_actor,
2009 reiserfs_init_locked_inode, (void *)&args);
2011 SWARN(silent, s, "jmacd-10", "get root inode failed");
2012 goto error_unlocked;
2016 * This path assumed to be called with the BKL in the old times.
2017 * Now we have inherited the big reiserfs lock from it and many
2018 * reiserfs helpers called in the mount path and elsewhere require
2019 * this lock to be held even if it's not always necessary. Let's be
2020 * conservative and hold it early. The window can be reduced after
2021 * careful review of the code.
2023 reiserfs_write_lock(s);
2025 if (root_inode->i_state & I_NEW) {
2026 reiserfs_read_locked_inode(root_inode, &args);
2027 unlock_new_inode(root_inode);
2030 s->s_root = d_make_root(root_inode);
2033 /* define and initialize hash function */
2034 sbi->s_hash_function = hash_function(s);
2035 if (sbi->s_hash_function == NULL) {
2041 if (is_reiserfs_3_5(rs)
2042 || (is_reiserfs_jr(rs) && SB_VERSION(s) == REISERFS_VERSION_1))
2043 set_bit(REISERFS_3_5, &sbi->s_properties);
2044 else if (old_format)
2045 set_bit(REISERFS_OLD_FORMAT, &sbi->s_properties);
2047 set_bit(REISERFS_3_6, &sbi->s_properties);
2049 if (!(s->s_flags & MS_RDONLY)) {
2051 errval = journal_begin(&th, s, 1);
2057 reiserfs_prepare_for_journal(s, SB_BUFFER_WITH_SB(s), 1);
2059 set_sb_umount_state(rs, REISERFS_ERROR_FS);
2060 set_sb_fs_state(rs, 0);
2063 * Clear out s_bmap_nr if it would wrap. We can handle this
2064 * case, but older revisions can't. This will cause the
2065 * file system to fail mount on those older implementations,
2066 * avoiding corruption. -jeffm
2068 if (bmap_would_wrap(reiserfs_bmap_count(s)) &&
2069 sb_bmap_nr(rs) != 0) {
2070 reiserfs_warning(s, "super-2030", "This file system "
2071 "claims to use %u bitmap blocks in "
2072 "its super block, but requires %u. "
2073 "Clearing to zero.", sb_bmap_nr(rs),
2074 reiserfs_bmap_count(s));
2076 set_sb_bmap_nr(rs, 0);
2079 if (old_format_only(s)) {
2081 * filesystem of format 3.5 either with standard
2082 * or non-standard journal
2084 if (convert_reiserfs(s)) {
2085 /* and -o conv is given */
2088 "converting 3.5 filesystem to the 3.6 format");
2090 if (is_reiserfs_3_5(rs))
2092 * put magic string of 3.6 format.
2093 * 2.2 will not be able to
2094 * mount this filesystem anymore
2096 memcpy(rs->s_v1.s_magic,
2097 reiserfs_3_6_magic_string,
2099 (reiserfs_3_6_magic_string));
2101 set_sb_version(rs, REISERFS_VERSION_2);
2102 reiserfs_convert_objectid_map_v1(s);
2103 set_bit(REISERFS_3_6, &sbi->s_properties);
2104 clear_bit(REISERFS_3_5, &sbi->s_properties);
2105 } else if (!silent) {
2106 reiserfs_info(s, "using 3.5.x disk format\n");
2109 set_sb_mnt_count(rs, sb_mnt_count(rs) + 1);
2112 journal_mark_dirty(&th, SB_BUFFER_WITH_SB(s));
2113 errval = journal_end(&th);
2120 reiserfs_write_unlock(s);
2121 if ((errval = reiserfs_lookup_privroot(s)) ||
2122 (errval = reiserfs_xattr_init(s, s->s_flags))) {
2125 goto error_unlocked;
2127 reiserfs_write_lock(s);
2130 * look for files which were to be removed in previous session
2132 finish_unfinished(s);
2134 if (old_format_only(s) && !silent) {
2135 reiserfs_info(s, "using 3.5.x disk format\n");
2138 reiserfs_write_unlock(s);
2139 if ((errval = reiserfs_lookup_privroot(s)) ||
2140 (errval = reiserfs_xattr_init(s, s->s_flags))) {
2143 goto error_unlocked;
2145 reiserfs_write_lock(s);
2148 * mark hash in super block: it could be unset. overwrite should be ok
2150 set_sb_hash_function_code(rs, function2code(sbi->s_hash_function));
2154 reiserfs_proc_info_init(s);
2156 init_waitqueue_head(&(sbi->s_wait));
2157 spin_lock_init(&sbi->bitmap_lock);
2159 reiserfs_write_unlock(s);
2164 reiserfs_write_unlock(s);
2167 /* kill the commit thread, free journal ram */
2169 reiserfs_write_lock(s);
2170 journal_release_error(NULL, s);
2171 reiserfs_write_unlock(s);
2175 destroy_workqueue(sbi->commit_wq);
2177 cancel_delayed_work_sync(&REISERFS_SB(s)->old_work);
2179 reiserfs_free_bitmap_cache(s);
2180 if (SB_BUFFER_WITH_SB(s))
2181 brelse(SB_BUFFER_WITH_SB(s));
2185 for (j = 0; j < REISERFS_MAXQUOTAS; j++)
2191 s->s_fs_info = NULL;
2195 static int reiserfs_statfs(struct dentry *dentry, struct kstatfs *buf)
2197 struct reiserfs_super_block *rs = SB_DISK_SUPER_BLOCK(dentry->d_sb);
2199 buf->f_namelen = (REISERFS_MAX_NAME(s->s_blocksize));
2200 buf->f_bfree = sb_free_blocks(rs);
2201 buf->f_bavail = buf->f_bfree;
2202 buf->f_blocks = sb_block_count(rs) - sb_bmap_nr(rs) - 1;
2203 buf->f_bsize = dentry->d_sb->s_blocksize;
2204 /* changed to accommodate gcc folks. */
2205 buf->f_type = REISERFS_SUPER_MAGIC;
2206 buf->f_fsid.val[0] = (u32)crc32_le(0, rs->s_uuid, sizeof(rs->s_uuid)/2);
2207 buf->f_fsid.val[1] = (u32)crc32_le(0, rs->s_uuid + sizeof(rs->s_uuid)/2,
2208 sizeof(rs->s_uuid)/2);
2214 static int reiserfs_write_dquot(struct dquot *dquot)
2216 struct reiserfs_transaction_handle th;
2220 reiserfs_write_lock(dquot->dq_sb);
2222 journal_begin(&th, dquot->dq_sb,
2223 REISERFS_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
2226 depth = reiserfs_write_unlock_nested(dquot->dq_sb);
2227 ret = dquot_commit(dquot);
2228 reiserfs_write_lock_nested(dquot->dq_sb, depth);
2229 err = journal_end(&th);
2233 reiserfs_write_unlock(dquot->dq_sb);
2237 static int reiserfs_acquire_dquot(struct dquot *dquot)
2239 struct reiserfs_transaction_handle th;
2243 reiserfs_write_lock(dquot->dq_sb);
2245 journal_begin(&th, dquot->dq_sb,
2246 REISERFS_QUOTA_INIT_BLOCKS(dquot->dq_sb));
2249 depth = reiserfs_write_unlock_nested(dquot->dq_sb);
2250 ret = dquot_acquire(dquot);
2251 reiserfs_write_lock_nested(dquot->dq_sb, depth);
2252 err = journal_end(&th);
2256 reiserfs_write_unlock(dquot->dq_sb);
2260 static int reiserfs_release_dquot(struct dquot *dquot)
2262 struct reiserfs_transaction_handle th;
2265 reiserfs_write_lock(dquot->dq_sb);
2267 journal_begin(&th, dquot->dq_sb,
2268 REISERFS_QUOTA_DEL_BLOCKS(dquot->dq_sb));
2269 reiserfs_write_unlock(dquot->dq_sb);
2271 /* Release dquot anyway to avoid endless cycle in dqput() */
2272 dquot_release(dquot);
2275 ret = dquot_release(dquot);
2276 reiserfs_write_lock(dquot->dq_sb);
2277 err = journal_end(&th);
2280 reiserfs_write_unlock(dquot->dq_sb);
2285 static int reiserfs_mark_dquot_dirty(struct dquot *dquot)
2287 /* Are we journaling quotas? */
2288 if (REISERFS_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
2289 REISERFS_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
2290 dquot_mark_dquot_dirty(dquot);
2291 return reiserfs_write_dquot(dquot);
2293 return dquot_mark_dquot_dirty(dquot);
2296 static int reiserfs_write_info(struct super_block *sb, int type)
2298 struct reiserfs_transaction_handle th;
2302 /* Data block + inode block */
2303 reiserfs_write_lock(sb);
2304 ret = journal_begin(&th, sb, 2);
2307 depth = reiserfs_write_unlock_nested(sb);
2308 ret = dquot_commit_info(sb, type);
2309 reiserfs_write_lock_nested(sb, depth);
2310 err = journal_end(&th);
2314 reiserfs_write_unlock(sb);
2319 * Turn on quotas during mount time - we need to find the quota file and such...
2321 static int reiserfs_quota_on_mount(struct super_block *sb, int type)
2323 return dquot_quota_on_mount(sb, REISERFS_SB(sb)->s_qf_names[type],
2324 REISERFS_SB(sb)->s_jquota_fmt, type);
2328 * Standard function to be called on quota_on
2330 static int reiserfs_quota_on(struct super_block *sb, int type, int format_id,
2334 struct inode *inode;
2335 struct reiserfs_transaction_handle th;
2336 int opt = type == USRQUOTA ? REISERFS_USRQUOTA : REISERFS_GRPQUOTA;
2338 reiserfs_write_lock(sb);
2339 if (!(REISERFS_SB(sb)->s_mount_opt & (1 << opt))) {
2344 /* Quotafile not on the same filesystem? */
2345 if (path->dentry->d_sb != sb) {
2349 inode = d_inode(path->dentry);
2351 * We must not pack tails for quota files on reiserfs for quota
2354 if (!(REISERFS_I(inode)->i_flags & i_nopack_mask)) {
2355 err = reiserfs_unpack(inode, NULL);
2357 reiserfs_warning(sb, "super-6520",
2358 "Unpacking tail of quota file failed"
2359 " (%d). Cannot turn on quotas.", err);
2363 mark_inode_dirty(inode);
2365 /* Journaling quota? */
2366 if (REISERFS_SB(sb)->s_qf_names[type]) {
2367 /* Quotafile not of fs root? */
2368 if (path->dentry->d_parent != sb->s_root)
2369 reiserfs_warning(sb, "super-6521",
2370 "Quota file not on filesystem root. "
2371 "Journalled quota will not work.");
2375 * When we journal data on quota file, we have to flush journal to see
2376 * all updates to the file when we bypass pagecache...
2378 if (reiserfs_file_data_log(inode)) {
2379 /* Just start temporary transaction and finish it */
2380 err = journal_begin(&th, sb, 1);
2383 err = journal_end_sync(&th);
2387 reiserfs_write_unlock(sb);
2388 return dquot_quota_on(sb, type, format_id, path);
2390 reiserfs_write_unlock(sb);
2395 * Read data from quotafile - avoid pagecache and such because we cannot afford
2396 * acquiring the locks... As quota files are never truncated and quota code
2397 * itself serializes the operations (and no one else should touch the files)
2398 * we don't have to be afraid of races
2400 static ssize_t reiserfs_quota_read(struct super_block *sb, int type, char *data,
2401 size_t len, loff_t off)
2403 struct inode *inode = sb_dqopt(sb)->files[type];
2404 unsigned long blk = off >> sb->s_blocksize_bits;
2405 int err = 0, offset = off & (sb->s_blocksize - 1), tocopy;
2407 struct buffer_head tmp_bh, *bh;
2408 loff_t i_size = i_size_read(inode);
2412 if (off + len > i_size)
2415 while (toread > 0) {
2417 sb->s_blocksize - offset <
2418 toread ? sb->s_blocksize - offset : toread;
2421 * Quota files are without tails so we can safely
2424 reiserfs_write_lock(sb);
2425 err = reiserfs_get_block(inode, blk, &tmp_bh, 0);
2426 reiserfs_write_unlock(sb);
2429 if (!buffer_mapped(&tmp_bh)) /* A hole? */
2430 memset(data, 0, tocopy);
2432 bh = sb_bread(sb, tmp_bh.b_blocknr);
2435 memcpy(data, bh->b_data + offset, tocopy);
2447 * Write to quotafile (we know the transaction is already started and has
2450 static ssize_t reiserfs_quota_write(struct super_block *sb, int type,
2451 const char *data, size_t len, loff_t off)
2453 struct inode *inode = sb_dqopt(sb)->files[type];
2454 unsigned long blk = off >> sb->s_blocksize_bits;
2455 int err = 0, offset = off & (sb->s_blocksize - 1), tocopy;
2456 int journal_quota = REISERFS_SB(sb)->s_qf_names[type] != NULL;
2457 size_t towrite = len;
2458 struct buffer_head tmp_bh, *bh;
2460 if (!current->journal_info) {
2461 printk(KERN_WARNING "reiserfs: Quota write (off=%llu, len=%llu) cancelled because transaction is not started.\n",
2462 (unsigned long long)off, (unsigned long long)len);
2465 while (towrite > 0) {
2466 tocopy = sb->s_blocksize - offset < towrite ?
2467 sb->s_blocksize - offset : towrite;
2469 reiserfs_write_lock(sb);
2470 err = reiserfs_get_block(inode, blk, &tmp_bh, GET_BLOCK_CREATE);
2471 reiserfs_write_unlock(sb);
2474 if (offset || tocopy != sb->s_blocksize)
2475 bh = sb_bread(sb, tmp_bh.b_blocknr);
2477 bh = sb_getblk(sb, tmp_bh.b_blocknr);
2483 memcpy(bh->b_data + offset, data, tocopy);
2484 flush_dcache_page(bh->b_page);
2485 set_buffer_uptodate(bh);
2487 reiserfs_write_lock(sb);
2488 reiserfs_prepare_for_journal(sb, bh, 1);
2489 journal_mark_dirty(current->journal_info, bh);
2491 reiserfs_add_ordered_list(inode, bh);
2492 reiserfs_write_unlock(sb);
2502 if (inode->i_size < off + len - towrite)
2503 i_size_write(inode, off + len - towrite);
2505 inode->i_mtime = inode->i_ctime = CURRENT_TIME;
2506 mark_inode_dirty(inode);
2507 return len - towrite;
2512 static struct dentry *get_super_block(struct file_system_type *fs_type,
2513 int flags, const char *dev_name,
2516 return mount_bdev(fs_type, flags, dev_name, data, reiserfs_fill_super);
2519 static int __init init_reiserfs_fs(void)
2523 ret = init_inodecache();
2527 reiserfs_proc_info_global_init();
2529 ret = register_filesystem(&reiserfs_fs_type);
2535 reiserfs_proc_info_global_done();
2536 destroy_inodecache();
2541 static void __exit exit_reiserfs_fs(void)
2543 reiserfs_proc_info_global_done();
2544 unregister_filesystem(&reiserfs_fs_type);
2545 destroy_inodecache();
2548 struct file_system_type reiserfs_fs_type = {
2549 .owner = THIS_MODULE,
2551 .mount = get_super_block,
2552 .kill_sb = reiserfs_kill_sb,
2553 .fs_flags = FS_REQUIRES_DEV,
2555 MODULE_ALIAS_FS("reiserfs");
2557 MODULE_DESCRIPTION("ReiserFS journaled filesystem");
2558 MODULE_AUTHOR("Hans Reiser <reiser@namesys.com>");
2559 MODULE_LICENSE("GPL");
2561 module_init(init_reiserfs_fs);
2562 module_exit(exit_reiserfs_fs);