Linux Audio

Check our new training course

Loading...
v4.17
 
   1/*
   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 *
  16 * Written by Koji Sato.
  17 */
  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 "mdt.h"
  25#include "cpfile.h"
  26
  27
  28static inline unsigned long
  29nilfs_cpfile_checkpoints_per_block(const struct inode *cpfile)
  30{
  31	return NILFS_MDT(cpfile)->mi_entries_per_block;
  32}
  33
  34/* block number from the beginning of the file */
  35static unsigned long
  36nilfs_cpfile_get_blkoff(const struct inode *cpfile, __u64 cno)
  37{
  38	__u64 tcno = cno + NILFS_MDT(cpfile)->mi_first_entry_offset - 1;
  39
  40	do_div(tcno, nilfs_cpfile_checkpoints_per_block(cpfile));
  41	return (unsigned long)tcno;
  42}
  43
  44/* offset in block */
  45static unsigned long
  46nilfs_cpfile_get_offset(const struct inode *cpfile, __u64 cno)
  47{
  48	__u64 tcno = cno + NILFS_MDT(cpfile)->mi_first_entry_offset - 1;
  49
  50	return do_div(tcno, nilfs_cpfile_checkpoints_per_block(cpfile));
  51}
  52
  53static __u64 nilfs_cpfile_first_checkpoint_in_block(const struct inode *cpfile,
  54						    unsigned long blkoff)
  55{
  56	return (__u64)nilfs_cpfile_checkpoints_per_block(cpfile) * blkoff
  57		+ 1 - NILFS_MDT(cpfile)->mi_first_entry_offset;
  58}
  59
  60static unsigned long
  61nilfs_cpfile_checkpoints_in_block(const struct inode *cpfile,
  62				  __u64 curr,
  63				  __u64 max)
  64{
  65	return min_t(__u64,
  66		     nilfs_cpfile_checkpoints_per_block(cpfile) -
  67		     nilfs_cpfile_get_offset(cpfile, curr),
  68		     max - curr);
  69}
  70
  71static inline int nilfs_cpfile_is_in_first(const struct inode *cpfile,
  72					   __u64 cno)
  73{
  74	return nilfs_cpfile_get_blkoff(cpfile, cno) == 0;
  75}
  76
  77static unsigned int
  78nilfs_cpfile_block_add_valid_checkpoints(const struct inode *cpfile,
  79					 struct buffer_head *bh,
  80					 void *kaddr,
  81					 unsigned int n)
  82{
  83	struct nilfs_checkpoint *cp = kaddr + bh_offset(bh);
  84	unsigned int count;
  85
 
 
  86	count = le32_to_cpu(cp->cp_checkpoints_count) + n;
  87	cp->cp_checkpoints_count = cpu_to_le32(count);
 
  88	return count;
  89}
  90
  91static unsigned int
  92nilfs_cpfile_block_sub_valid_checkpoints(const struct inode *cpfile,
  93					 struct buffer_head *bh,
  94					 void *kaddr,
  95					 unsigned int n)
  96{
  97	struct nilfs_checkpoint *cp = kaddr + bh_offset(bh);
  98	unsigned int count;
  99
 
 
 100	WARN_ON(le32_to_cpu(cp->cp_checkpoints_count) < n);
 101	count = le32_to_cpu(cp->cp_checkpoints_count) - n;
 102	cp->cp_checkpoints_count = cpu_to_le32(count);
 
 103	return count;
 104}
 105
 106static inline struct nilfs_cpfile_header *
 107nilfs_cpfile_block_get_header(const struct inode *cpfile,
 108			      struct buffer_head *bh,
 109			      void *kaddr)
 110{
 111	return kaddr + bh_offset(bh);
 112}
 113
 114static struct nilfs_checkpoint *
 115nilfs_cpfile_block_get_checkpoint(const struct inode *cpfile, __u64 cno,
 116				  struct buffer_head *bh,
 117				  void *kaddr)
 118{
 119	return kaddr + bh_offset(bh) + nilfs_cpfile_get_offset(cpfile, cno) *
 120		NILFS_MDT(cpfile)->mi_entry_size;
 121}
 122
 123static void nilfs_cpfile_block_init(struct inode *cpfile,
 124				    struct buffer_head *bh,
 125				    void *kaddr)
 126{
 127	struct nilfs_checkpoint *cp = kaddr + bh_offset(bh);
 128	size_t cpsz = NILFS_MDT(cpfile)->mi_entry_size;
 129	int n = nilfs_cpfile_checkpoints_per_block(cpfile);
 130
 131	while (n-- > 0) {
 132		nilfs_checkpoint_set_invalid(cp);
 133		cp = (void *)cp + cpsz;
 134	}
 135}
 136
 137static inline int nilfs_cpfile_get_header_block(struct inode *cpfile,
 138						struct buffer_head **bhp)
 
 
 
 
 
 
 
 
 
 
 139{
 140	return nilfs_mdt_get_block(cpfile, 0, 0, NULL, bhp);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 141}
 142
 143static inline int nilfs_cpfile_get_checkpoint_block(struct inode *cpfile,
 144						    __u64 cno,
 145						    int create,
 146						    struct buffer_head **bhp)
 147{
 148	return nilfs_mdt_get_block(cpfile,
 149				   nilfs_cpfile_get_blkoff(cpfile, cno),
 150				   create, nilfs_cpfile_block_init, bhp);
 151}
 152
 153/**
 154 * nilfs_cpfile_find_checkpoint_block - find and get a buffer on cpfile
 155 * @cpfile: inode of cpfile
 156 * @start_cno: start checkpoint number (inclusive)
 157 * @end_cno: end checkpoint number (inclusive)
 158 * @cnop: place to store the next checkpoint number
 159 * @bhp: place to store a pointer to buffer_head struct
 160 *
 161 * Return Value: On success, it returns 0. On error, the following negative
 162 * error code is returned.
 163 *
 164 * %-ENOMEM - Insufficient memory available.
 165 *
 166 * %-EIO - I/O error
 167 *
 168 * %-ENOENT - no block exists in the range.
 169 */
 170static int nilfs_cpfile_find_checkpoint_block(struct inode *cpfile,
 171					      __u64 start_cno, __u64 end_cno,
 172					      __u64 *cnop,
 173					      struct buffer_head **bhp)
 174{
 175	unsigned long start, end, blkoff;
 176	int ret;
 177
 178	if (unlikely(start_cno > end_cno))
 179		return -ENOENT;
 180
 181	start = nilfs_cpfile_get_blkoff(cpfile, start_cno);
 182	end = nilfs_cpfile_get_blkoff(cpfile, end_cno);
 183
 184	ret = nilfs_mdt_find_block(cpfile, start, end, &blkoff, bhp);
 185	if (!ret)
 186		*cnop = (blkoff == start) ? start_cno :
 187			nilfs_cpfile_first_checkpoint_in_block(cpfile, blkoff);
 188	return ret;
 189}
 190
 191static inline int nilfs_cpfile_delete_checkpoint_block(struct inode *cpfile,
 192						       __u64 cno)
 193{
 194	return nilfs_mdt_delete_block(cpfile,
 195				      nilfs_cpfile_get_blkoff(cpfile, cno));
 196}
 197
 198/**
 199 * nilfs_cpfile_get_checkpoint - get a checkpoint
 200 * @cpfile: inode of checkpoint file
 201 * @cno: checkpoint number
 202 * @create: create flag
 203 * @cpp: pointer to a checkpoint
 204 * @bhp: pointer to a buffer head
 205 *
 206 * Description: nilfs_cpfile_get_checkpoint() acquires the checkpoint
 207 * specified by @cno. A new checkpoint will be created if @cno is the current
 208 * checkpoint number and @create is nonzero.
 209 *
 210 * Return Value: On success, 0 is returned, and the checkpoint and the
 211 * buffer head of the buffer on which the checkpoint is located are stored in
 212 * the place pointed by @cpp and @bhp, respectively. On error, one of the
 213 * following negative error codes is returned.
 214 *
 215 * %-EIO - I/O error.
 216 *
 217 * %-ENOMEM - Insufficient amount of memory available.
 218 *
 219 * %-ENOENT - No such checkpoint.
 220 *
 221 * %-EINVAL - invalid checkpoint.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 222 */
 223int nilfs_cpfile_get_checkpoint(struct inode *cpfile,
 224				__u64 cno,
 225				int create,
 226				struct nilfs_checkpoint **cpp,
 227				struct buffer_head **bhp)
 228{
 229	struct buffer_head *header_bh, *cp_bh;
 230	struct nilfs_cpfile_header *header;
 231	struct nilfs_checkpoint *cp;
 232	void *kaddr;
 233	int ret;
 234
 235	if (unlikely(cno < 1 || cno > nilfs_mdt_cno(cpfile) ||
 236		     (cno < nilfs_mdt_cno(cpfile) && create)))
 237		return -EINVAL;
 238
 239	down_write(&NILFS_MDT(cpfile)->mi_sem);
 240
 241	ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
 242	if (ret < 0)
 243		goto out_sem;
 244	ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, create, &cp_bh);
 245	if (ret < 0)
 
 246		goto out_header;
 247	kaddr = kmap(cp_bh->b_page);
 248	cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
 
 249	if (nilfs_checkpoint_invalid(cp)) {
 250		if (!create) {
 251			kunmap(cp_bh->b_page);
 252			brelse(cp_bh);
 253			ret = -ENOENT;
 254			goto out_header;
 255		}
 256		/* a newly-created checkpoint */
 257		nilfs_checkpoint_clear_invalid(cp);
 
 258		if (!nilfs_cpfile_is_in_first(cpfile, cno))
 259			nilfs_cpfile_block_add_valid_checkpoints(cpfile, cp_bh,
 260								 kaddr, 1);
 261		mark_buffer_dirty(cp_bh);
 262
 263		kaddr = kmap_atomic(header_bh->b_page);
 264		header = nilfs_cpfile_block_get_header(cpfile, header_bh,
 265						       kaddr);
 266		le64_add_cpu(&header->ch_ncheckpoints, 1);
 267		kunmap_atomic(kaddr);
 268		mark_buffer_dirty(header_bh);
 269		nilfs_mdt_mark_dirty(cpfile);
 
 270	}
 271
 272	if (cpp != NULL)
 273		*cpp = cp;
 274	*bhp = cp_bh;
 
 275
 276 out_header:
 277	brelse(header_bh);
 278
 279 out_sem:
 280	up_write(&NILFS_MDT(cpfile)->mi_sem);
 281	return ret;
 282}
 283
 284/**
 285 * nilfs_cpfile_put_checkpoint - put a checkpoint
 286 * @cpfile: inode of checkpoint file
 287 * @cno: checkpoint number
 288 * @bh: buffer head
 289 *
 290 * Description: nilfs_cpfile_put_checkpoint() releases the checkpoint
 291 * specified by @cno. @bh must be the buffer head which has been returned by
 292 * a previous call to nilfs_cpfile_get_checkpoint() with @cno.
 
 
 
 
 
 
 
 293 */
 294void nilfs_cpfile_put_checkpoint(struct inode *cpfile, __u64 cno,
 295				 struct buffer_head *bh)
 
 296{
 297	kunmap(bh->b_page);
 298	brelse(bh);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 299}
 300
 301/**
 302 * nilfs_cpfile_delete_checkpoints - delete checkpoints
 303 * @cpfile: inode of checkpoint file
 304 * @start: start checkpoint number
 305 * @end: end checkpoint numer
 306 *
 307 * Description: nilfs_cpfile_delete_checkpoints() deletes the checkpoints in
 308 * the period from @start to @end, excluding @end itself. The checkpoints
 309 * which have been already deleted are ignored.
 310 *
 311 * Return Value: On success, 0 is returned. On error, one of the following
 312 * negative error codes is returned.
 313 *
 314 * %-EIO - I/O error.
 315 *
 316 * %-ENOMEM - Insufficient amount of memory available.
 317 *
 318 * %-EINVAL - invalid checkpoints.
 319 */
 320int nilfs_cpfile_delete_checkpoints(struct inode *cpfile,
 321				    __u64 start,
 322				    __u64 end)
 323{
 324	struct buffer_head *header_bh, *cp_bh;
 325	struct nilfs_cpfile_header *header;
 326	struct nilfs_checkpoint *cp;
 327	size_t cpsz = NILFS_MDT(cpfile)->mi_entry_size;
 328	__u64 cno;
 
 329	void *kaddr;
 330	unsigned long tnicps;
 331	int ret, ncps, nicps, nss, count, i;
 332
 333	if (unlikely(start == 0 || start > end)) {
 334		nilfs_msg(cpfile->i_sb, KERN_ERR,
 335			  "cannot delete checkpoints: invalid range [%llu, %llu)",
 336			  (unsigned long long)start, (unsigned long long)end);
 337		return -EINVAL;
 338	}
 339
 340	down_write(&NILFS_MDT(cpfile)->mi_sem);
 341
 342	ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
 343	if (ret < 0)
 344		goto out_sem;
 345	tnicps = 0;
 346	nss = 0;
 347
 348	for (cno = start; cno < end; cno += ncps) {
 349		ncps = nilfs_cpfile_checkpoints_in_block(cpfile, cno, end);
 350		ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
 351		if (ret < 0) {
 352			if (ret != -ENOENT)
 353				break;
 354			/* skip hole */
 355			ret = 0;
 356			continue;
 357		}
 358
 359		kaddr = kmap_atomic(cp_bh->b_page);
 360		cp = nilfs_cpfile_block_get_checkpoint(
 361			cpfile, cno, cp_bh, kaddr);
 362		nicps = 0;
 363		for (i = 0; i < ncps; i++, cp = (void *)cp + cpsz) {
 364			if (nilfs_checkpoint_snapshot(cp)) {
 365				nss++;
 366			} else if (!nilfs_checkpoint_invalid(cp)) {
 367				nilfs_checkpoint_set_invalid(cp);
 368				nicps++;
 369			}
 370		}
 371		if (nicps > 0) {
 372			tnicps += nicps;
 373			mark_buffer_dirty(cp_bh);
 374			nilfs_mdt_mark_dirty(cpfile);
 375			if (!nilfs_cpfile_is_in_first(cpfile, cno)) {
 376				count =
 377				  nilfs_cpfile_block_sub_valid_checkpoints(
 378						cpfile, cp_bh, kaddr, nicps);
 379				if (count == 0) {
 380					/* make hole */
 381					kunmap_atomic(kaddr);
 382					brelse(cp_bh);
 383					ret =
 384					  nilfs_cpfile_delete_checkpoint_block(
 385								   cpfile, cno);
 386					if (ret == 0)
 387						continue;
 388					nilfs_msg(cpfile->i_sb, KERN_ERR,
 389						  "error %d deleting checkpoint block",
 390						  ret);
 391					break;
 392				}
 393			}
 394		}
 395
 396		kunmap_atomic(kaddr);
 
 
 
 
 
 
 
 
 
 397		brelse(cp_bh);
 
 
 
 
 
 
 
 
 
 
 398	}
 399
 400	if (tnicps > 0) {
 401		kaddr = kmap_atomic(header_bh->b_page);
 402		header = nilfs_cpfile_block_get_header(cpfile, header_bh,
 403						       kaddr);
 404		le64_add_cpu(&header->ch_ncheckpoints, -(u64)tnicps);
 405		mark_buffer_dirty(header_bh);
 406		nilfs_mdt_mark_dirty(cpfile);
 407		kunmap_atomic(kaddr);
 408	}
 409
 410	brelse(header_bh);
 411	if (nss > 0)
 412		ret = -EBUSY;
 413
 414 out_sem:
 415	up_write(&NILFS_MDT(cpfile)->mi_sem);
 416	return ret;
 417}
 418
 419static void nilfs_cpfile_checkpoint_to_cpinfo(struct inode *cpfile,
 420					      struct nilfs_checkpoint *cp,
 421					      struct nilfs_cpinfo *ci)
 422{
 423	ci->ci_flags = le32_to_cpu(cp->cp_flags);
 424	ci->ci_cno = le64_to_cpu(cp->cp_cno);
 425	ci->ci_create = le64_to_cpu(cp->cp_create);
 426	ci->ci_nblk_inc = le64_to_cpu(cp->cp_nblk_inc);
 427	ci->ci_inodes_count = le64_to_cpu(cp->cp_inodes_count);
 428	ci->ci_blocks_count = le64_to_cpu(cp->cp_blocks_count);
 429	ci->ci_next = le64_to_cpu(cp->cp_snapshot_list.ssl_next);
 430}
 431
 432static ssize_t nilfs_cpfile_do_get_cpinfo(struct inode *cpfile, __u64 *cnop,
 433					  void *buf, unsigned int cisz,
 434					  size_t nci)
 435{
 436	struct nilfs_checkpoint *cp;
 437	struct nilfs_cpinfo *ci = buf;
 438	struct buffer_head *bh;
 439	size_t cpsz = NILFS_MDT(cpfile)->mi_entry_size;
 440	__u64 cur_cno = nilfs_mdt_cno(cpfile), cno = *cnop;
 
 441	void *kaddr;
 442	int n, ret;
 443	int ncps, i;
 444
 445	if (cno == 0)
 446		return -ENOENT; /* checkpoint number 0 is invalid */
 447	down_read(&NILFS_MDT(cpfile)->mi_sem);
 448
 449	for (n = 0; n < nci; cno += ncps) {
 450		ret = nilfs_cpfile_find_checkpoint_block(
 451			cpfile, cno, cur_cno - 1, &cno, &bh);
 452		if (ret < 0) {
 453			if (likely(ret == -ENOENT))
 454				break;
 455			goto out;
 456		}
 457		ncps = nilfs_cpfile_checkpoints_in_block(cpfile, cno, cur_cno);
 458
 459		kaddr = kmap_atomic(bh->b_page);
 460		cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, bh, kaddr);
 461		for (i = 0; i < ncps && n < nci; i++, cp = (void *)cp + cpsz) {
 462			if (!nilfs_checkpoint_invalid(cp)) {
 463				nilfs_cpfile_checkpoint_to_cpinfo(cpfile, cp,
 464								  ci);
 465				ci = (void *)ci + cisz;
 466				n++;
 467			}
 468		}
 469		kunmap_atomic(kaddr);
 470		brelse(bh);
 471	}
 472
 473	ret = n;
 474	if (n > 0) {
 475		ci = (void *)ci - cisz;
 476		*cnop = ci->ci_cno + 1;
 477	}
 478
 479 out:
 480	up_read(&NILFS_MDT(cpfile)->mi_sem);
 481	return ret;
 482}
 483
 484static ssize_t nilfs_cpfile_do_get_ssinfo(struct inode *cpfile, __u64 *cnop,
 485					  void *buf, unsigned int cisz,
 486					  size_t nci)
 487{
 488	struct buffer_head *bh;
 489	struct nilfs_cpfile_header *header;
 490	struct nilfs_checkpoint *cp;
 491	struct nilfs_cpinfo *ci = buf;
 492	__u64 curr = *cnop, next;
 493	unsigned long curr_blkoff, next_blkoff;
 494	void *kaddr;
 495	int n = 0, ret;
 496
 497	down_read(&NILFS_MDT(cpfile)->mi_sem);
 498
 499	if (curr == 0) {
 500		ret = nilfs_cpfile_get_header_block(cpfile, &bh);
 501		if (ret < 0)
 502			goto out;
 503		kaddr = kmap_atomic(bh->b_page);
 504		header = nilfs_cpfile_block_get_header(cpfile, bh, kaddr);
 505		curr = le64_to_cpu(header->ch_snapshot_list.ssl_next);
 506		kunmap_atomic(kaddr);
 507		brelse(bh);
 508		if (curr == 0) {
 509			ret = 0;
 510			goto out;
 511		}
 512	} else if (unlikely(curr == ~(__u64)0)) {
 513		ret = 0;
 514		goto out;
 515	}
 516
 517	curr_blkoff = nilfs_cpfile_get_blkoff(cpfile, curr);
 518	ret = nilfs_cpfile_get_checkpoint_block(cpfile, curr, 0, &bh);
 519	if (unlikely(ret < 0)) {
 520		if (ret == -ENOENT)
 521			ret = 0; /* No snapshots (started from a hole block) */
 522		goto out;
 523	}
 524	kaddr = kmap_atomic(bh->b_page);
 
 525	while (n < nci) {
 526		cp = nilfs_cpfile_block_get_checkpoint(cpfile, curr, bh, kaddr);
 527		curr = ~(__u64)0; /* Terminator */
 528		if (unlikely(nilfs_checkpoint_invalid(cp) ||
 529			     !nilfs_checkpoint_snapshot(cp)))
 530			break;
 531		nilfs_cpfile_checkpoint_to_cpinfo(cpfile, cp, ci);
 532		ci = (void *)ci + cisz;
 533		n++;
 534		next = le64_to_cpu(cp->cp_snapshot_list.ssl_next);
 535		if (next == 0)
 536			break; /* reach end of the snapshot list */
 537
 
 538		next_blkoff = nilfs_cpfile_get_blkoff(cpfile, next);
 539		if (curr_blkoff != next_blkoff) {
 540			kunmap_atomic(kaddr);
 541			brelse(bh);
 542			ret = nilfs_cpfile_get_checkpoint_block(cpfile, next,
 543								0, &bh);
 544			if (unlikely(ret < 0)) {
 545				WARN_ON(ret == -ENOENT);
 546				goto out;
 547			}
 548			kaddr = kmap_atomic(bh->b_page);
 549		}
 
 
 550		curr = next;
 551		curr_blkoff = next_blkoff;
 552	}
 553	kunmap_atomic(kaddr);
 554	brelse(bh);
 555	*cnop = curr;
 556	ret = n;
 557
 558 out:
 559	up_read(&NILFS_MDT(cpfile)->mi_sem);
 560	return ret;
 561}
 562
 563/**
 564 * nilfs_cpfile_get_cpinfo -
 565 * @cpfile:
 566 * @cno:
 567 * @ci:
 568 * @nci:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 569 */
 570
 571ssize_t nilfs_cpfile_get_cpinfo(struct inode *cpfile, __u64 *cnop, int mode,
 572				void *buf, unsigned int cisz, size_t nci)
 573{
 574	switch (mode) {
 575	case NILFS_CHECKPOINT:
 576		return nilfs_cpfile_do_get_cpinfo(cpfile, cnop, buf, cisz, nci);
 577	case NILFS_SNAPSHOT:
 578		return nilfs_cpfile_do_get_ssinfo(cpfile, cnop, buf, cisz, nci);
 579	default:
 580		return -EINVAL;
 581	}
 582}
 583
 584/**
 585 * nilfs_cpfile_delete_checkpoint -
 586 * @cpfile:
 587 * @cno:
 
 
 
 
 
 
 588 */
 589int nilfs_cpfile_delete_checkpoint(struct inode *cpfile, __u64 cno)
 590{
 591	struct nilfs_cpinfo ci;
 592	__u64 tcno = cno;
 593	ssize_t nci;
 594
 595	nci = nilfs_cpfile_do_get_cpinfo(cpfile, &tcno, &ci, sizeof(ci), 1);
 596	if (nci < 0)
 597		return nci;
 598	else if (nci == 0 || ci.ci_cno != cno)
 599		return -ENOENT;
 600	else if (nilfs_cpinfo_snapshot(&ci))
 601		return -EBUSY;
 602
 603	return nilfs_cpfile_delete_checkpoints(cpfile, cno, cno + 1);
 604}
 605
 606static struct nilfs_snapshot_list *
 607nilfs_cpfile_block_get_snapshot_list(const struct inode *cpfile,
 608				     __u64 cno,
 609				     struct buffer_head *bh,
 610				     void *kaddr)
 611{
 612	struct nilfs_cpfile_header *header;
 613	struct nilfs_checkpoint *cp;
 614	struct nilfs_snapshot_list *list;
 615
 616	if (cno != 0) {
 617		cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, bh, kaddr);
 618		list = &cp->cp_snapshot_list;
 619	} else {
 620		header = nilfs_cpfile_block_get_header(cpfile, bh, kaddr);
 621		list = &header->ch_snapshot_list;
 622	}
 623	return list;
 624}
 625
 626static int nilfs_cpfile_set_snapshot(struct inode *cpfile, __u64 cno)
 627{
 628	struct buffer_head *header_bh, *curr_bh, *prev_bh, *cp_bh;
 629	struct nilfs_cpfile_header *header;
 630	struct nilfs_checkpoint *cp;
 631	struct nilfs_snapshot_list *list;
 632	__u64 curr, prev;
 633	unsigned long curr_blkoff, prev_blkoff;
 634	void *kaddr;
 635	int ret;
 636
 637	if (cno == 0)
 638		return -ENOENT; /* checkpoint number 0 is invalid */
 639	down_write(&NILFS_MDT(cpfile)->mi_sem);
 640
 
 
 
 
 641	ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
 642	if (ret < 0)
 643		goto out_sem;
 644	kaddr = kmap_atomic(cp_bh->b_page);
 645	cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
 
 646	if (nilfs_checkpoint_invalid(cp)) {
 647		ret = -ENOENT;
 648		kunmap_atomic(kaddr);
 649		goto out_cp;
 650	}
 651	if (nilfs_checkpoint_snapshot(cp)) {
 652		ret = 0;
 653		kunmap_atomic(kaddr);
 654		goto out_cp;
 655	}
 656	kunmap_atomic(kaddr);
 657
 658	ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
 659	if (ret < 0)
 660		goto out_cp;
 661	kaddr = kmap_atomic(header_bh->b_page);
 662	header = nilfs_cpfile_block_get_header(cpfile, header_bh, kaddr);
 
 663	list = &header->ch_snapshot_list;
 664	curr_bh = header_bh;
 665	get_bh(curr_bh);
 666	curr = 0;
 667	curr_blkoff = 0;
 
 668	prev = le64_to_cpu(list->ssl_prev);
 669	while (prev > cno) {
 670		prev_blkoff = nilfs_cpfile_get_blkoff(cpfile, prev);
 671		curr = prev;
 
 672		if (curr_blkoff != prev_blkoff) {
 673			kunmap_atomic(kaddr);
 674			brelse(curr_bh);
 675			ret = nilfs_cpfile_get_checkpoint_block(cpfile, curr,
 676								0, &curr_bh);
 677			if (ret < 0)
 678				goto out_header;
 679			kaddr = kmap_atomic(curr_bh->b_page);
 680		}
 
 
 
 681		curr_blkoff = prev_blkoff;
 682		cp = nilfs_cpfile_block_get_checkpoint(
 683			cpfile, curr, curr_bh, kaddr);
 684		list = &cp->cp_snapshot_list;
 685		prev = le64_to_cpu(list->ssl_prev);
 686	}
 687	kunmap_atomic(kaddr);
 688
 689	if (prev != 0) {
 690		ret = nilfs_cpfile_get_checkpoint_block(cpfile, prev, 0,
 691							&prev_bh);
 692		if (ret < 0)
 693			goto out_curr;
 
 
 
 694	} else {
 695		prev_bh = header_bh;
 696		get_bh(prev_bh);
 
 697	}
 698
 699	kaddr = kmap_atomic(curr_bh->b_page);
 700	list = nilfs_cpfile_block_get_snapshot_list(
 701		cpfile, curr, curr_bh, kaddr);
 702	list->ssl_prev = cpu_to_le64(cno);
 703	kunmap_atomic(kaddr);
 704
 705	kaddr = kmap_atomic(cp_bh->b_page);
 706	cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
 
 707	cp->cp_snapshot_list.ssl_next = cpu_to_le64(curr);
 708	cp->cp_snapshot_list.ssl_prev = cpu_to_le64(prev);
 709	nilfs_checkpoint_set_snapshot(cp);
 710	kunmap_atomic(kaddr);
 711
 712	kaddr = kmap_atomic(prev_bh->b_page);
 713	list = nilfs_cpfile_block_get_snapshot_list(
 714		cpfile, prev, prev_bh, kaddr);
 715	list->ssl_next = cpu_to_le64(cno);
 716	kunmap_atomic(kaddr);
 717
 718	kaddr = kmap_atomic(header_bh->b_page);
 719	header = nilfs_cpfile_block_get_header(cpfile, header_bh, kaddr);
 720	le64_add_cpu(&header->ch_nsnapshots, 1);
 721	kunmap_atomic(kaddr);
 722
 723	mark_buffer_dirty(prev_bh);
 724	mark_buffer_dirty(curr_bh);
 725	mark_buffer_dirty(cp_bh);
 726	mark_buffer_dirty(header_bh);
 727	nilfs_mdt_mark_dirty(cpfile);
 728
 729	brelse(prev_bh);
 730
 731 out_curr:
 732	brelse(curr_bh);
 733
 734 out_header:
 735	brelse(header_bh);
 736
 737 out_cp:
 738	brelse(cp_bh);
 739
 
 
 
 740 out_sem:
 741	up_write(&NILFS_MDT(cpfile)->mi_sem);
 742	return ret;
 743}
 744
 745static int nilfs_cpfile_clear_snapshot(struct inode *cpfile, __u64 cno)
 746{
 747	struct buffer_head *header_bh, *next_bh, *prev_bh, *cp_bh;
 748	struct nilfs_cpfile_header *header;
 749	struct nilfs_checkpoint *cp;
 750	struct nilfs_snapshot_list *list;
 751	__u64 next, prev;
 752	void *kaddr;
 753	int ret;
 754
 755	if (cno == 0)
 756		return -ENOENT; /* checkpoint number 0 is invalid */
 757	down_write(&NILFS_MDT(cpfile)->mi_sem);
 758
 
 
 
 
 759	ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
 760	if (ret < 0)
 761		goto out_sem;
 762	kaddr = kmap_atomic(cp_bh->b_page);
 763	cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
 
 764	if (nilfs_checkpoint_invalid(cp)) {
 765		ret = -ENOENT;
 766		kunmap_atomic(kaddr);
 767		goto out_cp;
 768	}
 769	if (!nilfs_checkpoint_snapshot(cp)) {
 770		ret = 0;
 771		kunmap_atomic(kaddr);
 772		goto out_cp;
 773	}
 774
 775	list = &cp->cp_snapshot_list;
 776	next = le64_to_cpu(list->ssl_next);
 777	prev = le64_to_cpu(list->ssl_prev);
 778	kunmap_atomic(kaddr);
 779
 780	ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
 781	if (ret < 0)
 782		goto out_cp;
 783	if (next != 0) {
 784		ret = nilfs_cpfile_get_checkpoint_block(cpfile, next, 0,
 785							&next_bh);
 786		if (ret < 0)
 787			goto out_header;
 
 
 
 788	} else {
 789		next_bh = header_bh;
 790		get_bh(next_bh);
 
 791	}
 792	if (prev != 0) {
 793		ret = nilfs_cpfile_get_checkpoint_block(cpfile, prev, 0,
 794							&prev_bh);
 795		if (ret < 0)
 796			goto out_next;
 
 
 
 797	} else {
 798		prev_bh = header_bh;
 799		get_bh(prev_bh);
 
 800	}
 801
 802	kaddr = kmap_atomic(next_bh->b_page);
 803	list = nilfs_cpfile_block_get_snapshot_list(
 804		cpfile, next, next_bh, kaddr);
 805	list->ssl_prev = cpu_to_le64(prev);
 806	kunmap_atomic(kaddr);
 807
 808	kaddr = kmap_atomic(prev_bh->b_page);
 809	list = nilfs_cpfile_block_get_snapshot_list(
 810		cpfile, prev, prev_bh, kaddr);
 811	list->ssl_next = cpu_to_le64(next);
 812	kunmap_atomic(kaddr);
 813
 814	kaddr = kmap_atomic(cp_bh->b_page);
 815	cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, cp_bh, kaddr);
 816	cp->cp_snapshot_list.ssl_next = cpu_to_le64(0);
 817	cp->cp_snapshot_list.ssl_prev = cpu_to_le64(0);
 818	nilfs_checkpoint_clear_snapshot(cp);
 819	kunmap_atomic(kaddr);
 820
 821	kaddr = kmap_atomic(header_bh->b_page);
 822	header = nilfs_cpfile_block_get_header(cpfile, header_bh, kaddr);
 823	le64_add_cpu(&header->ch_nsnapshots, -1);
 824	kunmap_atomic(kaddr);
 825
 826	mark_buffer_dirty(next_bh);
 827	mark_buffer_dirty(prev_bh);
 828	mark_buffer_dirty(cp_bh);
 829	mark_buffer_dirty(header_bh);
 830	nilfs_mdt_mark_dirty(cpfile);
 831
 832	brelse(prev_bh);
 833
 834 out_next:
 835	brelse(next_bh);
 836
 837 out_header:
 838	brelse(header_bh);
 839
 840 out_cp:
 841	brelse(cp_bh);
 842
 
 
 
 843 out_sem:
 844	up_write(&NILFS_MDT(cpfile)->mi_sem);
 845	return ret;
 846}
 847
 848/**
 849 * nilfs_cpfile_is_snapshot -
 850 * @cpfile: inode of checkpoint file
 851 * @cno: checkpoint number
 852 *
 853 * Description:
 854 *
 855 * Return Value: On success, 1 is returned if the checkpoint specified by
 856 * @cno is a snapshot, or 0 if not. On error, one of the following negative
 857 * error codes is returned.
 858 *
 859 * %-EIO - I/O error.
 860 *
 861 * %-ENOMEM - Insufficient amount of memory available.
 862 *
 863 * %-ENOENT - No such checkpoint.
 864 */
 865int nilfs_cpfile_is_snapshot(struct inode *cpfile, __u64 cno)
 866{
 867	struct buffer_head *bh;
 868	struct nilfs_checkpoint *cp;
 869	void *kaddr;
 870	int ret;
 871
 872	/*
 873	 * CP number is invalid if it's zero or larger than the
 874	 * largest existing one.
 875	 */
 876	if (cno == 0 || cno >= nilfs_mdt_cno(cpfile))
 877		return -ENOENT;
 878	down_read(&NILFS_MDT(cpfile)->mi_sem);
 879
 880	ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &bh);
 881	if (ret < 0)
 882		goto out;
 883	kaddr = kmap_atomic(bh->b_page);
 884	cp = nilfs_cpfile_block_get_checkpoint(cpfile, cno, bh, kaddr);
 
 885	if (nilfs_checkpoint_invalid(cp))
 886		ret = -ENOENT;
 887	else
 888		ret = nilfs_checkpoint_snapshot(cp);
 889	kunmap_atomic(kaddr);
 890	brelse(bh);
 891
 892 out:
 893	up_read(&NILFS_MDT(cpfile)->mi_sem);
 894	return ret;
 895}
 896
 897/**
 898 * nilfs_cpfile_change_cpmode - change checkpoint mode
 899 * @cpfile: inode of checkpoint file
 900 * @cno: checkpoint number
 901 * @status: mode of checkpoint
 902 *
 903 * Description: nilfs_change_cpmode() changes the mode of the checkpoint
 904 * specified by @cno. The mode @mode is NILFS_CHECKPOINT or NILFS_SNAPSHOT.
 905 *
 906 * Return Value: On success, 0 is returned. On error, one of the following
 907 * negative error codes is returned.
 908 *
 909 * %-EIO - I/O error.
 910 *
 911 * %-ENOMEM - Insufficient amount of memory available.
 912 *
 913 * %-ENOENT - No such checkpoint.
 914 */
 915int nilfs_cpfile_change_cpmode(struct inode *cpfile, __u64 cno, int mode)
 916{
 917	int ret;
 918
 919	switch (mode) {
 920	case NILFS_CHECKPOINT:
 921		if (nilfs_checkpoint_is_mounted(cpfile->i_sb, cno))
 922			/*
 923			 * Current implementation does not have to protect
 924			 * plain read-only mounts since they are exclusive
 925			 * with a read/write mount and are protected from the
 926			 * cleaner.
 927			 */
 928			ret = -EBUSY;
 929		else
 930			ret = nilfs_cpfile_clear_snapshot(cpfile, cno);
 931		return ret;
 932	case NILFS_SNAPSHOT:
 933		return nilfs_cpfile_set_snapshot(cpfile, cno);
 934	default:
 935		return -EINVAL;
 936	}
 937}
 938
 939/**
 940 * nilfs_cpfile_get_stat - get checkpoint statistics
 941 * @cpfile: inode of checkpoint file
 942 * @stat: pointer to a structure of checkpoint statistics
 943 *
 944 * Description: nilfs_cpfile_get_stat() returns information about checkpoints.
 945 *
 946 * Return Value: On success, 0 is returned, and checkpoints information is
 947 * stored in the place pointed by @stat. On error, one of the following
 948 * negative error codes is returned.
 949 *
 950 * %-EIO - I/O error.
 951 *
 952 * %-ENOMEM - Insufficient amount of memory available.
 953 */
 954int nilfs_cpfile_get_stat(struct inode *cpfile, struct nilfs_cpstat *cpstat)
 955{
 956	struct buffer_head *bh;
 957	struct nilfs_cpfile_header *header;
 958	void *kaddr;
 959	int ret;
 960
 961	down_read(&NILFS_MDT(cpfile)->mi_sem);
 962
 963	ret = nilfs_cpfile_get_header_block(cpfile, &bh);
 964	if (ret < 0)
 965		goto out_sem;
 966	kaddr = kmap_atomic(bh->b_page);
 967	header = nilfs_cpfile_block_get_header(cpfile, bh, kaddr);
 968	cpstat->cs_cno = nilfs_mdt_cno(cpfile);
 969	cpstat->cs_ncps = le64_to_cpu(header->ch_ncheckpoints);
 970	cpstat->cs_nsss = le64_to_cpu(header->ch_nsnapshots);
 971	kunmap_atomic(kaddr);
 972	brelse(bh);
 973
 974 out_sem:
 975	up_read(&NILFS_MDT(cpfile)->mi_sem);
 976	return ret;
 977}
 978
 979/**
 980 * nilfs_cpfile_read - read or get cpfile inode
 981 * @sb: super block instance
 982 * @cpsize: size of a checkpoint entry
 983 * @raw_inode: on-disk cpfile inode
 984 * @inodep: buffer to store the inode
 985 */
 986int nilfs_cpfile_read(struct super_block *sb, size_t cpsize,
 987		      struct nilfs_inode *raw_inode, struct inode **inodep)
 988{
 989	struct inode *cpfile;
 990	int err;
 991
 992	if (cpsize > sb->s_blocksize) {
 993		nilfs_msg(sb, KERN_ERR,
 994			  "too large checkpoint size: %zu bytes", cpsize);
 995		return -EINVAL;
 996	} else if (cpsize < NILFS_MIN_CHECKPOINT_SIZE) {
 997		nilfs_msg(sb, KERN_ERR,
 998			  "too small checkpoint size: %zu bytes", cpsize);
 999		return -EINVAL;
1000	}
1001
1002	cpfile = nilfs_iget_locked(sb, NULL, NILFS_CPFILE_INO);
1003	if (unlikely(!cpfile))
1004		return -ENOMEM;
1005	if (!(cpfile->i_state & I_NEW))
1006		goto out;
1007
1008	err = nilfs_mdt_init(cpfile, NILFS_MDT_GFP, 0);
1009	if (err)
1010		goto failed;
1011
1012	nilfs_mdt_set_entry_size(cpfile, cpsize,
1013				 sizeof(struct nilfs_cpfile_header));
1014
1015	err = nilfs_read_inode_common(cpfile, raw_inode);
1016	if (err)
1017		goto failed;
1018
1019	unlock_new_inode(cpfile);
1020 out:
1021	*inodep = cpfile;
1022	return 0;
1023 failed:
1024	iget_failed(cpfile);
1025	return err;
1026}
v6.13.7
   1// SPDX-License-Identifier: GPL-2.0+
   2/*
   3 * NILFS checkpoint file.
   4 *
   5 * Copyright (C) 2006-2008 Nippon Telegraph and Telephone Corporation.
   6 *
 
 
 
 
 
 
 
 
 
 
   7 * Written by Koji Sato.
   8 */
   9
  10#include <linux/kernel.h>
  11#include <linux/fs.h>
  12#include <linux/string.h>
  13#include <linux/buffer_head.h>
  14#include <linux/errno.h>
  15#include "mdt.h"
  16#include "cpfile.h"
  17
  18
  19static inline unsigned long
  20nilfs_cpfile_checkpoints_per_block(const struct inode *cpfile)
  21{
  22	return NILFS_MDT(cpfile)->mi_entries_per_block;
  23}
  24
  25/* block number from the beginning of the file */
  26static unsigned long
  27nilfs_cpfile_get_blkoff(const struct inode *cpfile, __u64 cno)
  28{
  29	__u64 tcno = cno + NILFS_MDT(cpfile)->mi_first_entry_offset - 1;
  30
  31	tcno = div64_ul(tcno, nilfs_cpfile_checkpoints_per_block(cpfile));
  32	return (unsigned long)tcno;
  33}
  34
  35/* offset in block */
  36static unsigned long
  37nilfs_cpfile_get_offset(const struct inode *cpfile, __u64 cno)
  38{
  39	__u64 tcno = cno + NILFS_MDT(cpfile)->mi_first_entry_offset - 1;
  40
  41	return do_div(tcno, nilfs_cpfile_checkpoints_per_block(cpfile));
  42}
  43
  44static __u64 nilfs_cpfile_first_checkpoint_in_block(const struct inode *cpfile,
  45						    unsigned long blkoff)
  46{
  47	return (__u64)nilfs_cpfile_checkpoints_per_block(cpfile) * blkoff
  48		+ 1 - NILFS_MDT(cpfile)->mi_first_entry_offset;
  49}
  50
  51static unsigned long
  52nilfs_cpfile_checkpoints_in_block(const struct inode *cpfile,
  53				  __u64 curr,
  54				  __u64 max)
  55{
  56	return min_t(__u64,
  57		     nilfs_cpfile_checkpoints_per_block(cpfile) -
  58		     nilfs_cpfile_get_offset(cpfile, curr),
  59		     max - curr);
  60}
  61
  62static inline int nilfs_cpfile_is_in_first(const struct inode *cpfile,
  63					   __u64 cno)
  64{
  65	return nilfs_cpfile_get_blkoff(cpfile, cno) == 0;
  66}
  67
  68static unsigned int
  69nilfs_cpfile_block_add_valid_checkpoints(const struct inode *cpfile,
  70					 struct buffer_head *bh,
 
  71					 unsigned int n)
  72{
  73	struct nilfs_checkpoint *cp;
  74	unsigned int count;
  75
  76	cp = kmap_local_folio(bh->b_folio,
  77			      offset_in_folio(bh->b_folio, bh->b_data));
  78	count = le32_to_cpu(cp->cp_checkpoints_count) + n;
  79	cp->cp_checkpoints_count = cpu_to_le32(count);
  80	kunmap_local(cp);
  81	return count;
  82}
  83
  84static unsigned int
  85nilfs_cpfile_block_sub_valid_checkpoints(const struct inode *cpfile,
  86					 struct buffer_head *bh,
 
  87					 unsigned int n)
  88{
  89	struct nilfs_checkpoint *cp;
  90	unsigned int count;
  91
  92	cp = kmap_local_folio(bh->b_folio,
  93			      offset_in_folio(bh->b_folio, bh->b_data));
  94	WARN_ON(le32_to_cpu(cp->cp_checkpoints_count) < n);
  95	count = le32_to_cpu(cp->cp_checkpoints_count) - n;
  96	cp->cp_checkpoints_count = cpu_to_le32(count);
  97	kunmap_local(cp);
  98	return count;
  99}
 100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 101static void nilfs_cpfile_block_init(struct inode *cpfile,
 102				    struct buffer_head *bh,
 103				    void *from)
 104{
 105	struct nilfs_checkpoint *cp = from;
 106	size_t cpsz = NILFS_MDT(cpfile)->mi_entry_size;
 107	int n = nilfs_cpfile_checkpoints_per_block(cpfile);
 108
 109	while (n-- > 0) {
 110		nilfs_checkpoint_set_invalid(cp);
 111		cp = (void *)cp + cpsz;
 112	}
 113}
 114
 115/**
 116 * nilfs_cpfile_checkpoint_offset - calculate the byte offset of a checkpoint
 117 *                                  entry in the folio containing it
 118 * @cpfile: checkpoint file inode
 119 * @cno:    checkpoint number
 120 * @bh:     buffer head of block containing checkpoint indexed by @cno
 121 *
 122 * Return: Byte offset in the folio of the checkpoint specified by @cno.
 123 */
 124static size_t nilfs_cpfile_checkpoint_offset(const struct inode *cpfile,
 125					     __u64 cno,
 126					     struct buffer_head *bh)
 127{
 128	return offset_in_folio(bh->b_folio, bh->b_data) +
 129		nilfs_cpfile_get_offset(cpfile, cno) *
 130		NILFS_MDT(cpfile)->mi_entry_size;
 131}
 132
 133/**
 134 * nilfs_cpfile_cp_snapshot_list_offset - calculate the byte offset of a
 135 *                                        checkpoint snapshot list in the folio
 136 *                                        containing it
 137 * @cpfile: checkpoint file inode
 138 * @cno:    checkpoint number
 139 * @bh:     buffer head of block containing checkpoint indexed by @cno
 140 *
 141 * Return: Byte offset in the folio of the checkpoint snapshot list specified
 142 *         by @cno.
 143 */
 144static size_t nilfs_cpfile_cp_snapshot_list_offset(const struct inode *cpfile,
 145						   __u64 cno,
 146						   struct buffer_head *bh)
 147{
 148	return nilfs_cpfile_checkpoint_offset(cpfile, cno, bh) +
 149		offsetof(struct nilfs_checkpoint, cp_snapshot_list);
 150}
 151
 152/**
 153 * nilfs_cpfile_ch_snapshot_list_offset - calculate the byte offset of the
 154 *                                        snapshot list in the header
 155 *
 156 * Return: Byte offset in the folio of the checkpoint snapshot list
 157 */
 158static size_t nilfs_cpfile_ch_snapshot_list_offset(void)
 159{
 160	return offsetof(struct nilfs_cpfile_header, ch_snapshot_list);
 161}
 162
 163static int nilfs_cpfile_get_header_block(struct inode *cpfile,
 164					 struct buffer_head **bhp)
 165{
 166	int err = nilfs_mdt_get_block(cpfile, 0, 0, NULL, bhp);
 167
 168	if (unlikely(err == -ENOENT)) {
 169		nilfs_error(cpfile->i_sb,
 170			    "missing header block in checkpoint metadata");
 171		err = -EIO;
 172	}
 173	return err;
 174}
 175
 176static inline int nilfs_cpfile_get_checkpoint_block(struct inode *cpfile,
 177						    __u64 cno,
 178						    int create,
 179						    struct buffer_head **bhp)
 180{
 181	return nilfs_mdt_get_block(cpfile,
 182				   nilfs_cpfile_get_blkoff(cpfile, cno),
 183				   create, nilfs_cpfile_block_init, bhp);
 184}
 185
 186/**
 187 * nilfs_cpfile_find_checkpoint_block - find and get a buffer on cpfile
 188 * @cpfile: inode of cpfile
 189 * @start_cno: start checkpoint number (inclusive)
 190 * @end_cno: end checkpoint number (inclusive)
 191 * @cnop: place to store the next checkpoint number
 192 * @bhp: place to store a pointer to buffer_head struct
 193 *
 194 * Return Value: On success, it returns 0. On error, the following negative
 195 * error code is returned.
 196 *
 197 * %-ENOMEM - Insufficient memory available.
 198 *
 199 * %-EIO - I/O error
 200 *
 201 * %-ENOENT - no block exists in the range.
 202 */
 203static int nilfs_cpfile_find_checkpoint_block(struct inode *cpfile,
 204					      __u64 start_cno, __u64 end_cno,
 205					      __u64 *cnop,
 206					      struct buffer_head **bhp)
 207{
 208	unsigned long start, end, blkoff;
 209	int ret;
 210
 211	if (unlikely(start_cno > end_cno))
 212		return -ENOENT;
 213
 214	start = nilfs_cpfile_get_blkoff(cpfile, start_cno);
 215	end = nilfs_cpfile_get_blkoff(cpfile, end_cno);
 216
 217	ret = nilfs_mdt_find_block(cpfile, start, end, &blkoff, bhp);
 218	if (!ret)
 219		*cnop = (blkoff == start) ? start_cno :
 220			nilfs_cpfile_first_checkpoint_in_block(cpfile, blkoff);
 221	return ret;
 222}
 223
 224static inline int nilfs_cpfile_delete_checkpoint_block(struct inode *cpfile,
 225						       __u64 cno)
 226{
 227	return nilfs_mdt_delete_block(cpfile,
 228				      nilfs_cpfile_get_blkoff(cpfile, cno));
 229}
 230
 231/**
 232 * nilfs_cpfile_read_checkpoint - read a checkpoint entry in cpfile
 233 * @cpfile: checkpoint file inode
 234 * @cno:    number of checkpoint entry to read
 235 * @root:   nilfs root object
 236 * @ifile:  ifile's inode to read and attach to @root
 237 *
 238 * This function imports checkpoint information from the checkpoint file and
 239 * stores it to the inode file given by @ifile and the nilfs root object
 240 * given by @root.
 241 *
 242 * Return: 0 on success, or the following negative error code on failure.
 243 * * %-EINVAL	- Invalid checkpoint.
 244 * * %-ENOMEM	- Insufficient memory available.
 245 * * %-EIO	- I/O error (including metadata corruption).
 246 */
 247int nilfs_cpfile_read_checkpoint(struct inode *cpfile, __u64 cno,
 248				 struct nilfs_root *root, struct inode *ifile)
 249{
 250	struct buffer_head *cp_bh;
 251	struct nilfs_checkpoint *cp;
 252	size_t offset;
 253	int ret;
 254
 255	if (cno < 1 || cno > nilfs_mdt_cno(cpfile))
 256		return -EINVAL;
 257
 258	down_read(&NILFS_MDT(cpfile)->mi_sem);
 259	ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
 260	if (unlikely(ret < 0)) {
 261		if (ret == -ENOENT)
 262			ret = -EINVAL;
 263		goto out_sem;
 264	}
 265
 266	offset = nilfs_cpfile_checkpoint_offset(cpfile, cno, cp_bh);
 267	cp = kmap_local_folio(cp_bh->b_folio, offset);
 268	if (nilfs_checkpoint_invalid(cp)) {
 269		ret = -EINVAL;
 270		goto put_cp;
 271	}
 272
 273	ret = nilfs_read_inode_common(ifile, &cp->cp_ifile_inode);
 274	if (unlikely(ret)) {
 275		/*
 276		 * Since this inode is on a checkpoint entry, treat errors
 277		 * as metadata corruption.
 278		 */
 279		nilfs_err(cpfile->i_sb,
 280			  "ifile inode (checkpoint number=%llu) corrupted",
 281			  (unsigned long long)cno);
 282		ret = -EIO;
 283		goto put_cp;
 284	}
 285
 286	/* Configure the nilfs root object */
 287	atomic64_set(&root->inodes_count, le64_to_cpu(cp->cp_inodes_count));
 288	atomic64_set(&root->blocks_count, le64_to_cpu(cp->cp_blocks_count));
 289	root->ifile = ifile;
 290
 291put_cp:
 292	kunmap_local(cp);
 293	brelse(cp_bh);
 294out_sem:
 295	up_read(&NILFS_MDT(cpfile)->mi_sem);
 296	return ret;
 297}
 298
 299/**
 300 * nilfs_cpfile_create_checkpoint - create a checkpoint entry on cpfile
 301 * @cpfile: checkpoint file inode
 302 * @cno:    number of checkpoint to set up
 303 *
 304 * This function creates a checkpoint with the number specified by @cno on
 305 * cpfile.  If the specified checkpoint entry already exists due to a past
 306 * failure, it will be reused without returning an error.
 307 * In either case, the buffer of the block containing the checkpoint entry
 308 * and the cpfile inode are made dirty for inclusion in the write log.
 309 *
 310 * Return: 0 on success, or the following negative error code on failure.
 311 * * %-ENOMEM	- Insufficient memory available.
 312 * * %-EIO	- I/O error (including metadata corruption).
 313 * * %-EROFS	- Read only filesystem
 314 */
 315int nilfs_cpfile_create_checkpoint(struct inode *cpfile, __u64 cno)
 
 
 
 
 316{
 317	struct buffer_head *header_bh, *cp_bh;
 318	struct nilfs_cpfile_header *header;
 319	struct nilfs_checkpoint *cp;
 320	size_t offset;
 321	int ret;
 322
 323	if (WARN_ON_ONCE(cno < 1))
 324		return -EIO;
 
 325
 326	down_write(&NILFS_MDT(cpfile)->mi_sem);
 
 327	ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
 328	if (unlikely(ret < 0))
 329		goto out_sem;
 330
 331	ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 1, &cp_bh);
 332	if (unlikely(ret < 0))
 333		goto out_header;
 334
 335	offset = nilfs_cpfile_checkpoint_offset(cpfile, cno, cp_bh);
 336	cp = kmap_local_folio(cp_bh->b_folio, offset);
 337	if (nilfs_checkpoint_invalid(cp)) {
 
 
 
 
 
 
 338		/* a newly-created checkpoint */
 339		nilfs_checkpoint_clear_invalid(cp);
 340		kunmap_local(cp);
 341		if (!nilfs_cpfile_is_in_first(cpfile, cno))
 342			nilfs_cpfile_block_add_valid_checkpoints(cpfile, cp_bh,
 343								 1);
 
 344
 345		header = kmap_local_folio(header_bh->b_folio, 0);
 
 
 346		le64_add_cpu(&header->ch_ncheckpoints, 1);
 347		kunmap_local(header);
 348		mark_buffer_dirty(header_bh);
 349	} else {
 350		kunmap_local(cp);
 351	}
 352
 353	/* Force the buffer and the inode to become dirty */
 354	mark_buffer_dirty(cp_bh);
 355	brelse(cp_bh);
 356	nilfs_mdt_mark_dirty(cpfile);
 357
 358out_header:
 359	brelse(header_bh);
 360
 361out_sem:
 362	up_write(&NILFS_MDT(cpfile)->mi_sem);
 363	return ret;
 364}
 365
 366/**
 367 * nilfs_cpfile_finalize_checkpoint - fill in a checkpoint entry in cpfile
 368 * @cpfile: checkpoint file inode
 369 * @cno:    checkpoint number
 370 * @root:   nilfs root object
 371 * @blkinc: number of blocks added by this checkpoint
 372 * @ctime:  checkpoint creation time
 373 * @minor:  minor checkpoint flag
 374 *
 375 * This function completes the checkpoint entry numbered by @cno in the
 376 * cpfile with the data given by the arguments @root, @blkinc, @ctime, and
 377 * @minor.
 378 *
 379 * Return: 0 on success, or the following negative error code on failure.
 380 * * %-ENOMEM	- Insufficient memory available.
 381 * * %-EIO	- I/O error (including metadata corruption).
 382 */
 383int nilfs_cpfile_finalize_checkpoint(struct inode *cpfile, __u64 cno,
 384				     struct nilfs_root *root, __u64 blkinc,
 385				     time64_t ctime, bool minor)
 386{
 387	struct buffer_head *cp_bh;
 388	struct nilfs_checkpoint *cp;
 389	size_t offset;
 390	int ret;
 391
 392	if (WARN_ON_ONCE(cno < 1))
 393		return -EIO;
 394
 395	down_write(&NILFS_MDT(cpfile)->mi_sem);
 396	ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
 397	if (unlikely(ret < 0)) {
 398		if (ret == -ENOENT)
 399			goto error;
 400		goto out_sem;
 401	}
 402
 403	offset = nilfs_cpfile_checkpoint_offset(cpfile, cno, cp_bh);
 404	cp = kmap_local_folio(cp_bh->b_folio, offset);
 405	if (unlikely(nilfs_checkpoint_invalid(cp))) {
 406		kunmap_local(cp);
 407		brelse(cp_bh);
 408		goto error;
 409	}
 410
 411	cp->cp_snapshot_list.ssl_next = 0;
 412	cp->cp_snapshot_list.ssl_prev = 0;
 413	cp->cp_inodes_count = cpu_to_le64(atomic64_read(&root->inodes_count));
 414	cp->cp_blocks_count = cpu_to_le64(atomic64_read(&root->blocks_count));
 415	cp->cp_nblk_inc = cpu_to_le64(blkinc);
 416	cp->cp_create = cpu_to_le64(ctime);
 417	cp->cp_cno = cpu_to_le64(cno);
 418
 419	if (minor)
 420		nilfs_checkpoint_set_minor(cp);
 421	else
 422		nilfs_checkpoint_clear_minor(cp);
 423
 424	nilfs_write_inode_common(root->ifile, &cp->cp_ifile_inode);
 425	nilfs_bmap_write(NILFS_I(root->ifile)->i_bmap, &cp->cp_ifile_inode);
 426
 427	kunmap_local(cp);
 428	brelse(cp_bh);
 429out_sem:
 430	up_write(&NILFS_MDT(cpfile)->mi_sem);
 431	return ret;
 432
 433error:
 434	nilfs_error(cpfile->i_sb,
 435		    "checkpoint finalization failed due to metadata corruption.");
 436	ret = -EIO;
 437	goto out_sem;
 438}
 439
 440/**
 441 * nilfs_cpfile_delete_checkpoints - delete checkpoints
 442 * @cpfile: inode of checkpoint file
 443 * @start: start checkpoint number
 444 * @end: end checkpoint number
 445 *
 446 * Description: nilfs_cpfile_delete_checkpoints() deletes the checkpoints in
 447 * the period from @start to @end, excluding @end itself. The checkpoints
 448 * which have been already deleted are ignored.
 449 *
 450 * Return Value: On success, 0 is returned. On error, one of the following
 451 * negative error codes is returned.
 452 *
 453 * %-EIO - I/O error.
 454 *
 455 * %-ENOMEM - Insufficient amount of memory available.
 456 *
 457 * %-EINVAL - invalid checkpoints.
 458 */
 459int nilfs_cpfile_delete_checkpoints(struct inode *cpfile,
 460				    __u64 start,
 461				    __u64 end)
 462{
 463	struct buffer_head *header_bh, *cp_bh;
 464	struct nilfs_cpfile_header *header;
 465	struct nilfs_checkpoint *cp;
 466	size_t cpsz = NILFS_MDT(cpfile)->mi_entry_size;
 467	__u64 cno;
 468	size_t offset;
 469	void *kaddr;
 470	unsigned long tnicps;
 471	int ret, ncps, nicps, nss, count, i;
 472
 473	if (unlikely(start == 0 || start > end)) {
 474		nilfs_err(cpfile->i_sb,
 475			  "cannot delete checkpoints: invalid range [%llu, %llu)",
 476			  (unsigned long long)start, (unsigned long long)end);
 477		return -EINVAL;
 478	}
 479
 480	down_write(&NILFS_MDT(cpfile)->mi_sem);
 481
 482	ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
 483	if (ret < 0)
 484		goto out_sem;
 485	tnicps = 0;
 486	nss = 0;
 487
 488	for (cno = start; cno < end; cno += ncps) {
 489		ncps = nilfs_cpfile_checkpoints_in_block(cpfile, cno, end);
 490		ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
 491		if (ret < 0) {
 492			if (ret != -ENOENT)
 493				break;
 494			/* skip hole */
 495			ret = 0;
 496			continue;
 497		}
 498
 499		offset = nilfs_cpfile_checkpoint_offset(cpfile, cno, cp_bh);
 500		cp = kaddr = kmap_local_folio(cp_bh->b_folio, offset);
 
 501		nicps = 0;
 502		for (i = 0; i < ncps; i++, cp = (void *)cp + cpsz) {
 503			if (nilfs_checkpoint_snapshot(cp)) {
 504				nss++;
 505			} else if (!nilfs_checkpoint_invalid(cp)) {
 506				nilfs_checkpoint_set_invalid(cp);
 507				nicps++;
 508			}
 509		}
 510		kunmap_local(kaddr);
 511
 512		if (nicps <= 0) {
 513			brelse(cp_bh);
 514			continue;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 515		}
 516
 517		tnicps += nicps;
 518		mark_buffer_dirty(cp_bh);
 519		nilfs_mdt_mark_dirty(cpfile);
 520		if (nilfs_cpfile_is_in_first(cpfile, cno)) {
 521			brelse(cp_bh);
 522			continue;
 523		}
 524
 525		count = nilfs_cpfile_block_sub_valid_checkpoints(cpfile, cp_bh,
 526								 nicps);
 527		brelse(cp_bh);
 528		if (count)
 529			continue;
 530
 531		/* Delete the block if there are no more valid checkpoints */
 532		ret = nilfs_cpfile_delete_checkpoint_block(cpfile, cno);
 533		if (unlikely(ret)) {
 534			nilfs_err(cpfile->i_sb,
 535				  "error %d deleting checkpoint block", ret);
 536			break;
 537		}
 538	}
 539
 540	if (tnicps > 0) {
 541		header = kmap_local_folio(header_bh->b_folio, 0);
 
 
 542		le64_add_cpu(&header->ch_ncheckpoints, -(u64)tnicps);
 543		mark_buffer_dirty(header_bh);
 544		nilfs_mdt_mark_dirty(cpfile);
 545		kunmap_local(header);
 546	}
 547
 548	brelse(header_bh);
 549	if (nss > 0)
 550		ret = -EBUSY;
 551
 552 out_sem:
 553	up_write(&NILFS_MDT(cpfile)->mi_sem);
 554	return ret;
 555}
 556
 557static void nilfs_cpfile_checkpoint_to_cpinfo(struct inode *cpfile,
 558					      struct nilfs_checkpoint *cp,
 559					      struct nilfs_cpinfo *ci)
 560{
 561	ci->ci_flags = le32_to_cpu(cp->cp_flags);
 562	ci->ci_cno = le64_to_cpu(cp->cp_cno);
 563	ci->ci_create = le64_to_cpu(cp->cp_create);
 564	ci->ci_nblk_inc = le64_to_cpu(cp->cp_nblk_inc);
 565	ci->ci_inodes_count = le64_to_cpu(cp->cp_inodes_count);
 566	ci->ci_blocks_count = le64_to_cpu(cp->cp_blocks_count);
 567	ci->ci_next = le64_to_cpu(cp->cp_snapshot_list.ssl_next);
 568}
 569
 570static ssize_t nilfs_cpfile_do_get_cpinfo(struct inode *cpfile, __u64 *cnop,
 571					  void *buf, unsigned int cisz,
 572					  size_t nci)
 573{
 574	struct nilfs_checkpoint *cp;
 575	struct nilfs_cpinfo *ci = buf;
 576	struct buffer_head *bh;
 577	size_t cpsz = NILFS_MDT(cpfile)->mi_entry_size;
 578	__u64 cur_cno = nilfs_mdt_cno(cpfile), cno = *cnop;
 579	size_t offset;
 580	void *kaddr;
 581	int n, ret;
 582	int ncps, i;
 583
 584	if (cno == 0)
 585		return -ENOENT; /* checkpoint number 0 is invalid */
 586	down_read(&NILFS_MDT(cpfile)->mi_sem);
 587
 588	for (n = 0; n < nci; cno += ncps) {
 589		ret = nilfs_cpfile_find_checkpoint_block(
 590			cpfile, cno, cur_cno - 1, &cno, &bh);
 591		if (ret < 0) {
 592			if (likely(ret == -ENOENT))
 593				break;
 594			goto out;
 595		}
 596		ncps = nilfs_cpfile_checkpoints_in_block(cpfile, cno, cur_cno);
 597
 598		offset = nilfs_cpfile_checkpoint_offset(cpfile, cno, bh);
 599		cp = kaddr = kmap_local_folio(bh->b_folio, offset);
 600		for (i = 0; i < ncps && n < nci; i++, cp = (void *)cp + cpsz) {
 601			if (!nilfs_checkpoint_invalid(cp)) {
 602				nilfs_cpfile_checkpoint_to_cpinfo(cpfile, cp,
 603								  ci);
 604				ci = (void *)ci + cisz;
 605				n++;
 606			}
 607		}
 608		kunmap_local(kaddr);
 609		brelse(bh);
 610	}
 611
 612	ret = n;
 613	if (n > 0) {
 614		ci = (void *)ci - cisz;
 615		*cnop = ci->ci_cno + 1;
 616	}
 617
 618 out:
 619	up_read(&NILFS_MDT(cpfile)->mi_sem);
 620	return ret;
 621}
 622
 623static ssize_t nilfs_cpfile_do_get_ssinfo(struct inode *cpfile, __u64 *cnop,
 624					  void *buf, unsigned int cisz,
 625					  size_t nci)
 626{
 627	struct buffer_head *bh;
 628	struct nilfs_cpfile_header *header;
 629	struct nilfs_checkpoint *cp;
 630	struct nilfs_cpinfo *ci = buf;
 631	__u64 curr = *cnop, next;
 632	unsigned long curr_blkoff, next_blkoff;
 633	size_t offset;
 634	int n = 0, ret;
 635
 636	down_read(&NILFS_MDT(cpfile)->mi_sem);
 637
 638	if (curr == 0) {
 639		ret = nilfs_cpfile_get_header_block(cpfile, &bh);
 640		if (ret < 0)
 641			goto out;
 642		header = kmap_local_folio(bh->b_folio, 0);
 
 643		curr = le64_to_cpu(header->ch_snapshot_list.ssl_next);
 644		kunmap_local(header);
 645		brelse(bh);
 646		if (curr == 0) {
 647			ret = 0;
 648			goto out;
 649		}
 650	} else if (unlikely(curr == ~(__u64)0)) {
 651		ret = 0;
 652		goto out;
 653	}
 654
 655	curr_blkoff = nilfs_cpfile_get_blkoff(cpfile, curr);
 656	ret = nilfs_cpfile_get_checkpoint_block(cpfile, curr, 0, &bh);
 657	if (unlikely(ret < 0)) {
 658		if (ret == -ENOENT)
 659			ret = 0; /* No snapshots (started from a hole block) */
 660		goto out;
 661	}
 662	offset = nilfs_cpfile_checkpoint_offset(cpfile, curr, bh);
 663	cp = kmap_local_folio(bh->b_folio, offset);
 664	while (n < nci) {
 
 665		curr = ~(__u64)0; /* Terminator */
 666		if (unlikely(nilfs_checkpoint_invalid(cp) ||
 667			     !nilfs_checkpoint_snapshot(cp)))
 668			break;
 669		nilfs_cpfile_checkpoint_to_cpinfo(cpfile, cp, ci);
 670		ci = (void *)ci + cisz;
 671		n++;
 672		next = le64_to_cpu(cp->cp_snapshot_list.ssl_next);
 673		if (next == 0)
 674			break; /* reach end of the snapshot list */
 675
 676		kunmap_local(cp);
 677		next_blkoff = nilfs_cpfile_get_blkoff(cpfile, next);
 678		if (curr_blkoff != next_blkoff) {
 
 679			brelse(bh);
 680			ret = nilfs_cpfile_get_checkpoint_block(cpfile, next,
 681								0, &bh);
 682			if (unlikely(ret < 0)) {
 683				WARN_ON(ret == -ENOENT);
 684				goto out;
 685			}
 
 686		}
 687		offset = nilfs_cpfile_checkpoint_offset(cpfile, next, bh);
 688		cp = kmap_local_folio(bh->b_folio, offset);
 689		curr = next;
 690		curr_blkoff = next_blkoff;
 691	}
 692	kunmap_local(cp);
 693	brelse(bh);
 694	*cnop = curr;
 695	ret = n;
 696
 697 out:
 698	up_read(&NILFS_MDT(cpfile)->mi_sem);
 699	return ret;
 700}
 701
 702/**
 703 * nilfs_cpfile_get_cpinfo - get information on checkpoints
 704 * @cpfile: checkpoint file inode
 705 * @cnop:   place to pass a starting checkpoint number and receive a
 706 *          checkpoint number to continue the search
 707 * @mode:   mode of checkpoints that the caller wants to retrieve
 708 * @buf:    buffer for storing checkpoints' information
 709 * @cisz:   byte size of one checkpoint info item in array
 710 * @nci:    number of checkpoint info items to retrieve
 711 *
 712 * nilfs_cpfile_get_cpinfo() searches for checkpoints in @mode state
 713 * starting from the checkpoint number stored in @cnop, and stores
 714 * information about found checkpoints in @buf.
 715 * The buffer pointed to by @buf must be large enough to store information
 716 * for @nci checkpoints.  If at least one checkpoint information is
 717 * successfully retrieved, @cnop is updated to point to the checkpoint
 718 * number to continue searching.
 719 *
 720 * Return: Count of checkpoint info items stored in the output buffer on
 721 * success, or the following negative error code on failure.
 722 * * %-EINVAL	- Invalid checkpoint mode.
 723 * * %-ENOMEM	- Insufficient memory available.
 724 * * %-EIO	- I/O error (including metadata corruption).
 725 * * %-ENOENT	- Invalid checkpoint number specified.
 726 */
 727
 728ssize_t nilfs_cpfile_get_cpinfo(struct inode *cpfile, __u64 *cnop, int mode,
 729				void *buf, unsigned int cisz, size_t nci)
 730{
 731	switch (mode) {
 732	case NILFS_CHECKPOINT:
 733		return nilfs_cpfile_do_get_cpinfo(cpfile, cnop, buf, cisz, nci);
 734	case NILFS_SNAPSHOT:
 735		return nilfs_cpfile_do_get_ssinfo(cpfile, cnop, buf, cisz, nci);
 736	default:
 737		return -EINVAL;
 738	}
 739}
 740
 741/**
 742 * nilfs_cpfile_delete_checkpoint - delete a checkpoint
 743 * @cpfile: checkpoint file inode
 744 * @cno:    checkpoint number to delete
 745 *
 746 * Return: 0 on success, or the following negative error code on failure.
 747 * * %-EBUSY	- Checkpoint in use (snapshot specified).
 748 * * %-EIO	- I/O error (including metadata corruption).
 749 * * %-ENOENT	- No valid checkpoint found.
 750 * * %-ENOMEM	- Insufficient memory available.
 751 */
 752int nilfs_cpfile_delete_checkpoint(struct inode *cpfile, __u64 cno)
 753{
 754	struct nilfs_cpinfo ci;
 755	__u64 tcno = cno;
 756	ssize_t nci;
 757
 758	nci = nilfs_cpfile_do_get_cpinfo(cpfile, &tcno, &ci, sizeof(ci), 1);
 759	if (nci < 0)
 760		return nci;
 761	else if (nci == 0 || ci.ci_cno != cno)
 762		return -ENOENT;
 763	else if (nilfs_cpinfo_snapshot(&ci))
 764		return -EBUSY;
 765
 766	return nilfs_cpfile_delete_checkpoints(cpfile, cno, cno + 1);
 767}
 768
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 769static int nilfs_cpfile_set_snapshot(struct inode *cpfile, __u64 cno)
 770{
 771	struct buffer_head *header_bh, *curr_bh, *prev_bh, *cp_bh;
 772	struct nilfs_cpfile_header *header;
 773	struct nilfs_checkpoint *cp;
 774	struct nilfs_snapshot_list *list;
 775	__u64 curr, prev;
 776	unsigned long curr_blkoff, prev_blkoff;
 777	size_t offset, curr_list_offset, prev_list_offset;
 778	int ret;
 779
 780	if (cno == 0)
 781		return -ENOENT; /* checkpoint number 0 is invalid */
 782	down_write(&NILFS_MDT(cpfile)->mi_sem);
 783
 784	ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
 785	if (unlikely(ret < 0))
 786		goto out_sem;
 787
 788	ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
 789	if (ret < 0)
 790		goto out_header;
 791
 792	offset = nilfs_cpfile_checkpoint_offset(cpfile, cno, cp_bh);
 793	cp = kmap_local_folio(cp_bh->b_folio, offset);
 794	if (nilfs_checkpoint_invalid(cp)) {
 795		ret = -ENOENT;
 796		kunmap_local(cp);
 797		goto out_cp;
 798	}
 799	if (nilfs_checkpoint_snapshot(cp)) {
 800		ret = 0;
 801		kunmap_local(cp);
 802		goto out_cp;
 803	}
 804	kunmap_local(cp);
 805
 806	/*
 807	 * Find the last snapshot before the checkpoint being changed to
 808	 * snapshot mode by going backwards through the snapshot list.
 809	 * Set "prev" to its checkpoint number, or 0 if not found.
 810	 */
 811	header = kmap_local_folio(header_bh->b_folio, 0);
 812	list = &header->ch_snapshot_list;
 813	curr_bh = header_bh;
 814	get_bh(curr_bh);
 815	curr = 0;
 816	curr_blkoff = 0;
 817	curr_list_offset = nilfs_cpfile_ch_snapshot_list_offset();
 818	prev = le64_to_cpu(list->ssl_prev);
 819	while (prev > cno) {
 820		prev_blkoff = nilfs_cpfile_get_blkoff(cpfile, prev);
 821		curr = prev;
 822		kunmap_local(list);
 823		if (curr_blkoff != prev_blkoff) {
 
 824			brelse(curr_bh);
 825			ret = nilfs_cpfile_get_checkpoint_block(cpfile, curr,
 826								0, &curr_bh);
 827			if (unlikely(ret < 0))
 828				goto out_cp;
 
 829		}
 830		curr_list_offset = nilfs_cpfile_cp_snapshot_list_offset(
 831			cpfile, curr, curr_bh);
 832		list = kmap_local_folio(curr_bh->b_folio, curr_list_offset);
 833		curr_blkoff = prev_blkoff;
 
 
 
 834		prev = le64_to_cpu(list->ssl_prev);
 835	}
 836	kunmap_local(list);
 837
 838	if (prev != 0) {
 839		ret = nilfs_cpfile_get_checkpoint_block(cpfile, prev, 0,
 840							&prev_bh);
 841		if (ret < 0)
 842			goto out_curr;
 843
 844		prev_list_offset = nilfs_cpfile_cp_snapshot_list_offset(
 845			cpfile, prev, prev_bh);
 846	} else {
 847		prev_bh = header_bh;
 848		get_bh(prev_bh);
 849		prev_list_offset = nilfs_cpfile_ch_snapshot_list_offset();
 850	}
 851
 852	/* Update the list entry for the next snapshot */
 853	list = kmap_local_folio(curr_bh->b_folio, curr_list_offset);
 
 854	list->ssl_prev = cpu_to_le64(cno);
 855	kunmap_local(list);
 856
 857	/* Update the checkpoint being changed to a snapshot */
 858	offset = nilfs_cpfile_checkpoint_offset(cpfile, cno, cp_bh);
 859	cp = kmap_local_folio(cp_bh->b_folio, offset);
 860	cp->cp_snapshot_list.ssl_next = cpu_to_le64(curr);
 861	cp->cp_snapshot_list.ssl_prev = cpu_to_le64(prev);
 862	nilfs_checkpoint_set_snapshot(cp);
 863	kunmap_local(cp);
 864
 865	/* Update the list entry for the previous snapshot */
 866	list = kmap_local_folio(prev_bh->b_folio, prev_list_offset);
 
 867	list->ssl_next = cpu_to_le64(cno);
 868	kunmap_local(list);
 869
 870	/* Update the statistics in the header */
 871	header = kmap_local_folio(header_bh->b_folio, 0);
 872	le64_add_cpu(&header->ch_nsnapshots, 1);
 873	kunmap_local(header);
 874
 875	mark_buffer_dirty(prev_bh);
 876	mark_buffer_dirty(curr_bh);
 877	mark_buffer_dirty(cp_bh);
 878	mark_buffer_dirty(header_bh);
 879	nilfs_mdt_mark_dirty(cpfile);
 880
 881	brelse(prev_bh);
 882
 883 out_curr:
 884	brelse(curr_bh);
 885
 
 
 
 886 out_cp:
 887	brelse(cp_bh);
 888
 889 out_header:
 890	brelse(header_bh);
 891
 892 out_sem:
 893	up_write(&NILFS_MDT(cpfile)->mi_sem);
 894	return ret;
 895}
 896
 897static int nilfs_cpfile_clear_snapshot(struct inode *cpfile, __u64 cno)
 898{
 899	struct buffer_head *header_bh, *next_bh, *prev_bh, *cp_bh;
 900	struct nilfs_cpfile_header *header;
 901	struct nilfs_checkpoint *cp;
 902	struct nilfs_snapshot_list *list;
 903	__u64 next, prev;
 904	size_t offset, next_list_offset, prev_list_offset;
 905	int ret;
 906
 907	if (cno == 0)
 908		return -ENOENT; /* checkpoint number 0 is invalid */
 909	down_write(&NILFS_MDT(cpfile)->mi_sem);
 910
 911	ret = nilfs_cpfile_get_header_block(cpfile, &header_bh);
 912	if (unlikely(ret < 0))
 913		goto out_sem;
 914
 915	ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &cp_bh);
 916	if (ret < 0)
 917		goto out_header;
 918
 919	offset = nilfs_cpfile_checkpoint_offset(cpfile, cno, cp_bh);
 920	cp = kmap_local_folio(cp_bh->b_folio, offset);
 921	if (nilfs_checkpoint_invalid(cp)) {
 922		ret = -ENOENT;
 923		kunmap_local(cp);
 924		goto out_cp;
 925	}
 926	if (!nilfs_checkpoint_snapshot(cp)) {
 927		ret = 0;
 928		kunmap_local(cp);
 929		goto out_cp;
 930	}
 931
 932	list = &cp->cp_snapshot_list;
 933	next = le64_to_cpu(list->ssl_next);
 934	prev = le64_to_cpu(list->ssl_prev);
 935	kunmap_local(cp);
 936
 
 
 
 937	if (next != 0) {
 938		ret = nilfs_cpfile_get_checkpoint_block(cpfile, next, 0,
 939							&next_bh);
 940		if (ret < 0)
 941			goto out_cp;
 942
 943		next_list_offset = nilfs_cpfile_cp_snapshot_list_offset(
 944			cpfile, next, next_bh);
 945	} else {
 946		next_bh = header_bh;
 947		get_bh(next_bh);
 948		next_list_offset = nilfs_cpfile_ch_snapshot_list_offset();
 949	}
 950	if (prev != 0) {
 951		ret = nilfs_cpfile_get_checkpoint_block(cpfile, prev, 0,
 952							&prev_bh);
 953		if (ret < 0)
 954			goto out_next;
 955
 956		prev_list_offset = nilfs_cpfile_cp_snapshot_list_offset(
 957			cpfile, prev, prev_bh);
 958	} else {
 959		prev_bh = header_bh;
 960		get_bh(prev_bh);
 961		prev_list_offset = nilfs_cpfile_ch_snapshot_list_offset();
 962	}
 963
 964	/* Update the list entry for the next snapshot */
 965	list = kmap_local_folio(next_bh->b_folio, next_list_offset);
 
 966	list->ssl_prev = cpu_to_le64(prev);
 967	kunmap_local(list);
 968
 969	/* Update the list entry for the previous snapshot */
 970	list = kmap_local_folio(prev_bh->b_folio, prev_list_offset);
 
 971	list->ssl_next = cpu_to_le64(next);
 972	kunmap_local(list);
 973
 974	/* Update the snapshot being changed back to a plain checkpoint */
 975	cp = kmap_local_folio(cp_bh->b_folio, offset);
 976	cp->cp_snapshot_list.ssl_next = cpu_to_le64(0);
 977	cp->cp_snapshot_list.ssl_prev = cpu_to_le64(0);
 978	nilfs_checkpoint_clear_snapshot(cp);
 979	kunmap_local(cp);
 980
 981	/* Update the statistics in the header */
 982	header = kmap_local_folio(header_bh->b_folio, 0);
 983	le64_add_cpu(&header->ch_nsnapshots, -1);
 984	kunmap_local(header);
 985
 986	mark_buffer_dirty(next_bh);
 987	mark_buffer_dirty(prev_bh);
 988	mark_buffer_dirty(cp_bh);
 989	mark_buffer_dirty(header_bh);
 990	nilfs_mdt_mark_dirty(cpfile);
 991
 992	brelse(prev_bh);
 993
 994 out_next:
 995	brelse(next_bh);
 996
 
 
 
 997 out_cp:
 998	brelse(cp_bh);
 999
