]>
Commit | Line | Data |
---|---|---|
8a9d2191 RK |
1 | /* |
2 | * the_nilfs.c - the_nilfs shared structure. | |
3 | * | |
4 | * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation. | |
5 | * | |
6 | * This program is free software; you can redistribute it and/or modify | |
7 | * it under the terms of the GNU General Public License as published by | |
8 | * the Free Software Foundation; either version 2 of the License, or | |
9 | * (at your option) any later version. | |
10 | * | |
11 | * This program is distributed in the hope that it will be useful, | |
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | * GNU General Public License for more details. | |
15 | * | |
16 | * You should have received a copy of the GNU General Public License | |
17 | * along with this program; if not, write to the Free Software | |
18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
19 | * | |
20 | * Written by Ryusuke Konishi <ryusuke@osrg.net> | |
21 | * | |
22 | */ | |
23 | ||
24 | #include <linux/buffer_head.h> | |
25 | #include <linux/slab.h> | |
26 | #include <linux/blkdev.h> | |
27 | #include <linux/backing-dev.h> | |
e339ad31 | 28 | #include <linux/crc32.h> |
8a9d2191 RK |
29 | #include "nilfs.h" |
30 | #include "segment.h" | |
31 | #include "alloc.h" | |
32 | #include "cpfile.h" | |
33 | #include "sufile.h" | |
34 | #include "dat.h" | |
8a9d2191 RK |
35 | #include "segbuf.h" |
36 | ||
33c8e57c | 37 | |
6c125160 RK |
38 | static int nilfs_valid_sb(struct nilfs_super_block *sbp); |
39 | ||
8a9d2191 RK |
40 | void nilfs_set_last_segment(struct the_nilfs *nilfs, |
41 | sector_t start_blocknr, u64 seq, __u64 cno) | |
42 | { | |
43 | spin_lock(&nilfs->ns_last_segment_lock); | |
44 | nilfs->ns_last_pseg = start_blocknr; | |
45 | nilfs->ns_last_seq = seq; | |
46 | nilfs->ns_last_cno = cno; | |
32502047 RK |
47 | |
48 | if (!nilfs_sb_dirty(nilfs)) { | |
49 | if (nilfs->ns_prev_seq == nilfs->ns_last_seq) | |
50 | goto stay_cursor; | |
51 | ||
52 | set_nilfs_sb_dirty(nilfs); | |
53 | } | |
54 | nilfs->ns_prev_seq = nilfs->ns_last_seq; | |
55 | ||
56 | stay_cursor: | |
8a9d2191 RK |
57 | spin_unlock(&nilfs->ns_last_segment_lock); |
58 | } | |
59 | ||
60 | /** | |
348fe8da | 61 | * alloc_nilfs - allocate a nilfs object |
8a9d2191 RK |
62 | * @bdev: block device to which the_nilfs is related |
63 | * | |
8a9d2191 RK |
64 | * Return Value: On success, pointer to the_nilfs is returned. |
65 | * On error, NULL is returned. | |
66 | */ | |
348fe8da | 67 | struct the_nilfs *alloc_nilfs(struct block_device *bdev) |
8a9d2191 RK |
68 | { |
69 | struct the_nilfs *nilfs; | |
70 | ||
71 | nilfs = kzalloc(sizeof(*nilfs), GFP_KERNEL); | |
72 | if (!nilfs) | |
73 | return NULL; | |
74 | ||
75 | nilfs->ns_bdev = bdev; | |
8a9d2191 RK |
76 | atomic_set(&nilfs->ns_ndirtyblks, 0); |
77 | init_rwsem(&nilfs->ns_sem); | |
263d90ce | 78 | INIT_LIST_HEAD(&nilfs->ns_gc_inodes); |
8a9d2191 | 79 | spin_lock_init(&nilfs->ns_last_segment_lock); |
ba65ae47 RK |
80 | nilfs->ns_cptree = RB_ROOT; |
81 | spin_lock_init(&nilfs->ns_cptree_lock); | |
8a9d2191 | 82 | init_rwsem(&nilfs->ns_segctor_sem); |
8a9d2191 RK |
83 | |
84 | return nilfs; | |
85 | } | |
86 | ||
33c8e57c | 87 | /** |
348fe8da RK |
88 | * destroy_nilfs - destroy nilfs object |
89 | * @nilfs: nilfs object to be released | |
8a9d2191 | 90 | */ |
348fe8da | 91 | void destroy_nilfs(struct the_nilfs *nilfs) |
8a9d2191 | 92 | { |
8a9d2191 | 93 | might_sleep(); |
8a9d2191 | 94 | if (nilfs_init(nilfs)) { |
e339ad31 RK |
95 | brelse(nilfs->ns_sbh[0]); |
96 | brelse(nilfs->ns_sbh[1]); | |
8a9d2191 RK |
97 | } |
98 | kfree(nilfs); | |
99 | } | |
100 | ||
f1e89c86 RK |
101 | static int nilfs_load_super_root(struct the_nilfs *nilfs, |
102 | struct super_block *sb, sector_t sr_block) | |
8a9d2191 RK |
103 | { |
104 | struct buffer_head *bh_sr; | |
105 | struct nilfs_super_root *raw_sr; | |
e339ad31 | 106 | struct nilfs_super_block **sbp = nilfs->ns_sbp; |
f1e89c86 | 107 | struct nilfs_inode *rawi; |
8a9d2191 RK |
108 | unsigned dat_entry_size, segment_usage_size, checkpoint_size; |
109 | unsigned inode_size; | |
110 | int err; | |
111 | ||
8b94025c | 112 | err = nilfs_read_super_root_block(nilfs, sr_block, &bh_sr, 1); |
8a9d2191 RK |
113 | if (unlikely(err)) |
114 | return err; | |
115 | ||
116 | down_read(&nilfs->ns_sem); | |
e339ad31 RK |
117 | dat_entry_size = le16_to_cpu(sbp[0]->s_dat_entry_size); |
118 | checkpoint_size = le16_to_cpu(sbp[0]->s_checkpoint_size); | |
119 | segment_usage_size = le16_to_cpu(sbp[0]->s_segment_usage_size); | |
8a9d2191 RK |
120 | up_read(&nilfs->ns_sem); |
121 | ||
122 | inode_size = nilfs->ns_inode_size; | |
123 | ||
f1e89c86 RK |
124 | rawi = (void *)bh_sr->b_data + NILFS_SR_DAT_OFFSET(inode_size); |
125 | err = nilfs_dat_read(sb, dat_entry_size, rawi, &nilfs->ns_dat); | |
126 | if (err) | |
8a9d2191 RK |
127 | goto failed; |
128 | ||
f1e89c86 RK |
129 | rawi = (void *)bh_sr->b_data + NILFS_SR_CPFILE_OFFSET(inode_size); |
130 | err = nilfs_cpfile_read(sb, checkpoint_size, rawi, &nilfs->ns_cpfile); | |
131 | if (err) | |
8a9d2191 RK |
132 | goto failed_dat; |
133 | ||
f1e89c86 RK |
134 | rawi = (void *)bh_sr->b_data + NILFS_SR_SUFILE_OFFSET(inode_size); |
135 | err = nilfs_sufile_read(sb, segment_usage_size, rawi, | |
136 | &nilfs->ns_sufile); | |
137 | if (err) | |
8a9d2191 RK |
138 | goto failed_cpfile; |
139 | ||
8a9d2191 RK |
140 | raw_sr = (struct nilfs_super_root *)bh_sr->b_data; |
141 | nilfs->ns_nongc_ctime = le64_to_cpu(raw_sr->sr_nongc_ctime); | |
142 | ||
143 | failed: | |
144 | brelse(bh_sr); | |
145 | return err; | |
146 | ||
8a9d2191 | 147 | failed_cpfile: |
f1e89c86 | 148 | iput(nilfs->ns_cpfile); |
8a9d2191 RK |
149 | |
150 | failed_dat: | |
f1e89c86 | 151 | iput(nilfs->ns_dat); |
8a9d2191 RK |
152 | goto failed; |
153 | } | |
154 | ||
155 | static void nilfs_init_recovery_info(struct nilfs_recovery_info *ri) | |
156 | { | |
157 | memset(ri, 0, sizeof(*ri)); | |
158 | INIT_LIST_HEAD(&ri->ri_used_segments); | |
159 | } | |
160 | ||
161 | static void nilfs_clear_recovery_info(struct nilfs_recovery_info *ri) | |
162 | { | |
163 | nilfs_dispose_segment_list(&ri->ri_used_segments); | |
164 | } | |
165 | ||
843d63ba RK |
166 | /** |
167 | * nilfs_store_log_cursor - load log cursor from a super block | |
168 | * @nilfs: nilfs object | |
169 | * @sbp: buffer storing super block to be read | |
170 | * | |
171 | * nilfs_store_log_cursor() reads the last position of the log | |
172 | * containing a super root from a given super block, and initializes | |
173 | * relevant information on the nilfs object preparatory for log | |
174 | * scanning and recovery. | |
175 | */ | |
176 | static int nilfs_store_log_cursor(struct the_nilfs *nilfs, | |
177 | struct nilfs_super_block *sbp) | |
178 | { | |
179 | int ret = 0; | |
180 | ||
181 | nilfs->ns_last_pseg = le64_to_cpu(sbp->s_last_pseg); | |
182 | nilfs->ns_last_cno = le64_to_cpu(sbp->s_last_cno); | |
183 | nilfs->ns_last_seq = le64_to_cpu(sbp->s_last_seq); | |
184 | ||
32502047 | 185 | nilfs->ns_prev_seq = nilfs->ns_last_seq; |
843d63ba RK |
186 | nilfs->ns_seg_seq = nilfs->ns_last_seq; |
187 | nilfs->ns_segnum = | |
188 | nilfs_get_segnum_of_block(nilfs, nilfs->ns_last_pseg); | |
189 | nilfs->ns_cno = nilfs->ns_last_cno + 1; | |
190 | if (nilfs->ns_segnum >= nilfs->ns_nsegments) { | |
191 | printk(KERN_ERR "NILFS invalid last segment number.\n"); | |
192 | ret = -EINVAL; | |
193 | } | |
194 | return ret; | |
195 | } | |
196 | ||
8a9d2191 RK |
197 | /** |
198 | * load_nilfs - load and recover the nilfs | |
199 | * @nilfs: the_nilfs structure to be released | |
200 | * @sbi: nilfs_sb_info used to recover past segment | |
201 | * | |
202 | * load_nilfs() searches and load the latest super root, | |
203 | * attaches the last segment, and does recovery if needed. | |
204 | * The caller must call this exclusively for simultaneous mounts. | |
205 | */ | |
206 | int load_nilfs(struct the_nilfs *nilfs, struct nilfs_sb_info *sbi) | |
207 | { | |
208 | struct nilfs_recovery_info ri; | |
209 | unsigned int s_flags = sbi->s_super->s_flags; | |
210 | int really_read_only = bdev_read_only(nilfs->ns_bdev); | |
a057d2c0 | 211 | int valid_fs = nilfs_valid_fs(nilfs); |
f50a4c81 | 212 | int err; |
8a9d2191 | 213 | |
f50a4c81 RK |
214 | if (!valid_fs) { |
215 | printk(KERN_WARNING "NILFS warning: mounting unchecked fs\n"); | |
216 | if (s_flags & MS_RDONLY) { | |
217 | printk(KERN_INFO "NILFS: INFO: recovery " | |
218 | "required for readonly filesystem.\n"); | |
219 | printk(KERN_INFO "NILFS: write access will " | |
220 | "be enabled during recovery.\n"); | |
8a9d2191 | 221 | } |
8a9d2191 RK |
222 | } |
223 | ||
f50a4c81 RK |
224 | nilfs_init_recovery_info(&ri); |
225 | ||
8b94025c | 226 | err = nilfs_search_super_root(nilfs, &ri); |
8a9d2191 | 227 | if (unlikely(err)) { |
6c125160 RK |
228 | struct nilfs_super_block **sbp = nilfs->ns_sbp; |
229 | int blocksize; | |
230 | ||
231 | if (err != -EINVAL) | |
232 | goto scan_error; | |
233 | ||
234 | if (!nilfs_valid_sb(sbp[1])) { | |
235 | printk(KERN_WARNING | |
236 | "NILFS warning: unable to fall back to spare" | |
237 | "super block\n"); | |
238 | goto scan_error; | |
239 | } | |
240 | printk(KERN_INFO | |
241 | "NILFS: try rollback from an earlier position\n"); | |
242 | ||
243 | /* | |
244 | * restore super block with its spare and reconfigure | |
245 | * relevant states of the nilfs object. | |
246 | */ | |
247 | memcpy(sbp[0], sbp[1], nilfs->ns_sbsize); | |
248 | nilfs->ns_crc_seed = le32_to_cpu(sbp[0]->s_crc_seed); | |
249 | nilfs->ns_sbwtime = le64_to_cpu(sbp[0]->s_wtime); | |
250 | ||
251 | /* verify consistency between two super blocks */ | |
252 | blocksize = BLOCK_SIZE << le32_to_cpu(sbp[0]->s_log_block_size); | |
253 | if (blocksize != nilfs->ns_blocksize) { | |
254 | printk(KERN_WARNING | |
255 | "NILFS warning: blocksize differs between " | |
256 | "two super blocks (%d != %d)\n", | |
257 | blocksize, nilfs->ns_blocksize); | |
258 | goto scan_error; | |
259 | } | |
260 | ||
261 | err = nilfs_store_log_cursor(nilfs, sbp[0]); | |
262 | if (err) | |
263 | goto scan_error; | |
264 | ||
265 | /* drop clean flag to allow roll-forward and recovery */ | |
266 | nilfs->ns_mount_state &= ~NILFS_VALID_FS; | |
267 | valid_fs = 0; | |
268 | ||
269 | err = nilfs_search_super_root(nilfs, &ri); | |
270 | if (err) | |
271 | goto scan_error; | |
8a9d2191 RK |
272 | } |
273 | ||
f1e89c86 | 274 | err = nilfs_load_super_root(nilfs, sbi->s_super, ri.ri_super_root); |
8a9d2191 RK |
275 | if (unlikely(err)) { |
276 | printk(KERN_ERR "NILFS: error loading super root.\n"); | |
277 | goto failed; | |
278 | } | |
279 | ||
f50a4c81 RK |
280 | if (valid_fs) |
281 | goto skip_recovery; | |
282 | ||
283 | if (s_flags & MS_RDONLY) { | |
c5ca48aa RK |
284 | __u64 features; |
285 | ||
0234576d RK |
286 | if (nilfs_test_opt(sbi, NORECOVERY)) { |
287 | printk(KERN_INFO "NILFS: norecovery option specified. " | |
288 | "skipping roll-forward recovery\n"); | |
289 | goto skip_recovery; | |
290 | } | |
c5ca48aa RK |
291 | features = le64_to_cpu(nilfs->ns_sbp[0]->s_feature_compat_ro) & |
292 | ~NILFS_FEATURE_COMPAT_RO_SUPP; | |
293 | if (features) { | |
294 | printk(KERN_ERR "NILFS: couldn't proceed with " | |
295 | "recovery because of unsupported optional " | |
296 | "features (%llx)\n", | |
297 | (unsigned long long)features); | |
298 | err = -EROFS; | |
299 | goto failed_unload; | |
300 | } | |
f50a4c81 RK |
301 | if (really_read_only) { |
302 | printk(KERN_ERR "NILFS: write access " | |
303 | "unavailable, cannot proceed.\n"); | |
304 | err = -EROFS; | |
305 | goto failed_unload; | |
8a9d2191 | 306 | } |
f50a4c81 | 307 | sbi->s_super->s_flags &= ~MS_RDONLY; |
0234576d RK |
308 | } else if (nilfs_test_opt(sbi, NORECOVERY)) { |
309 | printk(KERN_ERR "NILFS: recovery cancelled because norecovery " | |
310 | "option was specified for a read/write mount\n"); | |
311 | err = -EINVAL; | |
312 | goto failed_unload; | |
f50a4c81 RK |
313 | } |
314 | ||
aee5ce2f | 315 | err = nilfs_salvage_orphan_logs(nilfs, sbi, &ri); |
f50a4c81 RK |
316 | if (err) |
317 | goto failed_unload; | |
318 | ||
319 | down_write(&nilfs->ns_sem); | |
7ecaa46c RK |
320 | nilfs->ns_mount_state |= NILFS_VALID_FS; /* set "clean" flag */ |
321 | err = nilfs_cleanup_super(sbi); | |
f50a4c81 RK |
322 | up_write(&nilfs->ns_sem); |
323 | ||
324 | if (err) { | |
325 | printk(KERN_ERR "NILFS: failed to update super block. " | |
326 | "recovery unfinished.\n"); | |
327 | goto failed_unload; | |
8a9d2191 | 328 | } |
f50a4c81 | 329 | printk(KERN_INFO "NILFS: recovery complete.\n"); |
8a9d2191 | 330 | |
f50a4c81 | 331 | skip_recovery: |
f50a4c81 RK |
332 | nilfs_clear_recovery_info(&ri); |
333 | sbi->s_super->s_flags = s_flags; | |
334 | return 0; | |
335 | ||
6c125160 RK |
336 | scan_error: |
337 | printk(KERN_ERR "NILFS: error searching super root.\n"); | |
338 | goto failed; | |
339 | ||
f50a4c81 | 340 | failed_unload: |
f1e89c86 RK |
341 | iput(nilfs->ns_cpfile); |
342 | iput(nilfs->ns_sufile); | |
343 | iput(nilfs->ns_dat); | |
8a9d2191 RK |
344 | |
345 | failed: | |
346 | nilfs_clear_recovery_info(&ri); | |
347 | sbi->s_super->s_flags = s_flags; | |
348 | return err; | |
349 | } | |
350 | ||
351 | static unsigned long long nilfs_max_size(unsigned int blkbits) | |
352 | { | |
353 | unsigned int max_bits; | |
354 | unsigned long long res = MAX_LFS_FILESIZE; /* page cache limit */ | |
355 | ||
356 | max_bits = blkbits + NILFS_BMAP_KEY_BIT; /* bmap size limit */ | |
357 | if (max_bits < 64) | |
358 | res = min_t(unsigned long long, res, (1ULL << max_bits) - 1); | |
359 | return res; | |
360 | } | |
361 | ||
e339ad31 RK |
362 | static int nilfs_store_disk_layout(struct the_nilfs *nilfs, |
363 | struct nilfs_super_block *sbp) | |
8a9d2191 | 364 | { |
9566a7a8 RK |
365 | if (le32_to_cpu(sbp->s_rev_level) < NILFS_MIN_SUPP_REV) { |
366 | printk(KERN_ERR "NILFS: unsupported revision " | |
8a9d2191 RK |
367 | "(superblock rev.=%d.%d, current rev.=%d.%d). " |
368 | "Please check the version of mkfs.nilfs.\n", | |
369 | le32_to_cpu(sbp->s_rev_level), | |
370 | le16_to_cpu(sbp->s_minor_rev_level), | |
371 | NILFS_CURRENT_REV, NILFS_MINOR_REV); | |
372 | return -EINVAL; | |
373 | } | |
e339ad31 RK |
374 | nilfs->ns_sbsize = le16_to_cpu(sbp->s_bytes); |
375 | if (nilfs->ns_sbsize > BLOCK_SIZE) | |
376 | return -EINVAL; | |
377 | ||
8a9d2191 RK |
378 | nilfs->ns_inode_size = le16_to_cpu(sbp->s_inode_size); |
379 | nilfs->ns_first_ino = le32_to_cpu(sbp->s_first_ino); | |
380 | ||
381 | nilfs->ns_blocks_per_segment = le32_to_cpu(sbp->s_blocks_per_segment); | |
382 | if (nilfs->ns_blocks_per_segment < NILFS_SEG_MIN_BLOCKS) { | |
c91cea11 | 383 | printk(KERN_ERR "NILFS: too short segment.\n"); |
8a9d2191 RK |
384 | return -EINVAL; |
385 | } | |
386 | ||
387 | nilfs->ns_first_data_block = le64_to_cpu(sbp->s_first_data_block); | |
388 | nilfs->ns_nsegments = le64_to_cpu(sbp->s_nsegments); | |
389 | nilfs->ns_r_segments_percentage = | |
390 | le32_to_cpu(sbp->s_r_segments_percentage); | |
391 | nilfs->ns_nrsvsegs = | |
392 | max_t(unsigned long, NILFS_MIN_NRSVSEGS, | |
393 | DIV_ROUND_UP(nilfs->ns_nsegments * | |
394 | nilfs->ns_r_segments_percentage, 100)); | |
395 | nilfs->ns_crc_seed = le32_to_cpu(sbp->s_crc_seed); | |
396 | return 0; | |
397 | } | |
398 | ||
e339ad31 RK |
399 | static int nilfs_valid_sb(struct nilfs_super_block *sbp) |
400 | { | |
401 | static unsigned char sum[4]; | |
402 | const int sumoff = offsetof(struct nilfs_super_block, s_sum); | |
403 | size_t bytes; | |
404 | u32 crc; | |
405 | ||
406 | if (!sbp || le16_to_cpu(sbp->s_magic) != NILFS_SUPER_MAGIC) | |
407 | return 0; | |
408 | bytes = le16_to_cpu(sbp->s_bytes); | |
409 | if (bytes > BLOCK_SIZE) | |
410 | return 0; | |
411 | crc = crc32_le(le32_to_cpu(sbp->s_crc_seed), (unsigned char *)sbp, | |
412 | sumoff); | |
413 | crc = crc32_le(crc, sum, 4); | |
414 | crc = crc32_le(crc, (unsigned char *)sbp + sumoff + 4, | |
415 | bytes - sumoff - 4); | |
416 | return crc == le32_to_cpu(sbp->s_sum); | |
417 | } | |
418 | ||
419 | static int nilfs_sb2_bad_offset(struct nilfs_super_block *sbp, u64 offset) | |
420 | { | |
421 | return offset < ((le64_to_cpu(sbp->s_nsegments) * | |
422 | le32_to_cpu(sbp->s_blocks_per_segment)) << | |
423 | (le32_to_cpu(sbp->s_log_block_size) + 10)); | |
424 | } | |
425 | ||
426 | static void nilfs_release_super_block(struct the_nilfs *nilfs) | |
427 | { | |
428 | int i; | |
429 | ||
430 | for (i = 0; i < 2; i++) { | |
431 | if (nilfs->ns_sbp[i]) { | |
432 | brelse(nilfs->ns_sbh[i]); | |
433 | nilfs->ns_sbh[i] = NULL; | |
434 | nilfs->ns_sbp[i] = NULL; | |
435 | } | |
436 | } | |
437 | } | |
438 | ||
439 | void nilfs_fall_back_super_block(struct the_nilfs *nilfs) | |
440 | { | |
441 | brelse(nilfs->ns_sbh[0]); | |
442 | nilfs->ns_sbh[0] = nilfs->ns_sbh[1]; | |
443 | nilfs->ns_sbp[0] = nilfs->ns_sbp[1]; | |
444 | nilfs->ns_sbh[1] = NULL; | |
445 | nilfs->ns_sbp[1] = NULL; | |
446 | } | |
447 | ||
448 | void nilfs_swap_super_block(struct the_nilfs *nilfs) | |
449 | { | |
450 | struct buffer_head *tsbh = nilfs->ns_sbh[0]; | |
451 | struct nilfs_super_block *tsbp = nilfs->ns_sbp[0]; | |
452 | ||
453 | nilfs->ns_sbh[0] = nilfs->ns_sbh[1]; | |
454 | nilfs->ns_sbp[0] = nilfs->ns_sbp[1]; | |
455 | nilfs->ns_sbh[1] = tsbh; | |
456 | nilfs->ns_sbp[1] = tsbp; | |
457 | } | |
458 | ||
459 | static int nilfs_load_super_block(struct the_nilfs *nilfs, | |
460 | struct super_block *sb, int blocksize, | |
461 | struct nilfs_super_block **sbpp) | |
462 | { | |
463 | struct nilfs_super_block **sbp = nilfs->ns_sbp; | |
464 | struct buffer_head **sbh = nilfs->ns_sbh; | |
465 | u64 sb2off = NILFS_SB2_OFFSET_BYTES(nilfs->ns_bdev->bd_inode->i_size); | |
466 | int valid[2], swp = 0; | |
467 | ||
468 | sbp[0] = nilfs_read_super_block(sb, NILFS_SB_OFFSET_BYTES, blocksize, | |
469 | &sbh[0]); | |
470 | sbp[1] = nilfs_read_super_block(sb, sb2off, blocksize, &sbh[1]); | |
471 | ||
472 | if (!sbp[0]) { | |
473 | if (!sbp[1]) { | |
474 | printk(KERN_ERR "NILFS: unable to read superblock\n"); | |
475 | return -EIO; | |
476 | } | |
477 | printk(KERN_WARNING | |
4138ec23 RK |
478 | "NILFS warning: unable to read primary superblock " |
479 | "(blocksize = %d)\n", blocksize); | |
480 | } else if (!sbp[1]) { | |
e339ad31 | 481 | printk(KERN_WARNING |
4138ec23 RK |
482 | "NILFS warning: unable to read secondary superblock " |
483 | "(blocksize = %d)\n", blocksize); | |
484 | } | |
e339ad31 | 485 | |
25294d8c RK |
486 | /* |
487 | * Compare two super blocks and set 1 in swp if the secondary | |
488 | * super block is valid and newer. Otherwise, set 0 in swp. | |
489 | */ | |
e339ad31 RK |
490 | valid[0] = nilfs_valid_sb(sbp[0]); |
491 | valid[1] = nilfs_valid_sb(sbp[1]); | |
25294d8c RK |
492 | swp = valid[1] && (!valid[0] || |
493 | le64_to_cpu(sbp[1]->s_last_cno) > | |
494 | le64_to_cpu(sbp[0]->s_last_cno)); | |
e339ad31 RK |
495 | |
496 | if (valid[swp] && nilfs_sb2_bad_offset(sbp[swp], sb2off)) { | |
497 | brelse(sbh[1]); | |
498 | sbh[1] = NULL; | |
499 | sbp[1] = NULL; | |
500 | swp = 0; | |
501 | } | |
502 | if (!valid[swp]) { | |
503 | nilfs_release_super_block(nilfs); | |
504 | printk(KERN_ERR "NILFS: Can't find nilfs on dev %s.\n", | |
505 | sb->s_id); | |
506 | return -EINVAL; | |
507 | } | |
508 | ||
ea1a16f7 | 509 | if (!valid[!swp]) |
e339ad31 | 510 | printk(KERN_WARNING "NILFS warning: broken superblock. " |
4138ec23 | 511 | "using spare superblock (blocksize = %d).\n", blocksize); |
ea1a16f7 | 512 | if (swp) |
e339ad31 | 513 | nilfs_swap_super_block(nilfs); |
e339ad31 | 514 | |
b2ac86e1 JS |
515 | nilfs->ns_sbwcount = 0; |
516 | nilfs->ns_sbwtime = le64_to_cpu(sbp[0]->s_wtime); | |
e339ad31 RK |
517 | nilfs->ns_prot_seq = le64_to_cpu(sbp[valid[1] & !swp]->s_last_seq); |
518 | *sbpp = sbp[0]; | |
519 | return 0; | |
520 | } | |
521 | ||
8a9d2191 RK |
522 | /** |
523 | * init_nilfs - initialize a NILFS instance. | |
524 | * @nilfs: the_nilfs structure | |
525 | * @sbi: nilfs_sb_info | |
526 | * @sb: super block | |
527 | * @data: mount options | |
528 | * | |
529 | * init_nilfs() performs common initialization per block device (e.g. | |
530 | * reading the super block, getting disk layout information, initializing | |
f11459ad | 531 | * shared fields in the_nilfs). |
8a9d2191 RK |
532 | * |
533 | * Return Value: On success, 0 is returned. On error, a negative error | |
534 | * code is returned. | |
535 | */ | |
536 | int init_nilfs(struct the_nilfs *nilfs, struct nilfs_sb_info *sbi, char *data) | |
537 | { | |
538 | struct super_block *sb = sbi->s_super; | |
8a9d2191 | 539 | struct nilfs_super_block *sbp; |
8a9d2191 | 540 | int blocksize; |
e339ad31 | 541 | int err; |
8a9d2191 RK |
542 | |
543 | down_write(&nilfs->ns_sem); | |
8a9d2191 | 544 | |
89c0fd01 | 545 | blocksize = sb_min_blocksize(sb, NILFS_MIN_BLOCK_SIZE); |
e339ad31 RK |
546 | if (!blocksize) { |
547 | printk(KERN_ERR "NILFS: unable to set blocksize\n"); | |
8a9d2191 RK |
548 | err = -EINVAL; |
549 | goto out; | |
550 | } | |
e339ad31 RK |
551 | err = nilfs_load_super_block(nilfs, sb, blocksize, &sbp); |
552 | if (err) | |
553 | goto out; | |
554 | ||
8a9d2191 RK |
555 | err = nilfs_store_magic_and_option(sb, sbp, data); |
556 | if (err) | |
557 | goto failed_sbh; | |
558 | ||
c5ca48aa RK |
559 | err = nilfs_check_feature_compatibility(sb, sbp); |
560 | if (err) | |
561 | goto failed_sbh; | |
562 | ||
8a9d2191 | 563 | blocksize = BLOCK_SIZE << le32_to_cpu(sbp->s_log_block_size); |
89c0fd01 RK |
564 | if (blocksize < NILFS_MIN_BLOCK_SIZE || |
565 | blocksize > NILFS_MAX_BLOCK_SIZE) { | |
566 | printk(KERN_ERR "NILFS: couldn't mount because of unsupported " | |
567 | "filesystem blocksize %d\n", blocksize); | |
568 | err = -EINVAL; | |
569 | goto failed_sbh; | |
570 | } | |
8a9d2191 | 571 | if (sb->s_blocksize != blocksize) { |
e1defc4f | 572 | int hw_blocksize = bdev_logical_block_size(sb->s_bdev); |
e339ad31 RK |
573 | |
574 | if (blocksize < hw_blocksize) { | |
575 | printk(KERN_ERR | |
576 | "NILFS: blocksize %d too small for device " | |
577 | "(sector-size = %d).\n", | |
578 | blocksize, hw_blocksize); | |
8a9d2191 | 579 | err = -EINVAL; |
e339ad31 RK |
580 | goto failed_sbh; |
581 | } | |
582 | nilfs_release_super_block(nilfs); | |
583 | sb_set_blocksize(sb, blocksize); | |
584 | ||
585 | err = nilfs_load_super_block(nilfs, sb, blocksize, &sbp); | |
586 | if (err) | |
8a9d2191 RK |
587 | goto out; |
588 | /* not failed_sbh; sbh is released automatically | |
589 | when reloading fails. */ | |
8a9d2191 RK |
590 | } |
591 | nilfs->ns_blocksize_bits = sb->s_blocksize_bits; | |
92c60cca | 592 | nilfs->ns_blocksize = blocksize; |
8a9d2191 | 593 | |
e339ad31 | 594 | err = nilfs_store_disk_layout(nilfs, sbp); |
8a9d2191 RK |
595 | if (err) |
596 | goto failed_sbh; | |
597 | ||
598 | sb->s_maxbytes = nilfs_max_size(sb->s_blocksize_bits); | |
599 | ||
600 | nilfs->ns_mount_state = le16_to_cpu(sbp->s_state); | |
8a9d2191 | 601 | |
843d63ba RK |
602 | err = nilfs_store_log_cursor(nilfs, sbp); |
603 | if (err) | |
8a9d2191 | 604 | goto failed_sbh; |
8a9d2191 | 605 | |
8a9d2191 RK |
606 | set_nilfs_init(nilfs); |
607 | err = 0; | |
608 | out: | |
609 | up_write(&nilfs->ns_sem); | |
610 | return err; | |
611 | ||
612 | failed_sbh: | |
e339ad31 | 613 | nilfs_release_super_block(nilfs); |
8a9d2191 RK |
614 | goto out; |
615 | } | |
616 | ||
e902ec99 JS |
617 | int nilfs_discard_segments(struct the_nilfs *nilfs, __u64 *segnump, |
618 | size_t nsegs) | |
619 | { | |
620 | sector_t seg_start, seg_end; | |
621 | sector_t start = 0, nblocks = 0; | |
622 | unsigned int sects_per_block; | |
623 | __u64 *sn; | |
624 | int ret = 0; | |
625 | ||
626 | sects_per_block = (1 << nilfs->ns_blocksize_bits) / | |
627 | bdev_logical_block_size(nilfs->ns_bdev); | |
628 | for (sn = segnump; sn < segnump + nsegs; sn++) { | |
629 | nilfs_get_segment_range(nilfs, *sn, &seg_start, &seg_end); | |
630 | ||
631 | if (!nblocks) { | |
632 | start = seg_start; | |
633 | nblocks = seg_end - seg_start + 1; | |
634 | } else if (start + nblocks == seg_start) { | |
635 | nblocks += seg_end - seg_start + 1; | |
636 | } else { | |
637 | ret = blkdev_issue_discard(nilfs->ns_bdev, | |
638 | start * sects_per_block, | |
639 | nblocks * sects_per_block, | |
dd3932ed | 640 | GFP_NOFS, 0); |
e902ec99 JS |
641 | if (ret < 0) |
642 | return ret; | |
643 | nblocks = 0; | |
644 | } | |
645 | } | |
646 | if (nblocks) | |
647 | ret = blkdev_issue_discard(nilfs->ns_bdev, | |
648 | start * sects_per_block, | |
649 | nblocks * sects_per_block, | |
dd3932ed | 650 | GFP_NOFS, 0); |
e902ec99 JS |
651 | return ret; |
652 | } | |
653 | ||
8a9d2191 RK |
654 | int nilfs_count_free_blocks(struct the_nilfs *nilfs, sector_t *nblocks) |
655 | { | |
8a9d2191 | 656 | unsigned long ncleansegs; |
8a9d2191 | 657 | |
365e215c | 658 | down_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem); |
ef7d4757 | 659 | ncleansegs = nilfs_sufile_get_ncleansegs(nilfs->ns_sufile); |
365e215c | 660 | up_read(&NILFS_MDT(nilfs->ns_dat)->mi_sem); |
ef7d4757 RK |
661 | *nblocks = (sector_t)ncleansegs * nilfs->ns_blocks_per_segment; |
662 | return 0; | |
8a9d2191 RK |
663 | } |
664 | ||
8a9d2191 RK |
665 | int nilfs_near_disk_full(struct the_nilfs *nilfs) |
666 | { | |
8a9d2191 | 667 | unsigned long ncleansegs, nincsegs; |
ef7d4757 RK |
668 | |
669 | ncleansegs = nilfs_sufile_get_ncleansegs(nilfs->ns_sufile); | |
670 | nincsegs = atomic_read(&nilfs->ns_ndirtyblks) / | |
671 | nilfs->ns_blocks_per_segment + 1; | |
672 | ||
673 | return ncleansegs <= nilfs->ns_nrsvsegs + nincsegs; | |
8a9d2191 RK |
674 | } |
675 | ||
ba65ae47 | 676 | struct nilfs_root *nilfs_lookup_root(struct the_nilfs *nilfs, __u64 cno) |
6dd47406 | 677 | { |
ba65ae47 RK |
678 | struct rb_node *n; |
679 | struct nilfs_root *root; | |
680 | ||
681 | spin_lock(&nilfs->ns_cptree_lock); | |
682 | n = nilfs->ns_cptree.rb_node; | |
683 | while (n) { | |
684 | root = rb_entry(n, struct nilfs_root, rb_node); | |
685 | ||
686 | if (cno < root->cno) { | |
687 | n = n->rb_left; | |
688 | } else if (cno > root->cno) { | |
689 | n = n->rb_right; | |
690 | } else { | |
691 | atomic_inc(&root->count); | |
692 | spin_unlock(&nilfs->ns_cptree_lock); | |
693 | return root; | |
694 | } | |
6dd47406 | 695 | } |
ba65ae47 | 696 | spin_unlock(&nilfs->ns_cptree_lock); |
6dd47406 | 697 | |
6dd47406 | 698 | return NULL; |
6dd47406 RK |
699 | } |
700 | ||
ba65ae47 RK |
701 | struct nilfs_root * |
702 | nilfs_find_or_create_root(struct the_nilfs *nilfs, __u64 cno) | |
8a9d2191 | 703 | { |
ba65ae47 RK |
704 | struct rb_node **p, *parent; |
705 | struct nilfs_root *root, *new; | |
8a9d2191 | 706 | |
ba65ae47 RK |
707 | root = nilfs_lookup_root(nilfs, cno); |
708 | if (root) | |
709 | return root; | |
8a9d2191 | 710 | |
ba65ae47 RK |
711 | new = kmalloc(sizeof(*root), GFP_KERNEL); |
712 | if (!new) | |
713 | return NULL; | |
714 | ||
715 | spin_lock(&nilfs->ns_cptree_lock); | |
716 | ||
717 | p = &nilfs->ns_cptree.rb_node; | |
718 | parent = NULL; | |
719 | ||
720 | while (*p) { | |
721 | parent = *p; | |
722 | root = rb_entry(parent, struct nilfs_root, rb_node); | |
723 | ||
724 | if (cno < root->cno) { | |
725 | p = &(*p)->rb_left; | |
726 | } else if (cno > root->cno) { | |
727 | p = &(*p)->rb_right; | |
728 | } else { | |
729 | atomic_inc(&root->count); | |
730 | spin_unlock(&nilfs->ns_cptree_lock); | |
731 | kfree(new); | |
732 | return root; | |
8a9d2191 RK |
733 | } |
734 | } | |
8a9d2191 | 735 | |
ba65ae47 RK |
736 | new->cno = cno; |
737 | new->ifile = NULL; | |
738 | new->nilfs = nilfs; | |
739 | atomic_set(&new->count, 1); | |
740 | atomic_set(&new->inodes_count, 0); | |
741 | atomic_set(&new->blocks_count, 0); | |
742 | ||
743 | rb_link_node(&new->rb_node, parent, p); | |
744 | rb_insert_color(&new->rb_node, &nilfs->ns_cptree); | |
745 | ||
746 | spin_unlock(&nilfs->ns_cptree_lock); | |
747 | ||
748 | return new; | |
749 | } | |
750 | ||
751 | void nilfs_put_root(struct nilfs_root *root) | |
752 | { | |
753 | if (atomic_dec_and_test(&root->count)) { | |
754 | struct the_nilfs *nilfs = root->nilfs; | |
755 | ||
756 | spin_lock(&nilfs->ns_cptree_lock); | |
757 | rb_erase(&root->rb_node, &nilfs->ns_cptree); | |
758 | spin_unlock(&nilfs->ns_cptree_lock); | |
759 | if (root->ifile) | |
f1e89c86 | 760 | iput(root->ifile); |
ba65ae47 RK |
761 | |
762 | kfree(root); | |
763 | } | |
8a9d2191 | 764 | } |