checkpoint.c 36.7 KB
Newer Older
J
Jaegeuk Kim 已提交
1
/*
J
Jaegeuk Kim 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
 * fs/f2fs/checkpoint.c
 *
 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
 *             http://www.samsung.com/
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
#include <linux/fs.h>
#include <linux/bio.h>
#include <linux/mpage.h>
#include <linux/writeback.h>
#include <linux/blkdev.h>
#include <linux/f2fs_fs.h>
#include <linux/pagevec.h>
#include <linux/swap.h>

#include "f2fs.h"
#include "node.h"
#include "segment.h"
J
Jaegeuk Kim 已提交
23
#include "trace.h"
24
#include <trace/events/f2fs.h>
J
Jaegeuk Kim 已提交
25

J
Jaegeuk Kim 已提交
26
static struct kmem_cache *ino_entry_slab;
C
Chao Yu 已提交
27
struct kmem_cache *f2fs_inode_entry_slab;
J
Jaegeuk Kim 已提交
28

29 30
void f2fs_stop_checkpoint(struct f2fs_sb_info *sbi, bool end_io)
{
31
	set_ckpt_flags(sbi, CP_ERROR_FLAG);
32
	if (!end_io)
33
		f2fs_flush_merged_writes(sbi);
34 35
}

J
Jaegeuk Kim 已提交
36
/*
J
Jaegeuk Kim 已提交
37 38
 * We guarantee no failure on the returned page.
 */
C
Chao Yu 已提交
39
struct page *f2fs_grab_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
J
Jaegeuk Kim 已提交
40
{
G
Gu Zheng 已提交
41
	struct address_space *mapping = META_MAPPING(sbi);
J
Jaegeuk Kim 已提交
42 43
	struct page *page = NULL;
repeat:
44
	page = f2fs_grab_cache_page(mapping, index, false);
J
Jaegeuk Kim 已提交
45 46 47 48
	if (!page) {
		cond_resched();
		goto repeat;
	}
49
	f2fs_wait_on_page_writeback(page, META, true);
50 51
	if (!PageUptodate(page))
		SetPageUptodate(page);
J
Jaegeuk Kim 已提交
52 53 54
	return page;
}

J
Jaegeuk Kim 已提交
55
/*
J
Jaegeuk Kim 已提交
56 57
 * We guarantee no failure on the returned page.
 */
58 59
static struct page *__get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index,
							bool is_meta)
J
Jaegeuk Kim 已提交
60
{
G
Gu Zheng 已提交
61
	struct address_space *mapping = META_MAPPING(sbi);
J
Jaegeuk Kim 已提交
62
	struct page *page;
63
	struct f2fs_io_info fio = {
64
		.sbi = sbi,
65
		.type = META,
M
Mike Christie 已提交
66
		.op = REQ_OP_READ,
67
		.op_flags = REQ_META | REQ_PRIO,
68 69
		.old_blkaddr = index,
		.new_blkaddr = index,
70
		.encrypted_page = NULL,
71
		.is_meta = is_meta,
72
	};
73 74

	if (unlikely(!is_meta))
M
Mike Christie 已提交
75
		fio.op_flags &= ~REQ_META;
J
Jaegeuk Kim 已提交
76
repeat:
77
	page = f2fs_grab_cache_page(mapping, index, false);
J
Jaegeuk Kim 已提交
78 79 80 81
	if (!page) {
		cond_resched();
		goto repeat;
	}
82 83 84
	if (PageUptodate(page))
		goto out;

85 86
	fio.page = page;

87 88
	if (f2fs_submit_page_bio(&fio)) {
		f2fs_put_page(page, 1);
J
Jaegeuk Kim 已提交
89
		goto repeat;
90
	}
J
Jaegeuk Kim 已提交
91

92
	lock_page(page);
93
	if (unlikely(page->mapping != mapping)) {
94 95 96
		f2fs_put_page(page, 1);
		goto repeat;
	}
97 98 99 100 101 102

	/*
	 * if there is any IO error when accessing device, make our filesystem
	 * readonly and make sure do not write checkpoint with non-uptodate
	 * meta page.
	 */
103 104
	if (unlikely(!PageUptodate(page))) {
		memset(page_address(page), 0, PAGE_SIZE);
105
		f2fs_stop_checkpoint(sbi, false);
106
	}
107
out:
J
Jaegeuk Kim 已提交
108 109 110
	return page;
}

C
Chao Yu 已提交
111
struct page *f2fs_get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
112 113 114 115 116
{
	return __get_meta_page(sbi, index, true);
}

/* for POR only */
C
Chao Yu 已提交
117
struct page *f2fs_get_tmp_page(struct f2fs_sb_info *sbi, pgoff_t index)
118 119 120 121
{
	return __get_meta_page(sbi, index, false);
}

C
Chao Yu 已提交
122 123
bool f2fs_is_valid_meta_blkaddr(struct f2fs_sb_info *sbi,
					block_t blkaddr, int type)
124 125 126
{
	switch (type) {
	case META_NAT:
127
		break;
128
	case META_SIT:
129 130 131
		if (unlikely(blkaddr >= SIT_BLK_CNT(sbi)))
			return false;
		break;
132
	case META_SSA:
133 134 135 136
		if (unlikely(blkaddr >= MAIN_BLKADDR(sbi) ||
			blkaddr < SM_I(sbi)->ssa_blkaddr))
			return false;
		break;
137
	case META_CP:
138 139 140 141
		if (unlikely(blkaddr >= SIT_I(sbi)->sit_base_addr ||
			blkaddr < __start_cp_addr(sbi)))
			return false;
		break;
142
	case META_POR:
143 144 145 146
		if (unlikely(blkaddr >= MAX_BLKADDR(sbi) ||
			blkaddr < MAIN_BLKADDR(sbi)))
			return false;
		break;
147 148 149
	default:
		BUG();
	}
150 151

	return true;
152 153 154
}

/*
155
 * Readahead CP/NAT/SIT/SSA pages
156
 */
C
Chao Yu 已提交
157
int f2fs_ra_meta_pages(struct f2fs_sb_info *sbi, block_t start, int nrpages,
158
							int type, bool sync)
159 160
{
	struct page *page;
161
	block_t blkno = start;
162
	struct f2fs_io_info fio = {
163
		.sbi = sbi,
164
		.type = META,
M
Mike Christie 已提交
165
		.op = REQ_OP_READ,
166
		.op_flags = sync ? (REQ_META | REQ_PRIO) : REQ_RAHEAD,
167
		.encrypted_page = NULL,
168
		.in_list = false,
169
		.is_meta = (type != META_POR),
170
	};
C
Chao Yu 已提交
171
	struct blk_plug plug;
172

173
	if (unlikely(type == META_POR))
M
Mike Christie 已提交
174
		fio.op_flags &= ~REQ_META;
175

C
Chao Yu 已提交
176
	blk_start_plug(&plug);
177 178
	for (; nrpages-- > 0; blkno++) {

C
Chao Yu 已提交
179
		if (!f2fs_is_valid_meta_blkaddr(sbi, blkno, type))
180 181
			goto out;

182 183
		switch (type) {
		case META_NAT:
184 185
			if (unlikely(blkno >=
					NAT_BLOCK_OFFSET(NM_I(sbi)->max_nid)))
186
				blkno = 0;
187
			/* get nat block addr */
188
			fio.new_blkaddr = current_nat_addr(sbi,
189 190 191 192
					blkno * NAT_ENTRY_PER_BLOCK);
			break;
		case META_SIT:
			/* get sit block addr */
193
			fio.new_blkaddr = current_sit_addr(sbi,
194 195
					blkno * SIT_ENTRY_PER_BLOCK);
			break;
196
		case META_SSA:
197
		case META_CP:
198
		case META_POR:
199
			fio.new_blkaddr = blkno;
200 201 202 203 204
			break;
		default:
			BUG();
		}

205 206
		page = f2fs_grab_cache_page(META_MAPPING(sbi),
						fio.new_blkaddr, false);
207 208 209 210 211 212 213
		if (!page)
			continue;
		if (PageUptodate(page)) {
			f2fs_put_page(page, 1);
			continue;
		}

214
		fio.page = page;
215
		f2fs_submit_page_bio(&fio);
216 217 218
		f2fs_put_page(page, 0);
	}
out:
C
Chao Yu 已提交
219
	blk_finish_plug(&plug);
220 221 222
	return blkno - start;
}

C
Chao Yu 已提交
223
void f2fs_ra_meta_pages_cond(struct f2fs_sb_info *sbi, pgoff_t index)
224 225 226 227 228
{
	struct page *page;
	bool readahead = false;

	page = find_get_page(META_MAPPING(sbi), index);
229
	if (!page || !PageUptodate(page))
230 231 232 233
		readahead = true;
	f2fs_put_page(page, 0);

	if (readahead)
C
Chao Yu 已提交
234
		f2fs_ra_meta_pages(sbi, index, BIO_MAX_PAGES, META_POR, true);
235 236
}

