2018-09-05 00:46:30 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2009-04-07 04:01:31 +02:00
|
|
|
/*
|
|
|
|
* cpfile.c - NILFS checkpoint file.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006-2008 Nippon Telegraph and Telephone Corporation.
|
|
|
|
*
|
2016-05-24 01:23:09 +02:00
|
|
|
* Written by Koji Sato.
|
2009-04-07 04:01:31 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/fs.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/buffer_head.h>
|
|
|
|
#include <linux/errno.h>
|
|
|
|
#include "mdt.h"
|
|
|
|
#include "cpfile.h"
|
|
|
|
|
|
|
|
|
|
|
|
static inline unsigned long
|
|
|
|
nilfs_cpfile_checkpoints_per_block(const struct inode *cpfile)
|
|
|
|
{
|
|
|
|
return NILFS_MDT(cpfile)->mi_entries_per_block;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* block number from the beginning of the file */
|
|
|
|
static unsigned long
|
|
|
|
nilfs_cpfile_get_blkoff(const struct inode *cpfile, __u64 cno)
|
|
|
|
{
|
2009-04-07 04:01:55 +02:00
|
|
|
__u64 tcno = cno + NILFS_MDT(cpfile)->mi_first_entry_offset - 1;
|
2016-05-24 01:23:25 +02:00
|
|
|
|
2009-04-07 04:01:31 +02:00
|
|
|
do_div(tcno, nilfs_cpfile_checkpoints_per_block(cpfile));
|
|
|
|
return (unsigned long)tcno;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* offset in block */
|
|
|
|
static unsigned long
|
|
|
|
nilfs_cpfile_get_offset(const struct inode *cpfile, __u64 cno)
|
|
|
|
{
|
|
|
|
__u64 tcno = cno + NILFS_MDT(cpfile)->mi_first_entry_offset - 1;
|
2016-05-24 01:23:25 +02:00
|
|
|
|
2009-04-07 04:01:31 +02:00
|
|
|
return do_div(tcno, nilfs_cpfile_checkpoints_per_block(cpfile));
|
|
|
|
}
|
|
|
|
|
2015-04-16 21:46:42 +02:00
|
|
|
static __u64 nilfs_cpfile_first_checkpoint_in_block(const struct inode *cpfile,
|
|
|
|
unsigned long blkoff)
|
|
|
|
{
|
|
|
|
return (__u64)nilfs_cpfile_checkpoints_per_block(cpfile) * blkoff
|
|
|
|
+ 1 - NILFS_MDT(cpfile)->mi_first_entry_offset;
|
|
|
|
}
|
|
|
|
|
2009-04-07 04:01:31 +02:00
|
|
|
static unsigned long
|
|
|
|
nilfs_cpfile_checkpoints_in_block(const struct inode *cpfile,
|
|
|
|
__u64 curr,
|
|
|
|
__u64 max)
|
|
|
|
{
|
|
|
|
return min_t(__u64,
|
|
|
|
nilfs_cpfile_checkpoints_per_block(cpfile) -
|
|
|
|
nilfs_cpfile_get_offset(cpfile, curr),
|
|
|
|
max - curr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int nilfs_cpfile_is_in_first(const struct inode *cpfile,
|
|
|
|
__u64 cno)
|
|
|
|
{
|
|
|
|
return nilfs_cpfile_get_blkoff(cpfile, cno) == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int
|
|
|
|
nilfs_cpfile_block_add_valid_checkpoints(const struct inode *cpfile,
|
|
|
|
struct buffer_head *bh,
|
|
|
|
void *kaddr,
|
|
|
|
unsigned int n)
|
|
|
|
{
|
|
|
|
struct nilfs_checkpoint *cp = kaddr + bh_offset(bh);
|
|
|
|
unsigned int count;
|
|
|
|
|
|
|
|
count = le32_to_cpu(cp->cp_checkpoints_count) + n;
|
|
|
|
cp->cp_checkpoints_count = cpu_to_le32(count);
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static unsigned int
|
|
|
|
nilfs_cpfile_block_sub_valid_checkpoints(const struct inode *cpfile,
|
|
|
|
struct buffer_head *bh,
|
|
|
|
void *kaddr,
|
|
|
|
unsigned int n)
|
|
|
|
{
|
|
|
|
struct nilfs_checkpoint *cp = kaddr + bh_offset(bh);
|
|
|
|
unsigned int count;
|
|
|
|
|
2009-04-07 04:01:55 +02:00
|
|
|
WARN_ON(le32_to_cpu(cp->cp_checkpoints_count) < n);
|
2009-04-07 04:01:31 +02:00
|
|
|
count = le32_to_cpu(cp->cp_checkpoints_count) - n;
|
|
|
|
cp->cp_checkpoints_count = cpu_to_le32(count);
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline struct nilfs_cpfile_header *
|
|
|
|
nilfs_cpfile_block_get_header(const struct inode *cpfile,
|
|
|
|
struct buffer_head *bh,
|
|
|
|
void *kaddr)
|
|
|
|
{
|
|
|
|
return kaddr + bh_offset(bh);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct nilfs_checkpoint *
|
|
|
|
nilfs_cpfile_block_get_checkpoint(const struct inode *cpfile, __u64 cno,
|
|
|
|
struct buffer_head *bh,
|
|
|
|
void *kaddr)
|
|
|
|
{
|
|
|
|
return kaddr + bh_offset(bh) + nilfs_cpfile_get_offset(cpfile, cno) *
|
|
|
|
NILFS_MDT(cpfile)->mi_entry_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void nilfs_cpfile_block_init(struct inode *cpfile,
|
|
|
|
struct buffer_head *bh,
|
|
|
|
void *kaddr)
|
|
|
|
{
|
|
|
|
struct nilfs_checkpoint *cp = kaddr + bh_offset(bh);
|
|
|
|
size_t cpsz = NILFS_MDT(cpfile)->mi_entry_size;
|
|
|
|
int n = nilfs_cpfile_checkpoints_per_block(cpfile);
|
|
|
|
|
|
|
|
while (n-- > 0) {
|
|
|
|
nilfs_checkpoint_set_invalid(cp);
|
|
|
|
cp = (void *)cp + cpsz;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int nilfs_cpfile_get_header_block(struct inode *cpfile,
|
|
|
|
struct buffer_head **bhp)
|
|
|
|
{
|
|
|
|
return nilfs_mdt_get_block(cpfile, 0, 0, NULL, bhp);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int nilfs_cpfile_get_checkpoint_block(struct inode *cpfile,
|
|
|
|
__u64 cno,
|
|
|
|
int create,
|
|
|
|
struct buffer_head **bhp)
|
|
|
|
{
|
|
|
|
return nilfs_mdt_get_block(cpfile,
|
|
|
|
nilfs_cpfile_get_blkoff(cpfile, cno),
|
|
|
|
create, nilfs_cpfile_block_init, bhp);
|
|
|
|
}
|
|
|
|
|
2015-04-16 21:46:42 +02:00
|
|
|
/**
|
|
|
|
* nilfs_cpfile_find_checkpoint_block - find and get a buffer on cpfile
|
|
|
|
* @cpfile: inode of cpfile
|
|
|
|
* @start_cno: start checkpoint number (inclusive)
|
|
|
|
* @end_cno: end checkpoint number (inclusive)
|
|
|
|
* @cnop: place to store the next checkpoint number
|
|
|
|
* @bhp: place to store a pointer to buffer_head struct
|
|
|
|
*
|
|
|
|
* Return Value: On success, it returns 0. On error, the following negative
|
|
|
|
* error code is returned.
|
|
|
|
*
|
|
|
|
* %-ENOMEM - Insufficient memory available.
|
|
|
|
*
|
|
|
|
* %-EIO - I/O error
|
|
|
|
*
|
|
|
|
* %-ENOENT - no block exists in the range.
|
|
|
|
*/
|
|
|
|
static int nilfs_cpfile_find_checkpoint_block(struct inode *cpfile,
|
|
|
|
__u64 start_cno, __u64 end_cno,
|
|
|
|
__u64 *cnop,
|
|
|
|
struct buffer_head **bhp)
|
|
|
|
{
|
|
|
|
unsigned long start, end, blkoff;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
if (unlikely(start_cno > end_cno))
|
|
|
|
return -ENOENT;
|
|
|
|
|
|
|
|
start = nilfs_cpfile_get_blkoff(cpfile, start_cno);
|
|
|
|
end = nilfs_cpfile_get_blkoff(cpfile, end_cno);
|
|
|
|
|
|
|
|
ret = nilfs_mdt_find_block(cpfile, start, end, &blkoff, bhp);
|
|
|
|
if (!ret)
|
|
|
|
*cnop = (blkoff == start) ? start_cno :
|
|
|
|
nilfs_cpfile_first_checkpoint_in_block(cpfile, blkoff);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-04-07 04:01:31 +02:00
|
|
|
static inline int nilfs_cpfile_delete_checkpoint_block(struct inode *cpfile,
|
|
|
|
__u64 cno)
|
|
|
|
{
|
|
|
|
return nilfs_mdt_delete_block(cpfile,
|
|
|
|
nilfs_cpfile_get_blkoff(cpfile, cno));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nilfs_cpfile_get_checkpoint - get a checkpoint
|
|
|
|
* @cpfile: inode of checkpoint file
|
|
|
|
* @cno: checkpoint number
|
|
|
|
* @create: create flag
|
|
|
|
* @cpp: pointer to a checkpoint
|
|
|
|
* @bhp: pointer to a buffer head
|
|
|
|
*
|
|
|
|
* Description: nilfs_cpfile_get_checkpoint() acquires the checkpoint
|
|
|
|
* specified by @cno. A new checkpoint will be created if @cno is the current
|
|
|
|
* checkpoint number and @create is nonzero.
|
|
|
|
*
|
|
|
|
* Return Value: On success, 0 is returned, and the checkpoint and the
|
|
|
|
* buffer head of the buffer on which the checkpoint is located are stored in
|
|
|
|
* the place pointed by @cpp and @bhp, respectively. On error, one of the
|
|
|
|
* following negative error codes is returned.
|
|
|
|
*
|
|
|
|
* %-EIO - I/O error.
|
|
|
|
*
|
|
|
|
* %-ENOMEM - Insufficient amount of memory available.
|
|
|
|
*
|
|
|
|
* %-ENOENT - No such checkpoint.
|
2009-04-07 04:01:55 +02:00
|
|
|
*
|
|
|
|
* %-EINVAL - invalid checkpoint.
|
2009-04-07 04:01:31 +02:00
|
|
|
*/
|
|
|
|
int nilfs_cpfile_get_checkpoint(struct inode *cpfile,
|
|
|
|
__u64 cno,
|
|
|
|
int create,
|
|
|
|
struct nilfs_checkpoint **cpp,
|
|
|
|
struct buffer_head **bhp)
|
|
|
|
{
|
|
|
|
struct buffer_head *header_bh, *cp_bh;
|
|
|
|
struct nilfs_cpfile_header *header;
|
|
|
|
struct nilfs_checkpoint *cp;
|
|
|
|
void *kaddr;
|
|
|
|
int ret;
|
|
|
|
|
2009-04-07 04:01:55 +02:00
|
|
|
if (unlikely(cno < 1 || cno > nilfs_mdt_cno(cpfile) ||
|
|
|
|
(cno < nilfs_mdt_cno(cpfile) && create)))
|
|
|
|
return -EINVAL;
|
2009-04-07 04:01:31 +02:00
|
|
|
|
|
|
|
down_write(&NILFS_MDT(cpfile)->mi_sem);
|
|
|
|
|
|
|
|
ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out_sem;
|
|
|
|
ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, create, &cp_bh);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out_header;
|
|
|
|
kaddr = kmap(cp_bh->b_page);
|
|
|
|
cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
|
|
|
|
if (nilfs_checkpoint_invalid(cp)) {
|
|
|
|
if (!create) {
|
|
|
|
kunmap(cp_bh->b_page);
|
|
|
|
brelse(cp_bh);
|
|
|
|
ret = -ENOENT;
|
|
|
|
goto out_header;
|
|
|
|
}
|
|
|
|
/* a newly-created checkpoint */
|
|
|
|
nilfs_checkpoint_clear_invalid(cp);
|
|
|
|
if (!nilfs_cpfile_is_in_first(cpfile, cno))
|
|
|
|
nilfs_cpfile_block_add_valid_checkpoints(cpfile, cp_bh,
|
|
|
|
kaddr, 1);
|
2011-05-05 05:56:51 +02:00
|
|
|
mark_buffer_dirty(cp_bh);
|
2009-04-07 04:01:31 +02:00
|
|
|
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(header_bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
header = nilfs_cpfile_block_get_header(cpfile, header_bh,
|
|
|
|
kaddr);
|
|
|
|
le64_add_cpu(&header->ch_ncheckpoints, 1);
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2011-05-05 05:56:51 +02:00
|
|
|
mark_buffer_dirty(header_bh);
|
2009-04-07 04:01:31 +02:00
|
|
|
nilfs_mdt_mark_dirty(cpfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cpp != NULL)
|
|
|
|
*cpp = cp;
|
|
|
|
*bhp = cp_bh;
|
|
|
|
|
|
|
|
out_header:
|
|
|
|
brelse(header_bh);
|
|
|
|
|
|
|
|
out_sem:
|
|
|
|
up_write(&NILFS_MDT(cpfile)->mi_sem);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nilfs_cpfile_put_checkpoint - put a checkpoint
|
|
|
|
* @cpfile: inode of checkpoint file
|
|
|
|
* @cno: checkpoint number
|
|
|
|
* @bh: buffer head
|
|
|
|
*
|
|
|
|
* Description: nilfs_cpfile_put_checkpoint() releases the checkpoint
|
|
|
|
* specified by @cno. @bh must be the buffer head which has been returned by
|
|
|
|
* a previous call to nilfs_cpfile_get_checkpoint() with @cno.
|
|
|
|
*/
|
|
|
|
void nilfs_cpfile_put_checkpoint(struct inode *cpfile, __u64 cno,
|
|
|
|
struct buffer_head *bh)
|
|
|
|
{
|
|
|
|
kunmap(bh->b_page);
|
|
|
|
brelse(bh);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nilfs_cpfile_delete_checkpoints - delete checkpoints
|
|
|
|
* @cpfile: inode of checkpoint file
|
|
|
|
* @start: start checkpoint number
|
|
|
|
* @end: end checkpoint numer
|
|
|
|
*
|
|
|
|
* Description: nilfs_cpfile_delete_checkpoints() deletes the checkpoints in
|
|
|
|
* the period from @start to @end, excluding @end itself. The checkpoints
|
|
|
|
* which have been already deleted are ignored.
|
|
|
|
*
|
|
|
|
* Return Value: On success, 0 is returned. On error, one of the following
|
|
|
|
* negative error codes is returned.
|
|
|
|
*
|
|
|
|
* %-EIO - I/O error.
|
|
|
|
*
|
|
|
|
* %-ENOMEM - Insufficient amount of memory available.
|
|
|
|
*
|
|
|
|
* %-EINVAL - invalid checkpoints.
|
|
|
|
*/
|
|
|
|
int nilfs_cpfile_delete_checkpoints(struct inode *cpfile,
|
|
|
|
__u64 start,
|
|
|
|
__u64 end)
|
|
|
|
{
|
|
|
|
struct buffer_head *header_bh, *cp_bh;
|
|
|
|
struct nilfs_cpfile_header *header;
|
|
|
|
struct nilfs_checkpoint *cp;
|
|
|
|
size_t cpsz = NILFS_MDT(cpfile)->mi_entry_size;
|
|
|
|
__u64 cno;
|
|
|
|
void *kaddr;
|
|
|
|
unsigned long tnicps;
|
2012-07-30 23:42:05 +02:00
|
|
|
int ret, ncps, nicps, nss, count, i;
|
2009-04-07 04:01:31 +02:00
|
|
|
|
2009-04-07 04:01:55 +02:00
|
|
|
if (unlikely(start == 0 || start > end)) {
|
2016-08-02 23:05:10 +02:00
|
|
|
nilfs_msg(cpfile->i_sb, KERN_ERR,
|
|
|
|
"cannot delete checkpoints: invalid range [%llu, %llu)",
|
|
|
|
(unsigned long long)start, (unsigned long long)end);
|
2009-04-07 04:01:55 +02:00
|
|
|
return -EINVAL;
|
2009-04-07 04:01:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
down_write(&NILFS_MDT(cpfile)->mi_sem);
|
|
|
|
|
|
|
|
ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out_sem;
|
|
|
|
tnicps = 0;
|
2012-07-30 23:42:05 +02:00
|
|
|
nss = 0;
|
2009-04-07 04:01:31 +02:00
|
|
|
|
|
|
|
for (cno = start; cno < end; cno += ncps) {
|
|
|
|
ncps = nilfs_cpfile_checkpoints_in_block(cpfile, cno, end);
|
|
|
|
ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
|
|
|
|
if (ret < 0) {
|
|
|
|
if (ret != -ENOENT)
|
2009-07-04 16:00:53 +02:00
|
|
|
break;
|
2009-04-07 04:01:31 +02:00
|
|
|
/* skip hole */
|
|
|
|
ret = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(cp_bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
cp = nilfs_cpfile_block_get_checkpoint(
|
|
|
|
cpfile, cno, cp_bh, kaddr);
|
|
|
|
nicps = 0;
|
|
|
|
for (i = 0; i < ncps; i++, cp = (void *)cp + cpsz) {
|
2012-07-30 23:42:05 +02:00
|
|
|
if (nilfs_checkpoint_snapshot(cp)) {
|
|
|
|
nss++;
|
|
|
|
} else if (!nilfs_checkpoint_invalid(cp)) {
|
2009-04-07 04:01:31 +02:00
|
|
|
nilfs_checkpoint_set_invalid(cp);
|
|
|
|
nicps++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (nicps > 0) {
|
|
|
|
tnicps += nicps;
|
2011-05-05 05:56:51 +02:00
|
|
|
mark_buffer_dirty(cp_bh);
|
2009-04-07 04:01:31 +02:00
|
|
|
nilfs_mdt_mark_dirty(cpfile);
|
2009-12-06 07:43:56 +01:00
|
|
|
if (!nilfs_cpfile_is_in_first(cpfile, cno)) {
|
|
|
|
count =
|
|
|
|
nilfs_cpfile_block_sub_valid_checkpoints(
|
|
|
|
cpfile, cp_bh, kaddr, nicps);
|
|
|
|
if (count == 0) {
|
|
|
|
/* make hole */
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-12-06 07:43:56 +01:00
|
|
|
brelse(cp_bh);
|
|
|
|
ret =
|
|
|
|
nilfs_cpfile_delete_checkpoint_block(
|
|
|
|
cpfile, cno);
|
|
|
|
if (ret == 0)
|
|
|
|
continue;
|
2016-08-02 23:05:10 +02:00
|
|
|
nilfs_msg(cpfile->i_sb, KERN_ERR,
|
|
|
|
"error %d deleting checkpoint block",
|
|
|
|
ret);
|
2009-12-06 07:43:56 +01:00
|
|
|
break;
|
|
|
|
}
|
2009-04-07 04:01:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
brelse(cp_bh);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tnicps > 0) {
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(header_bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
header = nilfs_cpfile_block_get_header(cpfile, header_bh,
|
|
|
|
kaddr);
|
2009-04-07 04:01:32 +02:00
|
|
|
le64_add_cpu(&header->ch_ncheckpoints, -(u64)tnicps);
|
2011-05-05 05:56:51 +02:00
|
|
|
mark_buffer_dirty(header_bh);
|
2009-04-07 04:01:31 +02:00
|
|
|
nilfs_mdt_mark_dirty(cpfile);
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
}
|
2009-05-30 14:50:58 +02:00
|
|
|
|
2009-04-07 04:01:31 +02:00
|
|
|
brelse(header_bh);
|
2012-07-30 23:42:05 +02:00
|
|
|
if (nss > 0)
|
|
|
|
ret = -EBUSY;
|
2009-04-07 04:01:31 +02:00
|
|
|
|
|
|
|
out_sem:
|
|
|
|
up_write(&NILFS_MDT(cpfile)->mi_sem);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void nilfs_cpfile_checkpoint_to_cpinfo(struct inode *cpfile,
|
|
|
|
struct nilfs_checkpoint *cp,
|
|
|
|
struct nilfs_cpinfo *ci)
|
|
|
|
{
|
|
|
|
ci->ci_flags = le32_to_cpu(cp->cp_flags);
|
|
|
|
ci->ci_cno = le64_to_cpu(cp->cp_cno);
|
|
|
|
ci->ci_create = le64_to_cpu(cp->cp_create);
|
|
|
|
ci->ci_nblk_inc = le64_to_cpu(cp->cp_nblk_inc);
|
|
|
|
ci->ci_inodes_count = le64_to_cpu(cp->cp_inodes_count);
|
|
|
|
ci->ci_blocks_count = le64_to_cpu(cp->cp_blocks_count);
|
|
|
|
ci->ci_next = le64_to_cpu(cp->cp_snapshot_list.ssl_next);
|
|
|
|
}
|
|
|
|
|
2009-04-07 04:01:50 +02:00
|
|
|
static ssize_t nilfs_cpfile_do_get_cpinfo(struct inode *cpfile, __u64 *cnop,
|
2016-05-24 01:23:39 +02:00
|
|
|
void *buf, unsigned int cisz,
|
|
|
|
size_t nci)
|
2009-04-07 04:01:31 +02:00
|
|
|
{
|
|
|
|
struct nilfs_checkpoint *cp;
|
2009-05-11 20:58:47 +02:00
|
|
|
struct nilfs_cpinfo *ci = buf;
|
2009-04-07 04:01:31 +02:00
|
|
|
struct buffer_head *bh;
|
|
|
|
size_t cpsz = NILFS_MDT(cpfile)->mi_entry_size;
|
2009-04-07 04:01:50 +02:00
|
|
|
__u64 cur_cno = nilfs_mdt_cno(cpfile), cno = *cnop;
|
2009-04-07 04:01:31 +02:00
|
|
|
void *kaddr;
|
|
|
|
int n, ret;
|
|
|
|
int ncps, i;
|
|
|
|
|
2009-04-07 04:01:55 +02:00
|
|
|
if (cno == 0)
|
|
|
|
return -ENOENT; /* checkpoint number 0 is invalid */
|
2009-04-07 04:01:31 +02:00
|
|
|
down_read(&NILFS_MDT(cpfile)->mi_sem);
|
|
|
|
|
2015-04-16 21:46:42 +02:00
|
|
|
for (n = 0; n < nci; cno += ncps) {
|
|
|
|
ret = nilfs_cpfile_find_checkpoint_block(
|
|
|
|
cpfile, cno, cur_cno - 1, &cno, &bh);
|
2009-04-07 04:01:31 +02:00
|
|
|
if (ret < 0) {
|
2015-04-16 21:46:42 +02:00
|
|
|
if (likely(ret == -ENOENT))
|
|
|
|
break;
|
|
|
|
goto out;
|
2009-04-07 04:01:31 +02:00
|
|
|
}
|
2015-04-16 21:46:42 +02:00
|
|
|
ncps = nilfs_cpfile_checkpoints_in_block(cpfile, cno, cur_cno);
|
2009-04-07 04:01:31 +02:00
|
|
|
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, bh, kaddr);
|
|
|
|
for (i = 0; i < ncps && n < nci; i++, cp = (void *)cp + cpsz) {
|
2009-05-11 20:58:47 +02:00
|
|
|
if (!nilfs_checkpoint_invalid(cp)) {
|
|
|
|
nilfs_cpfile_checkpoint_to_cpinfo(cpfile, cp,
|
|
|
|
ci);
|
|
|
|
ci = (void *)ci + cisz;
|
|
|
|
n++;
|
|
|
|
}
|
2009-04-07 04:01:31 +02:00
|
|
|
}
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
brelse(bh);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = n;
|
2009-05-11 20:58:47 +02:00
|
|
|
if (n > 0) {
|
|
|
|
ci = (void *)ci - cisz;
|
|
|
|
*cnop = ci->ci_cno + 1;
|
|
|
|
}
|
2009-04-07 04:01:31 +02:00
|
|
|
|
|
|
|
out:
|
|
|
|
up_read(&NILFS_MDT(cpfile)->mi_sem);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-04-07 04:01:47 +02:00
|
|
|
static ssize_t nilfs_cpfile_do_get_ssinfo(struct inode *cpfile, __u64 *cnop,
|
2016-05-24 01:23:39 +02:00
|
|
|
void *buf, unsigned int cisz,
|
|
|
|
size_t nci)
|
2009-04-07 04:01:31 +02:00
|
|
|
{
|
|
|
|
struct buffer_head *bh;
|
|
|
|
struct nilfs_cpfile_header *header;
|
|
|
|
struct nilfs_checkpoint *cp;
|
2009-05-11 20:58:47 +02:00
|
|
|
struct nilfs_cpinfo *ci = buf;
|
2009-04-07 04:01:47 +02:00
|
|
|
__u64 curr = *cnop, next;
|
2009-04-07 04:01:31 +02:00
|
|
|
unsigned long curr_blkoff, next_blkoff;
|
|
|
|
void *kaddr;
|
2009-04-07 04:01:48 +02:00
|
|
|
int n = 0, ret;
|
2009-04-07 04:01:31 +02:00
|
|
|
|
|
|
|
down_read(&NILFS_MDT(cpfile)->mi_sem);
|
|
|
|
|
2009-04-07 04:01:47 +02:00
|
|
|
if (curr == 0) {
|
2009-04-07 04:01:31 +02:00
|
|
|
ret = nilfs_cpfile_get_header_block(cpfile, &bh);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out;
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
header = nilfs_cpfile_block_get_header(cpfile, bh, kaddr);
|
|
|
|
curr = le64_to_cpu(header->ch_snapshot_list.ssl_next);
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
brelse(bh);
|
|
|
|
if (curr == 0) {
|
|
|
|
ret = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
2009-04-07 04:01:47 +02:00
|
|
|
} else if (unlikely(curr == ~(__u64)0)) {
|
|
|
|
ret = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2009-04-07 04:01:31 +02:00
|
|
|
curr_blkoff = nilfs_cpfile_get_blkoff(cpfile, curr);
|
|
|
|
ret = nilfs_cpfile_get_checkpoint_block(cpfile, curr, 0, &bh);
|
2009-04-07 04:01:48 +02:00
|
|
|
if (unlikely(ret < 0)) {
|
|
|
|
if (ret == -ENOENT)
|
|
|
|
ret = 0; /* No snapshots (started from a hole block) */
|
2009-04-07 04:01:31 +02:00
|
|
|
goto out;
|
2009-04-07 04:01:48 +02:00
|
|
|
}
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(bh->b_page);
|
2009-04-07 04:01:48 +02:00
|
|
|
while (n < nci) {
|
|
|
|
cp = nilfs_cpfile_block_get_checkpoint(cpfile, curr, bh, kaddr);
|
|
|
|
curr = ~(__u64)0; /* Terminator */
|
|
|
|
if (unlikely(nilfs_checkpoint_invalid(cp) ||
|
|
|
|
!nilfs_checkpoint_snapshot(cp)))
|
2009-04-07 04:01:31 +02:00
|
|
|
break;
|
2009-05-11 20:58:47 +02:00
|
|
|
nilfs_cpfile_checkpoint_to_cpinfo(cpfile, cp, ci);
|
|
|
|
ci = (void *)ci + cisz;
|
|
|
|
n++;
|
2009-04-07 04:01:48 +02:00
|
|
|
next = le64_to_cpu(cp->cp_snapshot_list.ssl_next);
|
|
|
|
if (next == 0)
|
|
|
|
break; /* reach end of the snapshot list */
|
|
|
|
|
2009-04-07 04:01:31 +02:00
|
|
|
next_blkoff = nilfs_cpfile_get_blkoff(cpfile, next);
|
|
|
|
if (curr_blkoff != next_blkoff) {
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
brelse(bh);
|
|
|
|
ret = nilfs_cpfile_get_checkpoint_block(cpfile, next,
|
|
|
|
0, &bh);
|
2009-04-07 04:01:48 +02:00
|
|
|
if (unlikely(ret < 0)) {
|
|
|
|
WARN_ON(ret == -ENOENT);
|
2009-04-07 04:01:31 +02:00
|
|
|
goto out;
|
2009-04-07 04:01:48 +02:00
|
|
|
}
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
}
|
|
|
|
curr = next;
|
|
|
|
curr_blkoff = next_blkoff;
|
|
|
|
}
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
brelse(bh);
|
2009-04-07 04:01:47 +02:00
|
|
|
*cnop = curr;
|
2009-04-07 04:01:31 +02:00
|
|
|
ret = n;
|
|
|
|
|
|
|
|
out:
|
|
|
|
up_read(&NILFS_MDT(cpfile)->mi_sem);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nilfs_cpfile_get_cpinfo -
|
|
|
|
* @cpfile:
|
|
|
|
* @cno:
|
|
|
|
* @ci:
|
|
|
|
* @nci:
|
|
|
|
*/
|
2009-04-07 04:01:47 +02:00
|
|
|
|
|
|
|
ssize_t nilfs_cpfile_get_cpinfo(struct inode *cpfile, __u64 *cnop, int mode,
|
2016-05-24 01:23:39 +02:00
|
|
|
void *buf, unsigned int cisz, size_t nci)
|
2009-04-07 04:01:31 +02:00
|
|
|
{
|
|
|
|
switch (mode) {
|
|
|
|
case NILFS_CHECKPOINT:
|
2009-05-11 20:58:47 +02:00
|
|
|
return nilfs_cpfile_do_get_cpinfo(cpfile, cnop, buf, cisz, nci);
|
2009-04-07 04:01:31 +02:00
|
|
|
case NILFS_SNAPSHOT:
|
2009-05-11 20:58:47 +02:00
|
|
|
return nilfs_cpfile_do_get_ssinfo(cpfile, cnop, buf, cisz, nci);
|
2009-04-07 04:01:31 +02:00
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nilfs_cpfile_delete_checkpoint -
|
|
|
|
* @cpfile:
|
|
|
|
* @cno:
|
|
|
|
*/
|
|
|
|
int nilfs_cpfile_delete_checkpoint(struct inode *cpfile, __u64 cno)
|
|
|
|
{
|
|
|
|
struct nilfs_cpinfo ci;
|
2009-04-07 04:01:50 +02:00
|
|
|
__u64 tcno = cno;
|
2009-04-07 04:01:31 +02:00
|
|
|
ssize_t nci;
|
|
|
|
|
2009-05-11 20:58:47 +02:00
|
|
|
nci = nilfs_cpfile_do_get_cpinfo(cpfile, &tcno, &ci, sizeof(ci), 1);
|
2009-04-07 04:01:31 +02:00
|
|
|
if (nci < 0)
|
|
|
|
return nci;
|
|
|
|
else if (nci == 0 || ci.ci_cno != cno)
|
|
|
|
return -ENOENT;
|
2009-05-30 12:08:09 +02:00
|
|
|
else if (nilfs_cpinfo_snapshot(&ci))
|
|
|
|
return -EBUSY;
|
2009-04-07 04:01:31 +02:00
|
|
|
|
|
|
|
return nilfs_cpfile_delete_checkpoints(cpfile, cno, cno + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct nilfs_snapshot_list *
|
|
|
|
nilfs_cpfile_block_get_snapshot_list(const struct inode *cpfile,
|
|
|
|
__u64 cno,
|
|
|
|
struct buffer_head *bh,
|
|
|
|
void *kaddr)
|
|
|
|
{
|
|
|
|
struct nilfs_cpfile_header *header;
|
|
|
|
struct nilfs_checkpoint *cp;
|
|
|
|
struct nilfs_snapshot_list *list;
|
|
|
|
|
|
|
|
if (cno != 0) {
|
|
|
|
cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, bh, kaddr);
|
|
|
|
list = &cp->cp_snapshot_list;
|
|
|
|
} else {
|
|
|
|
header = nilfs_cpfile_block_get_header(cpfile, bh, kaddr);
|
|
|
|
list = &header->ch_snapshot_list;
|
|
|
|
}
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int nilfs_cpfile_set_snapshot(struct inode *cpfile, __u64 cno)
|
|
|
|
{
|
|
|
|
struct buffer_head *header_bh, *curr_bh, *prev_bh, *cp_bh;
|
|
|
|
struct nilfs_cpfile_header *header;
|
|
|
|
struct nilfs_checkpoint *cp;
|
|
|
|
struct nilfs_snapshot_list *list;
|
|
|
|
__u64 curr, prev;
|
|
|
|
unsigned long curr_blkoff, prev_blkoff;
|
|
|
|
void *kaddr;
|
|
|
|
int ret;
|
|
|
|
|
2009-04-07 04:01:55 +02:00
|
|
|
if (cno == 0)
|
|
|
|
return -ENOENT; /* checkpoint number 0 is invalid */
|
2009-04-07 04:01:31 +02:00
|
|
|
down_write(&NILFS_MDT(cpfile)->mi_sem);
|
|
|
|
|
|
|
|
ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out_sem;
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(cp_bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
|
|
|
|
if (nilfs_checkpoint_invalid(cp)) {
|
|
|
|
ret = -ENOENT;
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
goto out_cp;
|
|
|
|
}
|
|
|
|
if (nilfs_checkpoint_snapshot(cp)) {
|
|
|
|
ret = 0;
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
goto out_cp;
|
|
|
|
}
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
|
|
|
|
ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out_cp;
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(header_bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
header = nilfs_cpfile_block_get_header(cpfile, header_bh, kaddr);
|
|
|
|
list = &header->ch_snapshot_list;
|
|
|
|
curr_bh = header_bh;
|
|
|
|
get_bh(curr_bh);
|
|
|
|
curr = 0;
|
|
|
|
curr_blkoff = 0;
|
|
|
|
prev = le64_to_cpu(list->ssl_prev);
|
|
|
|
while (prev > cno) {
|
|
|
|
prev_blkoff = nilfs_cpfile_get_blkoff(cpfile, prev);
|
|
|
|
curr = prev;
|
|
|
|
if (curr_blkoff != prev_blkoff) {
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
brelse(curr_bh);
|
|
|
|
ret = nilfs_cpfile_get_checkpoint_block(cpfile, curr,
|
|
|
|
0, &curr_bh);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out_header;
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(curr_bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
}
|
|
|
|
curr_blkoff = prev_blkoff;
|
|
|
|
cp = nilfs_cpfile_block_get_checkpoint(
|
|
|
|
cpfile, curr, curr_bh, kaddr);
|
|
|
|
list = &cp->cp_snapshot_list;
|
|
|
|
prev = le64_to_cpu(list->ssl_prev);
|
|
|
|
}
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
|
|
|
|
if (prev != 0) {
|
|
|
|
ret = nilfs_cpfile_get_checkpoint_block(cpfile, prev, 0,
|
|
|
|
&prev_bh);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out_curr;
|
|
|
|
} else {
|
|
|
|
prev_bh = header_bh;
|
|
|
|
get_bh(prev_bh);
|
|
|
|
}
|
|
|
|
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(curr_bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
list = nilfs_cpfile_block_get_snapshot_list(
|
|
|
|
cpfile, curr, curr_bh, kaddr);
|
|
|
|
list->ssl_prev = cpu_to_le64(cno);
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(cp_bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
|
|
|
|
cp->cp_snapshot_list.ssl_next = cpu_to_le64(curr);
|
|
|
|
cp->cp_snapshot_list.ssl_prev = cpu_to_le64(prev);
|
|
|
|
nilfs_checkpoint_set_snapshot(cp);
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(prev_bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
list = nilfs_cpfile_block_get_snapshot_list(
|
|
|
|
cpfile, prev, prev_bh, kaddr);
|
|
|
|
list->ssl_next = cpu_to_le64(cno);
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(header_bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
header = nilfs_cpfile_block_get_header(cpfile, header_bh, kaddr);
|
|
|
|
le64_add_cpu(&header->ch_nsnapshots, 1);
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
|
2011-05-05 05:56:51 +02:00
|
|
|
mark_buffer_dirty(prev_bh);
|
|
|
|
mark_buffer_dirty(curr_bh);
|
|
|
|
mark_buffer_dirty(cp_bh);
|
|
|
|
mark_buffer_dirty(header_bh);
|
2009-04-07 04:01:31 +02:00
|
|
|
nilfs_mdt_mark_dirty(cpfile);
|
|
|
|
|
|
|
|
brelse(prev_bh);
|
|
|
|
|
|
|
|
out_curr:
|
|
|
|
brelse(curr_bh);
|
|
|
|
|
|
|
|
out_header:
|
|
|
|
brelse(header_bh);
|
|
|
|
|
|
|
|
out_cp:
|
|
|
|
brelse(cp_bh);
|
|
|
|
|
|
|
|
out_sem:
|
|
|
|
up_write(&NILFS_MDT(cpfile)->mi_sem);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int nilfs_cpfile_clear_snapshot(struct inode *cpfile, __u64 cno)
|
|
|
|
{
|
|
|
|
struct buffer_head *header_bh, *next_bh, *prev_bh, *cp_bh;
|
|
|
|
struct nilfs_cpfile_header *header;
|
|
|
|
struct nilfs_checkpoint *cp;
|
|
|
|
struct nilfs_snapshot_list *list;
|
|
|
|
__u64 next, prev;
|
|
|
|
void *kaddr;
|
|
|
|
int ret;
|
|
|
|
|
2009-04-07 04:01:55 +02:00
|
|
|
if (cno == 0)
|
|
|
|
return -ENOENT; /* checkpoint number 0 is invalid */
|
2009-04-07 04:01:31 +02:00
|
|
|
down_write(&NILFS_MDT(cpfile)->mi_sem);
|
|
|
|
|
|
|
|
ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out_sem;
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(cp_bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
|
|
|
|
if (nilfs_checkpoint_invalid(cp)) {
|
|
|
|
ret = -ENOENT;
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
goto out_cp;
|
|
|
|
}
|
|
|
|
if (!nilfs_checkpoint_snapshot(cp)) {
|
|
|
|
ret = 0;
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
goto out_cp;
|
|
|
|
}
|
|
|
|
|
|
|
|
list = &cp->cp_snapshot_list;
|
|
|
|
next = le64_to_cpu(list->ssl_next);
|
|
|
|
prev = le64_to_cpu(list->ssl_prev);
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
|
|
|
|
ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out_cp;
|
|
|
|
if (next != 0) {
|
|
|
|
ret = nilfs_cpfile_get_checkpoint_block(cpfile, next, 0,
|
|
|
|
&next_bh);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out_header;
|
|
|
|
} else {
|
|
|
|
next_bh = header_bh;
|
|
|
|
get_bh(next_bh);
|
|
|
|
}
|
|
|
|
if (prev != 0) {
|
|
|
|
ret = nilfs_cpfile_get_checkpoint_block(cpfile, prev, 0,
|
|
|
|
&prev_bh);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out_next;
|
|
|
|
} else {
|
|
|
|
prev_bh = header_bh;
|
|
|
|
get_bh(prev_bh);
|
|
|
|
}
|
|
|
|
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(next_bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
list = nilfs_cpfile_block_get_snapshot_list(
|
|
|
|
cpfile, next, next_bh, kaddr);
|
|
|
|
list->ssl_prev = cpu_to_le64(prev);
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(prev_bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
list = nilfs_cpfile_block_get_snapshot_list(
|
|
|
|
cpfile, prev, prev_bh, kaddr);
|
|
|
|
list->ssl_next = cpu_to_le64(next);
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(cp_bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
|
|
|
|
cp->cp_snapshot_list.ssl_next = cpu_to_le64(0);
|
|
|
|
cp->cp_snapshot_list.ssl_prev = cpu_to_le64(0);
|
|
|
|
nilfs_checkpoint_clear_snapshot(cp);
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(header_bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
header = nilfs_cpfile_block_get_header(cpfile, header_bh, kaddr);
|
|
|
|
le64_add_cpu(&header->ch_nsnapshots, -1);
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
|
2011-05-05 05:56:51 +02:00
|
|
|
mark_buffer_dirty(next_bh);
|
|
|
|
mark_buffer_dirty(prev_bh);
|
|
|
|
mark_buffer_dirty(cp_bh);
|
|
|
|
mark_buffer_dirty(header_bh);
|
2009-04-07 04:01:31 +02:00
|
|
|
nilfs_mdt_mark_dirty(cpfile);
|
|
|
|
|
|
|
|
brelse(prev_bh);
|
|
|
|
|
|
|
|
out_next:
|
|
|
|
brelse(next_bh);
|
|
|
|
|
|
|
|
out_header:
|
|
|
|
brelse(header_bh);
|
|
|
|
|
|
|
|
out_cp:
|
|
|
|
brelse(cp_bh);
|
|
|
|
|
|
|
|
out_sem:
|
|
|
|
up_write(&NILFS_MDT(cpfile)->mi_sem);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nilfs_cpfile_is_snapshot -
|
|
|
|
* @cpfile: inode of checkpoint file
|
|
|
|
* @cno: checkpoint number
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
*
|
|
|
|
* Return Value: On success, 1 is returned if the checkpoint specified by
|
|
|
|
* @cno is a snapshot, or 0 if not. On error, one of the following negative
|
|
|
|
* error codes is returned.
|
|
|
|
*
|
|
|
|
* %-EIO - I/O error.
|
|
|
|
*
|
|
|
|
* %-ENOMEM - Insufficient amount of memory available.
|
|
|
|
*
|
|
|
|
* %-ENOENT - No such checkpoint.
|
|
|
|
*/
|
|
|
|
int nilfs_cpfile_is_snapshot(struct inode *cpfile, __u64 cno)
|
|
|
|
{
|
|
|
|
struct buffer_head *bh;
|
|
|
|
struct nilfs_checkpoint *cp;
|
|
|
|
void *kaddr;
|
|
|
|
int ret;
|
|
|
|
|
2016-05-24 01:23:48 +02:00
|
|
|
/*
|
|
|
|
* CP number is invalid if it's zero or larger than the
|
|
|
|
* largest existing one.
|
|
|
|
*/
|
2009-08-12 08:17:59 +02:00
|
|
|
if (cno == 0 || cno >= nilfs_mdt_cno(cpfile))
|
|
|
|
return -ENOENT;
|
2009-04-07 04:01:31 +02:00
|
|
|
down_read(&NILFS_MDT(cpfile)->mi_sem);
|
|
|
|
|
|
|
|
ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &bh);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out;
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, bh, kaddr);
|
2009-08-12 08:17:59 +02:00
|
|
|
if (nilfs_checkpoint_invalid(cp))
|
|
|
|
ret = -ENOENT;
|
|
|
|
else
|
|
|
|
ret = nilfs_checkpoint_snapshot(cp);
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
brelse(bh);
|
|
|
|
|
|
|
|
out:
|
|
|
|
up_read(&NILFS_MDT(cpfile)->mi_sem);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nilfs_cpfile_change_cpmode - change checkpoint mode
|
|
|
|
* @cpfile: inode of checkpoint file
|
|
|
|
* @cno: checkpoint number
|
|
|
|
* @status: mode of checkpoint
|
|
|
|
*
|
|
|
|
* Description: nilfs_change_cpmode() changes the mode of the checkpoint
|
|
|
|
* specified by @cno. The mode @mode is NILFS_CHECKPOINT or NILFS_SNAPSHOT.
|
|
|
|
*
|
|
|
|
* Return Value: On success, 0 is returned. On error, one of the following
|
|
|
|
* negative error codes is returned.
|
|
|
|
*
|
|
|
|
* %-EIO - I/O error.
|
|
|
|
*
|
|
|
|
* %-ENOMEM - Insufficient amount of memory available.
|
|
|
|
*
|
|
|
|
* %-ENOENT - No such checkpoint.
|
|
|
|
*/
|
|
|
|
int nilfs_cpfile_change_cpmode(struct inode *cpfile, __u64 cno, int mode)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
switch (mode) {
|
|
|
|
case NILFS_CHECKPOINT:
|
2010-09-13 04:16:34 +02:00
|
|
|
if (nilfs_checkpoint_is_mounted(cpfile->i_sb, cno))
|
|
|
|
/*
|
|
|
|
* Current implementation does not have to protect
|
|
|
|
* plain read-only mounts since they are exclusive
|
|
|
|
* with a read/write mount and are protected from the
|
|
|
|
* cleaner.
|
|
|
|
*/
|
2009-04-07 04:01:31 +02:00
|
|
|
ret = -EBUSY;
|
2010-09-13 04:16:34 +02:00
|
|
|
else
|
2009-04-07 04:01:31 +02:00
|
|
|
ret = nilfs_cpfile_clear_snapshot(cpfile, cno);
|
|
|
|
return ret;
|
|
|
|
case NILFS_SNAPSHOT:
|
|
|
|
return nilfs_cpfile_set_snapshot(cpfile, cno);
|
|
|
|
default:
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* nilfs_cpfile_get_stat - get checkpoint statistics
|
|
|
|
* @cpfile: inode of checkpoint file
|
|
|
|
* @stat: pointer to a structure of checkpoint statistics
|
|
|
|
*
|
|
|
|
* Description: nilfs_cpfile_get_stat() returns information about checkpoints.
|
|
|
|
*
|
|
|
|
* Return Value: On success, 0 is returned, and checkpoints information is
|
|
|
|
* stored in the place pointed by @stat. On error, one of the following
|
|
|
|
* negative error codes is returned.
|
|
|
|
*
|
|
|
|
* %-EIO - I/O error.
|
|
|
|
*
|
|
|
|
* %-ENOMEM - Insufficient amount of memory available.
|
|
|
|
*/
|
|
|
|
int nilfs_cpfile_get_stat(struct inode *cpfile, struct nilfs_cpstat *cpstat)
|
|
|
|
{
|
|
|
|
struct buffer_head *bh;
|
|
|
|
struct nilfs_cpfile_header *header;
|
|
|
|
void *kaddr;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
down_read(&NILFS_MDT(cpfile)->mi_sem);
|
|
|
|
|
|
|
|
ret = nilfs_cpfile_get_header_block(cpfile, &bh);
|
|
|
|
if (ret < 0)
|
|
|
|
goto out_sem;
|
2011-11-25 16:14:33 +01:00
|
|
|
kaddr = kmap_atomic(bh->b_page);
|
2009-04-07 04:01:31 +02:00
|
|
|
header = nilfs_cpfile_block_get_header(cpfile, bh, kaddr);
|
|
|
|
cpstat->cs_cno = nilfs_mdt_cno(cpfile);
|
|
|
|
cpstat->cs_ncps = le64_to_cpu(header->ch_ncheckpoints);
|
|
|
|
cpstat->cs_nsss = le64_to_cpu(header->ch_nsnapshots);
|
2011-11-25 16:14:33 +01:00
|
|
|
kunmap_atomic(kaddr);
|
2009-04-07 04:01:31 +02:00
|
|
|
brelse(bh);
|
|
|
|
|
|
|
|
out_sem:
|
|
|
|
up_read(&NILFS_MDT(cpfile)->mi_sem);
|
|
|
|
return ret;
|
|
|
|
}
|
2009-11-12 15:56:43 +01:00
|
|
|
|
2009-11-12 17:36:56 +01:00
|
|
|
/**
|
2010-09-05 05:20:59 +02:00
|
|
|
* nilfs_cpfile_read - read or get cpfile inode
|
|
|
|
* @sb: super block instance
|
2009-11-12 15:56:43 +01:00
|
|
|
* @cpsize: size of a checkpoint entry
|
2010-09-05 05:20:59 +02:00
|
|
|
* @raw_inode: on-disk cpfile inode
|
|
|
|
* @inodep: buffer to store the inode
|
2009-11-12 15:56:43 +01:00
|
|
|
*/
|
2010-09-05 05:20:59 +02:00
|
|
|
int nilfs_cpfile_read(struct super_block *sb, size_t cpsize,
|
|
|
|
struct nilfs_inode *raw_inode, struct inode **inodep)
|
2009-11-12 15:56:43 +01:00
|
|
|
{
|
|
|
|
struct inode *cpfile;
|
2010-09-05 05:20:59 +02:00
|
|
|
int err;
|
2009-11-12 15:56:43 +01:00
|
|
|
|
2014-04-03 23:50:31 +02:00
|
|
|
if (cpsize > sb->s_blocksize) {
|
2016-08-02 23:05:10 +02:00
|
|
|
nilfs_msg(sb, KERN_ERR,
|
|
|
|
"too large checkpoint size: %zu bytes", cpsize);
|
2014-04-03 23:50:31 +02:00
|
|
|
return -EINVAL;
|
|
|
|
} else if (cpsize < NILFS_MIN_CHECKPOINT_SIZE) {
|
2016-08-02 23:05:10 +02:00
|
|
|
nilfs_msg(sb, KERN_ERR,
|
|
|
|
"too small checkpoint size: %zu bytes", cpsize);
|
2014-04-03 23:50:31 +02:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2010-09-05 05:20:59 +02:00
|
|
|
cpfile = nilfs_iget_locked(sb, NULL, NILFS_CPFILE_INO);
|
|
|
|
if (unlikely(!cpfile))
|
|
|
|
return -ENOMEM;
|
|
|
|
if (!(cpfile->i_state & I_NEW))
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
err = nilfs_mdt_init(cpfile, NILFS_MDT_GFP, 0);
|
|
|
|
if (err)
|
|
|
|
goto failed;
|
|
|
|
|
|
|
|
nilfs_mdt_set_entry_size(cpfile, cpsize,
|
|
|
|
sizeof(struct nilfs_cpfile_header));
|
|
|
|
|
|
|
|
err = nilfs_read_inode_common(cpfile, raw_inode);
|
|
|
|
if (err)
|
|
|
|
goto failed;
|
|
|
|
|
|
|
|
unlock_new_inode(cpfile);
|
|
|
|
out:
|
|
|
|
*inodep = cpfile;
|
|
|
|
return 0;
|
|
|
|
failed:
|
|
|
|
iget_failed(cpfile);
|
|
|
|
return err;
|
2009-11-12 15:56:43 +01:00
|
|
|
}
|