blob: c8bfc01da5d71699739659e9a63d1761d719a21f [file] [log] [blame]
Ryusuke Konishiae980432018-09-04 15:46:30 -07001// SPDX-License-Identifier: GPL-2.0+
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -07002/*
3 * the_nilfs.c - the_nilfs shared structure.
4 *
5 * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
6 *
Ryusuke Konishi4b420ab2016-05-23 16:23:09 -07007 * Written by Ryusuke Konishi.
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -07008 *
9 */
10
11#include <linux/buffer_head.h>
12#include <linux/slab.h>
13#include <linux/blkdev.h>
14#include <linux/backing-dev.h>
Ryusuke Konishi9b1fc4e42011-03-09 11:05:08 +090015#include <linux/random.h>
Ryusuke Konishie339ad32009-04-06 19:01:59 -070016#include <linux/crc32.h>
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070017#include "nilfs.h"
18#include "segment.h"
19#include "alloc.h"
20#include "cpfile.h"
21#include "sufile.h"
22#include "dat.h"
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070023#include "segbuf.h"
24
Ryusuke Konishi33c8e572009-06-08 01:39:29 +090025
Ryusuke Konishi6c1251602010-06-28 19:15:26 +090026static int nilfs_valid_sb(struct nilfs_super_block *sbp);
27
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070028void nilfs_set_last_segment(struct the_nilfs *nilfs,
29 sector_t start_blocknr, u64 seq, __u64 cno)
30{
31 spin_lock(&nilfs->ns_last_segment_lock);
32 nilfs->ns_last_pseg = start_blocknr;
33 nilfs->ns_last_seq = seq;
34 nilfs->ns_last_cno = cno;
Ryusuke Konishi32502042010-06-29 14:42:13 +090035
36 if (!nilfs_sb_dirty(nilfs)) {
37 if (nilfs->ns_prev_seq == nilfs->ns_last_seq)
38 goto stay_cursor;
39
40 set_nilfs_sb_dirty(nilfs);
41 }
42 nilfs->ns_prev_seq = nilfs->ns_last_seq;
43
44 stay_cursor:
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070045 spin_unlock(&nilfs->ns_last_segment_lock);
46}
47
48/**
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +090049 * alloc_nilfs - allocate a nilfs object
Ryusuke Konishi66256892016-08-02 14:05:06 -070050 * @sb: super block instance
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070051 *
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070052 * Return Value: On success, pointer to the_nilfs is returned.
53 * On error, NULL is returned.
54 */
Ryusuke Konishi66256892016-08-02 14:05:06 -070055struct the_nilfs *alloc_nilfs(struct super_block *sb)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070056{
57 struct the_nilfs *nilfs;
58
59 nilfs = kzalloc(sizeof(*nilfs), GFP_KERNEL);
60 if (!nilfs)
61 return NULL;
62
Ryusuke Konishi66256892016-08-02 14:05:06 -070063 nilfs->ns_sb = sb;
64 nilfs->ns_bdev = sb->s_bdev;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070065 atomic_set(&nilfs->ns_ndirtyblks, 0);
66 init_rwsem(&nilfs->ns_sem);
Ryusuke Konishi572d8b32012-07-30 14:42:07 -070067 mutex_init(&nilfs->ns_snapshot_mount_mutex);
Ryusuke Konishi693dd322011-03-09 11:05:07 +090068 INIT_LIST_HEAD(&nilfs->ns_dirty_files);
Ryusuke Konishi263d90c2010-08-20 19:06:11 +090069 INIT_LIST_HEAD(&nilfs->ns_gc_inodes);
Ryusuke Konishi693dd322011-03-09 11:05:07 +090070 spin_lock_init(&nilfs->ns_inode_lock);
Ryusuke Konishi9b1fc4e42011-03-09 11:05:08 +090071 spin_lock_init(&nilfs->ns_next_gen_lock);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070072 spin_lock_init(&nilfs->ns_last_segment_lock);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +090073 nilfs->ns_cptree = RB_ROOT;
74 spin_lock_init(&nilfs->ns_cptree_lock);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070075 init_rwsem(&nilfs->ns_segctor_sem);
Vyacheslav Dubeykocaa05d42014-08-08 14:20:42 -070076 nilfs->ns_sb_update_freq = NILFS_SB_FREQ;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070077
78 return nilfs;
79}
80
81/**
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +090082 * destroy_nilfs - destroy nilfs object
83 * @nilfs: nilfs object to be released
Ryusuke Konishi33c8e572009-06-08 01:39:29 +090084 */
Ryusuke Konishi348fe8d2010-09-09 02:07:56 +090085void destroy_nilfs(struct the_nilfs *nilfs)
Ryusuke Konishi33c8e572009-06-08 01:39:29 +090086{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070087 might_sleep();
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070088 if (nilfs_init(nilfs)) {
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -070089 nilfs_sysfs_delete_device_group(nilfs);
Ryusuke Konishie339ad32009-04-06 19:01:59 -070090 brelse(nilfs->ns_sbh[0]);
91 brelse(nilfs->ns_sbh[1]);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070092 }
93 kfree(nilfs);
94}
95
Ryusuke Konishif1e89c82010-09-05 12:20:59 +090096static int nilfs_load_super_root(struct the_nilfs *nilfs,
97 struct super_block *sb, sector_t sr_block)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -070098{
99 struct buffer_head *bh_sr;
100 struct nilfs_super_root *raw_sr;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700101 struct nilfs_super_block **sbp = nilfs->ns_sbp;
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900102 struct nilfs_inode *rawi;
Ryusuke Konishi0c6c44c2016-05-23 16:23:39 -0700103 unsigned int dat_entry_size, segment_usage_size, checkpoint_size;
104 unsigned int inode_size;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700105 int err;
106
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900107 err = nilfs_read_super_root_block(nilfs, sr_block, &bh_sr, 1);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700108 if (unlikely(err))
109 return err;
110
111 down_read(&nilfs->ns_sem);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700112 dat_entry_size = le16_to_cpu(sbp[0]->s_dat_entry_size);
113 checkpoint_size = le16_to_cpu(sbp[0]->s_checkpoint_size);
114 segment_usage_size = le16_to_cpu(sbp[0]->s_segment_usage_size);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700115 up_read(&nilfs->ns_sem);
116
117 inode_size = nilfs->ns_inode_size;
118
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900119 rawi = (void *)bh_sr->b_data + NILFS_SR_DAT_OFFSET(inode_size);
120 err = nilfs_dat_read(sb, dat_entry_size, rawi, &nilfs->ns_dat);
121 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700122 goto failed;
123
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900124 rawi = (void *)bh_sr->b_data + NILFS_SR_CPFILE_OFFSET(inode_size);
125 err = nilfs_cpfile_read(sb, checkpoint_size, rawi, &nilfs->ns_cpfile);
126 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700127 goto failed_dat;
128
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900129 rawi = (void *)bh_sr->b_data + NILFS_SR_SUFILE_OFFSET(inode_size);
130 err = nilfs_sufile_read(sb, segment_usage_size, rawi,
131 &nilfs->ns_sufile);
132 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700133 goto failed_cpfile;
134
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700135 raw_sr = (struct nilfs_super_root *)bh_sr->b_data;
136 nilfs->ns_nongc_ctime = le64_to_cpu(raw_sr->sr_nongc_ctime);
137
138 failed:
139 brelse(bh_sr);
140 return err;
141
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700142 failed_cpfile:
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900143 iput(nilfs->ns_cpfile);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700144
145 failed_dat:
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900146 iput(nilfs->ns_dat);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700147 goto failed;
148}
149
150static void nilfs_init_recovery_info(struct nilfs_recovery_info *ri)
151{
152 memset(ri, 0, sizeof(*ri));
153 INIT_LIST_HEAD(&ri->ri_used_segments);
154}
155
156static void nilfs_clear_recovery_info(struct nilfs_recovery_info *ri)
157{
158 nilfs_dispose_segment_list(&ri->ri_used_segments);
159}
160
161/**
Ryusuke Konishi843d63ba2010-06-28 19:15:24 +0900162 * nilfs_store_log_cursor - load log cursor from a super block
163 * @nilfs: nilfs object
164 * @sbp: buffer storing super block to be read
165 *
166 * nilfs_store_log_cursor() reads the last position of the log
167 * containing a super root from a given super block, and initializes
168 * relevant information on the nilfs object preparatory for log
169 * scanning and recovery.
170 */
171static int nilfs_store_log_cursor(struct the_nilfs *nilfs,
172 struct nilfs_super_block *sbp)
173{
174 int ret = 0;
175
176 nilfs->ns_last_pseg = le64_to_cpu(sbp->s_last_pseg);
177 nilfs->ns_last_cno = le64_to_cpu(sbp->s_last_cno);
178 nilfs->ns_last_seq = le64_to_cpu(sbp->s_last_seq);
179
Ryusuke Konishi32502042010-06-29 14:42:13 +0900180 nilfs->ns_prev_seq = nilfs->ns_last_seq;
Ryusuke Konishi843d63ba2010-06-28 19:15:24 +0900181 nilfs->ns_seg_seq = nilfs->ns_last_seq;
182 nilfs->ns_segnum =
183 nilfs_get_segnum_of_block(nilfs, nilfs->ns_last_pseg);
184 nilfs->ns_cno = nilfs->ns_last_cno + 1;
185 if (nilfs->ns_segnum >= nilfs->ns_nsegments) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700186 nilfs_err(nilfs->ns_sb,
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700187 "pointed segment number is out of range: segnum=%llu, nsegments=%lu",
188 (unsigned long long)nilfs->ns_segnum,
189 nilfs->ns_nsegments);
Ryusuke Konishi843d63ba2010-06-28 19:15:24 +0900190 ret = -EINVAL;
191 }
192 return ret;
193}
194
195/**
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700196 * load_nilfs - load and recover the nilfs
197 * @nilfs: the_nilfs structure to be released
Lu Jialin312f79c2021-05-06 18:04:16 -0700198 * @sb: super block instance used to recover past segment
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700199 *
200 * load_nilfs() searches and load the latest super root,
201 * attaches the last segment, and does recovery if needed.
202 * The caller must call this exclusively for simultaneous mounts.
203 */
Ryusuke Konishif7545142011-03-09 11:05:08 +0900204int load_nilfs(struct the_nilfs *nilfs, struct super_block *sb)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700205{
206 struct nilfs_recovery_info ri;
Ryusuke Konishif7545142011-03-09 11:05:08 +0900207 unsigned int s_flags = sb->s_flags;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700208 int really_read_only = bdev_read_only(nilfs->ns_bdev);
Ryusuke Konishia057d2c2009-11-19 19:58:46 +0900209 int valid_fs = nilfs_valid_fs(nilfs);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900210 int err;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700211
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900212 if (!valid_fs) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700213 nilfs_warn(sb, "mounting unchecked fs");
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800214 if (s_flags & SB_RDONLY) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700215 nilfs_info(sb,
216 "recovery required for readonly filesystem");
217 nilfs_info(sb,
218 "write access will be enabled during recovery");
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700219 }
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700220 }
221
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900222 nilfs_init_recovery_info(&ri);
223
Ryusuke Konishi8b940252010-05-23 01:39:02 +0900224 err = nilfs_search_super_root(nilfs, &ri);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700225 if (unlikely(err)) {
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900226 struct nilfs_super_block **sbp = nilfs->ns_sbp;
227 int blocksize;
228
229 if (err != -EINVAL)
230 goto scan_error;
231
232 if (!nilfs_valid_sb(sbp[1])) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700233 nilfs_warn(sb,
234 "unable to fall back to spare super block");
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900235 goto scan_error;
236 }
Joe Perchesa1d07472020-08-11 18:35:49 -0700237 nilfs_info(sb, "trying rollback from an earlier position");
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900238
239 /*
240 * restore super block with its spare and reconfigure
241 * relevant states of the nilfs object.
242 */
243 memcpy(sbp[0], sbp[1], nilfs->ns_sbsize);
244 nilfs->ns_crc_seed = le32_to_cpu(sbp[0]->s_crc_seed);
245 nilfs->ns_sbwtime = le64_to_cpu(sbp[0]->s_wtime);
246
247 /* verify consistency between two super blocks */
248 blocksize = BLOCK_SIZE << le32_to_cpu(sbp[0]->s_log_block_size);
249 if (blocksize != nilfs->ns_blocksize) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700250 nilfs_warn(sb,
251 "blocksize differs between two super blocks (%d != %d)",
252 blocksize, nilfs->ns_blocksize);
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900253 goto scan_error;
254 }
255
256 err = nilfs_store_log_cursor(nilfs, sbp[0]);
257 if (err)
258 goto scan_error;
259
260 /* drop clean flag to allow roll-forward and recovery */
261 nilfs->ns_mount_state &= ~NILFS_VALID_FS;
262 valid_fs = 0;
263
264 err = nilfs_search_super_root(nilfs, &ri);
265 if (err)
266 goto scan_error;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700267 }
268
Ryusuke Konishif7545142011-03-09 11:05:08 +0900269 err = nilfs_load_super_root(nilfs, sb, ri.ri_super_root);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700270 if (unlikely(err)) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700271 nilfs_err(sb, "error %d while loading super root", err);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700272 goto failed;
273 }
274
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900275 if (valid_fs)
276 goto skip_recovery;
277
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800278 if (s_flags & SB_RDONLY) {
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900279 __u64 features;
280
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900281 if (nilfs_test_opt(nilfs, NORECOVERY)) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700282 nilfs_info(sb,
283 "norecovery option specified, skipping roll-forward recovery");
Ryusuke Konishi02345762009-11-20 03:28:01 +0900284 goto skip_recovery;
285 }
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900286 features = le64_to_cpu(nilfs->ns_sbp[0]->s_feature_compat_ro) &
287 ~NILFS_FEATURE_COMPAT_RO_SUPP;
288 if (features) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700289 nilfs_err(sb,
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700290 "couldn't proceed with recovery because of unsupported optional features (%llx)",
291 (unsigned long long)features);
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900292 err = -EROFS;
293 goto failed_unload;
294 }
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900295 if (really_read_only) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700296 nilfs_err(sb,
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700297 "write access unavailable, cannot proceed");
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900298 err = -EROFS;
299 goto failed_unload;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700300 }
Linus Torvalds1751e8a2017-11-27 13:05:09 -0800301 sb->s_flags &= ~SB_RDONLY;
Ryusuke Konishi3b2ce582011-03-09 11:05:07 +0900302 } else if (nilfs_test_opt(nilfs, NORECOVERY)) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700303 nilfs_err(sb,
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700304 "recovery cancelled because norecovery option was specified for a read/write mount");
Ryusuke Konishi02345762009-11-20 03:28:01 +0900305 err = -EINVAL;
306 goto failed_unload;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700307 }
308
Ryusuke Konishif7545142011-03-09 11:05:08 +0900309 err = nilfs_salvage_orphan_logs(nilfs, sb, &ri);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900310 if (err)
311 goto failed_unload;
312
313 down_write(&nilfs->ns_sem);
Ryusuke Konishi7ecaa462010-06-28 17:49:29 +0900314 nilfs->ns_mount_state |= NILFS_VALID_FS; /* set "clean" flag */
Ryusuke Konishif7545142011-03-09 11:05:08 +0900315 err = nilfs_cleanup_super(sb);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900316 up_write(&nilfs->ns_sem);
317
318 if (err) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700319 nilfs_err(sb,
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700320 "error %d updating super block. recovery unfinished.",
321 err);
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900322 goto failed_unload;
323 }
Joe Perchesa1d07472020-08-11 18:35:49 -0700324 nilfs_info(sb, "recovery complete");
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900325
326 skip_recovery:
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900327 nilfs_clear_recovery_info(&ri);
Ryusuke Konishif7545142011-03-09 11:05:08 +0900328 sb->s_flags = s_flags;
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900329 return 0;
330
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900331 scan_error:
Joe Perchesa1d07472020-08-11 18:35:49 -0700332 nilfs_err(sb, "error %d while searching super root", err);
Ryusuke Konishi6c1251602010-06-28 19:15:26 +0900333 goto failed;
334
Ryusuke Konishif50a4c82009-11-19 16:58:40 +0900335 failed_unload:
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900336 iput(nilfs->ns_cpfile);
337 iput(nilfs->ns_sufile);
338 iput(nilfs->ns_dat);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700339
340 failed:
341 nilfs_clear_recovery_info(&ri);
Ryusuke Konishif7545142011-03-09 11:05:08 +0900342 sb->s_flags = s_flags;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700343 return err;
344}
345
346static unsigned long long nilfs_max_size(unsigned int blkbits)
347{
348 unsigned int max_bits;
349 unsigned long long res = MAX_LFS_FILESIZE; /* page cache limit */
350
351 max_bits = blkbits + NILFS_BMAP_KEY_BIT; /* bmap size limit */
352 if (max_bits < 64)
353 res = min_t(unsigned long long, res, (1ULL << max_bits) - 1);
354 return res;
355}
356
Ryusuke Konishi4e33f9e2011-05-05 01:23:58 +0900357/**
358 * nilfs_nrsvsegs - calculate the number of reserved segments
359 * @nilfs: nilfs object
360 * @nsegs: total number of segments
361 */
362unsigned long nilfs_nrsvsegs(struct the_nilfs *nilfs, unsigned long nsegs)
363{
364 return max_t(unsigned long, NILFS_MIN_NRSVSEGS,
365 DIV_ROUND_UP(nsegs * nilfs->ns_r_segments_percentage,
366 100));
367}
368
369void nilfs_set_nsegments(struct the_nilfs *nilfs, unsigned long nsegs)
370{
371 nilfs->ns_nsegments = nsegs;
372 nilfs->ns_nrsvsegs = nilfs_nrsvsegs(nilfs, nsegs);
373}
374
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700375static int nilfs_store_disk_layout(struct the_nilfs *nilfs,
376 struct nilfs_super_block *sbp)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700377{
Ryusuke Konishi9566a7a2010-08-10 00:58:41 +0900378 if (le32_to_cpu(sbp->s_rev_level) < NILFS_MIN_SUPP_REV) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700379 nilfs_err(nilfs->ns_sb,
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700380 "unsupported revision (superblock rev.=%d.%d, current rev.=%d.%d). Please check the version of mkfs.nilfs(2).",
381 le32_to_cpu(sbp->s_rev_level),
382 le16_to_cpu(sbp->s_minor_rev_level),
383 NILFS_CURRENT_REV, NILFS_MINOR_REV);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700384 return -EINVAL;
385 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700386 nilfs->ns_sbsize = le16_to_cpu(sbp->s_bytes);
387 if (nilfs->ns_sbsize > BLOCK_SIZE)
388 return -EINVAL;
389
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700390 nilfs->ns_inode_size = le16_to_cpu(sbp->s_inode_size);
Ryusuke Konishi0ec060d2014-04-03 14:50:31 -0700391 if (nilfs->ns_inode_size > nilfs->ns_blocksize) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700392 nilfs_err(nilfs->ns_sb, "too large inode size: %d bytes",
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700393 nilfs->ns_inode_size);
Ryusuke Konishi0ec060d2014-04-03 14:50:31 -0700394 return -EINVAL;
395 } else if (nilfs->ns_inode_size < NILFS_MIN_INODE_SIZE) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700396 nilfs_err(nilfs->ns_sb, "too small inode size: %d bytes",
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700397 nilfs->ns_inode_size);
Ryusuke Konishi0ec060d2014-04-03 14:50:31 -0700398 return -EINVAL;
399 }
400
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700401 nilfs->ns_first_ino = le32_to_cpu(sbp->s_first_ino);
402
403 nilfs->ns_blocks_per_segment = le32_to_cpu(sbp->s_blocks_per_segment);
404 if (nilfs->ns_blocks_per_segment < NILFS_SEG_MIN_BLOCKS) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700405 nilfs_err(nilfs->ns_sb, "too short segment: %lu blocks",
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700406 nilfs->ns_blocks_per_segment);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700407 return -EINVAL;
408 }
409
410 nilfs->ns_first_data_block = le64_to_cpu(sbp->s_first_data_block);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700411 nilfs->ns_r_segments_percentage =
412 le32_to_cpu(sbp->s_r_segments_percentage);
Haogang Chen3d777a62012-03-16 17:08:38 -0700413 if (nilfs->ns_r_segments_percentage < 1 ||
414 nilfs->ns_r_segments_percentage > 99) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700415 nilfs_err(nilfs->ns_sb,
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700416 "invalid reserved segments percentage: %lu",
417 nilfs->ns_r_segments_percentage);
Haogang Chen3d777a62012-03-16 17:08:38 -0700418 return -EINVAL;
419 }
420
Ryusuke Konishi4e33f9e2011-05-05 01:23:58 +0900421 nilfs_set_nsegments(nilfs, le64_to_cpu(sbp->s_nsegments));
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700422 nilfs->ns_crc_seed = le32_to_cpu(sbp->s_crc_seed);
423 return 0;
424}
425
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700426static int nilfs_valid_sb(struct nilfs_super_block *sbp)
427{
428 static unsigned char sum[4];
429 const int sumoff = offsetof(struct nilfs_super_block, s_sum);
430 size_t bytes;
431 u32 crc;
432
433 if (!sbp || le16_to_cpu(sbp->s_magic) != NILFS_SUPER_MAGIC)
434 return 0;
435 bytes = le16_to_cpu(sbp->s_bytes);
Torsten Hilbrich63d2f952016-06-24 14:50:18 -0700436 if (bytes < sumoff + 4 || bytes > BLOCK_SIZE)
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700437 return 0;
438 crc = crc32_le(le32_to_cpu(sbp->s_crc_seed), (unsigned char *)sbp,
439 sumoff);
440 crc = crc32_le(crc, sum, 4);
441 crc = crc32_le(crc, (unsigned char *)sbp + sumoff + 4,
442 bytes - sumoff - 4);
443 return crc == le32_to_cpu(sbp->s_sum);
444}
445
446static int nilfs_sb2_bad_offset(struct nilfs_super_block *sbp, u64 offset)
447{
448 return offset < ((le64_to_cpu(sbp->s_nsegments) *
449 le32_to_cpu(sbp->s_blocks_per_segment)) <<
450 (le32_to_cpu(sbp->s_log_block_size) + 10));
451}
452
453static void nilfs_release_super_block(struct the_nilfs *nilfs)
454{
455 int i;
456
457 for (i = 0; i < 2; i++) {
458 if (nilfs->ns_sbp[i]) {
459 brelse(nilfs->ns_sbh[i]);
460 nilfs->ns_sbh[i] = NULL;
461 nilfs->ns_sbp[i] = NULL;
462 }
463 }
464}
465
466void nilfs_fall_back_super_block(struct the_nilfs *nilfs)
467{
468 brelse(nilfs->ns_sbh[0]);
469 nilfs->ns_sbh[0] = nilfs->ns_sbh[1];
470 nilfs->ns_sbp[0] = nilfs->ns_sbp[1];
471 nilfs->ns_sbh[1] = NULL;
472 nilfs->ns_sbp[1] = NULL;
473}
474
475void nilfs_swap_super_block(struct the_nilfs *nilfs)
476{
477 struct buffer_head *tsbh = nilfs->ns_sbh[0];
478 struct nilfs_super_block *tsbp = nilfs->ns_sbp[0];
479
480 nilfs->ns_sbh[0] = nilfs->ns_sbh[1];
481 nilfs->ns_sbp[0] = nilfs->ns_sbp[1];
482 nilfs->ns_sbh[1] = tsbh;
483 nilfs->ns_sbp[1] = tsbp;
484}
485
486static int nilfs_load_super_block(struct the_nilfs *nilfs,
487 struct super_block *sb, int blocksize,
488 struct nilfs_super_block **sbpp)
489{
490 struct nilfs_super_block **sbp = nilfs->ns_sbp;
491 struct buffer_head **sbh = nilfs->ns_sbh;
492 u64 sb2off = NILFS_SB2_OFFSET_BYTES(nilfs->ns_bdev->bd_inode->i_size);
493 int valid[2], swp = 0;
494
495 sbp[0] = nilfs_read_super_block(sb, NILFS_SB_OFFSET_BYTES, blocksize,
496 &sbh[0]);
497 sbp[1] = nilfs_read_super_block(sb, sb2off, blocksize, &sbh[1]);
498
499 if (!sbp[0]) {
500 if (!sbp[1]) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700501 nilfs_err(sb, "unable to read superblock");
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700502 return -EIO;
503 }
Joe Perchesa1d07472020-08-11 18:35:49 -0700504 nilfs_warn(sb,
505 "unable to read primary superblock (blocksize = %d)",
506 blocksize);
Ryusuke Konishi4138ec22011-01-24 00:28:22 +0900507 } else if (!sbp[1]) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700508 nilfs_warn(sb,
509 "unable to read secondary superblock (blocksize = %d)",
510 blocksize);
Ryusuke Konishi4138ec22011-01-24 00:28:22 +0900511 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700512
Ryusuke Konishi25294d82010-05-01 11:54:21 +0900513 /*
514 * Compare two super blocks and set 1 in swp if the secondary
515 * super block is valid and newer. Otherwise, set 0 in swp.
516 */
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700517 valid[0] = nilfs_valid_sb(sbp[0]);
518 valid[1] = nilfs_valid_sb(sbp[1]);
Ryusuke Konishi25294d82010-05-01 11:54:21 +0900519 swp = valid[1] && (!valid[0] ||
520 le64_to_cpu(sbp[1]->s_last_cno) >
521 le64_to_cpu(sbp[0]->s_last_cno));
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700522
523 if (valid[swp] && nilfs_sb2_bad_offset(sbp[swp], sb2off)) {
524 brelse(sbh[1]);
525 sbh[1] = NULL;
526 sbp[1] = NULL;
Ryusuke Konishid7178c72012-03-16 17:08:39 -0700527 valid[1] = 0;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700528 swp = 0;
529 }
530 if (!valid[swp]) {
531 nilfs_release_super_block(nilfs);
Joe Perchesa1d07472020-08-11 18:35:49 -0700532 nilfs_err(sb, "couldn't find nilfs on the device");
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700533 return -EINVAL;
534 }
535
Ryusuke Konishiea1a16f2010-08-15 20:16:11 +0900536 if (!valid[!swp])
Joe Perchesa1d07472020-08-11 18:35:49 -0700537 nilfs_warn(sb,
538 "broken superblock, retrying with spare superblock (blocksize = %d)",
539 blocksize);
Ryusuke Konishiea1a16f2010-08-15 20:16:11 +0900540 if (swp)
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700541 nilfs_swap_super_block(nilfs);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700542
Jiro SEKIBAb2ac86e2010-06-28 17:49:33 +0900543 nilfs->ns_sbwcount = 0;
544 nilfs->ns_sbwtime = le64_to_cpu(sbp[0]->s_wtime);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700545 nilfs->ns_prot_seq = le64_to_cpu(sbp[valid[1] & !swp]->s_last_seq);
546 *sbpp = sbp[0];
547 return 0;
548}
549
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700550/**
551 * init_nilfs - initialize a NILFS instance.
552 * @nilfs: the_nilfs structure
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700553 * @sb: super block
554 * @data: mount options
555 *
556 * init_nilfs() performs common initialization per block device (e.g.
557 * reading the super block, getting disk layout information, initializing
Ryusuke Konishif11459a2010-08-16 01:54:52 +0900558 * shared fields in the_nilfs).
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700559 *
560 * Return Value: On success, 0 is returned. On error, a negative error
561 * code is returned.
562 */
Ryusuke Konishif7545142011-03-09 11:05:08 +0900563int init_nilfs(struct the_nilfs *nilfs, struct super_block *sb, char *data)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700564{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700565 struct nilfs_super_block *sbp;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700566 int blocksize;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700567 int err;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700568
569 down_write(&nilfs->ns_sem);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700570
Ryusuke Konishi89c0fd02010-07-25 22:44:53 +0900571 blocksize = sb_min_blocksize(sb, NILFS_MIN_BLOCK_SIZE);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700572 if (!blocksize) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700573 nilfs_err(sb, "unable to set blocksize");
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700574 err = -EINVAL;
575 goto out;
576 }
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700577 err = nilfs_load_super_block(nilfs, sb, blocksize, &sbp);
578 if (err)
579 goto out;
580
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700581 err = nilfs_store_magic_and_option(sb, sbp, data);
582 if (err)
583 goto failed_sbh;
584
Ryusuke Konishic5ca48a2010-07-22 03:22:20 +0900585 err = nilfs_check_feature_compatibility(sb, sbp);
586 if (err)
587 goto failed_sbh;
588
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700589 blocksize = BLOCK_SIZE << le32_to_cpu(sbp->s_log_block_size);
Ryusuke Konishi89c0fd02010-07-25 22:44:53 +0900590 if (blocksize < NILFS_MIN_BLOCK_SIZE ||
591 blocksize > NILFS_MAX_BLOCK_SIZE) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700592 nilfs_err(sb,
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700593 "couldn't mount because of unsupported filesystem blocksize %d",
594 blocksize);
Ryusuke Konishi89c0fd02010-07-25 22:44:53 +0900595 err = -EINVAL;
596 goto failed_sbh;
597 }
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700598 if (sb->s_blocksize != blocksize) {
Martin K. Petersene1defc42009-05-22 17:17:49 -0400599 int hw_blocksize = bdev_logical_block_size(sb->s_bdev);
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700600
601 if (blocksize < hw_blocksize) {
Joe Perchesa1d07472020-08-11 18:35:49 -0700602 nilfs_err(sb,
Ryusuke Konishifeee8802016-08-02 14:05:10 -0700603 "blocksize %d too small for device (sector-size = %d)",
604 blocksize, hw_blocksize);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700605 err = -EINVAL;
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700606 goto failed_sbh;
607 }
608 nilfs_release_super_block(nilfs);
609 sb_set_blocksize(sb, blocksize);
610
611 err = nilfs_load_super_block(nilfs, sb, blocksize, &sbp);
612 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700613 goto out;
Ryusuke Konishi076a3782016-05-23 16:23:48 -0700614 /*
615 * Not to failed_sbh; sbh is released automatically
616 * when reloading fails.
617 */
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700618 }
619 nilfs->ns_blocksize_bits = sb->s_blocksize_bits;
Ryusuke Konishi92c60cc2010-05-23 00:17:48 +0900620 nilfs->ns_blocksize = blocksize;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700621
Ryusuke Konishi9b1fc4e42011-03-09 11:05:08 +0900622 get_random_bytes(&nilfs->ns_next_generation,
623 sizeof(nilfs->ns_next_generation));
624
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700625 err = nilfs_store_disk_layout(nilfs, sbp);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700626 if (err)
627 goto failed_sbh;
628
629 sb->s_maxbytes = nilfs_max_size(sb->s_blocksize_bits);
630
631 nilfs->ns_mount_state = le16_to_cpu(sbp->s_state);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700632
Ryusuke Konishi843d63ba2010-06-28 19:15:24 +0900633 err = nilfs_store_log_cursor(nilfs, sbp);
634 if (err)
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700635 goto failed_sbh;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700636
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700637 err = nilfs_sysfs_create_device_group(sb);
638 if (err)
639 goto failed_sbh;
640
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700641 set_nilfs_init(nilfs);
642 err = 0;
643 out:
644 up_write(&nilfs->ns_sem);
645 return err;
646
647 failed_sbh:
Ryusuke Konishie339ad32009-04-06 19:01:59 -0700648 nilfs_release_super_block(nilfs);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700649 goto out;
650}
651
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900652int nilfs_discard_segments(struct the_nilfs *nilfs, __u64 *segnump,
653 size_t nsegs)
654{
655 sector_t seg_start, seg_end;
656 sector_t start = 0, nblocks = 0;
657 unsigned int sects_per_block;
658 __u64 *sn;
659 int ret = 0;
660
661 sects_per_block = (1 << nilfs->ns_blocksize_bits) /
662 bdev_logical_block_size(nilfs->ns_bdev);
663 for (sn = segnump; sn < segnump + nsegs; sn++) {
664 nilfs_get_segment_range(nilfs, *sn, &seg_start, &seg_end);
665
666 if (!nblocks) {
667 start = seg_start;
668 nblocks = seg_end - seg_start + 1;
669 } else if (start + nblocks == seg_start) {
670 nblocks += seg_end - seg_start + 1;
671 } else {
672 ret = blkdev_issue_discard(nilfs->ns_bdev,
673 start * sects_per_block,
674 nblocks * sects_per_block,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200675 GFP_NOFS, 0);
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900676 if (ret < 0)
677 return ret;
678 nblocks = 0;
679 }
680 }
681 if (nblocks)
682 ret = blkdev_issue_discard(nilfs->ns_bdev,
683 start * sects_per_block,
684 nblocks * sects_per_block,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200685 GFP_NOFS, 0);
Jiro SEKIBAe902ec92010-01-30 18:06:35 +0900686 return ret;
687}
688
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700689int nilfs_count_free_blocks(struct the_nilfs *nilfs, sector_t *nblocks)
690{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700691 unsigned long ncleansegs;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700692
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900693 down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishief7d4752009-11-13 08:45:32 +0900694 ncleansegs = nilfs_sufile_get_ncleansegs(nilfs->ns_sufile);
Ryusuke Konishi365e2152010-12-27 00:07:30 +0900695 up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem);
Ryusuke Konishief7d4752009-11-13 08:45:32 +0900696 *nblocks = (sector_t)ncleansegs * nilfs->ns_blocks_per_segment;
697 return 0;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700698}
699
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700700int nilfs_near_disk_full(struct the_nilfs *nilfs)
701{
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700702 unsigned long ncleansegs, nincsegs;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700703
Ryusuke Konishief7d4752009-11-13 08:45:32 +0900704 ncleansegs = nilfs_sufile_get_ncleansegs(nilfs->ns_sufile);
705 nincsegs = atomic_read(&nilfs->ns_ndirtyblks) /
706 nilfs->ns_blocks_per_segment + 1;
707
708 return ncleansegs <= nilfs->ns_nrsvsegs + nincsegs;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700709}
710
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900711struct nilfs_root *nilfs_lookup_root(struct the_nilfs *nilfs, __u64 cno)
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900712{
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900713 struct rb_node *n;
714 struct nilfs_root *root;
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900715
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900716 spin_lock(&nilfs->ns_cptree_lock);
717 n = nilfs->ns_cptree.rb_node;
718 while (n) {
719 root = rb_entry(n, struct nilfs_root, rb_node);
Ryusuke Konishi6dd47402009-06-08 01:39:31 +0900720
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900721 if (cno < root->cno) {
722 n = n->rb_left;
723 } else if (cno > root->cno) {
724 n = n->rb_right;
725 } else {
Elena Reshetovad4f02842017-11-17 15:29:39 -0800726 refcount_inc(&root->count);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900727 spin_unlock(&nilfs->ns_cptree_lock);
728 return root;
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700729 }
730 }
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900731 spin_unlock(&nilfs->ns_cptree_lock);
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700732
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900733 return NULL;
734}
735
736struct nilfs_root *
737nilfs_find_or_create_root(struct the_nilfs *nilfs, __u64 cno)
738{
739 struct rb_node **p, *parent;
740 struct nilfs_root *root, *new;
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700741 int err;
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900742
743 root = nilfs_lookup_root(nilfs, cno);
744 if (root)
745 return root;
746
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700747 new = kzalloc(sizeof(*root), GFP_KERNEL);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900748 if (!new)
749 return NULL;
750
751 spin_lock(&nilfs->ns_cptree_lock);
752
753 p = &nilfs->ns_cptree.rb_node;
754 parent = NULL;
755
756 while (*p) {
757 parent = *p;
758 root = rb_entry(parent, struct nilfs_root, rb_node);
759
760 if (cno < root->cno) {
761 p = &(*p)->rb_left;
762 } else if (cno > root->cno) {
763 p = &(*p)->rb_right;
764 } else {
Elena Reshetovad4f02842017-11-17 15:29:39 -0800765 refcount_inc(&root->count);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900766 spin_unlock(&nilfs->ns_cptree_lock);
767 kfree(new);
768 return root;
769 }
770 }
771
772 new->cno = cno;
773 new->ifile = NULL;
774 new->nilfs = nilfs;
Elena Reshetovad4f02842017-11-17 15:29:39 -0800775 refcount_set(&new->count, 1);
Vyacheslav Dubeykoe5f7f842013-07-03 15:08:06 -0700776 atomic64_set(&new->inodes_count, 0);
777 atomic64_set(&new->blocks_count, 0);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900778
779 rb_link_node(&new->rb_node, parent, p);
780 rb_insert_color(&new->rb_node, &nilfs->ns_cptree);
781
782 spin_unlock(&nilfs->ns_cptree_lock);
783
Vyacheslav Dubeykodd70edb2014-08-08 14:20:55 -0700784 err = nilfs_sysfs_create_snapshot_group(new);
785 if (err) {
786 kfree(new);
787 new = NULL;
788 }
789
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900790 return new;
791}
792
793void nilfs_put_root(struct nilfs_root *root)
794{
Zhen Lei98e2e402021-09-07 20:00:26 -0700795 struct the_nilfs *nilfs = root->nilfs;
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900796
Zhen Lei98e2e402021-09-07 20:00:26 -0700797 if (refcount_dec_and_lock(&root->count, &nilfs->ns_cptree_lock)) {
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900798 rb_erase(&root->rb_node, &nilfs->ns_cptree);
799 spin_unlock(&nilfs->ns_cptree_lock);
Zhen Lei98e2e402021-09-07 20:00:26 -0700800
801 nilfs_sysfs_delete_snapshot_group(root);
Markus Elfring72b99182014-12-10 15:54:31 -0800802 iput(root->ifile);
Ryusuke Konishiba65ae42010-08-14 12:59:15 +0900803
804 kfree(root);
805 }
Ryusuke Konishi8a9d2192009-04-06 19:01:35 -0700806}