blob: bfed2a7000154644c7ca34ae616ec1d4cf6dd6d9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright 2000 by Hans Reiser, licensing governed by reiserfs/README
3 *
4 * Trivial changes by Alan Cox to add the LFS fixes
5 *
6 * Trivial Changes:
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.
10 *
11 * NO WARRANTY
12 */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/vmalloc.h>
17#include <linux/time.h>
Fabian Frederick17093992014-08-08 14:21:12 -070018#include <linux/uaccess.h>
Al Virof466c6f2012-03-17 01:16:43 -040019#include "reiserfs.h"
Al Viroa3063ab2012-03-17 01:03:10 -040020#include "acl.h"
Al Viroc45ac882012-03-17 00:59:06 -040021#include "xattr.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/init.h>
23#include <linux/blkdev.h>
Tejun Heo66114ca2015-05-22 17:13:32 -040024#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/buffer_head.h>
Christoph Hellwiga5694252007-07-17 04:04:28 -070026#include <linux/exportfs.h>
Jan Kara74abb982008-07-25 01:46:51 -070027#include <linux/quotaops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/vfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/mount.h>
30#include <linux/namei.h>
Coly Li651d0622009-04-02 16:59:41 -070031#include <linux/crc32.h>
Jan Karac3aa0772011-12-21 20:17:10 +010032#include <linux/seq_file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34struct file_system_type reiserfs_fs_type;
35
36static const char reiserfs_3_5_magic_string[] = REISERFS_SUPER_MAGIC_STRING;
37static const char reiserfs_3_6_magic_string[] = REISER2FS_SUPER_MAGIC_STRING;
38static const char reiserfs_jr_magic_string[] = REISER2FS_JR_SUPER_MAGIC_STRING;
39
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070040int is_reiserfs_3_5(struct reiserfs_super_block *rs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070042 return !strncmp(rs->s_v1.s_magic, reiserfs_3_5_magic_string,
43 strlen(reiserfs_3_5_magic_string));
Linus Torvalds1da177e2005-04-16 15:20:36 -070044}
45
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070046int is_reiserfs_3_6(struct reiserfs_super_block *rs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070048 return !strncmp(rs->s_v1.s_magic, reiserfs_3_6_magic_string,
49 strlen(reiserfs_3_6_magic_string));
Linus Torvalds1da177e2005-04-16 15:20:36 -070050}
51
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070052int is_reiserfs_jr(struct reiserfs_super_block *rs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070053{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070054 return !strncmp(rs->s_v1.s_magic, reiserfs_jr_magic_string,
55 strlen(reiserfs_jr_magic_string));
Linus Torvalds1da177e2005-04-16 15:20:36 -070056}
57
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070058static int is_any_reiserfs_magic_string(struct reiserfs_super_block *rs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070060 return (is_reiserfs_3_5(rs) || is_reiserfs_3_6(rs) ||
61 is_reiserfs_jr(rs));
Linus Torvalds1da177e2005-04-16 15:20:36 -070062}
63
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070064static int reiserfs_remount(struct super_block *s, int *flags, char *data);
David Howells726c3342006-06-23 02:02:58 -070065static int reiserfs_statfs(struct dentry *dentry, struct kstatfs *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070067static int reiserfs_sync_fs(struct super_block *s, int wait)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068{
Christoph Hellwig5af79262009-05-05 15:41:25 +020069 struct reiserfs_transaction_handle th;
70
Jan Karaa1177822012-07-03 16:45:29 +020071 /*
72 * Writeback quota in non-journalled quota case - journalled quota has
73 * no dirty dquots
74 */
75 dquot_writeback_dquots(s, -1);
Christoph Hellwig5af79262009-05-05 15:41:25 +020076 reiserfs_write_lock(s);
77 if (!journal_begin(&th, s, 1))
Jeff Mahoney58d85422014-04-23 10:00:38 -040078 if (!journal_end_sync(&th))
Christoph Hellwig5af79262009-05-05 15:41:25 +020079 reiserfs_flush_old_commits(s);
Christoph Hellwig5af79262009-05-05 15:41:25 +020080 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070081 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
Artem Bityutskiy033369d2012-06-01 17:18:08 +030084static void flush_old_commits(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Artem Bityutskiy033369d2012-06-01 17:18:08 +030086 struct reiserfs_sb_info *sbi;
87 struct super_block *s;
88
89 sbi = container_of(work, struct reiserfs_sb_info, old_work.work);
90 s = sbi->s_journal->j_work_sb;
91
92 spin_lock(&sbi->old_work_lock);
Jan Kara304c1e92017-04-05 14:09:48 +020093 /* Avoid clobbering the cancel state... */
94 if (sbi->work_queued == 1)
95 sbi->work_queued = 0;
Artem Bityutskiy033369d2012-06-01 17:18:08 +030096 spin_unlock(&sbi->old_work_lock);
97
Linus Torvaldsbd4c6252005-07-12 20:21:28 -070098 reiserfs_sync_fs(s, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
Artem Bityutskiy033369d2012-06-01 17:18:08 +0300101void reiserfs_schedule_old_flush(struct super_block *s)
102{
103 struct reiserfs_sb_info *sbi = REISERFS_SB(s);
104 unsigned long delay;
105
Jan Kara01777832014-08-06 19:43:56 +0200106 /*
107 * Avoid scheduling flush when sb is being shut down. It can race
108 * with journal shutdown and free still queued delayed work.
109 */
110 if (s->s_flags & MS_RDONLY || !(s->s_flags & MS_ACTIVE))
Artem Bityutskiy033369d2012-06-01 17:18:08 +0300111 return;
112
113 spin_lock(&sbi->old_work_lock);
114 if (!sbi->work_queued) {
115 delay = msecs_to_jiffies(dirty_writeback_interval * 10);
116 queue_delayed_work(system_long_wq, &sbi->old_work, delay);
117 sbi->work_queued = 1;
118 }
119 spin_unlock(&sbi->old_work_lock);
120}
121
Jan Kara304c1e92017-04-05 14:09:48 +0200122void reiserfs_cancel_old_flush(struct super_block *s)
Artem Bityutskiy033369d2012-06-01 17:18:08 +0300123{
124 struct reiserfs_sb_info *sbi = REISERFS_SB(s);
125
Artem Bityutskiy033369d2012-06-01 17:18:08 +0300126 spin_lock(&sbi->old_work_lock);
Jan Kara304c1e92017-04-05 14:09:48 +0200127 /* Make sure no new flushes will be queued */
128 sbi->work_queued = 2;
Artem Bityutskiy033369d2012-06-01 17:18:08 +0300129 spin_unlock(&sbi->old_work_lock);
Jan Kara304c1e92017-04-05 14:09:48 +0200130 cancel_delayed_work_sync(&REISERFS_SB(s)->old_work);
Artem Bityutskiy033369d2012-06-01 17:18:08 +0300131}
132
Takashi Satoc4be0c12009-01-09 16:40:58 -0800133static int reiserfs_freeze(struct super_block *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700135 struct reiserfs_transaction_handle th;
Artem Bityutskiy033369d2012-06-01 17:18:08 +0300136
Jan Kara304c1e92017-04-05 14:09:48 +0200137 reiserfs_cancel_old_flush(s);
Artem Bityutskiy033369d2012-06-01 17:18:08 +0300138
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700139 reiserfs_write_lock(s);
140 if (!(s->s_flags & MS_RDONLY)) {
141 int err = journal_begin(&th, s, 1);
142 if (err) {
143 reiserfs_block_writes(&th);
144 } else {
145 reiserfs_prepare_for_journal(s, SB_BUFFER_WITH_SB(s),
146 1);
Jeff Mahoney09f1b802014-04-23 10:00:39 -0400147 journal_mark_dirty(&th, SB_BUFFER_WITH_SB(s));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700148 reiserfs_block_writes(&th);
Jeff Mahoney58d85422014-04-23 10:00:38 -0400149 journal_end_sync(&th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700150 }
151 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700152 reiserfs_write_unlock(s);
Takashi Satoc4be0c12009-01-09 16:40:58 -0800153 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Takashi Satoc4be0c12009-01-09 16:40:58 -0800156static int reiserfs_unfreeze(struct super_block *s)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700157{
Jan Kara304c1e92017-04-05 14:09:48 +0200158 struct reiserfs_sb_info *sbi = REISERFS_SB(s);
159
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700160 reiserfs_allow_writes(s);
Jan Kara304c1e92017-04-05 14:09:48 +0200161 spin_lock(&sbi->old_work_lock);
162 /* Allow old_work to run again */
163 sbi->work_queued = 0;
164 spin_unlock(&sbi->old_work_lock);
Takashi Satoc4be0c12009-01-09 16:40:58 -0800165 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700168extern const struct in_core_key MAX_IN_CORE_KEY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Jeff Mahoney098297b2014-04-23 10:00:36 -0400170/*
171 * this is used to delete "save link" when there are no items of a
172 * file it points to. It can either happen if unlink is completed but
173 * "save unlink" removal, or if file has both unlink and truncate
174 * pending and as unlink completes first (because key of "save link"
175 * protecting unlink is bigger that a key lf "save link" which
176 * protects truncate), so there left no items to make truncate
177 * completion on
178 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700179static int remove_save_link_only(struct super_block *s,
180 struct reiserfs_key *key, int oid_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700182 struct reiserfs_transaction_handle th;
183 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700185 /* we are going to do one balancing */
186 err = journal_begin(&th, s, JOURNAL_PER_BALANCE_CNT);
187 if (err)
188 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700190 reiserfs_delete_solid_item(&th, NULL, key);
191 if (oid_free)
192 /* removals are protected by direct items */
193 reiserfs_release_objectid(&th, le32_to_cpu(key->k_objectid));
194
Jeff Mahoney58d85422014-04-23 10:00:38 -0400195 return journal_end(&th);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198#ifdef CONFIG_QUOTA
199static int reiserfs_quota_on_mount(struct super_block *, int);
200#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700201
Mike Galbraith420902c2012-08-13 15:21:23 +0200202/*
203 * Look for uncompleted unlinks and truncates and complete them
204 *
205 * Called with superblock write locked. If quotas are enabled, we have to
206 * release/retake lest we call dquot_quota_on_mount(), proceed to
207 * schedule_on_each_cpu() in invalidate_bdev() and deadlock waiting for the per
208 * cpu worklets to complete flush_async_commits() that in turn wait for the
209 * superblock write lock.
210 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700211static int finish_unfinished(struct super_block *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700213 INITIALIZE_PATH(path);
214 struct cpu_key max_cpu_key, obj_key;
Lepton Wufb46f342007-10-16 23:30:04 -0700215 struct reiserfs_key save_link_key, last_inode_key;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700216 int retval = 0;
217 struct item_head *ih;
218 struct buffer_head *bh;
219 int item_pos;
220 char *item;
221 int done;
222 struct inode *inode;
223 int truncate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224#ifdef CONFIG_QUOTA
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700225 int i;
226 int ms_active_set;
Jan Karaaca60612014-09-10 20:57:45 +0200227 int quota_enabled[REISERFS_MAXQUOTAS];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700229
230 /* compose key to look for "save" links */
231 max_cpu_key.version = KEY_FORMAT_3_5;
232 max_cpu_key.on_disk_key.k_dir_id = ~0U;
233 max_cpu_key.on_disk_key.k_objectid = ~0U;
234 set_cpu_key_k_offset(&max_cpu_key, ~0U);
235 max_cpu_key.key_length = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Lepton Wufb46f342007-10-16 23:30:04 -0700237 memset(&last_inode_key, 0, sizeof(last_inode_key));
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239#ifdef CONFIG_QUOTA
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700240 /* Needed for iput() to work correctly and not trash data */
241 if (s->s_flags & MS_ACTIVE) {
242 ms_active_set = 0;
243 } else {
244 ms_active_set = 1;
245 s->s_flags |= MS_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700247 /* Turn on quotas so that they are updated correctly */
Jan Karaaca60612014-09-10 20:57:45 +0200248 for (i = 0; i < REISERFS_MAXQUOTAS; i++) {
Jan Karaf4b113a2010-05-21 19:12:51 +0200249 quota_enabled[i] = 1;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700250 if (REISERFS_SB(s)->s_qf_names[i]) {
Jan Karaf4b113a2010-05-21 19:12:51 +0200251 int ret;
252
253 if (sb_has_quota_active(s, i)) {
254 quota_enabled[i] = 0;
255 continue;
256 }
Mike Galbraith420902c2012-08-13 15:21:23 +0200257 reiserfs_write_unlock(s);
Jan Karaf4b113a2010-05-21 19:12:51 +0200258 ret = reiserfs_quota_on_mount(s, i);
Mike Galbraith420902c2012-08-13 15:21:23 +0200259 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700260 if (ret < 0)
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400261 reiserfs_warning(s, "reiserfs-2500",
262 "cannot turn on journaled "
263 "quota: error %d", ret);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700264 }
265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700268 done = 0;
269 REISERFS_SB(s)->s_is_unlinked_ok = 1;
270 while (!retval) {
Jeff Mahoneyd2d03952013-08-08 17:34:47 -0400271 int depth;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700272 retval = search_item(s, &max_cpu_key, &path);
273 if (retval != ITEM_NOT_FOUND) {
Jeff Mahoney0030b642009-03-30 14:02:28 -0400274 reiserfs_error(s, "vs-2140",
275 "search_by_key returned %d", retval);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700276 break;
277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700279 bh = get_last_bh(&path);
280 item_pos = get_item_pos(&path);
281 if (item_pos != B_NR_ITEMS(bh)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400282 reiserfs_warning(s, "vs-2060",
283 "wrong position found");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700284 break;
285 }
286 item_pos--;
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400287 ih = item_head(bh, item_pos);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700288
289 if (le32_to_cpu(ih->ih_key.k_dir_id) != MAX_KEY_OBJECTID)
290 /* there are no "save" links anymore */
291 break;
292
293 save_link_key = ih->ih_key;
294 if (is_indirect_le_ih(ih))
295 truncate = 1;
296 else
297 truncate = 0;
298
299 /* reiserfs_iget needs k_dirid and k_objectid only */
Jeff Mahoney4cf5f7a2014-04-23 10:00:35 -0400300 item = ih_item_body(bh, ih);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700301 obj_key.on_disk_key.k_dir_id = le32_to_cpu(*(__le32 *) item);
302 obj_key.on_disk_key.k_objectid =
303 le32_to_cpu(ih->ih_key.k_objectid);
304 obj_key.on_disk_key.k_offset = 0;
305 obj_key.on_disk_key.k_type = 0;
306
307 pathrelse(&path);
308
309 inode = reiserfs_iget(s, &obj_key);
Sudip Mukherjeeff7d0802016-01-21 16:40:36 -0800310 if (IS_ERR_OR_NULL(inode)) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400311 /*
312 * the unlink almost completed, it just did not
313 * manage to remove "save" link and release objectid
314 */
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400315 reiserfs_warning(s, "vs-2180", "iget failed for %K",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700316 &obj_key);
317 retval = remove_save_link_only(s, &save_link_key, 1);
318 continue;
319 }
320
321 if (!truncate && inode->i_nlink) {
322 /* file is not unlinked */
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400323 reiserfs_warning(s, "vs-2185",
324 "file %K is not unlinked",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700325 &obj_key);
326 retval = remove_save_link_only(s, &save_link_key, 0);
327 continue;
328 }
Jeff Mahoneyd2d03952013-08-08 17:34:47 -0400329 depth = reiserfs_write_unlock_nested(inode->i_sb);
Christoph Hellwig871a2932010-03-03 09:05:07 -0500330 dquot_initialize(inode);
Jeff Mahoneyd2d03952013-08-08 17:34:47 -0400331 reiserfs_write_lock_nested(inode->i_sb, depth);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700332
333 if (truncate && S_ISDIR(inode->i_mode)) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400334 /*
335 * We got a truncate request for a dir which
336 * is impossible. The only imaginable way is to
337 * execute unfinished truncate request then boot
338 * into old kernel, remove the file and create dir
339 * with the same key.
340 */
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400341 reiserfs_warning(s, "green-2101",
342 "impossible truncate on a "
343 "directory %k. Please report",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700344 INODE_PKEY(inode));
345 retval = remove_save_link_only(s, &save_link_key, 0);
346 truncate = 0;
347 iput(inode);
348 continue;
349 }
350
351 if (truncate) {
352 REISERFS_I(inode)->i_flags |=
353 i_link_saved_truncate_mask;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400354 /*
355 * not completed truncate found. New size was
356 * committed together with "save" link
357 */
Fabian Frederick53872ed2014-08-08 14:21:10 -0700358 reiserfs_info(s, "Truncating %k to %lld ..",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700359 INODE_PKEY(inode), inode->i_size);
Jeff Mahoney098297b2014-04-23 10:00:36 -0400360
361 /* don't update modification time */
362 reiserfs_truncate_file(inode, 0);
363
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700364 retval = remove_save_link(inode, truncate);
365 } else {
366 REISERFS_I(inode)->i_flags |= i_link_saved_unlink_mask;
367 /* not completed unlink (rmdir) found */
368 reiserfs_info(s, "Removing %k..", INODE_PKEY(inode));
Lepton Wufb46f342007-10-16 23:30:04 -0700369 if (memcmp(&last_inode_key, INODE_PKEY(inode),
370 sizeof(last_inode_key))){
371 last_inode_key = *INODE_PKEY(inode);
372 /* removal gets completed in iput */
373 retval = 0;
374 } else {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400375 reiserfs_warning(s, "super-2189", "Dead loop "
376 "in finish_unfinished "
377 "detected, just remove "
378 "save link\n");
Lepton Wufb46f342007-10-16 23:30:04 -0700379 retval = remove_save_link_only(s,
380 &save_link_key, 0);
381 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700382 }
383
384 iput(inode);
385 printk("done\n");
386 done++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700388 REISERFS_SB(s)->s_is_unlinked_ok = 0;
389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390#ifdef CONFIG_QUOTA
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700391 /* Turn quotas off */
Jeff Mahoneyd2d03952013-08-08 17:34:47 -0400392 reiserfs_write_unlock(s);
Jan Karaaca60612014-09-10 20:57:45 +0200393 for (i = 0; i < REISERFS_MAXQUOTAS; i++) {
Jan Karaf4b113a2010-05-21 19:12:51 +0200394 if (sb_dqopt(s)->files[i] && quota_enabled[i])
Christoph Hellwig287a8092010-05-19 07:16:45 -0400395 dquot_quota_off(s, i);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700396 }
Jeff Mahoneyd2d03952013-08-08 17:34:47 -0400397 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700398 if (ms_active_set)
399 /* Restore the flag back */
400 s->s_flags &= ~MS_ACTIVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700402 pathrelse(&path);
403 if (done)
404 reiserfs_info(s, "There were %d uncompleted unlinks/truncates. "
405 "Completed\n", done);
406 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700408
Jeff Mahoney098297b2014-04-23 10:00:36 -0400409/*
410 * to protect file being unlinked from getting lost we "safe" link files
411 * being unlinked. This link will be deleted in the same transaction with last
412 * item of file. mounting the filesystem we scan all these links and remove
413 * files which almost got lost
414 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700415void add_save_link(struct reiserfs_transaction_handle *th,
416 struct inode *inode, int truncate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700418 INITIALIZE_PATH(path);
419 int retval;
420 struct cpu_key key;
421 struct item_head ih;
422 __le32 link;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700424 BUG_ON(!th->t_trans_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700426 /* file can only get one "save link" of each kind */
427 RFALSE(truncate &&
428 (REISERFS_I(inode)->i_flags & i_link_saved_truncate_mask),
429 "saved link already exists for truncated inode %lx",
430 (long)inode->i_ino);
431 RFALSE(!truncate &&
432 (REISERFS_I(inode)->i_flags & i_link_saved_unlink_mask),
433 "saved link already exists for unlinked inode %lx",
434 (long)inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700436 /* setup key of "save" link */
437 key.version = KEY_FORMAT_3_5;
438 key.on_disk_key.k_dir_id = MAX_KEY_OBJECTID;
439 key.on_disk_key.k_objectid = inode->i_ino;
440 if (!truncate) {
441 /* unlink, rmdir, rename */
442 set_cpu_key_k_offset(&key, 1 + inode->i_sb->s_blocksize);
443 set_cpu_key_k_type(&key, TYPE_DIRECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700445 /* item head of "safe" link */
446 make_le_item_head(&ih, &key, key.version,
447 1 + inode->i_sb->s_blocksize, TYPE_DIRECT,
448 4 /*length */ , 0xffff /*free space */ );
449 } else {
450 /* truncate */
451 if (S_ISDIR(inode->i_mode))
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400452 reiserfs_warning(inode->i_sb, "green-2102",
453 "Adding a truncate savelink for "
454 "a directory %k! Please report",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700455 INODE_PKEY(inode));
456 set_cpu_key_k_offset(&key, 1);
457 set_cpu_key_k_type(&key, TYPE_INDIRECT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700459 /* item head of "safe" link */
460 make_le_item_head(&ih, &key, key.version, 1, TYPE_INDIRECT,
461 4 /*length */ , 0 /*free space */ );
462 }
463 key.key_length = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700465 /* look for its place in the tree */
466 retval = search_item(inode->i_sb, &key, &path);
467 if (retval != ITEM_NOT_FOUND) {
468 if (retval != -ENOSPC)
Jeff Mahoney0030b642009-03-30 14:02:28 -0400469 reiserfs_error(inode->i_sb, "vs-2100",
470 "search_by_key (%K) returned %d", &key,
471 retval);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700472 pathrelse(&path);
473 return;
474 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700476 /* body of "save" link */
477 link = INODE_PKEY(inode)->k_dir_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300479 /* put "save" link into tree, don't charge quota to anyone */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700480 retval =
481 reiserfs_insert_item(th, &path, &key, &ih, NULL, (char *)&link);
482 if (retval) {
483 if (retval != -ENOSPC)
Jeff Mahoney0030b642009-03-30 14:02:28 -0400484 reiserfs_error(inode->i_sb, "vs-2120",
485 "insert_item returned %d", retval);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700486 } else {
487 if (truncate)
488 REISERFS_I(inode)->i_flags |=
489 i_link_saved_truncate_mask;
490 else
491 REISERFS_I(inode)->i_flags |= i_link_saved_unlink_mask;
492 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493}
494
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495/* this opens transaction unlike add_save_link */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700496int remove_save_link(struct inode *inode, int truncate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700498 struct reiserfs_transaction_handle th;
499 struct reiserfs_key key;
500 int err;
501
502 /* we are going to do one balancing only */
503 err = journal_begin(&th, inode->i_sb, JOURNAL_PER_BALANCE_CNT);
504 if (err)
505 return err;
506
507 /* setup key of "save" link */
508 key.k_dir_id = cpu_to_le32(MAX_KEY_OBJECTID);
509 key.k_objectid = INODE_PKEY(inode)->k_objectid;
510 if (!truncate) {
511 /* unlink, rmdir, rename */
512 set_le_key_k_offset(KEY_FORMAT_3_5, &key,
513 1 + inode->i_sb->s_blocksize);
514 set_le_key_k_type(KEY_FORMAT_3_5, &key, TYPE_DIRECT);
515 } else {
516 /* truncate */
517 set_le_key_k_offset(KEY_FORMAT_3_5, &key, 1);
518 set_le_key_k_type(KEY_FORMAT_3_5, &key, TYPE_INDIRECT);
519 }
520
521 if ((truncate &&
522 (REISERFS_I(inode)->i_flags & i_link_saved_truncate_mask)) ||
523 (!truncate &&
524 (REISERFS_I(inode)->i_flags & i_link_saved_unlink_mask)))
525 /* don't take quota bytes from anywhere */
526 reiserfs_delete_solid_item(&th, NULL, &key);
527 if (!truncate) {
528 reiserfs_release_objectid(&th, inode->i_ino);
529 REISERFS_I(inode)->i_flags &= ~i_link_saved_unlink_mask;
530 } else
531 REISERFS_I(inode)->i_flags &= ~i_link_saved_truncate_mask;
532
Jeff Mahoney58d85422014-04-23 10:00:38 -0400533 return journal_end(&th);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
David Howellsedc666e2006-10-11 01:22:14 -0700536static void reiserfs_kill_sb(struct super_block *s)
537{
538 if (REISERFS_SB(s)) {
Al Viro672fe152013-08-05 17:37:37 +0400539 reiserfs_proc_info_done(s);
Jeff Mahoneya9e36da2011-12-21 21:18:43 +0100540 /*
541 * Force any pending inode evictions to occur now. Any
542 * inodes to be removed that have extended attributes
543 * associated with them need to clean them up before
544 * we can release the extended attribute root dentries.
545 * shrink_dcache_for_umount will BUG if we don't release
546 * those before it's called so ->put_super is too late.
547 */
548 shrink_dcache_sb(s);
549
550 dput(REISERFS_SB(s)->xattr_root);
551 REISERFS_SB(s)->xattr_root = NULL;
552 dput(REISERFS_SB(s)->priv_root);
553 REISERFS_SB(s)->priv_root = NULL;
David Howellsedc666e2006-10-11 01:22:14 -0700554 }
555
556 kill_block_super(s);
557}
558
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700559static void reiserfs_put_super(struct super_block *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700561 struct reiserfs_transaction_handle th;
562 th.t_trans_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563
Christoph Hellwige0ccfd92010-05-19 07:16:42 -0400564 dquot_disable(s, -1, DQUOT_USAGE_ENABLED | DQUOT_LIMITS_ENABLED);
565
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200566 reiserfs_write_lock(s);
Christoph Hellwig6cfd0142009-05-05 15:40:36 +0200567
Jeff Mahoney098297b2014-04-23 10:00:36 -0400568 /*
569 * change file system state to current state if it was mounted
570 * with read-write permissions
571 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700572 if (!(s->s_flags & MS_RDONLY)) {
573 if (!journal_begin(&th, s, 10)) {
574 reiserfs_prepare_for_journal(s, SB_BUFFER_WITH_SB(s),
575 1);
576 set_sb_umount_state(SB_DISK_SUPER_BLOCK(s),
577 REISERFS_SB(s)->s_mount_state);
Jeff Mahoney09f1b802014-04-23 10:00:39 -0400578 journal_mark_dirty(&th, SB_BUFFER_WITH_SB(s));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700579 }
580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Jeff Mahoney098297b2014-04-23 10:00:36 -0400582 /*
583 * note, journal_release checks for readonly mount, and can
584 * decide not to do a journal_end
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700585 */
586 journal_release(&th, s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Jeff Mahoney50652272006-09-30 23:28:44 -0700588 reiserfs_free_bitmap_cache(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700590 brelse(SB_BUFFER_WITH_SB(s));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700592 print_statistics(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700594 if (REISERFS_SB(s)->reserved_blocks != 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400595 reiserfs_warning(s, "green-2005", "reserved blocks left %d",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700596 REISERFS_SB(s)->reserved_blocks);
597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +0200599 reiserfs_write_unlock(s);
600 mutex_destroy(&REISERFS_SB(s)->lock);
Jeff Mahoney797d9012014-04-23 10:00:34 -0400601 destroy_workqueue(REISERFS_SB(s)->commit_wq);
Jan Kara4ebc39f2019-12-12 11:30:03 +0100602 kfree(REISERFS_SB(s)->s_jdev);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700603 kfree(s->s_fs_info);
604 s->s_fs_info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605}
606
Christoph Lametere18b8902006-12-06 20:33:20 -0800607static struct kmem_cache *reiserfs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608
609static struct inode *reiserfs_alloc_inode(struct super_block *sb)
610{
611 struct reiserfs_inode_info *ei;
Firo Yang89bfae42015-06-25 15:03:48 -0700612 ei = kmem_cache_alloc(reiserfs_inode_cachep, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (!ei)
614 return NULL;
Al Viro0e4f6a72010-07-04 12:18:57 +0400615 atomic_set(&ei->openers, 0);
616 mutex_init(&ei->tailpack);
Jan Kara53873632014-09-29 15:08:19 +0200617#ifdef CONFIG_QUOTA
618 memset(&ei->i_dquot, 0, sizeof(ei->i_dquot));
619#endif
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return &ei->vfs_inode;
622}
623
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100624static void reiserfs_i_callback(struct rcu_head *head)
625{
626 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100627 kmem_cache_free(reiserfs_inode_cachep, REISERFS_I(inode));
628}
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630static void reiserfs_destroy_inode(struct inode *inode)
631{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100632 call_rcu(&inode->i_rcu, reiserfs_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633}
634
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700635static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700637 struct reiserfs_inode_info *ei = (struct reiserfs_inode_info *)foo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Christoph Lametera35afb82007-05-16 22:10:57 -0700639 INIT_LIST_HEAD(&ei->i_prealloc_list);
640 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700642
Fabian Frederick31e14362014-04-03 14:50:37 -0700643static int __init init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
645 reiserfs_inode_cachep = kmem_cache_create("reiser_inode_cache",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700646 sizeof(struct
647 reiserfs_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800648 0, (SLAB_RECLAIM_ACCOUNT|
Vladimir Davydov5d097052016-01-14 15:18:21 -0800649 SLAB_MEM_SPREAD|
650 SLAB_ACCOUNT),
Paul Mundt20c2df82007-07-20 10:11:58 +0900651 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 if (reiserfs_inode_cachep == NULL)
653 return -ENOMEM;
654 return 0;
655}
656
657static void destroy_inodecache(void)
658{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +1000659 /*
660 * Make sure all delayed rcu free inodes are flushed before we
661 * destroy cache.
662 */
663 rcu_barrier();
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700664 kmem_cache_destroy(reiserfs_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665}
666
667/* we don't mark inodes dirty, we just log them */
Christoph Hellwigaa385722011-05-27 06:53:02 -0400668static void reiserfs_dirty_inode(struct inode *inode, int flags)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700669{
670 struct reiserfs_transaction_handle th;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700672 int err = 0;
Frederic Weisbeckerdc8f6d82009-04-14 05:34:25 +0200673
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700674 if (inode->i_sb->s_flags & MS_RDONLY) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400675 reiserfs_warning(inode->i_sb, "clm-6006",
676 "writing inode %lu on readonly FS",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700677 inode->i_ino);
678 return;
679 }
Jeff Mahoney278f6672013-08-08 17:34:46 -0400680 reiserfs_write_lock(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Jeff Mahoney098297b2014-04-23 10:00:36 -0400682 /*
683 * this is really only used for atime updates, so they don't have
684 * to be included in O_SYNC or fsync
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700685 */
686 err = journal_begin(&th, inode->i_sb, 1);
Frederic Weisbeckerdc8f6d82009-04-14 05:34:25 +0200687 if (err)
688 goto out;
689
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700690 reiserfs_update_sd(&th, inode);
Jeff Mahoney58d85422014-04-23 10:00:38 -0400691 journal_end(&th);
Frederic Weisbeckerdc8f6d82009-04-14 05:34:25 +0200692
693out:
Jeff Mahoney278f6672013-08-08 17:34:46 -0400694 reiserfs_write_unlock(inode->i_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695}
696
Jan Karac3aa0772011-12-21 20:17:10 +0100697static int reiserfs_show_options(struct seq_file *seq, struct dentry *root)
698{
699 struct super_block *s = root->d_sb;
700 struct reiserfs_journal *journal = SB_JOURNAL(s);
701 long opts = REISERFS_SB(s)->s_mount_opt;
702
703 if (opts & (1 << REISERFS_LARGETAIL))
704 seq_puts(seq, ",tails=on");
705 else if (!(opts & (1 << REISERFS_SMALLTAIL)))
706 seq_puts(seq, ",notail");
707 /* tails=small is default so we don't show it */
708
709 if (!(opts & (1 << REISERFS_BARRIER_FLUSH)))
710 seq_puts(seq, ",barrier=none");
711 /* barrier=flush is default so we don't show it */
712
713 if (opts & (1 << REISERFS_ERROR_CONTINUE))
714 seq_puts(seq, ",errors=continue");
715 else if (opts & (1 << REISERFS_ERROR_PANIC))
716 seq_puts(seq, ",errors=panic");
717 /* errors=ro is default so we don't show it */
718
719 if (opts & (1 << REISERFS_DATA_LOG))
720 seq_puts(seq, ",data=journal");
721 else if (opts & (1 << REISERFS_DATA_WRITEBACK))
722 seq_puts(seq, ",data=writeback");
723 /* data=ordered is default so we don't show it */
724
725 if (opts & (1 << REISERFS_ATTRS))
726 seq_puts(seq, ",attrs");
727
728 if (opts & (1 << REISERFS_XATTRS_USER))
729 seq_puts(seq, ",user_xattr");
730
731 if (opts & (1 << REISERFS_EXPOSE_PRIVROOT))
732 seq_puts(seq, ",expose_privroot");
733
734 if (opts & (1 << REISERFS_POSIXACL))
735 seq_puts(seq, ",acl");
736
737 if (REISERFS_SB(s)->s_jdev)
Kees Cooka068acf2015-09-04 15:44:57 -0700738 seq_show_option(seq, "jdev", REISERFS_SB(s)->s_jdev);
Jan Karac3aa0772011-12-21 20:17:10 +0100739
740 if (journal->j_max_commit_age != journal->j_default_max_commit_age)
741 seq_printf(seq, ",commit=%d", journal->j_max_commit_age);
742
743#ifdef CONFIG_QUOTA
744 if (REISERFS_SB(s)->s_qf_names[USRQUOTA])
Kees Cooka068acf2015-09-04 15:44:57 -0700745 seq_show_option(seq, "usrjquota",
746 REISERFS_SB(s)->s_qf_names[USRQUOTA]);
Jan Karac3aa0772011-12-21 20:17:10 +0100747 else if (opts & (1 << REISERFS_USRQUOTA))
748 seq_puts(seq, ",usrquota");
749 if (REISERFS_SB(s)->s_qf_names[GRPQUOTA])
Kees Cooka068acf2015-09-04 15:44:57 -0700750 seq_show_option(seq, "grpjquota",
751 REISERFS_SB(s)->s_qf_names[GRPQUOTA]);
Jan Karac3aa0772011-12-21 20:17:10 +0100752 else if (opts & (1 << REISERFS_GRPQUOTA))
753 seq_puts(seq, ",grpquota");
754 if (REISERFS_SB(s)->s_jquota_fmt) {
755 if (REISERFS_SB(s)->s_jquota_fmt == QFMT_VFS_OLD)
756 seq_puts(seq, ",jqfmt=vfsold");
757 else if (REISERFS_SB(s)->s_jquota_fmt == QFMT_VFS_V0)
758 seq_puts(seq, ",jqfmt=vfsv0");
759 }
760#endif
761
762 /* Block allocator options */
763 if (opts & (1 << REISERFS_NO_BORDER))
764 seq_puts(seq, ",block-allocator=noborder");
765 if (opts & (1 << REISERFS_NO_UNHASHED_RELOCATION))
766 seq_puts(seq, ",block-allocator=no_unhashed_relocation");
767 if (opts & (1 << REISERFS_HASHED_RELOCATION))
768 seq_puts(seq, ",block-allocator=hashed_relocation");
769 if (opts & (1 << REISERFS_TEST4))
770 seq_puts(seq, ",block-allocator=test4");
771 show_alloc_options(seq, s);
772 return 0;
773}
774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775#ifdef CONFIG_QUOTA
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700776static ssize_t reiserfs_quota_write(struct super_block *, int, const char *,
777 size_t, loff_t);
778static ssize_t reiserfs_quota_read(struct super_block *, int, char *, size_t,
779 loff_t);
Jan Kara53873632014-09-29 15:08:19 +0200780
781static struct dquot **reiserfs_get_dquots(struct inode *inode)
782{
783 return REISERFS_I(inode)->i_dquot;
784}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785#endif
786
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800787static const struct super_operations reiserfs_sops = {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700788 .alloc_inode = reiserfs_alloc_inode,
789 .destroy_inode = reiserfs_destroy_inode,
790 .write_inode = reiserfs_write_inode,
791 .dirty_inode = reiserfs_dirty_inode,
Al Viro845a2cc2010-06-07 11:37:37 -0400792 .evict_inode = reiserfs_evict_inode,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700793 .put_super = reiserfs_put_super,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700794 .sync_fs = reiserfs_sync_fs,
Takashi Satoc4be0c12009-01-09 16:40:58 -0800795 .freeze_fs = reiserfs_freeze,
796 .unfreeze_fs = reiserfs_unfreeze,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700797 .statfs = reiserfs_statfs,
798 .remount_fs = reiserfs_remount,
Jan Karac3aa0772011-12-21 20:17:10 +0100799 .show_options = reiserfs_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800#ifdef CONFIG_QUOTA
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700801 .quota_read = reiserfs_quota_read,
802 .quota_write = reiserfs_quota_write,
Jan Kara53873632014-09-29 15:08:19 +0200803 .get_dquots = reiserfs_get_dquots,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804#endif
805};
806
807#ifdef CONFIG_QUOTA
808#define QTYPE2NAME(t) ((t)==USRQUOTA?"user":"group")
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810static int reiserfs_write_dquot(struct dquot *);
811static int reiserfs_acquire_dquot(struct dquot *);
812static int reiserfs_release_dquot(struct dquot *);
813static int reiserfs_mark_dquot_dirty(struct dquot *);
814static int reiserfs_write_info(struct super_block *, int);
Jan Karaf00c9e42010-09-15 17:38:58 +0200815static int reiserfs_quota_on(struct super_block *, int, int, struct path *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Alexey Dobriyan61e225d2009-09-21 17:01:08 -0700817static const struct dquot_operations reiserfs_quota_operations = {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700818 .write_dquot = reiserfs_write_dquot,
819 .acquire_dquot = reiserfs_acquire_dquot,
820 .release_dquot = reiserfs_release_dquot,
821 .mark_dirty = reiserfs_mark_dquot_dirty,
822 .write_info = reiserfs_write_info,
Jan Kara41030032008-11-25 15:31:33 +0100823 .alloc_dquot = dquot_alloc,
824 .destroy_dquot = dquot_destroy,
Jan Karabe6257b2016-01-25 19:24:50 +0100825 .get_next_id = dquot_get_next_id,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826};
827
Alexey Dobriyan0d54b212009-09-21 17:01:09 -0700828static const struct quotactl_ops reiserfs_qctl_operations = {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700829 .quota_on = reiserfs_quota_on,
Christoph Hellwig287a8092010-05-19 07:16:45 -0400830 .quota_off = dquot_quota_off,
831 .quota_sync = dquot_quota_sync,
Jan Kara0a2403392014-11-19 00:42:09 +0100832 .get_state = dquot_get_state,
Christoph Hellwig287a8092010-05-19 07:16:45 -0400833 .set_info = dquot_set_dqinfo,
834 .get_dqblk = dquot_get_dqblk,
835 .set_dqblk = dquot_set_dqblk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836};
837#endif
838
Christoph Hellwig39655162007-10-21 16:42:17 -0700839static const struct export_operations reiserfs_export_ops = {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700840 .encode_fh = reiserfs_encode_fh,
Christoph Hellwigbe55caf2007-10-21 16:42:13 -0700841 .fh_to_dentry = reiserfs_fh_to_dentry,
842 .fh_to_parent = reiserfs_fh_to_parent,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700843 .get_parent = reiserfs_get_parent,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700844};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Jeff Mahoney098297b2014-04-23 10:00:36 -0400846/*
847 * this struct is used in reiserfs_getopt () for containing the value for
848 * those mount options that have values rather than being toggles.
849 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850typedef struct {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700851 char *value;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400852 /*
853 * bitmask which is to set on mount_options bitmask
854 * when this value is found, 0 is no bits are to be changed.
855 */
856 int setmask;
857 /*
858 * bitmask which is to clear on mount_options bitmask
859 * when this value is found, 0 is no bits are to be changed.
860 * This is applied BEFORE setmask
861 */
862 int clrmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863} arg_desc_t;
864
865/* Set this bit in arg_required to allow empty arguments */
866#define REISERFS_OPT_ALLOWEMPTY 31
867
Jeff Mahoney098297b2014-04-23 10:00:36 -0400868/*
869 * this struct is used in reiserfs_getopt() for describing the
870 * set of reiserfs mount options
871 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872typedef struct {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700873 char *option_name;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400874
875 /* 0 if argument is not required, not 0 otherwise */
876 int arg_required;
877
878 /* list of values accepted by an option */
879 const arg_desc_t *values;
880
881 /*
882 * bitmask which is to set on mount_options bitmask
883 * when this value is found, 0 is no bits are to be changed.
884 */
885 int setmask;
886
887 /*
888 * bitmask which is to clear on mount_options bitmask
889 * when this value is found, 0 is no bits are to be changed.
890 * This is applied BEFORE setmask
891 */
892 int clrmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893} opt_desc_t;
894
895/* possible values for -o data= */
896static const arg_desc_t logging_mode[] = {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700897 {"ordered", 1 << REISERFS_DATA_ORDERED,
898 (1 << REISERFS_DATA_LOG | 1 << REISERFS_DATA_WRITEBACK)},
899 {"journal", 1 << REISERFS_DATA_LOG,
900 (1 << REISERFS_DATA_ORDERED | 1 << REISERFS_DATA_WRITEBACK)},
901 {"writeback", 1 << REISERFS_DATA_WRITEBACK,
902 (1 << REISERFS_DATA_ORDERED | 1 << REISERFS_DATA_LOG)},
Vladimir V. Savelievcd02b962006-03-25 03:07:15 -0800903 {.value = NULL}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904};
905
906/* possible values for -o barrier= */
907static const arg_desc_t barrier_mode[] = {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700908 {"none", 1 << REISERFS_BARRIER_NONE, 1 << REISERFS_BARRIER_FLUSH},
909 {"flush", 1 << REISERFS_BARRIER_FLUSH, 1 << REISERFS_BARRIER_NONE},
Vladimir V. Savelievcd02b962006-03-25 03:07:15 -0800910 {.value = NULL}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911};
912
Jeff Mahoney098297b2014-04-23 10:00:36 -0400913/*
914 * possible values for "-o block-allocator=" and bits which are to be set in
915 * s_mount_opt of reiserfs specific part of in-core super block
916 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917static const arg_desc_t balloc[] = {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700918 {"noborder", 1 << REISERFS_NO_BORDER, 0},
919 {"border", 0, 1 << REISERFS_NO_BORDER},
920 {"no_unhashed_relocation", 1 << REISERFS_NO_UNHASHED_RELOCATION, 0},
921 {"hashed_relocation", 1 << REISERFS_HASHED_RELOCATION, 0},
922 {"test4", 1 << REISERFS_TEST4, 0},
923 {"notest4", 0, 1 << REISERFS_TEST4},
924 {NULL, 0, 0}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925};
926
927static const arg_desc_t tails[] = {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700928 {"on", 1 << REISERFS_LARGETAIL, 1 << REISERFS_SMALLTAIL},
929 {"off", 0, (1 << REISERFS_LARGETAIL) | (1 << REISERFS_SMALLTAIL)},
930 {"small", 1 << REISERFS_SMALLTAIL, 1 << REISERFS_LARGETAIL},
931 {NULL, 0, 0}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932};
933
934static const arg_desc_t error_actions[] = {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700935 {"panic", 1 << REISERFS_ERROR_PANIC,
936 (1 << REISERFS_ERROR_RO | 1 << REISERFS_ERROR_CONTINUE)},
937 {"ro-remount", 1 << REISERFS_ERROR_RO,
938 (1 << REISERFS_ERROR_PANIC | 1 << REISERFS_ERROR_CONTINUE)},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939#ifdef REISERFS_JOURNAL_ERROR_ALLOWS_NO_LOG
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700940 {"continue", 1 << REISERFS_ERROR_CONTINUE,
941 (1 << REISERFS_ERROR_PANIC | 1 << REISERFS_ERROR_RO)},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942#endif
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700943 {NULL, 0, 0},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944};
945
Jeff Mahoney098297b2014-04-23 10:00:36 -0400946/*
947 * proceed only one option from a list *cur - string containing of mount
948 * options
949 * opts - array of options which are accepted
950 * opt_arg - if option is found and requires an argument and if it is specifed
951 * in the input - pointer to the argument is stored here
952 * bit_flags - if option requires to set a certain bit - it is set here
953 * return -1 if unknown option is found, opt->arg_required otherwise
954 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700955static int reiserfs_getopt(struct super_block *s, char **cur, opt_desc_t * opts,
956 char **opt_arg, unsigned long *bit_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700958 char *p;
Jeff Mahoney098297b2014-04-23 10:00:36 -0400959 /*
960 * foo=bar,
961 * ^ ^ ^
962 * | | +-- option_end
963 * | +-- arg_start
964 * +-- option_start
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700965 */
966 const opt_desc_t *opt;
967 const arg_desc_t *arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700969 p = *cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700971 /* assume argument cannot contain commas */
972 *cur = strchr(p, ',');
973 if (*cur) {
974 *(*cur) = '\0';
975 (*cur)++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700978 if (!strncmp(p, "alloc=", 6)) {
Jeff Mahoney098297b2014-04-23 10:00:36 -0400979 /*
980 * Ugly special case, probably we should redo options
981 * parser so that it can understand several arguments for
982 * some options, also so that it can fill several bitfields
983 * with option values.
984 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700985 if (reiserfs_parse_alloc_options(s, p + 6)) {
986 return -1;
987 } else {
988 return 0;
989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -0700991
992 /* for every option in the list */
993 for (opt = opts; opt->option_name; opt++) {
994 if (!strncmp(p, opt->option_name, strlen(opt->option_name))) {
995 if (bit_flags) {
996 if (opt->clrmask ==
997 (1 << REISERFS_UNSUPPORTED_OPT))
Jeff Mahoney45b03d52009-03-30 14:02:21 -0400998 reiserfs_warning(s, "super-6500",
999 "%s not supported.\n",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001000 p);
1001 else
1002 *bit_flags &= ~opt->clrmask;
1003 if (opt->setmask ==
1004 (1 << REISERFS_UNSUPPORTED_OPT))
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001005 reiserfs_warning(s, "super-6501",
1006 "%s not supported.\n",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001007 p);
1008 else
1009 *bit_flags |= opt->setmask;
1010 }
1011 break;
1012 }
1013 }
1014 if (!opt->option_name) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001015 reiserfs_warning(s, "super-6502",
1016 "unknown mount option \"%s\"", p);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001017 return -1;
1018 }
1019
1020 p += strlen(opt->option_name);
1021 switch (*p) {
1022 case '=':
1023 if (!opt->arg_required) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001024 reiserfs_warning(s, "super-6503",
1025 "the option \"%s\" does not "
1026 "require an argument\n",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001027 opt->option_name);
1028 return -1;
1029 }
1030 break;
1031
1032 case 0:
1033 if (opt->arg_required) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001034 reiserfs_warning(s, "super-6504",
1035 "the option \"%s\" requires an "
1036 "argument\n", opt->option_name);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001037 return -1;
1038 }
1039 break;
1040 default:
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001041 reiserfs_warning(s, "super-6505",
1042 "head of option \"%s\" is only correct\n",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001043 opt->option_name);
1044 return -1;
1045 }
1046
Jeff Mahoney098297b2014-04-23 10:00:36 -04001047 /*
1048 * move to the argument, or to next option if argument is not
1049 * required
1050 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001051 p++;
1052
1053 if (opt->arg_required
1054 && !(opt->arg_required & (1 << REISERFS_OPT_ALLOWEMPTY))
1055 && !strlen(p)) {
1056 /* this catches "option=," if not allowed */
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001057 reiserfs_warning(s, "super-6506",
1058 "empty argument for \"%s\"\n",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001059 opt->option_name);
1060 return -1;
1061 }
1062
1063 if (!opt->values) {
1064 /* *=NULLopt_arg contains pointer to argument */
1065 *opt_arg = p;
1066 return opt->arg_required & ~(1 << REISERFS_OPT_ALLOWEMPTY);
1067 }
1068
1069 /* values possible for this option are listed in opt->values */
1070 for (arg = opt->values; arg->value; arg++) {
1071 if (!strcmp(p, arg->value)) {
1072 if (bit_flags) {
1073 *bit_flags &= ~arg->clrmask;
1074 *bit_flags |= arg->setmask;
1075 }
1076 return opt->arg_required;
1077 }
1078 }
1079
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001080 reiserfs_warning(s, "super-6506",
1081 "bad value \"%s\" for option \"%s\"\n", p,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001082 opt->option_name);
1083 return -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084}
1085
1086/* returns 0 if something is wrong in option string, 1 - otherwise */
Jeff Mahoney098297b2014-04-23 10:00:36 -04001087static int reiserfs_parse_options(struct super_block *s,
1088
1089 /* string given via mount's -o */
1090 char *options,
1091
1092 /*
1093 * after the parsing phase, contains the
1094 * collection of bitflags defining what
1095 * mount options were selected.
1096 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001097 unsigned long *mount_options,
Jeff Mahoney098297b2014-04-23 10:00:36 -04001098
1099 /* strtol-ed from NNN of resize=NNN */
1100 unsigned long *blocks,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001101 char **jdev_name,
Jan Kara00b44192008-07-25 01:46:38 -07001102 unsigned int *commit_max_age,
1103 char **qf_names,
1104 unsigned int *qfmt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001106 int c;
1107 char *arg = NULL;
1108 char *pos;
1109 opt_desc_t opts[] = {
Jeff Mahoney098297b2014-04-23 10:00:36 -04001110 /*
1111 * Compatibility stuff, so that -o notail for old
1112 * setups still work
1113 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001114 {"tails",.arg_required = 't',.values = tails},
1115 {"notail",.clrmask =
1116 (1 << REISERFS_LARGETAIL) | (1 << REISERFS_SMALLTAIL)},
1117 {"conv",.setmask = 1 << REISERFS_CONVERT},
1118 {"attrs",.setmask = 1 << REISERFS_ATTRS},
1119 {"noattrs",.clrmask = 1 << REISERFS_ATTRS},
Jeff Mahoney73422812009-05-10 16:05:39 -04001120 {"expose_privroot", .setmask = 1 << REISERFS_EXPOSE_PRIVROOT},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121#ifdef CONFIG_REISERFS_FS_XATTR
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001122 {"user_xattr",.setmask = 1 << REISERFS_XATTRS_USER},
1123 {"nouser_xattr",.clrmask = 1 << REISERFS_XATTRS_USER},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124#else
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001125 {"user_xattr",.setmask = 1 << REISERFS_UNSUPPORTED_OPT},
1126 {"nouser_xattr",.clrmask = 1 << REISERFS_UNSUPPORTED_OPT},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127#endif
1128#ifdef CONFIG_REISERFS_FS_POSIX_ACL
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001129 {"acl",.setmask = 1 << REISERFS_POSIXACL},
1130 {"noacl",.clrmask = 1 << REISERFS_POSIXACL},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131#else
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001132 {"acl",.setmask = 1 << REISERFS_UNSUPPORTED_OPT},
1133 {"noacl",.clrmask = 1 << REISERFS_UNSUPPORTED_OPT},
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134#endif
Vladimir V. Savelievcd02b962006-03-25 03:07:15 -08001135 {.option_name = "nolog"},
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001136 {"replayonly",.setmask = 1 << REPLAYONLY},
1137 {"block-allocator",.arg_required = 'a',.values = balloc},
1138 {"data",.arg_required = 'd',.values = logging_mode},
1139 {"barrier",.arg_required = 'b',.values = barrier_mode},
1140 {"resize",.arg_required = 'r',.values = NULL},
1141 {"jdev",.arg_required = 'j',.values = NULL},
1142 {"nolargeio",.arg_required = 'w',.values = NULL},
1143 {"commit",.arg_required = 'c',.values = NULL},
Jan Karac3aa0772011-12-21 20:17:10 +01001144 {"usrquota",.setmask = 1 << REISERFS_USRQUOTA},
1145 {"grpquota",.setmask = 1 << REISERFS_GRPQUOTA},
1146 {"noquota",.clrmask = 1 << REISERFS_USRQUOTA | 1 << REISERFS_GRPQUOTA},
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001147 {"errors",.arg_required = 'e',.values = error_actions},
1148 {"usrjquota",.arg_required =
1149 'u' | (1 << REISERFS_OPT_ALLOWEMPTY),.values = NULL},
1150 {"grpjquota",.arg_required =
1151 'g' | (1 << REISERFS_OPT_ALLOWEMPTY),.values = NULL},
1152 {"jqfmt",.arg_required = 'f',.values = NULL},
Vladimir V. Savelievcd02b962006-03-25 03:07:15 -08001153 {.option_name = NULL}
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001154 };
1155
1156 *blocks = 0;
1157 if (!options || !*options)
Jeff Mahoney098297b2014-04-23 10:00:36 -04001158 /*
1159 * use default configuration: create tails, journaling on, no
1160 * conversion to newest format
1161 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001162 return 1;
1163
1164 for (pos = options; pos;) {
1165 c = reiserfs_getopt(s, &pos, opts, &arg, mount_options);
1166 if (c == -1)
1167 /* wrong option is given */
1168 return 0;
1169
1170 if (c == 'r') {
1171 char *p;
1172
1173 p = NULL;
1174 /* "resize=NNN" or "resize=auto" */
1175
1176 if (!strcmp(arg, "auto")) {
1177 /* From JFS code, to auto-get the size. */
1178 *blocks =
1179 s->s_bdev->bd_inode->i_size >> s->
1180 s_blocksize_bits;
1181 } else {
1182 *blocks = simple_strtoul(arg, &p, 0);
1183 if (*p != '\0') {
1184 /* NNN does not look like a number */
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001185 reiserfs_warning(s, "super-6507",
1186 "bad value %s for "
1187 "-oresize\n", arg);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001188 return 0;
1189 }
1190 }
1191 }
1192
1193 if (c == 'c') {
1194 char *p = NULL;
1195 unsigned long val = simple_strtoul(arg, &p, 0);
1196 /* commit=NNN (time in seconds) */
1197 if (*p != '\0' || val >= (unsigned int)-1) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001198 reiserfs_warning(s, "super-6508",
1199 "bad value %s for -ocommit\n",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001200 arg);
1201 return 0;
1202 }
1203 *commit_max_age = (unsigned int)val;
1204 }
1205
1206 if (c == 'w') {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001207 reiserfs_warning(s, "super-6509", "nolargeio option "
1208 "is no longer supported");
Adrian Bunk36b756f2006-09-27 01:50:50 -07001209 return 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001210 }
1211
1212 if (c == 'j') {
1213 if (arg && *arg && jdev_name) {
Jeff Mahoney098297b2014-04-23 10:00:36 -04001214 /* Hm, already assigned? */
1215 if (*jdev_name) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001216 reiserfs_warning(s, "super-6510",
1217 "journal device was "
1218 "already specified to "
1219 "be %s", *jdev_name);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001220 return 0;
1221 }
1222 *jdev_name = arg;
1223 }
1224 }
1225#ifdef CONFIG_QUOTA
1226 if (c == 'u' || c == 'g') {
1227 int qtype = c == 'u' ? USRQUOTA : GRPQUOTA;
1228
Jan Kara6929f892008-08-20 18:16:36 +02001229 if (sb_any_quota_loaded(s) &&
Jan Kara00b44192008-07-25 01:46:38 -07001230 (!*arg != !REISERFS_SB(s)->s_qf_names[qtype])) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001231 reiserfs_warning(s, "super-6511",
1232 "cannot change journaled "
1233 "quota options when quota "
1234 "turned on.");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001235 return 0;
1236 }
1237 if (*arg) { /* Some filename specified? */
1238 if (REISERFS_SB(s)->s_qf_names[qtype]
1239 && strcmp(REISERFS_SB(s)->s_qf_names[qtype],
1240 arg)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001241 reiserfs_warning(s, "super-6512",
1242 "%s quota file "
1243 "already specified.",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001244 QTYPE2NAME(qtype));
1245 return 0;
1246 }
1247 if (strchr(arg, '/')) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001248 reiserfs_warning(s, "super-6513",
1249 "quotafile must be "
1250 "on filesystem root.");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001251 return 0;
1252 }
Ionut-Gabriel Raduaf591ad2013-03-10 15:06:23 +02001253 qf_names[qtype] = kstrdup(arg, GFP_KERNEL);
Jan Kara00b44192008-07-25 01:46:38 -07001254 if (!qf_names[qtype]) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001255 reiserfs_warning(s, "reiserfs-2502",
1256 "not enough memory "
1257 "for storing "
1258 "quotafile name.");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001259 return 0;
1260 }
Jan Karac3aa0772011-12-21 20:17:10 +01001261 if (qtype == USRQUOTA)
1262 *mount_options |= 1 << REISERFS_USRQUOTA;
1263 else
1264 *mount_options |= 1 << REISERFS_GRPQUOTA;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001265 } else {
Jan Kara00b44192008-07-25 01:46:38 -07001266 if (qf_names[qtype] !=
1267 REISERFS_SB(s)->s_qf_names[qtype])
1268 kfree(qf_names[qtype]);
1269 qf_names[qtype] = NULL;
Jan Karac3aa0772011-12-21 20:17:10 +01001270 if (qtype == USRQUOTA)
1271 *mount_options &= ~(1 << REISERFS_USRQUOTA);
1272 else
1273 *mount_options &= ~(1 << REISERFS_GRPQUOTA);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001274 }
1275 }
1276 if (c == 'f') {
1277 if (!strcmp(arg, "vfsold"))
Jan Kara00b44192008-07-25 01:46:38 -07001278 *qfmt = QFMT_VFS_OLD;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001279 else if (!strcmp(arg, "vfsv0"))
Jan Kara00b44192008-07-25 01:46:38 -07001280 *qfmt = QFMT_VFS_V0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001281 else {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001282 reiserfs_warning(s, "super-6514",
1283 "unknown quota format "
1284 "specified.");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001285 return 0;
1286 }
Jan Kara6929f892008-08-20 18:16:36 +02001287 if (sb_any_quota_loaded(s) &&
Jan Kara00b44192008-07-25 01:46:38 -07001288 *qfmt != REISERFS_SB(s)->s_jquota_fmt) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001289 reiserfs_warning(s, "super-6515",
1290 "cannot change journaled "
1291 "quota options when quota "
1292 "turned on.");
Jan Kara00b44192008-07-25 01:46:38 -07001293 return 0;
1294 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001295 }
1296#else
1297 if (c == 'u' || c == 'g' || c == 'f') {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001298 reiserfs_warning(s, "reiserfs-2503", "journaled "
1299 "quota options not supported.");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001300 return 0;
1301 }
1302#endif
1303 }
1304
1305#ifdef CONFIG_QUOTA
Jan Kara00b44192008-07-25 01:46:38 -07001306 if (!REISERFS_SB(s)->s_jquota_fmt && !*qfmt
1307 && (qf_names[USRQUOTA] || qf_names[GRPQUOTA])) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001308 reiserfs_warning(s, "super-6515",
1309 "journaled quota format not specified.");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001310 return 0;
1311 }
Jan Karac3aa0772011-12-21 20:17:10 +01001312 if ((!(*mount_options & (1 << REISERFS_USRQUOTA)) &&
1313 sb_has_quota_loaded(s, USRQUOTA)) ||
1314 (!(*mount_options & (1 << REISERFS_GRPQUOTA)) &&
1315 sb_has_quota_loaded(s, GRPQUOTA))) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001316 reiserfs_warning(s, "super-6516", "quota options must "
1317 "be present when quota is turned on.");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001318 return 0;
1319 }
1320#endif
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323}
1324
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001325static void switch_data_mode(struct super_block *s, unsigned long mode)
1326{
1327 REISERFS_SB(s)->s_mount_opt &= ~((1 << REISERFS_DATA_LOG) |
1328 (1 << REISERFS_DATA_ORDERED) |
1329 (1 << REISERFS_DATA_WRITEBACK));
1330 REISERFS_SB(s)->s_mount_opt |= (1 << mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
1333static void handle_data_mode(struct super_block *s, unsigned long mount_options)
1334{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001335 if (mount_options & (1 << REISERFS_DATA_LOG)) {
1336 if (!reiserfs_data_log(s)) {
1337 switch_data_mode(s, REISERFS_DATA_LOG);
1338 reiserfs_info(s, "switching to journaled data mode\n");
1339 }
1340 } else if (mount_options & (1 << REISERFS_DATA_ORDERED)) {
1341 if (!reiserfs_data_ordered(s)) {
1342 switch_data_mode(s, REISERFS_DATA_ORDERED);
1343 reiserfs_info(s, "switching to ordered data mode\n");
1344 }
1345 } else if (mount_options & (1 << REISERFS_DATA_WRITEBACK)) {
1346 if (!reiserfs_data_writeback(s)) {
1347 switch_data_mode(s, REISERFS_DATA_WRITEBACK);
1348 reiserfs_info(s, "switching to writeback data mode\n");
1349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351}
1352
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001353static void handle_barrier_mode(struct super_block *s, unsigned long bits)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001355 int flush = (1 << REISERFS_BARRIER_FLUSH);
1356 int none = (1 << REISERFS_BARRIER_NONE);
1357 int all_barrier = flush | none;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001359 if (bits & all_barrier) {
1360 REISERFS_SB(s)->s_mount_opt &= ~all_barrier;
1361 if (bits & flush) {
1362 REISERFS_SB(s)->s_mount_opt |= flush;
1363 printk("reiserfs: enabling write barrier flush mode\n");
1364 } else if (bits & none) {
1365 REISERFS_SB(s)->s_mount_opt |= none;
1366 printk("reiserfs: write barriers turned off\n");
1367 }
1368 }
1369}
1370
1371static void handle_attrs(struct super_block *s)
1372{
1373 struct reiserfs_super_block *rs = SB_DISK_SUPER_BLOCK(s);
1374
1375 if (reiserfs_attrs(s)) {
1376 if (old_format_only(s)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001377 reiserfs_warning(s, "super-6517", "cannot support "
1378 "attributes on 3.5.x disk format");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001379 REISERFS_SB(s)->s_mount_opt &= ~(1 << REISERFS_ATTRS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 return;
1381 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001382 if (!(le32_to_cpu(rs->s_flags) & reiserfs_attrs_cleared)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001383 reiserfs_warning(s, "super-6518", "cannot support "
1384 "attributes until flag is set in "
1385 "super-block");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001386 REISERFS_SB(s)->s_mount_opt &= ~(1 << REISERFS_ATTRS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
1388 }
1389}
1390
Jan Kara00b44192008-07-25 01:46:38 -07001391#ifdef CONFIG_QUOTA
1392static void handle_quota_files(struct super_block *s, char **qf_names,
1393 unsigned int *qfmt)
1394{
1395 int i;
1396
Jan Karaaca60612014-09-10 20:57:45 +02001397 for (i = 0; i < REISERFS_MAXQUOTAS; i++) {
Jan Kara00b44192008-07-25 01:46:38 -07001398 if (qf_names[i] != REISERFS_SB(s)->s_qf_names[i])
1399 kfree(REISERFS_SB(s)->s_qf_names[i]);
1400 REISERFS_SB(s)->s_qf_names[i] = qf_names[i];
1401 }
Jan Karaa06d7892011-12-21 17:35:34 +01001402 if (*qfmt)
1403 REISERFS_SB(s)->s_jquota_fmt = *qfmt;
Jan Kara00b44192008-07-25 01:46:38 -07001404}
1405#endif
1406
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001407static int reiserfs_remount(struct super_block *s, int *mount_flags, char *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001409 struct reiserfs_super_block *rs;
1410 struct reiserfs_transaction_handle th;
1411 unsigned long blocks;
1412 unsigned long mount_options = REISERFS_SB(s)->s_mount_opt;
1413 unsigned long safe_mask = 0;
1414 unsigned int commit_max_age = (unsigned int)-1;
1415 struct reiserfs_journal *journal = SB_JOURNAL(s);
Mikulas Patockab9d89052016-05-24 22:51:27 +02001416 char *new_opts;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001417 int err;
Jan Karaaca60612014-09-10 20:57:45 +02001418 char *qf_names[REISERFS_MAXQUOTAS];
Jan Kara00b44192008-07-25 01:46:38 -07001419 unsigned int qfmt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420#ifdef CONFIG_QUOTA
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001421 int i;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001422#endif
Jan Kara00b44192008-07-25 01:46:38 -07001423
Mikulas Patockab9d89052016-05-24 22:51:27 +02001424 new_opts = kstrdup(arg, GFP_KERNEL);
1425 if (arg && !new_opts)
1426 return -ENOMEM;
1427
Theodore Ts'o02b99842014-03-13 10:14:33 -04001428 sync_filesystem(s);
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001429 reiserfs_write_lock(s);
1430
1431#ifdef CONFIG_QUOTA
Jan Kara00b44192008-07-25 01:46:38 -07001432 memcpy(qf_names, REISERFS_SB(s)->s_qf_names, sizeof(qf_names));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433#endif
1434
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001435 rs = SB_DISK_SUPER_BLOCK(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001437 if (!reiserfs_parse_options
Jan Kara00b44192008-07-25 01:46:38 -07001438 (s, arg, &mount_options, &blocks, NULL, &commit_max_age,
1439 qf_names, &qfmt)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440#ifdef CONFIG_QUOTA
Jan Karaaca60612014-09-10 20:57:45 +02001441 for (i = 0; i < REISERFS_MAXQUOTAS; i++)
Jan Kara00b44192008-07-25 01:46:38 -07001442 if (qf_names[i] != REISERFS_SB(s)->s_qf_names[i])
1443 kfree(qf_names[i]);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001444#endif
Miklos Szeredicdf6ccc2008-02-08 04:21:47 -08001445 err = -EINVAL;
Jeff Mahoney4c051412013-08-08 17:27:19 -04001446 goto out_err_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 }
Jan Kara00b44192008-07-25 01:46:38 -07001448#ifdef CONFIG_QUOTA
1449 handle_quota_files(s, qf_names, &qfmt);
1450#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001452 handle_attrs(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001454 /* Add options that are safe here */
1455 safe_mask |= 1 << REISERFS_SMALLTAIL;
1456 safe_mask |= 1 << REISERFS_LARGETAIL;
1457 safe_mask |= 1 << REISERFS_NO_BORDER;
1458 safe_mask |= 1 << REISERFS_NO_UNHASHED_RELOCATION;
1459 safe_mask |= 1 << REISERFS_HASHED_RELOCATION;
1460 safe_mask |= 1 << REISERFS_TEST4;
1461 safe_mask |= 1 << REISERFS_ATTRS;
1462 safe_mask |= 1 << REISERFS_XATTRS_USER;
1463 safe_mask |= 1 << REISERFS_POSIXACL;
1464 safe_mask |= 1 << REISERFS_BARRIER_FLUSH;
1465 safe_mask |= 1 << REISERFS_BARRIER_NONE;
1466 safe_mask |= 1 << REISERFS_ERROR_RO;
1467 safe_mask |= 1 << REISERFS_ERROR_CONTINUE;
1468 safe_mask |= 1 << REISERFS_ERROR_PANIC;
Jan Karac3aa0772011-12-21 20:17:10 +01001469 safe_mask |= 1 << REISERFS_USRQUOTA;
1470 safe_mask |= 1 << REISERFS_GRPQUOTA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
Jeff Mahoney098297b2014-04-23 10:00:36 -04001472 /*
1473 * Update the bitmask, taking care to keep
1474 * the bits we're not allowed to change here
1475 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001476 REISERFS_SB(s)->s_mount_opt =
1477 (REISERFS_SB(s)->
1478 s_mount_opt & ~safe_mask) | (mount_options & safe_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001480 if (commit_max_age != 0 && commit_max_age != (unsigned int)-1) {
1481 journal->j_max_commit_age = commit_max_age;
1482 journal->j_max_trans_age = commit_max_age;
1483 } else if (commit_max_age == 0) {
1484 /* 0 means restore defaults. */
1485 journal->j_max_commit_age = journal->j_default_max_commit_age;
1486 journal->j_max_trans_age = JOURNAL_MAX_TRANS_AGE;
1487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001489 if (blocks) {
Miklos Szeredicdf6ccc2008-02-08 04:21:47 -08001490 err = reiserfs_resize(s, blocks);
1491 if (err != 0)
Jeff Mahoney4c051412013-08-08 17:27:19 -04001492 goto out_err_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001493 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001495 if (*mount_flags & MS_RDONLY) {
Jeff Mahoney4c051412013-08-08 17:27:19 -04001496 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001497 reiserfs_xattr_init(s, *mount_flags);
1498 /* remount read-only */
1499 if (s->s_flags & MS_RDONLY)
1500 /* it is read-only already */
Jeff Mahoney4c051412013-08-08 17:27:19 -04001501 goto out_ok_unlocked;
Christoph Hellwigc79d9672010-05-19 07:16:40 -04001502
Christoph Hellwig0f0dd622010-05-19 07:16:41 -04001503 err = dquot_suspend(s, -1);
1504 if (err < 0)
Christoph Hellwigc79d9672010-05-19 07:16:40 -04001505 goto out_err;
Christoph Hellwigc79d9672010-05-19 07:16:40 -04001506
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001507 /* try to remount file system with read-only permissions */
1508 if (sb_umount_state(rs) == REISERFS_VALID_FS
1509 || REISERFS_SB(s)->s_mount_state != REISERFS_VALID_FS) {
Jeff Mahoney4c051412013-08-08 17:27:19 -04001510 goto out_ok_unlocked;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
Jeff Mahoney4c051412013-08-08 17:27:19 -04001513 reiserfs_write_lock(s);
1514
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001515 err = journal_begin(&th, s, 10);
1516 if (err)
Jeff Mahoney4c051412013-08-08 17:27:19 -04001517 goto out_err_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001519 /* Mounting a rw partition read-only. */
1520 reiserfs_prepare_for_journal(s, SB_BUFFER_WITH_SB(s), 1);
1521 set_sb_umount_state(rs, REISERFS_SB(s)->s_mount_state);
Jeff Mahoney09f1b802014-04-23 10:00:39 -04001522 journal_mark_dirty(&th, SB_BUFFER_WITH_SB(s));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001523 } else {
1524 /* remount read-write */
1525 if (!(s->s_flags & MS_RDONLY)) {
Jeff Mahoney4c051412013-08-08 17:27:19 -04001526 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001527 reiserfs_xattr_init(s, *mount_flags);
Jeff Mahoney4c051412013-08-08 17:27:19 -04001528 goto out_ok_unlocked; /* We are read-write already */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001529 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Miklos Szeredicdf6ccc2008-02-08 04:21:47 -08001531 if (reiserfs_is_journal_aborted(journal)) {
1532 err = journal->j_errno;
Jeff Mahoney4c051412013-08-08 17:27:19 -04001533 goto out_err_unlock;
Miklos Szeredicdf6ccc2008-02-08 04:21:47 -08001534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001536 handle_data_mode(s, mount_options);
1537 handle_barrier_mode(s, mount_options);
1538 REISERFS_SB(s)->s_mount_state = sb_umount_state(rs);
Jeff Mahoney098297b2014-04-23 10:00:36 -04001539
1540 /* now it is safe to call journal_begin */
1541 s->s_flags &= ~MS_RDONLY;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001542 err = journal_begin(&th, s, 10);
1543 if (err)
Jeff Mahoney4c051412013-08-08 17:27:19 -04001544 goto out_err_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001546 /* Mount a partition which is read-only, read-write */
1547 reiserfs_prepare_for_journal(s, SB_BUFFER_WITH_SB(s), 1);
1548 REISERFS_SB(s)->s_mount_state = sb_umount_state(rs);
1549 s->s_flags &= ~MS_RDONLY;
1550 set_sb_umount_state(rs, REISERFS_ERROR_FS);
Jeff Mahoney702d21c2009-03-30 14:02:16 -04001551 if (!old_format_only(s))
1552 set_sb_mnt_count(rs, sb_mnt_count(rs) + 1);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001553 /* mark_buffer_dirty (SB_BUFFER_WITH_SB (s), 1); */
Jeff Mahoney09f1b802014-04-23 10:00:39 -04001554 journal_mark_dirty(&th, SB_BUFFER_WITH_SB(s));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001555 REISERFS_SB(s)->s_mount_state = REISERFS_VALID_FS;
1556 }
1557 /* this will force a full flush of all journal lists */
1558 SB_JOURNAL(s)->j_must_wait = 1;
Jeff Mahoney58d85422014-04-23 10:00:38 -04001559 err = journal_end(&th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001560 if (err)
Jeff Mahoney4c051412013-08-08 17:27:19 -04001561 goto out_err_unlock;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001562
Jeff Mahoney4c051412013-08-08 17:27:19 -04001563 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001564 if (!(*mount_flags & MS_RDONLY)) {
Christoph Hellwig0f0dd622010-05-19 07:16:41 -04001565 dquot_resume(s, -1);
Jan Kara3bb3e1f2012-11-13 14:55:52 +01001566 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001567 finish_unfinished(s);
Jeff Mahoney4c051412013-08-08 17:27:19 -04001568 reiserfs_write_unlock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001569 reiserfs_xattr_init(s, *mount_flags);
1570 }
1571
Jeff Mahoney4c051412013-08-08 17:27:19 -04001572out_ok_unlocked:
Mikulas Patockab9d89052016-05-24 22:51:27 +02001573 if (new_opts)
1574 replace_mount_options(s, new_opts);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001575 return 0;
Miklos Szeredicdf6ccc2008-02-08 04:21:47 -08001576
Jeff Mahoney4c051412013-08-08 17:27:19 -04001577out_err_unlock:
Jan Kara3bb3e1f2012-11-13 14:55:52 +01001578 reiserfs_write_unlock(s);
Miklos Szeredicdf6ccc2008-02-08 04:21:47 -08001579out_err:
1580 kfree(new_opts);
1581 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582}
1583
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001584static int read_super_block(struct super_block *s, int offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001586 struct buffer_head *bh;
1587 struct reiserfs_super_block *rs;
1588 int fs_blocksize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001590 bh = sb_bread(s, offset / s->s_blocksize);
1591 if (!bh) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001592 reiserfs_warning(s, "sh-2006",
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001593 "bread failed (dev %s, block %lu, size %lu)",
Al Viro2ccdc412013-11-22 13:25:39 -05001594 s->s_id, offset / s->s_blocksize,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001595 s->s_blocksize);
1596 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001599 rs = (struct reiserfs_super_block *)bh->b_data;
1600 if (!is_any_reiserfs_magic_string(rs)) {
1601 brelse(bh);
1602 return 1;
1603 }
Jeff Mahoney098297b2014-04-23 10:00:36 -04001604 /*
1605 * ok, reiserfs signature (old or new) found in at the given offset
1606 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001607 fs_blocksize = sb_blocksize(rs);
1608 brelse(bh);
1609 sb_set_blocksize(s, fs_blocksize);
1610
1611 bh = sb_bread(s, offset / s->s_blocksize);
1612 if (!bh) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001613 reiserfs_warning(s, "sh-2007",
1614 "bread failed (dev %s, block %lu, size %lu)",
Al Viro2ccdc412013-11-22 13:25:39 -05001615 s->s_id, offset / s->s_blocksize,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001616 s->s_blocksize);
1617 return 1;
1618 }
1619
1620 rs = (struct reiserfs_super_block *)bh->b_data;
1621 if (sb_blocksize(rs) != s->s_blocksize) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001622 reiserfs_warning(s, "sh-2011", "can't find a reiserfs "
Fabian Frederick53872ed2014-08-08 14:21:10 -07001623 "filesystem on (dev %s, block %llu, size %lu)",
Al Viro2ccdc412013-11-22 13:25:39 -05001624 s->s_id,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001625 (unsigned long long)bh->b_blocknr,
1626 s->s_blocksize);
1627 brelse(bh);
1628 return 1;
1629 }
1630
1631 if (rs->s_v1.s_root_block == cpu_to_le32(-1)) {
1632 brelse(bh);
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001633 reiserfs_warning(s, "super-6519", "Unfinished reiserfsck "
1634 "--rebuild-tree run detected. Please run\n"
1635 "reiserfsck --rebuild-tree and wait for a "
1636 "completion. If that fails\n"
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001637 "get newer reiserfsprogs package");
1638 return 1;
1639 }
1640
1641 SB_BUFFER_WITH_SB(s) = bh;
1642 SB_DISK_SUPER_BLOCK(s) = rs;
1643
Jeff Mahoney098297b2014-04-23 10:00:36 -04001644 /*
1645 * magic is of non-standard journal filesystem, look at s_version to
1646 * find which format is in use
1647 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001648 if (is_reiserfs_jr(rs)) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001649 if (sb_version(rs) == REISERFS_VERSION_2)
Jeff Mahoney1d889d92009-03-30 14:02:20 -04001650 reiserfs_info(s, "found reiserfs format \"3.6\""
1651 " with non-standard journal\n");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001652 else if (sb_version(rs) == REISERFS_VERSION_1)
Jeff Mahoney1d889d92009-03-30 14:02:20 -04001653 reiserfs_info(s, "found reiserfs format \"3.5\""
1654 " with non-standard journal\n");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001655 else {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001656 reiserfs_warning(s, "sh-2012", "found unknown "
1657 "format \"%u\" of reiserfs with "
1658 "non-standard magic", sb_version(rs));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001659 return 1;
1660 }
1661 } else
Jeff Mahoney098297b2014-04-23 10:00:36 -04001662 /*
1663 * s_version of standard format may contain incorrect
1664 * information, so we just look at the magic string
1665 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001666 reiserfs_info(s,
1667 "found reiserfs format \"%s\" with standard journal\n",
1668 is_reiserfs_3_5(rs) ? "3.5" : "3.6");
1669
1670 s->s_op = &reiserfs_sops;
1671 s->s_export_op = &reiserfs_export_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672#ifdef CONFIG_QUOTA
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001673 s->s_qcop = &reiserfs_qctl_operations;
1674 s->dq_op = &reiserfs_quota_operations;
Jan Kara53873632014-09-29 15:08:19 +02001675 s->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676#endif
1677
Jeff Mahoney098297b2014-04-23 10:00:36 -04001678 /*
1679 * new format is limited by the 32 bit wide i_blocks field, want to
1680 * be one full block below that.
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001681 */
1682 s->s_maxbytes = (512LL << 32) - s->s_blocksize;
1683 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684}
1685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686/* after journal replay, reread all bitmap and super blocks */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001687static int reread_meta_blocks(struct super_block *s)
1688{
Mike Christiedfec8a12016-06-05 14:31:44 -05001689 ll_rw_block(REQ_OP_READ, 0, 1, &SB_BUFFER_WITH_SB(s));
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001690 wait_on_buffer(SB_BUFFER_WITH_SB(s));
1691 if (!buffer_uptodate(SB_BUFFER_WITH_SB(s))) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001692 reiserfs_warning(s, "reiserfs-2504", "error reading the super");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001693 return 1;
1694 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001696 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697}
1698
Jeff Mahoney098297b2014-04-23 10:00:36 -04001699/* hash detection stuff */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Jeff Mahoney098297b2014-04-23 10:00:36 -04001701/*
1702 * if root directory is empty - we set default - Yura's - hash and
1703 * warn about it
1704 * FIXME: we look for only one name in a directory. If tea and yura
1705 * both have the same value - we ask user to send report to the
1706 * mailing list
1707 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001708static __u32 find_hash_out(struct super_block *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001710 int retval;
1711 struct inode *inode;
1712 struct cpu_key key;
1713 INITIALIZE_PATH(path);
1714 struct reiserfs_dir_entry de;
Jeff Mahoneyc48138c2014-04-23 10:00:44 -04001715 struct reiserfs_de_head *deh;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001716 __u32 hash = DEFAULT_HASH;
Jeff Mahoneyc48138c2014-04-23 10:00:44 -04001717 __u32 deh_hashval, teahash, r5hash, yurahash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
David Howells2b0143b2015-03-17 22:25:59 +00001719 inode = d_inode(s->s_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Jeff Mahoneyc48138c2014-04-23 10:00:44 -04001721 make_cpu_key(&key, inode, ~0, TYPE_DIRENTRY, 3);
1722 retval = search_by_entry_key(s, &key, &path, &de);
1723 if (retval == IO_ERROR) {
1724 pathrelse(&path);
1725 return UNSET_HASH;
1726 }
1727 if (retval == NAME_NOT_FOUND)
1728 de.de_entry_num--;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729
Jeff Mahoneyc48138c2014-04-23 10:00:44 -04001730 set_de_name_and_namelen(&de);
1731 deh = de.de_deh + de.de_entry_num;
1732
1733 if (deh_offset(deh) == DOT_DOT_OFFSET) {
1734 /* allow override in this case */
1735 if (reiserfs_rupasov_hash(s))
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001736 hash = YURA_HASH;
Jeff Mahoneyc48138c2014-04-23 10:00:44 -04001737 reiserfs_info(s, "FS seems to be empty, autodetect is using the default hash\n");
1738 goto out;
1739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Jeff Mahoneyc48138c2014-04-23 10:00:44 -04001741 deh_hashval = GET_HASH_VALUE(deh_offset(deh));
1742 r5hash = GET_HASH_VALUE(r5_hash(de.de_name, de.de_namelen));
1743 teahash = GET_HASH_VALUE(keyed_hash(de.de_name, de.de_namelen));
1744 yurahash = GET_HASH_VALUE(yura_hash(de.de_name, de.de_namelen));
1745
1746 if ((teahash == r5hash && deh_hashval == r5hash) ||
1747 (teahash == yurahash && deh_hashval == yurahash) ||
1748 (r5hash == yurahash && deh_hashval == yurahash)) {
1749 reiserfs_warning(s, "reiserfs-2506",
1750 "Unable to automatically detect hash "
1751 "function. Please mount with -o "
1752 "hash={tea,rupasov,r5}");
1753 hash = UNSET_HASH;
1754 goto out;
1755 }
1756
1757 if (deh_hashval == yurahash)
1758 hash = YURA_HASH;
1759 else if (deh_hashval == teahash)
1760 hash = TEA_HASH;
1761 else if (deh_hashval == r5hash)
1762 hash = R5_HASH;
1763 else {
1764 reiserfs_warning(s, "reiserfs-2506",
1765 "Unrecognised hash function");
1766 hash = UNSET_HASH;
1767 }
1768out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001769 pathrelse(&path);
1770 return hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771}
1772
Jeff Mahoney098297b2014-04-23 10:00:36 -04001773/* finds out which hash names are sorted with */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001774static int what_hash(struct super_block *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001776 __u32 code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001778 code = sb_hash_function_code(SB_DISK_SUPER_BLOCK(s));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
Jeff Mahoney098297b2014-04-23 10:00:36 -04001780 /*
1781 * reiserfs_hash_detect() == true if any of the hash mount options
1782 * were used. We must check them to make sure the user isn't
1783 * using a bad hash value
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001784 */
1785 if (code == UNSET_HASH || reiserfs_hash_detect(s))
1786 code = find_hash_out(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001788 if (code != UNSET_HASH && reiserfs_hash_detect(s)) {
Jeff Mahoney098297b2014-04-23 10:00:36 -04001789 /*
1790 * detection has found the hash, and we must check against the
1791 * mount options
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001792 */
1793 if (reiserfs_rupasov_hash(s) && code != YURA_HASH) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001794 reiserfs_warning(s, "reiserfs-2507",
1795 "Error, %s hash detected, "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001796 "unable to force rupasov hash",
1797 reiserfs_hashname(code));
1798 code = UNSET_HASH;
1799 } else if (reiserfs_tea_hash(s) && code != TEA_HASH) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001800 reiserfs_warning(s, "reiserfs-2508",
1801 "Error, %s hash detected, "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001802 "unable to force tea hash",
1803 reiserfs_hashname(code));
1804 code = UNSET_HASH;
1805 } else if (reiserfs_r5_hash(s) && code != R5_HASH) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001806 reiserfs_warning(s, "reiserfs-2509",
1807 "Error, %s hash detected, "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001808 "unable to force r5 hash",
1809 reiserfs_hashname(code));
1810 code = UNSET_HASH;
1811 }
1812 } else {
Jeff Mahoney098297b2014-04-23 10:00:36 -04001813 /*
1814 * find_hash_out was not called or
1815 * could not determine the hash
1816 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001817 if (reiserfs_rupasov_hash(s)) {
1818 code = YURA_HASH;
1819 } else if (reiserfs_tea_hash(s)) {
1820 code = TEA_HASH;
1821 } else if (reiserfs_r5_hash(s)) {
1822 code = R5_HASH;
1823 }
1824 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
Jeff Mahoney098297b2014-04-23 10:00:36 -04001826 /*
1827 * if we are mounted RW, and we have a new valid hash code, update
1828 * the super
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001829 */
1830 if (code != UNSET_HASH &&
1831 !(s->s_flags & MS_RDONLY) &&
1832 code != sb_hash_function_code(SB_DISK_SUPER_BLOCK(s))) {
1833 set_sb_hash_function_code(SB_DISK_SUPER_BLOCK(s), code);
1834 }
1835 return code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836}
1837
Jeff Mahoney098297b2014-04-23 10:00:36 -04001838/* return pointer to appropriate function */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001839static hashf_t hash_function(struct super_block *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001841 switch (what_hash(s)) {
1842 case TEA_HASH:
1843 reiserfs_info(s, "Using tea hash to sort names\n");
1844 return keyed_hash;
1845 case YURA_HASH:
1846 reiserfs_info(s, "Using rupasov hash to sort names\n");
1847 return yura_hash;
1848 case R5_HASH:
1849 reiserfs_info(s, "Using r5 hash to sort names\n");
1850 return r5_hash;
1851 }
1852 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853}
1854
Jeff Mahoney098297b2014-04-23 10:00:36 -04001855/* this is used to set up correct value for old partitions */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001856static int function2code(hashf_t func)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001858 if (func == keyed_hash)
1859 return TEA_HASH;
1860 if (func == yura_hash)
1861 return YURA_HASH;
1862 if (func == r5_hash)
1863 return R5_HASH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864
Jeff Mahoney098297b2014-04-23 10:00:36 -04001865 BUG(); /* should never happen */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001867 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868}
1869
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001870#define SWARN(silent, s, id, ...) \
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 if (!(silent)) \
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001872 reiserfs_warning(s, id, __VA_ARGS__)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001874static int reiserfs_fill_super(struct super_block *s, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001876 struct inode *root_inode;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001877 struct reiserfs_transaction_handle th;
1878 int old_format = 0;
1879 unsigned long blocks;
1880 unsigned int commit_max_age = 0;
1881 int jinit_done = 0;
1882 struct reiserfs_iget_args args;
1883 struct reiserfs_super_block *rs;
1884 char *jdev_name;
1885 struct reiserfs_sb_info *sbi;
1886 int errval = -EINVAL;
Jan Karaaca60612014-09-10 20:57:45 +02001887 char *qf_names[REISERFS_MAXQUOTAS] = {};
Jan Kara00b44192008-07-25 01:46:38 -07001888 unsigned int qfmt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
Miklos Szeredicdf6ccc2008-02-08 04:21:47 -08001890 save_mount_options(s, data);
1891
Yan Burman01afb212006-12-06 20:39:01 -08001892 sbi = kzalloc(sizeof(struct reiserfs_sb_info), GFP_KERNEL);
Jeff Mahoneyb7b7fa42010-03-29 15:12:39 -04001893 if (!sbi)
1894 return -ENOMEM;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001895 s->s_fs_info = sbi;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001896 /* Set default values for options: non-aggressive tails, RO on errors */
Artem Bityutskiyefaa33e2012-06-01 17:18:04 +03001897 sbi->s_mount_opt |= (1 << REISERFS_SMALLTAIL);
1898 sbi->s_mount_opt |= (1 << REISERFS_ERROR_RO);
1899 sbi->s_mount_opt |= (1 << REISERFS_BARRIER_FLUSH);
Jeff Mahoney098297b2014-04-23 10:00:36 -04001900 /* no preallocation minimum, be smart in reiserfs_file_write instead */
Artem Bityutskiyefaa33e2012-06-01 17:18:04 +03001901 sbi->s_alloc_options.preallocmin = 0;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001902 /* Preallocate by 16 blocks (17-1) at once */
Artem Bityutskiyefaa33e2012-06-01 17:18:04 +03001903 sbi->s_alloc_options.preallocsize = 17;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001904 /* setup default block allocator options */
1905 reiserfs_init_alloc_options(s);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906
Artem Bityutskiy033369d2012-06-01 17:18:08 +03001907 spin_lock_init(&sbi->old_work_lock);
1908 INIT_DELAYED_WORK(&sbi->old_work, flush_old_commits);
Artem Bityutskiyefaa33e2012-06-01 17:18:04 +03001909 mutex_init(&sbi->lock);
1910 sbi->lock_depth = -1;
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02001911
Jeff Mahoney797d9012014-04-23 10:00:34 -04001912 sbi->commit_wq = alloc_workqueue("reiserfs/%s", WQ_MEM_RECLAIM, 0,
1913 s->s_id);
1914 if (!sbi->commit_wq) {
1915 SWARN(silent, s, "", "Cannot allocate commit workqueue");
1916 errval = -ENOMEM;
1917 goto error_unlocked;
1918 }
1919
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001920 jdev_name = NULL;
1921 if (reiserfs_parse_options
Jeff Mahoneya228bf82014-04-23 10:00:42 -04001922 (s, (char *)data, &sbi->s_mount_opt, &blocks, &jdev_name,
Jan Kara00b44192008-07-25 01:46:38 -07001923 &commit_max_age, qf_names, &qfmt) == 0) {
Frederic Weisbeckerf32485b2012-01-10 15:11:07 -08001924 goto error_unlocked;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001925 }
Jan Karac3aa0772011-12-21 20:17:10 +01001926 if (jdev_name && jdev_name[0]) {
Artem Bityutskiyefaa33e2012-06-01 17:18:04 +03001927 sbi->s_jdev = kstrdup(jdev_name, GFP_KERNEL);
1928 if (!sbi->s_jdev) {
Jan Karac3aa0772011-12-21 20:17:10 +01001929 SWARN(silent, s, "", "Cannot allocate memory for "
1930 "journal device name");
1931 goto error;
1932 }
1933 }
Jan Kara00b44192008-07-25 01:46:38 -07001934#ifdef CONFIG_QUOTA
1935 handle_quota_files(s, qf_names, &qfmt);
1936#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001938 if (blocks) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001939 SWARN(silent, s, "jmacd-7", "resize option for remount only");
Frederic Weisbeckerf32485b2012-01-10 15:11:07 -08001940 goto error_unlocked;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001941 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
Jeff Mahoney098297b2014-04-23 10:00:36 -04001943 /*
1944 * try old format (undistributed bitmap, super block in 8-th 1k
1945 * block of a device)
1946 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001947 if (!read_super_block(s, REISERFS_OLD_DISK_OFFSET_IN_BYTES))
1948 old_format = 1;
Jeff Mahoney098297b2014-04-23 10:00:36 -04001949
1950 /*
1951 * try new format (64-th 1k block), which can contain reiserfs
1952 * super block
1953 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001954 else if (read_super_block(s, REISERFS_DISK_OFFSET_IN_BYTES)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001955 SWARN(silent, s, "sh-2021", "can not find reiserfs on %s",
Al Viro2ccdc412013-11-22 13:25:39 -05001956 s->s_id);
Frederic Weisbeckerf32485b2012-01-10 15:11:07 -08001957 goto error_unlocked;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001960 rs = SB_DISK_SUPER_BLOCK(s);
Jeff Mahoney098297b2014-04-23 10:00:36 -04001961 /*
1962 * Let's do basic sanity check to verify that underlying device is not
1963 * smaller than the filesystem. If the check fails then abort and
1964 * scream, because bad stuff will happen otherwise.
1965 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001966 if (s->s_bdev && s->s_bdev->bd_inode
1967 && i_size_read(s->s_bdev->bd_inode) <
1968 sb_block_count(rs) * sb_blocksize(rs)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001969 SWARN(silent, s, "", "Filesystem cannot be "
1970 "mounted because it is bigger than the device");
1971 SWARN(silent, s, "", "You may need to run fsck "
1972 "or increase size of your LVM partition");
1973 SWARN(silent, s, "", "Or may be you forgot to "
1974 "reboot after fdisk when it told you to");
Frederic Weisbeckerf32485b2012-01-10 15:11:07 -08001975 goto error_unlocked;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001976 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001978 sbi->s_mount_state = SB_REISERFS_STATE(s);
1979 sbi->s_mount_state = REISERFS_VALID_FS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980
Jeff Mahoney6f010462006-09-30 23:28:43 -07001981 if ((errval = reiserfs_init_bitmap_cache(s))) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001982 SWARN(silent, s, "jmacd-8", "unable to read bitmap");
Frederic Weisbeckerf32485b2012-01-10 15:11:07 -08001983 goto error_unlocked;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001984 }
Frederic Weisbeckerf32485b2012-01-10 15:11:07 -08001985
Jeff Mahoneyd2c89a42006-11-02 22:07:20 -08001986 errval = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987#ifdef CONFIG_REISERFS_CHECK
Jeff Mahoney45b03d52009-03-30 14:02:21 -04001988 SWARN(silent, s, "", "CONFIG_REISERFS_CHECK is set ON");
1989 SWARN(silent, s, "", "- it is slow mode for debugging.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990#endif
1991
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001992 /* make data=ordered the default */
1993 if (!reiserfs_data_log(s) && !reiserfs_data_ordered(s) &&
1994 !reiserfs_data_writeback(s)) {
Artem Bityutskiyefaa33e2012-06-01 17:18:04 +03001995 sbi->s_mount_opt |= (1 << REISERFS_DATA_ORDERED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 }
1997
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07001998 if (reiserfs_data_log(s)) {
1999 reiserfs_info(s, "using journaled data mode\n");
2000 } else if (reiserfs_data_ordered(s)) {
2001 reiserfs_info(s, "using ordered data mode\n");
2002 } else {
2003 reiserfs_info(s, "using writeback data mode\n");
2004 }
2005 if (reiserfs_barrier_flush(s)) {
2006 printk("reiserfs: using flush barriers\n");
2007 }
Frederic Weisbeckerf32485b2012-01-10 15:11:07 -08002008
Frederic Weisbecker37c69b92012-01-10 15:11:09 -08002009 if (journal_init(s, jdev_name, old_format, commit_max_age)) {
2010 SWARN(silent, s, "sh-2022",
2011 "unable to initialize journal space");
2012 goto error_unlocked;
2013 } else {
Jeff Mahoney098297b2014-04-23 10:00:36 -04002014 /*
2015 * once this is set, journal_release must be called
2016 * if we error out of the mount
2017 */
2018 jinit_done = 1;
Frederic Weisbecker37c69b92012-01-10 15:11:09 -08002019 }
2020
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002021 if (reread_meta_blocks(s)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002022 SWARN(silent, s, "jmacd-9",
2023 "unable to reread meta blocks after journal init");
Frederic Weisbecker9b467e62012-01-10 15:11:11 -08002024 goto error_unlocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 }
2026
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002027 if (replay_only(s))
Frederic Weisbecker9b467e62012-01-10 15:11:11 -08002028 goto error_unlocked;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002029
Jeff Mahoney0243d182019-10-24 10:31:27 -04002030 s->s_xattr = reiserfs_xattr_handlers;
2031
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002032 if (bdev_read_only(s->s_bdev) && !(s->s_flags & MS_RDONLY)) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002033 SWARN(silent, s, "clm-7000",
2034 "Detected readonly device, marking FS readonly");
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002035 s->s_flags |= MS_RDONLY;
2036 }
2037 args.objectid = REISERFS_ROOT_OBJECTID;
2038 args.dirid = REISERFS_ROOT_PARENT_OBJECTID;
2039 root_inode =
2040 iget5_locked(s, REISERFS_ROOT_OBJECTID, reiserfs_find_actor,
Jeff Mahoneya228bf82014-04-23 10:00:42 -04002041 reiserfs_init_locked_inode, (void *)&args);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002042 if (!root_inode) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002043 SWARN(silent, s, "jmacd-10", "get root inode failed");
Frederic Weisbecker9b467e62012-01-10 15:11:11 -08002044 goto error_unlocked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 }
2046
Frederic Weisbecker9b467e62012-01-10 15:11:11 -08002047 /*
2048 * This path assumed to be called with the BKL in the old times.
2049 * Now we have inherited the big reiserfs lock from it and many
2050 * reiserfs helpers called in the mount path and elsewhere require
2051 * this lock to be held even if it's not always necessary. Let's be
2052 * conservative and hold it early. The window can be reduced after
2053 * careful review of the code.
2054 */
2055 reiserfs_write_lock(s);
2056
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002057 if (root_inode->i_state & I_NEW) {
2058 reiserfs_read_locked_inode(root_inode, &args);
2059 unlock_new_inode(root_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 }
2061
Al Viro48fde702012-01-08 22:15:13 -05002062 s->s_root = d_make_root(root_inode);
2063 if (!s->s_root)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002064 goto error;
Jeff Mahoney098297b2014-04-23 10:00:36 -04002065 /* define and initialize hash function */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002066 sbi->s_hash_function = hash_function(s);
2067 if (sbi->s_hash_function == NULL) {
2068 dput(s->s_root);
2069 s->s_root = NULL;
2070 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002072
2073 if (is_reiserfs_3_5(rs)
2074 || (is_reiserfs_jr(rs) && SB_VERSION(s) == REISERFS_VERSION_1))
Jeff Mahoneya228bf82014-04-23 10:00:42 -04002075 set_bit(REISERFS_3_5, &sbi->s_properties);
Jeff Mahoneye1fabd32006-09-30 23:28:40 -07002076 else if (old_format)
Jeff Mahoneya228bf82014-04-23 10:00:42 -04002077 set_bit(REISERFS_OLD_FORMAT, &sbi->s_properties);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002078 else
Jeff Mahoneya228bf82014-04-23 10:00:42 -04002079 set_bit(REISERFS_3_6, &sbi->s_properties);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002080
2081 if (!(s->s_flags & MS_RDONLY)) {
2082
2083 errval = journal_begin(&th, s, 1);
2084 if (errval) {
2085 dput(s->s_root);
2086 s->s_root = NULL;
2087 goto error;
2088 }
2089 reiserfs_prepare_for_journal(s, SB_BUFFER_WITH_SB(s), 1);
2090
2091 set_sb_umount_state(rs, REISERFS_ERROR_FS);
2092 set_sb_fs_state(rs, 0);
2093
Jeff Mahoney098297b2014-04-23 10:00:36 -04002094 /*
2095 * Clear out s_bmap_nr if it would wrap. We can handle this
Jeff Mahoneycb680c12007-10-18 23:39:27 -07002096 * case, but older revisions can't. This will cause the
2097 * file system to fail mount on those older implementations,
Jeff Mahoney098297b2014-04-23 10:00:36 -04002098 * avoiding corruption. -jeffm
2099 */
Jeff Mahoneycb680c12007-10-18 23:39:27 -07002100 if (bmap_would_wrap(reiserfs_bmap_count(s)) &&
2101 sb_bmap_nr(rs) != 0) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002102 reiserfs_warning(s, "super-2030", "This file system "
Jeff Mahoneycb680c12007-10-18 23:39:27 -07002103 "claims to use %u bitmap blocks in "
2104 "its super block, but requires %u. "
2105 "Clearing to zero.", sb_bmap_nr(rs),
2106 reiserfs_bmap_count(s));
2107
2108 set_sb_bmap_nr(rs, 0);
2109 }
2110
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002111 if (old_format_only(s)) {
Jeff Mahoney098297b2014-04-23 10:00:36 -04002112 /*
2113 * filesystem of format 3.5 either with standard
2114 * or non-standard journal
2115 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002116 if (convert_reiserfs(s)) {
2117 /* and -o conv is given */
2118 if (!silent)
2119 reiserfs_info(s,
2120 "converting 3.5 filesystem to the 3.6 format");
2121
2122 if (is_reiserfs_3_5(rs))
Jeff Mahoney098297b2014-04-23 10:00:36 -04002123 /*
2124 * put magic string of 3.6 format.
2125 * 2.2 will not be able to
2126 * mount this filesystem anymore
2127 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002128 memcpy(rs->s_v1.s_magic,
2129 reiserfs_3_6_magic_string,
2130 sizeof
2131 (reiserfs_3_6_magic_string));
2132
2133 set_sb_version(rs, REISERFS_VERSION_2);
2134 reiserfs_convert_objectid_map_v1(s);
Jeff Mahoneya228bf82014-04-23 10:00:42 -04002135 set_bit(REISERFS_3_6, &sbi->s_properties);
2136 clear_bit(REISERFS_3_5, &sbi->s_properties);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002137 } else if (!silent) {
2138 reiserfs_info(s, "using 3.5.x disk format\n");
2139 }
Jeff Mahoney702d21c2009-03-30 14:02:16 -04002140 } else
2141 set_sb_mnt_count(rs, sb_mnt_count(rs) + 1);
2142
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002143
Jeff Mahoney09f1b802014-04-23 10:00:39 -04002144 journal_mark_dirty(&th, SB_BUFFER_WITH_SB(s));
Jeff Mahoney58d85422014-04-23 10:00:38 -04002145 errval = journal_end(&th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002146 if (errval) {
2147 dput(s->s_root);
2148 s->s_root = NULL;
2149 goto error;
2150 }
2151
Jeff Mahoney4c051412013-08-08 17:27:19 -04002152 reiserfs_write_unlock(s);
Al Viroedcc37a2009-05-03 06:00:05 -04002153 if ((errval = reiserfs_lookup_privroot(s)) ||
2154 (errval = reiserfs_xattr_init(s, s->s_flags))) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002155 dput(s->s_root);
2156 s->s_root = NULL;
Jeff Mahoney4c051412013-08-08 17:27:19 -04002157 goto error_unlocked;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002158 }
Jeff Mahoney4c051412013-08-08 17:27:19 -04002159 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002160
Jeff Mahoney098297b2014-04-23 10:00:36 -04002161 /*
2162 * look for files which were to be removed in previous session
2163 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002164 finish_unfinished(s);
2165 } else {
2166 if (old_format_only(s) && !silent) {
2167 reiserfs_info(s, "using 3.5.x disk format\n");
2168 }
2169
Jeff Mahoney4c051412013-08-08 17:27:19 -04002170 reiserfs_write_unlock(s);
Al Viroedcc37a2009-05-03 06:00:05 -04002171 if ((errval = reiserfs_lookup_privroot(s)) ||
2172 (errval = reiserfs_xattr_init(s, s->s_flags))) {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002173 dput(s->s_root);
2174 s->s_root = NULL;
Jeff Mahoney4c051412013-08-08 17:27:19 -04002175 goto error_unlocked;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002176 }
Jeff Mahoney4c051412013-08-08 17:27:19 -04002177 reiserfs_write_lock(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002178 }
Jeff Mahoney098297b2014-04-23 10:00:36 -04002179 /*
2180 * mark hash in super block: it could be unset. overwrite should be ok
2181 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002182 set_sb_hash_function_code(rs, function2code(sbi->s_hash_function));
2183
2184 handle_attrs(s);
2185
2186 reiserfs_proc_info_init(s);
2187
2188 init_waitqueue_head(&(sbi->s_wait));
2189 spin_lock_init(&sbi->bitmap_lock);
2190
Frederic Weisbecker8ebc4232009-04-07 04:19:49 +02002191 reiserfs_write_unlock(s);
2192
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002193 return (0);
2194
Jan Kara00b44192008-07-25 01:46:38 -07002195error:
Jeff Mahoneyb7b7fa42010-03-29 15:12:39 -04002196 reiserfs_write_unlock(s);
2197
Frederic Weisbeckerf32485b2012-01-10 15:11:07 -08002198error_unlocked:
2199 /* kill the commit thread, free journal ram */
2200 if (jinit_done) {
2201 reiserfs_write_lock(s);
2202 journal_release_error(NULL, s);
2203 reiserfs_write_unlock(s);
2204 }
2205
Jiri Slabyfa0c5542014-12-12 16:29:29 +01002206 if (sbi->commit_wq)
2207 destroy_workqueue(sbi->commit_wq);
2208
Jan Kara304c1e92017-04-05 14:09:48 +02002209 reiserfs_cancel_old_flush(s);
Artem Bityutskiy033369d2012-06-01 17:18:08 +03002210
Jeff Mahoney50652272006-09-30 23:28:44 -07002211 reiserfs_free_bitmap_cache(s);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002212 if (SB_BUFFER_WITH_SB(s))
2213 brelse(SB_BUFFER_WITH_SB(s));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214#ifdef CONFIG_QUOTA
Jeff Mahoney50652272006-09-30 23:28:44 -07002215 {
2216 int j;
Jan Karaaca60612014-09-10 20:57:45 +02002217 for (j = 0; j < REISERFS_MAXQUOTAS; j++)
Jan Kara00b44192008-07-25 01:46:38 -07002218 kfree(qf_names[j]);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002219 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220#endif
Jan Kara4ebc39f2019-12-12 11:30:03 +01002221 kfree(sbi->s_jdev);
James Lamanna833d3042005-10-30 15:00:16 -08002222 kfree(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002224 s->s_fs_info = NULL;
2225 return errval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226}
2227
David Howells726c3342006-06-23 02:02:58 -07002228static int reiserfs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229{
David Howells726c3342006-06-23 02:02:58 -07002230 struct reiserfs_super_block *rs = SB_DISK_SUPER_BLOCK(dentry->d_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002231
2232 buf->f_namelen = (REISERFS_MAX_NAME(s->s_blocksize));
2233 buf->f_bfree = sb_free_blocks(rs);
2234 buf->f_bavail = buf->f_bfree;
2235 buf->f_blocks = sb_block_count(rs) - sb_bmap_nr(rs) - 1;
David Howells726c3342006-06-23 02:02:58 -07002236 buf->f_bsize = dentry->d_sb->s_blocksize;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002237 /* changed to accommodate gcc folks. */
2238 buf->f_type = REISERFS_SUPER_MAGIC;
Coly Li651d0622009-04-02 16:59:41 -07002239 buf->f_fsid.val[0] = (u32)crc32_le(0, rs->s_uuid, sizeof(rs->s_uuid)/2);
2240 buf->f_fsid.val[1] = (u32)crc32_le(0, rs->s_uuid + sizeof(rs->s_uuid)/2,
2241 sizeof(rs->s_uuid)/2);
2242
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002243 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244}
2245
2246#ifdef CONFIG_QUOTA
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247static int reiserfs_write_dquot(struct dquot *dquot)
2248{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002249 struct reiserfs_transaction_handle th;
2250 int ret, err;
Jeff Mahoneyd2d03952013-08-08 17:34:47 -04002251 int depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002253 reiserfs_write_lock(dquot->dq_sb);
2254 ret =
2255 journal_begin(&th, dquot->dq_sb,
2256 REISERFS_QUOTA_TRANS_BLOCKS(dquot->dq_sb));
2257 if (ret)
2258 goto out;
Jeff Mahoneyd2d03952013-08-08 17:34:47 -04002259 depth = reiserfs_write_unlock_nested(dquot->dq_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002260 ret = dquot_commit(dquot);
Jeff Mahoneyd2d03952013-08-08 17:34:47 -04002261 reiserfs_write_lock_nested(dquot->dq_sb, depth);
Jeff Mahoney58d85422014-04-23 10:00:38 -04002262 err = journal_end(&th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002263 if (!ret && err)
2264 ret = err;
Jan Kara7af11682012-11-13 17:05:14 +01002265out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002266 reiserfs_write_unlock(dquot->dq_sb);
2267 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268}
2269
2270static int reiserfs_acquire_dquot(struct dquot *dquot)
2271{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002272 struct reiserfs_transaction_handle th;
2273 int ret, err;
Jeff Mahoneyd2d03952013-08-08 17:34:47 -04002274 int depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002276 reiserfs_write_lock(dquot->dq_sb);
2277 ret =
2278 journal_begin(&th, dquot->dq_sb,
2279 REISERFS_QUOTA_INIT_BLOCKS(dquot->dq_sb));
2280 if (ret)
2281 goto out;
Jeff Mahoneyd2d03952013-08-08 17:34:47 -04002282 depth = reiserfs_write_unlock_nested(dquot->dq_sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002283 ret = dquot_acquire(dquot);
Jeff Mahoneyd2d03952013-08-08 17:34:47 -04002284 reiserfs_write_lock_nested(dquot->dq_sb, depth);
Jeff Mahoney58d85422014-04-23 10:00:38 -04002285 err = journal_end(&th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002286 if (!ret && err)
2287 ret = err;
Jan Kara7af11682012-11-13 17:05:14 +01002288out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002289 reiserfs_write_unlock(dquot->dq_sb);
2290 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291}
2292
2293static int reiserfs_release_dquot(struct dquot *dquot)
2294{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002295 struct reiserfs_transaction_handle th;
2296 int ret, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002298 reiserfs_write_lock(dquot->dq_sb);
2299 ret =
2300 journal_begin(&th, dquot->dq_sb,
2301 REISERFS_QUOTA_DEL_BLOCKS(dquot->dq_sb));
Jan Kara7af11682012-11-13 17:05:14 +01002302 reiserfs_write_unlock(dquot->dq_sb);
Jan Kara9c3013e2007-09-11 15:23:29 -07002303 if (ret) {
2304 /* Release dquot anyway to avoid endless cycle in dqput() */
2305 dquot_release(dquot);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002306 goto out;
Jan Kara9c3013e2007-09-11 15:23:29 -07002307 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002308 ret = dquot_release(dquot);
Jan Kara7af11682012-11-13 17:05:14 +01002309 reiserfs_write_lock(dquot->dq_sb);
Jeff Mahoney58d85422014-04-23 10:00:38 -04002310 err = journal_end(&th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002311 if (!ret && err)
2312 ret = err;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002313 reiserfs_write_unlock(dquot->dq_sb);
Jan Kara7af11682012-11-13 17:05:14 +01002314out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002315 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316}
2317
2318static int reiserfs_mark_dquot_dirty(struct dquot *dquot)
2319{
Jan Kara45065672008-07-25 01:46:37 -07002320 /* Are we journaling quotas? */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002321 if (REISERFS_SB(dquot->dq_sb)->s_qf_names[USRQUOTA] ||
2322 REISERFS_SB(dquot->dq_sb)->s_qf_names[GRPQUOTA]) {
2323 dquot_mark_dquot_dirty(dquot);
2324 return reiserfs_write_dquot(dquot);
2325 } else
2326 return dquot_mark_dquot_dirty(dquot);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327}
2328
2329static int reiserfs_write_info(struct super_block *sb, int type)
2330{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002331 struct reiserfs_transaction_handle th;
2332 int ret, err;
Jeff Mahoneyd2d03952013-08-08 17:34:47 -04002333 int depth;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002335 /* Data block + inode block */
2336 reiserfs_write_lock(sb);
2337 ret = journal_begin(&th, sb, 2);
2338 if (ret)
2339 goto out;
Jeff Mahoneyd2d03952013-08-08 17:34:47 -04002340 depth = reiserfs_write_unlock_nested(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002341 ret = dquot_commit_info(sb, type);
Jeff Mahoneyd2d03952013-08-08 17:34:47 -04002342 reiserfs_write_lock_nested(sb, depth);
Jeff Mahoney58d85422014-04-23 10:00:38 -04002343 err = journal_end(&th);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002344 if (!ret && err)
2345 ret = err;
Jan Kara7af11682012-11-13 17:05:14 +01002346out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002347 reiserfs_write_unlock(sb);
2348 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349}
2350
2351/*
Christoph Hellwig84de8562005-06-23 00:09:16 -07002352 * Turn on quotas during mount time - we need to find the quota file and such...
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 */
2354static int reiserfs_quota_on_mount(struct super_block *sb, int type)
2355{
Christoph Hellwig287a8092010-05-19 07:16:45 -04002356 return dquot_quota_on_mount(sb, REISERFS_SB(sb)->s_qf_names[type],
2357 REISERFS_SB(sb)->s_jquota_fmt, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358}
2359
2360/*
2361 * Standard function to be called on quota_on
2362 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002363static int reiserfs_quota_on(struct super_block *sb, int type, int format_id,
Jan Karaf00c9e42010-09-15 17:38:58 +02002364 struct path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002366 int err;
Jan Karad5dee5c2008-04-28 02:16:23 -07002367 struct inode *inode;
Jan Kara5d4f7fd2008-07-25 01:46:36 -07002368 struct reiserfs_transaction_handle th;
Jan Karac3aa0772011-12-21 20:17:10 +01002369 int opt = type == USRQUOTA ? REISERFS_USRQUOTA : REISERFS_GRPQUOTA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
Jan Karab9e06ef2012-11-13 16:34:17 +01002371 reiserfs_write_lock(sb);
2372 if (!(REISERFS_SB(sb)->s_mount_opt & (1 << opt))) {
2373 err = -EINVAL;
2374 goto out;
2375 }
Christoph Hellwig307ae182010-05-19 07:16:43 -04002376
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002377 /* Quotafile not on the same filesystem? */
Al Virod8c95842011-12-07 18:16:57 -05002378 if (path->dentry->d_sb != sb) {
Al Viro77e69da2008-08-01 04:29:18 -04002379 err = -EXDEV;
2380 goto out;
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002381 }
David Howells2b0143b2015-03-17 22:25:59 +00002382 inode = d_inode(path->dentry);
Jeff Mahoney098297b2014-04-23 10:00:36 -04002383 /*
2384 * We must not pack tails for quota files on reiserfs for quota
2385 * IO to work
2386 */
Jan Karad5dee5c2008-04-28 02:16:23 -07002387 if (!(REISERFS_I(inode)->i_flags & i_nopack_mask)) {
2388 err = reiserfs_unpack(inode, NULL);
2389 if (err) {
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002390 reiserfs_warning(sb, "super-6520",
2391 "Unpacking tail of quota file failed"
Jan Karad5dee5c2008-04-28 02:16:23 -07002392 " (%d). Cannot turn on quotas.", err);
Al Viro77e69da2008-08-01 04:29:18 -04002393 err = -EINVAL;
2394 goto out;
Jan Karad5dee5c2008-04-28 02:16:23 -07002395 }
2396 mark_inode_dirty(inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002397 }
Jan Kara5d4f7fd2008-07-25 01:46:36 -07002398 /* Journaling quota? */
2399 if (REISERFS_SB(sb)->s_qf_names[type]) {
2400 /* Quotafile not of fs root? */
Jan Karaf00c9e42010-09-15 17:38:58 +02002401 if (path->dentry->d_parent != sb->s_root)
Jeff Mahoney45b03d52009-03-30 14:02:21 -04002402 reiserfs_warning(sb, "super-6521",
2403 "Quota file not on filesystem root. "
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002404 "Journalled quota will not work.");
Jan Kara5d4f7fd2008-07-25 01:46:36 -07002405 }
2406
2407 /*
2408 * When we journal data on quota file, we have to flush journal to see
2409 * all updates to the file when we bypass pagecache...
2410 */
2411 if (reiserfs_file_data_log(inode)) {
2412 /* Just start temporary transaction and finish it */
2413 err = journal_begin(&th, sb, 1);
2414 if (err)
Al Viro77e69da2008-08-01 04:29:18 -04002415 goto out;
Jeff Mahoney58d85422014-04-23 10:00:38 -04002416 err = journal_end_sync(&th);
Jan Kara5d4f7fd2008-07-25 01:46:36 -07002417 if (err)
Al Viro77e69da2008-08-01 04:29:18 -04002418 goto out;
Jan Kara5d4f7fd2008-07-25 01:46:36 -07002419 }
Jan Karab9e06ef2012-11-13 16:34:17 +01002420 reiserfs_write_unlock(sb);
2421 return dquot_quota_on(sb, type, format_id, path);
Al Viro77e69da2008-08-01 04:29:18 -04002422out:
Jan Karab9e06ef2012-11-13 16:34:17 +01002423 reiserfs_write_unlock(sb);
Al Viro77e69da2008-08-01 04:29:18 -04002424 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425}
2426
Jeff Mahoney098297b2014-04-23 10:00:36 -04002427/*
2428 * Read data from quotafile - avoid pagecache and such because we cannot afford
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429 * acquiring the locks... As quota files are never truncated and quota code
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002430 * itself serializes the operations (and no one else should touch the files)
Jeff Mahoney098297b2014-04-23 10:00:36 -04002431 * we don't have to be afraid of races
2432 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433static ssize_t reiserfs_quota_read(struct super_block *sb, int type, char *data,
2434 size_t len, loff_t off)
2435{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002436 struct inode *inode = sb_dqopt(sb)->files[type];
2437 unsigned long blk = off >> sb->s_blocksize_bits;
2438 int err = 0, offset = off & (sb->s_blocksize - 1), tocopy;
2439 size_t toread;
2440 struct buffer_head tmp_bh, *bh;
2441 loff_t i_size = i_size_read(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002443 if (off > i_size)
2444 return 0;
2445 if (off + len > i_size)
2446 len = i_size - off;
2447 toread = len;
2448 while (toread > 0) {
2449 tocopy =
2450 sb->s_blocksize - offset <
2451 toread ? sb->s_blocksize - offset : toread;
2452 tmp_bh.b_state = 0;
Jeff Mahoney098297b2014-04-23 10:00:36 -04002453 /*
2454 * Quota files are without tails so we can safely
2455 * use this function
2456 */
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002457 reiserfs_write_lock(sb);
2458 err = reiserfs_get_block(inode, blk, &tmp_bh, 0);
2459 reiserfs_write_unlock(sb);
2460 if (err)
2461 return err;
2462 if (!buffer_mapped(&tmp_bh)) /* A hole? */
2463 memset(data, 0, tocopy);
2464 else {
2465 bh = sb_bread(sb, tmp_bh.b_blocknr);
2466 if (!bh)
2467 return -EIO;
2468 memcpy(data, bh->b_data + offset, tocopy);
2469 brelse(bh);
2470 }
2471 offset = 0;
2472 toread -= tocopy;
2473 data += tocopy;
2474 blk++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002476 return len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477}
2478
Jeff Mahoney098297b2014-04-23 10:00:36 -04002479/*
2480 * Write to quotafile (we know the transaction is already started and has
2481 * enough credits)
2482 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483static ssize_t reiserfs_quota_write(struct super_block *sb, int type,
2484 const char *data, size_t len, loff_t off)
2485{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002486 struct inode *inode = sb_dqopt(sb)->files[type];
2487 unsigned long blk = off >> sb->s_blocksize_bits;
2488 int err = 0, offset = off & (sb->s_blocksize - 1), tocopy;
2489 int journal_quota = REISERFS_SB(sb)->s_qf_names[type] != NULL;
2490 size_t towrite = len;
2491 struct buffer_head tmp_bh, *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492
Jan Kara9c3013e2007-09-11 15:23:29 -07002493 if (!current->journal_info) {
Fabian Frederick53872ed2014-08-08 14:21:10 -07002494 printk(KERN_WARNING "reiserfs: Quota write (off=%llu, len=%llu) cancelled because transaction is not started.\n",
Jan Kara9c3013e2007-09-11 15:23:29 -07002495 (unsigned long long)off, (unsigned long long)len);
2496 return -EIO;
2497 }
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002498 while (towrite > 0) {
2499 tocopy = sb->s_blocksize - offset < towrite ?
2500 sb->s_blocksize - offset : towrite;
2501 tmp_bh.b_state = 0;
Jan Kara361d94a2012-11-13 18:25:38 +01002502 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002503 err = reiserfs_get_block(inode, blk, &tmp_bh, GET_BLOCK_CREATE);
Jan Kara361d94a2012-11-13 18:25:38 +01002504 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002505 if (err)
2506 goto out;
2507 if (offset || tocopy != sb->s_blocksize)
2508 bh = sb_bread(sb, tmp_bh.b_blocknr);
2509 else
2510 bh = sb_getblk(sb, tmp_bh.b_blocknr);
2511 if (!bh) {
2512 err = -EIO;
2513 goto out;
2514 }
2515 lock_buffer(bh);
2516 memcpy(bh->b_data + offset, data, tocopy);
2517 flush_dcache_page(bh->b_page);
2518 set_buffer_uptodate(bh);
2519 unlock_buffer(bh);
Jan Kara361d94a2012-11-13 18:25:38 +01002520 reiserfs_write_lock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002521 reiserfs_prepare_for_journal(sb, bh, 1);
Jeff Mahoney09f1b802014-04-23 10:00:39 -04002522 journal_mark_dirty(current->journal_info, bh);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002523 if (!journal_quota)
2524 reiserfs_add_ordered_list(inode, bh);
Jan Kara361d94a2012-11-13 18:25:38 +01002525 reiserfs_write_unlock(sb);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002526 brelse(bh);
2527 offset = 0;
2528 towrite -= tocopy;
2529 data += tocopy;
2530 blk++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 }
Jan Kara9c3013e2007-09-11 15:23:29 -07002532out:
Jan Kara67f16482012-04-25 21:28:12 +02002533 if (len == towrite)
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002534 return err;
2535 if (inode->i_size < off + len - towrite)
2536 i_size_write(inode, off + len - towrite);
Deepa Dinamani02027d42016-09-14 07:48:05 -07002537 inode->i_mtime = inode->i_ctime = current_time(inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002538 mark_inode_dirty(inode);
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002539 return len - towrite;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540}
2541
2542#endif
2543
Al Viro152a0832010-07-25 00:46:55 +04002544static struct dentry *get_super_block(struct file_system_type *fs_type,
David Howells454e2392006-06-23 02:02:57 -07002545 int flags, const char *dev_name,
Al Viro152a0832010-07-25 00:46:55 +04002546 void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547{
Al Viro152a0832010-07-25 00:46:55 +04002548 return mount_bdev(fs_type, flags, dev_name, data, reiserfs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549}
2550
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002551static int __init init_reiserfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552{
2553 int ret;
2554
Jeff Mahoney797d9012014-04-23 10:00:34 -04002555 ret = init_inodecache();
2556 if (ret)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002559 reiserfs_proc_info_global_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002561 ret = register_filesystem(&reiserfs_fs_type);
Jeff Mahoney797d9012014-04-23 10:00:34 -04002562 if (ret)
2563 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564
Jeff Mahoney797d9012014-04-23 10:00:34 -04002565 return 0;
2566out:
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002567 reiserfs_proc_info_global_done();
2568 destroy_inodecache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
2570 return ret;
2571}
2572
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002573static void __exit exit_reiserfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574{
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002575 reiserfs_proc_info_global_done();
2576 unregister_filesystem(&reiserfs_fs_type);
2577 destroy_inodecache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578}
2579
2580struct file_system_type reiserfs_fs_type = {
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002581 .owner = THIS_MODULE,
2582 .name = "reiserfs",
Al Viro152a0832010-07-25 00:46:55 +04002583 .mount = get_super_block,
David Howellsedc666e2006-10-11 01:22:14 -07002584 .kill_sb = reiserfs_kill_sb,
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002585 .fs_flags = FS_REQUIRES_DEV,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08002587MODULE_ALIAS_FS("reiserfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002589MODULE_DESCRIPTION("ReiserFS journaled filesystem");
2590MODULE_AUTHOR("Hans Reiser <reiser@namesys.com>");
2591MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
Linus Torvaldsbd4c6252005-07-12 20:21:28 -07002593module_init(init_reiserfs_fs);
2594module_exit(exit_reiserfs_fs);