C
Chao Yu 已提交
237 238 239
static int __f2fs_write_meta_page(struct page *page,
				struct writeback_control *wbc,
				enum iostat_type io_type)
J
Jaegeuk Kim 已提交
240
{
241
	struct f2fs_sb_info *sbi = F2FS_P_SB(page);
J
Jaegeuk Kim 已提交
242

243 244
	trace_f2fs_writepage(page, META);

245 246
	if (unlikely(f2fs_cp_error(sbi)))
		goto redirty_out;
247
	if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
248
		goto redirty_out;
249
	if (wbc->for_reclaim && page->index < GET_SUM_BLOCK(sbi, 0))
250
		goto redirty_out;
J
Jaegeuk Kim 已提交
251

C
Chao Yu 已提交
252
	f2fs_do_write_meta_page(sbi, page, io_type);
253
	dec_page_count(sbi, F2FS_DIRTY_META);
254 255

	if (wbc->for_reclaim)
256 257
		f2fs_submit_merged_write_cond(sbi, page->mapping->host,
						0, page->index, META);
258

259
	unlock_page(page);
260

261
	if (unlikely(f2fs_cp_error(sbi)))
262
		f2fs_submit_merged_write(sbi, META);
263

264
	return 0;
265 266

redirty_out:
267
	redirty_page_for_writepage(wbc, page);
268
	return AOP_WRITEPAGE_ACTIVATE;
J
Jaegeuk Kim 已提交
269 270
}

C
Chao Yu 已提交
271 272 273 274 275 276
static int f2fs_write_meta_page(struct page *page,
				struct writeback_control *wbc)
{
	return __f2fs_write_meta_page(page, wbc, FS_META_IO);
}

J
Jaegeuk Kim 已提交
277 278 279
static int f2fs_write_meta_pages(struct address_space *mapping,
				struct writeback_control *wbc)
{
280
	struct f2fs_sb_info *sbi = F2FS_M_SB(mapping);
281
	long diff, written;
J
Jaegeuk Kim 已提交
282

283 284 285
	if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
		goto skip_write;

286
	/* collect a number of dirty meta pages and write together */
287 288
	if (wbc->for_kupdate ||
		get_pages(sbi, F2FS_DIRTY_META) < nr_pages_to_skip(sbi, META))
289
		goto skip_write;
J
Jaegeuk Kim 已提交
290

291 292 293
	/* if locked failed, cp will flush dirty pages instead */
	if (!mutex_trylock(&sbi->cp_mutex))
		goto skip_write;
Y
Yunlei He 已提交
294

295
	trace_f2fs_writepages(mapping->host, wbc, META);
296
	diff = nr_pages_to_write(sbi, META, wbc);
C
Chao Yu 已提交
297
	written = f2fs_sync_meta_pages(sbi, META, wbc->nr_to_write, FS_META_IO);
J
Jaegeuk Kim 已提交
298
	mutex_unlock(&sbi->cp_mutex);
299
	wbc->nr_to_write = max((long)0, wbc->nr_to_write - written - diff);
J
Jaegeuk Kim 已提交
300
	return 0;
301 302 303

skip_write:
	wbc->pages_skipped += get_pages(sbi, F2FS_DIRTY_META);
Y
Yunlei He 已提交
304
	trace_f2fs_writepages(mapping->host, wbc, META);
305
	return 0;
J
Jaegeuk Kim 已提交
306 307
}

C
Chao Yu 已提交
308
long f2fs_sync_meta_pages(struct f2fs_sb_info *sbi, enum page_type type,
C
Chao Yu 已提交
309
				long nr_to_write, enum iostat_type io_type)
J
Jaegeuk Kim 已提交
310
{
G
Gu Zheng 已提交
311
	struct address_space *mapping = META_MAPPING(sbi);
J
Jan Kara 已提交
312
	pgoff_t index = 0, prev = ULONG_MAX;
J
Jaegeuk Kim 已提交
313 314
	struct pagevec pvec;
	long nwritten = 0;
J
Jan Kara 已提交
315
	int nr_pages;
J
Jaegeuk Kim 已提交
316 317 318
	struct writeback_control wbc = {
		.for_reclaim = 0,
	};
C
Chao Yu 已提交
319
	struct blk_plug plug;
J
Jaegeuk Kim 已提交
320

321
	pagevec_init(&pvec);
J
Jaegeuk Kim 已提交
322

C
Chao Yu 已提交
323 324
	blk_start_plug(&plug);

J
Jan Kara 已提交
325
	while ((nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
326
				PAGECACHE_TAG_DIRTY))) {
J
Jan Kara 已提交
327
		int i;
J
Jaegeuk Kim 已提交
328 329 330

		for (i = 0; i < nr_pages; i++) {
			struct page *page = pvec.pages[i];
331

332
			if (prev == ULONG_MAX)
333 334 335 336 337 338
				prev = page->index - 1;
			if (nr_to_write != LONG_MAX && page->index != prev + 1) {
				pagevec_release(&pvec);
				goto stop;
			}

J
Jaegeuk Kim 已提交
339
			lock_page(page);
340 341 342 343 344 345 346 347 348 349 350

			if (unlikely(page->mapping != mapping)) {
continue_unlock:
				unlock_page(page);
				continue;
			}
			if (!PageDirty(page)) {
				/* someone wrote it for us */
				goto continue_unlock;
			}

351 352 353
			f2fs_wait_on_page_writeback(page, META, true);

			BUG_ON(PageWriteback(page));
354 355 356
			if (!clear_page_dirty_for_io(page))
				goto continue_unlock;

C
Chao Yu 已提交
357
			if (__f2fs_write_meta_page(page, &wbc, io_type)) {
358 359 360
				unlock_page(page);
				break;
			}
361
			nwritten++;
362
			prev = page->index;
363
			if (unlikely(nwritten >= nr_to_write))
J
Jaegeuk Kim 已提交
364 365 366 367 368
				break;
		}
		pagevec_release(&pvec);
		cond_resched();
	}
369
stop:
J
Jaegeuk Kim 已提交
370
	if (nwritten)
371
		f2fs_submit_merged_write(sbi, type);
J
Jaegeuk Kim 已提交
372

C
Chao Yu 已提交
373 374
	blk_finish_plug(&plug);

J
Jaegeuk Kim 已提交
375 376 377 378 379
	return nwritten;
}

static int f2fs_set_meta_page_dirty(struct page *page)
{
380 381
	trace_f2fs_set_page_dirty(page, META);

382 383
	if (!PageUptodate(page))
		SetPageUptodate(page);
J
Jaegeuk Kim 已提交
384
	if (!PageDirty(page)) {
385
		__set_page_dirty_nobuffers(page);
386
		inc_page_count(F2FS_P_SB(page), F2FS_DIRTY_META);
387
		SetPagePrivate(page);
J
Jaegeuk Kim 已提交
388
		f2fs_trace_pid(page);
J
Jaegeuk Kim 已提交
389 390 391 392 393 394 395 396 397
		return 1;
	}
	return 0;
}

const struct address_space_operations f2fs_meta_aops = {
	.writepage	= f2fs_write_meta_page,
	.writepages	= f2fs_write_meta_pages,
	.set_page_dirty	= f2fs_set_meta_page_dirty,
398 399
	.invalidatepage = f2fs_invalidate_page,
	.releasepage	= f2fs_release_page,
400 401 402
#ifdef CONFIG_MIGRATION
	.migratepage    = f2fs_migrate_page,
#endif
J
Jaegeuk Kim 已提交
403 404
};

C
Chao Yu 已提交
405 406
static void __add_ino_entry(struct f2fs_sb_info *sbi, nid_t ino,
						unsigned int devidx, int type)
407
{
408
	struct inode_management *im = &sbi->im[type];
409 410 411
	struct ino_entry *e, *tmp;

	tmp = f2fs_kmem_cache_alloc(ino_entry_slab, GFP_NOFS);
412

413
	radix_tree_preload(GFP_NOFS | __GFP_NOFAIL);
414

415 416
	spin_lock(&im->ino_lock);
	e = radix_tree_lookup(&im->ino_root, ino);
417
	if (!e) {
418
		e = tmp;
419 420 421
		if (unlikely(radix_tree_insert(&im->ino_root, ino, e)))
			f2fs_bug_on(sbi, 1);

422 423
		memset(e, 0, sizeof(struct ino_entry));
		e->ino = ino;
424

425
		list_add_tail(&e->list, &im->ino_list);
426
		if (type != ORPHAN_INO)
427
			im->ino_num++;
428
	}
C
Chao Yu 已提交
429 430 431 432

	if (type == FLUSH_INO)
		f2fs_set_bit(devidx, (char *)&e->dirty_device);

433
	spin_unlock(&im->ino_lock);
434
	radix_tree_preload_end();
435 436 437

	if (e != tmp)
		kmem_cache_free(ino_entry_slab, tmp);
438 439
}

