]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - fs/xfs/xfs_buf.c
xfs: refactor failed buffer resubmission into xfsaild
[mirror_ubuntu-jammy-kernel.git] / fs / xfs / xfs_buf.c
CommitLineData
0b61f8a4 1// SPDX-License-Identifier: GPL-2.0
1da177e4 2/*
f07c2250 3 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
7b718769 4 * All Rights Reserved.
1da177e4 5 */
93c189c1 6#include "xfs.h"
3fcfab16 7#include <linux/backing-dev.h>
1da177e4 8
5467b34b 9#include "xfs_shared.h"
4fb6e8ad 10#include "xfs_format.h"
239880ef 11#include "xfs_log_format.h"
7fd36c44 12#include "xfs_trans_resv.h"
239880ef 13#include "xfs_sb.h"
b7963133 14#include "xfs_mount.h"
0b1b213f 15#include "xfs_trace.h"
239880ef 16#include "xfs_log.h"
e9e899a2 17#include "xfs_errortag.h"
7561d27e 18#include "xfs_error.h"
b7963133 19
7989cb8e 20static kmem_zone_t *xfs_buf_zone;
23ea4032 21
ce8e922c 22#define xb_to_gfp(flags) \
aa5c158e 23 ((((flags) & XBF_READ_AHEAD) ? __GFP_NORETRY : GFP_NOFS) | __GFP_NOWARN)
1da177e4 24
37fd1678
DC
25/*
26 * Locking orders
27 *
28 * xfs_buf_ioacct_inc:
29 * xfs_buf_ioacct_dec:
30 * b_sema (caller holds)
31 * b_lock
32 *
33 * xfs_buf_stale:
34 * b_sema (caller holds)
35 * b_lock
36 * lru_lock
37 *
38 * xfs_buf_rele:
39 * b_lock
40 * pag_buf_lock
41 * lru_lock
42 *
43 * xfs_buftarg_wait_rele
44 * lru_lock
45 * b_lock (trylock due to inversion)
46 *
47 * xfs_buftarg_isolate
48 * lru_lock
49 * b_lock (trylock due to inversion)
50 */
1da177e4 51
73c77e2c
JB
52static inline int
53xfs_buf_is_vmapped(
54 struct xfs_buf *bp)
55{
56 /*
57 * Return true if the buffer is vmapped.
58 *
611c9946
DC
59 * b_addr is null if the buffer is not mapped, but the code is clever
60 * enough to know it doesn't have to map a single page, so the check has
61 * to be both for b_addr and bp->b_page_count > 1.
73c77e2c 62 */
611c9946 63 return bp->b_addr && bp->b_page_count > 1;
73c77e2c
JB
64}
65
66static inline int
67xfs_buf_vmap_len(
68 struct xfs_buf *bp)
69{
70 return (bp->b_page_count * PAGE_SIZE) - bp->b_offset;
71}
72
9c7504aa
BF
73/*
74 * Bump the I/O in flight count on the buftarg if we haven't yet done so for
75 * this buffer. The count is incremented once per buffer (per hold cycle)
76 * because the corresponding decrement is deferred to buffer release. Buffers
77 * can undergo I/O multiple times in a hold-release cycle and per buffer I/O
78 * tracking adds unnecessary overhead. This is used for sychronization purposes
79 * with unmount (see xfs_wait_buftarg()), so all we really need is a count of
80 * in-flight buffers.
81 *
82 * Buffers that are never released (e.g., superblock, iclog buffers) must set
83 * the XBF_NO_IOACCT flag before I/O submission. Otherwise, the buftarg count
84 * never reaches zero and unmount hangs indefinitely.
85 */
86static inline void
87xfs_buf_ioacct_inc(
88 struct xfs_buf *bp)
89{
63db7c81 90 if (bp->b_flags & XBF_NO_IOACCT)
9c7504aa
BF
91 return;
92
93 ASSERT(bp->b_flags & XBF_ASYNC);
63db7c81
BF
94 spin_lock(&bp->b_lock);
95 if (!(bp->b_state & XFS_BSTATE_IN_FLIGHT)) {
96 bp->b_state |= XFS_BSTATE_IN_FLIGHT;
97 percpu_counter_inc(&bp->b_target->bt_io_count);
98 }
99 spin_unlock(&bp->b_lock);
9c7504aa
BF
100}
101
102/*
103 * Clear the in-flight state on a buffer about to be released to the LRU or
104 * freed and unaccount from the buftarg.
105 */
106static inline void
63db7c81 107__xfs_buf_ioacct_dec(
9c7504aa
BF
108 struct xfs_buf *bp)
109{
95989c46 110 lockdep_assert_held(&bp->b_lock);
9c7504aa 111
63db7c81
BF
112 if (bp->b_state & XFS_BSTATE_IN_FLIGHT) {
113 bp->b_state &= ~XFS_BSTATE_IN_FLIGHT;
114 percpu_counter_dec(&bp->b_target->bt_io_count);
115 }
116}
117
118static inline void
119xfs_buf_ioacct_dec(
120 struct xfs_buf *bp)
121{
122 spin_lock(&bp->b_lock);
123 __xfs_buf_ioacct_dec(bp);
124 spin_unlock(&bp->b_lock);
9c7504aa
BF
125}
126
430cbeb8
DC
127/*
128 * When we mark a buffer stale, we remove the buffer from the LRU and clear the
129 * b_lru_ref count so that the buffer is freed immediately when the buffer
130 * reference count falls to zero. If the buffer is already on the LRU, we need
131 * to remove the reference that LRU holds on the buffer.
132 *
133 * This prevents build-up of stale buffers on the LRU.
134 */
135void
136xfs_buf_stale(
137 struct xfs_buf *bp)
138{
43ff2122
CH
139 ASSERT(xfs_buf_islocked(bp));
140
430cbeb8 141 bp->b_flags |= XBF_STALE;
43ff2122
CH
142
143 /*
144 * Clear the delwri status so that a delwri queue walker will not
145 * flush this buffer to disk now that it is stale. The delwri queue has
146 * a reference to the buffer, so this is safe to do.
147 */
148 bp->b_flags &= ~_XBF_DELWRI_Q;
149
9c7504aa
BF
150 /*
151 * Once the buffer is marked stale and unlocked, a subsequent lookup
152 * could reset b_flags. There is no guarantee that the buffer is
153 * unaccounted (released to LRU) before that occurs. Drop in-flight
154 * status now to preserve accounting consistency.
155 */
a4082357 156 spin_lock(&bp->b_lock);
63db7c81
BF
157 __xfs_buf_ioacct_dec(bp);
158
a4082357
DC
159 atomic_set(&bp->b_lru_ref, 0);
160 if (!(bp->b_state & XFS_BSTATE_DISPOSE) &&
e80dfa19
DC
161 (list_lru_del(&bp->b_target->bt_lru, &bp->b_lru)))
162 atomic_dec(&bp->b_hold);
163
430cbeb8 164 ASSERT(atomic_read(&bp->b_hold) >= 1);
a4082357 165 spin_unlock(&bp->b_lock);
430cbeb8 166}
1da177e4 167
3e85c868
DC
168static int
169xfs_buf_get_maps(
170 struct xfs_buf *bp,
171 int map_count)
172{
173 ASSERT(bp->b_maps == NULL);
174 bp->b_map_count = map_count;
175
176 if (map_count == 1) {
f4b42421 177 bp->b_maps = &bp->__b_map;
3e85c868
DC
178 return 0;
179 }
180
181 bp->b_maps = kmem_zalloc(map_count * sizeof(struct xfs_buf_map),
182 KM_NOFS);
183 if (!bp->b_maps)
2451337d 184 return -ENOMEM;
3e85c868
DC
185 return 0;
186}
187
188/*
189 * Frees b_pages if it was allocated.
190 */
191static void
192xfs_buf_free_maps(
193 struct xfs_buf *bp)
194{
f4b42421 195 if (bp->b_maps != &bp->__b_map) {
3e85c868
DC
196 kmem_free(bp->b_maps);
197 bp->b_maps = NULL;
198 }
199}
200
32dff5e5 201static int
3e85c868 202_xfs_buf_alloc(
4347b9d7 203 struct xfs_buftarg *target,
3e85c868
DC
204 struct xfs_buf_map *map,
205 int nmaps,
32dff5e5
DW
206 xfs_buf_flags_t flags,
207 struct xfs_buf **bpp)
1da177e4 208{
4347b9d7 209 struct xfs_buf *bp;
3e85c868
DC
210 int error;
211 int i;
4347b9d7 212
32dff5e5 213 *bpp = NULL;
aa5c158e 214 bp = kmem_zone_zalloc(xfs_buf_zone, KM_NOFS);
4347b9d7 215 if (unlikely(!bp))
32dff5e5 216 return -ENOMEM;
4347b9d7 217
1da177e4 218 /*
12bcb3f7
DC
219 * We don't want certain flags to appear in b_flags unless they are
220 * specifically set by later operations on the buffer.
1da177e4 221 */
611c9946 222 flags &= ~(XBF_UNMAPPED | XBF_TRYLOCK | XBF_ASYNC | XBF_READ_AHEAD);
ce8e922c 223
ce8e922c 224 atomic_set(&bp->b_hold, 1);
430cbeb8 225 atomic_set(&bp->b_lru_ref, 1);
b4dd330b 226 init_completion(&bp->b_iowait);
430cbeb8 227 INIT_LIST_HEAD(&bp->b_lru);
ce8e922c 228 INIT_LIST_HEAD(&bp->b_list);
643c8c05 229 INIT_LIST_HEAD(&bp->b_li_list);
a731cd11 230 sema_init(&bp->b_sema, 0); /* held, no waiters */
a4082357 231 spin_lock_init(&bp->b_lock);
ce8e922c 232 bp->b_target = target;
dbd329f1 233 bp->b_mount = target->bt_mount;
3e85c868 234 bp->b_flags = flags;
de1cbee4 235
1da177e4 236 /*
aa0e8833
DC
237 * Set length and io_length to the same value initially.
238 * I/O routines should use io_length, which will be the same in
1da177e4
LT
239 * most cases but may be reset (e.g. XFS recovery).
240 */
3e85c868
DC
241 error = xfs_buf_get_maps(bp, nmaps);
242 if (error) {
377bcd5f 243 kmem_cache_free(xfs_buf_zone, bp);
32dff5e5 244 return error;
3e85c868
DC
245 }
246
247 bp->b_bn = map[0].bm_bn;
248 bp->b_length = 0;
249 for (i = 0; i < nmaps; i++) {
250 bp->b_maps[i].bm_bn = map[i].bm_bn;
251 bp->b_maps[i].bm_len = map[i].bm_len;
252 bp->b_length += map[i].bm_len;
253 }
3e85c868 254
ce8e922c
NS
255 atomic_set(&bp->b_pin_count, 0);
256 init_waitqueue_head(&bp->b_waiters);
257
dbd329f1 258 XFS_STATS_INC(bp->b_mount, xb_create);
0b1b213f 259 trace_xfs_buf_init(bp, _RET_IP_);
4347b9d7 260
32dff5e5
DW
261 *bpp = bp;
262 return 0;
1da177e4
LT
263}
264
265/*
ce8e922c
NS
266 * Allocate a page array capable of holding a specified number
267 * of pages, and point the page buf at it.
1da177e4
LT
268 */
269STATIC int
ce8e922c
NS
270_xfs_buf_get_pages(
271 xfs_buf_t *bp,
87937bf8 272 int page_count)
1da177e4
LT
273{
274 /* Make sure that we have a page list */
ce8e922c 275 if (bp->b_pages == NULL) {
ce8e922c
NS
276 bp->b_page_count = page_count;
277 if (page_count <= XB_PAGES) {
278 bp->b_pages = bp->b_page_array;
1da177e4 279 } else {
ce8e922c 280 bp->b_pages = kmem_alloc(sizeof(struct page *) *
aa5c158e 281 page_count, KM_NOFS);
ce8e922c 282 if (bp->b_pages == NULL)
1da177e4
LT
283 return -ENOMEM;
284 }
ce8e922c 285 memset(bp->b_pages, 0, sizeof(struct page *) * page_count);
1da177e4
LT
286 }
287 return 0;
288}
289
290/*
ce8e922c 291 * Frees b_pages if it was allocated.
1da177e4
LT
292 */
293STATIC void
ce8e922c 294_xfs_buf_free_pages(
1da177e4
LT
295 xfs_buf_t *bp)
296{
ce8e922c 297 if (bp->b_pages != bp->b_page_array) {
f0e2d93c 298 kmem_free(bp->b_pages);
3fc98b1a 299 bp->b_pages = NULL;
1da177e4
LT
300 }
301}
302
303/*
304 * Releases the specified buffer.
305 *
306 * The modification state of any associated pages is left unchanged.
b46fe825 307 * The buffer must not be on any hash - use xfs_buf_rele instead for
1da177e4
LT
308 * hashed and refcounted buffers
309 */
25a40957 310static void
ce8e922c 311xfs_buf_free(
1da177e4
LT
312 xfs_buf_t *bp)
313{
0b1b213f 314 trace_xfs_buf_free(bp, _RET_IP_);
1da177e4 315
430cbeb8
DC
316 ASSERT(list_empty(&bp->b_lru));
317
0e6e847f 318 if (bp->b_flags & _XBF_PAGES) {
1da177e4
LT
319 uint i;
320
73c77e2c 321 if (xfs_buf_is_vmapped(bp))
8a262e57
AE
322 vm_unmap_ram(bp->b_addr - bp->b_offset,
323 bp->b_page_count);
1da177e4 324
948ecdb4
NS
325 for (i = 0; i < bp->b_page_count; i++) {
326 struct page *page = bp->b_pages[i];
327
0e6e847f 328 __free_page(page);
948ecdb4 329 }
12eba65b
DC
330 if (current->reclaim_state)
331 current->reclaim_state->reclaimed_slab +=
332 bp->b_page_count;
0e6e847f
DC
333 } else if (bp->b_flags & _XBF_KMEM)
334 kmem_free(bp->b_addr);
3fc98b1a 335 _xfs_buf_free_pages(bp);
3e85c868 336 xfs_buf_free_maps(bp);
377bcd5f 337 kmem_cache_free(xfs_buf_zone, bp);
1da177e4
LT
338}
339
340/*
0e6e847f 341 * Allocates all the pages for buffer in question and builds it's page list.
1da177e4
LT
342 */
343STATIC int
0e6e847f 344xfs_buf_allocate_memory(
1da177e4
LT
345 xfs_buf_t *bp,
346 uint flags)
347{
aa0e8833 348 size_t size;
1da177e4 349 size_t nbytes, offset;
ce8e922c 350 gfp_t gfp_mask = xb_to_gfp(flags);
1da177e4 351 unsigned short page_count, i;
795cac72 352 xfs_off_t start, end;
1da177e4 353 int error;
3219e8cf
BD
354 xfs_km_flags_t kmflag_mask = 0;
355
356 /*
357 * assure zeroed buffer for non-read cases.
358 */
359 if (!(flags & XBF_READ)) {
360 kmflag_mask |= KM_ZERO;
361 gfp_mask |= __GFP_ZERO;
362 }
1da177e4 363
0e6e847f
DC
364 /*
365 * for buffers that are contained within a single page, just allocate
366 * the memory from the heap - there's no need for the complexity of
367 * page arrays to keep allocation down to order 0.
368 */
795cac72
DC
369 size = BBTOB(bp->b_length);
370 if (size < PAGE_SIZE) {
f8f9ee47 371 int align_mask = xfs_buftarg_dma_alignment(bp->b_target);
3219e8cf
BD
372 bp->b_addr = kmem_alloc_io(size, align_mask,
373 KM_NOFS | kmflag_mask);
0e6e847f
DC
374 if (!bp->b_addr) {
375 /* low memory - use alloc_page loop instead */
376 goto use_alloc_page;
377 }
378
795cac72 379 if (((unsigned long)(bp->b_addr + size - 1) & PAGE_MASK) !=
0e6e847f
DC
380 ((unsigned long)bp->b_addr & PAGE_MASK)) {
381 /* b_addr spans two pages - use alloc_page instead */
382 kmem_free(bp->b_addr);
383 bp->b_addr = NULL;
384 goto use_alloc_page;
385 }
386 bp->b_offset = offset_in_page(bp->b_addr);
387 bp->b_pages = bp->b_page_array;
f8f9ee47 388 bp->b_pages[0] = kmem_to_page(bp->b_addr);
0e6e847f 389 bp->b_page_count = 1;
611c9946 390 bp->b_flags |= _XBF_KMEM;
0e6e847f
DC
391 return 0;
392 }
393
394use_alloc_page:
f4b42421
MT
395 start = BBTOB(bp->b_maps[0].bm_bn) >> PAGE_SHIFT;
396 end = (BBTOB(bp->b_maps[0].bm_bn + bp->b_length) + PAGE_SIZE - 1)
cbb7baab 397 >> PAGE_SHIFT;
795cac72 398 page_count = end - start;
87937bf8 399 error = _xfs_buf_get_pages(bp, page_count);
1da177e4
LT
400 if (unlikely(error))
401 return error;
1da177e4 402
ce8e922c 403 offset = bp->b_offset;
0e6e847f 404 bp->b_flags |= _XBF_PAGES;
1da177e4 405
ce8e922c 406 for (i = 0; i < bp->b_page_count; i++) {
1da177e4
LT
407 struct page *page;
408 uint retries = 0;
0e6e847f
DC
409retry:
410 page = alloc_page(gfp_mask);
1da177e4 411 if (unlikely(page == NULL)) {
ce8e922c
NS
412 if (flags & XBF_READ_AHEAD) {
413 bp->b_page_count = i;
2451337d 414 error = -ENOMEM;
0e6e847f 415 goto out_free_pages;
1da177e4
LT
416 }
417
418 /*
419 * This could deadlock.
420 *
421 * But until all the XFS lowlevel code is revamped to
422 * handle buffer allocation failures we can't do much.
423 */
424 if (!(++retries % 100))
4f10700a 425 xfs_err(NULL,
5bf97b1c
TH
426 "%s(%u) possible memory allocation deadlock in %s (mode:0x%x)",
427 current->comm, current->pid,
34a622b2 428 __func__, gfp_mask);
1da177e4 429
dbd329f1 430 XFS_STATS_INC(bp->b_mount, xb_page_retries);
8aa7e847 431 congestion_wait(BLK_RW_ASYNC, HZ/50);
1da177e4
LT
432 goto retry;
433 }
434
dbd329f1 435 XFS_STATS_INC(bp->b_mount, xb_page_found);
1da177e4 436
0e6e847f 437 nbytes = min_t(size_t, size, PAGE_SIZE - offset);
1da177e4 438 size -= nbytes;
ce8e922c 439 bp->b_pages[i] = page;
1da177e4
LT
440 offset = 0;
441 }
0e6e847f 442 return 0;
1da177e4 443
0e6e847f
DC
444out_free_pages:
445 for (i = 0; i < bp->b_page_count; i++)
446 __free_page(bp->b_pages[i]);
2aa6ba7b 447 bp->b_flags &= ~_XBF_PAGES;
1da177e4
LT
448 return error;
449}
450
451/*
25985edc 452 * Map buffer into kernel address-space if necessary.
1da177e4
LT
453 */
454STATIC int
ce8e922c 455_xfs_buf_map_pages(
1da177e4
LT
456 xfs_buf_t *bp,
457 uint flags)
458{
0e6e847f 459 ASSERT(bp->b_flags & _XBF_PAGES);
ce8e922c 460 if (bp->b_page_count == 1) {
0e6e847f 461 /* A single page buffer is always mappable */
ce8e922c 462 bp->b_addr = page_address(bp->b_pages[0]) + bp->b_offset;
611c9946
DC
463 } else if (flags & XBF_UNMAPPED) {
464 bp->b_addr = NULL;
465 } else {
a19fb380 466 int retried = 0;
9ba1fb2c 467 unsigned nofs_flag;
ae687e58
DC
468
469 /*
cf085a1b 470 * vm_map_ram() will allocate auxiliary structures (e.g.
ae687e58
DC
471 * pagetables) with GFP_KERNEL, yet we are likely to be under
472 * GFP_NOFS context here. Hence we need to tell memory reclaim
9ba1fb2c 473 * that we are in such a context via PF_MEMALLOC_NOFS to prevent
ae687e58
DC
474 * memory reclaim re-entering the filesystem here and
475 * potentially deadlocking.
476 */
9ba1fb2c 477 nofs_flag = memalloc_nofs_save();
a19fb380
DC
478 do {
479 bp->b_addr = vm_map_ram(bp->b_pages, bp->b_page_count,
480 -1, PAGE_KERNEL);
481 if (bp->b_addr)
482 break;
483 vm_unmap_aliases();
484 } while (retried++ <= 1);
9ba1fb2c 485 memalloc_nofs_restore(nofs_flag);
a19fb380
DC
486
487 if (!bp->b_addr)
1da177e4 488 return -ENOMEM;
ce8e922c 489 bp->b_addr += bp->b_offset;
1da177e4
LT
490 }
491
492 return 0;
493}
494
495/*
496 * Finding and Reading Buffers
497 */
6031e73a
LS
498static int
499_xfs_buf_obj_cmp(
500 struct rhashtable_compare_arg *arg,
501 const void *obj)
502{
503 const struct xfs_buf_map *map = arg->key;
504 const struct xfs_buf *bp = obj;
505
506 /*
507 * The key hashing in the lookup path depends on the key being the
508 * first element of the compare_arg, make sure to assert this.
509 */
510 BUILD_BUG_ON(offsetof(struct xfs_buf_map, bm_bn) != 0);
511
512 if (bp->b_bn != map->bm_bn)
513 return 1;
514
515 if (unlikely(bp->b_length != map->bm_len)) {
516 /*
517 * found a block number match. If the range doesn't
518 * match, the only way this is allowed is if the buffer
519 * in the cache is stale and the transaction that made
520 * it stale has not yet committed. i.e. we are
521 * reallocating a busy extent. Skip this buffer and
522 * continue searching for an exact match.
523 */
524 ASSERT(bp->b_flags & XBF_STALE);
525 return 1;
526 }
527 return 0;
528}
529
530static const struct rhashtable_params xfs_buf_hash_params = {
531 .min_size = 32, /* empty AGs have minimal footprint */
532 .nelem_hint = 16,
533 .key_len = sizeof(xfs_daddr_t),
534 .key_offset = offsetof(struct xfs_buf, b_bn),
535 .head_offset = offsetof(struct xfs_buf, b_rhash_head),
536 .automatic_shrinking = true,
537 .obj_cmpfn = _xfs_buf_obj_cmp,
538};
539
540int
541xfs_buf_hash_init(
542 struct xfs_perag *pag)
543{
544 spin_lock_init(&pag->pag_buf_lock);
545 return rhashtable_init(&pag->pag_buf_hash, &xfs_buf_hash_params);
546}
547
548void
549xfs_buf_hash_destroy(
550 struct xfs_perag *pag)
551{
552 rhashtable_destroy(&pag->pag_buf_hash);
553}
1da177e4
LT
554
555/*
b027d4c9
DC
556 * Look up a buffer in the buffer cache and return it referenced and locked
557 * in @found_bp.
558 *
559 * If @new_bp is supplied and we have a lookup miss, insert @new_bp into the
560 * cache.
561 *
562 * If XBF_TRYLOCK is set in @flags, only try to lock the buffer and return
563 * -EAGAIN if we fail to lock it.
564 *
565 * Return values are:
566 * -EFSCORRUPTED if have been supplied with an invalid address
567 * -EAGAIN on trylock failure
568 * -ENOENT if we fail to find a match and @new_bp was NULL
569 * 0, with @found_bp:
570 * - @new_bp if we inserted it into the cache
571 * - the buffer we found and locked.
1da177e4 572 */
b027d4c9
DC
573static int
574xfs_buf_find(
e70b73f8 575 struct xfs_buftarg *btp,
3e85c868
DC
576 struct xfs_buf_map *map,
577 int nmaps,
ce8e922c 578 xfs_buf_flags_t flags,
b027d4c9
DC
579 struct xfs_buf *new_bp,
580 struct xfs_buf **found_bp)
1da177e4 581{
74f75a0c 582 struct xfs_perag *pag;
74f75a0c 583 xfs_buf_t *bp;
6031e73a 584 struct xfs_buf_map cmap = { .bm_bn = map[0].bm_bn };
10616b80 585 xfs_daddr_t eofs;
3e85c868 586 int i;
1da177e4 587
b027d4c9
DC
588 *found_bp = NULL;
589
3e85c868 590 for (i = 0; i < nmaps; i++)
6031e73a 591 cmap.bm_len += map[i].bm_len;
1da177e4
LT
592
593 /* Check for IOs smaller than the sector size / not sector aligned */
6031e73a
LS
594 ASSERT(!(BBTOB(cmap.bm_len) < btp->bt_meta_sectorsize));
595 ASSERT(!(BBTOB(cmap.bm_bn) & (xfs_off_t)btp->bt_meta_sectormask));
1da177e4 596
10616b80
DC
597 /*
598 * Corrupted block numbers can get through to here, unfortunately, so we
599 * have to check that the buffer falls within the filesystem bounds.
600 */
601 eofs = XFS_FSB_TO_BB(btp->bt_mount, btp->bt_mount->m_sb.sb_dblocks);
6031e73a 602 if (cmap.bm_bn < 0 || cmap.bm_bn >= eofs) {
10616b80 603 xfs_alert(btp->bt_mount,
c219b015 604 "%s: daddr 0x%llx out of range, EOFS 0x%llx",
6031e73a 605 __func__, cmap.bm_bn, eofs);
7bc0dc27 606 WARN_ON(1);
b027d4c9 607 return -EFSCORRUPTED;
10616b80
DC
608 }
609
74f75a0c 610 pag = xfs_perag_get(btp->bt_mount,
6031e73a 611 xfs_daddr_to_agno(btp->bt_mount, cmap.bm_bn));
74f75a0c 612
74f75a0c 613 spin_lock(&pag->pag_buf_lock);
6031e73a
LS
614 bp = rhashtable_lookup_fast(&pag->pag_buf_hash, &cmap,
615 xfs_buf_hash_params);
616 if (bp) {
617 atomic_inc(&bp->b_hold);
618 goto found;
1da177e4
LT
619 }
620
621 /* No match found */
b027d4c9 622 if (!new_bp) {
ff6d6af2 623 XFS_STATS_INC(btp->bt_mount, xb_miss_locked);
74f75a0c
DC
624 spin_unlock(&pag->pag_buf_lock);
625 xfs_perag_put(pag);
b027d4c9 626 return -ENOENT;
1da177e4 627 }
b027d4c9
DC
628
629 /* the buffer keeps the perag reference until it is freed */
630 new_bp->b_pag = pag;
631 rhashtable_insert_fast(&pag->pag_buf_hash, &new_bp->b_rhash_head,
632 xfs_buf_hash_params);
633 spin_unlock(&pag->pag_buf_lock);
634 *found_bp = new_bp;
635 return 0;
1da177e4
LT
636
637found:
74f75a0c
DC
638 spin_unlock(&pag->pag_buf_lock);
639 xfs_perag_put(pag);
1da177e4 640
0c842ad4
CH
641 if (!xfs_buf_trylock(bp)) {
642 if (flags & XBF_TRYLOCK) {
ce8e922c 643 xfs_buf_rele(bp);
ff6d6af2 644 XFS_STATS_INC(btp->bt_mount, xb_busy_locked);
b027d4c9 645 return -EAGAIN;
1da177e4 646 }
0c842ad4 647 xfs_buf_lock(bp);
ff6d6af2 648 XFS_STATS_INC(btp->bt_mount, xb_get_locked_waited);
1da177e4
LT
649 }
650
0e6e847f
DC
651 /*
652 * if the buffer is stale, clear all the external state associated with
653 * it. We need to keep flags such as how we allocated the buffer memory
654 * intact here.
655 */
ce8e922c
NS
656 if (bp->b_flags & XBF_STALE) {
657 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
cfb02852 658 ASSERT(bp->b_iodone == NULL);
611c9946 659 bp->b_flags &= _XBF_KMEM | _XBF_PAGES;
1813dd64 660 bp->b_ops = NULL;
2f926587 661 }
0b1b213f
CH
662
663 trace_xfs_buf_find(bp, flags, _RET_IP_);
ff6d6af2 664 XFS_STATS_INC(btp->bt_mount, xb_get_locked);
b027d4c9
DC
665 *found_bp = bp;
666 return 0;
1da177e4
LT
667}
668
8925a3dc
DC
669struct xfs_buf *
670xfs_buf_incore(
671 struct xfs_buftarg *target,
672 xfs_daddr_t blkno,
673 size_t numblks,
674 xfs_buf_flags_t flags)
675{
b027d4c9
DC
676 struct xfs_buf *bp;
677 int error;
8925a3dc 678 DEFINE_SINGLE_BUF_MAP(map, blkno, numblks);
b027d4c9
DC
679
680 error = xfs_buf_find(target, &map, 1, flags, NULL, &bp);
681 if (error)
682 return NULL;
683 return bp;
8925a3dc
DC
684}
685
1da177e4 686/*
3815832a
DC
687 * Assembles a buffer covering the specified range. The code is optimised for
688 * cache hits, as metadata intensive workloads will see 3 orders of magnitude
689 * more hits than misses.
1da177e4 690 */
3848b5f6 691int
6dde2707
DC
692xfs_buf_get_map(
693 struct xfs_buftarg *target,
694 struct xfs_buf_map *map,
695 int nmaps,
3848b5f6
DW
696 xfs_buf_flags_t flags,
697 struct xfs_buf **bpp)
1da177e4 698{
3815832a
DC
699 struct xfs_buf *bp;
700 struct xfs_buf *new_bp;
0e6e847f 701 int error = 0;
1da177e4 702
3848b5f6 703 *bpp = NULL;
b027d4c9 704 error = xfs_buf_find(target, map, nmaps, flags, NULL, &bp);
3848b5f6 705 if (!error)
3815832a 706 goto found;
3848b5f6
DW
707 if (error != -ENOENT)
708 return error;
3815832a 709
32dff5e5
DW
710 error = _xfs_buf_alloc(target, map, nmaps, flags, &new_bp);
711 if (error)
3848b5f6 712 return error;
1da177e4 713
fe2429b0
DC
714 error = xfs_buf_allocate_memory(new_bp, flags);
715 if (error) {
3e85c868 716 xfs_buf_free(new_bp);
3848b5f6 717 return error;
fe2429b0
DC
718 }
719
b027d4c9
DC
720 error = xfs_buf_find(target, map, nmaps, flags, new_bp, &bp);
721 if (error) {
fe2429b0 722 xfs_buf_free(new_bp);
3848b5f6 723 return error;
3815832a
DC
724 }
725
fe2429b0
DC
726 if (bp != new_bp)
727 xfs_buf_free(new_bp);
1da177e4 728
3815832a 729found:
611c9946 730 if (!bp->b_addr) {
ce8e922c 731 error = _xfs_buf_map_pages(bp, flags);
1da177e4 732 if (unlikely(error)) {
93baa55a
DW
733 xfs_warn_ratelimited(target->bt_mount,
734 "%s: failed to map %u pages", __func__,
735 bp->b_page_count);
a8acad70 736 xfs_buf_relse(bp);
3848b5f6 737 return error;
1da177e4
LT
738 }
739 }
740
b79f4a1c
DC
741 /*
742 * Clear b_error if this is a lookup from a caller that doesn't expect
743 * valid data to be found in the buffer.
744 */
745 if (!(flags & XBF_READ))
746 xfs_buf_ioerror(bp, 0);
747
ff6d6af2 748 XFS_STATS_INC(target->bt_mount, xb_get);
0b1b213f 749 trace_xfs_buf_get(bp, flags, _RET_IP_);
3848b5f6
DW
750 *bpp = bp;
751 return 0;
1da177e4
LT
752}
753
5d765b97
CH
754STATIC int
755_xfs_buf_read(
756 xfs_buf_t *bp,
757 xfs_buf_flags_t flags)
758{
43ff2122 759 ASSERT(!(flags & XBF_WRITE));
f4b42421 760 ASSERT(bp->b_maps[0].bm_bn != XFS_BUF_DADDR_NULL);
5d765b97 761
43ff2122 762 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_READ_AHEAD);
1d5ae5df 763 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | XBF_READ_AHEAD);
5d765b97 764
6af88cda 765 return xfs_buf_submit(bp);
5d765b97
CH
766}
767
1aff5696 768/*
75d02303 769 * Reverify a buffer found in cache without an attached ->b_ops.
add46b3b 770 *
75d02303
BF
771 * If the caller passed an ops structure and the buffer doesn't have ops
772 * assigned, set the ops and use it to verify the contents. If verification
773 * fails, clear XBF_DONE. We assume the buffer has no recorded errors and is
774 * already in XBF_DONE state on entry.
add46b3b 775 *
75d02303
BF
776 * Under normal operations, every in-core buffer is verified on read I/O
777 * completion. There are two scenarios that can lead to in-core buffers without
778 * an assigned ->b_ops. The first is during log recovery of buffers on a V4
779 * filesystem, though these buffers are purged at the end of recovery. The
780 * other is online repair, which intentionally reads with a NULL buffer ops to
781 * run several verifiers across an in-core buffer in order to establish buffer
782 * type. If repair can't establish that, the buffer will be left in memory
783 * with NULL buffer ops.
1aff5696
DW
784 */
785int
75d02303 786xfs_buf_reverify(
1aff5696
DW
787 struct xfs_buf *bp,
788 const struct xfs_buf_ops *ops)
789{
790 ASSERT(bp->b_flags & XBF_DONE);
791 ASSERT(bp->b_error == 0);
792
793 if (!ops || bp->b_ops)
794 return 0;
795
796 bp->b_ops = ops;
797 bp->b_ops->verify_read(bp);
798 if (bp->b_error)
799 bp->b_flags &= ~XBF_DONE;
800 return bp->b_error;
801}
802
4ed8e27b 803int
6dde2707
DC
804xfs_buf_read_map(
805 struct xfs_buftarg *target,
806 struct xfs_buf_map *map,
807 int nmaps,
c3f8fc73 808 xfs_buf_flags_t flags,
4ed8e27b 809 struct xfs_buf **bpp,
cdbcf82b
DW
810 const struct xfs_buf_ops *ops,
811 xfs_failaddr_t fa)
1da177e4 812{
6dde2707 813 struct xfs_buf *bp;
3848b5f6 814 int error;
ce8e922c
NS
815
816 flags |= XBF_READ;
4ed8e27b 817 *bpp = NULL;
ce8e922c 818
3848b5f6
DW
819 error = xfs_buf_get_map(target, map, nmaps, flags, &bp);
820 if (error)
4ed8e27b 821 return error;
0b1b213f 822
1aff5696
DW
823 trace_xfs_buf_read(bp, flags, _RET_IP_);
824
825 if (!(bp->b_flags & XBF_DONE)) {
4ed8e27b 826 /* Initiate the buffer read and wait. */
1aff5696
DW
827 XFS_STATS_INC(target->bt_mount, xb_get_read);
828 bp->b_ops = ops;
4ed8e27b
DW
829 error = _xfs_buf_read(bp, flags);
830
831 /* Readahead iodone already dropped the buffer, so exit. */
832 if (flags & XBF_ASYNC)
833 return 0;
834 } else {
835 /* Buffer already read; all we need to do is check it. */
836 error = xfs_buf_reverify(bp, ops);
837
838 /* Readahead already finished; drop the buffer and exit. */
839 if (flags & XBF_ASYNC) {
840 xfs_buf_relse(bp);
841 return 0;
842 }
843
844 /* We do not want read in the flags */
845 bp->b_flags &= ~XBF_READ;
846 ASSERT(bp->b_ops != NULL || ops == NULL);
1aff5696
DW
847 }
848
4ed8e27b
DW
849 /*
850 * If we've had a read error, then the contents of the buffer are
851 * invalid and should not be used. To ensure that a followup read tries
852 * to pull the buffer from disk again, we clear the XBF_DONE flag and
853 * mark the buffer stale. This ensures that anyone who has a current
854 * reference to the buffer will interpret it's contents correctly and
855 * future cache lookups will also treat it as an empty, uninitialised
856 * buffer.
857 */
858 if (error) {
859 if (!XFS_FORCED_SHUTDOWN(target->bt_mount))
cdbcf82b 860 xfs_buf_ioerror_alert(bp, fa);
1aff5696 861
4ed8e27b
DW
862 bp->b_flags &= ~XBF_DONE;
863 xfs_buf_stale(bp);
1aff5696 864 xfs_buf_relse(bp);
4ed8e27b
DW
865
866 /* bad CRC means corrupted metadata */
867 if (error == -EFSBADCRC)
868 error = -EFSCORRUPTED;
869 return error;
1da177e4
LT
870 }
871
4ed8e27b
DW
872 *bpp = bp;
873 return 0;
1da177e4
LT
874}
875
1da177e4 876/*
ce8e922c
NS
877 * If we are not low on memory then do the readahead in a deadlock
878 * safe manner.
1da177e4
LT
879 */
880void
6dde2707
DC
881xfs_buf_readahead_map(
882 struct xfs_buftarg *target,
883 struct xfs_buf_map *map,
c3f8fc73 884 int nmaps,
1813dd64 885 const struct xfs_buf_ops *ops)
1da177e4 886{
4ed8e27b
DW
887 struct xfs_buf *bp;
888
efa7c9f9 889 if (bdi_read_congested(target->bt_bdev->bd_bdi))
1da177e4
LT
890 return;
891
6dde2707 892 xfs_buf_read_map(target, map, nmaps,
cdbcf82b
DW
893 XBF_TRYLOCK | XBF_ASYNC | XBF_READ_AHEAD, &bp, ops,
894 __this_address);
1da177e4
LT
895}
896
5adc94c2
DC
897/*
898 * Read an uncached buffer from disk. Allocates and returns a locked
899 * buffer containing the disk contents or nothing.
900 */
ba372674 901int
5adc94c2 902xfs_buf_read_uncached(
5adc94c2
DC
903 struct xfs_buftarg *target,
904 xfs_daddr_t daddr,
e70b73f8 905 size_t numblks,
c3f8fc73 906 int flags,
ba372674 907 struct xfs_buf **bpp,
1813dd64 908 const struct xfs_buf_ops *ops)
5adc94c2 909{
eab4e633 910 struct xfs_buf *bp;
2842b6db 911 int error;
5adc94c2 912
ba372674
DC
913 *bpp = NULL;
914
2842b6db
DW
915 error = xfs_buf_get_uncached(target, numblks, flags, &bp);
916 if (error)
917 return error;
5adc94c2
DC
918
919 /* set up the buffer for a read IO */
3e85c868 920 ASSERT(bp->b_map_count == 1);
ba372674 921 bp->b_bn = XFS_BUF_DADDR_NULL; /* always null for uncached buffers */
3e85c868 922 bp->b_maps[0].bm_bn = daddr;
cbb7baab 923 bp->b_flags |= XBF_READ;
1813dd64 924 bp->b_ops = ops;
5adc94c2 925
6af88cda 926 xfs_buf_submit(bp);
ba372674 927 if (bp->b_error) {
2842b6db 928 error = bp->b_error;
83a0adc3 929 xfs_buf_relse(bp);
ba372674 930 return error;
83a0adc3 931 }
ba372674
DC
932
933 *bpp = bp;
934 return 0;
1da177e4
LT
935}
936
2842b6db 937int
686865f7
DC
938xfs_buf_get_uncached(
939 struct xfs_buftarg *target,
e70b73f8 940 size_t numblks,
2842b6db
DW
941 int flags,
942 struct xfs_buf **bpp)
1da177e4 943{
e70b73f8 944 unsigned long page_count;
1fa40b01 945 int error, i;
3e85c868
DC
946 struct xfs_buf *bp;
947 DEFINE_SINGLE_BUF_MAP(map, XFS_BUF_DADDR_NULL, numblks);
1da177e4 948
2842b6db
DW
949 *bpp = NULL;
950
c891c30a 951 /* flags might contain irrelevant bits, pass only what we care about */
32dff5e5
DW
952 error = _xfs_buf_alloc(target, &map, 1, flags & XBF_NO_IOACCT, &bp);
953 if (error)
1da177e4 954 goto fail;
1da177e4 955
e70b73f8 956 page_count = PAGE_ALIGN(numblks << BBSHIFT) >> PAGE_SHIFT;
87937bf8 957 error = _xfs_buf_get_pages(bp, page_count);
1fa40b01 958 if (error)
1da177e4
LT
959 goto fail_free_buf;
960
1fa40b01 961 for (i = 0; i < page_count; i++) {
686865f7 962 bp->b_pages[i] = alloc_page(xb_to_gfp(flags));
2842b6db
DW
963 if (!bp->b_pages[i]) {
964 error = -ENOMEM;
1fa40b01 965 goto fail_free_mem;
2842b6db 966 }
1da177e4 967 }
1fa40b01 968 bp->b_flags |= _XBF_PAGES;
1da177e4 969
611c9946 970 error = _xfs_buf_map_pages(bp, 0);
1fa40b01 971 if (unlikely(error)) {
4f10700a 972 xfs_warn(target->bt_mount,
08e96e1a 973 "%s: failed to map pages", __func__);
1da177e4 974 goto fail_free_mem;
1fa40b01 975 }
1da177e4 976
686865f7 977 trace_xfs_buf_get_uncached(bp, _RET_IP_);
2842b6db
DW
978 *bpp = bp;
979 return 0;
1fa40b01 980
1da177e4 981 fail_free_mem:
1fa40b01
CH
982 while (--i >= 0)
983 __free_page(bp->b_pages[i]);
ca165b88 984 _xfs_buf_free_pages(bp);
1da177e4 985 fail_free_buf:
3e85c868 986 xfs_buf_free_maps(bp);
377bcd5f 987 kmem_cache_free(xfs_buf_zone, bp);
1da177e4 988 fail:
2842b6db 989 return error;
1da177e4
LT
990}
991
992/*
1da177e4
LT
993 * Increment reference count on buffer, to hold the buffer concurrently
994 * with another thread which may release (free) the buffer asynchronously.
1da177e4
LT
995 * Must hold the buffer already to call this function.
996 */
997void
ce8e922c
NS
998xfs_buf_hold(
999 xfs_buf_t *bp)
1da177e4 1000{
0b1b213f 1001 trace_xfs_buf_hold(bp, _RET_IP_);
ce8e922c 1002 atomic_inc(&bp->b_hold);
1da177e4
LT
1003}
1004
1005/*
9c7504aa
BF
1006 * Release a hold on the specified buffer. If the hold count is 1, the buffer is
1007 * placed on LRU or freed (depending on b_lru_ref).
1da177e4
LT
1008 */
1009void
ce8e922c
NS
1010xfs_buf_rele(
1011 xfs_buf_t *bp)
1da177e4 1012{
74f75a0c 1013 struct xfs_perag *pag = bp->b_pag;
9c7504aa
BF
1014 bool release;
1015 bool freebuf = false;
1da177e4 1016
0b1b213f 1017 trace_xfs_buf_rele(bp, _RET_IP_);
1da177e4 1018
74f75a0c 1019 if (!pag) {
430cbeb8 1020 ASSERT(list_empty(&bp->b_lru));
9c7504aa
BF
1021 if (atomic_dec_and_test(&bp->b_hold)) {
1022 xfs_buf_ioacct_dec(bp);
fad3aa1e 1023 xfs_buf_free(bp);
9c7504aa 1024 }
fad3aa1e
NS
1025 return;
1026 }
1027
3790689f 1028 ASSERT(atomic_read(&bp->b_hold) > 0);
a4082357 1029
37fd1678
DC
1030 /*
1031 * We grab the b_lock here first to serialise racing xfs_buf_rele()
1032 * calls. The pag_buf_lock being taken on the last reference only
1033 * serialises against racing lookups in xfs_buf_find(). IOWs, the second
1034 * to last reference we drop here is not serialised against the last
1035 * reference until we take bp->b_lock. Hence if we don't grab b_lock
1036 * first, the last "release" reference can win the race to the lock and
1037 * free the buffer before the second-to-last reference is processed,
1038 * leading to a use-after-free scenario.
1039 */
9c7504aa 1040 spin_lock(&bp->b_lock);
37fd1678 1041 release = atomic_dec_and_lock(&bp->b_hold, &pag->pag_buf_lock);
9c7504aa
BF
1042 if (!release) {
1043 /*
1044 * Drop the in-flight state if the buffer is already on the LRU
1045 * and it holds the only reference. This is racy because we
1046 * haven't acquired the pag lock, but the use of _XBF_IN_FLIGHT
1047 * ensures the decrement occurs only once per-buf.
1048 */
1049 if ((atomic_read(&bp->b_hold) == 1) && !list_empty(&bp->b_lru))
63db7c81 1050 __xfs_buf_ioacct_dec(bp);
9c7504aa
BF
1051 goto out_unlock;
1052 }
1053
1054 /* the last reference has been dropped ... */
63db7c81 1055 __xfs_buf_ioacct_dec(bp);
9c7504aa
BF
1056 if (!(bp->b_flags & XBF_STALE) && atomic_read(&bp->b_lru_ref)) {
1057 /*
1058 * If the buffer is added to the LRU take a new reference to the
1059 * buffer for the LRU and clear the (now stale) dispose list
1060 * state flag
1061 */
1062 if (list_lru_add(&bp->b_target->bt_lru, &bp->b_lru)) {
1063 bp->b_state &= ~XFS_BSTATE_DISPOSE;
1064 atomic_inc(&bp->b_hold);
1da177e4 1065 }
9c7504aa
BF
1066 spin_unlock(&pag->pag_buf_lock);
1067 } else {
1068 /*
1069 * most of the time buffers will already be removed from the
1070 * LRU, so optimise that case by checking for the
1071 * XFS_BSTATE_DISPOSE flag indicating the last list the buffer
1072 * was on was the disposal list
1073 */
1074 if (!(bp->b_state & XFS_BSTATE_DISPOSE)) {
1075 list_lru_del(&bp->b_target->bt_lru, &bp->b_lru);
1076 } else {
1077 ASSERT(list_empty(&bp->b_lru));
1da177e4 1078 }
9c7504aa
BF
1079
1080 ASSERT(!(bp->b_flags & _XBF_DELWRI_Q));
6031e73a
LS
1081 rhashtable_remove_fast(&pag->pag_buf_hash, &bp->b_rhash_head,
1082 xfs_buf_hash_params);
9c7504aa
BF
1083 spin_unlock(&pag->pag_buf_lock);
1084 xfs_perag_put(pag);
1085 freebuf = true;
1da177e4 1086 }
9c7504aa
BF
1087
1088out_unlock:
1089 spin_unlock(&bp->b_lock);
1090
1091 if (freebuf)
1092 xfs_buf_free(bp);
1da177e4
LT
1093}
1094
1095
1096/*
0e6e847f 1097 * Lock a buffer object, if it is not already locked.
90810b9e
DC
1098 *
1099 * If we come across a stale, pinned, locked buffer, we know that we are
1100 * being asked to lock a buffer that has been reallocated. Because it is
1101 * pinned, we know that the log has not been pushed to disk and hence it
1102 * will still be locked. Rather than continuing to have trylock attempts
1103 * fail until someone else pushes the log, push it ourselves before
1104 * returning. This means that the xfsaild will not get stuck trying
1105 * to push on stale inode buffers.
1da177e4
LT
1106 */
1107int
0c842ad4
CH
1108xfs_buf_trylock(
1109 struct xfs_buf *bp)
1da177e4
LT
1110{
1111 int locked;
1112
ce8e922c 1113 locked = down_trylock(&bp->b_sema) == 0;
fa6c668d 1114 if (locked)
479c6412 1115 trace_xfs_buf_trylock(bp, _RET_IP_);
fa6c668d 1116 else
479c6412 1117 trace_xfs_buf_trylock_fail(bp, _RET_IP_);
0c842ad4 1118 return locked;
1da177e4 1119}
1da177e4
LT
1120
1121/*
0e6e847f 1122 * Lock a buffer object.
ed3b4d6c
DC
1123 *
1124 * If we come across a stale, pinned, locked buffer, we know that we
1125 * are being asked to lock a buffer that has been reallocated. Because
1126 * it is pinned, we know that the log has not been pushed to disk and
1127 * hence it will still be locked. Rather than sleeping until someone
1128 * else pushes the log, push it ourselves before trying to get the lock.
1da177e4 1129 */
ce8e922c
NS
1130void
1131xfs_buf_lock(
0c842ad4 1132 struct xfs_buf *bp)
1da177e4 1133{
0b1b213f
CH
1134 trace_xfs_buf_lock(bp, _RET_IP_);
1135
ed3b4d6c 1136 if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
dbd329f1 1137 xfs_log_force(bp->b_mount, 0);
ce8e922c 1138 down(&bp->b_sema);
0b1b213f
CH
1139
1140 trace_xfs_buf_lock_done(bp, _RET_IP_);
1da177e4
LT
1141}
1142
1da177e4 1143void
ce8e922c 1144xfs_buf_unlock(
0c842ad4 1145 struct xfs_buf *bp)
1da177e4 1146{
20e8a063
BF
1147 ASSERT(xfs_buf_islocked(bp));
1148
ce8e922c 1149 up(&bp->b_sema);
0b1b213f 1150 trace_xfs_buf_unlock(bp, _RET_IP_);
1da177e4
LT
1151}
1152
ce8e922c
NS
1153STATIC void
1154xfs_buf_wait_unpin(
1155 xfs_buf_t *bp)
1da177e4
LT
1156{
1157 DECLARE_WAITQUEUE (wait, current);
1158
ce8e922c 1159 if (atomic_read(&bp->b_pin_count) == 0)
1da177e4
LT
1160 return;
1161
ce8e922c 1162 add_wait_queue(&bp->b_waiters, &wait);
1da177e4
LT
1163 for (;;) {
1164 set_current_state(TASK_UNINTERRUPTIBLE);
ce8e922c 1165 if (atomic_read(&bp->b_pin_count) == 0)
1da177e4 1166 break;
7eaceacc 1167 io_schedule();
1da177e4 1168 }
ce8e922c 1169 remove_wait_queue(&bp->b_waiters, &wait);
1da177e4
LT
1170 set_current_state(TASK_RUNNING);
1171}
1172
1173/*
1174 * Buffer Utility Routines
1175 */
1176
e8aaba9a
DC
1177void
1178xfs_buf_ioend(
1179 struct xfs_buf *bp)
1da177e4 1180{
e8aaba9a
DC
1181 bool read = bp->b_flags & XBF_READ;
1182
1183 trace_xfs_buf_iodone(bp, _RET_IP_);
1813dd64
DC
1184
1185 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD);
d5929de8 1186
61be9c52
DC
1187 /*
1188 * Pull in IO completion errors now. We are guaranteed to be running
1189 * single threaded, so we don't need the lock to read b_io_error.
1190 */
1191 if (!bp->b_error && bp->b_io_error)
1192 xfs_buf_ioerror(bp, bp->b_io_error);
1193
e8aaba9a
DC
1194 /* Only validate buffers that were read without errors */
1195 if (read && !bp->b_error && bp->b_ops) {
1196 ASSERT(!bp->b_iodone);
1813dd64 1197 bp->b_ops->verify_read(bp);
e8aaba9a
DC
1198 }
1199
1200 if (!bp->b_error)
1201 bp->b_flags |= XBF_DONE;
1da177e4 1202
80f6c29d 1203 if (bp->b_iodone)
ce8e922c
NS
1204 (*(bp->b_iodone))(bp);
1205 else if (bp->b_flags & XBF_ASYNC)
1da177e4 1206 xfs_buf_relse(bp);
595bff75 1207 else
1813dd64 1208 complete(&bp->b_iowait);
1da177e4
LT
1209}
1210
e8aaba9a
DC
1211static void
1212xfs_buf_ioend_work(
1213 struct work_struct *work)
1da177e4 1214{
e8aaba9a 1215 struct xfs_buf *bp =
b29c70f5 1216 container_of(work, xfs_buf_t, b_ioend_work);
0b1b213f 1217
e8aaba9a
DC
1218 xfs_buf_ioend(bp);
1219}
1da177e4 1220
211fe1a4 1221static void
e8aaba9a
DC
1222xfs_buf_ioend_async(
1223 struct xfs_buf *bp)
1224{
b29c70f5 1225 INIT_WORK(&bp->b_ioend_work, xfs_buf_ioend_work);
dbd329f1 1226 queue_work(bp->b_mount->m_buf_workqueue, &bp->b_ioend_work);
1da177e4
LT
1227}
1228
1da177e4 1229void
31ca03c9 1230__xfs_buf_ioerror(
ce8e922c 1231 xfs_buf_t *bp,
31ca03c9
DW
1232 int error,
1233 xfs_failaddr_t failaddr)
1da177e4 1234{
2451337d
DC
1235 ASSERT(error <= 0 && error >= -1000);
1236 bp->b_error = error;
31ca03c9 1237 trace_xfs_buf_ioerror(bp, error, failaddr);
1da177e4
LT
1238}
1239
901796af
CH
1240void
1241xfs_buf_ioerror_alert(
1242 struct xfs_buf *bp,
cdbcf82b 1243 xfs_failaddr_t func)
901796af 1244{
13b1f811 1245 xfs_alert_ratelimited(bp->b_mount,
cdbcf82b 1246"metadata I/O error in \"%pS\" at daddr 0x%llx len %d error %d",
c219b015
DW
1247 func, (uint64_t)XFS_BUF_ADDR(bp), bp->b_length,
1248 -bp->b_error);
901796af
CH
1249}
1250
a2dcf5df
CH
1251int
1252xfs_bwrite(
1253 struct xfs_buf *bp)
1254{
1255 int error;
1256
1257 ASSERT(xfs_buf_islocked(bp));
1258
1259 bp->b_flags |= XBF_WRITE;
27187754
DC
1260 bp->b_flags &= ~(XBF_ASYNC | XBF_READ | _XBF_DELWRI_Q |
1261 XBF_WRITE_FAIL | XBF_DONE);
a2dcf5df 1262
6af88cda 1263 error = xfs_buf_submit(bp);
dbd329f1
CH
1264 if (error)
1265 xfs_force_shutdown(bp->b_mount, SHUTDOWN_META_IO_ERROR);
a2dcf5df
CH
1266 return error;
1267}
1268
9bdd9bd6 1269static void
ce8e922c 1270xfs_buf_bio_end_io(
4246a0b6 1271 struct bio *bio)
1da177e4 1272{
9bdd9bd6 1273 struct xfs_buf *bp = (struct xfs_buf *)bio->bi_private;
1da177e4 1274
37eb17e6
DC
1275 /*
1276 * don't overwrite existing errors - otherwise we can lose errors on
1277 * buffers that require multiple bios to complete.
1278 */
4e4cbee9
CH
1279 if (bio->bi_status) {
1280 int error = blk_status_to_errno(bio->bi_status);
1281
1282 cmpxchg(&bp->b_io_error, 0, error);
1283 }
1da177e4 1284
37eb17e6 1285 if (!bp->b_error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
73c77e2c
JB
1286 invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
1287
e8aaba9a
DC
1288 if (atomic_dec_and_test(&bp->b_io_remaining) == 1)
1289 xfs_buf_ioend_async(bp);
1da177e4 1290 bio_put(bio);
1da177e4
LT
1291}
1292
3e85c868
DC
1293static void
1294xfs_buf_ioapply_map(
1295 struct xfs_buf *bp,
1296 int map,
1297 int *buf_offset,
1298 int *count,
2123ef85 1299 int op)
1da177e4 1300{
3e85c868
DC
1301 int page_index;
1302 int total_nr_pages = bp->b_page_count;
1303 int nr_pages;
1304 struct bio *bio;
1305 sector_t sector = bp->b_maps[map].bm_bn;
1306 int size;
1307 int offset;
1da177e4 1308
3e85c868
DC
1309 /* skip the pages in the buffer before the start offset */
1310 page_index = 0;
1311 offset = *buf_offset;
1312 while (offset >= PAGE_SIZE) {
1313 page_index++;
1314 offset -= PAGE_SIZE;
f538d4da
CH
1315 }
1316
3e85c868
DC
1317 /*
1318 * Limit the IO size to the length of the current vector, and update the
1319 * remaining IO count for the next time around.
1320 */
1321 size = min_t(int, BBTOB(bp->b_maps[map].bm_len), *count);
1322 *count -= size;
1323 *buf_offset += size;
34951f5c 1324
1da177e4 1325next_chunk:
ce8e922c 1326 atomic_inc(&bp->b_io_remaining);
c908e380 1327 nr_pages = min(total_nr_pages, BIO_MAX_PAGES);
1da177e4
LT
1328
1329 bio = bio_alloc(GFP_NOIO, nr_pages);
74d46992 1330 bio_set_dev(bio, bp->b_target->bt_bdev);
4f024f37 1331 bio->bi_iter.bi_sector = sector;
ce8e922c
NS
1332 bio->bi_end_io = xfs_buf_bio_end_io;
1333 bio->bi_private = bp;
2123ef85 1334 bio->bi_opf = op;
0e6e847f 1335
3e85c868 1336 for (; size && nr_pages; nr_pages--, page_index++) {
0e6e847f 1337 int rbytes, nbytes = PAGE_SIZE - offset;
1da177e4
LT
1338
1339 if (nbytes > size)
1340 nbytes = size;
1341
3e85c868
DC
1342 rbytes = bio_add_page(bio, bp->b_pages[page_index], nbytes,
1343 offset);
ce8e922c 1344 if (rbytes < nbytes)
1da177e4
LT
1345 break;
1346
1347 offset = 0;
aa0e8833 1348 sector += BTOBB(nbytes);
1da177e4
LT
1349 size -= nbytes;
1350 total_nr_pages--;
1351 }
1352
4f024f37 1353 if (likely(bio->bi_iter.bi_size)) {
73c77e2c
JB
1354 if (xfs_buf_is_vmapped(bp)) {
1355 flush_kernel_vmap_range(bp->b_addr,
1356 xfs_buf_vmap_len(bp));
1357 }
4e49ea4a 1358 submit_bio(bio);
1da177e4
LT
1359 if (size)
1360 goto next_chunk;
1361 } else {
37eb17e6
DC
1362 /*
1363 * This is guaranteed not to be the last io reference count
595bff75 1364 * because the caller (xfs_buf_submit) holds a count itself.
37eb17e6
DC
1365 */
1366 atomic_dec(&bp->b_io_remaining);
2451337d 1367 xfs_buf_ioerror(bp, -EIO);
ec53d1db 1368 bio_put(bio);
1da177e4 1369 }
3e85c868
DC
1370
1371}
1372
1373STATIC void
1374_xfs_buf_ioapply(
1375 struct xfs_buf *bp)
1376{
1377 struct blk_plug plug;
50bfcd0c 1378 int op;
3e85c868
DC
1379 int offset;
1380 int size;
1381 int i;
1382
c163f9a1
DC
1383 /*
1384 * Make sure we capture only current IO errors rather than stale errors
1385 * left over from previous use of the buffer (e.g. failed readahead).
1386 */
1387 bp->b_error = 0;
1388
3e85c868 1389 if (bp->b_flags & XBF_WRITE) {
50bfcd0c 1390 op = REQ_OP_WRITE;
1813dd64
DC
1391
1392 /*
1393 * Run the write verifier callback function if it exists. If
1394 * this function fails it will mark the buffer with an error and
1395 * the IO should not be dispatched.
1396 */
1397 if (bp->b_ops) {
1398 bp->b_ops->verify_write(bp);
1399 if (bp->b_error) {
dbd329f1 1400 xfs_force_shutdown(bp->b_mount,
1813dd64
DC
1401 SHUTDOWN_CORRUPT_INCORE);
1402 return;
1403 }
400b9d88 1404 } else if (bp->b_bn != XFS_BUF_DADDR_NULL) {
dbd329f1 1405 struct xfs_mount *mp = bp->b_mount;
400b9d88
DC
1406
1407 /*
1408 * non-crc filesystems don't attach verifiers during
1409 * log recovery, so don't warn for such filesystems.
1410 */
1411 if (xfs_sb_version_hascrc(&mp->m_sb)) {
1412 xfs_warn(mp,
c219b015 1413 "%s: no buf ops on daddr 0x%llx len %d",
400b9d88 1414 __func__, bp->b_bn, bp->b_length);
9c712a13
DW
1415 xfs_hex_dump(bp->b_addr,
1416 XFS_CORRUPTION_DUMP_LEN);
400b9d88
DC
1417 dump_stack();
1418 }
1813dd64 1419 }
3e85c868 1420 } else {
50bfcd0c 1421 op = REQ_OP_READ;
2123ef85
CH
1422 if (bp->b_flags & XBF_READ_AHEAD)
1423 op |= REQ_RAHEAD;
3e85c868
DC
1424 }
1425
1426 /* we only use the buffer cache for meta-data */
2123ef85 1427 op |= REQ_META;
3e85c868
DC
1428
1429 /*
1430 * Walk all the vectors issuing IO on them. Set up the initial offset
1431 * into the buffer and the desired IO size before we start -
1432 * _xfs_buf_ioapply_vec() will modify them appropriately for each
1433 * subsequent call.
1434 */
1435 offset = bp->b_offset;
8124b9b6 1436 size = BBTOB(bp->b_length);
3e85c868
DC
1437 blk_start_plug(&plug);
1438 for (i = 0; i < bp->b_map_count; i++) {
2123ef85 1439 xfs_buf_ioapply_map(bp, i, &offset, &size, op);
3e85c868
DC
1440 if (bp->b_error)
1441 break;
1442 if (size <= 0)
1443 break; /* all done */
1444 }
1445 blk_finish_plug(&plug);
1da177e4
LT
1446}
1447
595bff75 1448/*
bb00b6f1 1449 * Wait for I/O completion of a sync buffer and return the I/O error code.
595bff75 1450 */
eaebb515 1451static int
bb00b6f1 1452xfs_buf_iowait(
595bff75 1453 struct xfs_buf *bp)
1da177e4 1454{
bb00b6f1
BF
1455 ASSERT(!(bp->b_flags & XBF_ASYNC));
1456
1457 trace_xfs_buf_iowait(bp, _RET_IP_);
1458 wait_for_completion(&bp->b_iowait);
1459 trace_xfs_buf_iowait_done(bp, _RET_IP_);
1460
1461 return bp->b_error;
1462}
1463
1464/*
1465 * Buffer I/O submission path, read or write. Asynchronous submission transfers
1466 * the buffer lock ownership and the current reference to the IO. It is not
1467 * safe to reference the buffer after a call to this function unless the caller
1468 * holds an additional reference itself.
1469 */
1470int
1471__xfs_buf_submit(
1472 struct xfs_buf *bp,
1473 bool wait)
1474{
1475 int error = 0;
1476
595bff75 1477 trace_xfs_buf_submit(bp, _RET_IP_);
1da177e4 1478
43ff2122 1479 ASSERT(!(bp->b_flags & _XBF_DELWRI_Q));
595bff75
DC
1480
1481 /* on shutdown we stale and complete the buffer immediately */
dbd329f1 1482 if (XFS_FORCED_SHUTDOWN(bp->b_mount)) {
595bff75
DC
1483 xfs_buf_ioerror(bp, -EIO);
1484 bp->b_flags &= ~XBF_DONE;
1485 xfs_buf_stale(bp);
465fa17f 1486 xfs_buf_ioend(bp);
eaebb515 1487 return -EIO;
595bff75 1488 }
1da177e4 1489
bb00b6f1
BF
1490 /*
1491 * Grab a reference so the buffer does not go away underneath us. For
1492 * async buffers, I/O completion drops the callers reference, which
1493 * could occur before submission returns.
1494 */
1495 xfs_buf_hold(bp);
1496
375ec69d 1497 if (bp->b_flags & XBF_WRITE)
ce8e922c 1498 xfs_buf_wait_unpin(bp);
e11bb805 1499
61be9c52
DC
1500 /* clear the internal error state to avoid spurious errors */
1501 bp->b_io_error = 0;
1502
8d6c1210 1503 /*
e11bb805
DC
1504 * Set the count to 1 initially, this will stop an I/O completion
1505 * callout which happens before we have started all the I/O from calling
1506 * xfs_buf_ioend too early.
1da177e4 1507 */
ce8e922c 1508 atomic_set(&bp->b_io_remaining, 1);
eaebb515
BF
1509 if (bp->b_flags & XBF_ASYNC)
1510 xfs_buf_ioacct_inc(bp);
ce8e922c 1511 _xfs_buf_ioapply(bp);
e11bb805 1512
8d6c1210 1513 /*
595bff75
DC
1514 * If _xfs_buf_ioapply failed, we can get back here with only the IO
1515 * reference we took above. If we drop it to zero, run completion so
1516 * that we don't return to the caller with completion still pending.
8d6c1210 1517 */
e8aaba9a 1518 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
eaebb515 1519 if (bp->b_error || !(bp->b_flags & XBF_ASYNC))
e8aaba9a
DC
1520 xfs_buf_ioend(bp);
1521 else
1522 xfs_buf_ioend_async(bp);
1523 }
1da177e4 1524
6af88cda
BF
1525 if (wait)
1526 error = xfs_buf_iowait(bp);
bb00b6f1 1527
595bff75 1528 /*
6af88cda
BF
1529 * Release the hold that keeps the buffer referenced for the entire
1530 * I/O. Note that if the buffer is async, it is not safe to reference
1531 * after this release.
595bff75
DC
1532 */
1533 xfs_buf_rele(bp);
1534 return error;
1da177e4
LT
1535}
1536
88ee2df7 1537void *
ce8e922c 1538xfs_buf_offset(
88ee2df7 1539 struct xfs_buf *bp,
1da177e4
LT
1540 size_t offset)
1541{
1542 struct page *page;
1543
611c9946 1544 if (bp->b_addr)
62926044 1545 return bp->b_addr + offset;
1da177e4 1546
ce8e922c 1547 offset += bp->b_offset;
0e6e847f 1548 page = bp->b_pages[offset >> PAGE_SHIFT];
88ee2df7 1549 return page_address(page) + (offset & (PAGE_SIZE-1));
1da177e4
LT
1550}
1551
1da177e4 1552void
f9a196ee
CH
1553xfs_buf_zero(
1554 struct xfs_buf *bp,
1555 size_t boff,
1556 size_t bsize)
1da177e4 1557{
795cac72 1558 size_t bend;
1da177e4
LT
1559
1560 bend = boff + bsize;
1561 while (boff < bend) {
795cac72
DC
1562 struct page *page;
1563 int page_index, page_offset, csize;
1564
1565 page_index = (boff + bp->b_offset) >> PAGE_SHIFT;
1566 page_offset = (boff + bp->b_offset) & ~PAGE_MASK;
1567 page = bp->b_pages[page_index];
1568 csize = min_t(size_t, PAGE_SIZE - page_offset,
8124b9b6 1569 BBTOB(bp->b_length) - boff);
1da177e4 1570
795cac72 1571 ASSERT((csize + page_offset) <= PAGE_SIZE);
1da177e4 1572
f9a196ee 1573 memset(page_address(page) + page_offset, 0, csize);
1da177e4
LT
1574
1575 boff += csize;
1da177e4
LT
1576 }
1577}
1578
8d57c216
DW
1579/*
1580 * Log a message about and stale a buffer that a caller has decided is corrupt.
1581 *
1582 * This function should be called for the kinds of metadata corruption that
1583 * cannot be detect from a verifier, such as incorrect inter-block relationship
1584 * data. Do /not/ call this function from a verifier function.
1585 *
1586 * The buffer must be XBF_DONE prior to the call. Afterwards, the buffer will
1587 * be marked stale, but b_error will not be set. The caller is responsible for
1588 * releasing the buffer or fixing it.
1589 */
1590void
1591__xfs_buf_mark_corrupt(
1592 struct xfs_buf *bp,
1593 xfs_failaddr_t fa)
1594{
1595 ASSERT(bp->b_flags & XBF_DONE);
1596
e83cf875 1597 xfs_buf_corruption_error(bp, fa);
8d57c216
DW
1598 xfs_buf_stale(bp);
1599}
1600
1da177e4 1601/*
ce8e922c 1602 * Handling of buffer targets (buftargs).
1da177e4
LT
1603 */
1604
1605/*
430cbeb8
DC
1606 * Wait for any bufs with callbacks that have been submitted but have not yet
1607 * returned. These buffers will have an elevated hold count, so wait on those
1608 * while freeing all the buffers only held by the LRU.
1da177e4 1609 */
e80dfa19
DC
1610static enum lru_status
1611xfs_buftarg_wait_rele(
1612 struct list_head *item,
3f97b163 1613 struct list_lru_one *lru,
e80dfa19
DC
1614 spinlock_t *lru_lock,
1615 void *arg)
1616
1da177e4 1617{
e80dfa19 1618 struct xfs_buf *bp = container_of(item, struct xfs_buf, b_lru);
a4082357 1619 struct list_head *dispose = arg;
430cbeb8 1620
e80dfa19 1621 if (atomic_read(&bp->b_hold) > 1) {
a4082357 1622 /* need to wait, so skip it this pass */
e80dfa19 1623 trace_xfs_buf_wait_buftarg(bp, _RET_IP_);
a4082357 1624 return LRU_SKIP;
1da177e4 1625 }
a4082357
DC
1626 if (!spin_trylock(&bp->b_lock))
1627 return LRU_SKIP;
e80dfa19 1628
a4082357
DC
1629 /*
1630 * clear the LRU reference count so the buffer doesn't get
1631 * ignored in xfs_buf_rele().
1632 */
1633 atomic_set(&bp->b_lru_ref, 0);
1634 bp->b_state |= XFS_BSTATE_DISPOSE;
3f97b163 1635 list_lru_isolate_move(lru, item, dispose);
a4082357
DC
1636 spin_unlock(&bp->b_lock);
1637 return LRU_REMOVED;
1da177e4
LT
1638}
1639
e80dfa19
DC
1640void
1641xfs_wait_buftarg(
1642 struct xfs_buftarg *btp)
1643{
a4082357
DC
1644 LIST_HEAD(dispose);
1645 int loop = 0;
1646
85bec546 1647 /*
9c7504aa
BF
1648 * First wait on the buftarg I/O count for all in-flight buffers to be
1649 * released. This is critical as new buffers do not make the LRU until
1650 * they are released.
1651 *
1652 * Next, flush the buffer workqueue to ensure all completion processing
1653 * has finished. Just waiting on buffer locks is not sufficient for
1654 * async IO as the reference count held over IO is not released until
1655 * after the buffer lock is dropped. Hence we need to ensure here that
1656 * all reference counts have been dropped before we start walking the
1657 * LRU list.
85bec546 1658 */
9c7504aa
BF
1659 while (percpu_counter_sum(&btp->bt_io_count))
1660 delay(100);
800b2694 1661 flush_workqueue(btp->bt_mount->m_buf_workqueue);
85bec546 1662
a4082357
DC
1663 /* loop until there is nothing left on the lru list. */
1664 while (list_lru_count(&btp->bt_lru)) {
e80dfa19 1665 list_lru_walk(&btp->bt_lru, xfs_buftarg_wait_rele,
a4082357
DC
1666 &dispose, LONG_MAX);
1667
1668 while (!list_empty(&dispose)) {
1669 struct xfs_buf *bp;
1670 bp = list_first_entry(&dispose, struct xfs_buf, b_lru);
1671 list_del_init(&bp->b_lru);
ac8809f9
DC
1672 if (bp->b_flags & XBF_WRITE_FAIL) {
1673 xfs_alert(btp->bt_mount,
c219b015 1674"Corruption Alert: Buffer at daddr 0x%llx had permanent write failures!",
ac8809f9 1675 (long long)bp->b_bn);
f41febd2
JP
1676 xfs_alert(btp->bt_mount,
1677"Please run xfs_repair to determine the extent of the problem.");
ac8809f9 1678 }
a4082357
DC
1679 xfs_buf_rele(bp);
1680 }
1681 if (loop++ != 0)
1682 delay(100);
1683 }
e80dfa19
DC
1684}
1685
1686static enum lru_status
1687xfs_buftarg_isolate(
1688 struct list_head *item,
3f97b163 1689 struct list_lru_one *lru,
e80dfa19
DC
1690 spinlock_t *lru_lock,
1691 void *arg)
1692{
1693 struct xfs_buf *bp = container_of(item, struct xfs_buf, b_lru);
1694 struct list_head *dispose = arg;
1695
a4082357
DC
1696 /*
1697 * we are inverting the lru lock/bp->b_lock here, so use a trylock.
1698 * If we fail to get the lock, just skip it.
1699 */
1700 if (!spin_trylock(&bp->b_lock))
1701 return LRU_SKIP;
e80dfa19
DC
1702 /*
1703 * Decrement the b_lru_ref count unless the value is already
1704 * zero. If the value is already zero, we need to reclaim the
1705 * buffer, otherwise it gets another trip through the LRU.
1706 */
19957a18 1707 if (atomic_add_unless(&bp->b_lru_ref, -1, 0)) {
a4082357 1708 spin_unlock(&bp->b_lock);
e80dfa19 1709 return LRU_ROTATE;
a4082357 1710 }
e80dfa19 1711
a4082357 1712 bp->b_state |= XFS_BSTATE_DISPOSE;
3f97b163 1713 list_lru_isolate_move(lru, item, dispose);
a4082357 1714 spin_unlock(&bp->b_lock);
e80dfa19
DC
1715 return LRU_REMOVED;
1716}
1717
addbda40 1718static unsigned long
e80dfa19 1719xfs_buftarg_shrink_scan(
ff57ab21 1720 struct shrinker *shrink,
1495f230 1721 struct shrink_control *sc)
a6867a68 1722{
ff57ab21
DC
1723 struct xfs_buftarg *btp = container_of(shrink,
1724 struct xfs_buftarg, bt_shrinker);
430cbeb8 1725 LIST_HEAD(dispose);
addbda40 1726 unsigned long freed;
430cbeb8 1727
503c358c
VD
1728 freed = list_lru_shrink_walk(&btp->bt_lru, sc,
1729 xfs_buftarg_isolate, &dispose);
430cbeb8
DC
1730
1731 while (!list_empty(&dispose)) {
e80dfa19 1732 struct xfs_buf *bp;
430cbeb8
DC
1733 bp = list_first_entry(&dispose, struct xfs_buf, b_lru);
1734 list_del_init(&bp->b_lru);
1735 xfs_buf_rele(bp);
1736 }
1737
e80dfa19
DC
1738 return freed;
1739}
1740
addbda40 1741static unsigned long
e80dfa19
DC
1742xfs_buftarg_shrink_count(
1743 struct shrinker *shrink,
1744 struct shrink_control *sc)
1745{
1746 struct xfs_buftarg *btp = container_of(shrink,
1747 struct xfs_buftarg, bt_shrinker);
503c358c 1748 return list_lru_shrink_count(&btp->bt_lru, sc);
a6867a68
DC
1749}
1750
1da177e4
LT
1751void
1752xfs_free_buftarg(
b7963133 1753 struct xfs_buftarg *btp)
1da177e4 1754{
ff57ab21 1755 unregister_shrinker(&btp->bt_shrinker);
9c7504aa
BF
1756 ASSERT(percpu_counter_sum(&btp->bt_io_count) == 0);
1757 percpu_counter_destroy(&btp->bt_io_count);
f5e1dd34 1758 list_lru_destroy(&btp->bt_lru);
ff57ab21 1759
2291dab2 1760 xfs_blkdev_issue_flush(btp);
a6867a68 1761
f0e2d93c 1762 kmem_free(btp);
1da177e4
LT
1763}
1764
3fefdeee
ES
1765int
1766xfs_setsize_buftarg(
1da177e4 1767 xfs_buftarg_t *btp,
3fefdeee 1768 unsigned int sectorsize)
1da177e4 1769{
7c71ee78 1770 /* Set up metadata sector size info */
6da54179
ES
1771 btp->bt_meta_sectorsize = sectorsize;
1772 btp->bt_meta_sectormask = sectorsize - 1;
1da177e4 1773
ce8e922c 1774 if (set_blocksize(btp->bt_bdev, sectorsize)) {
4f10700a 1775 xfs_warn(btp->bt_mount,
a1c6f057
DM
1776 "Cannot set_blocksize to %u on device %pg",
1777 sectorsize, btp->bt_bdev);
2451337d 1778 return -EINVAL;
1da177e4
LT
1779 }
1780
7c71ee78
ES
1781 /* Set up device logical sector size mask */
1782 btp->bt_logical_sectorsize = bdev_logical_block_size(btp->bt_bdev);
1783 btp->bt_logical_sectormask = bdev_logical_block_size(btp->bt_bdev) - 1;
1784
1da177e4
LT
1785 return 0;
1786}
1787
1788/*
3fefdeee
ES
1789 * When allocating the initial buffer target we have not yet
1790 * read in the superblock, so don't know what sized sectors
1791 * are being used at this early stage. Play safe.
ce8e922c 1792 */
1da177e4
LT
1793STATIC int
1794xfs_setsize_buftarg_early(
1795 xfs_buftarg_t *btp,
1796 struct block_device *bdev)
1797{
a96c4151 1798 return xfs_setsize_buftarg(btp, bdev_logical_block_size(bdev));
1da177e4
LT
1799}
1800
1da177e4
LT
1801xfs_buftarg_t *
1802xfs_alloc_buftarg(
ebad861b 1803 struct xfs_mount *mp,
486aff5e
DW
1804 struct block_device *bdev,
1805 struct dax_device *dax_dev)
1da177e4
LT
1806{
1807 xfs_buftarg_t *btp;
1808
707e0dda 1809 btp = kmem_zalloc(sizeof(*btp), KM_NOFS);
1da177e4 1810
ebad861b 1811 btp->bt_mount = mp;
ce8e922c
NS
1812 btp->bt_dev = bdev->bd_dev;
1813 btp->bt_bdev = bdev;
486aff5e 1814 btp->bt_daxdev = dax_dev;
0e6e847f 1815
1da177e4 1816 if (xfs_setsize_buftarg_early(btp, bdev))
d210a987 1817 goto error_free;
5ca302c8
GC
1818
1819 if (list_lru_init(&btp->bt_lru))
d210a987 1820 goto error_free;
5ca302c8 1821
9c7504aa 1822 if (percpu_counter_init(&btp->bt_io_count, 0, GFP_KERNEL))
d210a987 1823 goto error_lru;
9c7504aa 1824
e80dfa19
DC
1825 btp->bt_shrinker.count_objects = xfs_buftarg_shrink_count;
1826 btp->bt_shrinker.scan_objects = xfs_buftarg_shrink_scan;
ff57ab21 1827 btp->bt_shrinker.seeks = DEFAULT_SEEKS;
e80dfa19 1828 btp->bt_shrinker.flags = SHRINKER_NUMA_AWARE;
d210a987
MH
1829 if (register_shrinker(&btp->bt_shrinker))
1830 goto error_pcpu;
1da177e4
LT
1831 return btp;
1832
d210a987
MH
1833error_pcpu:
1834 percpu_counter_destroy(&btp->bt_io_count);
1835error_lru:
1836 list_lru_destroy(&btp->bt_lru);
1837error_free:
f0e2d93c 1838 kmem_free(btp);
1da177e4
LT
1839 return NULL;
1840}
1841
20e8a063
BF
1842/*
1843 * Cancel a delayed write list.
1844 *
1845 * Remove each buffer from the list, clear the delwri queue flag and drop the
1846 * associated buffer reference.
1847 */
1848void
1849xfs_buf_delwri_cancel(
1850 struct list_head *list)
1851{
1852 struct xfs_buf *bp;
1853
1854 while (!list_empty(list)) {
1855 bp = list_first_entry(list, struct xfs_buf, b_list);
1856
1857 xfs_buf_lock(bp);
1858 bp->b_flags &= ~_XBF_DELWRI_Q;
1859 list_del_init(&bp->b_list);
1860 xfs_buf_relse(bp);
1861 }
1862}
1863
1da177e4 1864/*
43ff2122
CH
1865 * Add a buffer to the delayed write list.
1866 *
1867 * This queues a buffer for writeout if it hasn't already been. Note that
1868 * neither this routine nor the buffer list submission functions perform
1869 * any internal synchronization. It is expected that the lists are thread-local
1870 * to the callers.
1871 *
1872 * Returns true if we queued up the buffer, or false if it already had
1873 * been on the buffer list.
1da177e4 1874 */
43ff2122 1875bool
ce8e922c 1876xfs_buf_delwri_queue(
43ff2122
CH
1877 struct xfs_buf *bp,
1878 struct list_head *list)
1da177e4 1879{
43ff2122 1880 ASSERT(xfs_buf_islocked(bp));
5a8ee6ba 1881 ASSERT(!(bp->b_flags & XBF_READ));
1da177e4 1882
43ff2122
CH
1883 /*
1884 * If the buffer is already marked delwri it already is queued up
1885 * by someone else for imediate writeout. Just ignore it in that
1886 * case.
1887 */
1888 if (bp->b_flags & _XBF_DELWRI_Q) {
1889 trace_xfs_buf_delwri_queued(bp, _RET_IP_);
1890 return false;
1da177e4 1891 }
1da177e4 1892
43ff2122 1893 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
d808f617
DC
1894
1895 /*
43ff2122
CH
1896 * If a buffer gets written out synchronously or marked stale while it
1897 * is on a delwri list we lazily remove it. To do this, the other party
1898 * clears the _XBF_DELWRI_Q flag but otherwise leaves the buffer alone.
1899 * It remains referenced and on the list. In a rare corner case it
1900 * might get readded to a delwri list after the synchronous writeout, in
1901 * which case we need just need to re-add the flag here.
d808f617 1902 */
43ff2122
CH
1903 bp->b_flags |= _XBF_DELWRI_Q;
1904 if (list_empty(&bp->b_list)) {
1905 atomic_inc(&bp->b_hold);
1906 list_add_tail(&bp->b_list, list);
585e6d88 1907 }
585e6d88 1908
43ff2122 1909 return true;
585e6d88
DC
1910}
1911
089716aa
DC
1912/*
1913 * Compare function is more complex than it needs to be because
1914 * the return value is only 32 bits and we are doing comparisons
1915 * on 64 bit values
1916 */
1917static int
1918xfs_buf_cmp(
1919 void *priv,
1920 struct list_head *a,
1921 struct list_head *b)
1922{
1923 struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
1924 struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
1925 xfs_daddr_t diff;
1926
f4b42421 1927 diff = ap->b_maps[0].bm_bn - bp->b_maps[0].bm_bn;
089716aa
DC
1928 if (diff < 0)
1929 return -1;
1930 if (diff > 0)
1931 return 1;
1932 return 0;
1933}
1934
26f1fe85 1935/*
e339dd8d
BF
1936 * Submit buffers for write. If wait_list is specified, the buffers are
1937 * submitted using sync I/O and placed on the wait list such that the caller can
1938 * iowait each buffer. Otherwise async I/O is used and the buffers are released
1939 * at I/O completion time. In either case, buffers remain locked until I/O
1940 * completes and the buffer is released from the queue.
26f1fe85 1941 */
43ff2122 1942static int
26f1fe85 1943xfs_buf_delwri_submit_buffers(
43ff2122 1944 struct list_head *buffer_list,
26f1fe85 1945 struct list_head *wait_list)
1da177e4 1946{
43ff2122
CH
1947 struct xfs_buf *bp, *n;
1948 int pinned = 0;
26f1fe85 1949 struct blk_plug plug;
43ff2122 1950
26f1fe85 1951 list_sort(NULL, buffer_list, xfs_buf_cmp);
43ff2122 1952
26f1fe85 1953 blk_start_plug(&plug);
43ff2122 1954 list_for_each_entry_safe(bp, n, buffer_list, b_list) {
26f1fe85 1955 if (!wait_list) {
43ff2122
CH
1956 if (xfs_buf_ispinned(bp)) {
1957 pinned++;
1958 continue;
1959 }
1960 if (!xfs_buf_trylock(bp))
1961 continue;
1962 } else {
1963 xfs_buf_lock(bp);
1964 }
978c7b2f 1965
43ff2122
CH
1966 /*
1967 * Someone else might have written the buffer synchronously or
1968 * marked it stale in the meantime. In that case only the
1969 * _XBF_DELWRI_Q flag got cleared, and we have to drop the
1970 * reference and remove it from the list here.
1971 */
1972 if (!(bp->b_flags & _XBF_DELWRI_Q)) {
1973 list_del_init(&bp->b_list);
1974 xfs_buf_relse(bp);
1975 continue;
1976 }
c9c12971 1977
43ff2122 1978 trace_xfs_buf_delwri_split(bp, _RET_IP_);
a1b7ea5d 1979
cf53e99d 1980 /*
e339dd8d
BF
1981 * If we have a wait list, each buffer (and associated delwri
1982 * queue reference) transfers to it and is submitted
1983 * synchronously. Otherwise, drop the buffer from the delwri
1984 * queue and submit async.
cf53e99d 1985 */
bbfeb614 1986 bp->b_flags &= ~(_XBF_DELWRI_Q | XBF_WRITE_FAIL);
e339dd8d 1987 bp->b_flags |= XBF_WRITE;
26f1fe85 1988 if (wait_list) {
e339dd8d 1989 bp->b_flags &= ~XBF_ASYNC;
26f1fe85 1990 list_move_tail(&bp->b_list, wait_list);
e339dd8d
BF
1991 } else {
1992 bp->b_flags |= XBF_ASYNC;
ce8e922c 1993 list_del_init(&bp->b_list);
e339dd8d 1994 }
6af88cda 1995 __xfs_buf_submit(bp, false);
43ff2122
CH
1996 }
1997 blk_finish_plug(&plug);
1da177e4 1998
43ff2122 1999 return pinned;
1da177e4
LT
2000}
2001
2002/*
43ff2122
CH
2003 * Write out a buffer list asynchronously.
2004 *
2005 * This will take the @buffer_list, write all non-locked and non-pinned buffers
2006 * out and not wait for I/O completion on any of the buffers. This interface
2007 * is only safely useable for callers that can track I/O completion by higher
2008 * level means, e.g. AIL pushing as the @buffer_list is consumed in this
2009 * function.
efc3289c
BF
2010 *
2011 * Note: this function will skip buffers it would block on, and in doing so
2012 * leaves them on @buffer_list so they can be retried on a later pass. As such,
2013 * it is up to the caller to ensure that the buffer list is fully submitted or
2014 * cancelled appropriately when they are finished with the list. Failure to
2015 * cancel or resubmit the list until it is empty will result in leaked buffers
2016 * at unmount time.
1da177e4
LT
2017 */
2018int
43ff2122
CH
2019xfs_buf_delwri_submit_nowait(
2020 struct list_head *buffer_list)
1da177e4 2021{
26f1fe85 2022 return xfs_buf_delwri_submit_buffers(buffer_list, NULL);
43ff2122 2023}
1da177e4 2024
43ff2122
CH
2025/*
2026 * Write out a buffer list synchronously.
2027 *
2028 * This will take the @buffer_list, write all buffers out and wait for I/O
2029 * completion on all of the buffers. @buffer_list is consumed by the function,
2030 * so callers must have some other way of tracking buffers if they require such
2031 * functionality.
2032 */
2033int
2034xfs_buf_delwri_submit(
2035 struct list_head *buffer_list)
2036{
26f1fe85 2037 LIST_HEAD (wait_list);
43ff2122
CH
2038 int error = 0, error2;
2039 struct xfs_buf *bp;
1da177e4 2040
26f1fe85 2041 xfs_buf_delwri_submit_buffers(buffer_list, &wait_list);
1da177e4 2042
43ff2122 2043 /* Wait for IO to complete. */
26f1fe85
DC
2044 while (!list_empty(&wait_list)) {
2045 bp = list_first_entry(&wait_list, struct xfs_buf, b_list);
a1b7ea5d 2046
089716aa 2047 list_del_init(&bp->b_list);
cf53e99d 2048
e339dd8d
BF
2049 /*
2050 * Wait on the locked buffer, check for errors and unlock and
2051 * release the delwri queue reference.
2052 */
2053 error2 = xfs_buf_iowait(bp);
43ff2122
CH
2054 xfs_buf_relse(bp);
2055 if (!error)
2056 error = error2;
1da177e4
LT
2057 }
2058
43ff2122 2059 return error;
1da177e4
LT
2060}
2061
7912e7fe
BF
2062/*
2063 * Push a single buffer on a delwri queue.
2064 *
2065 * The purpose of this function is to submit a single buffer of a delwri queue
2066 * and return with the buffer still on the original queue. The waiting delwri
2067 * buffer submission infrastructure guarantees transfer of the delwri queue
2068 * buffer reference to a temporary wait list. We reuse this infrastructure to
2069 * transfer the buffer back to the original queue.
2070 *
2071 * Note the buffer transitions from the queued state, to the submitted and wait
2072 * listed state and back to the queued state during this call. The buffer
2073 * locking and queue management logic between _delwri_pushbuf() and
2074 * _delwri_queue() guarantee that the buffer cannot be queued to another list
2075 * before returning.
2076 */
2077int
2078xfs_buf_delwri_pushbuf(
2079 struct xfs_buf *bp,
2080 struct list_head *buffer_list)
2081{
2082 LIST_HEAD (submit_list);
2083 int error;
2084
2085 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
2086
2087 trace_xfs_buf_delwri_pushbuf(bp, _RET_IP_);
2088
2089 /*
2090 * Isolate the buffer to a new local list so we can submit it for I/O
2091 * independently from the rest of the original list.
2092 */
2093 xfs_buf_lock(bp);
2094 list_move(&bp->b_list, &submit_list);
2095 xfs_buf_unlock(bp);
2096
2097 /*
2098 * Delwri submission clears the DELWRI_Q buffer flag and returns with
e339dd8d 2099 * the buffer on the wait list with the original reference. Rather than
7912e7fe
BF
2100 * bounce the buffer from a local wait list back to the original list
2101 * after I/O completion, reuse the original list as the wait list.
2102 */
2103 xfs_buf_delwri_submit_buffers(&submit_list, buffer_list);
2104
2105 /*
e339dd8d
BF
2106 * The buffer is now locked, under I/O and wait listed on the original
2107 * delwri queue. Wait for I/O completion, restore the DELWRI_Q flag and
2108 * return with the buffer unlocked and on the original queue.
7912e7fe 2109 */
e339dd8d 2110 error = xfs_buf_iowait(bp);
7912e7fe
BF
2111 bp->b_flags |= _XBF_DELWRI_Q;
2112 xfs_buf_unlock(bp);
2113
2114 return error;
2115}
2116
04d8b284 2117int __init
ce8e922c 2118xfs_buf_init(void)
1da177e4 2119{
12eba65b
DC
2120 xfs_buf_zone = kmem_cache_create("xfs_buf", sizeof(struct xfs_buf), 0,
2121 SLAB_HWCACHE_ALIGN |
2122 SLAB_RECLAIM_ACCOUNT |
2123 SLAB_MEM_SPREAD,
2124 NULL);
ce8e922c 2125 if (!xfs_buf_zone)
0b1b213f 2126 goto out;
04d8b284 2127
23ea4032 2128 return 0;
1da177e4 2129
0b1b213f 2130 out:
8758280f 2131 return -ENOMEM;
1da177e4
LT
2132}
2133
1da177e4 2134void
ce8e922c 2135xfs_buf_terminate(void)
1da177e4 2136{
aaf54eb8 2137 kmem_cache_destroy(xfs_buf_zone);
1da177e4 2138}
7561d27e
BF
2139
2140void xfs_buf_set_ref(struct xfs_buf *bp, int lru_ref)
2141{
7561d27e
BF
2142 /*
2143 * Set the lru reference count to 0 based on the error injection tag.
2144 * This allows userspace to disrupt buffer caching for debug/testing
2145 * purposes.
2146 */
dbd329f1 2147 if (XFS_TEST_ERROR(false, bp->b_mount, XFS_ERRTAG_BUF_LRU_REF))
7561d27e
BF
2148 lru_ref = 0;
2149
2150 atomic_set(&bp->b_lru_ref, lru_ref);
2151}
8473fee3
BF
2152
2153/*
2154 * Verify an on-disk magic value against the magic value specified in the
2155 * verifier structure. The verifier magic is in disk byte order so the caller is
2156 * expected to pass the value directly from disk.
2157 */
2158bool
2159xfs_verify_magic(
2160 struct xfs_buf *bp,
15baadf7 2161 __be32 dmagic)
8473fee3 2162{
dbd329f1 2163 struct xfs_mount *mp = bp->b_mount;
8473fee3
BF
2164 int idx;
2165
2166 idx = xfs_sb_version_hascrc(&mp->m_sb);
14ed8688 2167 if (WARN_ON(!bp->b_ops || !bp->b_ops->magic[idx]))
8473fee3
BF
2168 return false;
2169 return dmagic == bp->b_ops->magic[idx];
2170}
15baadf7
DW
2171/*
2172 * Verify an on-disk magic value against the magic value specified in the
2173 * verifier structure. The verifier magic is in disk byte order so the caller is
2174 * expected to pass the value directly from disk.
2175 */
2176bool
2177xfs_verify_magic16(
2178 struct xfs_buf *bp,
2179 __be16 dmagic)
2180{
dbd329f1 2181 struct xfs_mount *mp = bp->b_mount;
15baadf7
DW
2182 int idx;
2183
2184 idx = xfs_sb_version_hascrc(&mp->m_sb);
14ed8688 2185 if (WARN_ON(!bp->b_ops || !bp->b_ops->magic16[idx]))
15baadf7
DW
2186 return false;
2187 return dmagic == bp->b_ops->magic16[idx];
2188}