Commit | Line | Data |
---|---|---|
ae98043f | 1 | // SPDX-License-Identifier: GPL-2.0+ |
8a9d2191 | 2 | /* |
94ee1d91 | 3 | * the_nilfs shared structure. |
8a9d2191 RK |
4 | * |
5 | * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation. | |
6 | * | |
4b420ab4 | 7 | * Written by Ryusuke Konishi. |
8a9d2191 RK |
8 | * |
9 | */ | |
10 | ||
11 | #include <linux/buffer_head.h> | |
12 | #include <linux/slab.h> | |
13 | #include <linux/blkdev.h> | |
14 | #include <linux/backing-dev.h> | |
9b1fc4e4 | 15 | #include <linux/random.h> |
e339ad31 | 16 | #include <linux/crc32.h> |
8a9d2191 RK |
17 | #include "nilfs.h" |
18 | #include "segment.h" | |
19 | #include "alloc.h" | |
20 | #include "cpfile.h" | |
21 | #include "sufile.h" | |
22 | #include "dat.h" | |
8a9d2191 RK |
23 | #include "segbuf.h" |
24 | ||
33c8e57c | 25 | |
6c125160 RK |
26 | static int nilfs_valid_sb(struct nilfs_super_block *sbp); |
27 | ||
8a9d2191 RK |
28 | void 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; | |
32502047 RK |
35 | |
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: | |
8a9d2191 RK |
45 | spin_unlock(&nilfs->ns_last_segment_lock); |
46 | } | |
47 | ||
48 | /** | |
348fe8da | 49 | * alloc_nilfs - allocate a nilfs object |
6625689e | 50 | * @sb: super block instance |
8a9d2191 | 51 | * |
8a9d2191 RK |
52 | * Return Value: On success, pointer to the_nilfs is returned. |
53 | * On error, NULL is returned. | |
54 | */ | |
6625689e | 55 | struct the_nilfs *alloc_nilfs(struct super_block *sb) |
8a9d2191 RK |
56 | { |
57 | struct the_nilfs *nilfs; | |
58 | ||
59 | nilfs = kzalloc(sizeof(*nilfs), GFP_KERNEL); | |
60 | if (!nilfs) | |
61 | return NULL; | |
62 | ||
6625689e RK |
63 | nilfs->ns_sb = sb; |
64 | nilfs->ns_bdev = sb->s_bdev; | |
8a9d2191 RK |
65 | atomic_set(&nilfs->ns_ndirtyblks, 0); |
66 | init_rwsem(&nilfs->ns_sem); | |
572d8b39 | 67 | mutex_init(&nilfs->ns_snapshot_mount_mutex); |
693dd321 | 68 | INIT_LIST_HEAD(&nilfs->ns_dirty_files); |
263d90ce | 69 | INIT_LIST_HEAD(&nilfs->ns_gc_inodes); |
693dd321 | 70 | spin_lock_init(&nilfs->ns_inode_lock); |
9b1fc4e4 | 71 | spin_lock_init(&nilfs->ns_next_gen_lock); |
8a9d2191 | 72 | spin_lock_init(&nilfs->ns_last_segment_lock); |
ba65ae47 RK |
73 | nilfs->ns_cptree = RB_ROOT; |
74 | spin_lock_init(&nilfs->ns_cptree_lock); | |
8a9d2191 | 75 | init_rwsem(&nilfs->ns_segctor_sem); |
caa05d49 | 76 | nilfs->ns_sb_update_freq = NILFS_SB_FREQ; |
8a9d2191 RK |
77 | |
78 | return nilfs; | |
79 | } | |
80 | ||
33c8e57c | 81 | /** |
348fe8da RK |
82 | * destroy_nilfs - destroy nilfs object |
83 | * @nilfs: nilfs object to be released | |
8a9d2191 | 84 | */ |
348fe8da | 85 | void destroy_nilfs(struct the_nilfs *nilfs) |
8a9d2191 | 86 | { |
8a9d2191 | 87 | might_sleep(); |
8a9d2191 | 88 | if (nilfs_init(nilfs)) { |
dd70edbd | 89 | nilfs_sysfs_delete_device_group(nilfs); |
e339ad31 RK |
90 | brelse(nilfs->ns_sbh[0]); |
91 | brelse(nilfs->ns_sbh[1]); | |
8a9d2191 RK |
92 | } |
93 | kfree(nilfs); | |
94 | } | |
95 | ||
f1e89c86 RK |
96 | static int nilfs_load_super_root(struct the_nilfs *nilfs, |
97 | struct super_block *sb, sector_t sr_block) | |
8a9d2191 RK |
98 | { |
99 | struct buffer_head *bh_sr; | |
100 | struct nilfs_super_root *raw_sr; | |
e339ad31 | 101 | struct nilfs_super_block **sbp = nilfs->ns_sbp; |
f1e89c86 | 102 | struct nilfs_inode *rawi; |
0c6c44cb RK |
103 | unsigned int dat_entry_size, segment_usage_size, checkpoint_size; |
104 | unsigned int inode_size; | |
8a9d2191 RK |
105 | int err; |
106 | ||
8b94025c | 107 | err = nilfs_read_super_root_block(nilfs, sr_block, &bh_sr, 1); |
8a9d2191 RK |
108 | if (unlikely(err)) |
109 | return err; | |
110 | ||
111 | down_read(&nilfs->ns_sem); | |
e339ad31 RK |
112 | 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); | |
8a9d2191 RK |
115 | up_read(&nilfs->ns_sem); |
116 | ||
117 | inode_size = nilfs->ns_inode_size; | |
118 | ||
f1e89c86 RK |
119 | 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) | |
8a9d2191 RK |
122 | goto failed; |
123 | ||
f1e89c86 RK |
124 | 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) | |
8a9d2191 RK |
127 | goto failed_dat; |
128 | ||
f1e89c86 RK |
129 | 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) | |
8a9d2191 RK |
133 | goto failed_cpfile; |
134 | ||
8a9d2191 RK |
135 | 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 | ||
8a9d2191 | 142 | failed_cpfile: |
f1e89c86 | 143 | iput(nilfs->ns_cpfile); |
8a9d2191 RK |
144 | |
145 | failed_dat: | |
f1e89c86 | 146 | iput(nilfs->ns_dat); |
8a9d2191 RK |
147 | goto failed; |
148 | } | |
149 | ||
150 | static 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 | ||
156 | static void nilfs_clear_recovery_info(struct nilfs_recovery_info *ri) | |
157 | { | |
158 | nilfs_dispose_segment_list(&ri->ri_used_segments); | |
159 | } | |
160 | ||
843d63ba RK |
161 | /** |
162 | * 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 | */ | |
171 | static 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 | ||
32502047 | 180 | nilfs->ns_prev_seq = nilfs->ns_last_seq; |
843d63ba RK |
181 | 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) { | |
a1d0747a | 186 | nilfs_err(nilfs->ns_sb, |
feee880f RK |
187 | "pointed segment number is out of range: segnum=%llu, nsegments=%lu", |
188 | (unsigned long long)nilfs->ns_segnum, | |
189 | nilfs->ns_nsegments); | |
843d63ba RK |
190 | ret = -EINVAL; |
191 | } | |
192 | return ret; | |
193 | } | |
194 | ||
8a9d2191 RK |
195 | /** |
196 | * load_nilfs - load and recover the nilfs | |
197 | * @nilfs: the_nilfs structure to be released | |
312f79c4 | 198 | * @sb: super block instance used to recover past segment |
8a9d2191 RK |
199 | * |
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 | */ | |
f7545144 | 204 | int load_nilfs(struct the_nilfs *nilfs, struct super_block *sb) |
8a9d2191 RK |
205 | { |
206 | struct nilfs_recovery_info ri; | |
f7545144 | 207 | unsigned int s_flags = sb->s_flags; |
8a9d2191 | 208 | int really_read_only = bdev_read_only(nilfs->ns_bdev); |
a057d2c0 | 209 | int valid_fs = nilfs_valid_fs(nilfs); |
f50a4c81 | 210 | int err; |
8a9d2191 | 211 | |
f50a4c81 | 212 | if (!valid_fs) { |
a1d0747a | 213 | nilfs_warn(sb, "mounting unchecked fs"); |
1751e8a6 | 214 | if (s_flags & SB_RDONLY) { |
a1d0747a JP |
215 | nilfs_info(sb, |
216 | "recovery required for readonly filesystem"); | |
217 | nilfs_info(sb, | |
218 | "write access will be enabled during recovery"); | |
8a9d2191 | 219 | } |
8a9d2191 RK |
220 | } |
221 | ||
f50a4c81 RK |
222 | nilfs_init_recovery_info(&ri); |
223 | ||
8b94025c | 224 | err = nilfs_search_super_root(nilfs, &ri); |
8a9d2191 | 225 | if (unlikely(err)) { |
6c125160 RK |
226 | 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])) { | |
a1d0747a JP |
233 | nilfs_warn(sb, |
234 | "unable to fall back to spare super block"); | |
6c125160 RK |
235 | goto scan_error; |
236 | } | |
a1d0747a | 237 | nilfs_info(sb, "trying rollback from an earlier position"); |
6c125160 RK |
238 | |
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) { | |
a1d0747a JP |
250 | nilfs_warn(sb, |
251 | "blocksize differs between two super blocks (%d != %d)", | |
252 | blocksize, nilfs->ns_blocksize); | |
6c125160 RK |
253 | 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; | |
8a9d2191 RK |
267 | } |
268 | ||
f7545144 | 269 | err = nilfs_load_super_root(nilfs, sb, ri.ri_super_root); |
8a9d2191 | 270 | if (unlikely(err)) { |
a1d0747a | 271 | nilfs_err(sb, "error %d while loading super root", err); |
8a9d2191 RK |
272 | goto failed; |
273 | } | |
274 | ||
f50a4c81 RK |
275 | if (valid_fs) |
276 | goto skip_recovery; | |
277 | ||
1751e8a6 | 278 | if (s_flags & SB_RDONLY) { |
c5ca48aa RK |
279 | __u64 features; |
280 | ||
3b2ce58b | 281 | if (nilfs_test_opt(nilfs, NORECOVERY)) { |
a1d0747a JP |
282 | nilfs_info(sb, |
283 | "norecovery option specified, skipping roll-forward recovery"); | |
0234576d RK |
284 | goto skip_recovery; |
285 | } | |
c5ca48aa RK |
286 | features = le64_to_cpu(nilfs->ns_sbp[0]->s_feature_compat_ro) & |
287 | ~NILFS_FEATURE_COMPAT_RO_SUPP; | |
288 | if (features) { | |
a1d0747a | 289 | nilfs_err(sb, |
feee880f RK |
290 | "couldn't proceed with recovery because of unsupported optional features (%llx)", |
291 | (unsigned long long)features); | |
c5ca48aa RK |
292 | err = -EROFS; |
293 | goto failed_unload; | |
294 | } | |
f50a4c81 | 295 | if (really_read_only) { |
a1d0747a | 296 | nilfs_err(sb, |
feee880f | 297 | "write access unavailable, cannot proceed"); |
f50a4c81 RK |
298 | err = -EROFS; |
299 | goto failed_unload; | |
8a9d2191 | 300 | } |
1751e8a6 | 301 | sb->s_flags &= ~SB_RDONLY; |
3b2ce58b | 302 | } else if (nilfs_test_opt(nilfs, NORECOVERY)) { |
a1d0747a | 303 | nilfs_err(sb, |
feee880f | 304 | "recovery cancelled because norecovery option was specified for a read/write mount"); |
0234576d RK |
305 | err = -EINVAL; |
306 | goto failed_unload; | |
f50a4c81 RK |
307 | } |
308 | ||
f7545144 | 309 | err = nilfs_salvage_orphan_logs(nilfs, sb, &ri); |
f50a4c81 RK |
310 | if (err) |
311 | goto failed_unload; | |
312 | ||
313 | down_write(&nilfs->ns_sem); | |
7ecaa46c | 314 | nilfs->ns_mount_state |= NILFS_VALID_FS; /* set "clean" flag */ |
f7545144 | 315 | err = nilfs_cleanup_super(sb); |
f50a4c81 RK |
316 | up_write(&nilfs->ns_sem); |
317 | ||
318 | if (err) { | |
a1d0747a | 319 | nilfs_err(sb, |
feee880f RK |
320 | "error %d updating super block. recovery unfinished.", |
321 | err); | |
f50a4c81 | 322 | goto failed_unload; |
8a9d2191 | 323 | } |
a1d0747a | 324 | nilfs_info(sb, "recovery complete"); |
8a9d2191 | 325 | |
f50a4c81 | 326 | skip_recovery: |
f50a4c81 | 327 | nilfs_clear_recovery_info(&ri); |
f7545144 | 328 | sb->s_flags = s_flags; |
f50a4c81 RK |
329 | return 0; |
330 | ||
6c125160 | 331 | scan_error: |
a1d0747a | 332 | nilfs_err(sb, "error %d while searching super root", err); |
6c125160 RK |
333 | goto failed; |
334 | ||
f50a4c81 | 335 | failed_unload: |
f1e89c86 RK |
336 | iput(nilfs->ns_cpfile); |
337 | iput(nilfs->ns_sufile); | |
338 | iput(nilfs->ns_dat); | |
8a9d2191 RK |
339 | |
340 | failed: | |
341 | nilfs_clear_recovery_info(&ri); | |
f7545144 | 342 | sb->s_flags = s_flags; |
8a9d2191 RK |
343 | return err; |
344 | } | |
345 | ||
346 | static 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 | ||
4e33f9ea RK |
357 | /** |
358 | * nilfs_nrsvsegs - calculate the number of reserved segments | |
359 | * @nilfs: nilfs object | |
360 | * @nsegs: total number of segments | |
361 | */ | |
362 | unsigned 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 | ||
369 | void 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 | ||
e339ad31 RK |
375 | static int nilfs_store_disk_layout(struct the_nilfs *nilfs, |
376 | struct nilfs_super_block *sbp) | |
8a9d2191 | 377 | { |
9566a7a8 | 378 | if (le32_to_cpu(sbp->s_rev_level) < NILFS_MIN_SUPP_REV) { |
a1d0747a | 379 | nilfs_err(nilfs->ns_sb, |
feee880f RK |
380 | "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); | |
8a9d2191 RK |
384 | return -EINVAL; |
385 | } | |
e339ad31 RK |
386 | nilfs->ns_sbsize = le16_to_cpu(sbp->s_bytes); |
387 | if (nilfs->ns_sbsize > BLOCK_SIZE) | |
388 | return -EINVAL; | |
389 | ||
8a9d2191 | 390 | nilfs->ns_inode_size = le16_to_cpu(sbp->s_inode_size); |
0ec060d1 | 391 | if (nilfs->ns_inode_size > nilfs->ns_blocksize) { |
a1d0747a | 392 | nilfs_err(nilfs->ns_sb, "too large inode size: %d bytes", |
feee880f | 393 | nilfs->ns_inode_size); |
0ec060d1 RK |
394 | return -EINVAL; |
395 | } else if (nilfs->ns_inode_size < NILFS_MIN_INODE_SIZE) { | |
a1d0747a | 396 | nilfs_err(nilfs->ns_sb, "too small inode size: %d bytes", |
feee880f | 397 | nilfs->ns_inode_size); |
0ec060d1 RK |
398 | return -EINVAL; |
399 | } | |
400 | ||
8a9d2191 RK |
401 | 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) { | |
a1d0747a | 405 | nilfs_err(nilfs->ns_sb, "too short segment: %lu blocks", |
feee880f | 406 | nilfs->ns_blocks_per_segment); |
8a9d2191 RK |
407 | return -EINVAL; |
408 | } | |
409 | ||
410 | nilfs->ns_first_data_block = le64_to_cpu(sbp->s_first_data_block); | |
8a9d2191 RK |
411 | nilfs->ns_r_segments_percentage = |
412 | le32_to_cpu(sbp->s_r_segments_percentage); | |
3d777a64 HC |
413 | if (nilfs->ns_r_segments_percentage < 1 || |
414 | nilfs->ns_r_segments_percentage > 99) { | |
a1d0747a | 415 | nilfs_err(nilfs->ns_sb, |
feee880f RK |
416 | "invalid reserved segments percentage: %lu", |
417 | nilfs->ns_r_segments_percentage); | |
3d777a64 HC |
418 | return -EINVAL; |
419 | } | |
420 | ||
4e33f9ea | 421 | nilfs_set_nsegments(nilfs, le64_to_cpu(sbp->s_nsegments)); |
8a9d2191 RK |
422 | nilfs->ns_crc_seed = le32_to_cpu(sbp->s_crc_seed); |
423 | return 0; | |
424 | } | |
425 | ||
e339ad31 RK |
426 | static 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); | |
63d2f95d | 436 | if (bytes < sumoff + 4 || bytes > BLOCK_SIZE) |
e339ad31 RK |
437 | 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 | ||
446 | static 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 | ||
453 | static 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 | ||
466 | void 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 | ||
475 | void 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 | ||
486 | static 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; | |
4fcd6979 | 492 | u64 sb2off = NILFS_SB2_OFFSET_BYTES(bdev_nr_bytes(nilfs->ns_bdev)); |
e339ad31 RK |
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]) { | |
a1d0747a | 501 | nilfs_err(sb, "unable to read superblock"); |
e339ad31 RK |
502 | return -EIO; |
503 | } | |
a1d0747a JP |
504 | nilfs_warn(sb, |
505 | "unable to read primary superblock (blocksize = %d)", | |
506 | blocksize); | |
4138ec23 | 507 | } else if (!sbp[1]) { |
a1d0747a JP |
508 | nilfs_warn(sb, |
509 | "unable to read secondary superblock (blocksize = %d)", | |
510 | blocksize); | |
4138ec23 | 511 | } |
e339ad31 | 512 | |
25294d8c RK |
513 | /* |
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 | */ | |
e339ad31 RK |
517 | valid[0] = nilfs_valid_sb(sbp[0]); |
518 | valid[1] = nilfs_valid_sb(sbp[1]); | |
25294d8c RK |
519 | swp = valid[1] && (!valid[0] || |
520 | le64_to_cpu(sbp[1]->s_last_cno) > | |
521 | le64_to_cpu(sbp[0]->s_last_cno)); | |
e339ad31 RK |
522 | |
523 | if (valid[swp] && nilfs_sb2_bad_offset(sbp[swp], sb2off)) { | |
524 | brelse(sbh[1]); | |
525 | sbh[1] = NULL; | |
526 | sbp[1] = NULL; | |
d7178c79 | 527 | valid[1] = 0; |
e339ad31 RK |
528 | swp = 0; |
529 | } | |
530 | if (!valid[swp]) { | |
531 | nilfs_release_super_block(nilfs); | |
a1d0747a | 532 | nilfs_err(sb, "couldn't find nilfs on the device"); |
e339ad31 RK |
533 | return -EINVAL; |
534 | } | |
535 | ||
ea1a16f7 | 536 | if (!valid[!swp]) |
a1d0747a JP |
537 | nilfs_warn(sb, |
538 | "broken superblock, retrying with spare superblock (blocksize = %d)", | |
539 | blocksize); | |
ea1a16f7 | 540 | if (swp) |
e339ad31 | 541 | nilfs_swap_super_block(nilfs); |
e339ad31 | 542 | |
b2ac86e1 JS |
543 | nilfs->ns_sbwcount = 0; |
544 | nilfs->ns_sbwtime = le64_to_cpu(sbp[0]->s_wtime); | |
e339ad31 RK |
545 | nilfs->ns_prot_seq = le64_to_cpu(sbp[valid[1] & !swp]->s_last_seq); |
546 | *sbpp = sbp[0]; | |
547 | return 0; | |
548 | } | |
549 | ||
8a9d2191 RK |
550 | /** |
551 | * init_nilfs - initialize a NILFS instance. | |
552 | * @nilfs: the_nilfs structure | |
8a9d2191 RK |
553 | * @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 | |
f11459ad | 558 | * shared fields in the_nilfs). |
8a9d2191 RK |
559 | * |
560 | * Return Value: On success, 0 is returned. On error, a negative error | |
561 | * code is returned. | |
562 | */ | |
f7545144 | 563 | int init_nilfs(struct the_nilfs *nilfs, struct super_block *sb, char *data) |
8a9d2191 | 564 | { |
8a9d2191 | 565 | struct nilfs_super_block *sbp; |
8a9d2191 | 566 | int blocksize; |
e339ad31 | 567 | int err; |
8a9d2191 RK |
568 | |
569 | down_write(&nilfs->ns_sem); | |
8a9d2191 | 570 | |
89c0fd01 | 571 | blocksize = sb_min_blocksize(sb, NILFS_MIN_BLOCK_SIZE); |
e339ad31 | 572 | if (!blocksize) { |
a1d0747a | 573 | nilfs_err(sb, "unable to set blocksize"); |
8a9d2191 RK |
574 | err = -EINVAL; |
575 | goto out; | |
576 | } | |
e339ad31 RK |
577 | err = nilfs_load_super_block(nilfs, sb, blocksize, &sbp); |
578 | if (err) | |
579 | goto out; | |
580 | ||
8a9d2191 RK |
581 | err = nilfs_store_magic_and_option(sb, sbp, data); |
582 | if (err) | |
583 | goto failed_sbh; | |
584 | ||
c5ca48aa RK |
585 | err = nilfs_check_feature_compatibility(sb, sbp); |
586 | if (err) | |
587 | goto failed_sbh; | |
588 | ||
8a9d2191 | 589 | blocksize = BLOCK_SIZE << le32_to_cpu(sbp->s_log_block_size); |
89c0fd01 RK |
590 | if (blocksize < NILFS_MIN_BLOCK_SIZE || |
591 | blocksize > NILFS_MAX_BLOCK_SIZE) { | |
a1d0747a | 592 | nilfs_err(sb, |
feee880f RK |
593 | "couldn't mount because of unsupported filesystem blocksize %d", |
594 | blocksize); | |
89c0fd01 RK |
595 | err = -EINVAL; |
596 | goto failed_sbh; | |
597 | } | |
8a9d2191 | 598 | if (sb->s_blocksize != blocksize) { |
e1defc4f | 599 | int hw_blocksize = bdev_logical_block_size(sb->s_bdev); |
e339ad31 RK |
600 | |
601 | if (blocksize < hw_blocksize) { | |
a1d0747a | 602 | nilfs_err(sb, |
feee880f RK |
603 | "blocksize %d too small for device (sector-size = %d)", |
604 | blocksize, hw_blocksize); | |
8a9d2191 | 605 | err = -EINVAL; |
e339ad31 RK |
606 | 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) | |
8a9d2191 | 613 | goto out; |
076a378b RK |
614 | /* |
615 | * Not to failed_sbh; sbh is released automatically | |
616 | * when reloading fails. | |
617 | */ | |
8a9d2191 RK |
618 | } |
619 | nilfs->ns_blocksize_bits = sb->s_blocksize_bits; | |
92c60cca | 620 | nilfs->ns_blocksize = blocksize; |
8a9d2191 | 621 | |
9b1fc4e4 RK |
622 | get_random_bytes(&nilfs->ns_next_generation, |
623 | sizeof(nilfs->ns_next_generation)); | |
624 | ||
e339ad31 | 625 | err = nilfs_store_disk_layout(nilfs, sbp); |
8a9d2191 RK |
626 | 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); | |
8a9d2191 | 632 | |
843d63ba RK |
633 | err = nilfs_store_log_cursor(nilfs, sbp); |
634 | if (err) | |
8a9d2191 | 635 | goto failed_sbh; |
8a9d2191 | 636 | |
dd70edbd VD |
637 | err = nilfs_sysfs_create_device_group(sb); |
638 | if (err) | |
639 | goto failed_sbh; | |
640 | ||
8a9d2191 RK |
641 | set_nilfs_init(nilfs); |
642 | err = 0; | |
643 | out: | |
644 | up_write(&nilfs->ns_sem); | |
645 | return err; | |
646 | ||
647 | failed_sbh: | |
e339ad31 | 648 | nilfs_release_super_block(nilfs); |
8a9d2191 RK |
649 | goto out; |
650 | } | |
651 | ||
e902ec99 JS |
652 | int 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, | |
44abff2c | 675 | GFP_NOFS); |
e902ec99 JS |
676 | 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, | |
44abff2c | 685 | GFP_NOFS); |
e902ec99 JS |
686 | return ret; |
687 | } | |
688 | ||
8a9d2191 RK |
689 | int nilfs_count_free_blocks(struct the_nilfs *nilfs, sector_t *nblocks) |
690 | { | |
8a9d2191 | 691 | unsigned long ncleansegs; |
8a9d2191 | 692 | |
365e215c | 693 | down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem); |
ef7d4757 | 694 | ncleansegs = nilfs_sufile_get_ncleansegs(nilfs->ns_sufile); |
365e215c | 695 | up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem); |
ef7d4757 RK |
696 | *nblocks = (sector_t)ncleansegs * nilfs->ns_blocks_per_segment; |
697 | return 0; | |
8a9d2191 RK |
698 | } |
699 | ||
8a9d2191 RK |
700 | int nilfs_near_disk_full(struct the_nilfs *nilfs) |
701 | { | |
8a9d2191 | 702 | unsigned long ncleansegs, nincsegs; |
ef7d4757 RK |
703 | |
704 | 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; | |
8a9d2191 RK |
709 | } |
710 | ||
ba65ae47 | 711 | struct nilfs_root *nilfs_lookup_root(struct the_nilfs *nilfs, __u64 cno) |
6dd47406 | 712 | { |
ba65ae47 RK |
713 | struct rb_node *n; |
714 | struct nilfs_root *root; | |
715 | ||
716 | 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); | |
720 | ||
721 | if (cno < root->cno) { | |
722 | n = n->rb_left; | |
723 | } else if (cno > root->cno) { | |
724 | n = n->rb_right; | |
725 | } else { | |
d4f0284a | 726 | refcount_inc(&root->count); |
ba65ae47 RK |
727 | spin_unlock(&nilfs->ns_cptree_lock); |
728 | return root; | |
729 | } | |
6dd47406 | 730 | } |
ba65ae47 | 731 | spin_unlock(&nilfs->ns_cptree_lock); |
6dd47406 | 732 | |
6dd47406 | 733 | return NULL; |
6dd47406 RK |
734 | } |
735 | ||
ba65ae47 RK |
736 | struct nilfs_root * |
737 | nilfs_find_or_create_root(struct the_nilfs *nilfs, __u64 cno) | |
8a9d2191 | 738 | { |
ba65ae47 RK |
739 | struct rb_node **p, *parent; |
740 | struct nilfs_root *root, *new; | |
dd70edbd | 741 | int err; |
8a9d2191 | 742 | |
ba65ae47 RK |
743 | root = nilfs_lookup_root(nilfs, cno); |
744 | if (root) | |
745 | return root; | |
8a9d2191 | 746 | |
dd70edbd | 747 | new = kzalloc(sizeof(*root), GFP_KERNEL); |
ba65ae47 RK |
748 | 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 { | |
d4f0284a | 765 | refcount_inc(&root->count); |
ba65ae47 RK |
766 | spin_unlock(&nilfs->ns_cptree_lock); |
767 | kfree(new); | |
768 | return root; | |
8a9d2191 RK |
769 | } |
770 | } | |
8a9d2191 | 771 | |
ba65ae47 RK |
772 | new->cno = cno; |
773 | new->ifile = NULL; | |
774 | new->nilfs = nilfs; | |
d4f0284a | 775 | refcount_set(&new->count, 1); |
e5f7f848 VD |
776 | atomic64_set(&new->inodes_count, 0); |
777 | atomic64_set(&new->blocks_count, 0); | |
ba65ae47 RK |
778 | |
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 | ||
dd70edbd VD |
784 | err = nilfs_sysfs_create_snapshot_group(new); |
785 | if (err) { | |
786 | kfree(new); | |
787 | new = NULL; | |
788 | } | |
789 | ||
ba65ae47 RK |
790 | return new; |
791 | } | |
792 | ||
793 | void nilfs_put_root(struct nilfs_root *root) | |
794 | { | |
98e2e409 | 795 | struct the_nilfs *nilfs = root->nilfs; |
ba65ae47 | 796 | |
98e2e409 | 797 | if (refcount_dec_and_lock(&root->count, &nilfs->ns_cptree_lock)) { |
ba65ae47 RK |
798 | rb_erase(&root->rb_node, &nilfs->ns_cptree); |
799 | spin_unlock(&nilfs->ns_cptree_lock); | |
98e2e409 ZL |
800 | |
801 | nilfs_sysfs_delete_snapshot_group(root); | |
72b9918e | 802 | iput(root->ifile); |
ba65ae47 RK |
803 | |
804 | kfree(root); | |
805 | } | |
8a9d2191 | 806 | } |