J
Jaegeuk Kim 已提交
440
static void __remove_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
441
{
442
	struct inode_management *im = &sbi->im[type];
J
Jaegeuk Kim 已提交
443
	struct ino_entry *e;
444

445 446
	spin_lock(&im->ino_lock);
	e = radix_tree_lookup(&im->ino_root, ino);
447 448
	if (e) {
		list_del(&e->list);
449 450 451
		radix_tree_delete(&im->ino_root, ino);
		im->ino_num--;
		spin_unlock(&im->ino_lock);
452 453
		kmem_cache_free(ino_entry_slab, e);
		return;
454
	}
455
	spin_unlock(&im->ino_lock);
456 457
}

C
Chao Yu 已提交
458
void f2fs_add_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
459 460
{
	/* add new dirty ino entry into list */
C
Chao Yu 已提交
461
	__add_ino_entry(sbi, ino, 0, type);
462 463
}

C
Chao Yu 已提交
464
void f2fs_remove_ino_entry(struct f2fs_sb_info *sbi, nid_t ino, int type)
465 466 467 468 469 470
{
	/* remove dirty ino entry from list */
	__remove_ino_entry(sbi, ino, type);
}

/* mode should be APPEND_INO or UPDATE_INO */
C
Chao Yu 已提交
471
bool f2fs_exist_written_data(struct f2fs_sb_info *sbi, nid_t ino, int mode)
472
{
473
	struct inode_management *im = &sbi->im[mode];
474
	struct ino_entry *e;
475 476 477 478

	spin_lock(&im->ino_lock);
	e = radix_tree_lookup(&im->ino_root, ino);
	spin_unlock(&im->ino_lock);
479 480 481
	return e ? true : false;
}

C
Chao Yu 已提交
482
void f2fs_release_ino_entry(struct f2fs_sb_info *sbi, bool all)
483 484 485 486
{
	struct ino_entry *e, *tmp;
	int i;

C
Chao Yu 已提交
487
	for (i = all ? ORPHAN_INO : APPEND_INO; i < MAX_INO_ENTRY; i++) {
488 489 490 491
		struct inode_management *im = &sbi->im[i];

		spin_lock(&im->ino_lock);
		list_for_each_entry_safe(e, tmp, &im->ino_list, list) {
492
			list_del(&e->list);
493
			radix_tree_delete(&im->ino_root, e->ino);
494
			kmem_cache_free(ino_entry_slab, e);
495
			im->ino_num--;
496
		}
497
		spin_unlock(&im->ino_lock);
498 499 500
	}
}

C
Chao Yu 已提交
501
void f2fs_set_dirty_device(struct f2fs_sb_info *sbi, nid_t ino,
C
Chao Yu 已提交
502 503 504 505 506
					unsigned int devidx, int type)
{
	__add_ino_entry(sbi, ino, devidx, type);
}

C
Chao Yu 已提交
507
bool f2fs_is_dirty_device(struct f2fs_sb_info *sbi, nid_t ino,
C
Chao Yu 已提交
508 509 510 511 512 513 514 515 516 517 518 519 520 521
					unsigned int devidx, int type)
{
	struct inode_management *im = &sbi->im[type];
	struct ino_entry *e;
	bool is_dirty = false;

	spin_lock(&im->ino_lock);
	e = radix_tree_lookup(&im->ino_root, ino);
	if (e && f2fs_test_bit(devidx, (char *)&e->dirty_device))
		is_dirty = true;
	spin_unlock(&im->ino_lock);
	return is_dirty;
}