1000 out_header:
1001	brelse(header_bh);
1002
1003 out_sem:
1004	up_write(&NILFS_MDT(cpfile)->mi_sem);
1005	return ret;
1006}
1007
1008/**
1009 * nilfs_cpfile_is_snapshot - determine if checkpoint is a snapshot
1010 * @cpfile: inode of checkpoint file
1011 * @cno:    checkpoint number
 
 
 
 
 
 
1012 *
1013 * Return: 1 if the checkpoint specified by @cno is a snapshot, 0 if not, or
1014 * the following negative error code on failure.
1015 * * %-EIO	- I/O error (including metadata corruption).
1016 * * %-ENOENT	- No such checkpoint.
1017 * * %-ENOMEM	- Insufficient memory available.
1018 */
1019int nilfs_cpfile_is_snapshot(struct inode *cpfile, __u64 cno)
1020{
1021	struct buffer_head *bh;
1022	struct nilfs_checkpoint *cp;
1023	size_t offset;
1024	int ret;
1025
1026	/*
1027	 * CP number is invalid if it's zero or larger than the
1028	 * largest existing one.
1029	 */
1030	if (cno == 0 || cno >= nilfs_mdt_cno(cpfile))
1031		return -ENOENT;
1032	down_read(&NILFS_MDT(cpfile)->mi_sem);
1033
1034	ret = nilfs_cpfile_get_checkpoint_block(cpfile, cno, 0, &bh);
1035	if (ret < 0)
1036		goto out;
1037
1038	offset = nilfs_cpfile_checkpoint_offset(cpfile, cno, bh);
1039	cp = kmap_local_folio(bh->b_folio, offset);
1040	if (nilfs_checkpoint_invalid(cp))
1041		ret = -ENOENT;
1042	else
1043		ret = nilfs_checkpoint_snapshot(cp);
1044	kunmap_local(cp);
1045	brelse(bh);
1046
1047 out:
1048	up_read(&NILFS_MDT(cpfile)->mi_sem);
1049	return ret;
1050}
1051
1052/**
1053 * nilfs_cpfile_change_cpmode - change checkpoint mode
1054 * @cpfile: inode of checkpoint file
1055 * @cno: checkpoint number
1056 * @mode: mode of checkpoint
1057 *
1058 * Description: nilfs_change_cpmode() changes the mode of the checkpoint
1059 * specified by @cno. The mode @mode is NILFS_CHECKPOINT or NILFS_SNAPSHOT.
1060 *
1061 * Return Value: On success, 0 is returned. On error, one of the following
1062 * negative error codes is returned.
1063 *
1064 * %-EIO - I/O error.
1065 *
1066 * %-ENOMEM - Insufficient amount of memory available.
1067 *
1068 * %-ENOENT - No such checkpoint.
1069 */
1070int nilfs_cpfile_change_cpmode(struct inode *cpfile, __u64 cno, int mode)
1071{
1072	int ret;
1073
1074	switch (mode) {
1075	case NILFS_CHECKPOINT:
1076		if (nilfs_checkpoint_is_mounted(cpfile->i_sb, cno))
1077			/*
1078			 * Current implementation does not have to protect
1079			 * plain read-only mounts since they are exclusive
1080			 * with a read/write mount and are protected from the
1081			 * cleaner.
1082			 */
1083			ret = -EBUSY;
1084		else
1085			ret = nilfs_cpfile_clear_snapshot(cpfile, cno);
1086		return ret;
1087	case NILFS_SNAPSHOT:
1088		return nilfs_cpfile_set_snapshot(cpfile, cno);
1089	default:
1090		return -EINVAL;
1091	}
1092}
1093
1094/**
1095 * nilfs_cpfile_get_stat - get checkpoint statistics
1096 * @cpfile: inode of checkpoint file
1097 * @cpstat: pointer to a structure of checkpoint statistics
1098 *
1099 * Description: nilfs_cpfile_get_stat() returns information about checkpoints.
1100 *
1101 * Return Value: On success, 0 is returned, and checkpoints information is
1102 * stored in the place pointed by @cpstat. On error, one of the following
1103 * negative error codes is returned.
1104 *
1105 * %-EIO - I/O error.
1106 *
1107 * %-ENOMEM - Insufficient amount of memory available.
1108 */
1109int nilfs_cpfile_get_stat(struct inode *cpfile, struct nilfs_cpstat *cpstat)
1110{
1111	struct buffer_head *bh;
1112	struct nilfs_cpfile_header *header;
 
1113	int ret;
1114
1115	down_read(&NILFS_MDT(cpfile)->mi_sem);
1116
1117	ret = nilfs_cpfile_get_header_block(cpfile, &bh);
1118	if (ret < 0)
1119		goto out_sem;
1120	header = kmap_local_folio(bh->b_folio, 0);
 
1121	cpstat->cs_cno = nilfs_mdt_cno(cpfile);
1122	cpstat->cs_ncps = le64_to_cpu(header->ch_ncheckpoints);
1123	cpstat->cs_nsss = le64_to_cpu(header->ch_nsnapshots);
1124	kunmap_local(header);
1125	brelse(bh);
1126
1127 out_sem:
1128	up_read(&NILFS_MDT(cpfile)->mi_sem);
1129	return ret;
1130}
1131
1132/**
1133 * nilfs_cpfile_read - read or get cpfile inode
1134 * @sb: super block instance
1135 * @cpsize: size of a checkpoint entry
1136 * @raw_inode: on-disk cpfile inode
1137 * @inodep: buffer to store the inode
1138 */
1139int nilfs_cpfile_read(struct super_block *sb, size_t cpsize,
1140		      struct nilfs_inode *raw_inode, struct inode **inodep)
1141{
1142	struct inode *cpfile;
1143	int err;
1144
1145	if (cpsize > sb->s_blocksize) {
1146		nilfs_err(sb, "too large checkpoint size: %zu bytes", cpsize);
 
1147		return -EINVAL;
1148	} else if (cpsize < NILFS_MIN_CHECKPOINT_SIZE) {
1149		nilfs_err(sb, "too small checkpoint size: %zu bytes", cpsize);
 
1150		return -EINVAL;
1151	}
1152
1153	cpfile = nilfs_iget_locked(sb, NULL, NILFS_CPFILE_INO);
1154	if (unlikely(!cpfile))
1155		return -ENOMEM;
1156	if (!(cpfile->i_state & I_NEW))
1157		goto out;
1158
1159	err = nilfs_mdt_init(cpfile, NILFS_MDT_GFP, 0);
1160	if (err)
1161		goto failed;
1162
1163	nilfs_mdt_set_entry_size(cpfile, cpsize,
1164				 sizeof(struct nilfs_cpfile_header));
1165
1166	err = nilfs_read_inode_common(cpfile, raw_inode);
1167	if (err)
1168		goto failed;
1169
1170	unlock_new_inode(cpfile);
1171 out:
1172	*inodep = cpfile;
1173	return 0;
1174 failed:
1175	iget_failed(cpfile);
1176	return err;
1177}