blob: 4cb182c20eeddcb8ca4dbb8a19277d6dd788caef [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/*
3 * fs/f2fs/node.c
4 *
5 * Copyright (c) 2012 Samsung Electronics Co., Ltd.
6 * http://www.samsung.com/
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00007 */
8#include <linux/fs.h>
9#include <linux/f2fs_fs.h>
10#include <linux/mpage.h>
11#include <linux/backing-dev.h>
12#include <linux/blkdev.h>
13#include <linux/pagevec.h>
14#include <linux/swap.h>
15
16#include "f2fs.h"
17#include "node.h"
18#include "segment.h"
19#include "xattr.h"
20#include "trace.h"
21#include <trace/events/f2fs.h>
22
23#define on_f2fs_build_free_nids(nmi) mutex_is_locked(&(nm_i)->build_lock)
24
25static struct kmem_cache *nat_entry_slab;
26static struct kmem_cache *free_nid_slab;
27static struct kmem_cache *nat_entry_set_slab;
28static struct kmem_cache *fsync_node_entry_slab;
29
30/*
31 * Check whether the given nid is within node id range.
32 */
33int f2fs_check_nid_range(struct f2fs_sb_info *sbi, nid_t nid)
34{
35 if (unlikely(nid < F2FS_ROOT_INO(sbi) || nid >= NM_I(sbi)->max_nid)) {
36 set_sbi_flag(sbi, SBI_NEED_FSCK);
David Brazdil0f672f62019-12-10 10:32:29 +000037 f2fs_warn(sbi, "%s: out-of-range nid=%x, run fsck to fix.",
38 __func__, nid);
39 return -EFSCORRUPTED;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000040 }
41 return 0;
42}
43
44bool f2fs_available_free_memory(struct f2fs_sb_info *sbi, int type)
45{
46 struct f2fs_nm_info *nm_i = NM_I(sbi);
47 struct sysinfo val;
48 unsigned long avail_ram;
49 unsigned long mem_size = 0;
50 bool res = false;
51
52 si_meminfo(&val);
53
54 /* only uses low memory */
55 avail_ram = val.totalram - val.totalhigh;
56
57 /*
58 * give 25%, 25%, 50%, 50%, 50% memory for each components respectively
59 */
60 if (type == FREE_NIDS) {
61 mem_size = (nm_i->nid_cnt[FREE_NID] *
62 sizeof(struct free_nid)) >> PAGE_SHIFT;
63 res = mem_size < ((avail_ram * nm_i->ram_thresh / 100) >> 2);
64 } else if (type == NAT_ENTRIES) {
Olivier Deprez0e641232021-09-23 10:07:05 +020065 mem_size = (nm_i->nat_cnt[TOTAL_NAT] *
66 sizeof(struct nat_entry)) >> PAGE_SHIFT;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000067 res = mem_size < ((avail_ram * nm_i->ram_thresh / 100) >> 2);
68 if (excess_cached_nats(sbi))
69 res = false;
70 } else if (type == DIRTY_DENTS) {
71 if (sbi->sb->s_bdi->wb.dirty_exceeded)
72 return false;
73 mem_size = get_pages(sbi, F2FS_DIRTY_DENTS);
74 res = mem_size < ((avail_ram * nm_i->ram_thresh / 100) >> 1);
75 } else if (type == INO_ENTRIES) {
76 int i;
77
78 for (i = 0; i < MAX_INO_ENTRY; i++)
79 mem_size += sbi->im[i].ino_num *
80 sizeof(struct ino_entry);
81 mem_size >>= PAGE_SHIFT;
82 res = mem_size < ((avail_ram * nm_i->ram_thresh / 100) >> 1);
83 } else if (type == EXTENT_CACHE) {
84 mem_size = (atomic_read(&sbi->total_ext_tree) *
85 sizeof(struct extent_tree) +
86 atomic_read(&sbi->total_ext_node) *
87 sizeof(struct extent_node)) >> PAGE_SHIFT;
88 res = mem_size < ((avail_ram * nm_i->ram_thresh / 100) >> 1);
89 } else if (type == INMEM_PAGES) {
90 /* it allows 20% / total_ram for inmemory pages */
91 mem_size = get_pages(sbi, F2FS_INMEM_PAGES);
92 res = mem_size < (val.totalram / 5);
93 } else {
94 if (!sbi->sb->s_bdi->wb.dirty_exceeded)
95 return true;
96 }
97 return res;
98}
99
100static void clear_node_page_dirty(struct page *page)
101{
102 if (PageDirty(page)) {
David Brazdil0f672f62019-12-10 10:32:29 +0000103 f2fs_clear_page_cache_dirty_tag(page);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000104 clear_page_dirty_for_io(page);
105 dec_page_count(F2FS_P_SB(page), F2FS_DIRTY_NODES);
106 }
107 ClearPageUptodate(page);
108}
109
110static struct page *get_current_nat_page(struct f2fs_sb_info *sbi, nid_t nid)
111{
Olivier Deprez0e641232021-09-23 10:07:05 +0200112 return f2fs_get_meta_page_retry(sbi, current_nat_addr(sbi, nid));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000113}
114
115static struct page *get_next_nat_page(struct f2fs_sb_info *sbi, nid_t nid)
116{
117 struct page *src_page;
118 struct page *dst_page;
119 pgoff_t dst_off;
120 void *src_addr;
121 void *dst_addr;
122 struct f2fs_nm_info *nm_i = NM_I(sbi);
123
124 dst_off = next_nat_addr(sbi, current_nat_addr(sbi, nid));
125
126 /* get current nat block page with lock */
127 src_page = get_current_nat_page(sbi, nid);
David Brazdil0f672f62019-12-10 10:32:29 +0000128 if (IS_ERR(src_page))
129 return src_page;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000130 dst_page = f2fs_grab_meta_page(sbi, dst_off);
131 f2fs_bug_on(sbi, PageDirty(src_page));
132
133 src_addr = page_address(src_page);
134 dst_addr = page_address(dst_page);
135 memcpy(dst_addr, src_addr, PAGE_SIZE);
136 set_page_dirty(dst_page);
137 f2fs_put_page(src_page, 1);
138
139 set_to_next_nat(nm_i, nid);
140
141 return dst_page;
142}
143
144static struct nat_entry *__alloc_nat_entry(nid_t nid, bool no_fail)
145{
146 struct nat_entry *new;
147
148 if (no_fail)
149 new = f2fs_kmem_cache_alloc(nat_entry_slab, GFP_F2FS_ZERO);
150 else
151 new = kmem_cache_alloc(nat_entry_slab, GFP_F2FS_ZERO);
152 if (new) {
153 nat_set_nid(new, nid);
154 nat_reset_flag(new);
155 }
156 return new;
157}
158
159static void __free_nat_entry(struct nat_entry *e)
160{
161 kmem_cache_free(nat_entry_slab, e);
162}
163
164/* must be locked by nat_tree_lock */
165static struct nat_entry *__init_nat_entry(struct f2fs_nm_info *nm_i,
166 struct nat_entry *ne, struct f2fs_nat_entry *raw_ne, bool no_fail)
167{
168 if (no_fail)
169 f2fs_radix_tree_insert(&nm_i->nat_root, nat_get_nid(ne), ne);
170 else if (radix_tree_insert(&nm_i->nat_root, nat_get_nid(ne), ne))
171 return NULL;
172
173 if (raw_ne)
174 node_info_from_raw_nat(&ne->ni, raw_ne);
175
176 spin_lock(&nm_i->nat_list_lock);
177 list_add_tail(&ne->list, &nm_i->nat_entries);
178 spin_unlock(&nm_i->nat_list_lock);
179
Olivier Deprez0e641232021-09-23 10:07:05 +0200180 nm_i->nat_cnt[TOTAL_NAT]++;
181 nm_i->nat_cnt[RECLAIMABLE_NAT]++;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000182 return ne;
183}
184
185static struct nat_entry *__lookup_nat_cache(struct f2fs_nm_info *nm_i, nid_t n)
186{
187 struct nat_entry *ne;
188
189 ne = radix_tree_lookup(&nm_i->nat_root, n);
190
191 /* for recent accessed nat entry, move it to tail of lru list */
192 if (ne && !get_nat_flag(ne, IS_DIRTY)) {
193 spin_lock(&nm_i->nat_list_lock);
194 if (!list_empty(&ne->list))
195 list_move_tail(&ne->list, &nm_i->nat_entries);
196 spin_unlock(&nm_i->nat_list_lock);
197 }
198
199 return ne;
200}
201
202static unsigned int __gang_lookup_nat_cache(struct f2fs_nm_info *nm_i,
203 nid_t start, unsigned int nr, struct nat_entry **ep)
204{
205 return radix_tree_gang_lookup(&nm_i->nat_root, (void **)ep, start, nr);
206}
207
208static void __del_from_nat_cache(struct f2fs_nm_info *nm_i, struct nat_entry *e)
209{
210 radix_tree_delete(&nm_i->nat_root, nat_get_nid(e));
Olivier Deprez0e641232021-09-23 10:07:05 +0200211 nm_i->nat_cnt[TOTAL_NAT]--;
212 nm_i->nat_cnt[RECLAIMABLE_NAT]--;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000213 __free_nat_entry(e);
214}
215
216static struct nat_entry_set *__grab_nat_entry_set(struct f2fs_nm_info *nm_i,
217 struct nat_entry *ne)
218{
219 nid_t set = NAT_BLOCK_OFFSET(ne->ni.nid);
220 struct nat_entry_set *head;
221
222 head = radix_tree_lookup(&nm_i->nat_set_root, set);
223 if (!head) {
224 head = f2fs_kmem_cache_alloc(nat_entry_set_slab, GFP_NOFS);
225
226 INIT_LIST_HEAD(&head->entry_list);
227 INIT_LIST_HEAD(&head->set_list);
228 head->set = set;
229 head->entry_cnt = 0;
230 f2fs_radix_tree_insert(&nm_i->nat_set_root, set, head);
231 }
232 return head;
233}
234
235static void __set_nat_cache_dirty(struct f2fs_nm_info *nm_i,
236 struct nat_entry *ne)
237{
238 struct nat_entry_set *head;
239 bool new_ne = nat_get_blkaddr(ne) == NEW_ADDR;
240
241 if (!new_ne)
242 head = __grab_nat_entry_set(nm_i, ne);
243
244 /*
245 * update entry_cnt in below condition:
246 * 1. update NEW_ADDR to valid block address;
247 * 2. update old block address to new one;
248 */
249 if (!new_ne && (get_nat_flag(ne, IS_PREALLOC) ||
250 !get_nat_flag(ne, IS_DIRTY)))
251 head->entry_cnt++;
252
253 set_nat_flag(ne, IS_PREALLOC, new_ne);
254
255 if (get_nat_flag(ne, IS_DIRTY))
256 goto refresh_list;
257
Olivier Deprez0e641232021-09-23 10:07:05 +0200258 nm_i->nat_cnt[DIRTY_NAT]++;
259 nm_i->nat_cnt[RECLAIMABLE_NAT]--;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000260 set_nat_flag(ne, IS_DIRTY, true);
261refresh_list:
262 spin_lock(&nm_i->nat_list_lock);
263 if (new_ne)
264 list_del_init(&ne->list);
265 else
266 list_move_tail(&ne->list, &head->entry_list);
267 spin_unlock(&nm_i->nat_list_lock);
268}
269
270static void __clear_nat_cache_dirty(struct f2fs_nm_info *nm_i,
271 struct nat_entry_set *set, struct nat_entry *ne)
272{
273 spin_lock(&nm_i->nat_list_lock);
274 list_move_tail(&ne->list, &nm_i->nat_entries);
275 spin_unlock(&nm_i->nat_list_lock);
276
277 set_nat_flag(ne, IS_DIRTY, false);
278 set->entry_cnt--;
Olivier Deprez0e641232021-09-23 10:07:05 +0200279 nm_i->nat_cnt[DIRTY_NAT]--;
280 nm_i->nat_cnt[RECLAIMABLE_NAT]++;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000281}
282
283static unsigned int __gang_lookup_nat_set(struct f2fs_nm_info *nm_i,
284 nid_t start, unsigned int nr, struct nat_entry_set **ep)
285{
286 return radix_tree_gang_lookup(&nm_i->nat_set_root, (void **)ep,
287 start, nr);
288}
289
290bool f2fs_in_warm_node_list(struct f2fs_sb_info *sbi, struct page *page)
291{
292 return NODE_MAPPING(sbi) == page->mapping &&
293 IS_DNODE(page) && is_cold_node(page);
294}
295
296void f2fs_init_fsync_node_info(struct f2fs_sb_info *sbi)
297{
298 spin_lock_init(&sbi->fsync_node_lock);
299 INIT_LIST_HEAD(&sbi->fsync_node_list);
300 sbi->fsync_seg_id = 0;
301 sbi->fsync_node_num = 0;
302}
303
304static unsigned int f2fs_add_fsync_node_entry(struct f2fs_sb_info *sbi,
305 struct page *page)
306{
307 struct fsync_node_entry *fn;
308 unsigned long flags;
309 unsigned int seq_id;
310
311 fn = f2fs_kmem_cache_alloc(fsync_node_entry_slab, GFP_NOFS);
312
313 get_page(page);
314 fn->page = page;
315 INIT_LIST_HEAD(&fn->list);
316
317 spin_lock_irqsave(&sbi->fsync_node_lock, flags);
318 list_add_tail(&fn->list, &sbi->fsync_node_list);
319 fn->seq_id = sbi->fsync_seg_id++;
320 seq_id = fn->seq_id;
321 sbi->fsync_node_num++;
322 spin_unlock_irqrestore(&sbi->fsync_node_lock, flags);
323
324 return seq_id;
325}
326
327void f2fs_del_fsync_node_entry(struct f2fs_sb_info *sbi, struct page *page)
328{
329 struct fsync_node_entry *fn;
330 unsigned long flags;
331
332 spin_lock_irqsave(&sbi->fsync_node_lock, flags);
333 list_for_each_entry(fn, &sbi->fsync_node_list, list) {
334 if (fn->page == page) {
335 list_del(&fn->list);
336 sbi->fsync_node_num--;
337 spin_unlock_irqrestore(&sbi->fsync_node_lock, flags);
338 kmem_cache_free(fsync_node_entry_slab, fn);
339 put_page(page);
340 return;
341 }
342 }
343 spin_unlock_irqrestore(&sbi->fsync_node_lock, flags);
344 f2fs_bug_on(sbi, 1);
345}
346
347void f2fs_reset_fsync_node_info(struct f2fs_sb_info *sbi)
348{
349 unsigned long flags;
350
351 spin_lock_irqsave(&sbi->fsync_node_lock, flags);
352 sbi->fsync_seg_id = 0;
353 spin_unlock_irqrestore(&sbi->fsync_node_lock, flags);
354}
355
356int f2fs_need_dentry_mark(struct f2fs_sb_info *sbi, nid_t nid)
357{
358 struct f2fs_nm_info *nm_i = NM_I(sbi);
359 struct nat_entry *e;
360 bool need = false;
361
362 down_read(&nm_i->nat_tree_lock);
363 e = __lookup_nat_cache(nm_i, nid);
364 if (e) {
365 if (!get_nat_flag(e, IS_CHECKPOINTED) &&
366 !get_nat_flag(e, HAS_FSYNCED_INODE))
367 need = true;
368 }
369 up_read(&nm_i->nat_tree_lock);
370 return need;
371}
372
373bool f2fs_is_checkpointed_node(struct f2fs_sb_info *sbi, nid_t nid)
374{
375 struct f2fs_nm_info *nm_i = NM_I(sbi);
376 struct nat_entry *e;
377 bool is_cp = true;
378
379 down_read(&nm_i->nat_tree_lock);
380 e = __lookup_nat_cache(nm_i, nid);
381 if (e && !get_nat_flag(e, IS_CHECKPOINTED))
382 is_cp = false;
383 up_read(&nm_i->nat_tree_lock);
384 return is_cp;
385}
386
387bool f2fs_need_inode_block_update(struct f2fs_sb_info *sbi, nid_t ino)
388{
389 struct f2fs_nm_info *nm_i = NM_I(sbi);
390 struct nat_entry *e;
391 bool need_update = true;
392
393 down_read(&nm_i->nat_tree_lock);
394 e = __lookup_nat_cache(nm_i, ino);
395 if (e && get_nat_flag(e, HAS_LAST_FSYNC) &&
396 (get_nat_flag(e, IS_CHECKPOINTED) ||
397 get_nat_flag(e, HAS_FSYNCED_INODE)))
398 need_update = false;
399 up_read(&nm_i->nat_tree_lock);
400 return need_update;
401}
402
403/* must be locked by nat_tree_lock */
404static void cache_nat_entry(struct f2fs_sb_info *sbi, nid_t nid,
405 struct f2fs_nat_entry *ne)
406{
407 struct f2fs_nm_info *nm_i = NM_I(sbi);
408 struct nat_entry *new, *e;
409
410 new = __alloc_nat_entry(nid, false);
411 if (!new)
412 return;
413
414 down_write(&nm_i->nat_tree_lock);
415 e = __lookup_nat_cache(nm_i, nid);
416 if (!e)
417 e = __init_nat_entry(nm_i, new, ne, false);
418 else
419 f2fs_bug_on(sbi, nat_get_ino(e) != le32_to_cpu(ne->ino) ||
420 nat_get_blkaddr(e) !=
421 le32_to_cpu(ne->block_addr) ||
422 nat_get_version(e) != ne->version);
423 up_write(&nm_i->nat_tree_lock);
424 if (e != new)
425 __free_nat_entry(new);
426}
427
428static void set_node_addr(struct f2fs_sb_info *sbi, struct node_info *ni,
429 block_t new_blkaddr, bool fsync_done)
430{
431 struct f2fs_nm_info *nm_i = NM_I(sbi);
432 struct nat_entry *e;
433 struct nat_entry *new = __alloc_nat_entry(ni->nid, true);
434
435 down_write(&nm_i->nat_tree_lock);
436 e = __lookup_nat_cache(nm_i, ni->nid);
437 if (!e) {
438 e = __init_nat_entry(nm_i, new, NULL, true);
439 copy_node_info(&e->ni, ni);
440 f2fs_bug_on(sbi, ni->blk_addr == NEW_ADDR);
441 } else if (new_blkaddr == NEW_ADDR) {
442 /*
443 * when nid is reallocated,
444 * previous nat entry can be remained in nat cache.
445 * So, reinitialize it with new information.
446 */
447 copy_node_info(&e->ni, ni);
448 f2fs_bug_on(sbi, ni->blk_addr != NULL_ADDR);
449 }
450 /* let's free early to reduce memory consumption */
451 if (e != new)
452 __free_nat_entry(new);
453
454 /* sanity check */
455 f2fs_bug_on(sbi, nat_get_blkaddr(e) != ni->blk_addr);
456 f2fs_bug_on(sbi, nat_get_blkaddr(e) == NULL_ADDR &&
457 new_blkaddr == NULL_ADDR);
458 f2fs_bug_on(sbi, nat_get_blkaddr(e) == NEW_ADDR &&
459 new_blkaddr == NEW_ADDR);
David Brazdil0f672f62019-12-10 10:32:29 +0000460 f2fs_bug_on(sbi, __is_valid_data_blkaddr(nat_get_blkaddr(e)) &&
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000461 new_blkaddr == NEW_ADDR);
462
463 /* increment version no as node is removed */
464 if (nat_get_blkaddr(e) != NEW_ADDR && new_blkaddr == NULL_ADDR) {
465 unsigned char version = nat_get_version(e);
466 nat_set_version(e, inc_node_version(version));
467 }
468
469 /* change address */
470 nat_set_blkaddr(e, new_blkaddr);
David Brazdil0f672f62019-12-10 10:32:29 +0000471 if (!__is_valid_data_blkaddr(new_blkaddr))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000472 set_nat_flag(e, IS_CHECKPOINTED, false);
473 __set_nat_cache_dirty(nm_i, e);
474
475 /* update fsync_mark if its inode nat entry is still alive */
476 if (ni->nid != ni->ino)
477 e = __lookup_nat_cache(nm_i, ni->ino);
478 if (e) {
479 if (fsync_done && ni->nid == ni->ino)
480 set_nat_flag(e, HAS_FSYNCED_INODE, true);
481 set_nat_flag(e, HAS_LAST_FSYNC, fsync_done);
482 }
483 up_write(&nm_i->nat_tree_lock);
484}
485
486int f2fs_try_to_free_nats(struct f2fs_sb_info *sbi, int nr_shrink)
487{
488 struct f2fs_nm_info *nm_i = NM_I(sbi);
489 int nr = nr_shrink;
490
491 if (!down_write_trylock(&nm_i->nat_tree_lock))
492 return 0;
493
494 spin_lock(&nm_i->nat_list_lock);
495 while (nr_shrink) {
496 struct nat_entry *ne;
497
498 if (list_empty(&nm_i->nat_entries))
499 break;
500
501 ne = list_first_entry(&nm_i->nat_entries,
502 struct nat_entry, list);
503 list_del(&ne->list);
504 spin_unlock(&nm_i->nat_list_lock);
505
506 __del_from_nat_cache(nm_i, ne);
507 nr_shrink--;
508
509 spin_lock(&nm_i->nat_list_lock);
510 }
511 spin_unlock(&nm_i->nat_list_lock);
512
513 up_write(&nm_i->nat_tree_lock);
514 return nr - nr_shrink;
515}
516
517/*
518 * This function always returns success
519 */
520int f2fs_get_node_info(struct f2fs_sb_info *sbi, nid_t nid,
521 struct node_info *ni)
522{
523 struct f2fs_nm_info *nm_i = NM_I(sbi);
524 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_HOT_DATA);
525 struct f2fs_journal *journal = curseg->journal;
526 nid_t start_nid = START_NID(nid);
527 struct f2fs_nat_block *nat_blk;
528 struct page *page = NULL;
529 struct f2fs_nat_entry ne;
530 struct nat_entry *e;
531 pgoff_t index;
David Brazdil0f672f62019-12-10 10:32:29 +0000532 block_t blkaddr;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000533 int i;
534
535 ni->nid = nid;
536
537 /* Check nat cache */
538 down_read(&nm_i->nat_tree_lock);
539 e = __lookup_nat_cache(nm_i, nid);
540 if (e) {
541 ni->ino = nat_get_ino(e);
542 ni->blk_addr = nat_get_blkaddr(e);
543 ni->version = nat_get_version(e);
544 up_read(&nm_i->nat_tree_lock);
545 return 0;
546 }
547
548 memset(&ne, 0, sizeof(struct f2fs_nat_entry));
549
550 /* Check current segment summary */
551 down_read(&curseg->journal_rwsem);
552 i = f2fs_lookup_journal_in_cursum(journal, NAT_JOURNAL, nid, 0);
553 if (i >= 0) {
554 ne = nat_in_journal(journal, i);
555 node_info_from_raw_nat(ni, &ne);
556 }
557 up_read(&curseg->journal_rwsem);
558 if (i >= 0) {
559 up_read(&nm_i->nat_tree_lock);
560 goto cache;
561 }
562
563 /* Fill node_info from nat page */
564 index = current_nat_addr(sbi, nid);
565 up_read(&nm_i->nat_tree_lock);
566
567 page = f2fs_get_meta_page(sbi, index);
568 if (IS_ERR(page))
569 return PTR_ERR(page);
570
571 nat_blk = (struct f2fs_nat_block *)page_address(page);
572 ne = nat_blk->entries[nid - start_nid];
573 node_info_from_raw_nat(ni, &ne);
574 f2fs_put_page(page, 1);
575cache:
David Brazdil0f672f62019-12-10 10:32:29 +0000576 blkaddr = le32_to_cpu(ne.block_addr);
577 if (__is_valid_data_blkaddr(blkaddr) &&
578 !f2fs_is_valid_blkaddr(sbi, blkaddr, DATA_GENERIC_ENHANCE))
579 return -EFAULT;
580
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000581 /* cache nat entry */
582 cache_nat_entry(sbi, nid, &ne);
583 return 0;
584}
585
586/*
587 * readahead MAX_RA_NODE number of node pages.
588 */
589static void f2fs_ra_node_pages(struct page *parent, int start, int n)
590{
591 struct f2fs_sb_info *sbi = F2FS_P_SB(parent);
592 struct blk_plug plug;
593 int i, end;
594 nid_t nid;
595
596 blk_start_plug(&plug);
597
598 /* Then, try readahead for siblings of the desired node */
599 end = start + n;
600 end = min(end, NIDS_PER_BLOCK);
601 for (i = start; i < end; i++) {
602 nid = get_nid(parent, i, false);
603 f2fs_ra_node_page(sbi, nid);
604 }
605
606 blk_finish_plug(&plug);
607}
608
609pgoff_t f2fs_get_next_page_offset(struct dnode_of_data *dn, pgoff_t pgofs)
610{
611 const long direct_index = ADDRS_PER_INODE(dn->inode);
David Brazdil0f672f62019-12-10 10:32:29 +0000612 const long direct_blks = ADDRS_PER_BLOCK(dn->inode);
613 const long indirect_blks = ADDRS_PER_BLOCK(dn->inode) * NIDS_PER_BLOCK;
614 unsigned int skipped_unit = ADDRS_PER_BLOCK(dn->inode);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000615 int cur_level = dn->cur_level;
616 int max_level = dn->max_level;
617 pgoff_t base = 0;
618
619 if (!dn->max_level)
620 return pgofs + 1;
621
622 while (max_level-- > cur_level)
623 skipped_unit *= NIDS_PER_BLOCK;
624
625 switch (dn->max_level) {
626 case 3:
627 base += 2 * indirect_blks;
David Brazdil0f672f62019-12-10 10:32:29 +0000628 /* fall through */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000629 case 2:
630 base += 2 * direct_blks;
David Brazdil0f672f62019-12-10 10:32:29 +0000631 /* fall through */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000632 case 1:
633 base += direct_index;
634 break;
635 default:
636 f2fs_bug_on(F2FS_I_SB(dn->inode), 1);
637 }
638
639 return ((pgofs - base) / skipped_unit + 1) * skipped_unit + base;
640}
641
642/*
643 * The maximum depth is four.
644 * Offset[0] will have raw inode offset.
645 */
646static int get_node_path(struct inode *inode, long block,
647 int offset[4], unsigned int noffset[4])
648{
649 const long direct_index = ADDRS_PER_INODE(inode);
David Brazdil0f672f62019-12-10 10:32:29 +0000650 const long direct_blks = ADDRS_PER_BLOCK(inode);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000651 const long dptrs_per_blk = NIDS_PER_BLOCK;
David Brazdil0f672f62019-12-10 10:32:29 +0000652 const long indirect_blks = ADDRS_PER_BLOCK(inode) * NIDS_PER_BLOCK;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000653 const long dindirect_blks = indirect_blks * NIDS_PER_BLOCK;
654 int n = 0;
655 int level = 0;
656
657 noffset[0] = 0;
658
659 if (block < direct_index) {
660 offset[n] = block;
661 goto got;
662 }
663 block -= direct_index;
664 if (block < direct_blks) {
665 offset[n++] = NODE_DIR1_BLOCK;
666 noffset[n] = 1;
667 offset[n] = block;
668 level = 1;
669 goto got;
670 }
671 block -= direct_blks;
672 if (block < direct_blks) {
673 offset[n++] = NODE_DIR2_BLOCK;
674 noffset[n] = 2;
675 offset[n] = block;
676 level = 1;
677 goto got;
678 }
679 block -= direct_blks;
680 if (block < indirect_blks) {
681 offset[n++] = NODE_IND1_BLOCK;
682 noffset[n] = 3;
683 offset[n++] = block / direct_blks;
684 noffset[n] = 4 + offset[n - 1];
685 offset[n] = block % direct_blks;
686 level = 2;
687 goto got;
688 }
689 block -= indirect_blks;
690 if (block < indirect_blks) {
691 offset[n++] = NODE_IND2_BLOCK;
692 noffset[n] = 4 + dptrs_per_blk;
693 offset[n++] = block / direct_blks;
694 noffset[n] = 5 + dptrs_per_blk + offset[n - 1];
695 offset[n] = block % direct_blks;
696 level = 2;
697 goto got;
698 }
699 block -= indirect_blks;
700 if (block < dindirect_blks) {
701 offset[n++] = NODE_DIND_BLOCK;
702 noffset[n] = 5 + (dptrs_per_blk * 2);
703 offset[n++] = block / indirect_blks;
704 noffset[n] = 6 + (dptrs_per_blk * 2) +
705 offset[n - 1] * (dptrs_per_blk + 1);
706 offset[n++] = (block / direct_blks) % dptrs_per_blk;
707 noffset[n] = 7 + (dptrs_per_blk * 2) +
708 offset[n - 2] * (dptrs_per_blk + 1) +
709 offset[n - 1];
710 offset[n] = block % direct_blks;
711 level = 3;
712 goto got;
713 } else {
714 return -E2BIG;
715 }
716got:
717 return level;
718}
719
720/*
721 * Caller should call f2fs_put_dnode(dn).
722 * Also, it should grab and release a rwsem by calling f2fs_lock_op() and
723 * f2fs_unlock_op() only if ro is not set RDONLY_NODE.
724 * In the case of RDONLY_NODE, we don't need to care about mutex.
725 */
726int f2fs_get_dnode_of_data(struct dnode_of_data *dn, pgoff_t index, int mode)
727{
728 struct f2fs_sb_info *sbi = F2FS_I_SB(dn->inode);
729 struct page *npage[4];
730 struct page *parent = NULL;
731 int offset[4];
732 unsigned int noffset[4];
733 nid_t nids[4];
734 int level, i = 0;
735 int err = 0;
736
737 level = get_node_path(dn->inode, index, offset, noffset);
738 if (level < 0)
739 return level;
740
741 nids[0] = dn->inode->i_ino;
742 npage[0] = dn->inode_page;
743
744 if (!npage[0]) {
745 npage[0] = f2fs_get_node_page(sbi, nids[0]);
746 if (IS_ERR(npage[0]))
747 return PTR_ERR(npage[0]);
748 }
749
750 /* if inline_data is set, should not report any block indices */
751 if (f2fs_has_inline_data(dn->inode) && index) {
752 err = -ENOENT;
753 f2fs_put_page(npage[0], 1);
754 goto release_out;
755 }
756
757 parent = npage[0];
758 if (level != 0)
759 nids[1] = get_nid(parent, offset[0], true);
760 dn->inode_page = npage[0];
761 dn->inode_page_locked = true;
762
763 /* get indirect or direct nodes */
764 for (i = 1; i <= level; i++) {
765 bool done = false;
766
767 if (!nids[i] && mode == ALLOC_NODE) {
768 /* alloc new node */
769 if (!f2fs_alloc_nid(sbi, &(nids[i]))) {
770 err = -ENOSPC;
771 goto release_pages;
772 }
773
774 dn->nid = nids[i];
775 npage[i] = f2fs_new_node_page(dn, noffset[i]);
776 if (IS_ERR(npage[i])) {
777 f2fs_alloc_nid_failed(sbi, nids[i]);
778 err = PTR_ERR(npage[i]);
779 goto release_pages;
780 }
781
782 set_nid(parent, offset[i - 1], nids[i], i == 1);
783 f2fs_alloc_nid_done(sbi, nids[i]);
784 done = true;
785 } else if (mode == LOOKUP_NODE_RA && i == level && level > 1) {
786 npage[i] = f2fs_get_node_page_ra(parent, offset[i - 1]);
787 if (IS_ERR(npage[i])) {
788 err = PTR_ERR(npage[i]);
789 goto release_pages;
790 }
791 done = true;
792 }
793 if (i == 1) {
794 dn->inode_page_locked = false;
795 unlock_page(parent);
796 } else {
797 f2fs_put_page(parent, 1);
798 }
799
800 if (!done) {
801 npage[i] = f2fs_get_node_page(sbi, nids[i]);
802 if (IS_ERR(npage[i])) {
803 err = PTR_ERR(npage[i]);
804 f2fs_put_page(npage[0], 0);
805 goto release_out;
806 }
807 }
808 if (i < level) {
809 parent = npage[i];
810 nids[i + 1] = get_nid(parent, offset[i], false);
811 }
812 }
813 dn->nid = nids[level];
814 dn->ofs_in_node = offset[level];
815 dn->node_page = npage[level];
816 dn->data_blkaddr = datablock_addr(dn->inode,
817 dn->node_page, dn->ofs_in_node);
818 return 0;
819
820release_pages:
821 f2fs_put_page(parent, 1);
822 if (i > 1)
823 f2fs_put_page(npage[0], 0);
824release_out:
825 dn->inode_page = NULL;
826 dn->node_page = NULL;
827 if (err == -ENOENT) {
828 dn->cur_level = i;
829 dn->max_level = level;
830 dn->ofs_in_node = offset[level];
831 }
832 return err;
833}
834
835static int truncate_node(struct dnode_of_data *dn)
836{
837 struct f2fs_sb_info *sbi = F2FS_I_SB(dn->inode);
838 struct node_info ni;
839 int err;
David Brazdil0f672f62019-12-10 10:32:29 +0000840 pgoff_t index;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000841
842 err = f2fs_get_node_info(sbi, dn->nid, &ni);
843 if (err)
844 return err;
845
846 /* Deallocate node address */
847 f2fs_invalidate_blocks(sbi, ni.blk_addr);
848 dec_valid_node_count(sbi, dn->inode, dn->nid == dn->inode->i_ino);
849 set_node_addr(sbi, &ni, NULL_ADDR, false);
850
851 if (dn->nid == dn->inode->i_ino) {
852 f2fs_remove_orphan_inode(sbi, dn->nid);
853 dec_valid_inode_count(sbi);
854 f2fs_inode_synced(dn->inode);
855 }
856
857 clear_node_page_dirty(dn->node_page);
858 set_sbi_flag(sbi, SBI_IS_DIRTY);
859
David Brazdil0f672f62019-12-10 10:32:29 +0000860 index = dn->node_page->index;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000861 f2fs_put_page(dn->node_page, 1);
862
863 invalidate_mapping_pages(NODE_MAPPING(sbi),
David Brazdil0f672f62019-12-10 10:32:29 +0000864 index, index);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000865
866 dn->node_page = NULL;
867 trace_f2fs_truncate_node(dn->inode, dn->nid, ni.blk_addr);
868
869 return 0;
870}
871
872static int truncate_dnode(struct dnode_of_data *dn)
873{
874 struct page *page;
875 int err;
876
877 if (dn->nid == 0)
878 return 1;
879
880 /* get direct node */
881 page = f2fs_get_node_page(F2FS_I_SB(dn->inode), dn->nid);
882 if (IS_ERR(page) && PTR_ERR(page) == -ENOENT)
883 return 1;
884 else if (IS_ERR(page))
885 return PTR_ERR(page);
886
887 /* Make dnode_of_data for parameter */
888 dn->node_page = page;
889 dn->ofs_in_node = 0;
890 f2fs_truncate_data_blocks(dn);
891 err = truncate_node(dn);
892 if (err)
893 return err;
894
895 return 1;
896}
897
898static int truncate_nodes(struct dnode_of_data *dn, unsigned int nofs,
899 int ofs, int depth)
900{
901 struct dnode_of_data rdn = *dn;
902 struct page *page;
903 struct f2fs_node *rn;
904 nid_t child_nid;
905 unsigned int child_nofs;
906 int freed = 0;
907 int i, ret;
908
909 if (dn->nid == 0)
910 return NIDS_PER_BLOCK + 1;
911
912 trace_f2fs_truncate_nodes_enter(dn->inode, dn->nid, dn->data_blkaddr);
913
914 page = f2fs_get_node_page(F2FS_I_SB(dn->inode), dn->nid);
915 if (IS_ERR(page)) {
916 trace_f2fs_truncate_nodes_exit(dn->inode, PTR_ERR(page));
917 return PTR_ERR(page);
918 }
919
920 f2fs_ra_node_pages(page, ofs, NIDS_PER_BLOCK);
921
922 rn = F2FS_NODE(page);
923 if (depth < 3) {
924 for (i = ofs; i < NIDS_PER_BLOCK; i++, freed++) {
925 child_nid = le32_to_cpu(rn->in.nid[i]);
926 if (child_nid == 0)
927 continue;
928 rdn.nid = child_nid;
929 ret = truncate_dnode(&rdn);
930 if (ret < 0)
931 goto out_err;
932 if (set_nid(page, i, 0, false))
933 dn->node_changed = true;
934 }
935 } else {
936 child_nofs = nofs + ofs * (NIDS_PER_BLOCK + 1) + 1;
937 for (i = ofs; i < NIDS_PER_BLOCK; i++) {
938 child_nid = le32_to_cpu(rn->in.nid[i]);
939 if (child_nid == 0) {
940 child_nofs += NIDS_PER_BLOCK + 1;
941 continue;
942 }
943 rdn.nid = child_nid;
944 ret = truncate_nodes(&rdn, child_nofs, 0, depth - 1);
945 if (ret == (NIDS_PER_BLOCK + 1)) {
946 if (set_nid(page, i, 0, false))
947 dn->node_changed = true;
948 child_nofs += ret;
949 } else if (ret < 0 && ret != -ENOENT) {
950 goto out_err;
951 }
952 }
953 freed = child_nofs;
954 }
955
956 if (!ofs) {
957 /* remove current indirect node */
958 dn->node_page = page;
959 ret = truncate_node(dn);
960 if (ret)
961 goto out_err;
962 freed++;
963 } else {
964 f2fs_put_page(page, 1);
965 }
966 trace_f2fs_truncate_nodes_exit(dn->inode, freed);
967 return freed;
968
969out_err:
970 f2fs_put_page(page, 1);
971 trace_f2fs_truncate_nodes_exit(dn->inode, ret);
972 return ret;
973}
974
975static int truncate_partial_nodes(struct dnode_of_data *dn,
976 struct f2fs_inode *ri, int *offset, int depth)
977{
978 struct page *pages[2];
979 nid_t nid[3];
980 nid_t child_nid;
981 int err = 0;
982 int i;
983 int idx = depth - 2;
984
985 nid[0] = le32_to_cpu(ri->i_nid[offset[0] - NODE_DIR1_BLOCK]);
986 if (!nid[0])
987 return 0;
988
989 /* get indirect nodes in the path */
990 for (i = 0; i < idx + 1; i++) {
991 /* reference count'll be increased */
992 pages[i] = f2fs_get_node_page(F2FS_I_SB(dn->inode), nid[i]);
993 if (IS_ERR(pages[i])) {
994 err = PTR_ERR(pages[i]);
995 idx = i - 1;
996 goto fail;
997 }
998 nid[i + 1] = get_nid(pages[i], offset[i + 1], false);
999 }
1000
1001 f2fs_ra_node_pages(pages[idx], offset[idx + 1], NIDS_PER_BLOCK);
1002
1003 /* free direct nodes linked to a partial indirect node */
1004 for (i = offset[idx + 1]; i < NIDS_PER_BLOCK; i++) {
1005 child_nid = get_nid(pages[idx], i, false);
1006 if (!child_nid)
1007 continue;
1008 dn->nid = child_nid;
1009 err = truncate_dnode(dn);
1010 if (err < 0)
1011 goto fail;
1012 if (set_nid(pages[idx], i, 0, false))
1013 dn->node_changed = true;
1014 }
1015
1016 if (offset[idx + 1] == 0) {
1017 dn->node_page = pages[idx];
1018 dn->nid = nid[idx];
1019 err = truncate_node(dn);
1020 if (err)
1021 goto fail;
1022 } else {
1023 f2fs_put_page(pages[idx], 1);
1024 }
1025 offset[idx]++;
1026 offset[idx + 1] = 0;
1027 idx--;
1028fail:
1029 for (i = idx; i >= 0; i--)
1030 f2fs_put_page(pages[i], 1);
1031
1032 trace_f2fs_truncate_partial_nodes(dn->inode, nid, depth, err);
1033
1034 return err;
1035}
1036
1037/*
1038 * All the block addresses of data and nodes should be nullified.
1039 */
1040int f2fs_truncate_inode_blocks(struct inode *inode, pgoff_t from)
1041{
1042 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1043 int err = 0, cont = 1;
1044 int level, offset[4], noffset[4];
1045 unsigned int nofs = 0;
1046 struct f2fs_inode *ri;
1047 struct dnode_of_data dn;
1048 struct page *page;
1049
1050 trace_f2fs_truncate_inode_blocks_enter(inode, from);
1051
1052 level = get_node_path(inode, from, offset, noffset);
1053 if (level < 0)
1054 return level;
1055
1056 page = f2fs_get_node_page(sbi, inode->i_ino);
1057 if (IS_ERR(page)) {
1058 trace_f2fs_truncate_inode_blocks_exit(inode, PTR_ERR(page));
1059 return PTR_ERR(page);
1060 }
1061
1062 set_new_dnode(&dn, inode, page, NULL, 0);
1063 unlock_page(page);
1064
1065 ri = F2FS_INODE(page);
1066 switch (level) {
1067 case 0:
1068 case 1:
1069 nofs = noffset[1];
1070 break;
1071 case 2:
1072 nofs = noffset[1];
1073 if (!offset[level - 1])
1074 goto skip_partial;
1075 err = truncate_partial_nodes(&dn, ri, offset, level);
1076 if (err < 0 && err != -ENOENT)
1077 goto fail;
1078 nofs += 1 + NIDS_PER_BLOCK;
1079 break;
1080 case 3:
1081 nofs = 5 + 2 * NIDS_PER_BLOCK;
1082 if (!offset[level - 1])
1083 goto skip_partial;
1084 err = truncate_partial_nodes(&dn, ri, offset, level);
1085 if (err < 0 && err != -ENOENT)
1086 goto fail;
1087 break;
1088 default:
1089 BUG();
1090 }
1091
1092skip_partial:
1093 while (cont) {
1094 dn.nid = le32_to_cpu(ri->i_nid[offset[0] - NODE_DIR1_BLOCK]);
1095 switch (offset[0]) {
1096 case NODE_DIR1_BLOCK:
1097 case NODE_DIR2_BLOCK:
1098 err = truncate_dnode(&dn);
1099 break;
1100
1101 case NODE_IND1_BLOCK:
1102 case NODE_IND2_BLOCK:
1103 err = truncate_nodes(&dn, nofs, offset[1], 2);
1104 break;
1105
1106 case NODE_DIND_BLOCK:
1107 err = truncate_nodes(&dn, nofs, offset[1], 3);
1108 cont = 0;
1109 break;
1110
1111 default:
1112 BUG();
1113 }
1114 if (err < 0 && err != -ENOENT)
1115 goto fail;
1116 if (offset[1] == 0 &&
1117 ri->i_nid[offset[0] - NODE_DIR1_BLOCK]) {
1118 lock_page(page);
1119 BUG_ON(page->mapping != NODE_MAPPING(sbi));
David Brazdil0f672f62019-12-10 10:32:29 +00001120 f2fs_wait_on_page_writeback(page, NODE, true, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001121 ri->i_nid[offset[0] - NODE_DIR1_BLOCK] = 0;
1122 set_page_dirty(page);
1123 unlock_page(page);
1124 }
1125 offset[1] = 0;
1126 offset[0]++;
1127 nofs += err;
1128 }
1129fail:
1130 f2fs_put_page(page, 0);
1131 trace_f2fs_truncate_inode_blocks_exit(inode, err);
1132 return err > 0 ? 0 : err;
1133}
1134
1135/* caller must lock inode page */
1136int f2fs_truncate_xattr_node(struct inode *inode)
1137{
1138 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1139 nid_t nid = F2FS_I(inode)->i_xattr_nid;
1140 struct dnode_of_data dn;
1141 struct page *npage;
1142 int err;
1143
1144 if (!nid)
1145 return 0;
1146
1147 npage = f2fs_get_node_page(sbi, nid);
1148 if (IS_ERR(npage))
1149 return PTR_ERR(npage);
1150
1151 set_new_dnode(&dn, inode, NULL, npage, nid);
1152 err = truncate_node(&dn);
1153 if (err) {
1154 f2fs_put_page(npage, 1);
1155 return err;
1156 }
1157
1158 f2fs_i_xnid_write(inode, 0);
1159
1160 return 0;
1161}
1162
1163/*
1164 * Caller should grab and release a rwsem by calling f2fs_lock_op() and
1165 * f2fs_unlock_op().
1166 */
1167int f2fs_remove_inode_page(struct inode *inode)
1168{
1169 struct dnode_of_data dn;
1170 int err;
1171
1172 set_new_dnode(&dn, inode, NULL, NULL, inode->i_ino);
1173 err = f2fs_get_dnode_of_data(&dn, 0, LOOKUP_NODE);
1174 if (err)
1175 return err;
1176
1177 err = f2fs_truncate_xattr_node(inode);
1178 if (err) {
1179 f2fs_put_dnode(&dn);
1180 return err;
1181 }
1182
1183 /* remove potential inline_data blocks */
1184 if (S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode) ||
1185 S_ISLNK(inode->i_mode))
1186 f2fs_truncate_data_blocks_range(&dn, 1);
1187
1188 /* 0 is possible, after f2fs_new_inode() has failed */
1189 if (unlikely(f2fs_cp_error(F2FS_I_SB(inode)))) {
1190 f2fs_put_dnode(&dn);
1191 return -EIO;
1192 }
David Brazdil0f672f62019-12-10 10:32:29 +00001193
1194 if (unlikely(inode->i_blocks != 0 && inode->i_blocks != 8)) {
1195 f2fs_warn(F2FS_I_SB(inode), "Inconsistent i_blocks, ino:%lu, iblocks:%llu",
1196 inode->i_ino, (unsigned long long)inode->i_blocks);
1197 set_sbi_flag(F2FS_I_SB(inode), SBI_NEED_FSCK);
1198 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001199
1200 /* will put inode & node pages */
1201 err = truncate_node(&dn);
1202 if (err) {
1203 f2fs_put_dnode(&dn);
1204 return err;
1205 }
1206 return 0;
1207}
1208
1209struct page *f2fs_new_inode_page(struct inode *inode)
1210{
1211 struct dnode_of_data dn;
1212
1213 /* allocate inode page for new inode */
1214 set_new_dnode(&dn, inode, NULL, NULL, inode->i_ino);
1215
1216 /* caller should f2fs_put_page(page, 1); */
1217 return f2fs_new_node_page(&dn, 0);
1218}
1219
1220struct page *f2fs_new_node_page(struct dnode_of_data *dn, unsigned int ofs)
1221{
1222 struct f2fs_sb_info *sbi = F2FS_I_SB(dn->inode);
1223 struct node_info new_ni;
1224 struct page *page;
1225 int err;
1226
1227 if (unlikely(is_inode_flag_set(dn->inode, FI_NO_ALLOC)))
1228 return ERR_PTR(-EPERM);
1229
1230 page = f2fs_grab_cache_page(NODE_MAPPING(sbi), dn->nid, false);
1231 if (!page)
1232 return ERR_PTR(-ENOMEM);
1233
1234 if (unlikely((err = inc_valid_node_count(sbi, dn->inode, !ofs))))
1235 goto fail;
1236
1237#ifdef CONFIG_F2FS_CHECK_FS
1238 err = f2fs_get_node_info(sbi, dn->nid, &new_ni);
1239 if (err) {
1240 dec_valid_node_count(sbi, dn->inode, !ofs);
1241 goto fail;
1242 }
1243 f2fs_bug_on(sbi, new_ni.blk_addr != NULL_ADDR);
1244#endif
1245 new_ni.nid = dn->nid;
1246 new_ni.ino = dn->inode->i_ino;
1247 new_ni.blk_addr = NULL_ADDR;
1248 new_ni.flag = 0;
1249 new_ni.version = 0;
1250 set_node_addr(sbi, &new_ni, NEW_ADDR, false);
1251
David Brazdil0f672f62019-12-10 10:32:29 +00001252 f2fs_wait_on_page_writeback(page, NODE, true, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001253 fill_node_footer(page, dn->nid, dn->inode->i_ino, ofs, true);
1254 set_cold_node(page, S_ISDIR(dn->inode->i_mode));
1255 if (!PageUptodate(page))
1256 SetPageUptodate(page);
1257 if (set_page_dirty(page))
1258 dn->node_changed = true;
1259
1260 if (f2fs_has_xattr_block(ofs))
1261 f2fs_i_xnid_write(dn->inode, dn->nid);
1262
1263 if (ofs == 0)
1264 inc_valid_inode_count(sbi);
1265 return page;
1266
1267fail:
1268 clear_node_page_dirty(page);
1269 f2fs_put_page(page, 1);
1270 return ERR_PTR(err);
1271}
1272
1273/*
1274 * Caller should do after getting the following values.
1275 * 0: f2fs_put_page(page, 0)
1276 * LOCKED_PAGE or error: f2fs_put_page(page, 1)
1277 */
1278static int read_node_page(struct page *page, int op_flags)
1279{
1280 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1281 struct node_info ni;
1282 struct f2fs_io_info fio = {
1283 .sbi = sbi,
1284 .type = NODE,
1285 .op = REQ_OP_READ,
1286 .op_flags = op_flags,
1287 .page = page,
1288 .encrypted_page = NULL,
1289 };
1290 int err;
1291
1292 if (PageUptodate(page)) {
David Brazdil0f672f62019-12-10 10:32:29 +00001293 if (!f2fs_inode_chksum_verify(sbi, page)) {
1294 ClearPageUptodate(page);
1295 return -EFSBADCRC;
1296 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001297 return LOCKED_PAGE;
1298 }
1299
1300 err = f2fs_get_node_info(sbi, page->index, &ni);
1301 if (err)
1302 return err;
1303
1304 if (unlikely(ni.blk_addr == NULL_ADDR) ||
1305 is_sbi_flag_set(sbi, SBI_IS_SHUTDOWN)) {
1306 ClearPageUptodate(page);
1307 return -ENOENT;
1308 }
1309
1310 fio.new_blkaddr = fio.old_blkaddr = ni.blk_addr;
1311 return f2fs_submit_page_bio(&fio);
1312}
1313
1314/*
1315 * Readahead a node page
1316 */
1317void f2fs_ra_node_page(struct f2fs_sb_info *sbi, nid_t nid)
1318{
1319 struct page *apage;
1320 int err;
1321
1322 if (!nid)
1323 return;
1324 if (f2fs_check_nid_range(sbi, nid))
1325 return;
1326
David Brazdil0f672f62019-12-10 10:32:29 +00001327 apage = xa_load(&NODE_MAPPING(sbi)->i_pages, nid);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001328 if (apage)
1329 return;
1330
1331 apage = f2fs_grab_cache_page(NODE_MAPPING(sbi), nid, false);
1332 if (!apage)
1333 return;
1334
1335 err = read_node_page(apage, REQ_RAHEAD);
1336 f2fs_put_page(apage, err ? 1 : 0);
1337}
1338
1339static struct page *__get_node_page(struct f2fs_sb_info *sbi, pgoff_t nid,
1340 struct page *parent, int start)
1341{
1342 struct page *page;
1343 int err;
1344
1345 if (!nid)
1346 return ERR_PTR(-ENOENT);
1347 if (f2fs_check_nid_range(sbi, nid))
1348 return ERR_PTR(-EINVAL);
1349repeat:
1350 page = f2fs_grab_cache_page(NODE_MAPPING(sbi), nid, false);
1351 if (!page)
1352 return ERR_PTR(-ENOMEM);
1353
1354 err = read_node_page(page, 0);
1355 if (err < 0) {
1356 f2fs_put_page(page, 1);
1357 return ERR_PTR(err);
1358 } else if (err == LOCKED_PAGE) {
1359 err = 0;
1360 goto page_hit;
1361 }
1362
1363 if (parent)
1364 f2fs_ra_node_pages(parent, start + 1, MAX_RA_NODE);
1365
1366 lock_page(page);
1367
1368 if (unlikely(page->mapping != NODE_MAPPING(sbi))) {
1369 f2fs_put_page(page, 1);
1370 goto repeat;
1371 }
1372
1373 if (unlikely(!PageUptodate(page))) {
1374 err = -EIO;
1375 goto out_err;
1376 }
1377
1378 if (!f2fs_inode_chksum_verify(sbi, page)) {
David Brazdil0f672f62019-12-10 10:32:29 +00001379 err = -EFSBADCRC;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001380 goto out_err;
1381 }
1382page_hit:
1383 if(unlikely(nid != nid_of_node(page))) {
David Brazdil0f672f62019-12-10 10:32:29 +00001384 f2fs_warn(sbi, "inconsistent node block, nid:%lu, node_footer[nid:%u,ino:%u,ofs:%u,cpver:%llu,blkaddr:%u]",
1385 nid, nid_of_node(page), ino_of_node(page),
1386 ofs_of_node(page), cpver_of_node(page),
1387 next_blkaddr_of_node(page));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001388 err = -EINVAL;
1389out_err:
1390 ClearPageUptodate(page);
1391 f2fs_put_page(page, 1);
1392 return ERR_PTR(err);
1393 }
1394 return page;
1395}
1396
1397struct page *f2fs_get_node_page(struct f2fs_sb_info *sbi, pgoff_t nid)
1398{
1399 return __get_node_page(sbi, nid, NULL, 0);
1400}
1401
1402struct page *f2fs_get_node_page_ra(struct page *parent, int start)
1403{
1404 struct f2fs_sb_info *sbi = F2FS_P_SB(parent);
1405 nid_t nid = get_nid(parent, start, false);
1406
1407 return __get_node_page(sbi, nid, parent, start);
1408}
1409
1410static void flush_inline_data(struct f2fs_sb_info *sbi, nid_t ino)
1411{
1412 struct inode *inode;
1413 struct page *page;
1414 int ret;
1415
1416 /* should flush inline_data before evict_inode */
1417 inode = ilookup(sbi->sb, ino);
1418 if (!inode)
1419 return;
1420
1421 page = f2fs_pagecache_get_page(inode->i_mapping, 0,
1422 FGP_LOCK|FGP_NOWAIT, 0);
1423 if (!page)
1424 goto iput_out;
1425
1426 if (!PageUptodate(page))
1427 goto page_out;
1428
1429 if (!PageDirty(page))
1430 goto page_out;
1431
1432 if (!clear_page_dirty_for_io(page))
1433 goto page_out;
1434
1435 ret = f2fs_write_inline_data(inode, page);
1436 inode_dec_dirty_pages(inode);
1437 f2fs_remove_dirty_inode(inode);
1438 if (ret)
1439 set_page_dirty(page);
1440page_out:
1441 f2fs_put_page(page, 1);
1442iput_out:
1443 iput(inode);
1444}
1445
1446static struct page *last_fsync_dnode(struct f2fs_sb_info *sbi, nid_t ino)
1447{
1448 pgoff_t index;
1449 struct pagevec pvec;
1450 struct page *last_page = NULL;
1451 int nr_pages;
1452
1453 pagevec_init(&pvec);
1454 index = 0;
1455
1456 while ((nr_pages = pagevec_lookup_tag(&pvec, NODE_MAPPING(sbi), &index,
1457 PAGECACHE_TAG_DIRTY))) {
1458 int i;
1459
1460 for (i = 0; i < nr_pages; i++) {
1461 struct page *page = pvec.pages[i];
1462
1463 if (unlikely(f2fs_cp_error(sbi))) {
1464 f2fs_put_page(last_page, 0);
1465 pagevec_release(&pvec);
1466 return ERR_PTR(-EIO);
1467 }
1468
1469 if (!IS_DNODE(page) || !is_cold_node(page))
1470 continue;
1471 if (ino_of_node(page) != ino)
1472 continue;
1473
1474 lock_page(page);
1475
1476 if (unlikely(page->mapping != NODE_MAPPING(sbi))) {
1477continue_unlock:
1478 unlock_page(page);
1479 continue;
1480 }
1481 if (ino_of_node(page) != ino)
1482 goto continue_unlock;
1483
1484 if (!PageDirty(page)) {
1485 /* someone wrote it for us */
1486 goto continue_unlock;
1487 }
1488
1489 if (last_page)
1490 f2fs_put_page(last_page, 0);
1491
1492 get_page(page);
1493 last_page = page;
1494 unlock_page(page);
1495 }
1496 pagevec_release(&pvec);
1497 cond_resched();
1498 }
1499 return last_page;
1500}
1501
1502static int __write_node_page(struct page *page, bool atomic, bool *submitted,
1503 struct writeback_control *wbc, bool do_balance,
1504 enum iostat_type io_type, unsigned int *seq_id)
1505{
1506 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1507 nid_t nid;
1508 struct node_info ni;
1509 struct f2fs_io_info fio = {
1510 .sbi = sbi,
1511 .ino = ino_of_node(page),
1512 .type = NODE,
1513 .op = REQ_OP_WRITE,
1514 .op_flags = wbc_to_write_flags(wbc),
1515 .page = page,
1516 .encrypted_page = NULL,
1517 .submitted = false,
1518 .io_type = io_type,
1519 .io_wbc = wbc,
1520 };
1521 unsigned int seq;
1522
1523 trace_f2fs_writepage(page, NODE);
1524
1525 if (unlikely(f2fs_cp_error(sbi)))
1526 goto redirty_out;
1527
1528 if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
1529 goto redirty_out;
1530
David Brazdil0f672f62019-12-10 10:32:29 +00001531 if (!is_sbi_flag_set(sbi, SBI_CP_DISABLED) &&
1532 wbc->sync_mode == WB_SYNC_NONE &&
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001533 IS_DNODE(page) && is_cold_node(page))
1534 goto redirty_out;
1535
1536 /* get old block addr of this node page */
1537 nid = nid_of_node(page);
1538 f2fs_bug_on(sbi, page->index != nid);
1539
1540 if (f2fs_get_node_info(sbi, nid, &ni))
1541 goto redirty_out;
1542
1543 if (wbc->for_reclaim) {
1544 if (!down_read_trylock(&sbi->node_write))
1545 goto redirty_out;
1546 } else {
1547 down_read(&sbi->node_write);
1548 }
1549
1550 /* This page is already truncated */
1551 if (unlikely(ni.blk_addr == NULL_ADDR)) {
1552 ClearPageUptodate(page);
1553 dec_page_count(sbi, F2FS_DIRTY_NODES);
1554 up_read(&sbi->node_write);
1555 unlock_page(page);
1556 return 0;
1557 }
1558
1559 if (__is_valid_data_blkaddr(ni.blk_addr) &&
David Brazdil0f672f62019-12-10 10:32:29 +00001560 !f2fs_is_valid_blkaddr(sbi, ni.blk_addr,
1561 DATA_GENERIC_ENHANCE)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001562 up_read(&sbi->node_write);
1563 goto redirty_out;
1564 }
1565
1566 if (atomic && !test_opt(sbi, NOBARRIER))
1567 fio.op_flags |= REQ_PREFLUSH | REQ_FUA;
1568
Olivier Deprez0e641232021-09-23 10:07:05 +02001569 /* should add to global list before clearing PAGECACHE status */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001570 if (f2fs_in_warm_node_list(sbi, page)) {
1571 seq = f2fs_add_fsync_node_entry(sbi, page);
1572 if (seq_id)
1573 *seq_id = seq;
1574 }
1575
Olivier Deprez0e641232021-09-23 10:07:05 +02001576 set_page_writeback(page);
1577 ClearPageError(page);
1578
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001579 fio.old_blkaddr = ni.blk_addr;
1580 f2fs_do_write_node_page(nid, &fio);
1581 set_node_addr(sbi, &ni, fio.new_blkaddr, is_fsync_dnode(page));
1582 dec_page_count(sbi, F2FS_DIRTY_NODES);
1583 up_read(&sbi->node_write);
1584
1585 if (wbc->for_reclaim) {
David Brazdil0f672f62019-12-10 10:32:29 +00001586 f2fs_submit_merged_write_cond(sbi, NULL, page, 0, NODE);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001587 submitted = NULL;
1588 }
1589
1590 unlock_page(page);
1591
1592 if (unlikely(f2fs_cp_error(sbi))) {
1593 f2fs_submit_merged_write(sbi, NODE);
1594 submitted = NULL;
1595 }
1596 if (submitted)
1597 *submitted = fio.submitted;
1598
1599 if (do_balance)
1600 f2fs_balance_fs(sbi, false);
1601 return 0;
1602
1603redirty_out:
1604 redirty_page_for_writepage(wbc, page);
1605 return AOP_WRITEPAGE_ACTIVATE;
1606}
1607
David Brazdil0f672f62019-12-10 10:32:29 +00001608int f2fs_move_node_page(struct page *node_page, int gc_type)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001609{
David Brazdil0f672f62019-12-10 10:32:29 +00001610 int err = 0;
1611
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001612 if (gc_type == FG_GC) {
1613 struct writeback_control wbc = {
1614 .sync_mode = WB_SYNC_ALL,
1615 .nr_to_write = 1,
1616 .for_reclaim = 0,
1617 };
1618
David Brazdil0f672f62019-12-10 10:32:29 +00001619 f2fs_wait_on_page_writeback(node_page, NODE, true, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001620
David Brazdil0f672f62019-12-10 10:32:29 +00001621 set_page_dirty(node_page);
1622
1623 if (!clear_page_dirty_for_io(node_page)) {
1624 err = -EAGAIN;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001625 goto out_page;
David Brazdil0f672f62019-12-10 10:32:29 +00001626 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001627
1628 if (__write_node_page(node_page, false, NULL,
David Brazdil0f672f62019-12-10 10:32:29 +00001629 &wbc, false, FS_GC_NODE_IO, NULL)) {
1630 err = -EAGAIN;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001631 unlock_page(node_page);
David Brazdil0f672f62019-12-10 10:32:29 +00001632 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001633 goto release_page;
1634 } else {
1635 /* set page dirty and write it */
1636 if (!PageWriteback(node_page))
1637 set_page_dirty(node_page);
1638 }
1639out_page:
1640 unlock_page(node_page);
1641release_page:
1642 f2fs_put_page(node_page, 0);
David Brazdil0f672f62019-12-10 10:32:29 +00001643 return err;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001644}
1645
1646static int f2fs_write_node_page(struct page *page,
1647 struct writeback_control *wbc)
1648{
1649 return __write_node_page(page, false, NULL, wbc, false,
1650 FS_NODE_IO, NULL);
1651}
1652
1653int f2fs_fsync_node_pages(struct f2fs_sb_info *sbi, struct inode *inode,
1654 struct writeback_control *wbc, bool atomic,
1655 unsigned int *seq_id)
1656{
1657 pgoff_t index;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001658 struct pagevec pvec;
1659 int ret = 0;
1660 struct page *last_page = NULL;
1661 bool marked = false;
1662 nid_t ino = inode->i_ino;
1663 int nr_pages;
David Brazdil0f672f62019-12-10 10:32:29 +00001664 int nwritten = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001665
1666 if (atomic) {
1667 last_page = last_fsync_dnode(sbi, ino);
1668 if (IS_ERR_OR_NULL(last_page))
1669 return PTR_ERR_OR_ZERO(last_page);
1670 }
1671retry:
1672 pagevec_init(&pvec);
1673 index = 0;
1674
1675 while ((nr_pages = pagevec_lookup_tag(&pvec, NODE_MAPPING(sbi), &index,
1676 PAGECACHE_TAG_DIRTY))) {
1677 int i;
1678
1679 for (i = 0; i < nr_pages; i++) {
1680 struct page *page = pvec.pages[i];
1681 bool submitted = false;
1682
1683 if (unlikely(f2fs_cp_error(sbi))) {
1684 f2fs_put_page(last_page, 0);
1685 pagevec_release(&pvec);
1686 ret = -EIO;
1687 goto out;
1688 }
1689
1690 if (!IS_DNODE(page) || !is_cold_node(page))
1691 continue;
1692 if (ino_of_node(page) != ino)
1693 continue;
1694
1695 lock_page(page);
1696
1697 if (unlikely(page->mapping != NODE_MAPPING(sbi))) {
1698continue_unlock:
1699 unlock_page(page);
1700 continue;
1701 }
1702 if (ino_of_node(page) != ino)
1703 goto continue_unlock;
1704
1705 if (!PageDirty(page) && page != last_page) {
1706 /* someone wrote it for us */
1707 goto continue_unlock;
1708 }
1709
David Brazdil0f672f62019-12-10 10:32:29 +00001710 f2fs_wait_on_page_writeback(page, NODE, true, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001711
1712 set_fsync_mark(page, 0);
1713 set_dentry_mark(page, 0);
1714
1715 if (!atomic || page == last_page) {
1716 set_fsync_mark(page, 1);
1717 if (IS_INODE(page)) {
1718 if (is_inode_flag_set(inode,
1719 FI_DIRTY_INODE))
1720 f2fs_update_inode(inode, page);
1721 set_dentry_mark(page,
1722 f2fs_need_dentry_mark(sbi, ino));
1723 }
1724 /* may be written by other thread */
1725 if (!PageDirty(page))
1726 set_page_dirty(page);
1727 }
1728
1729 if (!clear_page_dirty_for_io(page))
1730 goto continue_unlock;
1731
1732 ret = __write_node_page(page, atomic &&
1733 page == last_page,
1734 &submitted, wbc, true,
1735 FS_NODE_IO, seq_id);
1736 if (ret) {
1737 unlock_page(page);
1738 f2fs_put_page(last_page, 0);
1739 break;
1740 } else if (submitted) {
David Brazdil0f672f62019-12-10 10:32:29 +00001741 nwritten++;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001742 }
1743
1744 if (page == last_page) {
1745 f2fs_put_page(page, 0);
1746 marked = true;
1747 break;
1748 }
1749 }
1750 pagevec_release(&pvec);
1751 cond_resched();
1752
1753 if (ret || marked)
1754 break;
1755 }
1756 if (!ret && atomic && !marked) {
David Brazdil0f672f62019-12-10 10:32:29 +00001757 f2fs_debug(sbi, "Retry to write fsync mark: ino=%u, idx=%lx",
1758 ino, last_page->index);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001759 lock_page(last_page);
David Brazdil0f672f62019-12-10 10:32:29 +00001760 f2fs_wait_on_page_writeback(last_page, NODE, true, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001761 set_page_dirty(last_page);
1762 unlock_page(last_page);
1763 goto retry;
1764 }
1765out:
David Brazdil0f672f62019-12-10 10:32:29 +00001766 if (nwritten)
1767 f2fs_submit_merged_write_cond(sbi, NULL, NULL, ino, NODE);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001768 return ret ? -EIO: 0;
1769}
1770
David Brazdil0f672f62019-12-10 10:32:29 +00001771static int f2fs_match_ino(struct inode *inode, unsigned long ino, void *data)
1772{
1773 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
1774 bool clean;
1775
1776 if (inode->i_ino != ino)
1777 return 0;
1778
1779 if (!is_inode_flag_set(inode, FI_DIRTY_INODE))
1780 return 0;
1781
1782 spin_lock(&sbi->inode_lock[DIRTY_META]);
1783 clean = list_empty(&F2FS_I(inode)->gdirty_list);
1784 spin_unlock(&sbi->inode_lock[DIRTY_META]);
1785
1786 if (clean)
1787 return 0;
1788
1789 inode = igrab(inode);
1790 if (!inode)
1791 return 0;
1792 return 1;
1793}
1794
1795static bool flush_dirty_inode(struct page *page)
1796{
1797 struct f2fs_sb_info *sbi = F2FS_P_SB(page);
1798 struct inode *inode;
1799 nid_t ino = ino_of_node(page);
1800
1801 inode = find_inode_nowait(sbi->sb, ino, f2fs_match_ino, NULL);
1802 if (!inode)
1803 return false;
1804
1805 f2fs_update_inode(inode, page);
1806 unlock_page(page);
1807
1808 iput(inode);
1809 return true;
1810}
1811
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001812int f2fs_sync_node_pages(struct f2fs_sb_info *sbi,
1813 struct writeback_control *wbc,
1814 bool do_balance, enum iostat_type io_type)
1815{
1816 pgoff_t index;
1817 struct pagevec pvec;
1818 int step = 0;
1819 int nwritten = 0;
1820 int ret = 0;
1821 int nr_pages, done = 0;
1822
1823 pagevec_init(&pvec);
1824
1825next_step:
1826 index = 0;
1827
1828 while (!done && (nr_pages = pagevec_lookup_tag(&pvec,
1829 NODE_MAPPING(sbi), &index, PAGECACHE_TAG_DIRTY))) {
1830 int i;
1831
1832 for (i = 0; i < nr_pages; i++) {
1833 struct page *page = pvec.pages[i];
1834 bool submitted = false;
David Brazdil0f672f62019-12-10 10:32:29 +00001835 bool may_dirty = true;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001836
1837 /* give a priority to WB_SYNC threads */
1838 if (atomic_read(&sbi->wb_sync_req[NODE]) &&
1839 wbc->sync_mode == WB_SYNC_NONE) {
1840 done = 1;
1841 break;
1842 }
1843
1844 /*
1845 * flushing sequence with step:
1846 * 0. indirect nodes
1847 * 1. dentry dnodes
1848 * 2. file dnodes
1849 */
1850 if (step == 0 && IS_DNODE(page))
1851 continue;
1852 if (step == 1 && (!IS_DNODE(page) ||
1853 is_cold_node(page)))
1854 continue;
1855 if (step == 2 && (!IS_DNODE(page) ||
1856 !is_cold_node(page)))
1857 continue;
1858lock_node:
1859 if (wbc->sync_mode == WB_SYNC_ALL)
1860 lock_page(page);
1861 else if (!trylock_page(page))
1862 continue;
1863
1864 if (unlikely(page->mapping != NODE_MAPPING(sbi))) {
1865continue_unlock:
1866 unlock_page(page);
1867 continue;
1868 }
1869
1870 if (!PageDirty(page)) {
1871 /* someone wrote it for us */
1872 goto continue_unlock;
1873 }
1874
1875 /* flush inline_data */
1876 if (is_inline_node(page)) {
1877 clear_inline_node(page);
1878 unlock_page(page);
1879 flush_inline_data(sbi, ino_of_node(page));
1880 goto lock_node;
1881 }
1882
David Brazdil0f672f62019-12-10 10:32:29 +00001883 /* flush dirty inode */
1884 if (IS_INODE(page) && may_dirty) {
1885 may_dirty = false;
1886 if (flush_dirty_inode(page))
1887 goto lock_node;
1888 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001889
David Brazdil0f672f62019-12-10 10:32:29 +00001890 f2fs_wait_on_page_writeback(page, NODE, true, true);
1891
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001892 if (!clear_page_dirty_for_io(page))
1893 goto continue_unlock;
1894
1895 set_fsync_mark(page, 0);
1896 set_dentry_mark(page, 0);
1897
1898 ret = __write_node_page(page, false, &submitted,
1899 wbc, do_balance, io_type, NULL);
1900 if (ret)
1901 unlock_page(page);
1902 else if (submitted)
1903 nwritten++;
1904
1905 if (--wbc->nr_to_write == 0)
1906 break;
1907 }
1908 pagevec_release(&pvec);
1909 cond_resched();
1910
1911 if (wbc->nr_to_write == 0) {
1912 step = 2;
1913 break;
1914 }
1915 }
1916
1917 if (step < 2) {
David Brazdil0f672f62019-12-10 10:32:29 +00001918 if (!is_sbi_flag_set(sbi, SBI_CP_DISABLED) &&
1919 wbc->sync_mode == WB_SYNC_NONE && step == 1)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001920 goto out;
1921 step++;
1922 goto next_step;
1923 }
1924out:
1925 if (nwritten)
1926 f2fs_submit_merged_write(sbi, NODE);
1927
1928 if (unlikely(f2fs_cp_error(sbi)))
1929 return -EIO;
1930 return ret;
1931}
1932
1933int f2fs_wait_on_node_pages_writeback(struct f2fs_sb_info *sbi,
1934 unsigned int seq_id)
1935{
1936 struct fsync_node_entry *fn;
1937 struct page *page;
1938 struct list_head *head = &sbi->fsync_node_list;
1939 unsigned long flags;
1940 unsigned int cur_seq_id = 0;
1941 int ret2, ret = 0;
1942
1943 while (seq_id && cur_seq_id < seq_id) {
1944 spin_lock_irqsave(&sbi->fsync_node_lock, flags);
1945 if (list_empty(head)) {
1946 spin_unlock_irqrestore(&sbi->fsync_node_lock, flags);
1947 break;
1948 }
1949 fn = list_first_entry(head, struct fsync_node_entry, list);
1950 if (fn->seq_id > seq_id) {
1951 spin_unlock_irqrestore(&sbi->fsync_node_lock, flags);
1952 break;
1953 }
1954 cur_seq_id = fn->seq_id;
1955 page = fn->page;
1956 get_page(page);
1957 spin_unlock_irqrestore(&sbi->fsync_node_lock, flags);
1958
David Brazdil0f672f62019-12-10 10:32:29 +00001959 f2fs_wait_on_page_writeback(page, NODE, true, false);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001960 if (TestClearPageError(page))
1961 ret = -EIO;
1962
1963 put_page(page);
1964
1965 if (ret)
1966 break;
1967 }
1968
1969 ret2 = filemap_check_errors(NODE_MAPPING(sbi));
1970 if (!ret)
1971 ret = ret2;
1972
1973 return ret;
1974}
1975
1976static int f2fs_write_node_pages(struct address_space *mapping,
1977 struct writeback_control *wbc)
1978{
1979 struct f2fs_sb_info *sbi = F2FS_M_SB(mapping);
1980 struct blk_plug plug;
1981 long diff;
1982
1983 if (unlikely(is_sbi_flag_set(sbi, SBI_POR_DOING)))
1984 goto skip_write;
1985
1986 /* balancing f2fs's metadata in background */
1987 f2fs_balance_fs_bg(sbi);
1988
1989 /* collect a number of dirty node pages and write together */
David Brazdil0f672f62019-12-10 10:32:29 +00001990 if (wbc->sync_mode != WB_SYNC_ALL &&
1991 get_pages(sbi, F2FS_DIRTY_NODES) <
1992 nr_pages_to_skip(sbi, NODE))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001993 goto skip_write;
1994
1995 if (wbc->sync_mode == WB_SYNC_ALL)
1996 atomic_inc(&sbi->wb_sync_req[NODE]);
1997 else if (atomic_read(&sbi->wb_sync_req[NODE]))
1998 goto skip_write;
1999
2000 trace_f2fs_writepages(mapping->host, wbc, NODE);
2001
2002 diff = nr_pages_to_write(sbi, NODE, wbc);
2003 blk_start_plug(&plug);
2004 f2fs_sync_node_pages(sbi, wbc, true, FS_NODE_IO);
2005 blk_finish_plug(&plug);
2006 wbc->nr_to_write = max((long)0, wbc->nr_to_write - diff);
2007
2008 if (wbc->sync_mode == WB_SYNC_ALL)
2009 atomic_dec(&sbi->wb_sync_req[NODE]);
2010 return 0;
2011
2012skip_write:
2013 wbc->pages_skipped += get_pages(sbi, F2FS_DIRTY_NODES);
2014 trace_f2fs_writepages(mapping->host, wbc, NODE);
2015 return 0;
2016}
2017
2018static int f2fs_set_node_page_dirty(struct page *page)
2019{
2020 trace_f2fs_set_page_dirty(page, NODE);
2021
2022 if (!PageUptodate(page))
2023 SetPageUptodate(page);
2024#ifdef CONFIG_F2FS_CHECK_FS
2025 if (IS_INODE(page))
2026 f2fs_inode_chksum_set(F2FS_P_SB(page), page);
2027#endif
2028 if (!PageDirty(page)) {
2029 __set_page_dirty_nobuffers(page);
2030 inc_page_count(F2FS_P_SB(page), F2FS_DIRTY_NODES);
David Brazdil0f672f62019-12-10 10:32:29 +00002031 f2fs_set_page_private(page, 0);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002032 f2fs_trace_pid(page);
2033 return 1;
2034 }
2035 return 0;
2036}
2037
2038/*
2039 * Structure of the f2fs node operations
2040 */
2041const struct address_space_operations f2fs_node_aops = {
2042 .writepage = f2fs_write_node_page,
2043 .writepages = f2fs_write_node_pages,
2044 .set_page_dirty = f2fs_set_node_page_dirty,
2045 .invalidatepage = f2fs_invalidate_page,
2046 .releasepage = f2fs_release_page,
2047#ifdef CONFIG_MIGRATION
2048 .migratepage = f2fs_migrate_page,
2049#endif
2050};
2051
2052static struct free_nid *__lookup_free_nid_list(struct f2fs_nm_info *nm_i,
2053 nid_t n)
2054{
2055 return radix_tree_lookup(&nm_i->free_nid_root, n);
2056}
2057
2058static int __insert_free_nid(struct f2fs_sb_info *sbi,
2059 struct free_nid *i, enum nid_state state)
2060{
2061 struct f2fs_nm_info *nm_i = NM_I(sbi);
2062
2063 int err = radix_tree_insert(&nm_i->free_nid_root, i->nid, i);
2064 if (err)
2065 return err;
2066
2067 f2fs_bug_on(sbi, state != i->state);
2068 nm_i->nid_cnt[state]++;
2069 if (state == FREE_NID)
2070 list_add_tail(&i->list, &nm_i->free_nid_list);
2071 return 0;
2072}
2073
2074static void __remove_free_nid(struct f2fs_sb_info *sbi,
2075 struct free_nid *i, enum nid_state state)
2076{
2077 struct f2fs_nm_info *nm_i = NM_I(sbi);
2078
2079 f2fs_bug_on(sbi, state != i->state);
2080 nm_i->nid_cnt[state]--;
2081 if (state == FREE_NID)
2082 list_del(&i->list);
2083 radix_tree_delete(&nm_i->free_nid_root, i->nid);
2084}
2085
2086static void __move_free_nid(struct f2fs_sb_info *sbi, struct free_nid *i,
2087 enum nid_state org_state, enum nid_state dst_state)
2088{
2089 struct f2fs_nm_info *nm_i = NM_I(sbi);
2090
2091 f2fs_bug_on(sbi, org_state != i->state);
2092 i->state = dst_state;
2093 nm_i->nid_cnt[org_state]--;
2094 nm_i->nid_cnt[dst_state]++;
2095
2096 switch (dst_state) {
2097 case PREALLOC_NID:
2098 list_del(&i->list);
2099 break;
2100 case FREE_NID:
2101 list_add_tail(&i->list, &nm_i->free_nid_list);
2102 break;
2103 default:
2104 BUG_ON(1);
2105 }
2106}
2107
2108static void update_free_nid_bitmap(struct f2fs_sb_info *sbi, nid_t nid,
2109 bool set, bool build)
2110{
2111 struct f2fs_nm_info *nm_i = NM_I(sbi);
2112 unsigned int nat_ofs = NAT_BLOCK_OFFSET(nid);
2113 unsigned int nid_ofs = nid - START_NID(nid);
2114
2115 if (!test_bit_le(nat_ofs, nm_i->nat_block_bitmap))
2116 return;
2117
2118 if (set) {
2119 if (test_bit_le(nid_ofs, nm_i->free_nid_bitmap[nat_ofs]))
2120 return;
2121 __set_bit_le(nid_ofs, nm_i->free_nid_bitmap[nat_ofs]);
2122 nm_i->free_nid_count[nat_ofs]++;
2123 } else {
2124 if (!test_bit_le(nid_ofs, nm_i->free_nid_bitmap[nat_ofs]))
2125 return;
2126 __clear_bit_le(nid_ofs, nm_i->free_nid_bitmap[nat_ofs]);
2127 if (!build)
2128 nm_i->free_nid_count[nat_ofs]--;
2129 }
2130}
2131
2132/* return if the nid is recognized as free */
2133static bool add_free_nid(struct f2fs_sb_info *sbi,
2134 nid_t nid, bool build, bool update)
2135{
2136 struct f2fs_nm_info *nm_i = NM_I(sbi);
2137 struct free_nid *i, *e;
2138 struct nat_entry *ne;
2139 int err = -EINVAL;
2140 bool ret = false;
2141
2142 /* 0 nid should not be used */
2143 if (unlikely(nid == 0))
2144 return false;
2145
David Brazdil0f672f62019-12-10 10:32:29 +00002146 if (unlikely(f2fs_check_nid_range(sbi, nid)))
2147 return false;
2148
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002149 i = f2fs_kmem_cache_alloc(free_nid_slab, GFP_NOFS);
2150 i->nid = nid;
2151 i->state = FREE_NID;
2152
2153 radix_tree_preload(GFP_NOFS | __GFP_NOFAIL);
2154
2155 spin_lock(&nm_i->nid_list_lock);
2156
2157 if (build) {
2158 /*
2159 * Thread A Thread B
2160 * - f2fs_create
2161 * - f2fs_new_inode
2162 * - f2fs_alloc_nid
2163 * - __insert_nid_to_list(PREALLOC_NID)
2164 * - f2fs_balance_fs_bg
2165 * - f2fs_build_free_nids
2166 * - __f2fs_build_free_nids
2167 * - scan_nat_page
2168 * - add_free_nid
2169 * - __lookup_nat_cache
2170 * - f2fs_add_link
2171 * - f2fs_init_inode_metadata
2172 * - f2fs_new_inode_page
2173 * - f2fs_new_node_page
2174 * - set_node_addr
2175 * - f2fs_alloc_nid_done
2176 * - __remove_nid_from_list(PREALLOC_NID)
2177 * - __insert_nid_to_list(FREE_NID)
2178 */
2179 ne = __lookup_nat_cache(nm_i, nid);
2180 if (ne && (!get_nat_flag(ne, IS_CHECKPOINTED) ||
2181 nat_get_blkaddr(ne) != NULL_ADDR))
2182 goto err_out;
2183
2184 e = __lookup_free_nid_list(nm_i, nid);
2185 if (e) {
2186 if (e->state == FREE_NID)
2187 ret = true;
2188 goto err_out;
2189 }
2190 }
2191 ret = true;
2192 err = __insert_free_nid(sbi, i, FREE_NID);
2193err_out:
2194 if (update) {
2195 update_free_nid_bitmap(sbi, nid, ret, build);
2196 if (!build)
2197 nm_i->available_nids++;
2198 }
2199 spin_unlock(&nm_i->nid_list_lock);
2200 radix_tree_preload_end();
2201
2202 if (err)
2203 kmem_cache_free(free_nid_slab, i);
2204 return ret;
2205}
2206
2207static void remove_free_nid(struct f2fs_sb_info *sbi, nid_t nid)
2208{
2209 struct f2fs_nm_info *nm_i = NM_I(sbi);
2210 struct free_nid *i;
2211 bool need_free = false;
2212
2213 spin_lock(&nm_i->nid_list_lock);
2214 i = __lookup_free_nid_list(nm_i, nid);
2215 if (i && i->state == FREE_NID) {
2216 __remove_free_nid(sbi, i, FREE_NID);
2217 need_free = true;
2218 }
2219 spin_unlock(&nm_i->nid_list_lock);
2220
2221 if (need_free)
2222 kmem_cache_free(free_nid_slab, i);
2223}
2224
2225static int scan_nat_page(struct f2fs_sb_info *sbi,
2226 struct page *nat_page, nid_t start_nid)
2227{
2228 struct f2fs_nm_info *nm_i = NM_I(sbi);
2229 struct f2fs_nat_block *nat_blk = page_address(nat_page);
2230 block_t blk_addr;
2231 unsigned int nat_ofs = NAT_BLOCK_OFFSET(start_nid);
2232 int i;
2233
2234 __set_bit_le(nat_ofs, nm_i->nat_block_bitmap);
2235
2236 i = start_nid % NAT_ENTRY_PER_BLOCK;
2237
2238 for (; i < NAT_ENTRY_PER_BLOCK; i++, start_nid++) {
2239 if (unlikely(start_nid >= nm_i->max_nid))
2240 break;
2241
2242 blk_addr = le32_to_cpu(nat_blk->entries[i].block_addr);
2243
2244 if (blk_addr == NEW_ADDR)
2245 return -EINVAL;
2246
2247 if (blk_addr == NULL_ADDR) {
2248 add_free_nid(sbi, start_nid, true, true);
2249 } else {
2250 spin_lock(&NM_I(sbi)->nid_list_lock);
2251 update_free_nid_bitmap(sbi, start_nid, false, true);
2252 spin_unlock(&NM_I(sbi)->nid_list_lock);
2253 }
2254 }
2255
2256 return 0;
2257}
2258
2259static void scan_curseg_cache(struct f2fs_sb_info *sbi)
2260{
2261 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_HOT_DATA);
2262 struct f2fs_journal *journal = curseg->journal;
2263 int i;
2264
2265 down_read(&curseg->journal_rwsem);
2266 for (i = 0; i < nats_in_cursum(journal); i++) {
2267 block_t addr;
2268 nid_t nid;
2269
2270 addr = le32_to_cpu(nat_in_journal(journal, i).block_addr);
2271 nid = le32_to_cpu(nid_in_journal(journal, i));
2272 if (addr == NULL_ADDR)
2273 add_free_nid(sbi, nid, true, false);
2274 else
2275 remove_free_nid(sbi, nid);
2276 }
2277 up_read(&curseg->journal_rwsem);
2278}
2279
2280static void scan_free_nid_bits(struct f2fs_sb_info *sbi)
2281{
2282 struct f2fs_nm_info *nm_i = NM_I(sbi);
2283 unsigned int i, idx;
2284 nid_t nid;
2285
2286 down_read(&nm_i->nat_tree_lock);
2287
2288 for (i = 0; i < nm_i->nat_blocks; i++) {
2289 if (!test_bit_le(i, nm_i->nat_block_bitmap))
2290 continue;
2291 if (!nm_i->free_nid_count[i])
2292 continue;
2293 for (idx = 0; idx < NAT_ENTRY_PER_BLOCK; idx++) {
2294 idx = find_next_bit_le(nm_i->free_nid_bitmap[i],
2295 NAT_ENTRY_PER_BLOCK, idx);
2296 if (idx >= NAT_ENTRY_PER_BLOCK)
2297 break;
2298
2299 nid = i * NAT_ENTRY_PER_BLOCK + idx;
2300 add_free_nid(sbi, nid, true, false);
2301
2302 if (nm_i->nid_cnt[FREE_NID] >= MAX_FREE_NIDS)
2303 goto out;
2304 }
2305 }
2306out:
2307 scan_curseg_cache(sbi);
2308
2309 up_read(&nm_i->nat_tree_lock);
2310}
2311
2312static int __f2fs_build_free_nids(struct f2fs_sb_info *sbi,
2313 bool sync, bool mount)
2314{
2315 struct f2fs_nm_info *nm_i = NM_I(sbi);
2316 int i = 0, ret;
2317 nid_t nid = nm_i->next_scan_nid;
2318
2319 if (unlikely(nid >= nm_i->max_nid))
2320 nid = 0;
2321
Olivier Deprez0e641232021-09-23 10:07:05 +02002322 if (unlikely(nid % NAT_ENTRY_PER_BLOCK))
2323 nid = NAT_BLOCK_OFFSET(nid) * NAT_ENTRY_PER_BLOCK;
2324
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002325 /* Enough entries */
2326 if (nm_i->nid_cnt[FREE_NID] >= NAT_ENTRY_PER_BLOCK)
2327 return 0;
2328
2329 if (!sync && !f2fs_available_free_memory(sbi, FREE_NIDS))
2330 return 0;
2331
2332 if (!mount) {
2333 /* try to find free nids in free_nid_bitmap */
2334 scan_free_nid_bits(sbi);
2335
2336 if (nm_i->nid_cnt[FREE_NID] >= NAT_ENTRY_PER_BLOCK)
2337 return 0;
2338 }
2339
2340 /* readahead nat pages to be scanned */
2341 f2fs_ra_meta_pages(sbi, NAT_BLOCK_OFFSET(nid), FREE_NID_PAGES,
2342 META_NAT, true);
2343
2344 down_read(&nm_i->nat_tree_lock);
2345
2346 while (1) {
2347 if (!test_bit_le(NAT_BLOCK_OFFSET(nid),
2348 nm_i->nat_block_bitmap)) {
2349 struct page *page = get_current_nat_page(sbi, nid);
2350
David Brazdil0f672f62019-12-10 10:32:29 +00002351 if (IS_ERR(page)) {
2352 ret = PTR_ERR(page);
2353 } else {
2354 ret = scan_nat_page(sbi, page, nid);
2355 f2fs_put_page(page, 1);
2356 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002357
2358 if (ret) {
2359 up_read(&nm_i->nat_tree_lock);
David Brazdil0f672f62019-12-10 10:32:29 +00002360 f2fs_err(sbi, "NAT is corrupt, run fsck to fix it");
2361 return ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002362 }
2363 }
2364
2365 nid += (NAT_ENTRY_PER_BLOCK - (nid % NAT_ENTRY_PER_BLOCK));
2366 if (unlikely(nid >= nm_i->max_nid))
2367 nid = 0;
2368
2369 if (++i >= FREE_NID_PAGES)
2370 break;
2371 }
2372
2373 /* go to the next free nat pages to find free nids abundantly */
2374 nm_i->next_scan_nid = nid;
2375
2376 /* find free nids from current sum_pages */
2377 scan_curseg_cache(sbi);
2378
2379 up_read(&nm_i->nat_tree_lock);
2380
2381 f2fs_ra_meta_pages(sbi, NAT_BLOCK_OFFSET(nm_i->next_scan_nid),
2382 nm_i->ra_nid_pages, META_NAT, false);
2383
2384 return 0;
2385}
2386
2387int f2fs_build_free_nids(struct f2fs_sb_info *sbi, bool sync, bool mount)
2388{
2389 int ret;
2390
2391 mutex_lock(&NM_I(sbi)->build_lock);
2392 ret = __f2fs_build_free_nids(sbi, sync, mount);
2393 mutex_unlock(&NM_I(sbi)->build_lock);
2394
2395 return ret;
2396}
2397
2398/*
2399 * If this function returns success, caller can obtain a new nid
2400 * from second parameter of this function.
2401 * The returned nid could be used ino as well as nid when inode is created.
2402 */
2403bool f2fs_alloc_nid(struct f2fs_sb_info *sbi, nid_t *nid)
2404{
2405 struct f2fs_nm_info *nm_i = NM_I(sbi);
2406 struct free_nid *i = NULL;
2407retry:
2408 if (time_to_inject(sbi, FAULT_ALLOC_NID)) {
Olivier Deprez0e641232021-09-23 10:07:05 +02002409 f2fs_show_injection_info(sbi, FAULT_ALLOC_NID);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002410 return false;
2411 }
2412
2413 spin_lock(&nm_i->nid_list_lock);
2414
2415 if (unlikely(nm_i->available_nids == 0)) {
2416 spin_unlock(&nm_i->nid_list_lock);
2417 return false;
2418 }
2419
2420 /* We should not use stale free nids created by f2fs_build_free_nids */
2421 if (nm_i->nid_cnt[FREE_NID] && !on_f2fs_build_free_nids(nm_i)) {
2422 f2fs_bug_on(sbi, list_empty(&nm_i->free_nid_list));
2423 i = list_first_entry(&nm_i->free_nid_list,
2424 struct free_nid, list);
2425 *nid = i->nid;
2426
2427 __move_free_nid(sbi, i, FREE_NID, PREALLOC_NID);
2428 nm_i->available_nids--;
2429
2430 update_free_nid_bitmap(sbi, *nid, false, false);
2431
2432 spin_unlock(&nm_i->nid_list_lock);
2433 return true;
2434 }
2435 spin_unlock(&nm_i->nid_list_lock);
2436
2437 /* Let's scan nat pages and its caches to get free nids */
David Brazdil0f672f62019-12-10 10:32:29 +00002438 if (!f2fs_build_free_nids(sbi, true, false))
2439 goto retry;
2440 return false;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002441}
2442
2443/*
2444 * f2fs_alloc_nid() should be called prior to this function.
2445 */
2446void f2fs_alloc_nid_done(struct f2fs_sb_info *sbi, nid_t nid)
2447{
2448 struct f2fs_nm_info *nm_i = NM_I(sbi);
2449 struct free_nid *i;
2450
2451 spin_lock(&nm_i->nid_list_lock);
2452 i = __lookup_free_nid_list(nm_i, nid);
2453 f2fs_bug_on(sbi, !i);
2454 __remove_free_nid(sbi, i, PREALLOC_NID);
2455 spin_unlock(&nm_i->nid_list_lock);
2456
2457 kmem_cache_free(free_nid_slab, i);
2458}
2459
2460/*
2461 * f2fs_alloc_nid() should be called prior to this function.
2462 */
2463void f2fs_alloc_nid_failed(struct f2fs_sb_info *sbi, nid_t nid)
2464{
2465 struct f2fs_nm_info *nm_i = NM_I(sbi);
2466 struct free_nid *i;
2467 bool need_free = false;
2468
2469 if (!nid)
2470 return;
2471
2472 spin_lock(&nm_i->nid_list_lock);
2473 i = __lookup_free_nid_list(nm_i, nid);
2474 f2fs_bug_on(sbi, !i);
2475
2476 if (!f2fs_available_free_memory(sbi, FREE_NIDS)) {
2477 __remove_free_nid(sbi, i, PREALLOC_NID);
2478 need_free = true;
2479 } else {
2480 __move_free_nid(sbi, i, PREALLOC_NID, FREE_NID);
2481 }
2482
2483 nm_i->available_nids++;
2484
2485 update_free_nid_bitmap(sbi, nid, true, false);
2486
2487 spin_unlock(&nm_i->nid_list_lock);
2488
2489 if (need_free)
2490 kmem_cache_free(free_nid_slab, i);
2491}
2492
2493int f2fs_try_to_free_nids(struct f2fs_sb_info *sbi, int nr_shrink)
2494{
2495 struct f2fs_nm_info *nm_i = NM_I(sbi);
2496 struct free_nid *i, *next;
2497 int nr = nr_shrink;
2498
2499 if (nm_i->nid_cnt[FREE_NID] <= MAX_FREE_NIDS)
2500 return 0;
2501
2502 if (!mutex_trylock(&nm_i->build_lock))
2503 return 0;
2504
2505 spin_lock(&nm_i->nid_list_lock);
2506 list_for_each_entry_safe(i, next, &nm_i->free_nid_list, list) {
2507 if (nr_shrink <= 0 ||
2508 nm_i->nid_cnt[FREE_NID] <= MAX_FREE_NIDS)
2509 break;
2510
2511 __remove_free_nid(sbi, i, FREE_NID);
2512 kmem_cache_free(free_nid_slab, i);
2513 nr_shrink--;
2514 }
2515 spin_unlock(&nm_i->nid_list_lock);
2516 mutex_unlock(&nm_i->build_lock);
2517
2518 return nr - nr_shrink;
2519}
2520
Olivier Deprez0e641232021-09-23 10:07:05 +02002521int f2fs_recover_inline_xattr(struct inode *inode, struct page *page)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002522{
2523 void *src_addr, *dst_addr;
2524 size_t inline_size;
2525 struct page *ipage;
2526 struct f2fs_inode *ri;
2527
2528 ipage = f2fs_get_node_page(F2FS_I_SB(inode), inode->i_ino);
Olivier Deprez0e641232021-09-23 10:07:05 +02002529 if (IS_ERR(ipage))
2530 return PTR_ERR(ipage);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002531
2532 ri = F2FS_INODE(page);
2533 if (ri->i_inline & F2FS_INLINE_XATTR) {
2534 set_inode_flag(inode, FI_INLINE_XATTR);
2535 } else {
2536 clear_inode_flag(inode, FI_INLINE_XATTR);
2537 goto update_inode;
2538 }
2539
2540 dst_addr = inline_xattr_addr(inode, ipage);
2541 src_addr = inline_xattr_addr(inode, page);
2542 inline_size = inline_xattr_size(inode);
2543
David Brazdil0f672f62019-12-10 10:32:29 +00002544 f2fs_wait_on_page_writeback(ipage, NODE, true, true);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002545 memcpy(dst_addr, src_addr, inline_size);
2546update_inode:
2547 f2fs_update_inode(inode, ipage);
2548 f2fs_put_page(ipage, 1);
Olivier Deprez0e641232021-09-23 10:07:05 +02002549 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002550}
2551
2552int f2fs_recover_xattr_data(struct inode *inode, struct page *page)
2553{
2554 struct f2fs_sb_info *sbi = F2FS_I_SB(inode);
2555 nid_t prev_xnid = F2FS_I(inode)->i_xattr_nid;
2556 nid_t new_xnid;
2557 struct dnode_of_data dn;
2558 struct node_info ni;
2559 struct page *xpage;
2560 int err;
2561
2562 if (!prev_xnid)
2563 goto recover_xnid;
2564
2565 /* 1: invalidate the previous xattr nid */
2566 err = f2fs_get_node_info(sbi, prev_xnid, &ni);
2567 if (err)
2568 return err;
2569
2570 f2fs_invalidate_blocks(sbi, ni.blk_addr);
2571 dec_valid_node_count(sbi, inode, false);
2572 set_node_addr(sbi, &ni, NULL_ADDR, false);
2573
2574recover_xnid:
2575 /* 2: update xattr nid in inode */
2576 if (!f2fs_alloc_nid(sbi, &new_xnid))
2577 return -ENOSPC;
2578
2579 set_new_dnode(&dn, inode, NULL, NULL, new_xnid);
2580 xpage = f2fs_new_node_page(&dn, XATTR_NODE_OFFSET);
2581 if (IS_ERR(xpage)) {
2582 f2fs_alloc_nid_failed(sbi, new_xnid);
2583 return PTR_ERR(xpage);
2584 }
2585
2586 f2fs_alloc_nid_done(sbi, new_xnid);
2587 f2fs_update_inode_page(inode);
2588
2589 /* 3: update and set xattr node page dirty */
2590 memcpy(F2FS_NODE(xpage), F2FS_NODE(page), VALID_XATTR_BLOCK_SIZE);
2591
2592 set_page_dirty(xpage);
2593 f2fs_put_page(xpage, 1);
2594
2595 return 0;
2596}
2597
2598int f2fs_recover_inode_page(struct f2fs_sb_info *sbi, struct page *page)
2599{
2600 struct f2fs_inode *src, *dst;
2601 nid_t ino = ino_of_node(page);
2602 struct node_info old_ni, new_ni;
2603 struct page *ipage;
2604 int err;
2605
2606 err = f2fs_get_node_info(sbi, ino, &old_ni);
2607 if (err)
2608 return err;
2609
2610 if (unlikely(old_ni.blk_addr != NULL_ADDR))
2611 return -EINVAL;
2612retry:
2613 ipage = f2fs_grab_cache_page(NODE_MAPPING(sbi), ino, false);
2614 if (!ipage) {
2615 congestion_wait(BLK_RW_ASYNC, HZ/50);
2616 goto retry;
2617 }
2618
2619 /* Should not use this inode from free nid list */
2620 remove_free_nid(sbi, ino);
2621
2622 if (!PageUptodate(ipage))
2623 SetPageUptodate(ipage);
2624 fill_node_footer(ipage, ino, ino, 0, true);
2625 set_cold_node(ipage, false);
2626
2627 src = F2FS_INODE(page);
2628 dst = F2FS_INODE(ipage);
2629
2630 memcpy(dst, src, (unsigned long)&src->i_ext - (unsigned long)src);
2631 dst->i_size = 0;
2632 dst->i_blocks = cpu_to_le64(1);
2633 dst->i_links = cpu_to_le32(1);
2634 dst->i_xattr_nid = 0;
2635 dst->i_inline = src->i_inline & (F2FS_INLINE_XATTR | F2FS_EXTRA_ATTR);
2636 if (dst->i_inline & F2FS_EXTRA_ATTR) {
2637 dst->i_extra_isize = src->i_extra_isize;
2638
David Brazdil0f672f62019-12-10 10:32:29 +00002639 if (f2fs_sb_has_flexible_inline_xattr(sbi) &&
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002640 F2FS_FITS_IN_INODE(src, le16_to_cpu(src->i_extra_isize),
2641 i_inline_xattr_size))
2642 dst->i_inline_xattr_size = src->i_inline_xattr_size;
2643
David Brazdil0f672f62019-12-10 10:32:29 +00002644 if (f2fs_sb_has_project_quota(sbi) &&
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002645 F2FS_FITS_IN_INODE(src, le16_to_cpu(src->i_extra_isize),
2646 i_projid))
2647 dst->i_projid = src->i_projid;
2648
David Brazdil0f672f62019-12-10 10:32:29 +00002649 if (f2fs_sb_has_inode_crtime(sbi) &&
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002650 F2FS_FITS_IN_INODE(src, le16_to_cpu(src->i_extra_isize),
2651 i_crtime_nsec)) {
2652 dst->i_crtime = src->i_crtime;
2653 dst->i_crtime_nsec = src->i_crtime_nsec;
2654 }
2655 }
2656
2657 new_ni = old_ni;
2658 new_ni.ino = ino;
2659
2660 if (unlikely(inc_valid_node_count(sbi, NULL, true)))
2661 WARN_ON(1);
2662 set_node_addr(sbi, &new_ni, NEW_ADDR, false);
2663 inc_valid_inode_count(sbi);
2664 set_page_dirty(ipage);
2665 f2fs_put_page(ipage, 1);
2666 return 0;
2667}
2668
2669int f2fs_restore_node_summary(struct f2fs_sb_info *sbi,
2670 unsigned int segno, struct f2fs_summary_block *sum)
2671{
2672 struct f2fs_node *rn;
2673 struct f2fs_summary *sum_entry;
2674 block_t addr;
2675 int i, idx, last_offset, nrpages;
2676
2677 /* scan the node segment */
2678 last_offset = sbi->blocks_per_seg;
2679 addr = START_BLOCK(sbi, segno);
2680 sum_entry = &sum->entries[0];
2681
2682 for (i = 0; i < last_offset; i += nrpages, addr += nrpages) {
2683 nrpages = min(last_offset - i, BIO_MAX_PAGES);
2684
2685 /* readahead node pages */
2686 f2fs_ra_meta_pages(sbi, addr, nrpages, META_POR, true);
2687
2688 for (idx = addr; idx < addr + nrpages; idx++) {
2689 struct page *page = f2fs_get_tmp_page(sbi, idx);
2690
2691 if (IS_ERR(page))
2692 return PTR_ERR(page);
2693
2694 rn = F2FS_NODE(page);
2695 sum_entry->nid = rn->footer.nid;
2696 sum_entry->version = 0;
2697 sum_entry->ofs_in_node = 0;
2698 sum_entry++;
2699 f2fs_put_page(page, 1);
2700 }
2701
2702 invalidate_mapping_pages(META_MAPPING(sbi), addr,
2703 addr + nrpages);
2704 }
2705 return 0;
2706}
2707
2708static void remove_nats_in_journal(struct f2fs_sb_info *sbi)
2709{
2710 struct f2fs_nm_info *nm_i = NM_I(sbi);
2711 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_HOT_DATA);
2712 struct f2fs_journal *journal = curseg->journal;
2713 int i;
2714
2715 down_write(&curseg->journal_rwsem);
2716 for (i = 0; i < nats_in_cursum(journal); i++) {
2717 struct nat_entry *ne;
2718 struct f2fs_nat_entry raw_ne;
2719 nid_t nid = le32_to_cpu(nid_in_journal(journal, i));
2720
Olivier Deprez0e641232021-09-23 10:07:05 +02002721 if (f2fs_check_nid_range(sbi, nid))
2722 continue;
2723
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002724 raw_ne = nat_in_journal(journal, i);
2725
2726 ne = __lookup_nat_cache(nm_i, nid);
2727 if (!ne) {
2728 ne = __alloc_nat_entry(nid, true);
2729 __init_nat_entry(nm_i, ne, &raw_ne, true);
2730 }
2731
2732 /*
2733 * if a free nat in journal has not been used after last
2734 * checkpoint, we should remove it from available nids,
2735 * since later we will add it again.
2736 */
2737 if (!get_nat_flag(ne, IS_DIRTY) &&
2738 le32_to_cpu(raw_ne.block_addr) == NULL_ADDR) {
2739 spin_lock(&nm_i->nid_list_lock);
2740 nm_i->available_nids--;
2741 spin_unlock(&nm_i->nid_list_lock);
2742 }
2743
2744 __set_nat_cache_dirty(nm_i, ne);
2745 }
2746 update_nats_in_cursum(journal, -i);
2747 up_write(&curseg->journal_rwsem);
2748}
2749
2750static void __adjust_nat_entry_set(struct nat_entry_set *nes,
2751 struct list_head *head, int max)
2752{
2753 struct nat_entry_set *cur;
2754
2755 if (nes->entry_cnt >= max)
2756 goto add_out;
2757
2758 list_for_each_entry(cur, head, set_list) {
2759 if (cur->entry_cnt >= nes->entry_cnt) {
2760 list_add(&nes->set_list, cur->set_list.prev);
2761 return;
2762 }
2763 }
2764add_out:
2765 list_add_tail(&nes->set_list, head);
2766}
2767
2768static void __update_nat_bits(struct f2fs_sb_info *sbi, nid_t start_nid,
2769 struct page *page)
2770{
2771 struct f2fs_nm_info *nm_i = NM_I(sbi);
2772 unsigned int nat_index = start_nid / NAT_ENTRY_PER_BLOCK;
2773 struct f2fs_nat_block *nat_blk = page_address(page);
2774 int valid = 0;
2775 int i = 0;
2776
2777 if (!enabled_nat_bits(sbi, NULL))
2778 return;
2779
2780 if (nat_index == 0) {
2781 valid = 1;
2782 i = 1;
2783 }
2784 for (; i < NAT_ENTRY_PER_BLOCK; i++) {
David Brazdil0f672f62019-12-10 10:32:29 +00002785 if (le32_to_cpu(nat_blk->entries[i].block_addr) != NULL_ADDR)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002786 valid++;
2787 }
2788 if (valid == 0) {
2789 __set_bit_le(nat_index, nm_i->empty_nat_bits);
2790 __clear_bit_le(nat_index, nm_i->full_nat_bits);
2791 return;
2792 }
2793
2794 __clear_bit_le(nat_index, nm_i->empty_nat_bits);
2795 if (valid == NAT_ENTRY_PER_BLOCK)
2796 __set_bit_le(nat_index, nm_i->full_nat_bits);
2797 else
2798 __clear_bit_le(nat_index, nm_i->full_nat_bits);
2799}
2800
David Brazdil0f672f62019-12-10 10:32:29 +00002801static int __flush_nat_entry_set(struct f2fs_sb_info *sbi,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002802 struct nat_entry_set *set, struct cp_control *cpc)
2803{
2804 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_HOT_DATA);
2805 struct f2fs_journal *journal = curseg->journal;
2806 nid_t start_nid = set->set * NAT_ENTRY_PER_BLOCK;
2807 bool to_journal = true;
2808 struct f2fs_nat_block *nat_blk;
2809 struct nat_entry *ne, *cur;
2810 struct page *page = NULL;
2811
2812 /*
2813 * there are two steps to flush nat entries:
2814 * #1, flush nat entries to journal in current hot data summary block.
2815 * #2, flush nat entries to nat page.
2816 */
2817 if (enabled_nat_bits(sbi, cpc) ||
2818 !__has_cursum_space(journal, set->entry_cnt, NAT_JOURNAL))
2819 to_journal = false;
2820
2821 if (to_journal) {
2822 down_write(&curseg->journal_rwsem);
2823 } else {
2824 page = get_next_nat_page(sbi, start_nid);
David Brazdil0f672f62019-12-10 10:32:29 +00002825 if (IS_ERR(page))
2826 return PTR_ERR(page);
2827
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002828 nat_blk = page_address(page);
2829 f2fs_bug_on(sbi, !nat_blk);
2830 }
2831
2832 /* flush dirty nats in nat entry set */
2833 list_for_each_entry_safe(ne, cur, &set->entry_list, list) {
2834 struct f2fs_nat_entry *raw_ne;
2835 nid_t nid = nat_get_nid(ne);
2836 int offset;
2837
2838 f2fs_bug_on(sbi, nat_get_blkaddr(ne) == NEW_ADDR);
2839
2840 if (to_journal) {
2841 offset = f2fs_lookup_journal_in_cursum(journal,
2842 NAT_JOURNAL, nid, 1);
2843 f2fs_bug_on(sbi, offset < 0);
2844 raw_ne = &nat_in_journal(journal, offset);
2845 nid_in_journal(journal, offset) = cpu_to_le32(nid);
2846 } else {
2847 raw_ne = &nat_blk->entries[nid - start_nid];
2848 }
2849 raw_nat_from_node_info(raw_ne, &ne->ni);
2850 nat_reset_flag(ne);
2851 __clear_nat_cache_dirty(NM_I(sbi), set, ne);
2852 if (nat_get_blkaddr(ne) == NULL_ADDR) {
2853 add_free_nid(sbi, nid, false, true);
2854 } else {
2855 spin_lock(&NM_I(sbi)->nid_list_lock);
2856 update_free_nid_bitmap(sbi, nid, false, false);
2857 spin_unlock(&NM_I(sbi)->nid_list_lock);
2858 }
2859 }
2860
2861 if (to_journal) {
2862 up_write(&curseg->journal_rwsem);
2863 } else {
2864 __update_nat_bits(sbi, start_nid, page);
2865 f2fs_put_page(page, 1);
2866 }
2867
2868 /* Allow dirty nats by node block allocation in write_begin */
2869 if (!set->entry_cnt) {
2870 radix_tree_delete(&NM_I(sbi)->nat_set_root, set->set);
2871 kmem_cache_free(nat_entry_set_slab, set);
2872 }
David Brazdil0f672f62019-12-10 10:32:29 +00002873 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002874}
2875
2876/*
2877 * This function is called during the checkpointing process.
2878 */
David Brazdil0f672f62019-12-10 10:32:29 +00002879int f2fs_flush_nat_entries(struct f2fs_sb_info *sbi, struct cp_control *cpc)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002880{
2881 struct f2fs_nm_info *nm_i = NM_I(sbi);
2882 struct curseg_info *curseg = CURSEG_I(sbi, CURSEG_HOT_DATA);
2883 struct f2fs_journal *journal = curseg->journal;
2884 struct nat_entry_set *setvec[SETVEC_SIZE];
2885 struct nat_entry_set *set, *tmp;
2886 unsigned int found;
2887 nid_t set_idx = 0;
2888 LIST_HEAD(sets);
David Brazdil0f672f62019-12-10 10:32:29 +00002889 int err = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002890
Olivier Deprez0e641232021-09-23 10:07:05 +02002891 /*
2892 * during unmount, let's flush nat_bits before checking
2893 * nat_cnt[DIRTY_NAT].
2894 */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002895 if (enabled_nat_bits(sbi, cpc)) {
2896 down_write(&nm_i->nat_tree_lock);
2897 remove_nats_in_journal(sbi);
2898 up_write(&nm_i->nat_tree_lock);
2899 }
2900
Olivier Deprez0e641232021-09-23 10:07:05 +02002901 if (!nm_i->nat_cnt[DIRTY_NAT])
David Brazdil0f672f62019-12-10 10:32:29 +00002902 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002903
2904 down_write(&nm_i->nat_tree_lock);
2905
2906 /*
2907 * if there are no enough space in journal to store dirty nat
2908 * entries, remove all entries from journal and merge them
2909 * into nat entry set.
2910 */
2911 if (enabled_nat_bits(sbi, cpc) ||
Olivier Deprez0e641232021-09-23 10:07:05 +02002912 !__has_cursum_space(journal,
2913 nm_i->nat_cnt[DIRTY_NAT], NAT_JOURNAL))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002914 remove_nats_in_journal(sbi);
2915
2916 while ((found = __gang_lookup_nat_set(nm_i,
2917 set_idx, SETVEC_SIZE, setvec))) {
2918 unsigned idx;
2919 set_idx = setvec[found - 1]->set + 1;
2920 for (idx = 0; idx < found; idx++)
2921 __adjust_nat_entry_set(setvec[idx], &sets,
2922 MAX_NAT_JENTRIES(journal));
2923 }
2924
2925 /* flush dirty nats in nat entry set */
David Brazdil0f672f62019-12-10 10:32:29 +00002926 list_for_each_entry_safe(set, tmp, &sets, set_list) {
2927 err = __flush_nat_entry_set(sbi, set, cpc);
2928 if (err)
2929 break;
2930 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002931
2932 up_write(&nm_i->nat_tree_lock);
2933 /* Allow dirty nats by node block allocation in write_begin */
David Brazdil0f672f62019-12-10 10:32:29 +00002934
2935 return err;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002936}
2937
2938static int __get_nat_bitmaps(struct f2fs_sb_info *sbi)
2939{
2940 struct f2fs_checkpoint *ckpt = F2FS_CKPT(sbi);
2941 struct f2fs_nm_info *nm_i = NM_I(sbi);
2942 unsigned int nat_bits_bytes = nm_i->nat_blocks / BITS_PER_BYTE;
2943 unsigned int i;
2944 __u64 cp_ver = cur_cp_version(ckpt);
2945 block_t nat_bits_addr;
2946
2947 if (!enabled_nat_bits(sbi, NULL))
2948 return 0;
2949
2950 nm_i->nat_bits_blocks = F2FS_BLK_ALIGN((nat_bits_bytes << 1) + 8);
Olivier Deprez0e641232021-09-23 10:07:05 +02002951 nm_i->nat_bits = f2fs_kvzalloc(sbi,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002952 nm_i->nat_bits_blocks << F2FS_BLKSIZE_BITS, GFP_KERNEL);
2953 if (!nm_i->nat_bits)
2954 return -ENOMEM;
2955
2956 nat_bits_addr = __start_cp_addr(sbi) + sbi->blocks_per_seg -
2957 nm_i->nat_bits_blocks;
2958 for (i = 0; i < nm_i->nat_bits_blocks; i++) {
2959 struct page *page;
2960
2961 page = f2fs_get_meta_page(sbi, nat_bits_addr++);
David Brazdil0f672f62019-12-10 10:32:29 +00002962 if (IS_ERR(page))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002963 return PTR_ERR(page);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002964
2965 memcpy(nm_i->nat_bits + (i << F2FS_BLKSIZE_BITS),
2966 page_address(page), F2FS_BLKSIZE);
2967 f2fs_put_page(page, 1);
2968 }
2969
2970 cp_ver |= (cur_cp_crc(ckpt) << 32);
2971 if (cpu_to_le64(cp_ver) != *(__le64 *)nm_i->nat_bits) {
2972 disable_nat_bits(sbi, true);
2973 return 0;
2974 }
2975
2976 nm_i->full_nat_bits = nm_i->nat_bits + 8;
2977 nm_i->empty_nat_bits = nm_i->full_nat_bits + nat_bits_bytes;
2978
David Brazdil0f672f62019-12-10 10:32:29 +00002979 f2fs_notice(sbi, "Found nat_bits in checkpoint");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002980 return 0;
2981}
2982
2983static inline void load_free_nid_bitmap(struct f2fs_sb_info *sbi)
2984{
2985 struct f2fs_nm_info *nm_i = NM_I(sbi);
2986 unsigned int i = 0;
2987 nid_t nid, last_nid;
2988
2989 if (!enabled_nat_bits(sbi, NULL))
2990 return;
2991
2992 for (i = 0; i < nm_i->nat_blocks; i++) {
2993 i = find_next_bit_le(nm_i->empty_nat_bits, nm_i->nat_blocks, i);
2994 if (i >= nm_i->nat_blocks)
2995 break;
2996
2997 __set_bit_le(i, nm_i->nat_block_bitmap);
2998
2999 nid = i * NAT_ENTRY_PER_BLOCK;
3000 last_nid = nid + NAT_ENTRY_PER_BLOCK;
3001
3002 spin_lock(&NM_I(sbi)->nid_list_lock);
3003 for (; nid < last_nid; nid++)
3004 update_free_nid_bitmap(sbi, nid, true, true);
3005 spin_unlock(&NM_I(sbi)->nid_list_lock);
3006 }
3007
3008 for (i = 0; i < nm_i->nat_blocks; i++) {
3009 i = find_next_bit_le(nm_i->full_nat_bits, nm_i->nat_blocks, i);
3010 if (i >= nm_i->nat_blocks)
3011 break;
3012
3013 __set_bit_le(i, nm_i->nat_block_bitmap);
3014 }
3015}
3016
3017static int init_node_manager(struct f2fs_sb_info *sbi)
3018{
3019 struct f2fs_super_block *sb_raw = F2FS_RAW_SUPER(sbi);
3020 struct f2fs_nm_info *nm_i = NM_I(sbi);
3021 unsigned char *version_bitmap;
3022 unsigned int nat_segs;
3023 int err;
3024
3025 nm_i->nat_blkaddr = le32_to_cpu(sb_raw->nat_blkaddr);
3026
3027 /* segment_count_nat includes pair segment so divide to 2. */
3028 nat_segs = le32_to_cpu(sb_raw->segment_count_nat) >> 1;
3029 nm_i->nat_blocks = nat_segs << le32_to_cpu(sb_raw->log_blocks_per_seg);
3030 nm_i->max_nid = NAT_ENTRY_PER_BLOCK * nm_i->nat_blocks;
3031
3032 /* not used nids: 0, node, meta, (and root counted as valid node) */
3033 nm_i->available_nids = nm_i->max_nid - sbi->total_valid_node_count -
David Brazdil0f672f62019-12-10 10:32:29 +00003034 F2FS_RESERVED_NODE_NUM;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003035 nm_i->nid_cnt[FREE_NID] = 0;
3036 nm_i->nid_cnt[PREALLOC_NID] = 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003037 nm_i->ram_thresh = DEF_RAM_THRESHOLD;
3038 nm_i->ra_nid_pages = DEF_RA_NID_PAGES;
3039 nm_i->dirty_nats_ratio = DEF_DIRTY_NAT_RATIO_THRESHOLD;
3040
3041 INIT_RADIX_TREE(&nm_i->free_nid_root, GFP_ATOMIC);
3042 INIT_LIST_HEAD(&nm_i->free_nid_list);
3043 INIT_RADIX_TREE(&nm_i->nat_root, GFP_NOIO);
3044 INIT_RADIX_TREE(&nm_i->nat_set_root, GFP_NOIO);
3045 INIT_LIST_HEAD(&nm_i->nat_entries);
3046 spin_lock_init(&nm_i->nat_list_lock);
3047
3048 mutex_init(&nm_i->build_lock);
3049 spin_lock_init(&nm_i->nid_list_lock);
3050 init_rwsem(&nm_i->nat_tree_lock);
3051
3052 nm_i->next_scan_nid = le32_to_cpu(sbi->ckpt->next_free_nid);
3053 nm_i->bitmap_size = __bitmap_size(sbi, NAT_BITMAP);
3054 version_bitmap = __bitmap_ptr(sbi, NAT_BITMAP);
3055 if (!version_bitmap)
3056 return -EFAULT;
3057
3058 nm_i->nat_bitmap = kmemdup(version_bitmap, nm_i->bitmap_size,
3059 GFP_KERNEL);
3060 if (!nm_i->nat_bitmap)
3061 return -ENOMEM;
3062
3063 err = __get_nat_bitmaps(sbi);
3064 if (err)
3065 return err;
3066
3067#ifdef CONFIG_F2FS_CHECK_FS
3068 nm_i->nat_bitmap_mir = kmemdup(version_bitmap, nm_i->bitmap_size,
3069 GFP_KERNEL);
3070 if (!nm_i->nat_bitmap_mir)
3071 return -ENOMEM;
3072#endif
3073
3074 return 0;
3075}
3076
3077static int init_free_nid_cache(struct f2fs_sb_info *sbi)
3078{
3079 struct f2fs_nm_info *nm_i = NM_I(sbi);
3080 int i;
3081
3082 nm_i->free_nid_bitmap =
Olivier Deprez0e641232021-09-23 10:07:05 +02003083 f2fs_kvzalloc(sbi, array_size(sizeof(unsigned char *),
3084 nm_i->nat_blocks),
3085 GFP_KERNEL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003086 if (!nm_i->free_nid_bitmap)
3087 return -ENOMEM;
3088
3089 for (i = 0; i < nm_i->nat_blocks; i++) {
3090 nm_i->free_nid_bitmap[i] = f2fs_kvzalloc(sbi,
3091 f2fs_bitmap_size(NAT_ENTRY_PER_BLOCK), GFP_KERNEL);
3092 if (!nm_i->free_nid_bitmap[i])
3093 return -ENOMEM;
3094 }
3095
3096 nm_i->nat_block_bitmap = f2fs_kvzalloc(sbi, nm_i->nat_blocks / 8,
3097 GFP_KERNEL);
3098 if (!nm_i->nat_block_bitmap)
3099 return -ENOMEM;
3100
3101 nm_i->free_nid_count =
3102 f2fs_kvzalloc(sbi, array_size(sizeof(unsigned short),
3103 nm_i->nat_blocks),
3104 GFP_KERNEL);
3105 if (!nm_i->free_nid_count)
3106 return -ENOMEM;
3107 return 0;
3108}
3109
3110int f2fs_build_node_manager(struct f2fs_sb_info *sbi)
3111{
3112 int err;
3113
3114 sbi->nm_info = f2fs_kzalloc(sbi, sizeof(struct f2fs_nm_info),
3115 GFP_KERNEL);
3116 if (!sbi->nm_info)
3117 return -ENOMEM;
3118
3119 err = init_node_manager(sbi);
3120 if (err)
3121 return err;
3122
3123 err = init_free_nid_cache(sbi);
3124 if (err)
3125 return err;
3126
3127 /* load free nid status from nat_bits table */
3128 load_free_nid_bitmap(sbi);
3129
3130 return f2fs_build_free_nids(sbi, true, true);
3131}
3132
3133void f2fs_destroy_node_manager(struct f2fs_sb_info *sbi)
3134{
3135 struct f2fs_nm_info *nm_i = NM_I(sbi);
3136 struct free_nid *i, *next_i;
3137 struct nat_entry *natvec[NATVEC_SIZE];
3138 struct nat_entry_set *setvec[SETVEC_SIZE];
3139 nid_t nid = 0;
3140 unsigned int found;
3141
3142 if (!nm_i)
3143 return;
3144
3145 /* destroy free nid list */
3146 spin_lock(&nm_i->nid_list_lock);
3147 list_for_each_entry_safe(i, next_i, &nm_i->free_nid_list, list) {
3148 __remove_free_nid(sbi, i, FREE_NID);
3149 spin_unlock(&nm_i->nid_list_lock);
3150 kmem_cache_free(free_nid_slab, i);
3151 spin_lock(&nm_i->nid_list_lock);
3152 }
3153 f2fs_bug_on(sbi, nm_i->nid_cnt[FREE_NID]);
3154 f2fs_bug_on(sbi, nm_i->nid_cnt[PREALLOC_NID]);
3155 f2fs_bug_on(sbi, !list_empty(&nm_i->free_nid_list));
3156 spin_unlock(&nm_i->nid_list_lock);
3157
3158 /* destroy nat cache */
3159 down_write(&nm_i->nat_tree_lock);
3160 while ((found = __gang_lookup_nat_cache(nm_i,
3161 nid, NATVEC_SIZE, natvec))) {
3162 unsigned idx;
3163
3164 nid = nat_get_nid(natvec[found - 1]) + 1;
3165 for (idx = 0; idx < found; idx++) {
3166 spin_lock(&nm_i->nat_list_lock);
3167 list_del(&natvec[idx]->list);
3168 spin_unlock(&nm_i->nat_list_lock);
3169
3170 __del_from_nat_cache(nm_i, natvec[idx]);
3171 }
3172 }
Olivier Deprez0e641232021-09-23 10:07:05 +02003173 f2fs_bug_on(sbi, nm_i->nat_cnt[TOTAL_NAT]);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003174
3175 /* destroy nat set cache */
3176 nid = 0;
3177 while ((found = __gang_lookup_nat_set(nm_i,
3178 nid, SETVEC_SIZE, setvec))) {
3179 unsigned idx;
3180
3181 nid = setvec[found - 1]->set + 1;
3182 for (idx = 0; idx < found; idx++) {
3183 /* entry_cnt is not zero, when cp_error was occurred */
3184 f2fs_bug_on(sbi, !list_empty(&setvec[idx]->entry_list));
3185 radix_tree_delete(&nm_i->nat_set_root, setvec[idx]->set);
3186 kmem_cache_free(nat_entry_set_slab, setvec[idx]);
3187 }
3188 }
3189 up_write(&nm_i->nat_tree_lock);
3190
3191 kvfree(nm_i->nat_block_bitmap);
3192 if (nm_i->free_nid_bitmap) {
3193 int i;
3194
3195 for (i = 0; i < nm_i->nat_blocks; i++)
3196 kvfree(nm_i->free_nid_bitmap[i]);
David Brazdil0f672f62019-12-10 10:32:29 +00003197 kvfree(nm_i->free_nid_bitmap);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003198 }
3199 kvfree(nm_i->free_nid_count);
3200
David Brazdil0f672f62019-12-10 10:32:29 +00003201 kvfree(nm_i->nat_bitmap);
3202 kvfree(nm_i->nat_bits);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003203#ifdef CONFIG_F2FS_CHECK_FS
David Brazdil0f672f62019-12-10 10:32:29 +00003204 kvfree(nm_i->nat_bitmap_mir);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003205#endif
3206 sbi->nm_info = NULL;
David Brazdil0f672f62019-12-10 10:32:29 +00003207 kvfree(nm_i);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00003208}
3209
3210int __init f2fs_create_node_manager_caches(void)
3211{
3212 nat_entry_slab = f2fs_kmem_cache_create("nat_entry",
3213 sizeof(struct nat_entry));
3214 if (!nat_entry_slab)
3215 goto fail;
3216
3217 free_nid_slab = f2fs_kmem_cache_create("free_nid",
3218 sizeof(struct free_nid));
3219 if (!free_nid_slab)
3220 goto destroy_nat_entry;
3221
3222 nat_entry_set_slab = f2fs_kmem_cache_create("nat_entry_set",
3223 sizeof(struct nat_entry_set));
3224 if (!nat_entry_set_slab)
3225 goto destroy_free_nid;
3226
3227 fsync_node_entry_slab = f2fs_kmem_cache_create("fsync_node_entry",
3228 sizeof(struct fsync_node_entry));
3229 if (!fsync_node_entry_slab)
3230 goto destroy_nat_entry_set;
3231 return 0;
3232
3233destroy_nat_entry_set:
3234 kmem_cache_destroy(nat_entry_set_slab);
3235destroy_free_nid:
3236 kmem_cache_destroy(free_nid_slab);
3237destroy_nat_entry:
3238 kmem_cache_destroy(nat_entry_slab);
3239fail:
3240 return -ENOMEM;
3241}
3242
3243void f2fs_destroy_node_manager_caches(void)
3244{
3245 kmem_cache_destroy(fsync_node_entry_slab);
3246 kmem_cache_destroy(nat_entry_set_slab);
3247 kmem_cache_destroy(free_nid_slab);
3248 kmem_cache_destroy(nat_entry_slab);
3249}