C
Chao Yu 已提交
522
int f2fs_acquire_orphan_inode(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
523
{
524
	struct inode_management *im = &sbi->im[ORPHAN_INO];
J
Jaegeuk Kim 已提交
525 526
	int err = 0;

527
	spin_lock(&im->ino_lock);
J
Jaegeuk Kim 已提交
528 529

#ifdef CONFIG_F2FS_FAULT_INJECTION
530
	if (time_to_inject(sbi, FAULT_ORPHAN)) {
J
Jaegeuk Kim 已提交
531
		spin_unlock(&im->ino_lock);
532
		f2fs_show_injection_info(FAULT_ORPHAN);
J
Jaegeuk Kim 已提交
533 534 535
		return -ENOSPC;
	}
#endif
536
	if (unlikely(im->ino_num >= sbi->max_orphans))
J
Jaegeuk Kim 已提交
537
		err = -ENOSPC;
J
Jaegeuk Kim 已提交
538
	else
539 540
		im->ino_num++;
	spin_unlock(&im->ino_lock);
541

J
Jaegeuk Kim 已提交
542 543 544
	return err;
}

C
Chao Yu 已提交
545
void f2fs_release_orphan_inode(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
546
{
547 548 549 550 551 552
	struct inode_management *im = &sbi->im[ORPHAN_INO];

	spin_lock(&im->ino_lock);
	f2fs_bug_on(sbi, im->ino_num == 0);
	im->ino_num--;
	spin_unlock(&im->ino_lock);
J
Jaegeuk Kim 已提交
553 554
}

C
Chao Yu 已提交
555
void f2fs_add_orphan_inode(struct inode *inode)
J
Jaegeuk Kim 已提交
556
{
557
	/* add new orphan ino entry into list */
C
Chao Yu 已提交
558
	__add_ino_entry(F2FS_I_SB(inode), inode->i_ino, 0, ORPHAN_INO);
C
Chao Yu 已提交
559
	f2fs_update_inode_page(inode);
J
Jaegeuk Kim 已提交
560 561
}

C
Chao Yu 已提交
562
void f2fs_remove_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
J
Jaegeuk Kim 已提交
563
{
564
	/* remove orphan entry from orphan list */
J
Jaegeuk Kim 已提交
565
	__remove_ino_entry(sbi, ino, ORPHAN_INO);
J
Jaegeuk Kim 已提交
566 567
}

568
static int recover_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
J
Jaegeuk Kim 已提交
569
{
570
	struct inode *inode;
571
	struct node_info ni;
C
Chao Yu 已提交
572
	int err = f2fs_acquire_orphan_inode(sbi);
573

574 575
	if (err)
		goto err_out;
576

C
Chao Yu 已提交
577
	__add_ino_entry(sbi, ino, 0, ORPHAN_INO);
578

579
	inode = f2fs_iget_retry(sbi->sb, ino);
580 581 582 583 584 585 586 587 588
	if (IS_ERR(inode)) {
		/*
		 * there should be a bug that we can't find the entry
		 * to orphan inode.
		 */
		f2fs_bug_on(sbi, PTR_ERR(inode) == -ENOENT);
		return PTR_ERR(inode);
	}

589
	err = dquot_initialize(inode);
590 591
	if (err) {
		iput(inode);
592
		goto err_out;
593
	}
594

J
Jaegeuk Kim 已提交
595 596 597 598
	clear_nlink(inode);

	/* truncate all the data during iput */
	iput(inode);
599

C
Chao Yu 已提交
600
	f2fs_get_node_info(sbi, ino, &ni);
601 602 603

	/* ENOMEM was fully retried in f2fs_evict_inode. */
	if (ni.blk_addr != NULL_ADDR) {
604 605
		err = -EIO;
		goto err_out;
606
	}
607
	__remove_ino_entry(sbi, ino, ORPHAN_INO);
608
	return 0;
609 610 611 612 613 614 615

err_out:
	set_sbi_flag(sbi, SBI_NEED_FSCK);
	f2fs_msg(sbi->sb, KERN_WARNING,
			"%s: orphan failed (ino=%x), run fsck to fix.",
			__func__, ino);
	return err;
J
Jaegeuk Kim 已提交
616 617
}

C
Chao Yu 已提交
618
int f2fs_recover_orphan_inodes(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
619
{
620
	block_t start_blk, orphan_blocks, i, j;
C
Chao Yu 已提交
621 622
	unsigned int s_flags = sbi->sb->s_flags;
	int err = 0;
J
Jaegeuk Kim 已提交
623 624 625
#ifdef CONFIG_QUOTA
	int quota_enabled;
#endif
J
Jaegeuk Kim 已提交
626

627
	if (!is_set_ckpt_flags(sbi, CP_ORPHAN_PRESENT_FLAG))
628
		return 0;
J
Jaegeuk Kim 已提交
629

630
	if (s_flags & SB_RDONLY) {
C
Chao Yu 已提交
631
		f2fs_msg(sbi->sb, KERN_INFO, "orphan cleanup on readonly fs");
632
		sbi->sb->s_flags &= ~SB_RDONLY;
C
Chao Yu 已提交
633 634 635 636
	}

#ifdef CONFIG_QUOTA
	/* Needed for iput() to work correctly and not trash data */
637
	sbi->sb->s_flags |= SB_ACTIVE;
J
Jaegeuk Kim 已提交
638

C
Chao Yu 已提交
639
	/* Turn on quotas so that they are updated correctly */
640
	quota_enabled = f2fs_enable_quota_files(sbi, s_flags & SB_RDONLY);
C
Chao Yu 已提交
641 642
#endif

W
Wanpeng Li 已提交
643
	start_blk = __start_cp_addr(sbi) + 1 + __cp_payload(sbi);
644
	orphan_blocks = __start_sum_addr(sbi) - 1 - __cp_payload(sbi);
J
Jaegeuk Kim 已提交
645

C
Chao Yu 已提交
646
	f2fs_ra_meta_pages(sbi, start_blk, orphan_blocks, META_CP, true);
647

648
	for (i = 0; i < orphan_blocks; i++) {
C
Chao Yu 已提交
649
		struct page *page = f2fs_get_meta_page(sbi, start_blk + i);
J
Jaegeuk Kim 已提交
650 651 652 653 654
		struct f2fs_orphan_block *orphan_blk;

		orphan_blk = (struct f2fs_orphan_block *)page_address(page);
		for (j = 0; j < le32_to_cpu(orphan_blk->entry_count); j++) {
			nid_t ino = le32_to_cpu(orphan_blk->ino[j]);
655 656 657
			err = recover_orphan_inode(sbi, ino);
			if (err) {
				f2fs_put_page(page, 1);
C
Chao Yu 已提交
658
				goto out;
659
			}
J
Jaegeuk Kim 已提交
660 661 662 663
		}
		f2fs_put_page(page, 1);
	}
	/* clear Orphan Flag */
664
	clear_ckpt_flags(sbi, CP_ORPHAN_PRESENT_FLAG);
C
Chao Yu 已提交
665 666 667
out:
#ifdef CONFIG_QUOTA
	/* Turn quotas off */
J
Jaegeuk Kim 已提交
668 669
	if (quota_enabled)
		f2fs_quota_off_umount(sbi->sb);
C
Chao Yu 已提交
670
#endif
671
	sbi->sb->s_flags = s_flags; /* Restore SB_RDONLY status */
C
Chao Yu 已提交
672 673

	return err;
J
Jaegeuk Kim 已提交
674 675 676 677
}

static void write_orphan_inodes(struct f2fs_sb_info *sbi, block_t start_blk)
{
678
	struct list_head *head;
J
Jaegeuk Kim 已提交
679 680
	struct f2fs_orphan_block *orphan_blk = NULL;
	unsigned int nentries = 0;
C
Chao Yu 已提交
681
	unsigned short index = 1;
682
	unsigned short orphan_blocks;
683
	struct page *page = NULL;
J
Jaegeuk Kim 已提交
684
	struct ino_entry *orphan = NULL;
685
	struct inode_management *im = &sbi->im[ORPHAN_INO];
J
Jaegeuk Kim 已提交
686

687
	orphan_blocks = GET_ORPHAN_BLOCKS(im->ino_num);
688

689 690 691 692 693
	/*
	 * we don't need to do spin_lock(&im->ino_lock) here, since all the
	 * orphan inode operations are covered under f2fs_lock_op().
	 * And, spin_lock should be avoided due to page operations below.
	 */
694
	head = &im->ino_list;
J
Jaegeuk Kim 已提交
695 696

	/* loop for each orphan inode entry and write them in Jornal block */
697 698
	list_for_each_entry(orphan, head, list) {
		if (!page) {
C
Chao Yu 已提交
699
			page = f2fs_grab_meta_page(sbi, start_blk++);
700 701 702 703
			orphan_blk =
				(struct f2fs_orphan_block *)page_address(page);
			memset(orphan_blk, 0, sizeof(*orphan_blk));
		}
J
Jaegeuk Kim 已提交
704

705
		orphan_blk->ino[nentries++] = cpu_to_le32(orphan->ino);
J
Jaegeuk Kim 已提交
706

707
		if (nentries == F2FS_ORPHANS_PER_BLOCK) {
J
Jaegeuk Kim 已提交
708 709 710 711 712 713 714 715 716 717 718 719 720 721
			/*
			 * an orphan block is full of 1020 entries,
			 * then we need to flush current orphan blocks
			 * and bring another one in memory
			 */
			orphan_blk->blk_addr = cpu_to_le16(index);
			orphan_blk->blk_count = cpu_to_le16(orphan_blocks);
			orphan_blk->entry_count = cpu_to_le32(nentries);
			set_page_dirty(page);
			f2fs_put_page(page, 1);
			index++;
			nentries = 0;
			page = NULL;
		}
722
	}
J
Jaegeuk Kim 已提交
723

724 725 726 727 728 729
	if (page) {
		orphan_blk->blk_addr = cpu_to_le16(index);
		orphan_blk->blk_count = cpu_to_le16(orphan_blocks);
		orphan_blk->entry_count = cpu_to_le32(nentries);
		set_page_dirty(page);
		f2fs_put_page(page, 1);
J
Jaegeuk Kim 已提交
730 731 732
	}
}

733 734 735
static int get_checkpoint_version(struct f2fs_sb_info *sbi, block_t cp_addr,
		struct f2fs_checkpoint **cp_block, struct page **cp_page,
		unsigned long long *version)
J
Jaegeuk Kim 已提交
736 737
{
	unsigned long blk_size = sbi->blocksize;
738
	size_t crc_offset = 0;
J
Jaegeuk Kim 已提交
739
	__u32 crc = 0;
J
Jaegeuk Kim 已提交
740

C
Chao Yu 已提交
741
	*cp_page = f2fs_get_meta_page(sbi, cp_addr);
742
	*cp_block = (struct f2fs_checkpoint *)page_address(*cp_page);
J
Jaegeuk Kim 已提交
743

744
	crc_offset = le32_to_cpu((*cp_block)->checksum_offset);
745
	if (crc_offset > (blk_size - sizeof(__le32))) {
746 747 748 749
		f2fs_msg(sbi->sb, KERN_WARNING,
			"invalid crc_offset: %zu", crc_offset);
		return -EINVAL;
	}
J
Jaegeuk Kim 已提交
750

751
	crc = cur_cp_crc(*cp_block);
752 753 754 755
	if (!f2fs_crc_valid(sbi, crc, *cp_block, crc_offset)) {
		f2fs_msg(sbi->sb, KERN_WARNING, "invalid crc value");
		return -EINVAL;
	}
J
Jaegeuk Kim 已提交
756

757 758 759
	*version = cur_cp_version(*cp_block);
	return 0;
}
J
Jaegeuk Kim 已提交
760

761 762 763 764 765 766 767
static struct page *validate_checkpoint(struct f2fs_sb_info *sbi,
				block_t cp_addr, unsigned long long *version)
{
	struct page *cp_page_1 = NULL, *cp_page_2 = NULL;
	struct f2fs_checkpoint *cp_block = NULL;
	unsigned long long cur_version = 0, pre_version = 0;
	int err;
J
Jaegeuk Kim 已提交
768

769 770 771 772 773
	err = get_checkpoint_version(sbi, cp_addr, &cp_block,
					&cp_page_1, version);
	if (err)
		goto invalid_cp1;
	pre_version = *version;
J
Jaegeuk Kim 已提交
774

775 776 777 778
	cp_addr += le32_to_cpu(cp_block->cp_pack_total_block_count) - 1;
	err = get_checkpoint_version(sbi, cp_addr, &cp_block,
					&cp_page_2, version);
	if (err)
J
Jaegeuk Kim 已提交
779
		goto invalid_cp2;
780
	cur_version = *version;
J
Jaegeuk Kim 已提交
781 782 783 784 785 786 787 788 789 790 791 792 793

	if (cur_version == pre_version) {
		*version = cur_version;
		f2fs_put_page(cp_page_2, 1);
		return cp_page_1;
	}
invalid_cp2:
	f2fs_put_page(cp_page_2, 1);
invalid_cp1:
	f2fs_put_page(cp_page_1, 1);
	return NULL;
}

C
Chao Yu 已提交
794
int f2fs_get_valid_checkpoint(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
795 796 797 798 799 800 801
{
	struct f2fs_checkpoint *cp_block;
	struct f2fs_super_block *fsb = sbi->raw_super;
	struct page *cp1, *cp2, *cur_page;
	unsigned long blk_size = sbi->blocksize;
	unsigned long long cp1_version = 0, cp2_version = 0;
	unsigned long long cp_start_blk_no;
W
Wanpeng Li 已提交
802
	unsigned int cp_blks = 1 + __cp_payload(sbi);
C
Changman Lee 已提交
803 804
	block_t cp_blk_no;
	int i;
J
Jaegeuk Kim 已提交
805

806 807
	sbi->ckpt = f2fs_kzalloc(sbi, array_size(blk_size, cp_blks),
				 GFP_KERNEL);
J
Jaegeuk Kim 已提交
808 809 810 811 812 813 814 815 816 817
	if (!sbi->ckpt)
		return -ENOMEM;
	/*
	 * Finding out valid cp block involves read both
	 * sets( cp pack1 and cp pack 2)
	 */
	cp_start_blk_no = le32_to_cpu(fsb->cp_blkaddr);
	cp1 = validate_checkpoint(sbi, cp_start_blk_no, &cp1_version);

	/* The second checkpoint pack should start at the next segment */
818 819
	cp_start_blk_no += ((unsigned long long)1) <<
				le32_to_cpu(fsb->log_blocks_per_seg);
J
Jaegeuk Kim 已提交
820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837
	cp2 = validate_checkpoint(sbi, cp_start_blk_no, &cp2_version);

	if (cp1 && cp2) {
		if (ver_after(cp2_version, cp1_version))
			cur_page = cp2;
		else
			cur_page = cp1;
	} else if (cp1) {
		cur_page = cp1;
	} else if (cp2) {
		cur_page = cp2;
	} else {
		goto fail_no_cp;
	}

	cp_block = (struct f2fs_checkpoint *)page_address(cur_page);
	memcpy(sbi->ckpt, cp_block, blk_size);

838
	/* Sanity checking of checkpoint */
C
Chao Yu 已提交
839
	if (f2fs_sanity_check_ckpt(sbi))
840
		goto free_fail_no_cp;
841

842 843 844 845
	if (cur_page == cp1)
		sbi->cur_cp_pack = 1;
	else
		sbi->cur_cp_pack = 2;
846

C
Changman Lee 已提交
847 848 849 850 851 852 853 854 855 856 857
	if (cp_blks <= 1)
		goto done;

	cp_blk_no = le32_to_cpu(fsb->cp_blkaddr);
	if (cur_page == cp2)
		cp_blk_no += 1 << le32_to_cpu(fsb->log_blocks_per_seg);

	for (i = 1; i < cp_blks; i++) {
		void *sit_bitmap_ptr;
		unsigned char *ckpt = (unsigned char *)sbi->ckpt;

C
Chao Yu 已提交
858
		cur_page = f2fs_get_meta_page(sbi, cp_blk_no + i);
C
Changman Lee 已提交
859 860 861 862 863
		sit_bitmap_ptr = page_address(cur_page);
		memcpy(ckpt + i * blk_size, sit_bitmap_ptr, blk_size);
		f2fs_put_page(cur_page, 1);
	}
done:
J
Jaegeuk Kim 已提交
864 865 866 867
	f2fs_put_page(cp1, 1);
	f2fs_put_page(cp2, 1);
	return 0;

868 869 870
free_fail_no_cp:
	f2fs_put_page(cp1, 1);
	f2fs_put_page(cp2, 1);
J
Jaegeuk Kim 已提交
871 872 873 874 875
fail_no_cp:
	kfree(sbi->ckpt);
	return -EINVAL;
}

876
static void __add_dirty_inode(struct inode *inode, enum inode_type type)
J
Jaegeuk Kim 已提交
877
{
878
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
879
	int flag = (type == DIR_INODE) ? FI_DIRTY_DIR : FI_DIRTY_FILE;
J
Jaegeuk Kim 已提交
880

881
	if (is_inode_flag_set(inode, flag))
882
		return;
883

884
	set_inode_flag(inode, flag);
885 886 887
	if (!f2fs_is_volatile_file(inode))
		list_add_tail(&F2FS_I(inode)->dirty_list,
						&sbi->inode_list[type]);
C
Chao Yu 已提交
888
	stat_inc_dirty_inode(sbi, type);
889 890
}

891
static void __remove_dirty_inode(struct inode *inode, enum inode_type type)
C
Chao Yu 已提交
892
{
893
	int flag = (type == DIR_INODE) ? FI_DIRTY_DIR : FI_DIRTY_FILE;
C
Chao Yu 已提交
894

895
	if (get_dirty_pages(inode) || !is_inode_flag_set(inode, flag))
C
Chao Yu 已提交
896 897
		return;

898 899
	list_del_init(&F2FS_I(inode)->dirty_list);
	clear_inode_flag(inode, flag);
C
Chao Yu 已提交
900
	stat_dec_dirty_inode(F2FS_I_SB(inode), type);
C
Chao Yu 已提交
901 902
}

C
Chao Yu 已提交
903
void f2fs_update_dirty_page(struct inode *inode, struct page *page)
904
{
905
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
906
	enum inode_type type = S_ISDIR(inode->i_mode) ? DIR_INODE : FILE_INODE;
907

908 909
	if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) &&
			!S_ISLNK(inode->i_mode))
J
Jaegeuk Kim 已提交
910
		return;
911

912 913
	spin_lock(&sbi->inode_lock[type]);
	if (type != FILE_INODE || test_opt(sbi, DATA_FLUSH))
914
		__add_dirty_inode(inode, type);
915
	inode_inc_dirty_pages(inode);
916 917
	spin_unlock(&sbi->inode_lock[type]);

918
	SetPagePrivate(page);
J
Jaegeuk Kim 已提交
919
	f2fs_trace_pid(page);
920 921
}

C
Chao Yu 已提交
922
void f2fs_remove_dirty_inode(struct inode *inode)
J
Jaegeuk Kim 已提交
923
{
924
	struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
925
	enum inode_type type = S_ISDIR(inode->i_mode) ? DIR_INODE : FILE_INODE;
J
Jaegeuk Kim 已提交
926

927 928
	if (!S_ISDIR(inode->i_mode) && !S_ISREG(inode->i_mode) &&
			!S_ISLNK(inode->i_mode))
J
Jaegeuk Kim 已提交
929 930
		return;

931 932 933
	if (type == FILE_INODE && !test_opt(sbi, DATA_FLUSH))
		return;

934 935 936
	spin_lock(&sbi->inode_lock[type]);
	__remove_dirty_inode(inode, type);
	spin_unlock(&sbi->inode_lock[type]);
937 938
}

C
Chao Yu 已提交
939
int f2fs_sync_dirty_inodes(struct f2fs_sb_info *sbi, enum inode_type type)
J
Jaegeuk Kim 已提交
940
{
941
	struct list_head *head;
J
Jaegeuk Kim 已提交
942
	struct inode *inode;
943
	struct f2fs_inode_info *fi;
944
	bool is_dir = (type == DIR_INODE);
J
Jaegeuk Kim 已提交
945
	unsigned long ino = 0;
946 947 948 949

	trace_f2fs_sync_dirty_inodes_enter(sbi->sb, is_dir,
				get_pages(sbi, is_dir ?
				F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA));
J
Jaegeuk Kim 已提交
950
retry:
951
	if (unlikely(f2fs_cp_error(sbi)))
C
Chao Yu 已提交
952
		return -EIO;
953

954
	spin_lock(&sbi->inode_lock[type]);
955

956
	head = &sbi->inode_list[type];
J
Jaegeuk Kim 已提交
957
	if (list_empty(head)) {
958
		spin_unlock(&sbi->inode_lock[type]);
959 960 961
		trace_f2fs_sync_dirty_inodes_exit(sbi->sb, is_dir,
				get_pages(sbi, is_dir ?
				F2FS_DIRTY_DENTS : F2FS_DIRTY_DATA));
C
Chao Yu 已提交
962
		return 0;
J
Jaegeuk Kim 已提交
963
	}
964
	fi = list_first_entry(head, struct f2fs_inode_info, dirty_list);
965
	inode = igrab(&fi->vfs_inode);
966
	spin_unlock(&sbi->inode_lock[type]);
J
Jaegeuk Kim 已提交
967
	if (inode) {
J
Jaegeuk Kim 已提交
968 969
		unsigned long cur_ino = inode->i_ino;

C
Chao Yu 已提交
970 971 972
		if (is_dir)
			F2FS_I(inode)->cp_task = current;

973
		filemap_fdatawrite(inode->i_mapping);
C
Chao Yu 已提交
974 975 976 977

		if (is_dir)
			F2FS_I(inode)->cp_task = NULL;

J
Jaegeuk Kim 已提交
978
		iput(inode);
J
Jaegeuk Kim 已提交
979 980 981 982 983 984 985
		/* We need to give cpu to another writers. */
		if (ino == cur_ino) {
			congestion_wait(BLK_RW_ASYNC, HZ/50);
			cond_resched();
		} else {
			ino = cur_ino;
		}
J
Jaegeuk Kim 已提交
986 987 988 989 990
	} else {
		/*
		 * We should submit bio, since it exists several
		 * wribacking dentry pages in the freeing inode.
		 */
991
		f2fs_submit_merged_write(sbi, DATA);
992
		cond_resched();
J
Jaegeuk Kim 已提交
993 994 995 996
	}
	goto retry;
}

997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012
int f2fs_sync_inode_meta(struct f2fs_sb_info *sbi)
{
	struct list_head *head = &sbi->inode_list[DIRTY_META];
	struct inode *inode;
	struct f2fs_inode_info *fi;
	s64 total = get_pages(sbi, F2FS_DIRTY_IMETA);

	while (total--) {
		if (unlikely(f2fs_cp_error(sbi)))
			return -EIO;

		spin_lock(&sbi->inode_lock[DIRTY_META]);
		if (list_empty(head)) {
			spin_unlock(&sbi->inode_lock[DIRTY_META]);
			return 0;
		}
1013
		fi = list_first_entry(head, struct f2fs_inode_info,
1014 1015 1016 1017
							gdirty_list);
		inode = igrab(&fi->vfs_inode);
		spin_unlock(&sbi->inode_lock[DIRTY_META]);
		if (inode) {
1018 1019 1020 1021
			sync_inode_metadata(inode, 0);

			/* it's on eviction */
			if (is_inode_flag_set(inode, FI_DIRTY_INODE))
C
Chao Yu 已提交
1022
				f2fs_update_inode_page(inode);
1023 1024
			iput(inode);
		}
C
Chao Yu 已提交
1025
	}
1026 1027 1028
	return 0;
}

1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
static void __prepare_cp_block(struct f2fs_sb_info *sbi)
{
	struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
	struct f2fs_nm_info *nm_i = NM_I(sbi);
	nid_t last_nid = nm_i->next_scan_nid;

	next_free_nid(sbi, &last_nid);
	ckpt->valid_block_count = cpu_to_le64(valid_user_blocks(sbi));
	ckpt->valid_node_count = cpu_to_le32(valid_node_count(sbi));
	ckpt->valid_inode_count = cpu_to_le32(valid_inode_count(sbi));
	ckpt->next_free_nid = cpu_to_le32(last_nid);
}

J
Jaegeuk Kim 已提交
1042
/*
J
Jaegeuk Kim 已提交
1043 1044
 * Freeze all the FS-operations for checkpoint.
 */
1045
static int block_operations(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
1046 1047 1048 1049 1050 1051
{
	struct writeback_control wbc = {
		.sync_mode = WB_SYNC_ALL,
		.nr_to_write = LONG_MAX,
		.for_reclaim = 0,
	};
1052
	struct blk_plug plug;
1053
	int err = 0;
1054 1055 1056

	blk_start_plug(&plug);

1057
retry_flush_dents:
1058
	f2fs_lock_all(sbi);
J
Jaegeuk Kim 已提交
1059 1060
	/* write all the dirty dentry pages */
	if (get_pages(sbi, F2FS_DIRTY_DENTS)) {
1061
		f2fs_unlock_all(sbi);
C
Chao Yu 已提交
1062
		err = f2fs_sync_dirty_inodes(sbi, DIR_INODE);
C
Chao Yu 已提交
1063
		if (err)
1064
			goto out;
1065
		cond_resched();
1066
		goto retry_flush_dents;
J
Jaegeuk Kim 已提交
1067 1068
	}

1069 1070 1071 1072 1073 1074
	/*
	 * POR: we should ensure that there are no dirty node pages
	 * until finishing nat/sit flush. inode->i_blocks can be updated.
	 */
	down_write(&sbi->node_change);

1075
	if (get_pages(sbi, F2FS_DIRTY_IMETA)) {
1076
		up_write(&sbi->node_change);
1077 1078 1079 1080
		f2fs_unlock_all(sbi);
		err = f2fs_sync_inode_meta(sbi);
		if (err)
			goto out;
1081
		cond_resched();
1082 1083 1084
		goto retry_flush_dents;
	}

1085
retry_flush_nodes:
1086
	down_write(&sbi->node_write);
J
Jaegeuk Kim 已提交
1087 1088

	if (get_pages(sbi, F2FS_DIRTY_NODES)) {
1089
		up_write(&sbi->node_write);
1090
		atomic_inc(&sbi->wb_sync_req[NODE]);
C
Chao Yu 已提交
1091
		err = f2fs_sync_node_pages(sbi, &wbc, false, FS_CP_NODE_IO);
1092
		atomic_dec(&sbi->wb_sync_req[NODE]);
C
Chao Yu 已提交
1093
		if (err) {
1094
			up_write(&sbi->node_change);
1095 1096 1097
			f2fs_unlock_all(sbi);
			goto out;
		}
1098
		cond_resched();
1099
		goto retry_flush_nodes;
J
Jaegeuk Kim 已提交
1100
	}
1101 1102 1103 1104 1105 1106 1107

	/*
	 * sbi->node_change is used only for AIO write_begin path which produces
	 * dirty node blocks and some checkpoint values by block allocation.
	 */
	__prepare_cp_block(sbi);
	up_write(&sbi->node_change);
1108
out:
1109
	blk_finish_plug(&plug);
1110
	return err;
J
Jaegeuk Kim 已提交
1111 1112 1113 1114
}

static void unblock_operations(struct f2fs_sb_info *sbi)
{
1115
	up_write(&sbi->node_write);
1116
	f2fs_unlock_all(sbi);
J
Jaegeuk Kim 已提交
1117 1118
}

1119 1120 1121 1122 1123 1124 1125
static void wait_on_all_pages_writeback(struct f2fs_sb_info *sbi)
{
	DEFINE_WAIT(wait);

	for (;;) {
		prepare_to_wait(&sbi->cp_wait, &wait, TASK_UNINTERRUPTIBLE);

1126
		if (!get_pages(sbi, F2FS_WB_CP_DATA))
1127 1128
			break;

1129 1130 1131
		if (unlikely(f2fs_cp_error(sbi)))
			break;

1132
		io_schedule_timeout(5*HZ);
1133 1134 1135 1136
	}
	finish_wait(&sbi->cp_wait, &wait);
}

1137 1138 1139 1140
static void update_ckpt_flags(struct f2fs_sb_info *sbi, struct cp_control *cpc)
{
	unsigned long orphan_num = sbi->im[ORPHAN_INO].ino_num;
	struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1141
	unsigned long flags;
1142

1143
	spin_lock_irqsave(&sbi->cp_lock, flags);
1144

1145
	if ((cpc->reason & CP_UMOUNT) &&
1146
			le32_to_cpu(ckpt->cp_pack_total_block_count) >
1147 1148 1149
			sbi->blocks_per_seg - NM_I(sbi)->nat_bits_blocks)
		disable_nat_bits(sbi, false);

1150 1151
	if (cpc->reason & CP_TRIMMED)
		__set_ckpt_flags(ckpt, CP_TRIMMED_FLAG);
C
Chao Yu 已提交
1152 1153
	else
		__clear_ckpt_flags(ckpt, CP_TRIMMED_FLAG);
1154

1155
	if (cpc->reason & CP_UMOUNT)
1156 1157 1158 1159
		__set_ckpt_flags(ckpt, CP_UMOUNT_FLAG);
	else
		__clear_ckpt_flags(ckpt, CP_UMOUNT_FLAG);

1160
	if (cpc->reason & CP_FASTBOOT)
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174
		__set_ckpt_flags(ckpt, CP_FASTBOOT_FLAG);
	else
		__clear_ckpt_flags(ckpt, CP_FASTBOOT_FLAG);

	if (orphan_num)
		__set_ckpt_flags(ckpt, CP_ORPHAN_PRESENT_FLAG);
	else
		__clear_ckpt_flags(ckpt, CP_ORPHAN_PRESENT_FLAG);

	if (is_sbi_flag_set(sbi, SBI_NEED_FSCK))
		__set_ckpt_flags(ckpt, CP_FSCK_FLAG);

	/* set this flag to activate crc|cp_ver for recovery */
	__set_ckpt_flags(ckpt, CP_CRC_RECOVERY_FLAG);
1175
	__clear_ckpt_flags(ckpt, CP_NOCRC_RECOVERY_FLAG);
1176

1177
	spin_unlock_irqrestore(&sbi->cp_lock, flags);
1178 1179
}

1180 1181 1182 1183 1184 1185 1186 1187 1188
static void commit_checkpoint(struct f2fs_sb_info *sbi,
	void *src, block_t blk_addr)
{
	struct writeback_control wbc = {
		.for_reclaim = 0,
	};

	/*
	 * pagevec_lookup_tag and lock_page again will take
C
Chao Yu 已提交
1189 1190
	 * some extra time. Therefore, f2fs_update_meta_pages and
	 * f2fs_sync_meta_pages are combined in this function.
1191
	 */
C
Chao Yu 已提交
1192
	struct page *page = f2fs_grab_meta_page(sbi, blk_addr);
1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204
	int err;

	memcpy(page_address(page), src, PAGE_SIZE);
	set_page_dirty(page);

	f2fs_wait_on_page_writeback(page, META, true);
	f2fs_bug_on(sbi, PageWriteback(page));
	if (unlikely(!clear_page_dirty_for_io(page)))
		f2fs_bug_on(sbi, 1);

	/* writeout cp pack 2 page */
	err = __f2fs_write_meta_page(page, &wbc, FS_CP_META_IO);
1205 1206 1207 1208
	if (unlikely(err && f2fs_cp_error(sbi))) {
		f2fs_put_page(page, 1);
		return;
	}
1209

1210
	f2fs_bug_on(sbi, err);
1211 1212 1213 1214 1215 1216
	f2fs_put_page(page, 0);

	/* submit checkpoint (with barrier if NOBARRIER is not set) */
	f2fs_submit_merged_write(sbi, META_FLUSH);
}

C
Chao Yu 已提交
1217
static int do_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc)
J
Jaegeuk Kim 已提交
1218 1219
{
	struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
1220
	struct f2fs_nm_info *nm_i = NM_I(sbi);
1221
	unsigned long orphan_num = sbi->im[ORPHAN_INO].ino_num, flags;
J
Jaegeuk Kim 已提交
1222 1223
	block_t start_blk;
	unsigned int data_sum_blocks, orphan_blocks;
J
Jaegeuk Kim 已提交
1224
	__u32 crc32 = 0;
J
Jaegeuk Kim 已提交
1225
	int i;
W
Wanpeng Li 已提交
1226
	int cp_payload_blks = __cp_payload(sbi);
1227 1228 1229
	struct super_block *sb = sbi->sb;
	struct curseg_info *seg_i = CURSEG_I(sbi, CURSEG_HOT_NODE);
	u64 kbytes_written;
1230
	int err;
J
Jaegeuk Kim 已提交
1231 1232

	/* Flush all the NAT/SIT pages */
1233
	while (get_pages(sbi, F2FS_DIRTY_META)) {
C
Chao Yu 已提交
1234
		f2fs_sync_meta_pages(sbi, META, LONG_MAX, FS_CP_META_IO);
1235
		if (unlikely(f2fs_cp_error(sbi)))
1236
			break;
1237
	}
J
Jaegeuk Kim 已提交
1238 1239 1240 1241 1242

	/*
	 * modify checkpoint
	 * version number is already updated
	 */
C
Chao Yu 已提交
1243
	ckpt->elapsed_time = cpu_to_le64(get_mtime(sbi, true));
J
Jaegeuk Kim 已提交
1244
	ckpt->free_segment_count = cpu_to_le32(free_segments(sbi));
C
Chao Yu 已提交
1245
	for (i = 0; i < NR_CURSEG_NODE_TYPE; i++) {
J
Jaegeuk Kim 已提交
1246 1247 1248 1249 1250 1251 1252
		ckpt->cur_node_segno[i] =
			cpu_to_le32(curseg_segno(sbi, i + CURSEG_HOT_NODE));
		ckpt->cur_node_blkoff[i] =
			cpu_to_le16(curseg_blkoff(sbi, i + CURSEG_HOT_NODE));
		ckpt->alloc_type[i + CURSEG_HOT_NODE] =
				curseg_alloc_type(sbi, i + CURSEG_HOT_NODE);
	}
C
Chao Yu 已提交
1253
	for (i = 0; i < NR_CURSEG_DATA_TYPE; i++) {
J
Jaegeuk Kim 已提交
1254 1255 1256 1257 1258 1259 1260 1261 1262
		ckpt->cur_data_segno[i] =
			cpu_to_le32(curseg_segno(sbi, i + CURSEG_HOT_DATA));
		ckpt->cur_data_blkoff[i] =
			cpu_to_le16(curseg_blkoff(sbi, i + CURSEG_HOT_DATA));
		ckpt->alloc_type[i + CURSEG_HOT_DATA] =
				curseg_alloc_type(sbi, i + CURSEG_HOT_DATA);
	}

	/* 2 cp  + n data seg summary + orphan inode blocks */
C
Chao Yu 已提交
1263
	data_sum_blocks = f2fs_npages_for_summary_flush(sbi, false);
1264
	spin_lock_irqsave(&sbi->cp_lock, flags);
C
Chao Yu 已提交
1265
	if (data_sum_blocks < NR_CURSEG_DATA_TYPE)
1266
		__set_ckpt_flags(ckpt, CP_COMPACT_SUM_FLAG);
J
Jaegeuk Kim 已提交
1267
	else
1268
		__clear_ckpt_flags(ckpt, CP_COMPACT_SUM_FLAG);
1269
	spin_unlock_irqrestore(&sbi->cp_lock, flags);
J
Jaegeuk Kim 已提交
1270

1271
	orphan_blocks = GET_ORPHAN_BLOCKS(orphan_num);
C
Changman Lee 已提交
1272 1273
	ckpt->cp_pack_start_sum = cpu_to_le32(1 + cp_payload_blks +
			orphan_blocks);
J
Jaegeuk Kim 已提交
1274

1275
	if (__remain_node_summaries(cpc->reason))
C
Chao Yu 已提交
1276
		ckpt->cp_pack_total_block_count = cpu_to_le32(F2FS_CP_PACKS+
C
Changman Lee 已提交
1277 1278
				cp_payload_blks + data_sum_blocks +
				orphan_blocks + NR_CURSEG_NODE_TYPE);
1279
	else
C
Chao Yu 已提交
1280
		ckpt->cp_pack_total_block_count = cpu_to_le32(F2FS_CP_PACKS +
C
Changman Lee 已提交
1281 1282
				cp_payload_blks + data_sum_blocks +
				orphan_blocks);
1283

1284 1285
	/* update ckpt flag for checkpoint */
	update_ckpt_flags(sbi, cpc);
1286

J
Jaegeuk Kim 已提交
1287 1288 1289 1290
	/* update SIT/NAT bitmap */
	get_sit_bitmap(sbi, __bitmap_ptr(sbi, SIT_BITMAP));
	get_nat_bitmap(sbi, __bitmap_ptr(sbi, NAT_BITMAP));

K
Keith Mok 已提交
1291
	crc32 = f2fs_crc32(sbi, ckpt, le32_to_cpu(ckpt->checksum_offset));
J
Jaegeuk Kim 已提交
1292 1293
	*((__le32 *)((unsigned char *)ckpt +
				le32_to_cpu(ckpt->checksum_offset)))
J
Jaegeuk Kim 已提交
1294 1295
				= cpu_to_le32(crc32);

1296
	start_blk = __start_cp_next_addr(sbi);
J
Jaegeuk Kim 已提交
1297

1298 1299 1300 1301 1302 1303 1304 1305 1306 1307
	/* write nat bits */
	if (enabled_nat_bits(sbi, cpc)) {
		__u64 cp_ver = cur_cp_version(ckpt);
		block_t blk;

		cp_ver |= ((__u64)crc32 << 32);
		*(__le64 *)nm_i->nat_bits = cpu_to_le64(cp_ver);

		blk = start_blk + sbi->blocks_per_seg - nm_i->nat_bits_blocks;
		for (i = 0; i < nm_i->nat_bits_blocks; i++)
C
Chao Yu 已提交
1308
			f2fs_update_meta_page(sbi, nm_i->nat_bits +
1309 1310 1311 1312
					(i << F2FS_BLKSIZE_BITS), blk + i);

		/* Flush all the NAT BITS pages */
		while (get_pages(sbi, F2FS_DIRTY_META)) {
C
Chao Yu 已提交
1313 1314
			f2fs_sync_meta_pages(sbi, META, LONG_MAX,
							FS_CP_META_IO);
1315
			if (unlikely(f2fs_cp_error(sbi)))
1316
				break;
1317 1318 1319
		}
	}

J
Jaegeuk Kim 已提交
1320
	/* write out checkpoint buffer at block 0 */
C
Chao Yu 已提交
1321
	f2fs_update_meta_page(sbi, ckpt, start_blk++);
C
Chao Yu 已提交
1322 1323

	for (i = 1; i < 1 + cp_payload_blks; i++)
C
Chao Yu 已提交
1324
		f2fs_update_meta_page(sbi, (char *)ckpt + i * F2FS_BLKSIZE,
C
Chao Yu 已提交
1325
							start_blk++);
C
Changman Lee 已提交
1326

1327
	if (orphan_num) {
J
Jaegeuk Kim 已提交
1328 1329 1330 1331
		write_orphan_inodes(sbi, start_blk);
		start_blk += orphan_blocks;
	}

C
Chao Yu 已提交
1332
	f2fs_write_data_summaries(sbi, start_blk);
J
Jaegeuk Kim 已提交
1333
	start_blk += data_sum_blocks;
1334 1335 1336 1337 1338 1339

	/* Record write statistics in the hot node summary */
	kbytes_written = sbi->kbytes_written;
	if (sb->s_bdev->bd_part)
		kbytes_written += BD_PART_WRITTEN(sbi);

1340
	seg_i->journal->info.kbytes_written = cpu_to_le64(kbytes_written);
1341

1342
	if (__remain_node_summaries(cpc->reason)) {
C
Chao Yu 已提交
1343
		f2fs_write_node_summaries(sbi, start_blk);
J
Jaegeuk Kim 已提交
1344 1345 1346
		start_blk += NR_CURSEG_NODE_TYPE;
	}

1347 1348 1349
	/* update user_block_counts */
	sbi->last_valid_block_count = sbi->total_valid_block_count;
	percpu_counter_set(&sbi->alloc_valid_block_count, 0);
J
Jaegeuk Kim 已提交
1350

1351
	/* Here, we have one bio having CP pack except cp pack 2 page */
C
Chao Yu 已提交
1352
	f2fs_sync_meta_pages(sbi, META, LONG_MAX, FS_CP_META_IO);
1353 1354

	/* wait for previous submitted meta pages writeback */
1355
	wait_on_all_pages_writeback(sbi);
J
Jaegeuk Kim 已提交
1356

1357 1358 1359 1360
	/* flush all device cache */
	err = f2fs_flush_device_cache(sbi);
	if (err)
		return err;
J
Jaegeuk Kim 已提交
1361

1362 1363
	/* barrier and flush checkpoint cp pack 2 page if it can */
	commit_checkpoint(sbi, ckpt, start_blk);
1364 1365
	wait_on_all_pages_writeback(sbi);

C
Chao Yu 已提交
1366
	f2fs_release_ino_entry(sbi, false);
1367

1368
	clear_sbi_flag(sbi, SBI_IS_DIRTY);
1369
	clear_sbi_flag(sbi, SBI_NEED_CP);
1370
	__set_cp_next_pack(sbi);
C
Chao Yu 已提交
1371

1372 1373 1374 1375 1376 1377 1378 1379 1380 1381
	/*
	 * redirty superblock if metadata like node page or inode cache is
	 * updated during writing checkpoint.
	 */
	if (get_pages(sbi, F2FS_DIRTY_NODES) ||
			get_pages(sbi, F2FS_DIRTY_IMETA))
		set_sbi_flag(sbi, SBI_IS_DIRTY);

	f2fs_bug_on(sbi, get_pages(sbi, F2FS_DIRTY_DENTS));

1382
	return unlikely(f2fs_cp_error(sbi)) ? -EIO : 0;
J
Jaegeuk Kim 已提交
1383 1384
}

J
Jaegeuk Kim 已提交
1385
/*
A
arter97 已提交
1386
 * We guarantee that this checkpoint procedure will not fail.
J
Jaegeuk Kim 已提交
1387
 */
C
Chao Yu 已提交
1388
int f2fs_write_checkpoint(struct f2fs_sb_info *sbi, struct cp_control *cpc)
J
Jaegeuk Kim 已提交
1389 1390 1391
{
	struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
	unsigned long long ckpt_ver;
C
Chao Yu 已提交
1392
	int err = 0;
J
Jaegeuk Kim 已提交
1393

1394
	mutex_lock(&sbi->cp_mutex);
J
Jaegeuk Kim 已提交
1395

1396
	if (!is_sbi_flag_set(sbi, SBI_IS_DIRTY) &&
1397 1398
		((cpc->reason & CP_FASTBOOT) || (cpc->reason & CP_SYNC) ||
		((cpc->reason & CP_DISCARD) && !sbi->discard_blks)))
J
Jaegeuk Kim 已提交
1399
		goto out;
C
Chao Yu 已提交
1400 1401
	if (unlikely(f2fs_cp_error(sbi))) {
		err = -EIO;
1402
		goto out;
C
Chao Yu 已提交
1403 1404 1405
	}
	if (f2fs_readonly(sbi->sb)) {
		err = -EROFS;
1406
		goto out;
C
Chao Yu 已提交
1407
	}
W
Wanpeng Li 已提交
1408 1409 1410

	trace_f2fs_write_checkpoint(sbi->sb, cpc->reason, "start block_ops");

C
Chao Yu 已提交
1411 1412
	err = block_operations(sbi);
	if (err)
1413
		goto out;
J
Jaegeuk Kim 已提交
1414

1415
	trace_f2fs_write_checkpoint(sbi->sb, cpc->reason, "finish block_ops");
1416

1417
	f2fs_flush_merged_writes(sbi);
J
Jaegeuk Kim 已提交
1418

1419
	/* this is the case of multiple fstrims without any changes */
1420
	if (cpc->reason & CP_DISCARD) {
C
Chao Yu 已提交
1421
		if (!f2fs_exist_trim_candidates(sbi, cpc)) {
1422 1423 1424 1425
			unblock_operations(sbi);
			goto out;
		}

1426 1427 1428
		if (NM_I(sbi)->dirty_nat_cnt == 0 &&
				SIT_I(sbi)->dirty_sentries == 0 &&
				prefree_segments(sbi) == 0) {
C
Chao Yu 已提交
1429 1430
			f2fs_flush_sit_entries(sbi, cpc);
			f2fs_clear_prefree_segments(sbi, cpc);
1431 1432 1433
			unblock_operations(sbi);
			goto out;
		}
1434 1435
	}

J
Jaegeuk Kim 已提交
1436 1437 1438 1439 1440
	/*
	 * update checkpoint pack index
	 * Increase the version number so that
	 * SIT entries and seg summaries are written at correct place
	 */
1441
	ckpt_ver = cur_cp_version(ckpt);
J
Jaegeuk Kim 已提交
1442 1443 1444
	ckpt->checkpoint_ver = cpu_to_le64(++ckpt_ver);

	/* write cached NAT/SIT entries to NAT/SIT area */
C
Chao Yu 已提交
1445 1446
	f2fs_flush_nat_entries(sbi, cpc);
	f2fs_flush_sit_entries(sbi, cpc);
J
Jaegeuk Kim 已提交
1447 1448

	/* unlock all the fs_lock[] in do_checkpoint() */
C
Chao Yu 已提交
1449
	err = do_checkpoint(sbi, cpc);
1450
	if (err)
C
Chao Yu 已提交
1451
		f2fs_release_discard_addrs(sbi);
1452
	else
C
Chao Yu 已提交
1453
		f2fs_clear_prefree_segments(sbi, cpc);
C
Chao Yu 已提交
1454

J
Jaegeuk Kim 已提交
1455
	unblock_operations(sbi);
1456
	stat_inc_cp_count(sbi->stat_info);
1457

1458
	if (cpc->reason & CP_RECOVERY)
1459 1460
		f2fs_msg(sbi->sb, KERN_NOTICE,
			"checkpoint: version = %llx", ckpt_ver);
1461 1462

	/* do checkpoint periodically */
1463
	f2fs_update_time(sbi, CP_TIME);
1464
	trace_f2fs_write_checkpoint(sbi->sb, cpc->reason, "finish checkpoint");
J
Jaegeuk Kim 已提交
1465 1466
out:
	mutex_unlock(&sbi->cp_mutex);
C
Chao Yu 已提交
1467
	return err;
J
Jaegeuk Kim 已提交
1468 1469
}

C
Chao Yu 已提交
1470
void f2fs_init_ino_entry_info(struct f2fs_sb_info *sbi)
J
Jaegeuk Kim 已提交
1471
{
J
Jaegeuk Kim 已提交
1472 1473 1474
	int i;

	for (i = 0; i < MAX_INO_ENTRY; i++) {
1475 1476 1477 1478 1479 1480
		struct inode_management *im = &sbi->im[i];

		INIT_RADIX_TREE(&im->ino_root, GFP_ATOMIC);
		spin_lock_init(&im->ino_lock);
		INIT_LIST_HEAD(&im->ino_list);
		im->ino_num = 0;
J
Jaegeuk Kim 已提交
1481 1482
	}

C
Chao Yu 已提交
1483
	sbi->max_orphans = (sbi->blocks_per_seg - F2FS_CP_PACKS -
1484 1485
			NR_CURSEG_TYPE - __cp_payload(sbi)) *
				F2FS_ORPHANS_PER_BLOCK;
J
Jaegeuk Kim 已提交
1486 1487
}

C
Chao Yu 已提交
1488
int __init f2fs_create_checkpoint_caches(void)
J
Jaegeuk Kim 已提交
1489
{
J
Jaegeuk Kim 已提交
1490 1491 1492
	ino_entry_slab = f2fs_kmem_cache_create("f2fs_ino_entry",
			sizeof(struct ino_entry));
	if (!ino_entry_slab)
J
Jaegeuk Kim 已提交
1493
		return -ENOMEM;
C
Chao Yu 已提交
1494
	f2fs_inode_entry_slab = f2fs_kmem_cache_create("f2fs_inode_entry",
1495
			sizeof(struct inode_entry));
C
Chao Yu 已提交
1496
	if (!f2fs_inode_entry_slab) {
J
Jaegeuk Kim 已提交
1497
		kmem_cache_destroy(ino_entry_slab);
J
Jaegeuk Kim 已提交
1498 1499 1500 1501 1502
		return -ENOMEM;
	}
	return 0;
}

C
Chao Yu 已提交
1503
void f2fs_destroy_checkpoint_caches(void)
J
Jaegeuk Kim 已提交
1504
{
J
Jaegeuk Kim 已提交
1505
	kmem_cache_destroy(ino_entry_slab);
C
Chao Yu 已提交
1506
	kmem_cache_destroy(f2fs_inode_entry_slab);
J
Jaegeuk Kim 已提交
1507
}