blob: fe968c7bfc90e8f6d7b3e0fa27485e6e6df5185a [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:
Jaegeuk Kimb6687392014-04-30 09:18:53 +090036 page = grab_cache_page(mapping, index);
Linus Torvalds8005ecc2012-12-20 13:54:51 -080037 if (!page) {
38 cond_resched();
39 goto repeat;
40 }
Jaegeuk Kimb6687392014-04-30 09:18:53 +090041 f2fs_wait_on_page_writeback(page, META);
Linus Torvalds8005ecc2012-12-20 13:54:51 -080042 SetPageUptodate(page);
43 return page;
44}
45
46/*
47 * We guarantee no failure on the returned page.
48 */
49struct page *get_meta_page(struct f2fs_sb_info *sbi, pgoff_t index)
50{
Changman Leeb1a94e82013-11-15 10:42:51 +090051 struct address_space *mapping = META_MAPPING(sbi);
Linus Torvalds8005ecc2012-12-20 13:54:51 -080052 struct page *page;
53repeat:
54 page = grab_cache_page(mapping, index);
55 if (!page) {
56 cond_resched();
57 goto repeat;
58 }
59 if (PageUptodate(page))
60 goto out;
61
Changman Leeb1a94e82013-11-15 10:42:51 +090062 if (f2fs_submit_page_bio(sbi, page, index,
63 READ_SYNC | REQ_META | REQ_PRIO))
Linus Torvalds8005ecc2012-12-20 13:54:51 -080064 goto repeat;
65
66 lock_page(page);
Changman Leeb1a94e82013-11-15 10:42:51 +090067 if (unlikely(page->mapping != mapping)) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -080068 f2fs_put_page(page, 1);
69 goto repeat;
70 }
71out:
72 mark_page_accessed(page);
73 return page;
74}
75
Fabian Frederick179c1172014-04-17 17:51:06 +020076static inline int get_max_meta_blks(struct f2fs_sb_info *sbi, int type)
Chao Yu624b14f2014-02-07 16:11:53 +080077{
78 switch (type) {
79 case META_NAT:
80 return NM_I(sbi)->max_nid / NAT_ENTRY_PER_BLOCK;
81 case META_SIT:
82 return SIT_BLK_CNT(sbi);
Chao Yu99926a92014-02-27 19:12:24 +080083 case META_SSA:
Chao Yu624b14f2014-02-07 16:11:53 +080084 case META_CP:
85 return 0;
86 default:
87 BUG();
88 }
89}
90
91/*
Chao Yu99926a92014-02-27 19:12:24 +080092 * Readahead CP/NAT/SIT/SSA pages
Chao Yu624b14f2014-02-07 16:11:53 +080093 */
94int ra_meta_pages(struct f2fs_sb_info *sbi, int start, int nrpages, int type)
95{
96 block_t prev_blk_addr = 0;
97 struct page *page;
98 int blkno = start;
99 int max_blks = get_max_meta_blks(sbi, type);
100
101 struct f2fs_io_info fio = {
102 .type = META,
103 .rw = READ_SYNC | REQ_META | REQ_PRIO
104 };
105
106 for (; nrpages-- > 0; blkno++) {
107 block_t blk_addr;
108
109 switch (type) {
110 case META_NAT:
111 /* get nat block addr */
112 if (unlikely(blkno >= max_blks))
113 blkno = 0;
114 blk_addr = current_nat_addr(sbi,
115 blkno * NAT_ENTRY_PER_BLOCK);
116 break;
117 case META_SIT:
118 /* get sit block addr */
119 if (unlikely(blkno >= max_blks))
120 goto out;
121 blk_addr = current_sit_addr(sbi,
122 blkno * SIT_ENTRY_PER_BLOCK);
123 if (blkno != start && prev_blk_addr + 1 != blk_addr)
124 goto out;
125 prev_blk_addr = blk_addr;
126 break;
Chao Yu99926a92014-02-27 19:12:24 +0800127 case META_SSA:
Chao Yu624b14f2014-02-07 16:11:53 +0800128 case META_CP:
Chao Yu99926a92014-02-27 19:12:24 +0800129 /* get ssa/cp block addr */
Chao Yu624b14f2014-02-07 16:11:53 +0800130 blk_addr = blkno;
131 break;
132 default:
133 BUG();
134 }
135
136 page = grab_cache_page(META_MAPPING(sbi), blk_addr);
137 if (!page)
138 continue;
139 if (PageUptodate(page)) {
140 mark_page_accessed(page);
141 f2fs_put_page(page, 1);
142 continue;
143 }
144
145 f2fs_submit_page_mbio(sbi, page, blk_addr, &fio);
146 mark_page_accessed(page);
147 f2fs_put_page(page, 0);
148 }
149out:
150 f2fs_submit_merged_bio(sbi, META, READ);
151 return blkno - start;
152}
153
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800154static int f2fs_write_meta_page(struct page *page,
155 struct writeback_control *wbc)
156{
157 struct inode *inode = page->mapping->host;
158 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
159
Chao Yu327cb6d2014-05-06 16:48:26 +0800160 trace_f2fs_writepage(page, META);
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 Kim4b66d802014-03-18 13:29:07 +0900171 f2fs_wait_on_page_writeback(page, META);
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:
Jaegeuk Kimdc8c2462014-04-15 16:04:15 +0900179 redirty_page_for_writepage(wbc, page);
Changman Leeb1a94e82013-11-15 10:42:51 +0900180 return AOP_WRITEPAGE_ACTIVATE;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800181}
182
183static int f2fs_write_meta_pages(struct address_space *mapping,
184 struct writeback_control *wbc)
185{
186 struct f2fs_sb_info *sbi = F2FS_SB(mapping->host->i_sb);
Jaegeuk Kim1f1eaf42014-03-18 13:47:11 +0900187 long diff, written;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800188
Chao Yub4d85492014-05-06 16:51:24 +0800189 trace_f2fs_writepages(mapping->host, wbc, META);
190
Changman Leeb1a94e82013-11-15 10:42:51 +0900191 /* collect a number of dirty meta pages and write together */
Jaegeuk Kim1f1eaf42014-03-18 13:47:11 +0900192 if (wbc->for_kupdate ||
193 get_pages(sbi, F2FS_DIRTY_META) < nr_pages_to_skip(sbi, META))
Jaegeuk Kim823d59f2014-03-18 13:43:05 +0900194 goto skip_write;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800195
196 /* if mounting is failed, skip writing node pages */
197 mutex_lock(&sbi->cp_mutex);
Jaegeuk Kim1f1eaf42014-03-18 13:47:11 +0900198 diff = nr_pages_to_write(sbi, META, wbc);
199 written = sync_meta_pages(sbi, META, wbc->nr_to_write);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800200 mutex_unlock(&sbi->cp_mutex);
Jaegeuk Kim1f1eaf42014-03-18 13:47:11 +0900201 wbc->nr_to_write = max((long)0, wbc->nr_to_write - written - diff);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800202 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{
Chao Yu48c561a2014-03-29 11:33:17 +0800312 struct list_head *head;
313 struct orphan_inode_entry *new, *orphan;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800314
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;
Chao Yu48c561a2014-03-29 11:33:17 +0800320 list_for_each_entry(orphan, head, list) {
Changman Leeb1a94e82013-11-15 10:42:51 +0900321 if (orphan->ino == ino) {
322 spin_unlock(&sbi->orphan_inode_lock);
323 kmem_cache_free(orphan_entry_slab, new);
324 return;
325 }
326
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800327 if (orphan->ino > ino)
328 break;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800329 }
330
Chao Yu48c561a2014-03-29 11:33:17 +0800331 /* add new orphan entry into list which is sorted by inode number */
332 list_add_tail(&new->list, &orphan->list);
Changman Leeb1a94e82013-11-15 10:42:51 +0900333 spin_unlock(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800334}
335
336void remove_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
337{
338 struct list_head *head;
339 struct orphan_inode_entry *orphan;
340
Changman Leeb1a94e82013-11-15 10:42:51 +0900341 spin_lock(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800342 head = &sbi->orphan_inode_list;
343 list_for_each_entry(orphan, head, list) {
344 if (orphan->ino == ino) {
345 list_del(&orphan->list);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800346 f2fs_bug_on(sbi->n_orphans == 0);
347 sbi->n_orphans--;
Chao Yu784b1352014-04-02 08:55:00 +0800348 spin_unlock(&sbi->orphan_inode_lock);
349 kmem_cache_free(orphan_entry_slab, orphan);
350 return;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800351 }
352 }
Changman Leeb1a94e82013-11-15 10:42:51 +0900353 spin_unlock(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800354}
355
356static void recover_orphan_inode(struct f2fs_sb_info *sbi, nid_t ino)
357{
358 struct inode *inode = f2fs_iget(sbi->sb, ino);
359 f2fs_bug_on(IS_ERR(inode));
360 clear_nlink(inode);
361
362 /* truncate all the data during iput */
363 iput(inode);
364}
365
Changman Leeb1a94e82013-11-15 10:42:51 +0900366void recover_orphan_inodes(struct f2fs_sb_info *sbi)
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800367{
368 block_t start_blk, orphan_blkaddr, i, j;
369
370 if (!is_set_ckpt_flags(F2FS_CKPT(sbi), CP_ORPHAN_PRESENT_FLAG))
Changman Leeb1a94e82013-11-15 10:42:51 +0900371 return;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800372
373 sbi->por_doing = true;
374 start_blk = __start_cp_addr(sbi) + 1;
375 orphan_blkaddr = __start_sum_addr(sbi) - 1;
376
Chao Yu624b14f2014-02-07 16:11:53 +0800377 ra_meta_pages(sbi, start_blk, orphan_blkaddr, META_CP);
378
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800379 for (i = 0; i < orphan_blkaddr; i++) {
380 struct page *page = get_meta_page(sbi, start_blk + i);
381 struct f2fs_orphan_block *orphan_blk;
382
383 orphan_blk = (struct f2fs_orphan_block *)page_address(page);
384 for (j = 0; j < le32_to_cpu(orphan_blk->entry_count); j++) {
385 nid_t ino = le32_to_cpu(orphan_blk->ino[j]);
386 recover_orphan_inode(sbi, ino);
387 }
388 f2fs_put_page(page, 1);
389 }
390 /* clear Orphan Flag */
391 clear_ckpt_flags(F2FS_CKPT(sbi), CP_ORPHAN_PRESENT_FLAG);
392 sbi->por_doing = false;
Changman Leeb1a94e82013-11-15 10:42:51 +0900393 return;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800394}
395
396static void write_orphan_inodes(struct f2fs_sb_info *sbi, block_t start_blk)
397{
Changman Leeb1a94e82013-11-15 10:42:51 +0900398 struct list_head *head;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800399 struct f2fs_orphan_block *orphan_blk = NULL;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800400 unsigned int nentries = 0;
Changman Leeb1a94e82013-11-15 10:42:51 +0900401 unsigned short index;
402 unsigned short orphan_blocks = (unsigned short)((sbi->n_orphans +
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800403 (F2FS_ORPHANS_PER_BLOCK - 1)) / F2FS_ORPHANS_PER_BLOCK);
Changman Leeb1a94e82013-11-15 10:42:51 +0900404 struct page *page = NULL;
405 struct orphan_inode_entry *orphan = NULL;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800406
Changman Leeb1a94e82013-11-15 10:42:51 +0900407 for (index = 0; index < orphan_blocks; index++)
408 grab_meta_page(sbi, start_blk + index);
409
410 index = 1;
411 spin_lock(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800412 head = &sbi->orphan_inode_list;
413
414 /* loop for each orphan inode entry and write them in Jornal block */
Changman Leeb1a94e82013-11-15 10:42:51 +0900415 list_for_each_entry(orphan, head, list) {
416 if (!page) {
417 page = find_get_page(META_MAPPING(sbi), start_blk++);
418 f2fs_bug_on(!page);
419 orphan_blk =
420 (struct f2fs_orphan_block *)page_address(page);
421 memset(orphan_blk, 0, sizeof(*orphan_blk));
422 f2fs_put_page(page, 0);
423 }
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800424
Changman Leeb1a94e82013-11-15 10:42:51 +0900425 orphan_blk->ino[nentries++] = cpu_to_le32(orphan->ino);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800426
427 if (nentries == F2FS_ORPHANS_PER_BLOCK) {
428 /*
429 * an orphan block is full of 1020 entries,
430 * then we need to flush current orphan blocks
431 * and bring another one in memory
432 */
433 orphan_blk->blk_addr = cpu_to_le16(index);
434 orphan_blk->blk_count = cpu_to_le16(orphan_blocks);
435 orphan_blk->entry_count = cpu_to_le32(nentries);
436 set_page_dirty(page);
437 f2fs_put_page(page, 1);
438 index++;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800439 nentries = 0;
440 page = NULL;
441 }
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800442 }
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800443
Changman Leeb1a94e82013-11-15 10:42:51 +0900444 if (page) {
445 orphan_blk->blk_addr = cpu_to_le16(index);
446 orphan_blk->blk_count = cpu_to_le16(orphan_blocks);
447 orphan_blk->entry_count = cpu_to_le32(nentries);
448 set_page_dirty(page);
449 f2fs_put_page(page, 1);
450 }
451
452 spin_unlock(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800453}
454
455static struct page *validate_checkpoint(struct f2fs_sb_info *sbi,
456 block_t cp_addr, unsigned long long *version)
457{
458 struct page *cp_page_1, *cp_page_2 = NULL;
459 unsigned long blk_size = sbi->blocksize;
460 struct f2fs_checkpoint *cp_block;
461 unsigned long long cur_version = 0, pre_version = 0;
462 size_t crc_offset;
463 __u32 crc = 0;
464
465 /* Read the 1st cp block in this CP pack */
466 cp_page_1 = get_meta_page(sbi, cp_addr);
467
468 /* get the version number */
469 cp_block = (struct f2fs_checkpoint *)page_address(cp_page_1);
470 crc_offset = le32_to_cpu(cp_block->checksum_offset);
471 if (crc_offset >= blk_size)
472 goto invalid_cp1;
473
474 crc = le32_to_cpu(*((__u32 *)((unsigned char *)cp_block + crc_offset)));
475 if (!f2fs_crc_valid(crc, cp_block, crc_offset))
476 goto invalid_cp1;
477
478 pre_version = cur_cp_version(cp_block);
479
480 /* Read the 2nd cp block in this CP pack */
481 cp_addr += le32_to_cpu(cp_block->cp_pack_total_block_count) - 1;
482 cp_page_2 = get_meta_page(sbi, cp_addr);
483
484 cp_block = (struct f2fs_checkpoint *)page_address(cp_page_2);
485 crc_offset = le32_to_cpu(cp_block->checksum_offset);
486 if (crc_offset >= blk_size)
487 goto invalid_cp2;
488
489 crc = le32_to_cpu(*((__u32 *)((unsigned char *)cp_block + crc_offset)));
490 if (!f2fs_crc_valid(crc, cp_block, crc_offset))
491 goto invalid_cp2;
492
493 cur_version = cur_cp_version(cp_block);
494
495 if (cur_version == pre_version) {
496 *version = cur_version;
497 f2fs_put_page(cp_page_2, 1);
498 return cp_page_1;
499 }
500invalid_cp2:
501 f2fs_put_page(cp_page_2, 1);
502invalid_cp1:
503 f2fs_put_page(cp_page_1, 1);
504 return NULL;
505}
506
507int get_valid_checkpoint(struct f2fs_sb_info *sbi)
508{
509 struct f2fs_checkpoint *cp_block;
510 struct f2fs_super_block *fsb = sbi->raw_super;
511 struct page *cp1, *cp2, *cur_page;
512 unsigned long blk_size = sbi->blocksize;
513 unsigned long long cp1_version = 0, cp2_version = 0;
514 unsigned long long cp_start_blk_no;
515
516 sbi->ckpt = kzalloc(blk_size, GFP_KERNEL);
517 if (!sbi->ckpt)
518 return -ENOMEM;
519 /*
520 * Finding out valid cp block involves read both
521 * sets( cp pack1 and cp pack 2)
522 */
523 cp_start_blk_no = le32_to_cpu(fsb->cp_blkaddr);
524 cp1 = validate_checkpoint(sbi, cp_start_blk_no, &cp1_version);
525
526 /* The second checkpoint pack should start at the next segment */
Changman Leeb1a94e82013-11-15 10:42:51 +0900527 cp_start_blk_no += ((unsigned long long)1) <<
528 le32_to_cpu(fsb->log_blocks_per_seg);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800529 cp2 = validate_checkpoint(sbi, cp_start_blk_no, &cp2_version);
530
531 if (cp1 && cp2) {
532 if (ver_after(cp2_version, cp1_version))
533 cur_page = cp2;
534 else
535 cur_page = cp1;
536 } else if (cp1) {
537 cur_page = cp1;
538 } else if (cp2) {
539 cur_page = cp2;
540 } else {
541 goto fail_no_cp;
542 }
543
544 cp_block = (struct f2fs_checkpoint *)page_address(cur_page);
545 memcpy(sbi->ckpt, cp_block, blk_size);
546
547 f2fs_put_page(cp1, 1);
548 f2fs_put_page(cp2, 1);
549 return 0;
550
551fail_no_cp:
552 kfree(sbi->ckpt);
553 return -EINVAL;
554}
555
556static int __add_dirty_inode(struct inode *inode, struct dir_inode_entry *new)
557{
558 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800559
Jaegeuk Kim4679a942014-04-15 11:19:28 +0900560 if (is_inode_flag_set(F2FS_I(inode), FI_DIRTY_DIR))
561 return -EEXIST;
Chao Yu48c561a2014-03-29 11:33:17 +0800562
Jaegeuk Kim4679a942014-04-15 11:19:28 +0900563 set_inode_flag(F2FS_I(inode), FI_DIRTY_DIR);
564 F2FS_I(inode)->dirty_dir = new;
565 list_add_tail(&new->list, &sbi->dir_inode_list);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800566 stat_inc_dirty_dir(sbi);
567 return 0;
568}
569
570void set_dirty_dir_page(struct inode *inode, struct page *page)
571{
572 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
573 struct dir_inode_entry *new;
Chao Yu784b1352014-04-02 08:55:00 +0800574 int ret = 0;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800575
576 if (!S_ISDIR(inode->i_mode))
577 return;
578
579 new = f2fs_kmem_cache_alloc(inode_entry_slab, GFP_NOFS);
580 new->inode = inode;
581 INIT_LIST_HEAD(&new->list);
582
583 spin_lock(&sbi->dir_inode_lock);
Chao Yu784b1352014-04-02 08:55:00 +0800584 ret = __add_dirty_inode(inode, new);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800585 inode_inc_dirty_dents(inode);
586 SetPagePrivate(page);
587 spin_unlock(&sbi->dir_inode_lock);
Chao Yu784b1352014-04-02 08:55:00 +0800588
589 if (ret)
590 kmem_cache_free(inode_entry_slab, new);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800591}
592
593void add_dirty_dir_inode(struct inode *inode)
594{
595 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
596 struct dir_inode_entry *new =
597 f2fs_kmem_cache_alloc(inode_entry_slab, GFP_NOFS);
Chao Yu784b1352014-04-02 08:55:00 +0800598 int ret = 0;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800599
600 new->inode = inode;
601 INIT_LIST_HEAD(&new->list);
602
603 spin_lock(&sbi->dir_inode_lock);
Chao Yu784b1352014-04-02 08:55:00 +0800604 ret = __add_dirty_inode(inode, new);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800605 spin_unlock(&sbi->dir_inode_lock);
Chao Yu784b1352014-04-02 08:55:00 +0800606
607 if (ret)
608 kmem_cache_free(inode_entry_slab, new);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800609}
610
611void remove_dirty_dir_inode(struct inode *inode)
612{
613 struct f2fs_sb_info *sbi = F2FS_SB(inode->i_sb);
Chao Yu48c561a2014-03-29 11:33:17 +0800614 struct dir_inode_entry *entry;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800615
616 if (!S_ISDIR(inode->i_mode))
617 return;
618
619 spin_lock(&sbi->dir_inode_lock);
Jaegeuk Kim4679a942014-04-15 11:19:28 +0900620 if (get_dirty_dents(inode) ||
621 !is_inode_flag_set(F2FS_I(inode), FI_DIRTY_DIR)) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800622 spin_unlock(&sbi->dir_inode_lock);
623 return;
624 }
625
Jaegeuk Kim4679a942014-04-15 11:19:28 +0900626 entry = F2FS_I(inode)->dirty_dir;
627 list_del(&entry->list);
628 F2FS_I(inode)->dirty_dir = NULL;
629 clear_inode_flag(F2FS_I(inode), FI_DIRTY_DIR);
630 stat_dec_dirty_dir(sbi);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800631 spin_unlock(&sbi->dir_inode_lock);
Jaegeuk Kim4679a942014-04-15 11:19:28 +0900632 kmem_cache_free(inode_entry_slab, entry);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800633
634 /* Only from the recovery routine */
635 if (is_inode_flag_set(F2FS_I(inode), FI_DELAY_IPUT)) {
636 clear_inode_flag(F2FS_I(inode), FI_DELAY_IPUT);
637 iput(inode);
638 }
639}
640
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800641void sync_dirty_dir_inodes(struct f2fs_sb_info *sbi)
642{
Changman Leeb1a94e82013-11-15 10:42:51 +0900643 struct list_head *head;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800644 struct dir_inode_entry *entry;
645 struct inode *inode;
646retry:
647 spin_lock(&sbi->dir_inode_lock);
Changman Leeb1a94e82013-11-15 10:42:51 +0900648
649 head = &sbi->dir_inode_list;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800650 if (list_empty(head)) {
651 spin_unlock(&sbi->dir_inode_lock);
652 return;
653 }
654 entry = list_entry(head->next, struct dir_inode_entry, list);
655 inode = igrab(entry->inode);
656 spin_unlock(&sbi->dir_inode_lock);
657 if (inode) {
Jaegeuk Kimc7f9f432014-03-18 12:40:49 +0900658 filemap_fdatawrite(inode->i_mapping);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800659 iput(inode);
660 } else {
661 /*
662 * We should submit bio, since it exists several
663 * wribacking dentry pages in the freeing inode.
664 */
Changman Leeb1a94e82013-11-15 10:42:51 +0900665 f2fs_submit_merged_bio(sbi, DATA, WRITE);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800666 }
667 goto retry;
668}
669
670/*
671 * Freeze all the FS-operations for checkpoint.
672 */
673static void block_operations(struct f2fs_sb_info *sbi)
674{
675 struct writeback_control wbc = {
676 .sync_mode = WB_SYNC_ALL,
677 .nr_to_write = LONG_MAX,
678 .for_reclaim = 0,
679 };
680 struct blk_plug plug;
681
682 blk_start_plug(&plug);
683
684retry_flush_dents:
685 f2fs_lock_all(sbi);
686 /* write all the dirty dentry pages */
687 if (get_pages(sbi, F2FS_DIRTY_DENTS)) {
688 f2fs_unlock_all(sbi);
689 sync_dirty_dir_inodes(sbi);
690 goto retry_flush_dents;
691 }
692
693 /*
694 * POR: we should ensure that there is no dirty node pages
695 * until finishing nat/sit flush.
696 */
697retry_flush_nodes:
698 mutex_lock(&sbi->node_write);
699
700 if (get_pages(sbi, F2FS_DIRTY_NODES)) {
701 mutex_unlock(&sbi->node_write);
702 sync_node_pages(sbi, 0, &wbc);
703 goto retry_flush_nodes;
704 }
705 blk_finish_plug(&plug);
706}
707
708static void unblock_operations(struct f2fs_sb_info *sbi)
709{
710 mutex_unlock(&sbi->node_write);
711 f2fs_unlock_all(sbi);
712}
713
714static void wait_on_all_pages_writeback(struct f2fs_sb_info *sbi)
715{
716 DEFINE_WAIT(wait);
717
718 for (;;) {
719 prepare_to_wait(&sbi->cp_wait, &wait, TASK_UNINTERRUPTIBLE);
720
721 if (!get_pages(sbi, F2FS_WRITEBACK))
722 break;
723
724 io_schedule();
725 }
726 finish_wait(&sbi->cp_wait, &wait);
727}
728
729static void do_checkpoint(struct f2fs_sb_info *sbi, bool is_umount)
730{
731 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
732 nid_t last_nid = 0;
733 block_t start_blk;
734 struct page *cp_page;
735 unsigned int data_sum_blocks, orphan_blocks;
736 __u32 crc32 = 0;
737 void *kaddr;
738 int i;
739
Jaegeuk Kimf8ff1412014-04-15 13:57:55 +0900740 /*
741 * This avoids to conduct wrong roll-forward operations and uses
742 * metapages, so should be called prior to sync_meta_pages below.
743 */
744 discard_next_dnode(sbi);
745
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800746 /* Flush all the NAT/SIT pages */
747 while (get_pages(sbi, F2FS_DIRTY_META))
748 sync_meta_pages(sbi, META, LONG_MAX);
749
750 next_free_nid(sbi, &last_nid);
751
752 /*
753 * modify checkpoint
754 * version number is already updated
755 */
756 ckpt->elapsed_time = cpu_to_le64(get_mtime(sbi));
757 ckpt->valid_block_count = cpu_to_le64(valid_user_blocks(sbi));
758 ckpt->free_segment_count = cpu_to_le32(free_segments(sbi));
759 for (i = 0; i < 3; i++) {
760 ckpt->cur_node_segno[i] =
761 cpu_to_le32(curseg_segno(sbi, i + CURSEG_HOT_NODE));
762 ckpt->cur_node_blkoff[i] =
763 cpu_to_le16(curseg_blkoff(sbi, i + CURSEG_HOT_NODE));
764 ckpt->alloc_type[i + CURSEG_HOT_NODE] =
765 curseg_alloc_type(sbi, i + CURSEG_HOT_NODE);
766 }
767 for (i = 0; i < 3; i++) {
768 ckpt->cur_data_segno[i] =
769 cpu_to_le32(curseg_segno(sbi, i + CURSEG_HOT_DATA));
770 ckpt->cur_data_blkoff[i] =
771 cpu_to_le16(curseg_blkoff(sbi, i + CURSEG_HOT_DATA));
772 ckpt->alloc_type[i + CURSEG_HOT_DATA] =
773 curseg_alloc_type(sbi, i + CURSEG_HOT_DATA);
774 }
775
776 ckpt->valid_node_count = cpu_to_le32(valid_node_count(sbi));
777 ckpt->valid_inode_count = cpu_to_le32(valid_inode_count(sbi));
778 ckpt->next_free_nid = cpu_to_le32(last_nid);
779
780 /* 2 cp + n data seg summary + orphan inode blocks */
781 data_sum_blocks = npages_for_summary_flush(sbi);
782 if (data_sum_blocks < 3)
783 set_ckpt_flags(ckpt, CP_COMPACT_SUM_FLAG);
784 else
785 clear_ckpt_flags(ckpt, CP_COMPACT_SUM_FLAG);
786
787 orphan_blocks = (sbi->n_orphans + F2FS_ORPHANS_PER_BLOCK - 1)
788 / F2FS_ORPHANS_PER_BLOCK;
789 ckpt->cp_pack_start_sum = cpu_to_le32(1 + orphan_blocks);
790
791 if (is_umount) {
792 set_ckpt_flags(ckpt, CP_UMOUNT_FLAG);
793 ckpt->cp_pack_total_block_count = cpu_to_le32(2 +
794 data_sum_blocks + orphan_blocks + NR_CURSEG_NODE_TYPE);
795 } else {
796 clear_ckpt_flags(ckpt, CP_UMOUNT_FLAG);
797 ckpt->cp_pack_total_block_count = cpu_to_le32(2 +
798 data_sum_blocks + orphan_blocks);
799 }
800
801 if (sbi->n_orphans)
802 set_ckpt_flags(ckpt, CP_ORPHAN_PRESENT_FLAG);
803 else
804 clear_ckpt_flags(ckpt, CP_ORPHAN_PRESENT_FLAG);
805
806 /* update SIT/NAT bitmap */
807 get_sit_bitmap(sbi, __bitmap_ptr(sbi, SIT_BITMAP));
808 get_nat_bitmap(sbi, __bitmap_ptr(sbi, NAT_BITMAP));
809
810 crc32 = f2fs_crc32(ckpt, le32_to_cpu(ckpt->checksum_offset));
811 *((__le32 *)((unsigned char *)ckpt +
812 le32_to_cpu(ckpt->checksum_offset)))
813 = cpu_to_le32(crc32);
814
815 start_blk = __start_cp_addr(sbi);
816
817 /* write out checkpoint buffer at block 0 */
818 cp_page = grab_meta_page(sbi, start_blk++);
819 kaddr = page_address(cp_page);
820 memcpy(kaddr, ckpt, (1 << sbi->log_blocksize));
821 set_page_dirty(cp_page);
822 f2fs_put_page(cp_page, 1);
823
824 if (sbi->n_orphans) {
825 write_orphan_inodes(sbi, start_blk);
826 start_blk += orphan_blocks;
827 }
828
829 write_data_summaries(sbi, start_blk);
830 start_blk += data_sum_blocks;
831 if (is_umount) {
832 write_node_summaries(sbi, start_blk);
833 start_blk += NR_CURSEG_NODE_TYPE;
834 }
835
836 /* writeout checkpoint block */
837 cp_page = grab_meta_page(sbi, start_blk);
838 kaddr = page_address(cp_page);
839 memcpy(kaddr, ckpt, (1 << sbi->log_blocksize));
840 set_page_dirty(cp_page);
841 f2fs_put_page(cp_page, 1);
842
843 /* wait for previous submitted node/meta pages writeback */
844 wait_on_all_pages_writeback(sbi);
845
Changman Leeb1a94e82013-11-15 10:42:51 +0900846 filemap_fdatawait_range(NODE_MAPPING(sbi), 0, LONG_MAX);
847 filemap_fdatawait_range(META_MAPPING(sbi), 0, LONG_MAX);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800848
849 /* update user_block_counts */
850 sbi->last_valid_block_count = sbi->total_valid_block_count;
851 sbi->alloc_valid_block_count = 0;
852
853 /* Here, we only have one bio having CP pack */
854 sync_meta_pages(sbi, META_FLUSH, LONG_MAX);
855
Changman Leeb1a94e82013-11-15 10:42:51 +0900856 if (unlikely(!is_set_ckpt_flags(ckpt, CP_ERROR_FLAG))) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800857 clear_prefree_segments(sbi);
858 F2FS_RESET_SB_DIRT(sbi);
859 }
860}
861
862/*
863 * We guarantee that this checkpoint procedure should not fail.
864 */
865void write_checkpoint(struct f2fs_sb_info *sbi, bool is_umount)
866{
867 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
868 unsigned long long ckpt_ver;
869
870 trace_f2fs_write_checkpoint(sbi->sb, is_umount, "start block_ops");
871
872 mutex_lock(&sbi->cp_mutex);
873 block_operations(sbi);
874
875 trace_f2fs_write_checkpoint(sbi->sb, is_umount, "finish block_ops");
876
Changman Leeb1a94e82013-11-15 10:42:51 +0900877 f2fs_submit_merged_bio(sbi, DATA, WRITE);
878 f2fs_submit_merged_bio(sbi, NODE, WRITE);
879 f2fs_submit_merged_bio(sbi, META, WRITE);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800880
881 /*
882 * update checkpoint pack index
883 * Increase the version number so that
884 * SIT entries and seg summaries are written at correct place
885 */
886 ckpt_ver = cur_cp_version(ckpt);
887 ckpt->checkpoint_ver = cpu_to_le64(++ckpt_ver);
888
889 /* write cached NAT/SIT entries to NAT/SIT area */
890 flush_nat_entries(sbi);
891 flush_sit_entries(sbi);
892
893 /* unlock all the fs_lock[] in do_checkpoint() */
894 do_checkpoint(sbi, is_umount);
895
896 unblock_operations(sbi);
897 mutex_unlock(&sbi->cp_mutex);
898
Changman Lee8b83cd32014-02-13 15:12:29 +0900899 stat_inc_cp_count(sbi->stat_info);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800900 trace_f2fs_write_checkpoint(sbi->sb, is_umount, "finish checkpoint");
901}
902
903void init_orphan_info(struct f2fs_sb_info *sbi)
904{
Changman Leeb1a94e82013-11-15 10:42:51 +0900905 spin_lock_init(&sbi->orphan_inode_lock);
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800906 INIT_LIST_HEAD(&sbi->orphan_inode_list);
907 sbi->n_orphans = 0;
Changman Leeb1a94e82013-11-15 10:42:51 +0900908 /*
909 * considering 512 blocks in a segment 8 blocks are needed for cp
910 * and log segment summaries. Remaining blocks are used to keep
911 * orphan entries with the limitation one reserved segment
912 * for cp pack we can have max 1020*504 orphan entries
913 */
914 sbi->max_orphans = (sbi->blocks_per_seg - 2 - NR_CURSEG_TYPE)
915 * F2FS_ORPHANS_PER_BLOCK;
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800916}
917
918int __init create_checkpoint_caches(void)
919{
920 orphan_entry_slab = f2fs_kmem_cache_create("f2fs_orphan_entry",
Gu Zhenge33dcea2014-03-07 18:43:28 +0800921 sizeof(struct orphan_inode_entry));
Changman Leeb1a94e82013-11-15 10:42:51 +0900922 if (!orphan_entry_slab)
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800923 return -ENOMEM;
924 inode_entry_slab = f2fs_kmem_cache_create("f2fs_dirty_dir_entry",
Gu Zhenge33dcea2014-03-07 18:43:28 +0800925 sizeof(struct dir_inode_entry));
Changman Leeb1a94e82013-11-15 10:42:51 +0900926 if (!inode_entry_slab) {
Linus Torvalds8005ecc2012-12-20 13:54:51 -0800927 kmem_cache_destroy(orphan_entry_slab);
928 return -ENOMEM;
929 }
930 return 0;
931}
932
933void destroy_checkpoint_caches(void)
934{
935 kmem_cache_destroy(orphan_entry_slab);
936 kmem_cache_destroy(inode_entry_slab);
937}