xfs: constify btree function parameters that are not modified
[linux-block.git] / fs / xfs / xfs_icache.c
CommitLineData
0b61f8a4 1// SPDX-License-Identifier: GPL-2.0
fe4fa4b8
DC
2/*
3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
fe4fa4b8
DC
5 */
6#include "xfs.h"
7#include "xfs_fs.h"
5467b34b 8#include "xfs_shared.h"
6ca1c906 9#include "xfs_format.h"
239880ef
DC
10#include "xfs_log_format.h"
11#include "xfs_trans_resv.h"
fe4fa4b8 12#include "xfs_mount.h"
fe4fa4b8 13#include "xfs_inode.h"
239880ef
DC
14#include "xfs_trans.h"
15#include "xfs_trans_priv.h"
fe4fa4b8 16#include "xfs_inode_item.h"
7d095257 17#include "xfs_quota.h"
0b1b213f 18#include "xfs_trace.h"
6d8b79cf 19#include "xfs_icache.h"
c24b5dfa 20#include "xfs_bmap_util.h"
dc06f398
BF
21#include "xfs_dquot_item.h"
22#include "xfs_dquot.h"
83104d44 23#include "xfs_reflink.h"
bb8a66af 24#include "xfs_ialloc.h"
9bbafc71 25#include "xfs_ag.h"
fe4fa4b8 26
f0e28280 27#include <linux/iversion.h>
a167b17e 28
c809d7e9
DW
29/* Radix tree tags for incore inode tree. */
30
31/* inode is to be reclaimed */
32#define XFS_ICI_RECLAIM_TAG 0
33/* Inode has speculative preallocations (posteof or cow) to clean. */
34#define XFS_ICI_BLOCKGC_TAG 1
35
36/*
37 * The goal for walking incore inodes. These can correspond with incore inode
38 * radix tree tags when convenient. Avoid existing XFS_IWALK namespace.
39 */
40enum xfs_icwalk_goal {
c809d7e9
DW
41 /* Goals directly associated with tagged inodes. */
42 XFS_ICWALK_BLOCKGC = XFS_ICI_BLOCKGC_TAG,
f1bc5c56 43 XFS_ICWALK_RECLAIM = XFS_ICI_RECLAIM_TAG,
c809d7e9
DW
44};
45
46#define XFS_ICWALK_NULL_TAG (-1U)
47
48/* Compute the inode radix tree tag for this goal. */
49static inline unsigned int
50xfs_icwalk_tag(enum xfs_icwalk_goal goal)
51{
52 return goal < 0 ? XFS_ICWALK_NULL_TAG : goal;
53}
54
7fdff526 55static int xfs_icwalk(struct xfs_mount *mp,
b26b2bf1 56 enum xfs_icwalk_goal goal, struct xfs_icwalk *icw);
7fdff526 57static int xfs_icwalk_ag(struct xfs_perag *pag,
b26b2bf1 58 enum xfs_icwalk_goal goal, struct xfs_icwalk *icw);
df600197 59
1ad2cfe0 60/*
b26b2bf1
DW
61 * Private inode cache walk flags for struct xfs_icwalk. Must not
62 * coincide with XFS_ICWALK_FLAGS_VALID.
1ad2cfe0 63 */
1ad2cfe0 64
f1bc5c56
DW
65/* Stop scanning after icw_scan_limit inodes. */
66#define XFS_ICWALK_FLAG_SCAN_LIMIT (1U << 28)
67
9492750a 68#define XFS_ICWALK_FLAG_RECLAIM_SICK (1U << 27)
2d53f66b 69#define XFS_ICWALK_FLAG_UNION (1U << 26) /* union filter algorithm */
9492750a 70
777eb1fa 71#define XFS_ICWALK_PRIVATE_FLAGS (XFS_ICWALK_FLAG_SCAN_LIMIT | \
2d53f66b
DW
72 XFS_ICWALK_FLAG_RECLAIM_SICK | \
73 XFS_ICWALK_FLAG_UNION)
1ad2cfe0 74
33479e05
DC
75/*
76 * Allocate and initialise an xfs_inode.
77 */
638f4416 78struct xfs_inode *
33479e05
DC
79xfs_inode_alloc(
80 struct xfs_mount *mp,
81 xfs_ino_t ino)
82{
83 struct xfs_inode *ip;
84
85 /*
3050bd0b
CM
86 * XXX: If this didn't occur in transactions, we could drop GFP_NOFAIL
87 * and return NULL here on ENOMEM.
33479e05 88 */
3050bd0b
CM
89 ip = kmem_cache_alloc(xfs_inode_zone, GFP_KERNEL | __GFP_NOFAIL);
90
33479e05 91 if (inode_init_always(mp->m_super, VFS_I(ip))) {
377bcd5f 92 kmem_cache_free(xfs_inode_zone, ip);
33479e05
DC
93 return NULL;
94 }
95
c19b3b05
DC
96 /* VFS doesn't initialise i_mode! */
97 VFS_I(ip)->i_mode = 0;
98
ff6d6af2 99 XFS_STATS_INC(mp, vn_active);
33479e05 100 ASSERT(atomic_read(&ip->i_pincount) == 0);
33479e05
DC
101 ASSERT(ip->i_ino == 0);
102
33479e05
DC
103 /* initialise the xfs inode */
104 ip->i_ino = ino;
105 ip->i_mount = mp;
106 memset(&ip->i_imap, 0, sizeof(struct xfs_imap));
107 ip->i_afp = NULL;
3993baeb 108 ip->i_cowfp = NULL;
3ba738df 109 memset(&ip->i_df, 0, sizeof(ip->i_df));
33479e05
DC
110 ip->i_flags = 0;
111 ip->i_delayed_blks = 0;
3e09ab8f 112 ip->i_diflags2 = mp->m_ino_geo.new_diflags2;
6e73a545 113 ip->i_nblocks = 0;
7821ea30 114 ip->i_forkoff = 0;
6772c1f1
DW
115 ip->i_sick = 0;
116 ip->i_checked = 0;
cb357bf3
DW
117 INIT_WORK(&ip->i_ioend_work, xfs_end_io);
118 INIT_LIST_HEAD(&ip->i_ioend_list);
119 spin_lock_init(&ip->i_ioend_lock);
33479e05
DC
120
121 return ip;
122}
123
124STATIC void
125xfs_inode_free_callback(
126 struct rcu_head *head)
127{
128 struct inode *inode = container_of(head, struct inode, i_rcu);
129 struct xfs_inode *ip = XFS_I(inode);
130
c19b3b05 131 switch (VFS_I(ip)->i_mode & S_IFMT) {
33479e05
DC
132 case S_IFREG:
133 case S_IFDIR:
134 case S_IFLNK:
ef838512 135 xfs_idestroy_fork(&ip->i_df);
33479e05
DC
136 break;
137 }
138
ef838512
CH
139 if (ip->i_afp) {
140 xfs_idestroy_fork(ip->i_afp);
141 kmem_cache_free(xfs_ifork_zone, ip->i_afp);
142 }
143 if (ip->i_cowfp) {
144 xfs_idestroy_fork(ip->i_cowfp);
145 kmem_cache_free(xfs_ifork_zone, ip->i_cowfp);
146 }
33479e05 147 if (ip->i_itemp) {
22525c17
DC
148 ASSERT(!test_bit(XFS_LI_IN_AIL,
149 &ip->i_itemp->ili_item.li_flags));
33479e05
DC
150 xfs_inode_item_destroy(ip);
151 ip->i_itemp = NULL;
152 }
153
377bcd5f 154 kmem_cache_free(xfs_inode_zone, ip);
1f2dcfe8
DC
155}
156
8a17d7dd
DC
157static void
158__xfs_inode_free(
159 struct xfs_inode *ip)
160{
161 /* asserts to verify all state is correct here */
162 ASSERT(atomic_read(&ip->i_pincount) == 0);
48d55e2a 163 ASSERT(!ip->i_itemp || list_empty(&ip->i_itemp->ili_item.li_bio_list));
8a17d7dd
DC
164 XFS_STATS_DEC(ip->i_mount, vn_active);
165
166 call_rcu(&VFS_I(ip)->i_rcu, xfs_inode_free_callback);
167}
168
1f2dcfe8
DC
169void
170xfs_inode_free(
171 struct xfs_inode *ip)
172{
718ecc50 173 ASSERT(!xfs_iflags_test(ip, XFS_IFLUSHING));
98efe8af 174
33479e05
DC
175 /*
176 * Because we use RCU freeing we need to ensure the inode always
177 * appears to be reclaimed with an invalid inode number when in the
178 * free state. The ip->i_flags_lock provides the barrier against lookup
179 * races.
180 */
181 spin_lock(&ip->i_flags_lock);
182 ip->i_flags = XFS_IRECLAIM;
183 ip->i_ino = 0;
184 spin_unlock(&ip->i_flags_lock);
185
8a17d7dd 186 __xfs_inode_free(ip);
33479e05
DC
187}
188
ad438c40 189/*
02511a5a
DC
190 * Queue background inode reclaim work if there are reclaimable inodes and there
191 * isn't reclaim work already scheduled or in progress.
ad438c40
DC
192 */
193static void
194xfs_reclaim_work_queue(
195 struct xfs_mount *mp)
196{
197
198 rcu_read_lock();
199 if (radix_tree_tagged(&mp->m_perag_tree, XFS_ICI_RECLAIM_TAG)) {
200 queue_delayed_work(mp->m_reclaim_workqueue, &mp->m_reclaim_work,
201 msecs_to_jiffies(xfs_syncd_centisecs / 6 * 10));
202 }
203 rcu_read_unlock();
204}
205
c076ae7a
DW
206/*
207 * Background scanning to trim preallocated space. This is queued based on the
208 * 'speculative_prealloc_lifetime' tunable (5m by default).
209 */
210static inline void
211xfs_blockgc_queue(
ad438c40 212 struct xfs_perag *pag)
c076ae7a 213{
6f649091
DW
214 struct xfs_mount *mp = pag->pag_mount;
215
216 if (!xfs_is_blockgc_enabled(mp))
217 return;
218
c076ae7a
DW
219 rcu_read_lock();
220 if (radix_tree_tagged(&pag->pag_ici_root, XFS_ICI_BLOCKGC_TAG))
ab23a776 221 queue_delayed_work(pag->pag_mount->m_blockgc_wq,
c076ae7a
DW
222 &pag->pag_blockgc_work,
223 msecs_to_jiffies(xfs_blockgc_secs * 1000));
224 rcu_read_unlock();
225}
226
227/* Set a tag on both the AG incore inode tree and the AG radix tree. */
228static void
229xfs_perag_set_inode_tag(
230 struct xfs_perag *pag,
231 xfs_agino_t agino,
232 unsigned int tag)
ad438c40
DC
233{
234 struct xfs_mount *mp = pag->pag_mount;
c076ae7a 235 bool was_tagged;
ad438c40 236
95989c46 237 lockdep_assert_held(&pag->pag_ici_lock);
c076ae7a
DW
238
239 was_tagged = radix_tree_tagged(&pag->pag_ici_root, tag);
240 radix_tree_tag_set(&pag->pag_ici_root, agino, tag);
241
242 if (tag == XFS_ICI_RECLAIM_TAG)
243 pag->pag_ici_reclaimable++;
244
245 if (was_tagged)
ad438c40
DC
246 return;
247
c076ae7a 248 /* propagate the tag up into the perag radix tree */
ad438c40 249 spin_lock(&mp->m_perag_lock);
c076ae7a 250 radix_tree_tag_set(&mp->m_perag_tree, pag->pag_agno, tag);
ad438c40
DC
251 spin_unlock(&mp->m_perag_lock);
252
c076ae7a
DW
253 /* start background work */
254 switch (tag) {
255 case XFS_ICI_RECLAIM_TAG:
256 xfs_reclaim_work_queue(mp);
257 break;
258 case XFS_ICI_BLOCKGC_TAG:
259 xfs_blockgc_queue(pag);
260 break;
261 }
ad438c40 262
c076ae7a 263 trace_xfs_perag_set_inode_tag(mp, pag->pag_agno, tag, _RET_IP_);
ad438c40
DC
264}
265
c076ae7a 266/* Clear a tag on both the AG incore inode tree and the AG radix tree. */
ad438c40 267static void
c076ae7a
DW
268xfs_perag_clear_inode_tag(
269 struct xfs_perag *pag,
270 xfs_agino_t agino,
271 unsigned int tag)
ad438c40
DC
272{
273 struct xfs_mount *mp = pag->pag_mount;
274
95989c46 275 lockdep_assert_held(&pag->pag_ici_lock);
c076ae7a
DW
276
277 /*
278 * Reclaim can signal (with a null agino) that it cleared its own tag
279 * by removing the inode from the radix tree.
280 */
281 if (agino != NULLAGINO)
282 radix_tree_tag_clear(&pag->pag_ici_root, agino, tag);
283 else
284 ASSERT(tag == XFS_ICI_RECLAIM_TAG);
285
286 if (tag == XFS_ICI_RECLAIM_TAG)
287 pag->pag_ici_reclaimable--;
288
289 if (radix_tree_tagged(&pag->pag_ici_root, tag))
ad438c40
DC
290 return;
291
c076ae7a 292 /* clear the tag from the perag radix tree */
ad438c40 293 spin_lock(&mp->m_perag_lock);
c076ae7a 294 radix_tree_tag_clear(&mp->m_perag_tree, pag->pag_agno, tag);
ad438c40 295 spin_unlock(&mp->m_perag_lock);
ad438c40 296
c076ae7a
DW
297 trace_xfs_perag_clear_inode_tag(mp, pag->pag_agno, tag, _RET_IP_);
298}
ad438c40 299
7fdff526 300static inline void
ae2c4ac2
BF
301xfs_inew_wait(
302 struct xfs_inode *ip)
303{
304 wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_INEW_BIT);
305 DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_INEW_BIT);
306
307 do {
21417136 308 prepare_to_wait(wq, &wait.wq_entry, TASK_UNINTERRUPTIBLE);
ae2c4ac2
BF
309 if (!xfs_iflags_test(ip, XFS_INEW))
310 break;
311 schedule();
312 } while (true);
21417136 313 finish_wait(wq, &wait.wq_entry);
ae2c4ac2
BF
314}
315
50997470
DC
316/*
317 * When we recycle a reclaimable inode, we need to re-initialise the VFS inode
318 * part of the structure. This is made more complex by the fact we store
319 * information about the on-disk values in the VFS inode and so we can't just
83e06f21 320 * overwrite the values unconditionally. Hence we save the parameters we
50997470 321 * need to retain across reinitialisation, and rewrite them into the VFS inode
83e06f21 322 * after reinitialisation even if it fails.
50997470
DC
323 */
324static int
325xfs_reinit_inode(
326 struct xfs_mount *mp,
327 struct inode *inode)
328{
ff7bebeb
DW
329 int error;
330 uint32_t nlink = inode->i_nlink;
331 uint32_t generation = inode->i_generation;
332 uint64_t version = inode_peek_iversion(inode);
333 umode_t mode = inode->i_mode;
334 dev_t dev = inode->i_rdev;
335 kuid_t uid = inode->i_uid;
336 kgid_t gid = inode->i_gid;
50997470
DC
337
338 error = inode_init_always(mp->m_super, inode);
339
54d7b5c1 340 set_nlink(inode, nlink);
9e9a2674 341 inode->i_generation = generation;
f0e28280 342 inode_set_iversion_queried(inode, version);
c19b3b05 343 inode->i_mode = mode;
acd1d715 344 inode->i_rdev = dev;
3d8f2821
CH
345 inode->i_uid = uid;
346 inode->i_gid = gid;
50997470
DC
347 return error;
348}
349
ff7bebeb
DW
350/*
351 * Carefully nudge an inode whose VFS state has been torn down back into a
352 * usable state. Drops the i_flags_lock and the rcu read lock.
353 */
354static int
355xfs_iget_recycle(
356 struct xfs_perag *pag,
357 struct xfs_inode *ip) __releases(&ip->i_flags_lock)
358{
359 struct xfs_mount *mp = ip->i_mount;
360 struct inode *inode = VFS_I(ip);
361 int error;
362
363 trace_xfs_iget_recycle(ip);
364
365 /*
366 * We need to make it look like the inode is being reclaimed to prevent
367 * the actual reclaim workers from stomping over us while we recycle
368 * the inode. We can't clear the radix tree tag yet as it requires
369 * pag_ici_lock to be held exclusive.
370 */
371 ip->i_flags |= XFS_IRECLAIM;
372
373 spin_unlock(&ip->i_flags_lock);
374 rcu_read_unlock();
375
376 ASSERT(!rwsem_is_locked(&inode->i_rwsem));
377 error = xfs_reinit_inode(mp, inode);
378 if (error) {
379 bool wake;
380
381 /*
382 * Re-initializing the inode failed, and we are in deep
383 * trouble. Try to re-add it to the reclaim list.
384 */
385 rcu_read_lock();
386 spin_lock(&ip->i_flags_lock);
387 wake = !!__xfs_iflags_test(ip, XFS_INEW);
388 ip->i_flags &= ~(XFS_INEW | XFS_IRECLAIM);
389 if (wake)
390 wake_up_bit(&ip->i_flags, __XFS_INEW_BIT);
391 ASSERT(ip->i_flags & XFS_IRECLAIMABLE);
392 spin_unlock(&ip->i_flags_lock);
393 rcu_read_unlock();
394
395 trace_xfs_iget_recycle_fail(ip);
396 return error;
397 }
398
399 spin_lock(&pag->pag_ici_lock);
400 spin_lock(&ip->i_flags_lock);
401
402 /*
403 * Clear the per-lifetime state in the inode as we are now effectively
404 * a new inode and need to return to the initial state before reuse
405 * occurs.
406 */
407 ip->i_flags &= ~XFS_IRECLAIM_RESET_FLAGS;
408 ip->i_flags |= XFS_INEW;
409 xfs_perag_clear_inode_tag(pag, XFS_INO_TO_AGINO(mp, ip->i_ino),
410 XFS_ICI_RECLAIM_TAG);
411 inode->i_state = I_NEW;
412 spin_unlock(&ip->i_flags_lock);
413 spin_unlock(&pag->pag_ici_lock);
414
415 return 0;
416}
417
afca6c5b
DC
418/*
419 * If we are allocating a new inode, then check what was returned is
420 * actually a free, empty inode. If we are not allocating an inode,
421 * then check we didn't find a free inode.
422 *
423 * Returns:
424 * 0 if the inode free state matches the lookup context
425 * -ENOENT if the inode is free and we are not allocating
426 * -EFSCORRUPTED if there is any state mismatch at all
427 */
428static int
429xfs_iget_check_free_state(
430 struct xfs_inode *ip,
431 int flags)
432{
433 if (flags & XFS_IGET_CREATE) {
434 /* should be a free inode */
435 if (VFS_I(ip)->i_mode != 0) {
436 xfs_warn(ip->i_mount,
437"Corruption detected! Free inode 0x%llx not marked free! (mode 0x%x)",
438 ip->i_ino, VFS_I(ip)->i_mode);
439 return -EFSCORRUPTED;
440 }
441
6e73a545 442 if (ip->i_nblocks != 0) {
afca6c5b
DC
443 xfs_warn(ip->i_mount,
444"Corruption detected! Free inode 0x%llx has blocks allocated!",
445 ip->i_ino);
446 return -EFSCORRUPTED;
447 }
448 return 0;
449 }
450
451 /* should be an allocated inode */
452 if (VFS_I(ip)->i_mode == 0)
453 return -ENOENT;
454
455 return 0;
456}
457
ab23a776
DC
458/* Make all pending inactivation work start immediately. */
459static void
460xfs_inodegc_queue_all(
461 struct xfs_mount *mp)
462{
463 struct xfs_inodegc *gc;
464 int cpu;
465
466 for_each_online_cpu(cpu) {
467 gc = per_cpu_ptr(mp->m_inodegc, cpu);
468 if (!llist_empty(&gc->list))
469 queue_work_on(cpu, mp->m_inodegc_wq, &gc->work);
470 }
471}
472
33479e05
DC
473/*
474 * Check the validity of the inode we just found it the cache
475 */
476static int
477xfs_iget_cache_hit(
478 struct xfs_perag *pag,
479 struct xfs_inode *ip,
480 xfs_ino_t ino,
481 int flags,
482 int lock_flags) __releases(RCU)
483{
484 struct inode *inode = VFS_I(ip);
485 struct xfs_mount *mp = ip->i_mount;
486 int error;
487
488 /*
489 * check for re-use of an inode within an RCU grace period due to the
490 * radix tree nodes not being updated yet. We monitor for this by
491 * setting the inode number to zero before freeing the inode structure.
492 * If the inode has been reallocated and set up, then the inode number
493 * will not match, so check for that, too.
494 */
495 spin_lock(&ip->i_flags_lock);
77b4d286
DW
496 if (ip->i_ino != ino)
497 goto out_skip;
33479e05
DC
498
499 /*
500 * If we are racing with another cache hit that is currently
501 * instantiating this inode or currently recycling it out of
ff7bebeb 502 * reclaimable state, wait for the initialisation to complete
33479e05
DC
503 * before continuing.
504 *
ab23a776
DC
505 * If we're racing with the inactivation worker we also want to wait.
506 * If we're creating a new file, it's possible that the worker
507 * previously marked the inode as free on disk but hasn't finished
508 * updating the incore state yet. The AGI buffer will be dirty and
509 * locked to the icreate transaction, so a synchronous push of the
510 * inodegc workers would result in deadlock. For a regular iget, the
511 * worker is running already, so we might as well wait.
512 *
33479e05
DC
513 * XXX(hch): eventually we should do something equivalent to
514 * wait_on_inode to wait for these flags to be cleared
515 * instead of polling for it.
516 */
ab23a776 517 if (ip->i_flags & (XFS_INEW | XFS_IRECLAIM | XFS_INACTIVATING))
77b4d286 518 goto out_skip;
33479e05 519
ab23a776
DC
520 if (ip->i_flags & XFS_NEED_INACTIVE) {
521 /* Unlinked inodes cannot be re-grabbed. */
522 if (VFS_I(ip)->i_nlink == 0) {
523 error = -ENOENT;
524 goto out_error;
525 }
526 goto out_inodegc_flush;
527 }
528
33479e05 529 /*
afca6c5b
DC
530 * Check the inode free state is valid. This also detects lookup
531 * racing with unlinks.
33479e05 532 */
afca6c5b
DC
533 error = xfs_iget_check_free_state(ip, flags);
534 if (error)
33479e05 535 goto out_error;
33479e05 536
77b4d286
DW
537 /* Skip inodes that have no vfs state. */
538 if ((flags & XFS_IGET_INCORE) &&
539 (ip->i_flags & XFS_IRECLAIMABLE))
540 goto out_skip;
378f681c 541
77b4d286
DW
542 /* The inode fits the selection criteria; process it. */
543 if (ip->i_flags & XFS_IRECLAIMABLE) {
ff7bebeb
DW
544 /* Drops i_flags_lock and RCU read lock. */
545 error = xfs_iget_recycle(pag, ip);
546 if (error)
547 return error;
33479e05
DC
548 } else {
549 /* If the VFS inode is being torn down, pause and try again. */
77b4d286
DW
550 if (!igrab(inode))
551 goto out_skip;
33479e05
DC
552
553 /* We've got a live one. */
554 spin_unlock(&ip->i_flags_lock);
555 rcu_read_unlock();
556 trace_xfs_iget_hit(ip);
557 }
558
559 if (lock_flags != 0)
560 xfs_ilock(ip, lock_flags);
561
378f681c 562 if (!(flags & XFS_IGET_INCORE))
dae2f8ed 563 xfs_iflags_clear(ip, XFS_ISTALE);
ff6d6af2 564 XFS_STATS_INC(mp, xs_ig_found);
33479e05
DC
565
566 return 0;
567
77b4d286
DW
568out_skip:
569 trace_xfs_iget_skip(ip);
570 XFS_STATS_INC(mp, xs_ig_frecycle);
571 error = -EAGAIN;
33479e05
DC
572out_error:
573 spin_unlock(&ip->i_flags_lock);
574 rcu_read_unlock();
575 return error;
ab23a776
DC
576
577out_inodegc_flush:
578 spin_unlock(&ip->i_flags_lock);
579 rcu_read_unlock();
580 /*
581 * Do not wait for the workers, because the caller could hold an AGI
582 * buffer lock. We're just going to sleep in a loop anyway.
583 */
584 if (xfs_is_inodegc_enabled(mp))
585 xfs_inodegc_queue_all(mp);
586 return -EAGAIN;
33479e05
DC
587}
588
33479e05
DC
589static int
590xfs_iget_cache_miss(
591 struct xfs_mount *mp,
592 struct xfs_perag *pag,
593 xfs_trans_t *tp,
594 xfs_ino_t ino,
595 struct xfs_inode **ipp,
596 int flags,
597 int lock_flags)
598{
599 struct xfs_inode *ip;
600 int error;
601 xfs_agino_t agino = XFS_INO_TO_AGINO(mp, ino);
602 int iflags;
603
604 ip = xfs_inode_alloc(mp, ino);
605 if (!ip)
2451337d 606 return -ENOMEM;
33479e05 607
bb8a66af 608 error = xfs_imap(mp, tp, ip->i_ino, &ip->i_imap, flags);
33479e05
DC
609 if (error)
610 goto out_destroy;
611
bb8a66af
CH
612 /*
613 * For version 5 superblocks, if we are initialising a new inode and we
614 * are not utilising the XFS_MOUNT_IKEEP inode cluster mode, we can
615 * simply build the new inode core with a random generation number.
616 *
617 * For version 4 (and older) superblocks, log recovery is dependent on
965e0a1a 618 * the i_flushiter field being initialised from the current on-disk
bb8a66af
CH
619 * value and hence we must also read the inode off disk even when
620 * initializing new inodes.
621 */
622 if (xfs_sb_version_has_v3inode(&mp->m_sb) &&
623 (flags & XFS_IGET_CREATE) && !(mp->m_flags & XFS_MOUNT_IKEEP)) {
624 VFS_I(ip)->i_generation = prandom_u32();
625 } else {
bb8a66af
CH
626 struct xfs_buf *bp;
627
af9dcdde 628 error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &bp);
bb8a66af
CH
629 if (error)
630 goto out_destroy;
631
af9dcdde
CH
632 error = xfs_inode_from_disk(ip,
633 xfs_buf_offset(bp, ip->i_imap.im_boffset));
bb8a66af
CH
634 if (!error)
635 xfs_buf_set_ref(bp, XFS_INO_REF);
636 xfs_trans_brelse(tp, bp);
637
638 if (error)
639 goto out_destroy;
640 }
641
33479e05
DC
642 trace_xfs_iget_miss(ip);
643
ee457001 644 /*
afca6c5b
DC
645 * Check the inode free state is valid. This also detects lookup
646 * racing with unlinks.
ee457001 647 */
afca6c5b
DC
648 error = xfs_iget_check_free_state(ip, flags);
649 if (error)
33479e05 650 goto out_destroy;
33479e05
DC
651
652 /*
653 * Preload the radix tree so we can insert safely under the
654 * write spinlock. Note that we cannot sleep inside the preload
655 * region. Since we can be called from transaction context, don't
656 * recurse into the file system.
657 */
658 if (radix_tree_preload(GFP_NOFS)) {
2451337d 659 error = -EAGAIN;
33479e05
DC
660 goto out_destroy;
661 }
662
663 /*
664 * Because the inode hasn't been added to the radix-tree yet it can't
665 * be found by another thread, so we can do the non-sleeping lock here.
666 */
667 if (lock_flags) {
668 if (!xfs_ilock_nowait(ip, lock_flags))
669 BUG();
670 }
671
672 /*
673 * These values must be set before inserting the inode into the radix
674 * tree as the moment it is inserted a concurrent lookup (allowed by the
675 * RCU locking mechanism) can find it and that lookup must see that this
676 * is an inode currently under construction (i.e. that XFS_INEW is set).
677 * The ip->i_flags_lock that protects the XFS_INEW flag forms the
678 * memory barrier that ensures this detection works correctly at lookup
679 * time.
680 */
681 iflags = XFS_INEW;
682 if (flags & XFS_IGET_DONTCACHE)
2c567af4 683 d_mark_dontcache(VFS_I(ip));
113a5683
CS
684 ip->i_udquot = NULL;
685 ip->i_gdquot = NULL;
92f8ff73 686 ip->i_pdquot = NULL;
33479e05
DC
687 xfs_iflags_set(ip, iflags);
688
689 /* insert the new inode */
690 spin_lock(&pag->pag_ici_lock);
691 error = radix_tree_insert(&pag->pag_ici_root, agino, ip);
692 if (unlikely(error)) {
693 WARN_ON(error != -EEXIST);
ff6d6af2 694 XFS_STATS_INC(mp, xs_ig_dup);
2451337d 695 error = -EAGAIN;
33479e05
DC
696 goto out_preload_end;
697 }
698 spin_unlock(&pag->pag_ici_lock);
699 radix_tree_preload_end();
700
701 *ipp = ip;
702 return 0;
703
704out_preload_end:
705 spin_unlock(&pag->pag_ici_lock);
706 radix_tree_preload_end();
707 if (lock_flags)
708 xfs_iunlock(ip, lock_flags);
709out_destroy:
710 __destroy_inode(VFS_I(ip));
711 xfs_inode_free(ip);
712 return error;
713}
714
715/*
02511a5a
DC
716 * Look up an inode by number in the given file system. The inode is looked up
717 * in the cache held in each AG. If the inode is found in the cache, initialise
718 * the vfs inode if necessary.
33479e05 719 *
02511a5a
DC
720 * If it is not in core, read it in from the file system's device, add it to the
721 * cache and initialise the vfs inode.
33479e05
DC
722 *
723 * The inode is locked according to the value of the lock_flags parameter.
02511a5a
DC
724 * Inode lookup is only done during metadata operations and not as part of the
725 * data IO path. Hence we only allow locking of the XFS_ILOCK during lookup.
33479e05
DC
726 */
727int
728xfs_iget(
02511a5a
DC
729 struct xfs_mount *mp,
730 struct xfs_trans *tp,
731 xfs_ino_t ino,
732 uint flags,
733 uint lock_flags,
734 struct xfs_inode **ipp)
33479e05 735{
02511a5a
DC
736 struct xfs_inode *ip;
737 struct xfs_perag *pag;
738 xfs_agino_t agino;
739 int error;
33479e05 740
33479e05
DC
741 ASSERT((lock_flags & (XFS_IOLOCK_EXCL | XFS_IOLOCK_SHARED)) == 0);
742
743 /* reject inode numbers outside existing AGs */
744 if (!ino || XFS_INO_TO_AGNO(mp, ino) >= mp->m_sb.sb_agcount)
2451337d 745 return -EINVAL;
33479e05 746
ff6d6af2 747 XFS_STATS_INC(mp, xs_ig_attempts);
8774cf8b 748
33479e05
DC
749 /* get the perag structure and ensure that it's inode capable */
750 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ino));
751 agino = XFS_INO_TO_AGINO(mp, ino);
752
753again:
754 error = 0;
755 rcu_read_lock();
756 ip = radix_tree_lookup(&pag->pag_ici_root, agino);
757
758 if (ip) {
759 error = xfs_iget_cache_hit(pag, ip, ino, flags, lock_flags);
760 if (error)
761 goto out_error_or_again;
762 } else {
763 rcu_read_unlock();
378f681c 764 if (flags & XFS_IGET_INCORE) {
ed438b47 765 error = -ENODATA;
378f681c
DW
766 goto out_error_or_again;
767 }
ff6d6af2 768 XFS_STATS_INC(mp, xs_ig_missed);
33479e05
DC
769
770 error = xfs_iget_cache_miss(mp, pag, tp, ino, &ip,
771 flags, lock_flags);
772 if (error)
773 goto out_error_or_again;
774 }
775 xfs_perag_put(pag);
776
777 *ipp = ip;
778
779 /*
58c90473 780 * If we have a real type for an on-disk inode, we can setup the inode
33479e05
DC
781 * now. If it's a new inode being created, xfs_ialloc will handle it.
782 */
c19b3b05 783 if (xfs_iflags_test(ip, XFS_INEW) && VFS_I(ip)->i_mode != 0)
58c90473 784 xfs_setup_existing_inode(ip);
33479e05
DC
785 return 0;
786
787out_error_or_again:
378f681c 788 if (!(flags & XFS_IGET_INCORE) && error == -EAGAIN) {
33479e05
DC
789 delay(1);
790 goto again;
791 }
792 xfs_perag_put(pag);
793 return error;
794}
795
378f681c
DW
796/*
797 * "Is this a cached inode that's also allocated?"
798 *
799 * Look up an inode by number in the given file system. If the inode is
800 * in cache and isn't in purgatory, return 1 if the inode is allocated
801 * and 0 if it is not. For all other cases (not in cache, being torn
802 * down, etc.), return a negative error code.
803 *
804 * The caller has to prevent inode allocation and freeing activity,
805 * presumably by locking the AGI buffer. This is to ensure that an
806 * inode cannot transition from allocated to freed until the caller is
807 * ready to allow that. If the inode is in an intermediate state (new,
808 * reclaimable, or being reclaimed), -EAGAIN will be returned; if the
809 * inode is not in the cache, -ENOENT will be returned. The caller must
810 * deal with these scenarios appropriately.
811 *
812 * This is a specialized use case for the online scrubber; if you're
813 * reading this, you probably want xfs_iget.
814 */
815int
816xfs_icache_inode_is_allocated(
817 struct xfs_mount *mp,
818 struct xfs_trans *tp,
819 xfs_ino_t ino,
820 bool *inuse)
821{
822 struct xfs_inode *ip;
823 int error;
824
825 error = xfs_iget(mp, tp, ino, XFS_IGET_INCORE, 0, &ip);
826 if (error)
827 return error;
828
829 *inuse = !!(VFS_I(ip)->i_mode);
44a8736b 830 xfs_irele(ip);
378f681c
DW
831 return 0;
832}
833
e3a20c0b
DC
834/*
835 * Grab the inode for reclaim exclusively.
50718b8d
DC
836 *
837 * We have found this inode via a lookup under RCU, so the inode may have
838 * already been freed, or it may be in the process of being recycled by
839 * xfs_iget(). In both cases, the inode will have XFS_IRECLAIM set. If the inode
840 * has been fully recycled by the time we get the i_flags_lock, XFS_IRECLAIMABLE
841 * will not be set. Hence we need to check for both these flag conditions to
842 * avoid inodes that are no longer reclaim candidates.
843 *
844 * Note: checking for other state flags here, under the i_flags_lock or not, is
845 * racy and should be avoided. Those races should be resolved only after we have
846 * ensured that we are able to reclaim this inode and the world can see that we
847 * are going to reclaim it.
848 *
849 * Return true if we grabbed it, false otherwise.
e3a20c0b 850 */
50718b8d 851static bool
f1bc5c56 852xfs_reclaim_igrab(
9492750a 853 struct xfs_inode *ip,
b26b2bf1 854 struct xfs_icwalk *icw)
e3a20c0b 855{
1a3e8f3d
DC
856 ASSERT(rcu_read_lock_held());
857
e3a20c0b 858 spin_lock(&ip->i_flags_lock);
1a3e8f3d
DC
859 if (!__xfs_iflags_test(ip, XFS_IRECLAIMABLE) ||
860 __xfs_iflags_test(ip, XFS_IRECLAIM)) {
861 /* not a reclaim candidate. */
e3a20c0b 862 spin_unlock(&ip->i_flags_lock);
50718b8d 863 return false;
e3a20c0b 864 }
9492750a
DW
865
866 /* Don't reclaim a sick inode unless the caller asked for it. */
867 if (ip->i_sick &&
b26b2bf1 868 (!icw || !(icw->icw_flags & XFS_ICWALK_FLAG_RECLAIM_SICK))) {
9492750a
DW
869 spin_unlock(&ip->i_flags_lock);
870 return false;
871 }
872
e3a20c0b
DC
873 __xfs_iflags_set(ip, XFS_IRECLAIM);
874 spin_unlock(&ip->i_flags_lock);
50718b8d 875 return true;
e3a20c0b
DC
876}
877
777df5af 878/*
02511a5a
DC
879 * Inode reclaim is non-blocking, so the default action if progress cannot be
880 * made is to "requeue" the inode for reclaim by unlocking it and clearing the
881 * XFS_IRECLAIM flag. If we are in a shutdown state, we don't care about
882 * blocking anymore and hence we can wait for the inode to be able to reclaim
883 * it.
777df5af 884 *
02511a5a
DC
885 * We do no IO here - if callers require inodes to be cleaned they must push the
886 * AIL first to trigger writeback of dirty inodes. This enables writeback to be
887 * done in the background in a non-blocking manner, and enables memory reclaim
888 * to make progress without blocking.
777df5af 889 */
4d0bab3a 890static void
c8e20be0 891xfs_reclaim_inode(
75f3cb13 892 struct xfs_inode *ip,
50718b8d 893 struct xfs_perag *pag)
fce08f2f 894{
8a17d7dd 895 xfs_ino_t ino = ip->i_ino; /* for radix_tree_delete */
777df5af 896
9552e14d 897 if (!xfs_ilock_nowait(ip, XFS_ILOCK_EXCL))
617825fe 898 goto out;
718ecc50 899 if (xfs_iflags_test_and_set(ip, XFS_IFLUSHING))
9552e14d 900 goto out_iunlock;
7a3be02b 901
777df5af
DC
902 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
903 xfs_iunpin_wait(ip);
88fc1879 904 xfs_iflush_abort(ip);
777df5af
DC
905 goto reclaim;
906 }
617825fe 907 if (xfs_ipincount(ip))
718ecc50 908 goto out_clear_flush;
617825fe 909 if (!xfs_inode_clean(ip))
718ecc50 910 goto out_clear_flush;
8a48088f 911
718ecc50 912 xfs_iflags_clear(ip, XFS_IFLUSHING);
777df5af 913reclaim:
ab23a776 914 trace_xfs_inode_reclaiming(ip);
98efe8af 915
8a17d7dd
DC
916 /*
917 * Because we use RCU freeing we need to ensure the inode always appears
918 * to be reclaimed with an invalid inode number when in the free state.
98efe8af 919 * We do this as early as possible under the ILOCK so that
f2e9ad21
OS
920 * xfs_iflush_cluster() and xfs_ifree_cluster() can be guaranteed to
921 * detect races with us here. By doing this, we guarantee that once
922 * xfs_iflush_cluster() or xfs_ifree_cluster() has locked XFS_ILOCK that
923 * it will see either a valid inode that will serialise correctly, or it
924 * will see an invalid inode that it can skip.
8a17d7dd
DC
925 */
926 spin_lock(&ip->i_flags_lock);
927 ip->i_flags = XFS_IRECLAIM;
928 ip->i_ino = 0;
255794c7
DW
929 ip->i_sick = 0;
930 ip->i_checked = 0;
8a17d7dd
DC
931 spin_unlock(&ip->i_flags_lock);
932
c8e20be0 933 xfs_iunlock(ip, XFS_ILOCK_EXCL);
2f11feab 934
ff6d6af2 935 XFS_STATS_INC(ip->i_mount, xs_ig_reclaims);
2f11feab
DC
936 /*
937 * Remove the inode from the per-AG radix tree.
938 *
939 * Because radix_tree_delete won't complain even if the item was never
940 * added to the tree assert that it's been there before to catch
941 * problems with the inode life time early on.
942 */
1a427ab0 943 spin_lock(&pag->pag_ici_lock);
2f11feab 944 if (!radix_tree_delete(&pag->pag_ici_root,
8a17d7dd 945 XFS_INO_TO_AGINO(ip->i_mount, ino)))
2f11feab 946 ASSERT(0);
c076ae7a 947 xfs_perag_clear_inode_tag(pag, NULLAGINO, XFS_ICI_RECLAIM_TAG);
1a427ab0 948 spin_unlock(&pag->pag_ici_lock);
2f11feab
DC
949
950 /*
951 * Here we do an (almost) spurious inode lock in order to coordinate
952 * with inode cache radix tree lookups. This is because the lookup
953 * can reference the inodes in the cache without taking references.
954 *
955 * We make that OK here by ensuring that we wait until the inode is
ad637a10 956 * unlocked after the lookup before we go ahead and free it.
2f11feab 957 */
ad637a10 958 xfs_ilock(ip, XFS_ILOCK_EXCL);
3ea06d73 959 ASSERT(!ip->i_udquot && !ip->i_gdquot && !ip->i_pdquot);
ad637a10 960 xfs_iunlock(ip, XFS_ILOCK_EXCL);
96355d5a 961 ASSERT(xfs_inode_clean(ip));
2f11feab 962
8a17d7dd 963 __xfs_inode_free(ip);
4d0bab3a 964 return;
8a48088f 965
718ecc50
DC
966out_clear_flush:
967 xfs_iflags_clear(ip, XFS_IFLUSHING);
9552e14d 968out_iunlock:
8a48088f 969 xfs_iunlock(ip, XFS_ILOCK_EXCL);
9552e14d 970out:
617825fe 971 xfs_iflags_clear(ip, XFS_IRECLAIM);
7a3be02b
DC
972}
973
9492750a
DW
974/* Reclaim sick inodes if we're unmounting or the fs went down. */
975static inline bool
976xfs_want_reclaim_sick(
977 struct xfs_mount *mp)
978{
979 return (mp->m_flags & XFS_MOUNT_UNMOUNTING) ||
980 (mp->m_flags & XFS_MOUNT_NORECOVERY) ||
981 XFS_FORCED_SHUTDOWN(mp);
982}
983
4d0bab3a 984void
7a3be02b 985xfs_reclaim_inodes(
4d0bab3a 986 struct xfs_mount *mp)
7a3be02b 987{
b26b2bf1
DW
988 struct xfs_icwalk icw = {
989 .icw_flags = 0,
9492750a
DW
990 };
991
992 if (xfs_want_reclaim_sick(mp))
b26b2bf1 993 icw.icw_flags |= XFS_ICWALK_FLAG_RECLAIM_SICK;
9492750a 994
4d0bab3a 995 while (radix_tree_tagged(&mp->m_perag_tree, XFS_ICI_RECLAIM_TAG)) {
617825fe 996 xfs_ail_push_all_sync(mp->m_ail);
b26b2bf1 997 xfs_icwalk(mp, XFS_ICWALK_RECLAIM, &icw);
0f4ec0f1 998 }
9bf729c0
DC
999}
1000
1001/*
02511a5a
DC
1002 * The shrinker infrastructure determines how many inodes we should scan for
1003 * reclaim. We want as many clean inodes ready to reclaim as possible, so we
1004 * push the AIL here. We also want to proactively free up memory if we can to
1005 * minimise the amount of work memory reclaim has to do so we kick the
1006 * background reclaim if it isn't already scheduled.
9bf729c0 1007 */
0a234c6d 1008long
8daaa831
DC
1009xfs_reclaim_inodes_nr(
1010 struct xfs_mount *mp,
10be350b 1011 unsigned long nr_to_scan)
9bf729c0 1012{
b26b2bf1
DW
1013 struct xfs_icwalk icw = {
1014 .icw_flags = XFS_ICWALK_FLAG_SCAN_LIMIT,
10be350b 1015 .icw_scan_limit = min_t(unsigned long, LONG_MAX, nr_to_scan),
f1bc5c56
DW
1016 };
1017
9492750a 1018 if (xfs_want_reclaim_sick(mp))
b26b2bf1 1019 icw.icw_flags |= XFS_ICWALK_FLAG_RECLAIM_SICK;
9492750a 1020
8daaa831 1021 /* kick background reclaimer and push the AIL */
5889608d 1022 xfs_reclaim_work_queue(mp);
8daaa831 1023 xfs_ail_push_all(mp->m_ail);
a7b339f1 1024
b26b2bf1 1025 xfs_icwalk(mp, XFS_ICWALK_RECLAIM, &icw);
617825fe 1026 return 0;
8daaa831 1027}
9bf729c0 1028
8daaa831
DC
1029/*
1030 * Return the number of reclaimable inodes in the filesystem for
1031 * the shrinker to determine how much to reclaim.
1032 */
10be350b 1033long
8daaa831
DC
1034xfs_reclaim_inodes_count(
1035 struct xfs_mount *mp)
1036{
1037 struct xfs_perag *pag;
1038 xfs_agnumber_t ag = 0;
10be350b 1039 long reclaimable = 0;
9bf729c0 1040
65d0f205
DC
1041 while ((pag = xfs_perag_get_tag(mp, ag, XFS_ICI_RECLAIM_TAG))) {
1042 ag = pag->pag_agno + 1;
70e60ce7
DC
1043 reclaimable += pag->pag_ici_reclaimable;
1044 xfs_perag_put(pag);
9bf729c0 1045 }
9bf729c0
DC
1046 return reclaimable;
1047}
1048
39b1cfd7 1049STATIC bool
b26b2bf1 1050xfs_icwalk_match_id(
3e3f9f58 1051 struct xfs_inode *ip,
b26b2bf1 1052 struct xfs_icwalk *icw)
3e3f9f58 1053{
b26b2bf1
DW
1054 if ((icw->icw_flags & XFS_ICWALK_FLAG_UID) &&
1055 !uid_eq(VFS_I(ip)->i_uid, icw->icw_uid))
39b1cfd7 1056 return false;
3e3f9f58 1057
b26b2bf1
DW
1058 if ((icw->icw_flags & XFS_ICWALK_FLAG_GID) &&
1059 !gid_eq(VFS_I(ip)->i_gid, icw->icw_gid))
39b1cfd7 1060 return false;
1b556048 1061
b26b2bf1
DW
1062 if ((icw->icw_flags & XFS_ICWALK_FLAG_PRID) &&
1063 ip->i_projid != icw->icw_prid)
39b1cfd7 1064 return false;
1b556048 1065
39b1cfd7 1066 return true;
3e3f9f58
BF
1067}
1068
f4526397
BF
1069/*
1070 * A union-based inode filtering algorithm. Process the inode if any of the
1071 * criteria match. This is for global/internal scans only.
1072 */
39b1cfd7 1073STATIC bool
b26b2bf1 1074xfs_icwalk_match_id_union(
f4526397 1075 struct xfs_inode *ip,
b26b2bf1 1076 struct xfs_icwalk *icw)
f4526397 1077{
b26b2bf1
DW
1078 if ((icw->icw_flags & XFS_ICWALK_FLAG_UID) &&
1079 uid_eq(VFS_I(ip)->i_uid, icw->icw_uid))
39b1cfd7 1080 return true;
f4526397 1081
b26b2bf1
DW
1082 if ((icw->icw_flags & XFS_ICWALK_FLAG_GID) &&
1083 gid_eq(VFS_I(ip)->i_gid, icw->icw_gid))
39b1cfd7 1084 return true;
f4526397 1085
b26b2bf1
DW
1086 if ((icw->icw_flags & XFS_ICWALK_FLAG_PRID) &&
1087 ip->i_projid == icw->icw_prid)
39b1cfd7 1088 return true;
f4526397 1089
39b1cfd7 1090 return false;
f4526397
BF
1091}
1092
a91bf992
DW
1093/*
1094 * Is this inode @ip eligible for eof/cow block reclamation, given some
b26b2bf1 1095 * filtering parameters @icw? The inode is eligible if @icw is null or
a91bf992
DW
1096 * if the predicate functions match.
1097 */
1098static bool
b26b2bf1 1099xfs_icwalk_match(
a91bf992 1100 struct xfs_inode *ip,
b26b2bf1 1101 struct xfs_icwalk *icw)
a91bf992 1102{
39b1cfd7 1103 bool match;
a91bf992 1104
b26b2bf1 1105 if (!icw)
a91bf992
DW
1106 return true;
1107
b26b2bf1
DW
1108 if (icw->icw_flags & XFS_ICWALK_FLAG_UNION)
1109 match = xfs_icwalk_match_id_union(ip, icw);
a91bf992 1110 else
b26b2bf1 1111 match = xfs_icwalk_match_id(ip, icw);
a91bf992
DW
1112 if (!match)
1113 return false;
1114
1115 /* skip the inode if the file size is too small */
b26b2bf1
DW
1116 if ((icw->icw_flags & XFS_ICWALK_FLAG_MINFILESIZE) &&
1117 XFS_ISIZE(ip) < icw->icw_min_file_size)
a91bf992
DW
1118 return false;
1119
1120 return true;
1121}
1122
4d0bab3a
DC
1123/*
1124 * This is a fast pass over the inode cache to try to get reclaim moving on as
1125 * many inodes as possible in a short period of time. It kicks itself every few
1126 * seconds, as well as being kicked by the inode cache shrinker when memory
02511a5a 1127 * goes low.
4d0bab3a
DC
1128 */
1129void
1130xfs_reclaim_worker(
1131 struct work_struct *work)
1132{
1133 struct xfs_mount *mp = container_of(to_delayed_work(work),
1134 struct xfs_mount, m_reclaim_work);
4d0bab3a 1135
f1bc5c56 1136 xfs_icwalk(mp, XFS_ICWALK_RECLAIM, NULL);
4d0bab3a
DC
1137 xfs_reclaim_work_queue(mp);
1138}
1139
41176a68
BF
1140STATIC int
1141xfs_inode_free_eofblocks(
1142 struct xfs_inode *ip,
b26b2bf1 1143 struct xfs_icwalk *icw,
0fa4a10a 1144 unsigned int *lockflags)
41176a68 1145{
390600f8 1146 bool wait;
390600f8 1147
b26b2bf1 1148 wait = icw && (icw->icw_flags & XFS_ICWALK_FLAG_SYNC);
5400da7d 1149
ce2d3bbe
DW
1150 if (!xfs_iflags_test(ip, XFS_IEOFBLOCKS))
1151 return 0;
1152
41176a68
BF
1153 /*
1154 * If the mapping is dirty the operation can block and wait for some
1155 * time. Unless we are waiting, skip it.
1156 */
390600f8 1157 if (!wait && mapping_tagged(VFS_I(ip)->i_mapping, PAGECACHE_TAG_DIRTY))
41176a68
BF
1158 return 0;
1159
b26b2bf1 1160 if (!xfs_icwalk_match(ip, icw))
a91bf992 1161 return 0;
3e3f9f58 1162
a36b9261
BF
1163 /*
1164 * If the caller is waiting, return -EAGAIN to keep the background
1165 * scanner moving and revisit the inode in a subsequent pass.
1166 */
c3155097 1167 if (!xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL)) {
390600f8
DW
1168 if (wait)
1169 return -EAGAIN;
1170 return 0;
a36b9261 1171 }
0fa4a10a 1172 *lockflags |= XFS_IOLOCK_EXCL;
390600f8 1173
2b156ff8
DW
1174 if (xfs_can_free_eofblocks(ip, false))
1175 return xfs_free_eofblocks(ip);
1176
1177 /* inode could be preallocated or append-only */
1178 trace_xfs_inode_free_eofblocks_invalid(ip);
1179 xfs_inode_clear_eofblocks_tag(ip);
1180 return 0;
41176a68
BF
1181}
1182
83104d44 1183static void
ce2d3bbe
DW
1184xfs_blockgc_set_iflag(
1185 struct xfs_inode *ip,
ce2d3bbe 1186 unsigned long iflag)
27b52867 1187{
ce2d3bbe
DW
1188 struct xfs_mount *mp = ip->i_mount;
1189 struct xfs_perag *pag;
ce2d3bbe
DW
1190
1191 ASSERT((iflag & ~(XFS_IEOFBLOCKS | XFS_ICOWBLOCKS)) == 0);
27b52867 1192
85a6e764
CH
1193 /*
1194 * Don't bother locking the AG and looking up in the radix trees
1195 * if we already know that we have the tag set.
1196 */
ce2d3bbe 1197 if (ip->i_flags & iflag)
85a6e764
CH
1198 return;
1199 spin_lock(&ip->i_flags_lock);
ce2d3bbe 1200 ip->i_flags |= iflag;
85a6e764
CH
1201 spin_unlock(&ip->i_flags_lock);
1202
27b52867
BF
1203 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
1204 spin_lock(&pag->pag_ici_lock);
27b52867 1205
c076ae7a
DW
1206 xfs_perag_set_inode_tag(pag, XFS_INO_TO_AGINO(mp, ip->i_ino),
1207 XFS_ICI_BLOCKGC_TAG);
27b52867
BF
1208
1209 spin_unlock(&pag->pag_ici_lock);
1210 xfs_perag_put(pag);
1211}
1212
1213void
83104d44 1214xfs_inode_set_eofblocks_tag(
27b52867 1215 xfs_inode_t *ip)
83104d44
DW
1216{
1217 trace_xfs_inode_set_eofblocks_tag(ip);
9669f51d 1218 return xfs_blockgc_set_iflag(ip, XFS_IEOFBLOCKS);
83104d44
DW
1219}
1220
1221static void
ce2d3bbe
DW
1222xfs_blockgc_clear_iflag(
1223 struct xfs_inode *ip,
1224 unsigned long iflag)
27b52867 1225{
ce2d3bbe
DW
1226 struct xfs_mount *mp = ip->i_mount;
1227 struct xfs_perag *pag;
1228 bool clear_tag;
1229
1230 ASSERT((iflag & ~(XFS_IEOFBLOCKS | XFS_ICOWBLOCKS)) == 0);
27b52867 1231
85a6e764 1232 spin_lock(&ip->i_flags_lock);
ce2d3bbe
DW
1233 ip->i_flags &= ~iflag;
1234 clear_tag = (ip->i_flags & (XFS_IEOFBLOCKS | XFS_ICOWBLOCKS)) == 0;
85a6e764
CH
1235 spin_unlock(&ip->i_flags_lock);
1236
ce2d3bbe
DW
1237 if (!clear_tag)
1238 return;
1239
27b52867
BF
1240 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
1241 spin_lock(&pag->pag_ici_lock);
27b52867 1242
c076ae7a
DW
1243 xfs_perag_clear_inode_tag(pag, XFS_INO_TO_AGINO(mp, ip->i_ino),
1244 XFS_ICI_BLOCKGC_TAG);
27b52867
BF
1245
1246 spin_unlock(&pag->pag_ici_lock);
1247 xfs_perag_put(pag);
1248}
1249
83104d44
DW
1250void
1251xfs_inode_clear_eofblocks_tag(
1252 xfs_inode_t *ip)
1253{
1254 trace_xfs_inode_clear_eofblocks_tag(ip);
ce2d3bbe 1255 return xfs_blockgc_clear_iflag(ip, XFS_IEOFBLOCKS);
83104d44
DW
1256}
1257
1258/*
be78ff0e
DW
1259 * Set ourselves up to free CoW blocks from this file. If it's already clean
1260 * then we can bail out quickly, but otherwise we must back off if the file
1261 * is undergoing some kind of write.
83104d44 1262 */
be78ff0e
DW
1263static bool
1264xfs_prep_free_cowblocks(
51d62690 1265 struct xfs_inode *ip)
83104d44 1266{
39937234
BF
1267 /*
1268 * Just clear the tag if we have an empty cow fork or none at all. It's
1269 * possible the inode was fully unshared since it was originally tagged.
1270 */
51d62690 1271 if (!xfs_inode_has_cow_data(ip)) {
83104d44
DW
1272 trace_xfs_inode_free_cowblocks_invalid(ip);
1273 xfs_inode_clear_cowblocks_tag(ip);
be78ff0e 1274 return false;
83104d44
DW
1275 }
1276
1277 /*
1278 * If the mapping is dirty or under writeback we cannot touch the
1279 * CoW fork. Leave it alone if we're in the midst of a directio.
1280 */
a1b7a4de
CH
1281 if ((VFS_I(ip)->i_state & I_DIRTY_PAGES) ||
1282 mapping_tagged(VFS_I(ip)->i_mapping, PAGECACHE_TAG_DIRTY) ||
83104d44
DW
1283 mapping_tagged(VFS_I(ip)->i_mapping, PAGECACHE_TAG_WRITEBACK) ||
1284 atomic_read(&VFS_I(ip)->i_dio_count))
be78ff0e
DW
1285 return false;
1286
1287 return true;
1288}
1289
1290/*
1291 * Automatic CoW Reservation Freeing
1292 *
1293 * These functions automatically garbage collect leftover CoW reservations
1294 * that were made on behalf of a cowextsize hint when we start to run out
1295 * of quota or when the reservations sit around for too long. If the file
1296 * has dirty pages or is undergoing writeback, its CoW reservations will
1297 * be retained.
1298 *
1299 * The actual garbage collection piggybacks off the same code that runs
1300 * the speculative EOF preallocation garbage collector.
1301 */
1302STATIC int
1303xfs_inode_free_cowblocks(
1304 struct xfs_inode *ip,
b26b2bf1 1305 struct xfs_icwalk *icw,
0fa4a10a 1306 unsigned int *lockflags)
be78ff0e 1307{
f41a0716 1308 bool wait;
be78ff0e
DW
1309 int ret = 0;
1310
b26b2bf1 1311 wait = icw && (icw->icw_flags & XFS_ICWALK_FLAG_SYNC);
f41a0716 1312
ce2d3bbe
DW
1313 if (!xfs_iflags_test(ip, XFS_ICOWBLOCKS))
1314 return 0;
1315
51d62690 1316 if (!xfs_prep_free_cowblocks(ip))
83104d44
DW
1317 return 0;
1318
b26b2bf1 1319 if (!xfs_icwalk_match(ip, icw))
a91bf992 1320 return 0;
83104d44 1321
f41a0716
DW
1322 /*
1323 * If the caller is waiting, return -EAGAIN to keep the background
1324 * scanner moving and revisit the inode in a subsequent pass.
1325 */
0fa4a10a
DW
1326 if (!(*lockflags & XFS_IOLOCK_EXCL) &&
1327 !xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL)) {
f41a0716
DW
1328 if (wait)
1329 return -EAGAIN;
1330 return 0;
1331 }
0fa4a10a
DW
1332 *lockflags |= XFS_IOLOCK_EXCL;
1333
f41a0716
DW
1334 if (!xfs_ilock_nowait(ip, XFS_MMAPLOCK_EXCL)) {
1335 if (wait)
0fa4a10a
DW
1336 return -EAGAIN;
1337 return 0;
f41a0716 1338 }
0fa4a10a 1339 *lockflags |= XFS_MMAPLOCK_EXCL;
83104d44 1340
be78ff0e
DW
1341 /*
1342 * Check again, nobody else should be able to dirty blocks or change
1343 * the reflink iflag now that we have the first two locks held.
1344 */
51d62690 1345 if (xfs_prep_free_cowblocks(ip))
be78ff0e 1346 ret = xfs_reflink_cancel_cow_range(ip, 0, NULLFILEOFF, false);
83104d44
DW
1347 return ret;
1348}
1349
83104d44
DW
1350void
1351xfs_inode_set_cowblocks_tag(
1352 xfs_inode_t *ip)
1353{
7b7381f0 1354 trace_xfs_inode_set_cowblocks_tag(ip);
9669f51d 1355 return xfs_blockgc_set_iflag(ip, XFS_ICOWBLOCKS);
83104d44
DW
1356}
1357
1358void
1359xfs_inode_clear_cowblocks_tag(
1360 xfs_inode_t *ip)
1361{
7b7381f0 1362 trace_xfs_inode_clear_cowblocks_tag(ip);
ce2d3bbe 1363 return xfs_blockgc_clear_iflag(ip, XFS_ICOWBLOCKS);
83104d44 1364}
d6b636eb
DW
1365
1366/* Disable post-EOF and CoW block auto-reclamation. */
1367void
c9a6526f 1368xfs_blockgc_stop(
d6b636eb
DW
1369 struct xfs_mount *mp)
1370{
894ecacf
DW
1371 struct xfs_perag *pag;
1372 xfs_agnumber_t agno;
1373
6f649091
DW
1374 if (!xfs_clear_blockgc_enabled(mp))
1375 return;
1376
1377 for_each_perag(mp, agno, pag)
894ecacf 1378 cancel_delayed_work_sync(&pag->pag_blockgc_work);
6f649091 1379 trace_xfs_blockgc_stop(mp, __return_address);
d6b636eb
DW
1380}
1381
1382/* Enable post-EOF and CoW block auto-reclamation. */
1383void
c9a6526f 1384xfs_blockgc_start(
d6b636eb
DW
1385 struct xfs_mount *mp)
1386{
894ecacf
DW
1387 struct xfs_perag *pag;
1388 xfs_agnumber_t agno;
1389
6f649091
DW
1390 if (xfs_set_blockgc_enabled(mp))
1391 return;
1392
1393 trace_xfs_blockgc_start(mp, __return_address);
894ecacf
DW
1394 for_each_perag_tag(mp, agno, pag, XFS_ICI_BLOCKGC_TAG)
1395 xfs_blockgc_queue(pag);
d6b636eb 1396}
3d4feec0 1397
d20d5edc
DW
1398/* Don't try to run block gc on an inode that's in any of these states. */
1399#define XFS_BLOCKGC_NOGRAB_IFLAGS (XFS_INEW | \
ab23a776
DC
1400 XFS_NEED_INACTIVE | \
1401 XFS_INACTIVATING | \
d20d5edc
DW
1402 XFS_IRECLAIMABLE | \
1403 XFS_IRECLAIM)
df600197 1404/*
b9baaef4
DW
1405 * Decide if the given @ip is eligible for garbage collection of speculative
1406 * preallocations, and grab it if so. Returns true if it's ready to go or
1407 * false if we should just ignore it.
df600197
DW
1408 */
1409static bool
b9baaef4 1410xfs_blockgc_igrab(
7fdff526 1411 struct xfs_inode *ip)
df600197
DW
1412{
1413 struct inode *inode = VFS_I(ip);
df600197
DW
1414
1415 ASSERT(rcu_read_lock_held());
1416
1417 /* Check for stale RCU freed inode */
1418 spin_lock(&ip->i_flags_lock);
1419 if (!ip->i_ino)
1420 goto out_unlock_noent;
1421
d20d5edc 1422 if (ip->i_flags & XFS_BLOCKGC_NOGRAB_IFLAGS)
df600197
DW
1423 goto out_unlock_noent;
1424 spin_unlock(&ip->i_flags_lock);
1425
1426 /* nothing to sync during shutdown */
1427 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
1428 return false;
1429
1430 /* If we can't grab the inode, it must on it's way to reclaim. */
1431 if (!igrab(inode))
1432 return false;
1433
1434 /* inode is valid */
1435 return true;
1436
1437out_unlock_noent:
1438 spin_unlock(&ip->i_flags_lock);
1439 return false;
1440}
1441
41956753
DW
1442/* Scan one incore inode for block preallocations that we can remove. */
1443static int
1444xfs_blockgc_scan_inode(
1445 struct xfs_inode *ip,
b26b2bf1 1446 struct xfs_icwalk *icw)
85c5b270 1447{
0fa4a10a 1448 unsigned int lockflags = 0;
85c5b270
DW
1449 int error;
1450
b26b2bf1 1451 error = xfs_inode_free_eofblocks(ip, icw, &lockflags);
85c5b270 1452 if (error)
0fa4a10a 1453 goto unlock;
85c5b270 1454
b26b2bf1 1455 error = xfs_inode_free_cowblocks(ip, icw, &lockflags);
0fa4a10a
DW
1456unlock:
1457 if (lockflags)
1458 xfs_iunlock(ip, lockflags);
594ab00b 1459 xfs_irele(ip);
0fa4a10a 1460 return error;
85c5b270
DW
1461}
1462
9669f51d
DW
1463/* Background worker that trims preallocated space. */
1464void
1465xfs_blockgc_worker(
1466 struct work_struct *work)
1467{
894ecacf
DW
1468 struct xfs_perag *pag = container_of(to_delayed_work(work),
1469 struct xfs_perag, pag_blockgc_work);
1470 struct xfs_mount *mp = pag->pag_mount;
9669f51d
DW
1471 int error;
1472
6f649091
DW
1473 trace_xfs_blockgc_worker(mp, __return_address);
1474
f427cf5c 1475 error = xfs_icwalk_ag(pag, XFS_ICWALK_BLOCKGC, NULL);
9669f51d 1476 if (error)
894ecacf
DW
1477 xfs_info(mp, "AG %u preallocation gc worker failed, err=%d",
1478 pag->pag_agno, error);
894ecacf 1479 xfs_blockgc_queue(pag);
9669f51d
DW
1480}
1481
85c5b270 1482/*
2eb66502
DW
1483 * Try to free space in the filesystem by purging inactive inodes, eofblocks
1484 * and cowblocks.
85c5b270
DW
1485 */
1486int
1487xfs_blockgc_free_space(
1488 struct xfs_mount *mp,
b26b2bf1 1489 struct xfs_icwalk *icw)
85c5b270 1490{
2eb66502
DW
1491 int error;
1492
b26b2bf1 1493 trace_xfs_blockgc_free_space(mp, icw, _RET_IP_);
85c5b270 1494
2eb66502
DW
1495 error = xfs_icwalk(mp, XFS_ICWALK_BLOCKGC, icw);
1496 if (error)
1497 return error;
1498
1499 xfs_inodegc_flush(mp);
1500 return 0;
85c5b270
DW
1501}
1502
e8d04c2a
DW
1503/*
1504 * Reclaim all the free space that we can by scheduling the background blockgc
1505 * and inodegc workers immediately and waiting for them all to clear.
1506 */
1507void
1508xfs_blockgc_flush_all(
1509 struct xfs_mount *mp)
1510{
1511 struct xfs_perag *pag;
1512 xfs_agnumber_t agno;
1513
1514 trace_xfs_blockgc_flush_all(mp, __return_address);
1515
1516 /*
1517 * For each blockgc worker, move its queue time up to now. If it
1518 * wasn't queued, it will not be requeued. Then flush whatever's
1519 * left.
1520 */
1521 for_each_perag_tag(mp, agno, pag, XFS_ICI_BLOCKGC_TAG)
1522 mod_delayed_work(pag->pag_mount->m_blockgc_wq,
1523 &pag->pag_blockgc_work, 0);
1524
1525 for_each_perag_tag(mp, agno, pag, XFS_ICI_BLOCKGC_TAG)
1526 flush_delayed_work(&pag->pag_blockgc_work);
1527
1528 xfs_inodegc_flush(mp);
1529}
1530
3d4feec0 1531/*
c237dd7c
DW
1532 * Run cow/eofblocks scans on the supplied dquots. We don't know exactly which
1533 * quota caused an allocation failure, so we make a best effort by including
1534 * each quota under low free space conditions (less than 1% free space) in the
1535 * scan.
111068f8
DW
1536 *
1537 * Callers must not hold any inode's ILOCK. If requesting a synchronous scan
2d53f66b 1538 * (XFS_ICWALK_FLAG_SYNC), the caller also must not hold any inode's IOLOCK or
111068f8 1539 * MMAPLOCK.
3d4feec0 1540 */
111068f8 1541int
c237dd7c
DW
1542xfs_blockgc_free_dquots(
1543 struct xfs_mount *mp,
1544 struct xfs_dquot *udqp,
1545 struct xfs_dquot *gdqp,
1546 struct xfs_dquot *pdqp,
2d53f66b 1547 unsigned int iwalk_flags)
3d4feec0 1548{
b26b2bf1 1549 struct xfs_icwalk icw = {0};
3d4feec0
DW
1550 bool do_work = false;
1551
c237dd7c
DW
1552 if (!udqp && !gdqp && !pdqp)
1553 return 0;
1554
3d4feec0 1555 /*
111068f8
DW
1556 * Run a scan to free blocks using the union filter to cover all
1557 * applicable quotas in a single scan.
3d4feec0 1558 */
b26b2bf1 1559 icw.icw_flags = XFS_ICWALK_FLAG_UNION | iwalk_flags;
3d4feec0 1560
c237dd7c 1561 if (XFS_IS_UQUOTA_ENFORCED(mp) && udqp && xfs_dquot_lowsp(udqp)) {
b26b2bf1
DW
1562 icw.icw_uid = make_kuid(mp->m_super->s_user_ns, udqp->q_id);
1563 icw.icw_flags |= XFS_ICWALK_FLAG_UID;
c237dd7c 1564 do_work = true;
3d4feec0
DW
1565 }
1566
c237dd7c 1567 if (XFS_IS_UQUOTA_ENFORCED(mp) && gdqp && xfs_dquot_lowsp(gdqp)) {
b26b2bf1
DW
1568 icw.icw_gid = make_kgid(mp->m_super->s_user_ns, gdqp->q_id);
1569 icw.icw_flags |= XFS_ICWALK_FLAG_GID;
c237dd7c 1570 do_work = true;
3d4feec0
DW
1571 }
1572
c237dd7c 1573 if (XFS_IS_PQUOTA_ENFORCED(mp) && pdqp && xfs_dquot_lowsp(pdqp)) {
b26b2bf1
DW
1574 icw.icw_prid = pdqp->q_id;
1575 icw.icw_flags |= XFS_ICWALK_FLAG_PRID;
c237dd7c 1576 do_work = true;
3d4feec0
DW
1577 }
1578
1579 if (!do_work)
111068f8 1580 return 0;
3d4feec0 1581
b26b2bf1 1582 return xfs_blockgc_free_space(mp, &icw);
c237dd7c
DW
1583}
1584
1585/* Run cow/eofblocks scans on the quotas attached to the inode. */
1586int
1587xfs_blockgc_free_quota(
1588 struct xfs_inode *ip,
2d53f66b 1589 unsigned int iwalk_flags)
c237dd7c
DW
1590{
1591 return xfs_blockgc_free_dquots(ip->i_mount,
1592 xfs_inode_dquot(ip, XFS_DQTYPE_USER),
1593 xfs_inode_dquot(ip, XFS_DQTYPE_GROUP),
2d53f66b 1594 xfs_inode_dquot(ip, XFS_DQTYPE_PROJ), iwalk_flags);
3d4feec0 1595}
df600197
DW
1596
1597/* XFS Inode Cache Walking Code */
1598
f1bc5c56
DW
1599/*
1600 * The inode lookup is done in batches to keep the amount of lock traffic and
1601 * radix tree lookups to a minimum. The batch size is a trade off between
1602 * lookup reduction and stack usage. This is in the reclaim path, so we can't
1603 * be too greedy.
1604 */
1605#define XFS_LOOKUP_BATCH 32
1606
1607
b9baaef4
DW
1608/*
1609 * Decide if we want to grab this inode in anticipation of doing work towards
594ab00b 1610 * the goal.
b9baaef4
DW
1611 */
1612static inline bool
1613xfs_icwalk_igrab(
1614 enum xfs_icwalk_goal goal,
9492750a 1615 struct xfs_inode *ip,
b26b2bf1 1616 struct xfs_icwalk *icw)
b9baaef4
DW
1617{
1618 switch (goal) {
b9baaef4 1619 case XFS_ICWALK_BLOCKGC:
7fdff526 1620 return xfs_blockgc_igrab(ip);
f1bc5c56 1621 case XFS_ICWALK_RECLAIM:
b26b2bf1 1622 return xfs_reclaim_igrab(ip, icw);
b9baaef4
DW
1623 default:
1624 return false;
1625 }
1626}
1627
594ab00b
DW
1628/*
1629 * Process an inode. Each processing function must handle any state changes
1630 * made by the icwalk igrab function. Return -EAGAIN to skip an inode.
1631 */
f427cf5c
DW
1632static inline int
1633xfs_icwalk_process_inode(
1634 enum xfs_icwalk_goal goal,
1635 struct xfs_inode *ip,
f1bc5c56 1636 struct xfs_perag *pag,
b26b2bf1 1637 struct xfs_icwalk *icw)
f427cf5c 1638{
594ab00b 1639 int error = 0;
f427cf5c
DW
1640
1641 switch (goal) {
f427cf5c 1642 case XFS_ICWALK_BLOCKGC:
b26b2bf1 1643 error = xfs_blockgc_scan_inode(ip, icw);
f427cf5c 1644 break;
f1bc5c56
DW
1645 case XFS_ICWALK_RECLAIM:
1646 xfs_reclaim_inode(ip, pag);
1647 break;
f427cf5c 1648 }
f427cf5c
DW
1649 return error;
1650}
1651
df600197 1652/*
f427cf5c
DW
1653 * For a given per-AG structure @pag and a goal, grab qualifying inodes and
1654 * process them in some manner.
df600197
DW
1655 */
1656static int
c1115c0c 1657xfs_icwalk_ag(
df600197 1658 struct xfs_perag *pag,
f427cf5c 1659 enum xfs_icwalk_goal goal,
b26b2bf1 1660 struct xfs_icwalk *icw)
df600197
DW
1661{
1662 struct xfs_mount *mp = pag->pag_mount;
1663 uint32_t first_index;
1664 int last_error = 0;
1665 int skipped;
1666 bool done;
1667 int nr_found;
1668
1669restart:
1670 done = false;
1671 skipped = 0;
f1bc5c56
DW
1672 if (goal == XFS_ICWALK_RECLAIM)
1673 first_index = READ_ONCE(pag->pag_ici_reclaim_cursor);
1674 else
1675 first_index = 0;
df600197
DW
1676 nr_found = 0;
1677 do {
1678 struct xfs_inode *batch[XFS_LOOKUP_BATCH];
c809d7e9 1679 unsigned int tag = xfs_icwalk_tag(goal);
df600197
DW
1680 int error = 0;
1681 int i;
1682
1683 rcu_read_lock();
1684
c809d7e9 1685 if (tag == XFS_ICWALK_NULL_TAG)
df600197
DW
1686 nr_found = radix_tree_gang_lookup(&pag->pag_ici_root,
1687 (void **)batch, first_index,
1688 XFS_LOOKUP_BATCH);
1689 else
1690 nr_found = radix_tree_gang_lookup_tag(
1691 &pag->pag_ici_root,
1692 (void **) batch, first_index,
1693 XFS_LOOKUP_BATCH, tag);
1694
1695 if (!nr_found) {
f1bc5c56 1696 done = true;
df600197
DW
1697 rcu_read_unlock();
1698 break;
1699 }
1700
1701 /*
1702 * Grab the inodes before we drop the lock. if we found
1703 * nothing, nr == 0 and the loop will be skipped.
1704 */
1705 for (i = 0; i < nr_found; i++) {
1706 struct xfs_inode *ip = batch[i];
1707
b26b2bf1 1708 if (done || !xfs_icwalk_igrab(goal, ip, icw))
df600197
DW
1709 batch[i] = NULL;
1710
1711 /*
1712 * Update the index for the next lookup. Catch
1713 * overflows into the next AG range which can occur if
1714 * we have inodes in the last block of the AG and we
1715 * are currently pointing to the last inode.
1716 *
1717 * Because we may see inodes that are from the wrong AG
1718 * due to RCU freeing and reallocation, only update the
1719 * index if it lies in this AG. It was a race that lead
1720 * us to see this inode, so another lookup from the
1721 * same index will not find it again.
1722 */
1723 if (XFS_INO_TO_AGNO(mp, ip->i_ino) != pag->pag_agno)
1724 continue;
1725 first_index = XFS_INO_TO_AGINO(mp, ip->i_ino + 1);
1726 if (first_index < XFS_INO_TO_AGINO(mp, ip->i_ino))
1727 done = true;
1728 }
1729
1730 /* unlock now we've grabbed the inodes. */
1731 rcu_read_unlock();
1732
1733 for (i = 0; i < nr_found; i++) {
1734 if (!batch[i])
1735 continue;
f1bc5c56 1736 error = xfs_icwalk_process_inode(goal, batch[i], pag,
b26b2bf1 1737 icw);
df600197
DW
1738 if (error == -EAGAIN) {
1739 skipped++;
1740 continue;
1741 }
1742 if (error && last_error != -EFSCORRUPTED)
1743 last_error = error;
1744 }
1745
1746 /* bail out if the filesystem is corrupted. */
1747 if (error == -EFSCORRUPTED)
1748 break;
1749
1750 cond_resched();
1751
b26b2bf1
DW
1752 if (icw && (icw->icw_flags & XFS_ICWALK_FLAG_SCAN_LIMIT)) {
1753 icw->icw_scan_limit -= XFS_LOOKUP_BATCH;
1754 if (icw->icw_scan_limit <= 0)
f1bc5c56
DW
1755 break;
1756 }
df600197
DW
1757 } while (nr_found && !done);
1758
f1bc5c56
DW
1759 if (goal == XFS_ICWALK_RECLAIM) {
1760 if (done)
1761 first_index = 0;
1762 WRITE_ONCE(pag->pag_ici_reclaim_cursor, first_index);
1763 }
1764
df600197
DW
1765 if (skipped) {
1766 delay(1);
1767 goto restart;
1768 }
1769 return last_error;
1770}
1771
1772/* Fetch the next (possibly tagged) per-AG structure. */
1773static inline struct xfs_perag *
c1115c0c 1774xfs_icwalk_get_perag(
df600197
DW
1775 struct xfs_mount *mp,
1776 xfs_agnumber_t agno,
c809d7e9 1777 enum xfs_icwalk_goal goal)
df600197 1778{
c809d7e9
DW
1779 unsigned int tag = xfs_icwalk_tag(goal);
1780
1781 if (tag == XFS_ICWALK_NULL_TAG)
df600197
DW
1782 return xfs_perag_get(mp, agno);
1783 return xfs_perag_get_tag(mp, agno, tag);
1784}
1785
f427cf5c 1786/* Walk all incore inodes to achieve a given goal. */
df600197 1787static int
c1115c0c 1788xfs_icwalk(
df600197 1789 struct xfs_mount *mp,
f427cf5c 1790 enum xfs_icwalk_goal goal,
b26b2bf1 1791 struct xfs_icwalk *icw)
df600197
DW
1792{
1793 struct xfs_perag *pag;
1794 int error = 0;
1795 int last_error = 0;
1796 xfs_agnumber_t agno = 0;
1797
c809d7e9 1798 while ((pag = xfs_icwalk_get_perag(mp, agno, goal))) {
df600197 1799 agno = pag->pag_agno + 1;
b26b2bf1 1800 error = xfs_icwalk_ag(pag, goal, icw);
df600197
DW
1801 xfs_perag_put(pag);
1802 if (error) {
1803 last_error = error;
1804 if (error == -EFSCORRUPTED)
1805 break;
1806 }
1807 }
1808 return last_error;
2d53f66b 1809 BUILD_BUG_ON(XFS_ICWALK_PRIVATE_FLAGS & XFS_ICWALK_FLAGS_VALID);
df600197 1810}
c6c2066d
DW
1811
1812#ifdef DEBUG
1813static void
1814xfs_check_delalloc(
1815 struct xfs_inode *ip,
1816 int whichfork)
1817{
1818 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
1819 struct xfs_bmbt_irec got;
1820 struct xfs_iext_cursor icur;
1821
1822 if (!ifp || !xfs_iext_lookup_extent(ip, ifp, 0, &icur, &got))
1823 return;
1824 do {
1825 if (isnullstartblock(got.br_startblock)) {
1826 xfs_warn(ip->i_mount,
1827 "ino %llx %s fork has delalloc extent at [0x%llx:0x%llx]",
1828 ip->i_ino,
1829 whichfork == XFS_DATA_FORK ? "data" : "cow",
1830 got.br_startoff, got.br_blockcount);
1831 }
1832 } while (xfs_iext_next_extent(ifp, &icur, &got));
1833}
1834#else
1835#define xfs_check_delalloc(ip, whichfork) do { } while (0)
1836#endif
1837
ab23a776
DC
1838/* Schedule the inode for reclaim. */
1839static void
1840xfs_inodegc_set_reclaimable(
c6c2066d
DW
1841 struct xfs_inode *ip)
1842{
1843 struct xfs_mount *mp = ip->i_mount;
1844 struct xfs_perag *pag;
c6c2066d
DW
1845
1846 if (!XFS_FORCED_SHUTDOWN(mp) && ip->i_delayed_blks) {
1847 xfs_check_delalloc(ip, XFS_DATA_FORK);
1848 xfs_check_delalloc(ip, XFS_COW_FORK);
1849 ASSERT(0);
1850 }
1851
c6c2066d
DW
1852 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
1853 spin_lock(&pag->pag_ici_lock);
1854 spin_lock(&ip->i_flags_lock);
1855
ab23a776
DC
1856 trace_xfs_inode_set_reclaimable(ip);
1857 ip->i_flags &= ~(XFS_NEED_INACTIVE | XFS_INACTIVATING);
1858 ip->i_flags |= XFS_IRECLAIMABLE;
c6c2066d
DW
1859 xfs_perag_set_inode_tag(pag, XFS_INO_TO_AGINO(mp, ip->i_ino),
1860 XFS_ICI_RECLAIM_TAG);
c6c2066d
DW
1861
1862 spin_unlock(&ip->i_flags_lock);
1863 spin_unlock(&pag->pag_ici_lock);
1864 xfs_perag_put(pag);
1865}
ab23a776
DC
1866
1867/*
1868 * Free all speculative preallocations and possibly even the inode itself.
1869 * This is the last chance to make changes to an otherwise unreferenced file
1870 * before incore reclamation happens.
1871 */
1872static void
1873xfs_inodegc_inactivate(
1874 struct xfs_inode *ip)
1875{
1876 trace_xfs_inode_inactivating(ip);
1877 xfs_inactive(ip);
1878 xfs_inodegc_set_reclaimable(ip);
1879}
1880
1881void
1882xfs_inodegc_worker(
1883 struct work_struct *work)
1884{
1885 struct xfs_inodegc *gc = container_of(work, struct xfs_inodegc,
1886 work);
1887 struct llist_node *node = llist_del_all(&gc->list);
1888 struct xfs_inode *ip, *n;
1889
1890 WRITE_ONCE(gc->items, 0);
1891
1892 if (!node)
1893 return;
1894
1895 ip = llist_entry(node, struct xfs_inode, i_gclist);
40b1de00 1896 trace_xfs_inodegc_worker(ip->i_mount, READ_ONCE(gc->shrinker_hits));
ab23a776 1897
40b1de00 1898 WRITE_ONCE(gc->shrinker_hits, 0);
ab23a776
DC
1899 llist_for_each_entry_safe(ip, n, node, i_gclist) {
1900 xfs_iflags_set(ip, XFS_INACTIVATING);
1901 xfs_inodegc_inactivate(ip);
1902 }
1903}
1904
1905/*
1906 * Force all currently queued inode inactivation work to run immediately, and
1907 * wait for the work to finish. Two pass - queue all the work first pass, wait
1908 * for it in a second pass.
1909 */
1910void
1911xfs_inodegc_flush(
1912 struct xfs_mount *mp)
1913{
1914 struct xfs_inodegc *gc;
1915 int cpu;
1916
1917 if (!xfs_is_inodegc_enabled(mp))
1918 return;
1919
1920 trace_xfs_inodegc_flush(mp, __return_address);
1921
1922 xfs_inodegc_queue_all(mp);
1923
1924 for_each_online_cpu(cpu) {
1925 gc = per_cpu_ptr(mp->m_inodegc, cpu);
1926 flush_work(&gc->work);
1927 }
1928}
1929
1930/*
1931 * Flush all the pending work and then disable the inode inactivation background
1932 * workers and wait for them to stop.
1933 */
1934void
1935xfs_inodegc_stop(
1936 struct xfs_mount *mp)
1937{
1938 struct xfs_inodegc *gc;
1939 int cpu;
1940
1941 if (!xfs_clear_inodegc_enabled(mp))
1942 return;
1943
1944 xfs_inodegc_queue_all(mp);
1945
1946 for_each_online_cpu(cpu) {
1947 gc = per_cpu_ptr(mp->m_inodegc, cpu);
1948 cancel_work_sync(&gc->work);
1949 }
1950 trace_xfs_inodegc_stop(mp, __return_address);
1951}
1952
1953/*
1954 * Enable the inode inactivation background workers and schedule deferred inode
1955 * inactivation work if there is any.
1956 */
1957void
1958xfs_inodegc_start(
1959 struct xfs_mount *mp)
1960{
1961 if (xfs_set_inodegc_enabled(mp))
1962 return;
1963
1964 trace_xfs_inodegc_start(mp, __return_address);
1965 xfs_inodegc_queue_all(mp);
1966}
1967
65f03d86
DW
1968#ifdef CONFIG_XFS_RT
1969static inline bool
1970xfs_inodegc_want_queue_rt_file(
1971 struct xfs_inode *ip)
1972{
1973 struct xfs_mount *mp = ip->i_mount;
1974 uint64_t freertx;
1975
1976 if (!XFS_IS_REALTIME_INODE(ip))
1977 return false;
1978
1979 freertx = READ_ONCE(mp->m_sb.sb_frextents);
1980 return freertx < mp->m_low_rtexts[XFS_LOWSP_5_PCNT];
1981}
1982#else
1983# define xfs_inodegc_want_queue_rt_file(ip) (false)
1984#endif /* CONFIG_XFS_RT */
1985
ab23a776
DC
1986/*
1987 * Schedule the inactivation worker when:
1988 *
1989 * - We've accumulated more than one inode cluster buffer's worth of inodes.
7d6f07d2 1990 * - There is less than 5% free space left.
108523b8 1991 * - Any of the quotas for this inode are near an enforcement limit.
ab23a776
DC
1992 */
1993static inline bool
1994xfs_inodegc_want_queue_work(
1995 struct xfs_inode *ip,
1996 unsigned int items)
1997{
1998 struct xfs_mount *mp = ip->i_mount;
1999
2000 if (items > mp->m_ino_geo.inodes_per_cluster)
2001 return true;
2002
7d6f07d2
DW
2003 if (__percpu_counter_compare(&mp->m_fdblocks,
2004 mp->m_low_space[XFS_LOWSP_5_PCNT],
2005 XFS_FDBLOCKS_BATCH) < 0)
2006 return true;
2007
65f03d86
DW
2008 if (xfs_inodegc_want_queue_rt_file(ip))
2009 return true;
2010
108523b8
DW
2011 if (xfs_inode_near_dquot_enforcement(ip, XFS_DQTYPE_USER))
2012 return true;
2013
2014 if (xfs_inode_near_dquot_enforcement(ip, XFS_DQTYPE_GROUP))
2015 return true;
2016
2017 if (xfs_inode_near_dquot_enforcement(ip, XFS_DQTYPE_PROJ))
2018 return true;
2019
ab23a776
DC
2020 return false;
2021}
2022
2023/*
2024 * Upper bound on the number of inodes in each AG that can be queued for
2025 * inactivation at any given time, to avoid monopolizing the workqueue.
2026 */
2027#define XFS_INODEGC_MAX_BACKLOG (4 * XFS_INODES_PER_CHUNK)
2028
2029/*
2030 * Make the frontend wait for inactivations when:
2031 *
40b1de00 2032 * - Memory shrinkers queued the inactivation worker and it hasn't finished.
ab23a776
DC
2033 * - The queue depth exceeds the maximum allowable percpu backlog.
2034 *
2035 * Note: If the current thread is running a transaction, we don't ever want to
2036 * wait for other transactions because that could introduce a deadlock.
2037 */
2038static inline bool
2039xfs_inodegc_want_flush_work(
2040 struct xfs_inode *ip,
40b1de00
DW
2041 unsigned int items,
2042 unsigned int shrinker_hits)
ab23a776
DC
2043{
2044 if (current->journal_info)
2045 return false;
2046
40b1de00
DW
2047 if (shrinker_hits > 0)
2048 return true;
2049
ab23a776
DC
2050 if (items > XFS_INODEGC_MAX_BACKLOG)
2051 return true;
2052
2053 return false;
2054}
2055
2056/*
2057 * Queue a background inactivation worker if there are inodes that need to be
2058 * inactivated and higher level xfs code hasn't disabled the background
2059 * workers.
2060 */
2061static void
2062xfs_inodegc_queue(
2063 struct xfs_inode *ip)
2064{
2065 struct xfs_mount *mp = ip->i_mount;
2066 struct xfs_inodegc *gc;
2067 int items;
40b1de00 2068 unsigned int shrinker_hits;
ab23a776
DC
2069
2070 trace_xfs_inode_set_need_inactive(ip);
2071 spin_lock(&ip->i_flags_lock);
2072 ip->i_flags |= XFS_NEED_INACTIVE;
2073 spin_unlock(&ip->i_flags_lock);
2074
2075 gc = get_cpu_ptr(mp->m_inodegc);
2076 llist_add(&ip->i_gclist, &gc->list);
2077 items = READ_ONCE(gc->items);
2078 WRITE_ONCE(gc->items, items + 1);
40b1de00 2079 shrinker_hits = READ_ONCE(gc->shrinker_hits);
ab23a776
DC
2080 put_cpu_ptr(gc);
2081
2082 if (!xfs_is_inodegc_enabled(mp))
2083 return;
2084
2085 if (xfs_inodegc_want_queue_work(ip, items)) {
2086 trace_xfs_inodegc_queue(mp, __return_address);
2087 queue_work(mp->m_inodegc_wq, &gc->work);
2088 }
2089
40b1de00 2090 if (xfs_inodegc_want_flush_work(ip, items, shrinker_hits)) {
ab23a776
DC
2091 trace_xfs_inodegc_throttle(mp, __return_address);
2092 flush_work(&gc->work);
2093 }
2094}
2095
2096/*
2097 * Fold the dead CPU inodegc queue into the current CPUs queue.
2098 */
2099void
2100xfs_inodegc_cpu_dead(
2101 struct xfs_mount *mp,
2102 unsigned int dead_cpu)
2103{
2104 struct xfs_inodegc *dead_gc, *gc;
2105 struct llist_node *first, *last;
2106 unsigned int count = 0;
2107
2108 dead_gc = per_cpu_ptr(mp->m_inodegc, dead_cpu);
2109 cancel_work_sync(&dead_gc->work);
2110
2111 if (llist_empty(&dead_gc->list))
2112 return;
2113
2114 first = dead_gc->list.first;
2115 last = first;
2116 while (last->next) {
2117 last = last->next;
2118 count++;
2119 }
2120 dead_gc->list.first = NULL;
2121 dead_gc->items = 0;
2122
2123 /* Add pending work to current CPU */
2124 gc = get_cpu_ptr(mp->m_inodegc);
2125 llist_add_batch(first, last, &gc->list);
2126 count += READ_ONCE(gc->items);
2127 WRITE_ONCE(gc->items, count);
2128 put_cpu_ptr(gc);
2129
2130 if (xfs_is_inodegc_enabled(mp)) {
2131 trace_xfs_inodegc_queue(mp, __return_address);
2132 queue_work(mp->m_inodegc_wq, &gc->work);
2133 }
2134}
2135
2136/*
2137 * We set the inode flag atomically with the radix tree tag. Once we get tag
2138 * lookups on the radix tree, this inode flag can go away.
2139 *
2140 * We always use background reclaim here because even if the inode is clean, it
2141 * still may be under IO and hence we have wait for IO completion to occur
2142 * before we can reclaim the inode. The background reclaim path handles this
2143 * more efficiently than we can here, so simply let background reclaim tear down
2144 * all inodes.
2145 */
2146void
2147xfs_inode_mark_reclaimable(
2148 struct xfs_inode *ip)
2149{
2150 struct xfs_mount *mp = ip->i_mount;
2151 bool need_inactive;
2152
2153 XFS_STATS_INC(mp, vn_reclaim);
2154
2155 /*
2156 * We should never get here with any of the reclaim flags already set.
2157 */
2158 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_ALL_IRECLAIM_FLAGS));
2159
2160 need_inactive = xfs_inode_needs_inactive(ip);
2161 if (need_inactive) {
2162 xfs_inodegc_queue(ip);
2163 return;
2164 }
2165
2166 /* Going straight to reclaim, so drop the dquots. */
2167 xfs_qm_dqdetach(ip);
2168 xfs_inodegc_set_reclaimable(ip);
2169}
40b1de00
DW
2170
2171/*
2172 * Register a phony shrinker so that we can run background inodegc sooner when
2173 * there's memory pressure. Inactivation does not itself free any memory but
2174 * it does make inodes reclaimable, which eventually frees memory.
2175 *
2176 * The count function, seek value, and batch value are crafted to trigger the
2177 * scan function during the second round of scanning. Hopefully this means
2178 * that we reclaimed enough memory that initiating metadata transactions won't
2179 * make things worse.
2180 */
2181#define XFS_INODEGC_SHRINKER_COUNT (1UL << DEF_PRIORITY)
2182#define XFS_INODEGC_SHRINKER_BATCH ((XFS_INODEGC_SHRINKER_COUNT / 2) + 1)
2183
2184static unsigned long
2185xfs_inodegc_shrinker_count(
2186 struct shrinker *shrink,
2187 struct shrink_control *sc)
2188{
2189 struct xfs_mount *mp = container_of(shrink, struct xfs_mount,
2190 m_inodegc_shrinker);
2191 struct xfs_inodegc *gc;
2192 int cpu;
2193
2194 if (!xfs_is_inodegc_enabled(mp))
2195 return 0;
2196
2197 for_each_online_cpu(cpu) {
2198 gc = per_cpu_ptr(mp->m_inodegc, cpu);
2199 if (!llist_empty(&gc->list))
2200 return XFS_INODEGC_SHRINKER_COUNT;
2201 }
2202
2203 return 0;
2204}
2205
2206static unsigned long
2207xfs_inodegc_shrinker_scan(
2208 struct shrinker *shrink,
2209 struct shrink_control *sc)
2210{
2211 struct xfs_mount *mp = container_of(shrink, struct xfs_mount,
2212 m_inodegc_shrinker);
2213 struct xfs_inodegc *gc;
2214 int cpu;
2215 bool no_items = true;
2216
2217 if (!xfs_is_inodegc_enabled(mp))
2218 return SHRINK_STOP;
2219
2220 trace_xfs_inodegc_shrinker_scan(mp, sc, __return_address);
2221
2222 for_each_online_cpu(cpu) {
2223 gc = per_cpu_ptr(mp->m_inodegc, cpu);
2224 if (!llist_empty(&gc->list)) {
2225 unsigned int h = READ_ONCE(gc->shrinker_hits);
2226
2227 WRITE_ONCE(gc->shrinker_hits, h + 1);
2228 queue_work_on(cpu, mp->m_inodegc_wq, &gc->work);
2229 no_items = false;
2230 }
2231 }
2232
2233 /*
2234 * If there are no inodes to inactivate, we don't want the shrinker
2235 * to think there's deferred work to call us back about.
2236 */
2237 if (no_items)
2238 return LONG_MAX;
2239
2240 return SHRINK_STOP;
2241}
2242
2243/* Register a shrinker so we can accelerate inodegc and throttle queuing. */
2244int
2245xfs_inodegc_register_shrinker(
2246 struct xfs_mount *mp)
2247{
2248 struct shrinker *shrink = &mp->m_inodegc_shrinker;
2249
2250 shrink->count_objects = xfs_inodegc_shrinker_count;
2251 shrink->scan_objects = xfs_inodegc_shrinker_scan;
2252 shrink->seeks = 0;
2253 shrink->flags = SHRINKER_NONSLAB;
2254 shrink->batch = XFS_INODEGC_SHRINKER_BATCH;
2255
2256 return register_shrinker(shrink);
2257}