blob: aef32f36e2f3f7ce12c5578b65cd6e34ca202416 [file] [log] [blame]
Linus Torvalds8005ecc2012-12-20 13:54:51 -08001/*
2 * fs/f2fs/checkpoint.c
3 *
4 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com/
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/fs.h>
12#include <linux/bio.h>
13#include <linux/mpage.h>
14#include <linux/writeback.h>
15#include <linux/blkdev.h>
16#include <linux/f2fs_fs.h>
17#include <linux/pagevec.h>
18#include <linux/swap.h>
19
20#include "f2fs.h"
21#include "node.h"
22#include "segment.h"
23#include <trace/events/f2fs.h>
24
25static struct kmem_cache *orphan_entry_slab;
26static struct kmem_cache *inode_entry_slab;
27
28/*
29 * We guarantee no failure on the returned page.
30 */
31struct page *grab_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
32{
Changman Leeb1a94e82013-11-15 10:42:51 +090033 struct address_space *mapping = META_MAPPING(sbi);
Linus Torvalds8005ecc2012-12-20 13:54:51 -080034 struct page *page = NULL;
35repeat:
36 page = grab_cache_page(mapping, index);
37 if (!page) {
38 cond_resched();
39 goto repeat;
40 }
41
42 /* We wait writeback only inside grab_meta_page() */
43 wait_on_page_writeback(page);
44 SetPageUptodate(page);
45 return page;
46}
47
48/*
49 * We guarantee no failure on the returned page.
50 */
51struct page *get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
52{
Changman Leeb1a94e82013-11-15 10:42:51 +090053 struct address_space *mapping = META_MAPPING(sbi);
Linus Torvalds8005ecc2012-12-20 13:54:51 -080054 struct page *page;
55repeat:
56 page = grab_cache_page(mapping, index);
57 if (!page) {
58 cond_resched();
59 goto repeat;
60 }
61 if (PageUptodate(page))
62 goto out;
63
Changman Leeb1a94e82013-11-15 10:42:51 +090064 if (f2fs_submit_page_bio(sbi, page, index,
65 READ_SYNC | REQ_META | REQ_PRIO))
Linus Torvalds8005ecc2012-12-20 13:54:51 -080066 goto repeat;
67
68 lock_page(page);
Changman Leeb1a94e82013-11-15 10:42:51 +090069 if (unlikely(page->mapping != mapping)) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -080070 f2fs_put_page(page, 1);
71 goto repeat;
72 }
73out:
74 mark_page_accessed(page);
75 return page;
76}
77
Chao Yu624b14f2014-02-07 16:11:53 +080078inline int get_max_meta_blks(struct f2fs_sb_info *sbi, int type)
79{
80 switch (type) {
81 case META_NAT:
82 return NM_I(sbi)->max_nid / NAT_ENTRY_PER_BLOCK;
83 case META_SIT:
84 return SIT_BLK_CNT(sbi);
Chao Yu99926a92014-02-27 19:12:24 +080085 case META_SSA:
Chao Yu624b14f2014-02-07 16:11:53 +080086 case META_CP:
87 return 0;
88 default:
89 BUG();
90 }
91}
92
93/*
Chao Yu99926a92014-02-27 19:12:24 +080094 * Readahead CP/NAT/SIT/SSA pages
Chao Yu624b14f2014-02-07 16:11:53 +080095 */
96int ra_meta_pages(struct f2fs_sb_info *sbi, int start, int nrpages, int type)
97{
98 block_t prev_blk_addr = 0;
99 struct page *page;
100 int blkno = start;
101 int max_blks = get_max_meta_blks(sbi, type);
102
103 struct f2fs_io_info fio = {
104 .type = META,
105 .rw = READ_SYNC | REQ_META | REQ_PRIO
106 };
107
108 for (; nrpages-- > 0; blkno++) {
109 block_t blk_addr;
110
111 switch (type) {
112 case META_NAT:
113 /* get nat block addr */
114 if (unlikely(blkno >= max_blks))
115 blkno = 0;
116 blk_addr = current_nat_addr(sbi,
117 blkno * NAT_ENTRY_PER_BLOCK);
118 break;
119 case META_SIT:
120 /* get sit block addr */
121 if (unlikely(blkno >= max_blks))
122 goto out;
123 blk_addr = current_sit_addr(sbi,
124 blkno * SIT_ENTRY_PER_BLOCK);
125 if (blkno != start && prev_blk_addr + 1 != blk_addr)
126 goto out;
127 prev_blk_addr = blk_addr;
128 break;
Chao Yu99926a92014-02-27 19:12:24 +0800129 case META_SSA:
Chao Yu624b14f2014-02-07 16:11:53 +0800130 case META_CP:
Chao Yu99926a92014-02-27 19:12:24 +0800131 /* get ssa/cp block addr */
Chao Yu624b14f2014-02-07 16:11:53 +0800132 blk_addr = blkno;
133 break;
134 default:
135 BUG();
136 }
137
138 page = grab_cache_page(META_MAPPING(sbi), blk_addr);
139 if (!page)
140 continue;
141 if (PageUptodate(page)) {
142 mark_page_accessed(page);
143 f2fs_put_page(page, 1);
144 continue;
145 }
146
147 f2fs_submit_page_mbio(sbi, page, blk_addr, &fio);
148 mark_page_accessed(page);
149 f2fs_put_page(page, 0);
150 }
151out:
152 f2fs_submit_merged_bio(sbi, META, READ);
153 return blkno - start;
154}
155
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800156static int f2fs_write_meta_page(struct page *page,
157 struct writeback_control *wbc)
158{
159 struct inode *inode = page->mapping->host;
160 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
161
Jaegeuk Kim4c57cbe2014-02-05 13:03:57 +0900162 if (unlikely(sbi->por_doing))
Changman Leeb1a94e82013-11-15 10:42:51 +0900163 goto redirty_out;
Changman Leeb1a94e82013-11-15 10:42:51 +0900164 if (wbc->for_reclaim)
165 goto redirty_out;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800166
Jaegeuk Kim4c57cbe2014-02-05 13:03:57 +0900167 /* Should not write any meta pages, if any IO error was occurred */
168 if (unlikely(is_set_ckpt_flags(F2FS_CKPT(sbi), CP_ERROR_FLAG)))
169 goto no_write;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800170
Jaegeuk Kim4c57cbe2014-02-05 13:03:57 +0900171 wait_on_page_writeback(page);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800172 write_meta_page(sbi, page);
Jaegeuk Kim4c57cbe2014-02-05 13:03:57 +0900173no_write:
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800174 dec_page_count(sbi, F2FS_DIRTY_META);
175 unlock_page(page);
176 return 0;
Changman Leeb1a94e82013-11-15 10:42:51 +0900177
178redirty_out:
179 dec_page_count(sbi, F2FS_DIRTY_META);
180 wbc->pages_skipped++;
Chao Yu5c19ba62014-02-28 10:12:05 +0800181 account_page_redirty(page);
Changman Leeb1a94e82013-11-15 10:42:51 +0900182 set_page_dirty(page);
183 return AOP_WRITEPAGE_ACTIVATE;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800184}
185
186static int f2fs_write_meta_pages(struct address_space *mapping,
187 struct writeback_control *wbc)
188{
189 struct f2fs_sb_info *sbi = F2FS_SB(mapping->host->i_sb);
Jaegeuk Kimc7f9f432014-03-18 12:40:49 +0900190 int nrpages = nr_pages_to_skip(sbi, META);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800191 long written;
192
Changman Leeb1a94e82013-11-15 10:42:51 +0900193 /* collect a number of dirty meta pages and write together */
Jaegeuk Kim823d59f2014-03-18 13:43:05 +0900194 if (wbc->for_kupdate || get_pages(sbi, F2FS_DIRTY_META) < nrpages)
195 goto skip_write;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800196
197 /* if mounting is failed, skip writing node pages */
198 mutex_lock(&sbi->cp_mutex);
Changman Leeb1a94e82013-11-15 10:42:51 +0900199 written = sync_meta_pages(sbi, META, nrpages);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800200 mutex_unlock(&sbi->cp_mutex);
201 wbc->nr_to_write -= written;
202 return 0;
Jaegeuk Kim823d59f2014-03-18 13:43:05 +0900203
204skip_write:
205 wbc->pages_skipped += get_pages(sbi, F2FS_DIRTY_META);
206 return 0;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800207}
208
209long sync_meta_pages(struct f2fs_sb_info *sbi, enum page_type type,
210 long nr_to_write)
211{
Changman Leeb1a94e82013-11-15 10:42:51 +0900212 struct address_space *mapping = META_MAPPING(sbi);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800213 pgoff_t index = 0, end = LONG_MAX;
214 struct pagevec pvec;
215 long nwritten = 0;
216 struct writeback_control wbc = {
217 .for_reclaim = 0,
218 };
219
220 pagevec_init(&pvec, 0);
221
222 while (index <= end) {
223 int i, nr_pages;
224 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
225 PAGECACHE_TAG_DIRTY,
226 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
Changman Leeb1a94e82013-11-15 10:42:51 +0900227 if (unlikely(nr_pages == 0))
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800228 break;
229
230 for (i = 0; i < nr_pages; i++) {
231 struct page *page = pvec.pages[i];
Jaegeuk Kim4c57cbe2014-02-05 13:03:57 +0900232
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800233 lock_page(page);
Jaegeuk Kim4c57cbe2014-02-05 13:03:57 +0900234
235 if (unlikely(page->mapping != mapping)) {
236continue_unlock:
237 unlock_page(page);
238 continue;
239 }
240 if (!PageDirty(page)) {
241 /* someone wrote it for us */
242 goto continue_unlock;
243 }
244
245 if (!clear_page_dirty_for_io(page))
246 goto continue_unlock;
247
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800248 if (f2fs_write_meta_page(page, &wbc)) {
249 unlock_page(page);
250 break;
251 }
Changman Leeb1a94e82013-11-15 10:42:51 +0900252 nwritten++;
253 if (unlikely(nwritten >= nr_to_write))
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800254 break;
255 }
256 pagevec_release(&pvec);
257 cond_resched();
258 }
259
260 if (nwritten)
Changman Leeb1a94e82013-11-15 10:42:51 +0900261 f2fs_submit_merged_bio(sbi, type, WRITE);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800262
263 return nwritten;
264}
265
266static int f2fs_set_meta_page_dirty(struct page *page)
267{
268 struct address_space *mapping = page->mapping;
269 struct f2fs_sb_info *sbi = F2FS_SB(mapping->host->i_sb);
270
271 trace_f2fs_set_page_dirty(page, META);
272
273 SetPageUptodate(page);
274 if (!PageDirty(page)) {
275 __set_page_dirty_nobuffers(page);
276 inc_page_count(sbi, F2FS_DIRTY_META);
277 return 1;
278 }
279 return 0;
280}
281
282const struct address_space_operations f2fs_meta_aops = {
283 .writepage = f2fs_write_meta_page,
284 .writepages = f2fs_write_meta_pages,
285 .set_page_dirty = f2fs_set_meta_page_dirty,
286};
287
288int acquire_orphan_inode(struct f2fs_sb_info *sbi)
289{
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800290 int err = 0;
291
Changman Leeb1a94e82013-11-15 10:42:51 +0900292 spin_lock(&sbi->orphan_inode_lock);
293 if (unlikely(sbi->n_orphans >= sbi->max_orphans))
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800294 err = -ENOSPC;
295 else
296 sbi->n_orphans++;
Changman Leeb1a94e82013-11-15 10:42:51 +0900297 spin_unlock(&sbi->orphan_inode_lock);
298
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800299 return err;
300}
301
302void release_orphan_inode(struct f2fs_sb_info *sbi)
303{
Changman Leeb1a94e82013-11-15 10:42:51 +0900304 spin_lock(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800305 f2fs_bug_on(sbi->n_orphans == 0);
306 sbi->n_orphans--;
Changman Leeb1a94e82013-11-15 10:42:51 +0900307 spin_unlock(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800308}
309
310void add_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
311{
312 struct list_head *head, *this;
313 struct orphan_inode_entry *new = NULL, *orphan = NULL;
314
Changman Leeb1a94e82013-11-15 10:42:51 +0900315 new = f2fs_kmem_cache_alloc(orphan_entry_slab, GFP_ATOMIC);
316 new->ino = ino;
317
318 spin_lock(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800319 head = &sbi->orphan_inode_list;
320 list_for_each(this, head) {
321 orphan = list_entry(this, struct orphan_inode_entry, list);
Changman Leeb1a94e82013-11-15 10:42:51 +0900322 if (orphan->ino == ino) {
323 spin_unlock(&sbi->orphan_inode_lock);
324 kmem_cache_free(orphan_entry_slab, new);
325 return;
326 }
327
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800328 if (orphan->ino > ino)
329 break;
330 orphan = NULL;
331 }
332
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800333 /* add new_oentry into list which is sorted by inode number */
334 if (orphan)
335 list_add(&new->list, this->prev);
336 else
337 list_add_tail(&new->list, head);
Changman Leeb1a94e82013-11-15 10:42:51 +0900338 spin_unlock(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800339}
340
341void remove_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
342{
343 struct list_head *head;
344 struct orphan_inode_entry *orphan;
345
Changman Leeb1a94e82013-11-15 10:42:51 +0900346 spin_lock(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800347 head = &sbi->orphan_inode_list;
348 list_for_each_entry(orphan, head, list) {
349 if (orphan->ino == ino) {
350 list_del(&orphan->list);
351 kmem_cache_free(orphan_entry_slab, orphan);
352 f2fs_bug_on(sbi->n_orphans == 0);
353 sbi->n_orphans--;
354 break;
355 }
356 }
Changman Leeb1a94e82013-11-15 10:42:51 +0900357 spin_unlock(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800358}
359
360static void recover_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
361{
362 struct inode *inode = f2fs_iget(sbi->sb, ino);
363 f2fs_bug_on(IS_ERR(inode));
364 clear_nlink(inode);
365
366 /* truncate all the data during iput */
367 iput(inode);
368}
369
Changman Leeb1a94e82013-11-15 10:42:51 +0900370void recover_orphan_inodes(struct f2fs_sb_info *sbi)
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800371{
372 block_t start_blk, orphan_blkaddr, i, j;
373
374 if (!is_set_ckpt_flags(F2FS_CKPT(sbi), CP_ORPHAN_PRESENT_FLAG))
Changman Leeb1a94e82013-11-15 10:42:51 +0900375 return;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800376
377 sbi->por_doing = true;
378 start_blk = __start_cp_addr(sbi) + 1;
379 orphan_blkaddr = __start_sum_addr(sbi) - 1;
380
Chao Yu624b14f2014-02-07 16:11:53 +0800381 ra_meta_pages(sbi, start_blk, orphan_blkaddr, META_CP);
382
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800383 for (i = 0; i < orphan_blkaddr; i++) {
384 struct page *page = get_meta_page(sbi, start_blk + i);
385 struct f2fs_orphan_block *orphan_blk;
386
387 orphan_blk = (struct f2fs_orphan_block *)page_address(page);
388 for (j = 0; j < le32_to_cpu(orphan_blk->entry_count); j++) {
389 nid_t ino = le32_to_cpu(orphan_blk->ino[j]);
390 recover_orphan_inode(sbi, ino);
391 }
392 f2fs_put_page(page, 1);
393 }
394 /* clear Orphan Flag */
395 clear_ckpt_flags(F2FS_CKPT(sbi), CP_ORPHAN_PRESENT_FLAG);
396 sbi->por_doing = false;
Changman Leeb1a94e82013-11-15 10:42:51 +0900397 return;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800398}
399
400static void write_orphan_inodes(struct f2fs_sb_info *sbi, block_t start_blk)
401{
Changman Leeb1a94e82013-11-15 10:42:51 +0900402 struct list_head *head;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800403 struct f2fs_orphan_block *orphan_blk = NULL;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800404 unsigned int nentries = 0;
Changman Leeb1a94e82013-11-15 10:42:51 +0900405 unsigned short index;
406 unsigned short orphan_blocks = (unsigned short)((sbi->n_orphans +
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800407 (F2FS_ORPHANS_PER_BLOCK - 1)) / F2FS_ORPHANS_PER_BLOCK);
Changman Leeb1a94e82013-11-15 10:42:51 +0900408 struct page *page = NULL;
409 struct orphan_inode_entry *orphan = NULL;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800410
Changman Leeb1a94e82013-11-15 10:42:51 +0900411 for (index = 0; index < orphan_blocks; index++)
412 grab_meta_page(sbi, start_blk + index);
413
414 index = 1;
415 spin_lock(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800416 head = &sbi->orphan_inode_list;
417
418 /* loop for each orphan inode entry and write them in Jornal block */
Changman Leeb1a94e82013-11-15 10:42:51 +0900419 list_for_each_entry(orphan, head, list) {
420 if (!page) {
421 page = find_get_page(META_MAPPING(sbi), start_blk++);
422 f2fs_bug_on(!page);
423 orphan_blk =
424 (struct f2fs_orphan_block *)page_address(page);
425 memset(orphan_blk, 0, sizeof(*orphan_blk));
426 f2fs_put_page(page, 0);
427 }
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800428
Changman Leeb1a94e82013-11-15 10:42:51 +0900429 orphan_blk->ino[nentries++] = cpu_to_le32(orphan->ino);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800430
431 if (nentries == F2FS_ORPHANS_PER_BLOCK) {
432 /*
433 * an orphan block is full of 1020 entries,
434 * then we need to flush current orphan blocks
435 * and bring another one in memory
436 */
437 orphan_blk->blk_addr = cpu_to_le16(index);
438 orphan_blk->blk_count = cpu_to_le16(orphan_blocks);
439 orphan_blk->entry_count = cpu_to_le32(nentries);
440 set_page_dirty(page);
441 f2fs_put_page(page, 1);
442 index++;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800443 nentries = 0;
444 page = NULL;
445 }
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800446 }
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800447
Changman Leeb1a94e82013-11-15 10:42:51 +0900448 if (page) {
449 orphan_blk->blk_addr = cpu_to_le16(index);
450 orphan_blk->blk_count = cpu_to_le16(orphan_blocks);
451 orphan_blk->entry_count = cpu_to_le32(nentries);
452 set_page_dirty(page);
453 f2fs_put_page(page, 1);
454 }
455
456 spin_unlock(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800457}
458
459static struct page *validate_checkpoint(struct f2fs_sb_info *sbi,
460 block_t cp_addr, unsigned long long *version)
461{
462 struct page *cp_page_1, *cp_page_2 = NULL;
463 unsigned long blk_size = sbi->blocksize;
464 struct f2fs_checkpoint *cp_block;
465 unsigned long long cur_version = 0, pre_version = 0;
466 size_t crc_offset;
467 __u32 crc = 0;
468
469 /* Read the 1st cp block in this CP pack */
470 cp_page_1 = get_meta_page(sbi, cp_addr);
471
472 /* get the version number */
473 cp_block = (struct f2fs_checkpoint *)page_address(cp_page_1);
474 crc_offset = le32_to_cpu(cp_block->checksum_offset);
475 if (crc_offset >= blk_size)
476 goto invalid_cp1;
477
478 crc = le32_to_cpu(*((__u32 *)((unsigned char *)cp_block + crc_offset)));
479 if (!f2fs_crc_valid(crc, cp_block, crc_offset))
480 goto invalid_cp1;
481
482 pre_version = cur_cp_version(cp_block);
483
484 /* Read the 2nd cp block in this CP pack */
485 cp_addr += le32_to_cpu(cp_block->cp_pack_total_block_count) - 1;
486 cp_page_2 = get_meta_page(sbi, cp_addr);
487
488 cp_block = (struct f2fs_checkpoint *)page_address(cp_page_2);
489 crc_offset = le32_to_cpu(cp_block->checksum_offset);
490 if (crc_offset >= blk_size)
491 goto invalid_cp2;
492
493 crc = le32_to_cpu(*((__u32 *)((unsigned char *)cp_block + crc_offset)));
494 if (!f2fs_crc_valid(crc, cp_block, crc_offset))
495 goto invalid_cp2;
496
497 cur_version = cur_cp_version(cp_block);
498
499 if (cur_version == pre_version) {
500 *version = cur_version;
501 f2fs_put_page(cp_page_2, 1);
502 return cp_page_1;
503 }
504invalid_cp2:
505 f2fs_put_page(cp_page_2, 1);
506invalid_cp1:
507 f2fs_put_page(cp_page_1, 1);
508 return NULL;
509}
510
511int get_valid_checkpoint(struct f2fs_sb_info *sbi)
512{
513 struct f2fs_checkpoint *cp_block;
514 struct f2fs_super_block *fsb = sbi->raw_super;
515 struct page *cp1, *cp2, *cur_page;
516 unsigned long blk_size = sbi->blocksize;
517 unsigned long long cp1_version = 0, cp2_version = 0;
518 unsigned long long cp_start_blk_no;
519
520 sbi->ckpt = kzalloc(blk_size, GFP_KERNEL);
521 if (!sbi->ckpt)
522 return -ENOMEM;
523 /*
524 * Finding out valid cp block involves read both
525 * sets( cp pack1 and cp pack 2)
526 */
527 cp_start_blk_no = le32_to_cpu(fsb->cp_blkaddr);
528 cp1 = validate_checkpoint(sbi, cp_start_blk_no, &cp1_version);
529
530 /* The second checkpoint pack should start at the next segment */
Changman Leeb1a94e82013-11-15 10:42:51 +0900531 cp_start_blk_no += ((unsigned long long)1) <<
532 le32_to_cpu(fsb->log_blocks_per_seg);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800533 cp2 = validate_checkpoint(sbi, cp_start_blk_no, &cp2_version);
534
535 if (cp1 && cp2) {
536 if (ver_after(cp2_version, cp1_version))
537 cur_page = cp2;
538 else
539 cur_page = cp1;
540 } else if (cp1) {
541 cur_page = cp1;
542 } else if (cp2) {
543 cur_page = cp2;
544 } else {
545 goto fail_no_cp;
546 }
547
548 cp_block = (struct f2fs_checkpoint *)page_address(cur_page);
549 memcpy(sbi->ckpt, cp_block, blk_size);
550
551 f2fs_put_page(cp1, 1);
552 f2fs_put_page(cp2, 1);
553 return 0;
554
555fail_no_cp:
556 kfree(sbi->ckpt);
557 return -EINVAL;
558}
559
560static int __add_dirty_inode(struct inode *inode, struct dir_inode_entry *new)
561{
562 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
563 struct list_head *head = &sbi->dir_inode_list;
564 struct list_head *this;
565
566 list_for_each(this, head) {
567 struct dir_inode_entry *entry;
568 entry = list_entry(this, struct dir_inode_entry, list);
Changman Leeb1a94e82013-11-15 10:42:51 +0900569 if (unlikely(entry->inode == inode))
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800570 return -EEXIST;
571 }
572 list_add_tail(&new->list, head);
573 stat_inc_dirty_dir(sbi);
574 return 0;
575}
576
577void set_dirty_dir_page(struct inode *inode, struct page *page)
578{
579 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
580 struct dir_inode_entry *new;
581
582 if (!S_ISDIR(inode->i_mode))
583 return;
584
585 new = f2fs_kmem_cache_alloc(inode_entry_slab, GFP_NOFS);
586 new->inode = inode;
587 INIT_LIST_HEAD(&new->list);
588
589 spin_lock(&sbi->dir_inode_lock);
590 if (__add_dirty_inode(inode, new))
591 kmem_cache_free(inode_entry_slab, new);
592
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800593 inode_inc_dirty_dents(inode);
594 SetPagePrivate(page);
595 spin_unlock(&sbi->dir_inode_lock);
596}
597
598void add_dirty_dir_inode(struct inode *inode)
599{
600 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
601 struct dir_inode_entry *new =
602 f2fs_kmem_cache_alloc(inode_entry_slab, GFP_NOFS);
603
604 new->inode = inode;
605 INIT_LIST_HEAD(&new->list);
606
607 spin_lock(&sbi->dir_inode_lock);
608 if (__add_dirty_inode(inode, new))
609 kmem_cache_free(inode_entry_slab, new);
610 spin_unlock(&sbi->dir_inode_lock);
611}
612
613void remove_dirty_dir_inode(struct inode *inode)
614{
615 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
Changman Leeb1a94e82013-11-15 10:42:51 +0900616
617 struct list_head *this, *head;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800618
619 if (!S_ISDIR(inode->i_mode))
620 return;
621
622 spin_lock(&sbi->dir_inode_lock);
Jaegeuk Kimbfcac4d2014-03-18 12:33:06 +0900623 if (get_dirty_dents(inode)) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800624 spin_unlock(&sbi->dir_inode_lock);
625 return;
626 }
627
Changman Leeb1a94e82013-11-15 10:42:51 +0900628 head = &sbi->dir_inode_list;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800629 list_for_each(this, head) {
630 struct dir_inode_entry *entry;
631 entry = list_entry(this, struct dir_inode_entry, list);
632 if (entry->inode == inode) {
633 list_del(&entry->list);
634 kmem_cache_free(inode_entry_slab, entry);
635 stat_dec_dirty_dir(sbi);
636 break;
637 }
638 }
639 spin_unlock(&sbi->dir_inode_lock);
640
641 /* Only from the recovery routine */
642 if (is_inode_flag_set(F2FS_I(inode), FI_DELAY_IPUT)) {
643 clear_inode_flag(F2FS_I(inode), FI_DELAY_IPUT);
644 iput(inode);
645 }
646}
647
648struct inode *check_dirty_dir_inode(struct f2fs_sb_info *sbi, nid_t ino)
649{
Changman Leeb1a94e82013-11-15 10:42:51 +0900650
651 struct list_head *this, *head;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800652 struct inode *inode = NULL;
653
654 spin_lock(&sbi->dir_inode_lock);
Changman Leeb1a94e82013-11-15 10:42:51 +0900655
656 head = &sbi->dir_inode_list;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800657 list_for_each(this, head) {
658 struct dir_inode_entry *entry;
659 entry = list_entry(this, struct dir_inode_entry, list);
660 if (entry->inode->i_ino == ino) {
661 inode = entry->inode;
662 break;
663 }
664 }
665 spin_unlock(&sbi->dir_inode_lock);
666 return inode;
667}
668
669void sync_dirty_dir_inodes(struct f2fs_sb_info *sbi)
670{
Changman Leeb1a94e82013-11-15 10:42:51 +0900671 struct list_head *head;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800672 struct dir_inode_entry *entry;
673 struct inode *inode;
674retry:
675 spin_lock(&sbi->dir_inode_lock);
Changman Leeb1a94e82013-11-15 10:42:51 +0900676
677 head = &sbi->dir_inode_list;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800678 if (list_empty(head)) {
679 spin_unlock(&sbi->dir_inode_lock);
680 return;
681 }
682 entry = list_entry(head->next, struct dir_inode_entry, list);
683 inode = igrab(entry->inode);
684 spin_unlock(&sbi->dir_inode_lock);
685 if (inode) {
Jaegeuk Kimc7f9f432014-03-18 12:40:49 +0900686 filemap_fdatawrite(inode->i_mapping);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800687 iput(inode);
688 } else {
689 /*
690 * We should submit bio, since it exists several
691 * wribacking dentry pages in the freeing inode.
692 */
Changman Leeb1a94e82013-11-15 10:42:51 +0900693 f2fs_submit_merged_bio(sbi, DATA, WRITE);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800694 }
695 goto retry;
696}
697
698/*
699 * Freeze all the FS-operations for checkpoint.
700 */
701static void block_operations(struct f2fs_sb_info *sbi)
702{
703 struct writeback_control wbc = {
704 .sync_mode = WB_SYNC_ALL,
705 .nr_to_write = LONG_MAX,
706 .for_reclaim = 0,
707 };
708 struct blk_plug plug;
709
710 blk_start_plug(&plug);
711
712retry_flush_dents:
713 f2fs_lock_all(sbi);
714 /* write all the dirty dentry pages */
715 if (get_pages(sbi, F2FS_DIRTY_DENTS)) {
716 f2fs_unlock_all(sbi);
717 sync_dirty_dir_inodes(sbi);
718 goto retry_flush_dents;
719 }
720
721 /*
722 * POR: we should ensure that there is no dirty node pages
723 * until finishing nat/sit flush.
724 */
725retry_flush_nodes:
726 mutex_lock(&sbi->node_write);
727
728 if (get_pages(sbi, F2FS_DIRTY_NODES)) {
729 mutex_unlock(&sbi->node_write);
730 sync_node_pages(sbi, 0, &wbc);
731 goto retry_flush_nodes;
732 }
733 blk_finish_plug(&plug);
734}
735
736static void unblock_operations(struct f2fs_sb_info *sbi)
737{
738 mutex_unlock(&sbi->node_write);
739 f2fs_unlock_all(sbi);
740}
741
742static void wait_on_all_pages_writeback(struct f2fs_sb_info *sbi)
743{
744 DEFINE_WAIT(wait);
745
746 for (;;) {
747 prepare_to_wait(&sbi->cp_wait, &wait, TASK_UNINTERRUPTIBLE);
748
749 if (!get_pages(sbi, F2FS_WRITEBACK))
750 break;
751
752 io_schedule();
753 }
754 finish_wait(&sbi->cp_wait, &wait);
755}
756
757static void do_checkpoint(struct f2fs_sb_info *sbi, bool is_umount)
758{
759 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
760 nid_t last_nid = 0;
761 block_t start_blk;
762 struct page *cp_page;
763 unsigned int data_sum_blocks, orphan_blocks;
764 __u32 crc32 = 0;
765 void *kaddr;
766 int i;
767
768 /* Flush all the NAT/SIT pages */
769 while (get_pages(sbi, F2FS_DIRTY_META))
770 sync_meta_pages(sbi, META, LONG_MAX);
771
772 next_free_nid(sbi, &last_nid);
773
774 /*
775 * modify checkpoint
776 * version number is already updated
777 */
778 ckpt->elapsed_time = cpu_to_le64(get_mtime(sbi));
779 ckpt->valid_block_count = cpu_to_le64(valid_user_blocks(sbi));
780 ckpt->free_segment_count = cpu_to_le32(free_segments(sbi));
781 for (i = 0; i < 3; i++) {
782 ckpt->cur_node_segno[i] =
783 cpu_to_le32(curseg_segno(sbi, i + CURSEG_HOT_NODE));
784 ckpt->cur_node_blkoff[i] =
785 cpu_to_le16(curseg_blkoff(sbi, i + CURSEG_HOT_NODE));
786 ckpt->alloc_type[i + CURSEG_HOT_NODE] =
787 curseg_alloc_type(sbi, i + CURSEG_HOT_NODE);
788 }
789 for (i = 0; i < 3; i++) {
790 ckpt->cur_data_segno[i] =
791 cpu_to_le32(curseg_segno(sbi, i + CURSEG_HOT_DATA));
792 ckpt->cur_data_blkoff[i] =
793 cpu_to_le16(curseg_blkoff(sbi, i + CURSEG_HOT_DATA));
794 ckpt->alloc_type[i + CURSEG_HOT_DATA] =
795 curseg_alloc_type(sbi, i + CURSEG_HOT_DATA);
796 }
797
798 ckpt->valid_node_count = cpu_to_le32(valid_node_count(sbi));
799 ckpt->valid_inode_count = cpu_to_le32(valid_inode_count(sbi));
800 ckpt->next_free_nid = cpu_to_le32(last_nid);
801
802 /* 2 cp + n data seg summary + orphan inode blocks */
803 data_sum_blocks = npages_for_summary_flush(sbi);
804 if (data_sum_blocks < 3)
805 set_ckpt_flags(ckpt, CP_COMPACT_SUM_FLAG);
806 else
807 clear_ckpt_flags(ckpt, CP_COMPACT_SUM_FLAG);
808
809 orphan_blocks = (sbi->n_orphans + F2FS_ORPHANS_PER_BLOCK - 1)
810 / F2FS_ORPHANS_PER_BLOCK;
811 ckpt->cp_pack_start_sum = cpu_to_le32(1 + orphan_blocks);
812
813 if (is_umount) {
814 set_ckpt_flags(ckpt, CP_UMOUNT_FLAG);
815 ckpt->cp_pack_total_block_count = cpu_to_le32(2 +
816 data_sum_blocks + orphan_blocks + NR_CURSEG_NODE_TYPE);
817 } else {
818 clear_ckpt_flags(ckpt, CP_UMOUNT_FLAG);
819 ckpt->cp_pack_total_block_count = cpu_to_le32(2 +
820 data_sum_blocks + orphan_blocks);
821 }
822
823 if (sbi->n_orphans)
824 set_ckpt_flags(ckpt, CP_ORPHAN_PRESENT_FLAG);
825 else
826 clear_ckpt_flags(ckpt, CP_ORPHAN_PRESENT_FLAG);
827
828 /* update SIT/NAT bitmap */
829 get_sit_bitmap(sbi, __bitmap_ptr(sbi, SIT_BITMAP));
830 get_nat_bitmap(sbi, __bitmap_ptr(sbi, NAT_BITMAP));
831
832 crc32 = f2fs_crc32(ckpt, le32_to_cpu(ckpt->checksum_offset));
833 *((__le32 *)((unsigned char *)ckpt +
834 le32_to_cpu(ckpt->checksum_offset)))
835 = cpu_to_le32(crc32);
836
837 start_blk = __start_cp_addr(sbi);
838
839 /* write out checkpoint buffer at block 0 */
840 cp_page = grab_meta_page(sbi, start_blk++);
841 kaddr = page_address(cp_page);
842 memcpy(kaddr, ckpt, (1 << sbi->log_blocksize));
843 set_page_dirty(cp_page);
844 f2fs_put_page(cp_page, 1);
845
846 if (sbi->n_orphans) {
847 write_orphan_inodes(sbi, start_blk);
848 start_blk += orphan_blocks;
849 }
850
851 write_data_summaries(sbi, start_blk);
852 start_blk += data_sum_blocks;
853 if (is_umount) {
854 write_node_summaries(sbi, start_blk);
855 start_blk += NR_CURSEG_NODE_TYPE;
856 }
857
858 /* writeout checkpoint block */
859 cp_page = grab_meta_page(sbi, start_blk);
860 kaddr = page_address(cp_page);
861 memcpy(kaddr, ckpt, (1 << sbi->log_blocksize));
862 set_page_dirty(cp_page);
863 f2fs_put_page(cp_page, 1);
864
865 /* wait for previous submitted node/meta pages writeback */
866 wait_on_all_pages_writeback(sbi);
867
Changman Leeb1a94e82013-11-15 10:42:51 +0900868 filemap_fdatawait_range(NODE_MAPPING(sbi), 0, LONG_MAX);
869 filemap_fdatawait_range(META_MAPPING(sbi), 0, LONG_MAX);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800870
871 /* update user_block_counts */
872 sbi->last_valid_block_count = sbi->total_valid_block_count;
873 sbi->alloc_valid_block_count = 0;
874
875 /* Here, we only have one bio having CP pack */
876 sync_meta_pages(sbi, META_FLUSH, LONG_MAX);
877
Changman Leeb1a94e82013-11-15 10:42:51 +0900878 if (unlikely(!is_set_ckpt_flags(ckpt, CP_ERROR_FLAG))) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800879 clear_prefree_segments(sbi);
880 F2FS_RESET_SB_DIRT(sbi);
881 }
882}
883
884/*
885 * We guarantee that this checkpoint procedure should not fail.
886 */
887void write_checkpoint(struct f2fs_sb_info *sbi, bool is_umount)
888{
889 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
890 unsigned long long ckpt_ver;
891
892 trace_f2fs_write_checkpoint(sbi->sb, is_umount, "start block_ops");
893
894 mutex_lock(&sbi->cp_mutex);
895 block_operations(sbi);
896
897 trace_f2fs_write_checkpoint(sbi->sb, is_umount, "finish block_ops");
898
Changman Leeb1a94e82013-11-15 10:42:51 +0900899 f2fs_submit_merged_bio(sbi, DATA, WRITE);
900 f2fs_submit_merged_bio(sbi, NODE, WRITE);
901 f2fs_submit_merged_bio(sbi, META, WRITE);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800902
903 /*
904 * update checkpoint pack index
905 * Increase the version number so that
906 * SIT entries and seg summaries are written at correct place
907 */
908 ckpt_ver = cur_cp_version(ckpt);
909 ckpt->checkpoint_ver = cpu_to_le64(++ckpt_ver);
910
911 /* write cached NAT/SIT entries to NAT/SIT area */
912 flush_nat_entries(sbi);
913 flush_sit_entries(sbi);
914
915 /* unlock all the fs_lock[] in do_checkpoint() */
916 do_checkpoint(sbi, is_umount);
917
918 unblock_operations(sbi);
919 mutex_unlock(&sbi->cp_mutex);
920
Changman Lee8b83cd32014-02-13 15:12:29 +0900921 stat_inc_cp_count(sbi->stat_info);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800922 trace_f2fs_write_checkpoint(sbi->sb, is_umount, "finish checkpoint");
923}
924
925void init_orphan_info(struct f2fs_sb_info *sbi)
926{
Changman Leeb1a94e82013-11-15 10:42:51 +0900927 spin_lock_init(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800928 INIT_LIST_HEAD(&sbi->orphan_inode_list);
929 sbi->n_orphans = 0;
Changman Leeb1a94e82013-11-15 10:42:51 +0900930 /*
931 * considering 512 blocks in a segment 8 blocks are needed for cp
932 * and log segment summaries. Remaining blocks are used to keep
933 * orphan entries with the limitation one reserved segment
934 * for cp pack we can have max 1020*504 orphan entries
935 */
936 sbi->max_orphans = (sbi->blocks_per_seg - 2 - NR_CURSEG_TYPE)
937 * F2FS_ORPHANS_PER_BLOCK;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800938}
939
940int __init create_checkpoint_caches(void)
941{
942 orphan_entry_slab = f2fs_kmem_cache_create("f2fs_orphan_entry",
Gu Zhenge33dcea2014-03-07 18:43:28 +0800943 sizeof(struct orphan_inode_entry));
Changman Leeb1a94e82013-11-15 10:42:51 +0900944 if (!orphan_entry_slab)
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800945 return -ENOMEM;
946 inode_entry_slab = f2fs_kmem_cache_create("f2fs_dirty_dir_entry",
Gu Zhenge33dcea2014-03-07 18:43:28 +0800947 sizeof(struct dir_inode_entry));
Changman Leeb1a94e82013-11-15 10:42:51 +0900948 if (!inode_entry_slab) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800949 kmem_cache_destroy(orphan_entry_slab);
950 return -ENOMEM;
951 }
952 return 0;
953}
954
955void destroy_checkpoint_caches(void)
956{
957 kmem_cache_destroy(orphan_entry_slab);
958 kmem_cache_destroy(inode_entry_slab);
959}