blob: 16f884bd857c2d2cc203220658e85f8356cabf3e [file] [log] [blame]
Koji Sato29619802009-04-06 19:01:31 -07001/*
2 * cpfile.c - NILFS checkpoint file.
3 *
4 * Copyright (C) 2006-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 *
Ryusuke Konishi4b420ab2016-05-23 16:23:09 -070016 * Written by Koji Sato.
Koji Sato29619802009-04-06 19:01:31 -070017 */
18
19#include <linux/kernel.h>
20#include <linux/fs.h>
21#include <linux/string.h>
22#include <linux/buffer_head.h>
23#include <linux/errno.h>
24#include <linux/nilfs2_fs.h>
25#include "mdt.h"
26#include "cpfile.h"
27
28
29static inline unsigned long
30nilfs_cpfile_checkpoints_per_block(const struct inode *cpfile)
31{
32 return NILFS_MDT(cpfile)->mi_entries_per_block;
33}
34
35/* block number from the beginning of the file */
36static unsigned long
37nilfs_cpfile_get_blkoff(const struct inode *cpfile, __u64 cno)
38{
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -070039 __u64 tcno = cno + NILFS_MDT(cpfile)->mi_first_entry_offset - 1;
Ryusuke Konishi4ad364c2016-05-23 16:23:25 -070040
Koji Sato29619802009-04-06 19:01:31 -070041 do_div(tcno, nilfs_cpfile_checkpoints_per_block(cpfile));
42 return (unsigned long)tcno;
43}
44
45/* offset in block */
46static unsigned long
47nilfs_cpfile_get_offset(const struct inode *cpfile, __u64 cno)
48{
49 __u64 tcno = cno + NILFS_MDT(cpfile)->mi_first_entry_offset - 1;
Ryusuke Konishi4ad364c2016-05-23 16:23:25 -070050
Koji Sato29619802009-04-06 19:01:31 -070051 return do_div(tcno, nilfs_cpfile_checkpoints_per_block(cpfile));
52}
53
Ryusuke Konishi53a2c3b2015-04-16 12:46:42 -070054static __u64 nilfs_cpfile_first_checkpoint_in_block(const struct inode *cpfile,
55 unsigned long blkoff)
56{
57 return (__u64)nilfs_cpfile_checkpoints_per_block(cpfile) * blkoff
58 + 1 - NILFS_MDT(cpfile)->mi_first_entry_offset;
59}
60
Koji Sato29619802009-04-06 19:01:31 -070061static unsigned long
62nilfs_cpfile_checkpoints_in_block(const struct inode *cpfile,
63 __u64 curr,
64 __u64 max)
65{
66 return min_t(__u64,
67 nilfs_cpfile_checkpoints_per_block(cpfile) -
68 nilfs_cpfile_get_offset(cpfile, curr),
69 max - curr);
70}
71
72static inline int nilfs_cpfile_is_in_first(const struct inode *cpfile,
73 __u64 cno)
74{
75 return nilfs_cpfile_get_blkoff(cpfile, cno) == 0;
76}
77
78static unsigned int
79nilfs_cpfile_block_add_valid_checkpoints(const struct inode *cpfile,
80 struct buffer_head *bh,
81 void *kaddr,
82 unsigned int n)
83{
84 struct nilfs_checkpoint *cp = kaddr + bh_offset(bh);
85 unsigned int count;
86
87 count = le32_to_cpu(cp->cp_checkpoints_count) + n;
88 cp->cp_checkpoints_count = cpu_to_le32(count);
89 return count;
90}
91
92static unsigned int
93nilfs_cpfile_block_sub_valid_checkpoints(const struct inode *cpfile,
94 struct buffer_head *bh,
95 void *kaddr,
96 unsigned int n)
97{
98 struct nilfs_checkpoint *cp = kaddr + bh_offset(bh);
99 unsigned int count;
100
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700101 WARN_ON(le32_to_cpu(cp->cp_checkpoints_count) < n);
Koji Sato29619802009-04-06 19:01:31 -0700102 count = le32_to_cpu(cp->cp_checkpoints_count) - n;
103 cp->cp_checkpoints_count = cpu_to_le32(count);
104 return count;
105}
106
107static inline struct nilfs_cpfile_header *
108nilfs_cpfile_block_get_header(const struct inode *cpfile,
109 struct buffer_head *bh,
110 void *kaddr)
111{
112 return kaddr + bh_offset(bh);
113}
114
115static struct nilfs_checkpoint *
116nilfs_cpfile_block_get_checkpoint(const struct inode *cpfile, __u64 cno,
117 struct buffer_head *bh,
118 void *kaddr)
119{
120 return kaddr + bh_offset(bh) + nilfs_cpfile_get_offset(cpfile, cno) *
121 NILFS_MDT(cpfile)->mi_entry_size;
122}
123
124static void nilfs_cpfile_block_init(struct inode *cpfile,
125 struct buffer_head *bh,
126 void *kaddr)
127{
128 struct nilfs_checkpoint *cp = kaddr + bh_offset(bh);
129 size_t cpsz = NILFS_MDT(cpfile)->mi_entry_size;
130 int n = nilfs_cpfile_checkpoints_per_block(cpfile);
131
132 while (n-- > 0) {
133 nilfs_checkpoint_set_invalid(cp);
134 cp = (void *)cp + cpsz;
135 }
136}
137
138static inline int nilfs_cpfile_get_header_block(struct inode *cpfile,
139 struct buffer_head **bhp)
140{
141 return nilfs_mdt_get_block(cpfile, 0, 0, NULL, bhp);
142}
143
144static inline int nilfs_cpfile_get_checkpoint_block(struct inode *cpfile,
145 __u64 cno,
146 int create,
147 struct buffer_head **bhp)
148{
149 return nilfs_mdt_get_block(cpfile,
150 nilfs_cpfile_get_blkoff(cpfile, cno),
151 create, nilfs_cpfile_block_init, bhp);
152}
153
Ryusuke Konishi53a2c3b2015-04-16 12:46:42 -0700154/**
155 * nilfs_cpfile_find_checkpoint_block - find and get a buffer on cpfile
156 * @cpfile: inode of cpfile
157 * @start_cno: start checkpoint number (inclusive)
158 * @end_cno: end checkpoint number (inclusive)
159 * @cnop: place to store the next checkpoint number
160 * @bhp: place to store a pointer to buffer_head struct
161 *
162 * Return Value: On success, it returns 0. On error, the following negative
163 * error code is returned.
164 *
165 * %-ENOMEM - Insufficient memory available.
166 *
167 * %-EIO - I/O error
168 *
169 * %-ENOENT - no block exists in the range.
170 */
171static int nilfs_cpfile_find_checkpoint_block(struct inode *cpfile,
172 __u64 start_cno, __u64 end_cno,
173 __u64 *cnop,
174 struct buffer_head **bhp)
175{
176 unsigned long start, end, blkoff;
177 int ret;
178
179 if (unlikely(start_cno > end_cno))
180 return -ENOENT;
181
182 start = nilfs_cpfile_get_blkoff(cpfile, start_cno);
183 end = nilfs_cpfile_get_blkoff(cpfile, end_cno);
184
185 ret = nilfs_mdt_find_block(cpfile, start, end, &blkoff, bhp);
186 if (!ret)
187 *cnop = (blkoff == start) ? start_cno :
188 nilfs_cpfile_first_checkpoint_in_block(cpfile, blkoff);
189 return ret;
190}
191
Koji Sato29619802009-04-06 19:01:31 -0700192static inline int nilfs_cpfile_delete_checkpoint_block(struct inode *cpfile,
193 __u64 cno)
194{
195 return nilfs_mdt_delete_block(cpfile,
196 nilfs_cpfile_get_blkoff(cpfile, cno));
197}
198
199/**
200 * nilfs_cpfile_get_checkpoint - get a checkpoint
201 * @cpfile: inode of checkpoint file
202 * @cno: checkpoint number
203 * @create: create flag
204 * @cpp: pointer to a checkpoint
205 * @bhp: pointer to a buffer head
206 *
207 * Description: nilfs_cpfile_get_checkpoint() acquires the checkpoint
208 * specified by @cno. A new checkpoint will be created if @cno is the current
209 * checkpoint number and @create is nonzero.
210 *
211 * Return Value: On success, 0 is returned, and the checkpoint and the
212 * buffer head of the buffer on which the checkpoint is located are stored in
213 * the place pointed by @cpp and @bhp, respectively. On error, one of the
214 * following negative error codes is returned.
215 *
216 * %-EIO - I/O error.
217 *
218 * %-ENOMEM - Insufficient amount of memory available.
219 *
220 * %-ENOENT - No such checkpoint.
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700221 *
222 * %-EINVAL - invalid checkpoint.
Koji Sato29619802009-04-06 19:01:31 -0700223 */
224int nilfs_cpfile_get_checkpoint(struct inode *cpfile,
225 __u64 cno,
226 int create,
227 struct nilfs_checkpoint **cpp,
228 struct buffer_head **bhp)
229{
230 struct buffer_head *header_bh, *cp_bh;
231 struct nilfs_cpfile_header *header;
232 struct nilfs_checkpoint *cp;
233 void *kaddr;
234 int ret;
235
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700236 if (unlikely(cno < 1 || cno > nilfs_mdt_cno(cpfile) ||
237 (cno < nilfs_mdt_cno(cpfile) && create)))
238 return -EINVAL;
Koji Sato29619802009-04-06 19:01:31 -0700239
240 down_write(&NILFS_MDT(cpfile)->mi_sem);
241
242 ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
243 if (ret < 0)
244 goto out_sem;
245 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, create, &cp_bh);
246 if (ret < 0)
247 goto out_header;
248 kaddr = kmap(cp_bh->b_page);
249 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
250 if (nilfs_checkpoint_invalid(cp)) {
251 if (!create) {
252 kunmap(cp_bh->b_page);
253 brelse(cp_bh);
254 ret = -ENOENT;
255 goto out_header;
256 }
257 /* a newly-created checkpoint */
258 nilfs_checkpoint_clear_invalid(cp);
259 if (!nilfs_cpfile_is_in_first(cpfile, cno))
260 nilfs_cpfile_block_add_valid_checkpoints(cpfile, cp_bh,
261 kaddr, 1);
Ryusuke Konishi5fc7b142011-05-05 12:56:51 +0900262 mark_buffer_dirty(cp_bh);
Koji Sato29619802009-04-06 19:01:31 -0700263
Cong Wang7b9c0972011-11-25 23:14:33 +0800264 kaddr = kmap_atomic(header_bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700265 header = nilfs_cpfile_block_get_header(cpfile, header_bh,
266 kaddr);
267 le64_add_cpu(&header->ch_ncheckpoints, 1);
Cong Wang7b9c0972011-11-25 23:14:33 +0800268 kunmap_atomic(kaddr);
Ryusuke Konishi5fc7b142011-05-05 12:56:51 +0900269 mark_buffer_dirty(header_bh);
Koji Sato29619802009-04-06 19:01:31 -0700270 nilfs_mdt_mark_dirty(cpfile);
271 }
272
273 if (cpp != NULL)
274 *cpp = cp;
275 *bhp = cp_bh;
276
277 out_header:
278 brelse(header_bh);
279
280 out_sem:
281 up_write(&NILFS_MDT(cpfile)->mi_sem);
282 return ret;
283}
284
285/**
286 * nilfs_cpfile_put_checkpoint - put a checkpoint
287 * @cpfile: inode of checkpoint file
288 * @cno: checkpoint number
289 * @bh: buffer head
290 *
291 * Description: nilfs_cpfile_put_checkpoint() releases the checkpoint
292 * specified by @cno. @bh must be the buffer head which has been returned by
293 * a previous call to nilfs_cpfile_get_checkpoint() with @cno.
294 */
295void nilfs_cpfile_put_checkpoint(struct inode *cpfile, __u64 cno,
296 struct buffer_head *bh)
297{
298 kunmap(bh->b_page);
299 brelse(bh);
300}
301
302/**
303 * nilfs_cpfile_delete_checkpoints - delete checkpoints
304 * @cpfile: inode of checkpoint file
305 * @start: start checkpoint number
306 * @end: end checkpoint numer
307 *
308 * Description: nilfs_cpfile_delete_checkpoints() deletes the checkpoints in
309 * the period from @start to @end, excluding @end itself. The checkpoints
310 * which have been already deleted are ignored.
311 *
312 * Return Value: On success, 0 is returned. On error, one of the following
313 * negative error codes is returned.
314 *
315 * %-EIO - I/O error.
316 *
317 * %-ENOMEM - Insufficient amount of memory available.
318 *
319 * %-EINVAL - invalid checkpoints.
320 */
321int nilfs_cpfile_delete_checkpoints(struct inode *cpfile,
322 __u64 start,
323 __u64 end)
324{
325 struct buffer_head *header_bh, *cp_bh;
326 struct nilfs_cpfile_header *header;
327 struct nilfs_checkpoint *cp;
328 size_t cpsz = NILFS_MDT(cpfile)->mi_entry_size;
329 __u64 cno;
330 void *kaddr;
331 unsigned long tnicps;
Ryusuke Konishife0627e2012-07-30 14:42:05 -0700332 int ret, ncps, nicps, nss, count, i;
Koji Sato29619802009-04-06 19:01:31 -0700333
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700334 if (unlikely(start == 0 || start > end)) {
335 printk(KERN_ERR "%s: invalid range of checkpoint numbers: "
336 "[%llu, %llu)\n", __func__,
337 (unsigned long long)start, (unsigned long long)end);
338 return -EINVAL;
Koji Sato29619802009-04-06 19:01:31 -0700339 }
340
Koji Sato29619802009-04-06 19:01:31 -0700341 down_write(&NILFS_MDT(cpfile)->mi_sem);
342
343 ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
344 if (ret < 0)
345 goto out_sem;
346 tnicps = 0;
Ryusuke Konishife0627e2012-07-30 14:42:05 -0700347 nss = 0;
Koji Sato29619802009-04-06 19:01:31 -0700348
349 for (cno = start; cno < end; cno += ncps) {
350 ncps = nilfs_cpfile_checkpoints_in_block(cpfile, cno, end);
351 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
352 if (ret < 0) {
353 if (ret != -ENOENT)
Jiro SEKIBAd9a0a342009-07-04 23:00:53 +0900354 break;
Koji Sato29619802009-04-06 19:01:31 -0700355 /* skip hole */
356 ret = 0;
357 continue;
358 }
359
Cong Wang7b9c0972011-11-25 23:14:33 +0800360 kaddr = kmap_atomic(cp_bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700361 cp = nilfs_cpfile_block_get_checkpoint(
362 cpfile, cno, cp_bh, kaddr);
363 nicps = 0;
364 for (i = 0; i < ncps; i++, cp = (void *)cp + cpsz) {
Ryusuke Konishife0627e2012-07-30 14:42:05 -0700365 if (nilfs_checkpoint_snapshot(cp)) {
366 nss++;
367 } else if (!nilfs_checkpoint_invalid(cp)) {
Koji Sato29619802009-04-06 19:01:31 -0700368 nilfs_checkpoint_set_invalid(cp);
369 nicps++;
370 }
371 }
372 if (nicps > 0) {
373 tnicps += nicps;
Ryusuke Konishi5fc7b142011-05-05 12:56:51 +0900374 mark_buffer_dirty(cp_bh);
Koji Sato29619802009-04-06 19:01:31 -0700375 nilfs_mdt_mark_dirty(cpfile);
Jiro SEKIBA5ee58142009-12-06 15:43:56 +0900376 if (!nilfs_cpfile_is_in_first(cpfile, cno)) {
377 count =
378 nilfs_cpfile_block_sub_valid_checkpoints(
379 cpfile, cp_bh, kaddr, nicps);
380 if (count == 0) {
381 /* make hole */
Cong Wang7b9c0972011-11-25 23:14:33 +0800382 kunmap_atomic(kaddr);
Jiro SEKIBA5ee58142009-12-06 15:43:56 +0900383 brelse(cp_bh);
384 ret =
385 nilfs_cpfile_delete_checkpoint_block(
386 cpfile, cno);
387 if (ret == 0)
388 continue;
389 printk(KERN_ERR
390 "%s: cannot delete block\n",
391 __func__);
392 break;
393 }
Koji Sato29619802009-04-06 19:01:31 -0700394 }
395 }
396
Cong Wang7b9c0972011-11-25 23:14:33 +0800397 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700398 brelse(cp_bh);
399 }
400
401 if (tnicps > 0) {
Cong Wang7b9c0972011-11-25 23:14:33 +0800402 kaddr = kmap_atomic(header_bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700403 header = nilfs_cpfile_block_get_header(cpfile, header_bh,
404 kaddr);
Koji Sato6c98cd42009-04-06 19:01:32 -0700405 le64_add_cpu(&header->ch_ncheckpoints, -(u64)tnicps);
Ryusuke Konishi5fc7b142011-05-05 12:56:51 +0900406 mark_buffer_dirty(header_bh);
Koji Sato29619802009-04-06 19:01:31 -0700407 nilfs_mdt_mark_dirty(cpfile);
Cong Wang7b9c0972011-11-25 23:14:33 +0800408 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700409 }
Ryusuke Konishi62013ab2009-05-30 21:50:58 +0900410
Koji Sato29619802009-04-06 19:01:31 -0700411 brelse(header_bh);
Ryusuke Konishife0627e2012-07-30 14:42:05 -0700412 if (nss > 0)
413 ret = -EBUSY;
Koji Sato29619802009-04-06 19:01:31 -0700414
415 out_sem:
416 up_write(&NILFS_MDT(cpfile)->mi_sem);
417 return ret;
418}
419
420static void nilfs_cpfile_checkpoint_to_cpinfo(struct inode *cpfile,
421 struct nilfs_checkpoint *cp,
422 struct nilfs_cpinfo *ci)
423{
424 ci->ci_flags = le32_to_cpu(cp->cp_flags);
425 ci->ci_cno = le64_to_cpu(cp->cp_cno);
426 ci->ci_create = le64_to_cpu(cp->cp_create);
427 ci->ci_nblk_inc = le64_to_cpu(cp->cp_nblk_inc);
428 ci->ci_inodes_count = le64_to_cpu(cp->cp_inodes_count);
429 ci->ci_blocks_count = le64_to_cpu(cp->cp_blocks_count);
430 ci->ci_next = le64_to_cpu(cp->cp_snapshot_list.ssl_next);
431}
432
Ryusuke Konishi76068c42009-04-06 19:01:50 -0700433static ssize_t nilfs_cpfile_do_get_cpinfo(struct inode *cpfile, __u64 *cnop,
Ryusuke Konishi003ff182009-05-12 03:58:47 +0900434 void *buf, unsigned cisz, size_t nci)
Koji Sato29619802009-04-06 19:01:31 -0700435{
436 struct nilfs_checkpoint *cp;
Ryusuke Konishi003ff182009-05-12 03:58:47 +0900437 struct nilfs_cpinfo *ci = buf;
Koji Sato29619802009-04-06 19:01:31 -0700438 struct buffer_head *bh;
439 size_t cpsz = NILFS_MDT(cpfile)->mi_entry_size;
Ryusuke Konishi76068c42009-04-06 19:01:50 -0700440 __u64 cur_cno = nilfs_mdt_cno(cpfile), cno = *cnop;
Koji Sato29619802009-04-06 19:01:31 -0700441 void *kaddr;
442 int n, ret;
443 int ncps, i;
444
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700445 if (cno == 0)
446 return -ENOENT; /* checkpoint number 0 is invalid */
Koji Sato29619802009-04-06 19:01:31 -0700447 down_read(&NILFS_MDT(cpfile)->mi_sem);
448
Ryusuke Konishi53a2c3b2015-04-16 12:46:42 -0700449 for (n = 0; n < nci; cno += ncps) {
450 ret = nilfs_cpfile_find_checkpoint_block(
451 cpfile, cno, cur_cno - 1, &cno, &bh);
Koji Sato29619802009-04-06 19:01:31 -0700452 if (ret < 0) {
Ryusuke Konishi53a2c3b2015-04-16 12:46:42 -0700453 if (likely(ret == -ENOENT))
454 break;
455 goto out;
Koji Sato29619802009-04-06 19:01:31 -0700456 }
Ryusuke Konishi53a2c3b2015-04-16 12:46:42 -0700457 ncps = nilfs_cpfile_checkpoints_in_block(cpfile, cno, cur_cno);
Koji Sato29619802009-04-06 19:01:31 -0700458
Cong Wang7b9c0972011-11-25 23:14:33 +0800459 kaddr = kmap_atomic(bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700460 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, bh, kaddr);
461 for (i = 0; i < ncps && n < nci; i++, cp = (void *)cp + cpsz) {
Ryusuke Konishi003ff182009-05-12 03:58:47 +0900462 if (!nilfs_checkpoint_invalid(cp)) {
463 nilfs_cpfile_checkpoint_to_cpinfo(cpfile, cp,
464 ci);
465 ci = (void *)ci + cisz;
466 n++;
467 }
Koji Sato29619802009-04-06 19:01:31 -0700468 }
Cong Wang7b9c0972011-11-25 23:14:33 +0800469 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700470 brelse(bh);
471 }
472
473 ret = n;
Ryusuke Konishi003ff182009-05-12 03:58:47 +0900474 if (n > 0) {
475 ci = (void *)ci - cisz;
476 *cnop = ci->ci_cno + 1;
477 }
Koji Sato29619802009-04-06 19:01:31 -0700478
479 out:
480 up_read(&NILFS_MDT(cpfile)->mi_sem);
481 return ret;
482}
483
Ryusuke Konishib028fcf2009-04-06 19:01:47 -0700484static ssize_t nilfs_cpfile_do_get_ssinfo(struct inode *cpfile, __u64 *cnop,
Ryusuke Konishi003ff182009-05-12 03:58:47 +0900485 void *buf, unsigned cisz, size_t nci)
Koji Sato29619802009-04-06 19:01:31 -0700486{
487 struct buffer_head *bh;
488 struct nilfs_cpfile_header *header;
489 struct nilfs_checkpoint *cp;
Ryusuke Konishi003ff182009-05-12 03:58:47 +0900490 struct nilfs_cpinfo *ci = buf;
Ryusuke Konishib028fcf2009-04-06 19:01:47 -0700491 __u64 curr = *cnop, next;
Koji Sato29619802009-04-06 19:01:31 -0700492 unsigned long curr_blkoff, next_blkoff;
493 void *kaddr;
Ryusuke Konishi7fa10d22009-04-06 19:01:48 -0700494 int n = 0, ret;
Koji Sato29619802009-04-06 19:01:31 -0700495
496 down_read(&NILFS_MDT(cpfile)->mi_sem);
497
Ryusuke Konishib028fcf2009-04-06 19:01:47 -0700498 if (curr == 0) {
Koji Sato29619802009-04-06 19:01:31 -0700499 ret = nilfs_cpfile_get_header_block(cpfile, &bh);
500 if (ret < 0)
501 goto out;
Cong Wang7b9c0972011-11-25 23:14:33 +0800502 kaddr = kmap_atomic(bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700503 header = nilfs_cpfile_block_get_header(cpfile, bh, kaddr);
504 curr = le64_to_cpu(header->ch_snapshot_list.ssl_next);
Cong Wang7b9c0972011-11-25 23:14:33 +0800505 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700506 brelse(bh);
507 if (curr == 0) {
508 ret = 0;
509 goto out;
510 }
Ryusuke Konishib028fcf2009-04-06 19:01:47 -0700511 } else if (unlikely(curr == ~(__u64)0)) {
512 ret = 0;
513 goto out;
514 }
515
Koji Sato29619802009-04-06 19:01:31 -0700516 curr_blkoff = nilfs_cpfile_get_blkoff(cpfile, curr);
517 ret = nilfs_cpfile_get_checkpoint_block(cpfile, curr, 0, &bh);
Ryusuke Konishi7fa10d22009-04-06 19:01:48 -0700518 if (unlikely(ret < 0)) {
519 if (ret == -ENOENT)
520 ret = 0; /* No snapshots (started from a hole block) */
Koji Sato29619802009-04-06 19:01:31 -0700521 goto out;
Ryusuke Konishi7fa10d22009-04-06 19:01:48 -0700522 }
Cong Wang7b9c0972011-11-25 23:14:33 +0800523 kaddr = kmap_atomic(bh->b_page);
Ryusuke Konishi7fa10d22009-04-06 19:01:48 -0700524 while (n < nci) {
525 cp = nilfs_cpfile_block_get_checkpoint(cpfile, curr, bh, kaddr);
526 curr = ~(__u64)0; /* Terminator */
527 if (unlikely(nilfs_checkpoint_invalid(cp) ||
528 !nilfs_checkpoint_snapshot(cp)))
Koji Sato29619802009-04-06 19:01:31 -0700529 break;
Ryusuke Konishi003ff182009-05-12 03:58:47 +0900530 nilfs_cpfile_checkpoint_to_cpinfo(cpfile, cp, ci);
531 ci = (void *)ci + cisz;
532 n++;
Ryusuke Konishi7fa10d22009-04-06 19:01:48 -0700533 next = le64_to_cpu(cp->cp_snapshot_list.ssl_next);
534 if (next == 0)
535 break; /* reach end of the snapshot list */
536
Koji Sato29619802009-04-06 19:01:31 -0700537 next_blkoff = nilfs_cpfile_get_blkoff(cpfile, next);
538 if (curr_blkoff != next_blkoff) {
Cong Wang7b9c0972011-11-25 23:14:33 +0800539 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700540 brelse(bh);
541 ret = nilfs_cpfile_get_checkpoint_block(cpfile, next,
542 0, &bh);
Ryusuke Konishi7fa10d22009-04-06 19:01:48 -0700543 if (unlikely(ret < 0)) {
544 WARN_ON(ret == -ENOENT);
Koji Sato29619802009-04-06 19:01:31 -0700545 goto out;
Ryusuke Konishi7fa10d22009-04-06 19:01:48 -0700546 }
Cong Wang7b9c0972011-11-25 23:14:33 +0800547 kaddr = kmap_atomic(bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700548 }
549 curr = next;
550 curr_blkoff = next_blkoff;
551 }
Cong Wang7b9c0972011-11-25 23:14:33 +0800552 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700553 brelse(bh);
Ryusuke Konishib028fcf2009-04-06 19:01:47 -0700554 *cnop = curr;
Koji Sato29619802009-04-06 19:01:31 -0700555 ret = n;
556
557 out:
558 up_read(&NILFS_MDT(cpfile)->mi_sem);
559 return ret;
560}
561
562/**
563 * nilfs_cpfile_get_cpinfo -
564 * @cpfile:
565 * @cno:
566 * @ci:
567 * @nci:
568 */
Ryusuke Konishib028fcf2009-04-06 19:01:47 -0700569
570ssize_t nilfs_cpfile_get_cpinfo(struct inode *cpfile, __u64 *cnop, int mode,
Ryusuke Konishi003ff182009-05-12 03:58:47 +0900571 void *buf, unsigned cisz, size_t nci)
Koji Sato29619802009-04-06 19:01:31 -0700572{
573 switch (mode) {
574 case NILFS_CHECKPOINT:
Ryusuke Konishi003ff182009-05-12 03:58:47 +0900575 return nilfs_cpfile_do_get_cpinfo(cpfile, cnop, buf, cisz, nci);
Koji Sato29619802009-04-06 19:01:31 -0700576 case NILFS_SNAPSHOT:
Ryusuke Konishi003ff182009-05-12 03:58:47 +0900577 return nilfs_cpfile_do_get_ssinfo(cpfile, cnop, buf, cisz, nci);
Koji Sato29619802009-04-06 19:01:31 -0700578 default:
579 return -EINVAL;
580 }
581}
582
583/**
584 * nilfs_cpfile_delete_checkpoint -
585 * @cpfile:
586 * @cno:
587 */
588int nilfs_cpfile_delete_checkpoint(struct inode *cpfile, __u64 cno)
589{
590 struct nilfs_cpinfo ci;
Ryusuke Konishi76068c42009-04-06 19:01:50 -0700591 __u64 tcno = cno;
Koji Sato29619802009-04-06 19:01:31 -0700592 ssize_t nci;
Koji Sato29619802009-04-06 19:01:31 -0700593
Ryusuke Konishi003ff182009-05-12 03:58:47 +0900594 nci = nilfs_cpfile_do_get_cpinfo(cpfile, &tcno, &ci, sizeof(ci), 1);
Koji Sato29619802009-04-06 19:01:31 -0700595 if (nci < 0)
596 return nci;
597 else if (nci == 0 || ci.ci_cno != cno)
598 return -ENOENT;
Ryusuke Konishi30c25be2009-05-30 19:08:09 +0900599 else if (nilfs_cpinfo_snapshot(&ci))
600 return -EBUSY;
Koji Sato29619802009-04-06 19:01:31 -0700601
602 return nilfs_cpfile_delete_checkpoints(cpfile, cno, cno + 1);
603}
604
605static struct nilfs_snapshot_list *
606nilfs_cpfile_block_get_snapshot_list(const struct inode *cpfile,
607 __u64 cno,
608 struct buffer_head *bh,
609 void *kaddr)
610{
611 struct nilfs_cpfile_header *header;
612 struct nilfs_checkpoint *cp;
613 struct nilfs_snapshot_list *list;
614
615 if (cno != 0) {
616 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, bh, kaddr);
617 list = &cp->cp_snapshot_list;
618 } else {
619 header = nilfs_cpfile_block_get_header(cpfile, bh, kaddr);
620 list = &header->ch_snapshot_list;
621 }
622 return list;
623}
624
625static int nilfs_cpfile_set_snapshot(struct inode *cpfile, __u64 cno)
626{
627 struct buffer_head *header_bh, *curr_bh, *prev_bh, *cp_bh;
628 struct nilfs_cpfile_header *header;
629 struct nilfs_checkpoint *cp;
630 struct nilfs_snapshot_list *list;
631 __u64 curr, prev;
632 unsigned long curr_blkoff, prev_blkoff;
633 void *kaddr;
634 int ret;
635
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700636 if (cno == 0)
637 return -ENOENT; /* checkpoint number 0 is invalid */
Koji Sato29619802009-04-06 19:01:31 -0700638 down_write(&NILFS_MDT(cpfile)->mi_sem);
639
640 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
641 if (ret < 0)
642 goto out_sem;
Cong Wang7b9c0972011-11-25 23:14:33 +0800643 kaddr = kmap_atomic(cp_bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700644 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
645 if (nilfs_checkpoint_invalid(cp)) {
646 ret = -ENOENT;
Cong Wang7b9c0972011-11-25 23:14:33 +0800647 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700648 goto out_cp;
649 }
650 if (nilfs_checkpoint_snapshot(cp)) {
651 ret = 0;
Cong Wang7b9c0972011-11-25 23:14:33 +0800652 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700653 goto out_cp;
654 }
Cong Wang7b9c0972011-11-25 23:14:33 +0800655 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700656
657 ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
658 if (ret < 0)
659 goto out_cp;
Cong Wang7b9c0972011-11-25 23:14:33 +0800660 kaddr = kmap_atomic(header_bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700661 header = nilfs_cpfile_block_get_header(cpfile, header_bh, kaddr);
662 list = &header->ch_snapshot_list;
663 curr_bh = header_bh;
664 get_bh(curr_bh);
665 curr = 0;
666 curr_blkoff = 0;
667 prev = le64_to_cpu(list->ssl_prev);
668 while (prev > cno) {
669 prev_blkoff = nilfs_cpfile_get_blkoff(cpfile, prev);
670 curr = prev;
671 if (curr_blkoff != prev_blkoff) {
Cong Wang7b9c0972011-11-25 23:14:33 +0800672 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700673 brelse(curr_bh);
674 ret = nilfs_cpfile_get_checkpoint_block(cpfile, curr,
675 0, &curr_bh);
676 if (ret < 0)
677 goto out_header;
Cong Wang7b9c0972011-11-25 23:14:33 +0800678 kaddr = kmap_atomic(curr_bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700679 }
680 curr_blkoff = prev_blkoff;
681 cp = nilfs_cpfile_block_get_checkpoint(
682 cpfile, curr, curr_bh, kaddr);
683 list = &cp->cp_snapshot_list;
684 prev = le64_to_cpu(list->ssl_prev);
685 }
Cong Wang7b9c0972011-11-25 23:14:33 +0800686 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700687
688 if (prev != 0) {
689 ret = nilfs_cpfile_get_checkpoint_block(cpfile, prev, 0,
690 &prev_bh);
691 if (ret < 0)
692 goto out_curr;
693 } else {
694 prev_bh = header_bh;
695 get_bh(prev_bh);
696 }
697
Cong Wang7b9c0972011-11-25 23:14:33 +0800698 kaddr = kmap_atomic(curr_bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700699 list = nilfs_cpfile_block_get_snapshot_list(
700 cpfile, curr, curr_bh, kaddr);
701 list->ssl_prev = cpu_to_le64(cno);
Cong Wang7b9c0972011-11-25 23:14:33 +0800702 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700703
Cong Wang7b9c0972011-11-25 23:14:33 +0800704 kaddr = kmap_atomic(cp_bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700705 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
706 cp->cp_snapshot_list.ssl_next = cpu_to_le64(curr);
707 cp->cp_snapshot_list.ssl_prev = cpu_to_le64(prev);
708 nilfs_checkpoint_set_snapshot(cp);
Cong Wang7b9c0972011-11-25 23:14:33 +0800709 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700710
Cong Wang7b9c0972011-11-25 23:14:33 +0800711 kaddr = kmap_atomic(prev_bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700712 list = nilfs_cpfile_block_get_snapshot_list(
713 cpfile, prev, prev_bh, kaddr);
714 list->ssl_next = cpu_to_le64(cno);
Cong Wang7b9c0972011-11-25 23:14:33 +0800715 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700716
Cong Wang7b9c0972011-11-25 23:14:33 +0800717 kaddr = kmap_atomic(header_bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700718 header = nilfs_cpfile_block_get_header(cpfile, header_bh, kaddr);
719 le64_add_cpu(&header->ch_nsnapshots, 1);
Cong Wang7b9c0972011-11-25 23:14:33 +0800720 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700721
Ryusuke Konishi5fc7b142011-05-05 12:56:51 +0900722 mark_buffer_dirty(prev_bh);
723 mark_buffer_dirty(curr_bh);
724 mark_buffer_dirty(cp_bh);
725 mark_buffer_dirty(header_bh);
Koji Sato29619802009-04-06 19:01:31 -0700726 nilfs_mdt_mark_dirty(cpfile);
727
728 brelse(prev_bh);
729
730 out_curr:
731 brelse(curr_bh);
732
733 out_header:
734 brelse(header_bh);
735
736 out_cp:
737 brelse(cp_bh);
738
739 out_sem:
740 up_write(&NILFS_MDT(cpfile)->mi_sem);
741 return ret;
742}
743
744static int nilfs_cpfile_clear_snapshot(struct inode *cpfile, __u64 cno)
745{
746 struct buffer_head *header_bh, *next_bh, *prev_bh, *cp_bh;
747 struct nilfs_cpfile_header *header;
748 struct nilfs_checkpoint *cp;
749 struct nilfs_snapshot_list *list;
750 __u64 next, prev;
751 void *kaddr;
752 int ret;
753
Ryusuke Konishi1f5abe72009-04-06 19:01:55 -0700754 if (cno == 0)
755 return -ENOENT; /* checkpoint number 0 is invalid */
Koji Sato29619802009-04-06 19:01:31 -0700756 down_write(&NILFS_MDT(cpfile)->mi_sem);
757
758 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
759 if (ret < 0)
760 goto out_sem;
Cong Wang7b9c0972011-11-25 23:14:33 +0800761 kaddr = kmap_atomic(cp_bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700762 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
763 if (nilfs_checkpoint_invalid(cp)) {
764 ret = -ENOENT;
Cong Wang7b9c0972011-11-25 23:14:33 +0800765 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700766 goto out_cp;
767 }
768 if (!nilfs_checkpoint_snapshot(cp)) {
769 ret = 0;
Cong Wang7b9c0972011-11-25 23:14:33 +0800770 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700771 goto out_cp;
772 }
773
774 list = &cp->cp_snapshot_list;
775 next = le64_to_cpu(list->ssl_next);
776 prev = le64_to_cpu(list->ssl_prev);
Cong Wang7b9c0972011-11-25 23:14:33 +0800777 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700778
779 ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
780 if (ret < 0)
781 goto out_cp;
782 if (next != 0) {
783 ret = nilfs_cpfile_get_checkpoint_block(cpfile, next, 0,
784 &next_bh);
785 if (ret < 0)
786 goto out_header;
787 } else {
788 next_bh = header_bh;
789 get_bh(next_bh);
790 }
791 if (prev != 0) {
792 ret = nilfs_cpfile_get_checkpoint_block(cpfile, prev, 0,
793 &prev_bh);
794 if (ret < 0)
795 goto out_next;
796 } else {
797 prev_bh = header_bh;
798 get_bh(prev_bh);
799 }
800
Cong Wang7b9c0972011-11-25 23:14:33 +0800801 kaddr = kmap_atomic(next_bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700802 list = nilfs_cpfile_block_get_snapshot_list(
803 cpfile, next, next_bh, kaddr);
804 list->ssl_prev = cpu_to_le64(prev);
Cong Wang7b9c0972011-11-25 23:14:33 +0800805 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700806
Cong Wang7b9c0972011-11-25 23:14:33 +0800807 kaddr = kmap_atomic(prev_bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700808 list = nilfs_cpfile_block_get_snapshot_list(
809 cpfile, prev, prev_bh, kaddr);
810 list->ssl_next = cpu_to_le64(next);
Cong Wang7b9c0972011-11-25 23:14:33 +0800811 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700812
Cong Wang7b9c0972011-11-25 23:14:33 +0800813 kaddr = kmap_atomic(cp_bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700814 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
815 cp->cp_snapshot_list.ssl_next = cpu_to_le64(0);
816 cp->cp_snapshot_list.ssl_prev = cpu_to_le64(0);
817 nilfs_checkpoint_clear_snapshot(cp);
Cong Wang7b9c0972011-11-25 23:14:33 +0800818 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700819
Cong Wang7b9c0972011-11-25 23:14:33 +0800820 kaddr = kmap_atomic(header_bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700821 header = nilfs_cpfile_block_get_header(cpfile, header_bh, kaddr);
822 le64_add_cpu(&header->ch_nsnapshots, -1);
Cong Wang7b9c0972011-11-25 23:14:33 +0800823 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700824
Ryusuke Konishi5fc7b142011-05-05 12:56:51 +0900825 mark_buffer_dirty(next_bh);
826 mark_buffer_dirty(prev_bh);
827 mark_buffer_dirty(cp_bh);
828 mark_buffer_dirty(header_bh);
Koji Sato29619802009-04-06 19:01:31 -0700829 nilfs_mdt_mark_dirty(cpfile);
830
831 brelse(prev_bh);
832
833 out_next:
834 brelse(next_bh);
835
836 out_header:
837 brelse(header_bh);
838
839 out_cp:
840 brelse(cp_bh);
841
842 out_sem:
843 up_write(&NILFS_MDT(cpfile)->mi_sem);
844 return ret;
845}
846
847/**
848 * nilfs_cpfile_is_snapshot -
849 * @cpfile: inode of checkpoint file
850 * @cno: checkpoint number
851 *
852 * Description:
853 *
854 * Return Value: On success, 1 is returned if the checkpoint specified by
855 * @cno is a snapshot, or 0 if not. On error, one of the following negative
856 * error codes is returned.
857 *
858 * %-EIO - I/O error.
859 *
860 * %-ENOMEM - Insufficient amount of memory available.
861 *
862 * %-ENOENT - No such checkpoint.
863 */
864int nilfs_cpfile_is_snapshot(struct inode *cpfile, __u64 cno)
865{
866 struct buffer_head *bh;
867 struct nilfs_checkpoint *cp;
868 void *kaddr;
869 int ret;
870
Zhu Yanhai43be0ec2009-08-12 14:17:59 +0800871 /* CP number is invalid if it's zero or larger than the
872 largest exist one.*/
873 if (cno == 0 || cno >= nilfs_mdt_cno(cpfile))
874 return -ENOENT;
Koji Sato29619802009-04-06 19:01:31 -0700875 down_read(&NILFS_MDT(cpfile)->mi_sem);
876
877 ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &bh);
878 if (ret < 0)
879 goto out;
Cong Wang7b9c0972011-11-25 23:14:33 +0800880 kaddr = kmap_atomic(bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700881 cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, bh, kaddr);
Zhu Yanhai43be0ec2009-08-12 14:17:59 +0800882 if (nilfs_checkpoint_invalid(cp))
883 ret = -ENOENT;
884 else
885 ret = nilfs_checkpoint_snapshot(cp);
Cong Wang7b9c0972011-11-25 23:14:33 +0800886 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700887 brelse(bh);
888
889 out:
890 up_read(&NILFS_MDT(cpfile)->mi_sem);
891 return ret;
892}
893
894/**
895 * nilfs_cpfile_change_cpmode - change checkpoint mode
896 * @cpfile: inode of checkpoint file
897 * @cno: checkpoint number
898 * @status: mode of checkpoint
899 *
900 * Description: nilfs_change_cpmode() changes the mode of the checkpoint
901 * specified by @cno. The mode @mode is NILFS_CHECKPOINT or NILFS_SNAPSHOT.
902 *
903 * Return Value: On success, 0 is returned. On error, one of the following
904 * negative error codes is returned.
905 *
906 * %-EIO - I/O error.
907 *
908 * %-ENOMEM - Insufficient amount of memory available.
909 *
910 * %-ENOENT - No such checkpoint.
911 */
912int nilfs_cpfile_change_cpmode(struct inode *cpfile, __u64 cno, int mode)
913{
Koji Sato29619802009-04-06 19:01:31 -0700914 int ret;
915
Koji Sato29619802009-04-06 19:01:31 -0700916 switch (mode) {
917 case NILFS_CHECKPOINT:
Ryusuke Konishi032dbb32010-09-13 11:16:34 +0900918 if (nilfs_checkpoint_is_mounted(cpfile->i_sb, cno))
919 /*
920 * Current implementation does not have to protect
921 * plain read-only mounts since they are exclusive
922 * with a read/write mount and are protected from the
923 * cleaner.
924 */
Koji Sato29619802009-04-06 19:01:31 -0700925 ret = -EBUSY;
Ryusuke Konishi032dbb32010-09-13 11:16:34 +0900926 else
Koji Sato29619802009-04-06 19:01:31 -0700927 ret = nilfs_cpfile_clear_snapshot(cpfile, cno);
Koji Sato29619802009-04-06 19:01:31 -0700928 return ret;
929 case NILFS_SNAPSHOT:
930 return nilfs_cpfile_set_snapshot(cpfile, cno);
931 default:
932 return -EINVAL;
933 }
934}
935
936/**
937 * nilfs_cpfile_get_stat - get checkpoint statistics
938 * @cpfile: inode of checkpoint file
939 * @stat: pointer to a structure of checkpoint statistics
940 *
941 * Description: nilfs_cpfile_get_stat() returns information about checkpoints.
942 *
943 * Return Value: On success, 0 is returned, and checkpoints information is
944 * stored in the place pointed by @stat. On error, one of the following
945 * negative error codes is returned.
946 *
947 * %-EIO - I/O error.
948 *
949 * %-ENOMEM - Insufficient amount of memory available.
950 */
951int nilfs_cpfile_get_stat(struct inode *cpfile, struct nilfs_cpstat *cpstat)
952{
953 struct buffer_head *bh;
954 struct nilfs_cpfile_header *header;
955 void *kaddr;
956 int ret;
957
958 down_read(&NILFS_MDT(cpfile)->mi_sem);
959
960 ret = nilfs_cpfile_get_header_block(cpfile, &bh);
961 if (ret < 0)
962 goto out_sem;
Cong Wang7b9c0972011-11-25 23:14:33 +0800963 kaddr = kmap_atomic(bh->b_page);
Koji Sato29619802009-04-06 19:01:31 -0700964 header = nilfs_cpfile_block_get_header(cpfile, bh, kaddr);
965 cpstat->cs_cno = nilfs_mdt_cno(cpfile);
966 cpstat->cs_ncps = le64_to_cpu(header->ch_ncheckpoints);
967 cpstat->cs_nsss = le64_to_cpu(header->ch_nsnapshots);
Cong Wang7b9c0972011-11-25 23:14:33 +0800968 kunmap_atomic(kaddr);
Koji Sato29619802009-04-06 19:01:31 -0700969 brelse(bh);
970
971 out_sem:
972 up_read(&NILFS_MDT(cpfile)->mi_sem);
973 return ret;
974}
Ryusuke Konishi79739562009-11-12 23:56:43 +0900975
976/**
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900977 * nilfs_cpfile_read - read or get cpfile inode
978 * @sb: super block instance
Ryusuke Konishi79739562009-11-12 23:56:43 +0900979 * @cpsize: size of a checkpoint entry
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900980 * @raw_inode: on-disk cpfile inode
981 * @inodep: buffer to store the inode
Ryusuke Konishi79739562009-11-12 23:56:43 +0900982 */
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900983int nilfs_cpfile_read(struct super_block *sb, size_t cpsize,
984 struct nilfs_inode *raw_inode, struct inode **inodep)
Ryusuke Konishi79739562009-11-12 23:56:43 +0900985{
986 struct inode *cpfile;
Ryusuke Konishif1e89c82010-09-05 12:20:59 +0900987 int err;
Ryusuke Konishi79739562009-11-12 23:56:43 +0900988
Ryusuke Konishi0ec060d2014-04-03 14:50:31 -0700989 if (cpsize > sb->s_blocksize) {
990 printk(KERN_ERR
991 "NILFS: too large checkpoint size: %zu bytes.\n",
992 cpsize);
993 return -EINVAL;
994 } else if (cpsize < NILFS_MIN_CHECKPOINT_SIZE) {
995 printk(KERN_ERR
996 "NILFS: too small checkpoint size: %zu bytes.\n",
997 cpsize);
998 return -EINVAL;
999 }
1000
Ryusuke Konishif1e89c82010-09-05 12:20:59 +09001001 cpfile = nilfs_iget_locked(sb, NULL, NILFS_CPFILE_INO);
1002 if (unlikely(!cpfile))
1003 return -ENOMEM;
1004 if (!(cpfile->i_state & I_NEW))
1005 goto out;
1006
1007 err = nilfs_mdt_init(cpfile, NILFS_MDT_GFP, 0);
1008 if (err)
1009 goto failed;
1010
1011 nilfs_mdt_set_entry_size(cpfile, cpsize,
1012 sizeof(struct nilfs_cpfile_header));
1013
1014 err = nilfs_read_inode_common(cpfile, raw_inode);
1015 if (err)
1016 goto failed;
1017
1018 unlock_new_inode(cpfile);
1019 out:
1020 *inodep = cpfile;
1021 return 0;
1022 failed:
1023 iget_failed(cpfile);
1024 return err;
Ryusuke Konishi79739562009-11-12 23:56:43 +09001025}