blob: 631c5a61d89b717c9ae5f8e35ce9b000755f17c1 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scottf07c2252006-09-28 10:52:15 +10003 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11004 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Vlad Apostolov93c189c2006-11-11 18:03:49 +11006#include "xfs.h"
Andrew Morton3fcfab12006-10-19 23:28:16 -07007#include <linux/backing-dev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008
Darrick J. Wong5467b342019-06-28 19:25:35 -07009#include "xfs_shared.h"
Christoph Hellwig4fb6e8a2014-11-28 14:25:04 +110010#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110011#include "xfs_log_format.h"
Dave Chinner7fd36c42013-08-12 20:49:32 +100012#include "xfs_trans_resv.h"
Christoph Hellwigb7963132009-03-03 14:48:37 -050013#include "xfs_mount.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000014#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110015#include "xfs_log.h"
Dave Chinner9fe5c772020-06-29 14:48:47 -070016#include "xfs_log_recover.h"
Dave Chinnerf593bf12020-06-29 14:48:46 -070017#include "xfs_trans.h"
18#include "xfs_buf_item.h"
Darrick J. Wonge9e899a2017-10-31 12:04:49 -070019#include "xfs_errortag.h"
Brian Foster7561d272017-10-17 14:16:29 -070020#include "xfs_error.h"
Dave Chinner9bbafc712021-06-02 10:48:24 +100021#include "xfs_ag.h"
Christoph Hellwigb7963132009-03-03 14:48:37 -050022
Darrick J. Wong182696f2021-10-12 11:09:23 -070023static struct kmem_cache *xfs_buf_cache;
Christoph Hellwig23ea4032005-06-21 15:14:01 +100024
Dave Chinner37fd1672018-10-18 17:21:29 +110025/*
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 *
Brian Foster10fb9ac2021-01-22 16:48:19 -080043 * xfs_buftarg_drain_rele
Dave Chinner37fd1672018-10-18 17:21:29 +110044 * 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Christoph Hellwig26e328752020-09-01 10:55:47 -070052static int __xfs_buf_submit(struct xfs_buf *bp, bool wait);
53
54static inline int
55xfs_buf_submit(
56 struct xfs_buf *bp)
57{
58 return __xfs_buf_submit(bp, !(bp->b_flags & XBF_ASYNC));
59}
60
James Bottomley73c77e22010-01-25 11:42:24 -060061static inline int
62xfs_buf_is_vmapped(
63 struct xfs_buf *bp)
64{
65 /*
66 * Return true if the buffer is vmapped.
67 *
Dave Chinner611c9942012-04-23 15:59:07 +100068 * b_addr is null if the buffer is not mapped, but the code is clever
69 * enough to know it doesn't have to map a single page, so the check has
70 * to be both for b_addr and bp->b_page_count > 1.
James Bottomley73c77e22010-01-25 11:42:24 -060071 */
Dave Chinner611c9942012-04-23 15:59:07 +100072 return bp->b_addr && bp->b_page_count > 1;
James Bottomley73c77e22010-01-25 11:42:24 -060073}
74
75static inline int
76xfs_buf_vmap_len(
77 struct xfs_buf *bp)
78{
Christoph Hellwig54cd3aa2021-06-07 11:49:50 +100079 return (bp->b_page_count * PAGE_SIZE);
James Bottomley73c77e22010-01-25 11:42:24 -060080}
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082/*
Brian Foster9c7504a2016-07-20 11:15:28 +100083 * Bump the I/O in flight count on the buftarg if we haven't yet done so for
84 * this buffer. The count is incremented once per buffer (per hold cycle)
85 * because the corresponding decrement is deferred to buffer release. Buffers
86 * can undergo I/O multiple times in a hold-release cycle and per buffer I/O
87 * tracking adds unnecessary overhead. This is used for sychronization purposes
Brian Foster10fb9ac2021-01-22 16:48:19 -080088 * with unmount (see xfs_buftarg_drain()), so all we really need is a count of
Brian Foster9c7504a2016-07-20 11:15:28 +100089 * in-flight buffers.
90 *
91 * Buffers that are never released (e.g., superblock, iclog buffers) must set
92 * the XBF_NO_IOACCT flag before I/O submission. Otherwise, the buftarg count
93 * never reaches zero and unmount hangs indefinitely.
94 */
95static inline void
96xfs_buf_ioacct_inc(
97 struct xfs_buf *bp)
98{
Brian Foster63db7c82017-05-31 08:22:52 -070099 if (bp->b_flags & XBF_NO_IOACCT)
Brian Foster9c7504a2016-07-20 11:15:28 +1000100 return;
101
102 ASSERT(bp->b_flags & XBF_ASYNC);
Brian Foster63db7c82017-05-31 08:22:52 -0700103 spin_lock(&bp->b_lock);
104 if (!(bp->b_state & XFS_BSTATE_IN_FLIGHT)) {
105 bp->b_state |= XFS_BSTATE_IN_FLIGHT;
106 percpu_counter_inc(&bp->b_target->bt_io_count);
107 }
108 spin_unlock(&bp->b_lock);
Brian Foster9c7504a2016-07-20 11:15:28 +1000109}
110
111/*
112 * Clear the in-flight state on a buffer about to be released to the LRU or
113 * freed and unaccount from the buftarg.
114 */
115static inline void
Brian Foster63db7c82017-05-31 08:22:52 -0700116__xfs_buf_ioacct_dec(
117 struct xfs_buf *bp)
118{
Brian Foster95989c42017-06-08 08:23:07 -0700119 lockdep_assert_held(&bp->b_lock);
Brian Foster63db7c82017-05-31 08:22:52 -0700120
121 if (bp->b_state & XFS_BSTATE_IN_FLIGHT) {
122 bp->b_state &= ~XFS_BSTATE_IN_FLIGHT;
123 percpu_counter_dec(&bp->b_target->bt_io_count);
124 }
125}
126
127static inline void
Brian Foster9c7504a2016-07-20 11:15:28 +1000128xfs_buf_ioacct_dec(
129 struct xfs_buf *bp)
130{
Brian Foster63db7c82017-05-31 08:22:52 -0700131 spin_lock(&bp->b_lock);
132 __xfs_buf_ioacct_dec(bp);
133 spin_unlock(&bp->b_lock);
Brian Foster9c7504a2016-07-20 11:15:28 +1000134}
135
136/*
Dave Chinner430cbeb2010-12-02 16:30:55 +1100137 * When we mark a buffer stale, we remove the buffer from the LRU and clear the
138 * b_lru_ref count so that the buffer is freed immediately when the buffer
139 * reference count falls to zero. If the buffer is already on the LRU, we need
140 * to remove the reference that LRU holds on the buffer.
141 *
142 * This prevents build-up of stale buffers on the LRU.
143 */
144void
145xfs_buf_stale(
146 struct xfs_buf *bp)
147{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000148 ASSERT(xfs_buf_islocked(bp));
149
Dave Chinner430cbeb2010-12-02 16:30:55 +1100150 bp->b_flags |= XBF_STALE;
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000151
152 /*
153 * Clear the delwri status so that a delwri queue walker will not
154 * flush this buffer to disk now that it is stale. The delwri queue has
155 * a reference to the buffer, so this is safe to do.
156 */
157 bp->b_flags &= ~_XBF_DELWRI_Q;
158
Brian Foster9c7504a2016-07-20 11:15:28 +1000159 /*
160 * Once the buffer is marked stale and unlocked, a subsequent lookup
161 * could reset b_flags. There is no guarantee that the buffer is
162 * unaccounted (released to LRU) before that occurs. Drop in-flight
163 * status now to preserve accounting consistency.
164 */
Dave Chinnera4082352013-08-28 10:18:06 +1000165 spin_lock(&bp->b_lock);
Brian Foster63db7c82017-05-31 08:22:52 -0700166 __xfs_buf_ioacct_dec(bp);
167
Dave Chinnera4082352013-08-28 10:18:06 +1000168 atomic_set(&bp->b_lru_ref, 0);
169 if (!(bp->b_state & XFS_BSTATE_DISPOSE) &&
Dave Chinnere80dfa12013-08-28 10:18:05 +1000170 (list_lru_del(&bp->b_target->bt_lru, &bp->b_lru)))
171 atomic_dec(&bp->b_hold);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100172
Dave Chinner430cbeb2010-12-02 16:30:55 +1100173 ASSERT(atomic_read(&bp->b_hold) >= 1);
Dave Chinnera4082352013-08-28 10:18:06 +1000174 spin_unlock(&bp->b_lock);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100175}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Dave Chinner3e85c862012-06-22 18:50:09 +1000177static int
178xfs_buf_get_maps(
179 struct xfs_buf *bp,
180 int map_count)
181{
182 ASSERT(bp->b_maps == NULL);
183 bp->b_map_count = map_count;
184
185 if (map_count == 1) {
Mark Tinguelyf4b42422012-12-04 17:18:02 -0600186 bp->b_maps = &bp->__b_map;
Dave Chinner3e85c862012-06-22 18:50:09 +1000187 return 0;
188 }
189
190 bp->b_maps = kmem_zalloc(map_count * sizeof(struct xfs_buf_map),
191 KM_NOFS);
192 if (!bp->b_maps)
Dave Chinner24513372014-06-25 14:58:08 +1000193 return -ENOMEM;
Dave Chinner3e85c862012-06-22 18:50:09 +1000194 return 0;
195}
196
197/*
198 * Frees b_pages if it was allocated.
199 */
200static void
201xfs_buf_free_maps(
202 struct xfs_buf *bp)
203{
Mark Tinguelyf4b42422012-12-04 17:18:02 -0600204 if (bp->b_maps != &bp->__b_map) {
Dave Chinner3e85c862012-06-22 18:50:09 +1000205 kmem_free(bp->b_maps);
206 bp->b_maps = NULL;
207 }
208}
209
Darrick J. Wong32dff5e2020-01-23 17:01:15 -0800210static int
Dave Chinner3e85c862012-06-22 18:50:09 +1000211_xfs_buf_alloc(
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000212 struct xfs_buftarg *target,
Dave Chinner3e85c862012-06-22 18:50:09 +1000213 struct xfs_buf_map *map,
214 int nmaps,
Darrick J. Wong32dff5e2020-01-23 17:01:15 -0800215 xfs_buf_flags_t flags,
216 struct xfs_buf **bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000218 struct xfs_buf *bp;
Dave Chinner3e85c862012-06-22 18:50:09 +1000219 int error;
220 int i;
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000221
Darrick J. Wong32dff5e2020-01-23 17:01:15 -0800222 *bpp = NULL;
Darrick J. Wong182696f2021-10-12 11:09:23 -0700223 bp = kmem_cache_zalloc(xfs_buf_cache, GFP_NOFS | __GFP_NOFAIL);
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 /*
Dave Chinner12bcb3f2012-04-23 15:59:05 +1000226 * We don't want certain flags to appear in b_flags unless they are
227 * specifically set by later operations on the buffer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 */
Dave Chinner611c9942012-04-23 15:59:07 +1000229 flags &= ~(XBF_UNMAPPED | XBF_TRYLOCK | XBF_ASYNC | XBF_READ_AHEAD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Nathan Scottce8e9222006-01-11 15:39:08 +1100231 atomic_set(&bp->b_hold, 1);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100232 atomic_set(&bp->b_lru_ref, 1);
David Chinnerb4dd3302008-08-13 16:36:11 +1000233 init_completion(&bp->b_iowait);
Dave Chinner430cbeb2010-12-02 16:30:55 +1100234 INIT_LIST_HEAD(&bp->b_lru);
Nathan Scottce8e9222006-01-11 15:39:08 +1100235 INIT_LIST_HEAD(&bp->b_list);
Carlos Maiolino643c8c02018-01-24 13:38:49 -0800236 INIT_LIST_HEAD(&bp->b_li_list);
Thomas Gleixnera731cd112010-09-07 14:33:15 +0000237 sema_init(&bp->b_sema, 0); /* held, no waiters */
Dave Chinnera4082352013-08-28 10:18:06 +1000238 spin_lock_init(&bp->b_lock);
Nathan Scottce8e9222006-01-11 15:39:08 +1100239 bp->b_target = target;
Christoph Hellwigdbd329f12019-06-28 19:27:29 -0700240 bp->b_mount = target->bt_mount;
Dave Chinner3e85c862012-06-22 18:50:09 +1000241 bp->b_flags = flags;
Dave Chinnerde1cbee2012-04-23 15:58:50 +1000242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 /*
Dave Chinneraa0e8832012-04-23 15:58:52 +1000244 * Set length and io_length to the same value initially.
245 * I/O routines should use io_length, which will be the same in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 * most cases but may be reset (e.g. XFS recovery).
247 */
Dave Chinner3e85c862012-06-22 18:50:09 +1000248 error = xfs_buf_get_maps(bp, nmaps);
249 if (error) {
Darrick J. Wong182696f2021-10-12 11:09:23 -0700250 kmem_cache_free(xfs_buf_cache, bp);
Darrick J. Wong32dff5e2020-01-23 17:01:15 -0800251 return error;
Dave Chinner3e85c862012-06-22 18:50:09 +1000252 }
253
Dave Chinner4c7f65a2021-08-18 18:48:54 -0700254 bp->b_rhash_key = map[0].bm_bn;
Dave Chinner3e85c862012-06-22 18:50:09 +1000255 bp->b_length = 0;
256 for (i = 0; i < nmaps; i++) {
257 bp->b_maps[i].bm_bn = map[i].bm_bn;
258 bp->b_maps[i].bm_len = map[i].bm_len;
259 bp->b_length += map[i].bm_len;
260 }
Dave Chinner3e85c862012-06-22 18:50:09 +1000261
Nathan Scottce8e9222006-01-11 15:39:08 +1100262 atomic_set(&bp->b_pin_count, 0);
263 init_waitqueue_head(&bp->b_waiters);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Christoph Hellwigdbd329f12019-06-28 19:27:29 -0700265 XFS_STATS_INC(bp->b_mount, xb_create);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000266 trace_xfs_buf_init(bp, _RET_IP_);
Christoph Hellwig4347b9d2011-10-10 16:52:48 +0000267
Darrick J. Wong32dff5e2020-01-23 17:01:15 -0800268 *bpp = bp;
269 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
271
Dave Chinnere7d236a2021-06-01 13:40:36 +1000272static void
273xfs_buf_free_pages(
Dave Chinnere8222612020-12-16 16:07:34 -0800274 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
Dave Chinnere7d236a2021-06-01 13:40:36 +1000276 uint i;
277
278 ASSERT(bp->b_flags & _XBF_PAGES);
279
280 if (xfs_buf_is_vmapped(bp))
Christoph Hellwig54cd3aa2021-06-07 11:49:50 +1000281 vm_unmap_ram(bp->b_addr, bp->b_page_count);
Dave Chinnere7d236a2021-06-01 13:40:36 +1000282
283 for (i = 0; i < bp->b_page_count; i++) {
284 if (bp->b_pages[i])
285 __free_page(bp->b_pages[i]);
286 }
287 if (current->reclaim_state)
288 current->reclaim_state->reclaimed_slab += bp->b_page_count;
289
Dave Chinner02c51172021-06-01 13:40:36 +1000290 if (bp->b_pages != bp->b_page_array)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +1000291 kmem_free(bp->b_pages);
Dave Chinner02c51172021-06-01 13:40:36 +1000292 bp->b_pages = NULL;
Dave Chinnere7d236a2021-06-01 13:40:36 +1000293 bp->b_flags &= ~_XBF_PAGES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Christoph Hellwig25a40952019-10-24 22:25:37 -0700296static void
Nathan Scottce8e9222006-01-11 15:39:08 +1100297xfs_buf_free(
Dave Chinnere8222612020-12-16 16:07:34 -0800298 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000300 trace_xfs_buf_free(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Dave Chinner430cbeb2010-12-02 16:30:55 +1100302 ASSERT(list_empty(&bp->b_lru));
303
Dave Chinnere7d236a2021-06-01 13:40:36 +1000304 if (bp->b_flags & _XBF_PAGES)
305 xfs_buf_free_pages(bp);
306 else if (bp->b_flags & _XBF_KMEM)
Dave Chinner0e6e8472011-03-26 09:16:45 +1100307 kmem_free(bp->b_addr);
Dave Chinnere7d236a2021-06-01 13:40:36 +1000308
Dave Chinner3e85c862012-06-22 18:50:09 +1000309 xfs_buf_free_maps(bp);
Darrick J. Wong182696f2021-10-12 11:09:23 -0700310 kmem_cache_free(xfs_buf_cache, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311}
312
Dave Chinner0a683792021-06-01 13:40:02 +1000313static int
314xfs_buf_alloc_kmem(
315 struct xfs_buf *bp,
Dave Chinner0a683792021-06-01 13:40:02 +1000316 xfs_buf_flags_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317{
Dave Chinner0a683792021-06-01 13:40:02 +1000318 xfs_km_flags_t kmflag_mask = KM_NOFS;
Dave Chinner8bcac742021-06-07 11:50:48 +1000319 size_t size = BBTOB(bp->b_length);
Bill O'Donnell3219e8c2019-10-04 16:38:44 -0700320
Dave Chinner0a683792021-06-01 13:40:02 +1000321 /* Assure zeroed buffer for non-read cases. */
322 if (!(flags & XBF_READ))
Bill O'Donnell3219e8c2019-10-04 16:38:44 -0700323 kmflag_mask |= KM_ZERO;
Dave Chinner0a683792021-06-01 13:40:02 +1000324
Dave Chinner98fe2c32021-08-09 10:10:01 -0700325 bp->b_addr = kmem_alloc(size, kmflag_mask);
Dave Chinner0a683792021-06-01 13:40:02 +1000326 if (!bp->b_addr)
327 return -ENOMEM;
328
329 if (((unsigned long)(bp->b_addr + size - 1) & PAGE_MASK) !=
330 ((unsigned long)bp->b_addr & PAGE_MASK)) {
331 /* b_addr spans two pages - use alloc_page instead */
332 kmem_free(bp->b_addr);
333 bp->b_addr = NULL;
334 return -ENOMEM;
335 }
336 bp->b_offset = offset_in_page(bp->b_addr);
337 bp->b_pages = bp->b_page_array;
338 bp->b_pages[0] = kmem_to_page(bp->b_addr);
339 bp->b_page_count = 1;
340 bp->b_flags |= _XBF_KMEM;
341 return 0;
342}
343
344static int
345xfs_buf_alloc_pages(
346 struct xfs_buf *bp,
Dave Chinner0a683792021-06-01 13:40:02 +1000347 xfs_buf_flags_t flags)
348{
Dave Chinner289ae7b2021-06-07 11:50:17 +1000349 gfp_t gfp_mask = __GFP_NOWARN;
Dave Chinnerc9fa5632021-06-01 13:40:36 +1000350 long filled = 0;
Dave Chinner0a683792021-06-01 13:40:02 +1000351
Dave Chinner289ae7b2021-06-07 11:50:17 +1000352 if (flags & XBF_READ_AHEAD)
353 gfp_mask |= __GFP_NORETRY;
354 else
355 gfp_mask |= GFP_NOFS;
356
Dave Chinner02c51172021-06-01 13:40:36 +1000357 /* Make sure that we have a page list */
Christoph Hellwig934d10762021-06-07 11:50:00 +1000358 bp->b_page_count = DIV_ROUND_UP(BBTOB(bp->b_length), PAGE_SIZE);
Dave Chinner02c51172021-06-01 13:40:36 +1000359 if (bp->b_page_count <= XB_PAGES) {
360 bp->b_pages = bp->b_page_array;
361 } else {
362 bp->b_pages = kzalloc(sizeof(struct page *) * bp->b_page_count,
363 gfp_mask);
364 if (!bp->b_pages)
365 return -ENOMEM;
366 }
367 bp->b_flags |= _XBF_PAGES;
368
Dave Chinner0a683792021-06-01 13:40:02 +1000369 /* Assure zeroed buffer for non-read cases. */
370 if (!(flags & XBF_READ))
Bill O'Donnell3219e8c2019-10-04 16:38:44 -0700371 gfp_mask |= __GFP_ZERO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Dave Chinnerc9fa5632021-06-01 13:40:36 +1000373 /*
374 * Bulk filling of pages can take multiple calls. Not filling the entire
375 * array is not an allocation failure, so don't back off if we get at
376 * least one extra page.
377 */
378 for (;;) {
379 long last = filled;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Dave Chinnerc9fa5632021-06-01 13:40:36 +1000381 filled = alloc_pages_bulk_array(gfp_mask, bp->b_page_count,
382 bp->b_pages);
383 if (filled == bp->b_page_count) {
384 XFS_STATS_INC(bp->b_mount, xb_page_found);
385 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 }
387
Dave Chinnerc9fa5632021-06-01 13:40:36 +1000388 if (filled != last)
389 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Dave Chinnerc9fa5632021-06-01 13:40:36 +1000391 if (flags & XBF_READ_AHEAD) {
Dave Chinnere7d236a2021-06-01 13:40:36 +1000392 xfs_buf_free_pages(bp);
393 return -ENOMEM;
Dave Chinnerc9fa5632021-06-01 13:40:36 +1000394 }
395
396 XFS_STATS_INC(bp->b_mount, xb_page_retries);
397 congestion_wait(BLK_RW_ASYNC, HZ / 50);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 }
Dave Chinner0e6e8472011-03-26 09:16:45 +1100399 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
402/*
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300403 * Map buffer into kernel address-space if necessary.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 */
405STATIC int
Nathan Scottce8e9222006-01-11 15:39:08 +1100406_xfs_buf_map_pages(
Dave Chinnere8222612020-12-16 16:07:34 -0800407 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 uint flags)
409{
Dave Chinner0e6e8472011-03-26 09:16:45 +1100410 ASSERT(bp->b_flags & _XBF_PAGES);
Nathan Scottce8e9222006-01-11 15:39:08 +1100411 if (bp->b_page_count == 1) {
Dave Chinner0e6e8472011-03-26 09:16:45 +1100412 /* A single page buffer is always mappable */
Christoph Hellwig54cd3aa2021-06-07 11:49:50 +1000413 bp->b_addr = page_address(bp->b_pages[0]);
Dave Chinner611c9942012-04-23 15:59:07 +1000414 } else if (flags & XBF_UNMAPPED) {
415 bp->b_addr = NULL;
416 } else {
Dave Chinnera19fb382011-03-26 09:13:42 +1100417 int retried = 0;
Michal Hocko9ba1fb22017-05-03 14:53:19 -0700418 unsigned nofs_flag;
Dave Chinnera19fb382011-03-26 09:13:42 +1100419
Dave Chinnerae687e52014-03-07 16:19:14 +1100420 /*
Joe Perchescf085a12019-11-07 13:24:52 -0800421 * vm_map_ram() will allocate auxiliary structures (e.g.
Dave Chinnerae687e52014-03-07 16:19:14 +1100422 * pagetables) with GFP_KERNEL, yet we are likely to be under
423 * GFP_NOFS context here. Hence we need to tell memory reclaim
Michal Hocko9ba1fb22017-05-03 14:53:19 -0700424 * that we are in such a context via PF_MEMALLOC_NOFS to prevent
Dave Chinnerae687e52014-03-07 16:19:14 +1100425 * memory reclaim re-entering the filesystem here and
426 * potentially deadlocking.
427 */
Michal Hocko9ba1fb22017-05-03 14:53:19 -0700428 nofs_flag = memalloc_nofs_save();
Dave Chinnera19fb382011-03-26 09:13:42 +1100429 do {
430 bp->b_addr = vm_map_ram(bp->b_pages, bp->b_page_count,
Christoph Hellwigd4efd792020-06-01 21:51:27 -0700431 -1);
Dave Chinnera19fb382011-03-26 09:13:42 +1100432 if (bp->b_addr)
433 break;
434 vm_unmap_aliases();
435 } while (retried++ <= 1);
Michal Hocko9ba1fb22017-05-03 14:53:19 -0700436 memalloc_nofs_restore(nofs_flag);
Dave Chinnera19fb382011-03-26 09:13:42 +1100437
438 if (!bp->b_addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441
442 return 0;
443}
444
445/*
446 * Finding and Reading Buffers
447 */
Lucas Stach6031e732016-12-07 17:36:36 +1100448static int
449_xfs_buf_obj_cmp(
450 struct rhashtable_compare_arg *arg,
451 const void *obj)
452{
453 const struct xfs_buf_map *map = arg->key;
454 const struct xfs_buf *bp = obj;
455
456 /*
457 * The key hashing in the lookup path depends on the key being the
458 * first element of the compare_arg, make sure to assert this.
459 */
460 BUILD_BUG_ON(offsetof(struct xfs_buf_map, bm_bn) != 0);
461
Dave Chinner4c7f65a2021-08-18 18:48:54 -0700462 if (bp->b_rhash_key != map->bm_bn)
Lucas Stach6031e732016-12-07 17:36:36 +1100463 return 1;
464
465 if (unlikely(bp->b_length != map->bm_len)) {
466 /*
467 * found a block number match. If the range doesn't
468 * match, the only way this is allowed is if the buffer
469 * in the cache is stale and the transaction that made
470 * it stale has not yet committed. i.e. we are
471 * reallocating a busy extent. Skip this buffer and
472 * continue searching for an exact match.
473 */
474 ASSERT(bp->b_flags & XBF_STALE);
475 return 1;
476 }
477 return 0;
478}
479
480static const struct rhashtable_params xfs_buf_hash_params = {
481 .min_size = 32, /* empty AGs have minimal footprint */
482 .nelem_hint = 16,
483 .key_len = sizeof(xfs_daddr_t),
Dave Chinner4c7f65a2021-08-18 18:48:54 -0700484 .key_offset = offsetof(struct xfs_buf, b_rhash_key),
Lucas Stach6031e732016-12-07 17:36:36 +1100485 .head_offset = offsetof(struct xfs_buf, b_rhash_head),
486 .automatic_shrinking = true,
487 .obj_cmpfn = _xfs_buf_obj_cmp,
488};
489
490int
491xfs_buf_hash_init(
492 struct xfs_perag *pag)
493{
494 spin_lock_init(&pag->pag_buf_lock);
495 return rhashtable_init(&pag->pag_buf_hash, &xfs_buf_hash_params);
496}
497
498void
499xfs_buf_hash_destroy(
500 struct xfs_perag *pag)
501{
502 rhashtable_destroy(&pag->pag_buf_hash);
503}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505/*
Dave Chinnerb027d4c2018-04-18 08:25:21 -0700506 * Look up a buffer in the buffer cache and return it referenced and locked
507 * in @found_bp.
508 *
509 * If @new_bp is supplied and we have a lookup miss, insert @new_bp into the
510 * cache.
511 *
512 * If XBF_TRYLOCK is set in @flags, only try to lock the buffer and return
513 * -EAGAIN if we fail to lock it.
514 *
515 * Return values are:
516 * -EFSCORRUPTED if have been supplied with an invalid address
517 * -EAGAIN on trylock failure
518 * -ENOENT if we fail to find a match and @new_bp was NULL
519 * 0, with @found_bp:
520 * - @new_bp if we inserted it into the cache
521 * - the buffer we found and locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 */
Dave Chinnerb027d4c2018-04-18 08:25:21 -0700523static int
524xfs_buf_find(
Dave Chinnere70b73f2012-04-23 15:58:49 +1000525 struct xfs_buftarg *btp,
Dave Chinner3e85c862012-06-22 18:50:09 +1000526 struct xfs_buf_map *map,
527 int nmaps,
Nathan Scottce8e9222006-01-11 15:39:08 +1100528 xfs_buf_flags_t flags,
Dave Chinnerb027d4c2018-04-18 08:25:21 -0700529 struct xfs_buf *new_bp,
530 struct xfs_buf **found_bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Dave Chinner74f75a02010-09-24 19:59:04 +1000532 struct xfs_perag *pag;
Dave Chinnere8222612020-12-16 16:07:34 -0800533 struct xfs_buf *bp;
Lucas Stach6031e732016-12-07 17:36:36 +1100534 struct xfs_buf_map cmap = { .bm_bn = map[0].bm_bn };
Dave Chinner10616b82013-01-21 23:53:52 +1100535 xfs_daddr_t eofs;
Dave Chinner3e85c862012-06-22 18:50:09 +1000536 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Dave Chinnerb027d4c2018-04-18 08:25:21 -0700538 *found_bp = NULL;
539
Dave Chinner3e85c862012-06-22 18:50:09 +1000540 for (i = 0; i < nmaps; i++)
Lucas Stach6031e732016-12-07 17:36:36 +1100541 cmap.bm_len += map[i].bm_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 /* Check for IOs smaller than the sector size / not sector aligned */
Lucas Stach6031e732016-12-07 17:36:36 +1100544 ASSERT(!(BBTOB(cmap.bm_len) < btp->bt_meta_sectorsize));
545 ASSERT(!(BBTOB(cmap.bm_bn) & (xfs_off_t)btp->bt_meta_sectormask));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
Dave Chinner10616b82013-01-21 23:53:52 +1100547 /*
548 * Corrupted block numbers can get through to here, unfortunately, so we
549 * have to check that the buffer falls within the filesystem bounds.
550 */
551 eofs = XFS_FSB_TO_BB(btp->bt_mount, btp->bt_mount->m_sb.sb_dblocks);
Lucas Stach6031e732016-12-07 17:36:36 +1100552 if (cmap.bm_bn < 0 || cmap.bm_bn >= eofs) {
Dave Chinner10616b82013-01-21 23:53:52 +1100553 xfs_alert(btp->bt_mount,
Darrick J. Wongc219b012018-01-08 11:39:18 -0800554 "%s: daddr 0x%llx out of range, EOFS 0x%llx",
Lucas Stach6031e732016-12-07 17:36:36 +1100555 __func__, cmap.bm_bn, eofs);
Dave Chinner7bc0dc22013-05-21 18:02:08 +1000556 WARN_ON(1);
Dave Chinnerb027d4c2018-04-18 08:25:21 -0700557 return -EFSCORRUPTED;
Dave Chinner10616b82013-01-21 23:53:52 +1100558 }
559
Dave Chinner74f75a02010-09-24 19:59:04 +1000560 pag = xfs_perag_get(btp->bt_mount,
Lucas Stach6031e732016-12-07 17:36:36 +1100561 xfs_daddr_to_agno(btp->bt_mount, cmap.bm_bn));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Dave Chinner74f75a02010-09-24 19:59:04 +1000563 spin_lock(&pag->pag_buf_lock);
Lucas Stach6031e732016-12-07 17:36:36 +1100564 bp = rhashtable_lookup_fast(&pag->pag_buf_hash, &cmap,
565 xfs_buf_hash_params);
566 if (bp) {
567 atomic_inc(&bp->b_hold);
568 goto found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
570
571 /* No match found */
Dave Chinnerb027d4c2018-04-18 08:25:21 -0700572 if (!new_bp) {
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100573 XFS_STATS_INC(btp->bt_mount, xb_miss_locked);
Dave Chinner74f75a02010-09-24 19:59:04 +1000574 spin_unlock(&pag->pag_buf_lock);
575 xfs_perag_put(pag);
Dave Chinnerb027d4c2018-04-18 08:25:21 -0700576 return -ENOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 }
Dave Chinnerb027d4c2018-04-18 08:25:21 -0700578
579 /* the buffer keeps the perag reference until it is freed */
580 new_bp->b_pag = pag;
581 rhashtable_insert_fast(&pag->pag_buf_hash, &new_bp->b_rhash_head,
582 xfs_buf_hash_params);
583 spin_unlock(&pag->pag_buf_lock);
584 *found_bp = new_bp;
585 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587found:
Dave Chinner74f75a02010-09-24 19:59:04 +1000588 spin_unlock(&pag->pag_buf_lock);
589 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200591 if (!xfs_buf_trylock(bp)) {
592 if (flags & XBF_TRYLOCK) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100593 xfs_buf_rele(bp);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100594 XFS_STATS_INC(btp->bt_mount, xb_busy_locked);
Dave Chinnerb027d4c2018-04-18 08:25:21 -0700595 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
Christoph Hellwig0c842ad2011-07-08 14:36:19 +0200597 xfs_buf_lock(bp);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100598 XFS_STATS_INC(btp->bt_mount, xb_get_locked_waited);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 }
600
Dave Chinner0e6e8472011-03-26 09:16:45 +1100601 /*
602 * if the buffer is stale, clear all the external state associated with
603 * it. We need to keep flags such as how we allocated the buffer memory
604 * intact here.
605 */
Nathan Scottce8e9222006-01-11 15:39:08 +1100606 if (bp->b_flags & XBF_STALE) {
607 ASSERT((bp->b_flags & _XBF_DELWRI_Q) == 0);
Dave Chinner611c9942012-04-23 15:59:07 +1000608 bp->b_flags &= _XBF_KMEM | _XBF_PAGES;
Dave Chinner1813dd62012-11-14 17:54:40 +1100609 bp->b_ops = NULL;
David Chinner2f926582005-09-05 08:33:35 +1000610 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000611
612 trace_xfs_buf_find(bp, flags, _RET_IP_);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100613 XFS_STATS_INC(btp->bt_mount, xb_get_locked);
Dave Chinnerb027d4c2018-04-18 08:25:21 -0700614 *found_bp = bp;
615 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
Dave Chinner8925a3d2018-04-18 08:25:20 -0700618struct xfs_buf *
619xfs_buf_incore(
620 struct xfs_buftarg *target,
621 xfs_daddr_t blkno,
622 size_t numblks,
623 xfs_buf_flags_t flags)
624{
Dave Chinnerb027d4c2018-04-18 08:25:21 -0700625 struct xfs_buf *bp;
626 int error;
Dave Chinner8925a3d2018-04-18 08:25:20 -0700627 DEFINE_SINGLE_BUF_MAP(map, blkno, numblks);
Dave Chinnerb027d4c2018-04-18 08:25:21 -0700628
629 error = xfs_buf_find(target, &map, 1, flags, NULL, &bp);
630 if (error)
631 return NULL;
632 return bp;
Dave Chinner8925a3d2018-04-18 08:25:20 -0700633}
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635/*
Dave Chinner38158322011-09-30 04:45:02 +0000636 * Assembles a buffer covering the specified range. The code is optimised for
637 * cache hits, as metadata intensive workloads will see 3 orders of magnitude
638 * more hits than misses.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 */
Darrick J. Wong3848b5f2020-01-23 17:01:15 -0800640int
Dave Chinner6dde2702012-06-22 18:50:10 +1000641xfs_buf_get_map(
642 struct xfs_buftarg *target,
643 struct xfs_buf_map *map,
644 int nmaps,
Darrick J. Wong3848b5f2020-01-23 17:01:15 -0800645 xfs_buf_flags_t flags,
646 struct xfs_buf **bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Dave Chinner38158322011-09-30 04:45:02 +0000648 struct xfs_buf *bp;
649 struct xfs_buf *new_bp;
Shaokun Zhang9bb38aa2021-06-18 08:14:31 -0700650 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Darrick J. Wong3848b5f2020-01-23 17:01:15 -0800652 *bpp = NULL;
Dave Chinnerb027d4c2018-04-18 08:25:21 -0700653 error = xfs_buf_find(target, map, nmaps, flags, NULL, &bp);
Darrick J. Wong3848b5f2020-01-23 17:01:15 -0800654 if (!error)
Dave Chinner38158322011-09-30 04:45:02 +0000655 goto found;
Darrick J. Wong3848b5f2020-01-23 17:01:15 -0800656 if (error != -ENOENT)
657 return error;
Dave Chinner38158322011-09-30 04:45:02 +0000658
Darrick J. Wong32dff5e2020-01-23 17:01:15 -0800659 error = _xfs_buf_alloc(target, map, nmaps, flags, &new_bp);
660 if (error)
Darrick J. Wong3848b5f2020-01-23 17:01:15 -0800661 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Dave Chinner8bcac742021-06-07 11:50:48 +1000663 /*
664 * For buffers that fit entirely within a single page, first attempt to
665 * allocate the memory from the heap to minimise memory usage. If we
666 * can't get heap memory for these small buffers, we fall back to using
667 * the page allocator.
668 */
669 if (BBTOB(new_bp->b_length) >= PAGE_SIZE ||
670 xfs_buf_alloc_kmem(new_bp, flags) < 0) {
671 error = xfs_buf_alloc_pages(new_bp, flags);
672 if (error)
673 goto out_free_buf;
674 }
Dave Chinner38158322011-09-30 04:45:02 +0000675
Dave Chinnerb027d4c2018-04-18 08:25:21 -0700676 error = xfs_buf_find(target, map, nmaps, flags, new_bp, &bp);
Christoph Hellwig170041f2021-06-07 11:50:47 +1000677 if (error)
678 goto out_free_buf;
Dave Chinnerfe2429b2012-04-23 15:58:45 +1000679
680 if (bp != new_bp)
681 xfs_buf_free(new_bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Dave Chinner38158322011-09-30 04:45:02 +0000683found:
Dave Chinner611c9942012-04-23 15:59:07 +1000684 if (!bp->b_addr) {
Nathan Scottce8e9222006-01-11 15:39:08 +1100685 error = _xfs_buf_map_pages(bp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (unlikely(error)) {
Darrick J. Wong93baa552020-02-21 07:40:44 -0800687 xfs_warn_ratelimited(target->bt_mount,
688 "%s: failed to map %u pages", __func__,
689 bp->b_page_count);
Dave Chinnera8acad72012-04-23 15:58:54 +1000690 xfs_buf_relse(bp);
Darrick J. Wong3848b5f2020-01-23 17:01:15 -0800691 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
693 }
694
Dave Chinnerb79f4a12016-01-12 07:03:44 +1100695 /*
696 * Clear b_error if this is a lookup from a caller that doesn't expect
697 * valid data to be found in the buffer.
698 */
699 if (!(flags & XBF_READ))
700 xfs_buf_ioerror(bp, 0);
701
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100702 XFS_STATS_INC(target->bt_mount, xb_get);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000703 trace_xfs_buf_get(bp, flags, _RET_IP_);
Darrick J. Wong3848b5f2020-01-23 17:01:15 -0800704 *bpp = bp;
705 return 0;
Christoph Hellwig170041f2021-06-07 11:50:47 +1000706out_free_buf:
707 xfs_buf_free(new_bp);
708 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
710
Christoph Hellwig26e328752020-09-01 10:55:47 -0700711int
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100712_xfs_buf_read(
Dave Chinnere8222612020-12-16 16:07:34 -0800713 struct xfs_buf *bp,
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100714 xfs_buf_flags_t flags)
715{
Christoph Hellwig43ff2122012-04-23 15:58:39 +1000716 ASSERT(!(flags & XBF_WRITE));
Mark Tinguelyf4b42422012-12-04 17:18:02 -0600717 ASSERT(bp->b_maps[0].bm_bn != XFS_BUF_DADDR_NULL);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100718
Christoph Hellwig26e328752020-09-01 10:55:47 -0700719 bp->b_flags &= ~(XBF_WRITE | XBF_ASYNC | XBF_READ_AHEAD | XBF_DONE);
Christoph Hellwig1d5ae5d2011-07-08 14:36:32 +0200720 bp->b_flags |= flags & (XBF_READ | XBF_ASYNC | XBF_READ_AHEAD);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100721
Brian Foster6af88cd2018-07-11 22:26:35 -0700722 return xfs_buf_submit(bp);
Christoph Hellwig5d765b92008-12-03 12:20:26 +0100723}
724
Darrick J. Wong1aff5692018-10-18 17:20:30 +1100725/*
Brian Foster75d02302019-02-06 09:25:29 -0800726 * Reverify a buffer found in cache without an attached ->b_ops.
Darrick J. Wongadd46b32019-02-03 14:03:59 -0800727 *
Brian Foster75d02302019-02-06 09:25:29 -0800728 * If the caller passed an ops structure and the buffer doesn't have ops
729 * assigned, set the ops and use it to verify the contents. If verification
730 * fails, clear XBF_DONE. We assume the buffer has no recorded errors and is
731 * already in XBF_DONE state on entry.
Darrick J. Wongadd46b32019-02-03 14:03:59 -0800732 *
Brian Foster75d02302019-02-06 09:25:29 -0800733 * Under normal operations, every in-core buffer is verified on read I/O
734 * completion. There are two scenarios that can lead to in-core buffers without
735 * an assigned ->b_ops. The first is during log recovery of buffers on a V4
736 * filesystem, though these buffers are purged at the end of recovery. The
737 * other is online repair, which intentionally reads with a NULL buffer ops to
738 * run several verifiers across an in-core buffer in order to establish buffer
739 * type. If repair can't establish that, the buffer will be left in memory
740 * with NULL buffer ops.
Darrick J. Wong1aff5692018-10-18 17:20:30 +1100741 */
742int
Brian Foster75d02302019-02-06 09:25:29 -0800743xfs_buf_reverify(
Darrick J. Wong1aff5692018-10-18 17:20:30 +1100744 struct xfs_buf *bp,
745 const struct xfs_buf_ops *ops)
746{
747 ASSERT(bp->b_flags & XBF_DONE);
748 ASSERT(bp->b_error == 0);
749
750 if (!ops || bp->b_ops)
751 return 0;
752
753 bp->b_ops = ops;
754 bp->b_ops->verify_read(bp);
755 if (bp->b_error)
756 bp->b_flags &= ~XBF_DONE;
757 return bp->b_error;
758}
759
Darrick J. Wong4ed8e272020-01-23 17:01:16 -0800760int
Dave Chinner6dde2702012-06-22 18:50:10 +1000761xfs_buf_read_map(
762 struct xfs_buftarg *target,
763 struct xfs_buf_map *map,
764 int nmaps,
Dave Chinnerc3f8fc72012-11-12 22:54:01 +1100765 xfs_buf_flags_t flags,
Darrick J. Wong4ed8e272020-01-23 17:01:16 -0800766 struct xfs_buf **bpp,
Darrick J. Wongcdbcf822020-01-23 17:01:20 -0800767 const struct xfs_buf_ops *ops,
768 xfs_failaddr_t fa)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Dave Chinner6dde2702012-06-22 18:50:10 +1000770 struct xfs_buf *bp;
Darrick J. Wong3848b5f2020-01-23 17:01:15 -0800771 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Nathan Scottce8e9222006-01-11 15:39:08 +1100773 flags |= XBF_READ;
Darrick J. Wong4ed8e272020-01-23 17:01:16 -0800774 *bpp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Darrick J. Wong3848b5f2020-01-23 17:01:15 -0800776 error = xfs_buf_get_map(target, map, nmaps, flags, &bp);
777 if (error)
Darrick J. Wong4ed8e272020-01-23 17:01:16 -0800778 return error;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000779
Darrick J. Wong1aff5692018-10-18 17:20:30 +1100780 trace_xfs_buf_read(bp, flags, _RET_IP_);
781
782 if (!(bp->b_flags & XBF_DONE)) {
Darrick J. Wong4ed8e272020-01-23 17:01:16 -0800783 /* Initiate the buffer read and wait. */
Darrick J. Wong1aff5692018-10-18 17:20:30 +1100784 XFS_STATS_INC(target->bt_mount, xb_get_read);
785 bp->b_ops = ops;
Darrick J. Wong4ed8e272020-01-23 17:01:16 -0800786 error = _xfs_buf_read(bp, flags);
787
788 /* Readahead iodone already dropped the buffer, so exit. */
789 if (flags & XBF_ASYNC)
790 return 0;
791 } else {
792 /* Buffer already read; all we need to do is check it. */
793 error = xfs_buf_reverify(bp, ops);
794
795 /* Readahead already finished; drop the buffer and exit. */
796 if (flags & XBF_ASYNC) {
797 xfs_buf_relse(bp);
798 return 0;
799 }
800
801 /* We do not want read in the flags */
802 bp->b_flags &= ~XBF_READ;
803 ASSERT(bp->b_ops != NULL || ops == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805
Darrick J. Wong4ed8e272020-01-23 17:01:16 -0800806 /*
807 * If we've had a read error, then the contents of the buffer are
808 * invalid and should not be used. To ensure that a followup read tries
809 * to pull the buffer from disk again, we clear the XBF_DONE flag and
810 * mark the buffer stale. This ensures that anyone who has a current
811 * reference to the buffer will interpret it's contents correctly and
812 * future cache lookups will also treat it as an empty, uninitialised
813 * buffer.
814 */
815 if (error) {
Dave Chinner75c8c50f2021-08-18 18:46:53 -0700816 if (!xfs_is_shutdown(target->bt_mount))
Darrick J. Wongcdbcf822020-01-23 17:01:20 -0800817 xfs_buf_ioerror_alert(bp, fa);
Darrick J. Wong1aff5692018-10-18 17:20:30 +1100818
Darrick J. Wong4ed8e272020-01-23 17:01:16 -0800819 bp->b_flags &= ~XBF_DONE;
820 xfs_buf_stale(bp);
Darrick J. Wong1aff5692018-10-18 17:20:30 +1100821 xfs_buf_relse(bp);
Darrick J. Wong4ed8e272020-01-23 17:01:16 -0800822
823 /* bad CRC means corrupted metadata */
824 if (error == -EFSBADCRC)
825 error = -EFSCORRUPTED;
826 return error;
Darrick J. Wong1aff5692018-10-18 17:20:30 +1100827 }
828
Darrick J. Wong4ed8e272020-01-23 17:01:16 -0800829 *bpp = bp;
830 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831}
832
833/*
Nathan Scottce8e9222006-01-11 15:39:08 +1100834 * If we are not low on memory then do the readahead in a deadlock
835 * safe manner.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 */
837void
Dave Chinner6dde2702012-06-22 18:50:10 +1000838xfs_buf_readahead_map(
839 struct xfs_buftarg *target,
840 struct xfs_buf_map *map,
Dave Chinnerc3f8fc72012-11-12 22:54:01 +1100841 int nmaps,
Dave Chinner1813dd62012-11-14 17:54:40 +1100842 const struct xfs_buf_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843{
Darrick J. Wong4ed8e272020-01-23 17:01:16 -0800844 struct xfs_buf *bp;
845
Christoph Hellwiga11d7fc2021-08-09 16:17:44 +0200846 if (bdi_read_congested(target->bt_bdev->bd_disk->bdi))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 return;
848
Dave Chinner6dde2702012-06-22 18:50:10 +1000849 xfs_buf_read_map(target, map, nmaps,
Darrick J. Wongcdbcf822020-01-23 17:01:20 -0800850 XBF_TRYLOCK | XBF_ASYNC | XBF_READ_AHEAD, &bp, ops,
851 __this_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
Dave Chinner5adc94c2010-09-24 21:58:31 +1000854/*
855 * Read an uncached buffer from disk. Allocates and returns a locked
Dave Chinner4c7f65a2021-08-18 18:48:54 -0700856 * buffer containing the disk contents or nothing. Uncached buffers always have
857 * a cache index of XFS_BUF_DADDR_NULL so we can easily determine if the buffer
858 * is cached or uncached during fault diagnosis.
Dave Chinner5adc94c2010-09-24 21:58:31 +1000859 */
Dave Chinnerba3726742014-10-02 09:05:32 +1000860int
Dave Chinner5adc94c2010-09-24 21:58:31 +1000861xfs_buf_read_uncached(
Dave Chinner5adc94c2010-09-24 21:58:31 +1000862 struct xfs_buftarg *target,
863 xfs_daddr_t daddr,
Dave Chinnere70b73f2012-04-23 15:58:49 +1000864 size_t numblks,
Dave Chinnerc3f8fc72012-11-12 22:54:01 +1100865 int flags,
Dave Chinnerba3726742014-10-02 09:05:32 +1000866 struct xfs_buf **bpp,
Dave Chinner1813dd62012-11-14 17:54:40 +1100867 const struct xfs_buf_ops *ops)
Dave Chinner5adc94c2010-09-24 21:58:31 +1000868{
Dave Chinnereab4e632012-11-12 22:54:02 +1100869 struct xfs_buf *bp;
Darrick J. Wong2842b6d2020-01-23 17:01:17 -0800870 int error;
Dave Chinner5adc94c2010-09-24 21:58:31 +1000871
Dave Chinnerba3726742014-10-02 09:05:32 +1000872 *bpp = NULL;
873
Darrick J. Wong2842b6d2020-01-23 17:01:17 -0800874 error = xfs_buf_get_uncached(target, numblks, flags, &bp);
875 if (error)
876 return error;
Dave Chinner5adc94c2010-09-24 21:58:31 +1000877
878 /* set up the buffer for a read IO */
Dave Chinner3e85c862012-06-22 18:50:09 +1000879 ASSERT(bp->b_map_count == 1);
Dave Chinner4c7f65a2021-08-18 18:48:54 -0700880 bp->b_rhash_key = XFS_BUF_DADDR_NULL;
Dave Chinner3e85c862012-06-22 18:50:09 +1000881 bp->b_maps[0].bm_bn = daddr;
Dave Chinnercbb7baa2012-06-22 18:50:08 +1000882 bp->b_flags |= XBF_READ;
Dave Chinner1813dd62012-11-14 17:54:40 +1100883 bp->b_ops = ops;
Dave Chinner5adc94c2010-09-24 21:58:31 +1000884
Brian Foster6af88cd2018-07-11 22:26:35 -0700885 xfs_buf_submit(bp);
Dave Chinnerba3726742014-10-02 09:05:32 +1000886 if (bp->b_error) {
Darrick J. Wong2842b6d2020-01-23 17:01:17 -0800887 error = bp->b_error;
Christoph Hellwig83a0adc2013-12-17 00:03:52 -0800888 xfs_buf_relse(bp);
Dave Chinnerba3726742014-10-02 09:05:32 +1000889 return error;
Christoph Hellwig83a0adc2013-12-17 00:03:52 -0800890 }
Dave Chinnerba3726742014-10-02 09:05:32 +1000891
892 *bpp = bp;
893 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
Darrick J. Wong2842b6d2020-01-23 17:01:17 -0800896int
Dave Chinner686865f2010-09-24 20:07:47 +1000897xfs_buf_get_uncached(
898 struct xfs_buftarg *target,
Dave Chinnere70b73f2012-04-23 15:58:49 +1000899 size_t numblks,
Darrick J. Wong2842b6d2020-01-23 17:01:17 -0800900 int flags,
901 struct xfs_buf **bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902{
Dave Chinner07b5c5a2021-06-01 13:40:35 +1000903 int error;
Dave Chinner3e85c862012-06-22 18:50:09 +1000904 struct xfs_buf *bp;
905 DEFINE_SINGLE_BUF_MAP(map, XFS_BUF_DADDR_NULL, numblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
Darrick J. Wong2842b6d2020-01-23 17:01:17 -0800907 *bpp = NULL;
908
Brian Fosterc891c302016-07-20 11:13:43 +1000909 /* flags might contain irrelevant bits, pass only what we care about */
Darrick J. Wong32dff5e2020-01-23 17:01:15 -0800910 error = _xfs_buf_alloc(target, &map, 1, flags & XBF_NO_IOACCT, &bp);
911 if (error)
Dave Chinner07b5c5a2021-06-01 13:40:35 +1000912 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Christoph Hellwig934d10762021-06-07 11:50:00 +1000914 error = xfs_buf_alloc_pages(bp, flags);
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000915 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 goto fail_free_buf;
917
Dave Chinner611c9942012-04-23 15:59:07 +1000918 error = _xfs_buf_map_pages(bp, 0);
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000919 if (unlikely(error)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100920 xfs_warn(target->bt_mount,
Eric Sandeen08e96e12013-10-11 20:59:05 -0500921 "%s: failed to map pages", __func__);
Dave Chinner07b5c5a2021-06-01 13:40:35 +1000922 goto fail_free_buf;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000923 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
Dave Chinner686865f2010-09-24 20:07:47 +1000925 trace_xfs_buf_get_uncached(bp, _RET_IP_);
Darrick J. Wong2842b6d2020-01-23 17:01:17 -0800926 *bpp = bp;
927 return 0;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000928
Dave Chinner07b5c5a2021-06-01 13:40:35 +1000929fail_free_buf:
930 xfs_buf_free(bp);
Darrick J. Wong2842b6d2020-01-23 17:01:17 -0800931 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
933
934/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 * Increment reference count on buffer, to hold the buffer concurrently
936 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 * Must hold the buffer already to call this function.
938 */
939void
Nathan Scottce8e9222006-01-11 15:39:08 +1100940xfs_buf_hold(
Dave Chinnere8222612020-12-16 16:07:34 -0800941 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000943 trace_xfs_buf_hold(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100944 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945}
946
947/*
Brian Foster9c7504a2016-07-20 11:15:28 +1000948 * Release a hold on the specified buffer. If the hold count is 1, the buffer is
949 * placed on LRU or freed (depending on b_lru_ref).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 */
951void
Nathan Scottce8e9222006-01-11 15:39:08 +1100952xfs_buf_rele(
Dave Chinnere8222612020-12-16 16:07:34 -0800953 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954{
Dave Chinner74f75a02010-09-24 19:59:04 +1000955 struct xfs_perag *pag = bp->b_pag;
Brian Foster9c7504a2016-07-20 11:15:28 +1000956 bool release;
957 bool freebuf = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000959 trace_xfs_buf_rele(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
Dave Chinner74f75a02010-09-24 19:59:04 +1000961 if (!pag) {
Dave Chinner430cbeb2010-12-02 16:30:55 +1100962 ASSERT(list_empty(&bp->b_lru));
Brian Foster9c7504a2016-07-20 11:15:28 +1000963 if (atomic_dec_and_test(&bp->b_hold)) {
964 xfs_buf_ioacct_dec(bp);
Nathan Scottfad3aa12006-02-01 12:14:52 +1100965 xfs_buf_free(bp);
Brian Foster9c7504a2016-07-20 11:15:28 +1000966 }
Nathan Scottfad3aa12006-02-01 12:14:52 +1100967 return;
968 }
969
Lachlan McIlroy37906892008-08-13 15:42:10 +1000970 ASSERT(atomic_read(&bp->b_hold) > 0);
Dave Chinnera4082352013-08-28 10:18:06 +1000971
Dave Chinner37fd1672018-10-18 17:21:29 +1100972 /*
973 * We grab the b_lock here first to serialise racing xfs_buf_rele()
974 * calls. The pag_buf_lock being taken on the last reference only
975 * serialises against racing lookups in xfs_buf_find(). IOWs, the second
976 * to last reference we drop here is not serialised against the last
977 * reference until we take bp->b_lock. Hence if we don't grab b_lock
978 * first, the last "release" reference can win the race to the lock and
979 * free the buffer before the second-to-last reference is processed,
980 * leading to a use-after-free scenario.
981 */
Brian Foster9c7504a2016-07-20 11:15:28 +1000982 spin_lock(&bp->b_lock);
Dave Chinner37fd1672018-10-18 17:21:29 +1100983 release = atomic_dec_and_lock(&bp->b_hold, &pag->pag_buf_lock);
Brian Foster9c7504a2016-07-20 11:15:28 +1000984 if (!release) {
985 /*
986 * Drop the in-flight state if the buffer is already on the LRU
987 * and it holds the only reference. This is racy because we
988 * haven't acquired the pag lock, but the use of _XBF_IN_FLIGHT
989 * ensures the decrement occurs only once per-buf.
990 */
991 if ((atomic_read(&bp->b_hold) == 1) && !list_empty(&bp->b_lru))
Brian Foster63db7c82017-05-31 08:22:52 -0700992 __xfs_buf_ioacct_dec(bp);
Brian Foster9c7504a2016-07-20 11:15:28 +1000993 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 }
Brian Foster9c7504a2016-07-20 11:15:28 +1000995
996 /* the last reference has been dropped ... */
Brian Foster63db7c82017-05-31 08:22:52 -0700997 __xfs_buf_ioacct_dec(bp);
Brian Foster9c7504a2016-07-20 11:15:28 +1000998 if (!(bp->b_flags & XBF_STALE) && atomic_read(&bp->b_lru_ref)) {
999 /*
1000 * If the buffer is added to the LRU take a new reference to the
1001 * buffer for the LRU and clear the (now stale) dispose list
1002 * state flag
1003 */
1004 if (list_lru_add(&bp->b_target->bt_lru, &bp->b_lru)) {
1005 bp->b_state &= ~XFS_BSTATE_DISPOSE;
1006 atomic_inc(&bp->b_hold);
1007 }
1008 spin_unlock(&pag->pag_buf_lock);
1009 } else {
1010 /*
1011 * most of the time buffers will already be removed from the
1012 * LRU, so optimise that case by checking for the
1013 * XFS_BSTATE_DISPOSE flag indicating the last list the buffer
1014 * was on was the disposal list
1015 */
1016 if (!(bp->b_state & XFS_BSTATE_DISPOSE)) {
1017 list_lru_del(&bp->b_target->bt_lru, &bp->b_lru);
1018 } else {
1019 ASSERT(list_empty(&bp->b_lru));
1020 }
1021
1022 ASSERT(!(bp->b_flags & _XBF_DELWRI_Q));
Lucas Stach6031e732016-12-07 17:36:36 +11001023 rhashtable_remove_fast(&pag->pag_buf_hash, &bp->b_rhash_head,
1024 xfs_buf_hash_params);
Brian Foster9c7504a2016-07-20 11:15:28 +10001025 spin_unlock(&pag->pag_buf_lock);
1026 xfs_perag_put(pag);
1027 freebuf = true;
1028 }
1029
1030out_unlock:
1031 spin_unlock(&bp->b_lock);
1032
1033 if (freebuf)
1034 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035}
1036
1037
1038/*
Dave Chinner0e6e8472011-03-26 09:16:45 +11001039 * Lock a buffer object, if it is not already locked.
Dave Chinner90810b92010-11-30 15:16:16 +11001040 *
1041 * If we come across a stale, pinned, locked buffer, we know that we are
1042 * being asked to lock a buffer that has been reallocated. Because it is
1043 * pinned, we know that the log has not been pushed to disk and hence it
1044 * will still be locked. Rather than continuing to have trylock attempts
1045 * fail until someone else pushes the log, push it ourselves before
1046 * returning. This means that the xfsaild will not get stuck trying
1047 * to push on stale inode buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 */
1049int
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001050xfs_buf_trylock(
1051 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052{
1053 int locked;
1054
Nathan Scottce8e9222006-01-11 15:39:08 +11001055 locked = down_trylock(&bp->b_sema) == 0;
Eric Sandeenfa6c6682018-08-10 13:56:25 -07001056 if (locked)
Darrick J. Wong479c6412016-06-21 11:53:28 +10001057 trace_xfs_buf_trylock(bp, _RET_IP_);
Eric Sandeenfa6c6682018-08-10 13:56:25 -07001058 else
Darrick J. Wong479c6412016-06-21 11:53:28 +10001059 trace_xfs_buf_trylock_fail(bp, _RET_IP_);
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001060 return locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063/*
Dave Chinner0e6e8472011-03-26 09:16:45 +11001064 * Lock a buffer object.
Dave Chinnered3b4d62010-05-21 12:07:08 +10001065 *
1066 * If we come across a stale, pinned, locked buffer, we know that we
1067 * are being asked to lock a buffer that has been reallocated. Because
1068 * it is pinned, we know that the log has not been pushed to disk and
1069 * hence it will still be locked. Rather than sleeping until someone
1070 * else pushes the log, push it ourselves before trying to get the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001072void
1073xfs_buf_lock(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001074 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001076 trace_xfs_buf_lock(bp, _RET_IP_);
1077
Dave Chinnered3b4d62010-05-21 12:07:08 +10001078 if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07001079 xfs_log_force(bp->b_mount, 0);
Nathan Scottce8e9222006-01-11 15:39:08 +11001080 down(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001081
1082 trace_xfs_buf_lock_done(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083}
1084
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085void
Nathan Scottce8e9222006-01-11 15:39:08 +11001086xfs_buf_unlock(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001087 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Brian Foster20e8a062017-04-21 12:40:44 -07001089 ASSERT(xfs_buf_islocked(bp));
1090
Nathan Scottce8e9222006-01-11 15:39:08 +11001091 up(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001092 trace_xfs_buf_unlock(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093}
1094
Nathan Scottce8e9222006-01-11 15:39:08 +11001095STATIC void
1096xfs_buf_wait_unpin(
Dave Chinnere8222612020-12-16 16:07:34 -08001097 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098{
1099 DECLARE_WAITQUEUE (wait, current);
1100
Nathan Scottce8e9222006-01-11 15:39:08 +11001101 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 return;
1103
Nathan Scottce8e9222006-01-11 15:39:08 +11001104 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 for (;;) {
1106 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +11001107 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 break;
Jens Axboe7eaceac2011-03-10 08:52:07 +01001109 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001111 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 set_current_state(TASK_RUNNING);
1113}
1114
Christoph Hellwigf58d0ea2020-09-01 10:55:44 -07001115static void
1116xfs_buf_ioerror_alert_ratelimited(
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001117 struct xfs_buf *bp)
1118{
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001119 static unsigned long lasttime;
1120 static struct xfs_buftarg *lasttarg;
1121
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001122 if (bp->b_target != lasttarg ||
1123 time_after(jiffies, (lasttime + 5*HZ))) {
1124 lasttime = jiffies;
1125 xfs_buf_ioerror_alert(bp, __this_address);
1126 }
1127 lasttarg = bp->b_target;
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001128}
1129
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001130/*
1131 * Account for this latest trip around the retry handler, and decide if
1132 * we've failed enough times to constitute a permanent failure.
1133 */
1134static bool
1135xfs_buf_ioerror_permanent(
1136 struct xfs_buf *bp,
1137 struct xfs_error_cfg *cfg)
1138{
1139 struct xfs_mount *mp = bp->b_mount;
1140
1141 if (cfg->max_retries != XFS_ERR_RETRY_FOREVER &&
1142 ++bp->b_retries > cfg->max_retries)
1143 return true;
1144 if (cfg->retry_timeout != XFS_ERR_RETRY_FOREVER &&
1145 time_after(jiffies, cfg->retry_timeout + bp->b_first_retry_time))
1146 return true;
1147
1148 /* At unmount we may treat errors differently */
Dave Chinner2e973b22021-08-18 18:46:52 -07001149 if (xfs_is_unmounting(mp) && mp->m_fail_unmount)
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001150 return true;
1151
1152 return false;
1153}
1154
1155/*
1156 * On a sync write or shutdown we just want to stale the buffer and let the
1157 * caller handle the error in bp->b_error appropriately.
1158 *
1159 * If the write was asynchronous then no one will be looking for the error. If
1160 * this is the first failure of this type, clear the error state and write the
1161 * buffer out again. This means we always retry an async write failure at least
1162 * once, but we also need to set the buffer up to behave correctly now for
1163 * repeated failures.
1164 *
1165 * If we get repeated async write failures, then we take action according to the
1166 * error configuration we have been set up to use.
1167 *
Christoph Hellwig70796c62020-09-01 10:55:45 -07001168 * Returns true if this function took care of error handling and the caller must
1169 * not touch the buffer again. Return false if the caller should proceed with
1170 * normal I/O completion handling.
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001171 */
Christoph Hellwig70796c62020-09-01 10:55:45 -07001172static bool
1173xfs_buf_ioend_handle_error(
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001174 struct xfs_buf *bp)
1175{
1176 struct xfs_mount *mp = bp->b_mount;
1177 struct xfs_error_cfg *cfg;
1178
Christoph Hellwigf58d0ea2020-09-01 10:55:44 -07001179 /*
1180 * If we've already decided to shutdown the filesystem because of I/O
1181 * errors, there's no point in giving this a retry.
1182 */
Dave Chinner75c8c50f2021-08-18 18:46:53 -07001183 if (xfs_is_shutdown(mp))
Christoph Hellwigf58d0ea2020-09-01 10:55:44 -07001184 goto out_stale;
1185
1186 xfs_buf_ioerror_alert_ratelimited(bp);
1187
1188 /*
Christoph Hellwig22c10582020-09-01 10:55:46 -07001189 * We're not going to bother about retrying this during recovery.
1190 * One strike!
1191 */
1192 if (bp->b_flags & _XBF_LOGRECOVERY) {
1193 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1194 return false;
1195 }
1196
1197 /*
Christoph Hellwigf58d0ea2020-09-01 10:55:44 -07001198 * Synchronous writes will have callers process the error.
1199 */
1200 if (!(bp->b_flags & XBF_ASYNC))
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001201 goto out_stale;
1202
1203 trace_xfs_buf_iodone_async(bp, _RET_IP_);
1204
1205 cfg = xfs_error_get_cfg(mp, XFS_ERR_METADATA, bp->b_error);
Christoph Hellwig3cc49882020-09-01 10:55:45 -07001206 if (bp->b_last_error != bp->b_error ||
1207 !(bp->b_flags & (XBF_STALE | XBF_WRITE_FAIL))) {
1208 bp->b_last_error = bp->b_error;
1209 if (cfg->retry_timeout != XFS_ERR_RETRY_FOREVER &&
1210 !bp->b_first_retry_time)
1211 bp->b_first_retry_time = jiffies;
1212 goto resubmit;
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001213 }
1214
1215 /*
1216 * Permanent error - we need to trigger a shutdown if we haven't already
1217 * to indicate that inconsistency will result from this action.
1218 */
1219 if (xfs_buf_ioerror_permanent(bp, cfg)) {
1220 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1221 goto out_stale;
1222 }
1223
1224 /* Still considered a transient error. Caller will schedule retries. */
Christoph Hellwig844c9352020-09-01 10:55:45 -07001225 if (bp->b_flags & _XBF_INODES)
1226 xfs_buf_inode_io_fail(bp);
1227 else if (bp->b_flags & _XBF_DQUOTS)
1228 xfs_buf_dquot_io_fail(bp);
1229 else
1230 ASSERT(list_empty(&bp->b_li_list));
1231 xfs_buf_ioerror(bp, 0);
1232 xfs_buf_relse(bp);
Christoph Hellwig70796c62020-09-01 10:55:45 -07001233 return true;
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001234
Christoph Hellwig3cc49882020-09-01 10:55:45 -07001235resubmit:
1236 xfs_buf_ioerror(bp, 0);
Christoph Hellwig55b7d712020-09-01 10:55:46 -07001237 bp->b_flags |= (XBF_DONE | XBF_WRITE_FAIL);
Christoph Hellwig3cc49882020-09-01 10:55:45 -07001238 xfs_buf_submit(bp);
Christoph Hellwig70796c62020-09-01 10:55:45 -07001239 return true;
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001240out_stale:
1241 xfs_buf_stale(bp);
1242 bp->b_flags |= XBF_DONE;
Christoph Hellwig55b7d712020-09-01 10:55:46 -07001243 bp->b_flags &= ~XBF_WRITE;
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001244 trace_xfs_buf_error_relse(bp, _RET_IP_);
Christoph Hellwig70796c62020-09-01 10:55:45 -07001245 return false;
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001246}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247
Christoph Hellwig76b2d322020-09-01 10:55:20 -07001248static void
Dave Chinnere8aaba92014-10-02 09:04:22 +10001249xfs_buf_ioend(
1250 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251{
Dave Chinnere8aaba92014-10-02 09:04:22 +10001252 trace_xfs_buf_iodone(bp, _RET_IP_);
Dave Chinner1813dd62012-11-14 17:54:40 +11001253
Dave Chinner61be9c52014-10-02 09:04:31 +10001254 /*
1255 * Pull in IO completion errors now. We are guaranteed to be running
1256 * single threaded, so we don't need the lock to read b_io_error.
1257 */
1258 if (!bp->b_error && bp->b_io_error)
1259 xfs_buf_ioerror(bp, bp->b_io_error);
1260
Christoph Hellwig55b7d712020-09-01 10:55:46 -07001261 if (bp->b_flags & XBF_READ) {
Dave Chinnerb01d1462020-06-29 14:48:47 -07001262 if (!bp->b_error && bp->b_ops)
1263 bp->b_ops->verify_read(bp);
1264 if (!bp->b_error)
1265 bp->b_flags |= XBF_DONE;
Christoph Hellwig23fb5a92020-09-01 10:55:20 -07001266 } else {
1267 if (!bp->b_error) {
1268 bp->b_flags &= ~XBF_WRITE_FAIL;
1269 bp->b_flags |= XBF_DONE;
1270 }
Dave Chinner9fe5c772020-06-29 14:48:47 -07001271
Christoph Hellwig70796c62020-09-01 10:55:45 -07001272 if (unlikely(bp->b_error) && xfs_buf_ioend_handle_error(bp))
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001273 return;
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001274
1275 /* clear the retry state */
1276 bp->b_last_error = 0;
1277 bp->b_retries = 0;
1278 bp->b_first_retry_time = 0;
1279
1280 /*
1281 * Note that for things like remote attribute buffers, there may
1282 * not be a buffer log item here, so processing the buffer log
1283 * item must remain optional.
1284 */
1285 if (bp->b_log_item)
1286 xfs_buf_item_done(bp);
1287
Christoph Hellwig23fb5a92020-09-01 10:55:20 -07001288 if (bp->b_flags & _XBF_INODES)
1289 xfs_buf_inode_iodone(bp);
1290 else if (bp->b_flags & _XBF_DQUOTS)
1291 xfs_buf_dquot_iodone(bp);
Christoph Hellwig22c10582020-09-01 10:55:46 -07001292
Dave Chinnerf593bf12020-06-29 14:48:46 -07001293 }
Christoph Hellwig6a7584b2020-09-01 10:55:44 -07001294
Christoph Hellwig22c10582020-09-01 10:55:46 -07001295 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD |
1296 _XBF_LOGRECOVERY);
Christoph Hellwig55b7d712020-09-01 10:55:46 -07001297
Christoph Hellwig6a7584b2020-09-01 10:55:44 -07001298 if (bp->b_flags & XBF_ASYNC)
1299 xfs_buf_relse(bp);
1300 else
1301 complete(&bp->b_iowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302}
1303
Dave Chinnere8aaba92014-10-02 09:04:22 +10001304static void
1305xfs_buf_ioend_work(
1306 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307{
Dave Chinnere8aaba92014-10-02 09:04:22 +10001308 struct xfs_buf *bp =
Dave Chinnere8222612020-12-16 16:07:34 -08001309 container_of(work, struct xfs_buf, b_ioend_work);
Dave Chinner1813dd62012-11-14 17:54:40 +11001310
Dave Chinnere8aaba92014-10-02 09:04:22 +10001311 xfs_buf_ioend(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312}
1313
Alexander Kuleshov211fe1a2016-01-04 16:10:42 +11001314static void
Dave Chinnere8aaba92014-10-02 09:04:22 +10001315xfs_buf_ioend_async(
1316 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317{
Brian Fosterb29c70f2014-12-04 09:43:17 +11001318 INIT_WORK(&bp->b_ioend_work, xfs_buf_ioend_work);
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07001319 queue_work(bp->b_mount->m_buf_workqueue, &bp->b_ioend_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320}
1321
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322void
Darrick J. Wong31ca03c2018-01-08 10:51:02 -08001323__xfs_buf_ioerror(
Dave Chinnere8222612020-12-16 16:07:34 -08001324 struct xfs_buf *bp,
Darrick J. Wong31ca03c2018-01-08 10:51:02 -08001325 int error,
1326 xfs_failaddr_t failaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327{
Dave Chinner24513372014-06-25 14:58:08 +10001328 ASSERT(error <= 0 && error >= -1000);
1329 bp->b_error = error;
Darrick J. Wong31ca03c2018-01-08 10:51:02 -08001330 trace_xfs_buf_ioerror(bp, error, failaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331}
1332
Christoph Hellwig901796a2011-10-10 16:52:49 +00001333void
1334xfs_buf_ioerror_alert(
1335 struct xfs_buf *bp,
Darrick J. Wongcdbcf822020-01-23 17:01:20 -08001336 xfs_failaddr_t func)
Christoph Hellwig901796a2011-10-10 16:52:49 +00001337{
Brian Fosterf9bccfc2020-05-06 13:25:21 -07001338 xfs_buf_alert_ratelimited(bp, "XFS: metadata IO error",
1339 "metadata I/O error in \"%pS\" at daddr 0x%llx len %d error %d",
Dave Chinner04fcad82021-08-18 18:46:57 -07001340 func, (uint64_t)xfs_buf_daddr(bp),
Brian Fosterf9bccfc2020-05-06 13:25:21 -07001341 bp->b_length, -bp->b_error);
Christoph Hellwig901796a2011-10-10 16:52:49 +00001342}
1343
Brian Foster54b3b1f2020-05-06 13:25:19 -07001344/*
1345 * To simulate an I/O failure, the buffer must be locked and held with at least
1346 * three references. The LRU reference is dropped by the stale call. The buf
1347 * item reference is dropped via ioend processing. The third reference is owned
1348 * by the caller and is dropped on I/O completion if the buffer is XBF_ASYNC.
1349 */
1350void
1351xfs_buf_ioend_fail(
1352 struct xfs_buf *bp)
1353{
1354 bp->b_flags &= ~XBF_DONE;
1355 xfs_buf_stale(bp);
1356 xfs_buf_ioerror(bp, -EIO);
1357 xfs_buf_ioend(bp);
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001358}
Christoph Hellwig939d7232010-07-20 17:51:16 +10001359
Christoph Hellwiga2dcf5d2012-07-13 02:24:10 -04001360int
1361xfs_bwrite(
1362 struct xfs_buf *bp)
1363{
1364 int error;
1365
1366 ASSERT(xfs_buf_islocked(bp));
1367
1368 bp->b_flags |= XBF_WRITE;
Dave Chinner27187752014-10-02 09:04:56 +10001369 bp->b_flags &= ~(XBF_ASYNC | XBF_READ | _XBF_DELWRI_Q |
Brian Fosterb6983e82020-05-06 13:25:20 -07001370 XBF_DONE);
Christoph Hellwiga2dcf5d2012-07-13 02:24:10 -04001371
Brian Foster6af88cd2018-07-11 22:26:35 -07001372 error = xfs_buf_submit(bp);
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07001373 if (error)
1374 xfs_force_shutdown(bp->b_mount, SHUTDOWN_META_IO_ERROR);
Christoph Hellwiga2dcf5d2012-07-13 02:24:10 -04001375 return error;
1376}
1377
Brian Foster9bdd9bd2016-05-18 10:56:41 +10001378static void
Nathan Scottce8e9222006-01-11 15:39:08 +11001379xfs_buf_bio_end_io(
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001380 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381{
Brian Foster9bdd9bd2016-05-18 10:56:41 +10001382 struct xfs_buf *bp = (struct xfs_buf *)bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Brian Foster7376d742020-05-06 13:29:19 -07001384 if (!bio->bi_status &&
1385 (bp->b_flags & XBF_WRITE) && (bp->b_flags & XBF_ASYNC) &&
Brian Foster43dc0aa2020-05-08 08:50:52 -07001386 XFS_TEST_ERROR(false, bp->b_mount, XFS_ERRTAG_BUF_IOERROR))
Brian Foster7376d742020-05-06 13:29:19 -07001387 bio->bi_status = BLK_STS_IOERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
Dave Chinner37eb17e2012-11-12 22:09:46 +11001389 /*
1390 * don't overwrite existing errors - otherwise we can lose errors on
1391 * buffers that require multiple bios to complete.
1392 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001393 if (bio->bi_status) {
1394 int error = blk_status_to_errno(bio->bi_status);
1395
1396 cmpxchg(&bp->b_io_error, 0, error);
1397 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Dave Chinner37eb17e2012-11-12 22:09:46 +11001399 if (!bp->b_error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
James Bottomley73c77e22010-01-25 11:42:24 -06001400 invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
1401
Dave Chinnere8aaba92014-10-02 09:04:22 +10001402 if (atomic_dec_and_test(&bp->b_io_remaining) == 1)
1403 xfs_buf_ioend_async(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405}
1406
Dave Chinner3e85c862012-06-22 18:50:09 +10001407static void
1408xfs_buf_ioapply_map(
1409 struct xfs_buf *bp,
1410 int map,
1411 int *buf_offset,
1412 int *count,
Christoph Hellwig2123ef82019-10-28 08:41:42 -07001413 int op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414{
Dave Chinner3e85c862012-06-22 18:50:09 +10001415 int page_index;
Matthew Wilcox (Oracle)5f7136d2021-01-29 04:38:57 +00001416 unsigned int total_nr_pages = bp->b_page_count;
Dave Chinner3e85c862012-06-22 18:50:09 +10001417 int nr_pages;
1418 struct bio *bio;
1419 sector_t sector = bp->b_maps[map].bm_bn;
1420 int size;
1421 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Dave Chinner3e85c862012-06-22 18:50:09 +10001423 /* skip the pages in the buffer before the start offset */
1424 page_index = 0;
1425 offset = *buf_offset;
1426 while (offset >= PAGE_SIZE) {
1427 page_index++;
1428 offset -= PAGE_SIZE;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001429 }
1430
Dave Chinner3e85c862012-06-22 18:50:09 +10001431 /*
1432 * Limit the IO size to the length of the current vector, and update the
1433 * remaining IO count for the next time around.
1434 */
1435 size = min_t(int, BBTOB(bp->b_maps[map].bm_len), *count);
1436 *count -= size;
1437 *buf_offset += size;
Christoph Hellwig34951f52011-07-26 15:06:44 +00001438
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001440 atomic_inc(&bp->b_io_remaining);
Matthew Wilcox (Oracle)5f7136d2021-01-29 04:38:57 +00001441 nr_pages = bio_max_segs(total_nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443 bio = bio_alloc(GFP_NOIO, nr_pages);
Christoph Hellwig74d46992017-08-23 19:10:32 +02001444 bio_set_dev(bio, bp->b_target->bt_bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001445 bio->bi_iter.bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001446 bio->bi_end_io = xfs_buf_bio_end_io;
1447 bio->bi_private = bp;
Christoph Hellwig2123ef82019-10-28 08:41:42 -07001448 bio->bi_opf = op;
Dave Chinner0e6e8472011-03-26 09:16:45 +11001449
Dave Chinner3e85c862012-06-22 18:50:09 +10001450 for (; size && nr_pages; nr_pages--, page_index++) {
Dave Chinner0e6e8472011-03-26 09:16:45 +11001451 int rbytes, nbytes = PAGE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
1453 if (nbytes > size)
1454 nbytes = size;
1455
Dave Chinner3e85c862012-06-22 18:50:09 +10001456 rbytes = bio_add_page(bio, bp->b_pages[page_index], nbytes,
1457 offset);
Nathan Scottce8e9222006-01-11 15:39:08 +11001458 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 break;
1460
1461 offset = 0;
Dave Chinneraa0e8832012-04-23 15:58:52 +10001462 sector += BTOBB(nbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 size -= nbytes;
1464 total_nr_pages--;
1465 }
1466
Kent Overstreet4f024f32013-10-11 15:44:27 -07001467 if (likely(bio->bi_iter.bi_size)) {
James Bottomley73c77e22010-01-25 11:42:24 -06001468 if (xfs_buf_is_vmapped(bp)) {
1469 flush_kernel_vmap_range(bp->b_addr,
1470 xfs_buf_vmap_len(bp));
1471 }
Mike Christie4e49ea42016-06-05 14:31:41 -05001472 submit_bio(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 if (size)
1474 goto next_chunk;
1475 } else {
Dave Chinner37eb17e2012-11-12 22:09:46 +11001476 /*
1477 * This is guaranteed not to be the last io reference count
Dave Chinner595bff72014-10-02 09:05:14 +10001478 * because the caller (xfs_buf_submit) holds a count itself.
Dave Chinner37eb17e2012-11-12 22:09:46 +11001479 */
1480 atomic_dec(&bp->b_io_remaining);
Dave Chinner24513372014-06-25 14:58:08 +10001481 xfs_buf_ioerror(bp, -EIO);
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001482 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 }
Dave Chinner3e85c862012-06-22 18:50:09 +10001484
1485}
1486
1487STATIC void
1488_xfs_buf_ioapply(
1489 struct xfs_buf *bp)
1490{
1491 struct blk_plug plug;
Mike Christie50bfcd02016-06-05 14:31:57 -05001492 int op;
Dave Chinner3e85c862012-06-22 18:50:09 +10001493 int offset;
1494 int size;
1495 int i;
1496
Dave Chinnerc163f9a2013-03-12 23:30:34 +11001497 /*
1498 * Make sure we capture only current IO errors rather than stale errors
1499 * left over from previous use of the buffer (e.g. failed readahead).
1500 */
1501 bp->b_error = 0;
1502
Dave Chinner3e85c862012-06-22 18:50:09 +10001503 if (bp->b_flags & XBF_WRITE) {
Mike Christie50bfcd02016-06-05 14:31:57 -05001504 op = REQ_OP_WRITE;
Dave Chinner1813dd62012-11-14 17:54:40 +11001505
1506 /*
1507 * Run the write verifier callback function if it exists. If
1508 * this function fails it will mark the buffer with an error and
1509 * the IO should not be dispatched.
1510 */
1511 if (bp->b_ops) {
1512 bp->b_ops->verify_write(bp);
1513 if (bp->b_error) {
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07001514 xfs_force_shutdown(bp->b_mount,
Dave Chinner1813dd62012-11-14 17:54:40 +11001515 SHUTDOWN_CORRUPT_INCORE);
1516 return;
1517 }
Dave Chinner4c7f65a2021-08-18 18:48:54 -07001518 } else if (bp->b_rhash_key != XFS_BUF_DADDR_NULL) {
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07001519 struct xfs_mount *mp = bp->b_mount;
Dave Chinner400b9d82014-08-04 12:42:40 +10001520
1521 /*
1522 * non-crc filesystems don't attach verifiers during
1523 * log recovery, so don't warn for such filesystems.
1524 */
Dave Chinner38c26bf2021-08-18 18:46:37 -07001525 if (xfs_has_crc(mp)) {
Dave Chinner400b9d82014-08-04 12:42:40 +10001526 xfs_warn(mp,
Darrick J. Wongc219b012018-01-08 11:39:18 -08001527 "%s: no buf ops on daddr 0x%llx len %d",
Dave Chinner4c7f65a2021-08-18 18:48:54 -07001528 __func__, xfs_buf_daddr(bp),
1529 bp->b_length);
Darrick J. Wong9c712a12018-01-08 10:51:26 -08001530 xfs_hex_dump(bp->b_addr,
1531 XFS_CORRUPTION_DUMP_LEN);
Dave Chinner400b9d82014-08-04 12:42:40 +10001532 dump_stack();
1533 }
Dave Chinner1813dd62012-11-14 17:54:40 +11001534 }
Dave Chinner3e85c862012-06-22 18:50:09 +10001535 } else {
Mike Christie50bfcd02016-06-05 14:31:57 -05001536 op = REQ_OP_READ;
Christoph Hellwig2123ef82019-10-28 08:41:42 -07001537 if (bp->b_flags & XBF_READ_AHEAD)
1538 op |= REQ_RAHEAD;
Dave Chinner3e85c862012-06-22 18:50:09 +10001539 }
1540
1541 /* we only use the buffer cache for meta-data */
Christoph Hellwig2123ef82019-10-28 08:41:42 -07001542 op |= REQ_META;
Dave Chinner3e85c862012-06-22 18:50:09 +10001543
1544 /*
1545 * Walk all the vectors issuing IO on them. Set up the initial offset
1546 * into the buffer and the desired IO size before we start -
1547 * _xfs_buf_ioapply_vec() will modify them appropriately for each
1548 * subsequent call.
1549 */
1550 offset = bp->b_offset;
Christoph Hellwig8124b9b2019-06-28 19:27:28 -07001551 size = BBTOB(bp->b_length);
Dave Chinner3e85c862012-06-22 18:50:09 +10001552 blk_start_plug(&plug);
1553 for (i = 0; i < bp->b_map_count; i++) {
Christoph Hellwig2123ef82019-10-28 08:41:42 -07001554 xfs_buf_ioapply_map(bp, i, &offset, &size, op);
Dave Chinner3e85c862012-06-22 18:50:09 +10001555 if (bp->b_error)
1556 break;
1557 if (size <= 0)
1558 break; /* all done */
1559 }
1560 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561}
1562
Dave Chinner595bff72014-10-02 09:05:14 +10001563/*
Brian Fosterbb00b6f2018-07-11 22:26:35 -07001564 * Wait for I/O completion of a sync buffer and return the I/O error code.
Dave Chinner595bff72014-10-02 09:05:14 +10001565 */
Brian Fostereaebb512018-07-11 22:26:34 -07001566static int
Brian Fosterbb00b6f2018-07-11 22:26:35 -07001567xfs_buf_iowait(
Dave Chinner595bff72014-10-02 09:05:14 +10001568 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
Brian Fosterbb00b6f2018-07-11 22:26:35 -07001570 ASSERT(!(bp->b_flags & XBF_ASYNC));
1571
1572 trace_xfs_buf_iowait(bp, _RET_IP_);
1573 wait_for_completion(&bp->b_iowait);
1574 trace_xfs_buf_iowait_done(bp, _RET_IP_);
1575
1576 return bp->b_error;
1577}
1578
1579/*
1580 * Buffer I/O submission path, read or write. Asynchronous submission transfers
1581 * the buffer lock ownership and the current reference to the IO. It is not
1582 * safe to reference the buffer after a call to this function unless the caller
1583 * holds an additional reference itself.
1584 */
Christoph Hellwig26e328752020-09-01 10:55:47 -07001585static int
Brian Fosterbb00b6f2018-07-11 22:26:35 -07001586__xfs_buf_submit(
1587 struct xfs_buf *bp,
1588 bool wait)
1589{
1590 int error = 0;
1591
Dave Chinner595bff72014-10-02 09:05:14 +10001592 trace_xfs_buf_submit(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001594 ASSERT(!(bp->b_flags & _XBF_DELWRI_Q));
Dave Chinner595bff72014-10-02 09:05:14 +10001595
1596 /* on shutdown we stale and complete the buffer immediately */
Dave Chinner75c8c50f2021-08-18 18:46:53 -07001597 if (xfs_is_shutdown(bp->b_mount)) {
Brian Foster54b3b1f2020-05-06 13:25:19 -07001598 xfs_buf_ioend_fail(bp);
Brian Fostereaebb512018-07-11 22:26:34 -07001599 return -EIO;
Dave Chinner595bff72014-10-02 09:05:14 +10001600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Brian Fosterbb00b6f2018-07-11 22:26:35 -07001602 /*
1603 * Grab a reference so the buffer does not go away underneath us. For
1604 * async buffers, I/O completion drops the callers reference, which
1605 * could occur before submission returns.
1606 */
1607 xfs_buf_hold(bp);
1608
Christoph Hellwig375ec692011-08-23 08:28:03 +00001609 if (bp->b_flags & XBF_WRITE)
Nathan Scottce8e9222006-01-11 15:39:08 +11001610 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Dave Chinner61be9c52014-10-02 09:04:31 +10001612 /* clear the internal error state to avoid spurious errors */
1613 bp->b_io_error = 0;
1614
Eric Sandeen8d6c1212014-04-17 08:15:28 +10001615 /*
Brian Fostereaebb512018-07-11 22:26:34 -07001616 * Set the count to 1 initially, this will stop an I/O completion
1617 * callout which happens before we have started all the I/O from calling
1618 * xfs_buf_ioend too early.
1619 */
1620 atomic_set(&bp->b_io_remaining, 1);
1621 if (bp->b_flags & XBF_ASYNC)
1622 xfs_buf_ioacct_inc(bp);
1623 _xfs_buf_ioapply(bp);
1624
1625 /*
1626 * If _xfs_buf_ioapply failed, we can get back here with only the IO
1627 * reference we took above. If we drop it to zero, run completion so
1628 * that we don't return to the caller with completion still pending.
1629 */
1630 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
1631 if (bp->b_error || !(bp->b_flags & XBF_ASYNC))
1632 xfs_buf_ioend(bp);
1633 else
1634 xfs_buf_ioend_async(bp);
1635 }
1636
Brian Foster6af88cd2018-07-11 22:26:35 -07001637 if (wait)
1638 error = xfs_buf_iowait(bp);
Brian Fosterbb00b6f2018-07-11 22:26:35 -07001639
Dave Chinner595bff72014-10-02 09:05:14 +10001640 /*
Brian Foster6af88cd2018-07-11 22:26:35 -07001641 * Release the hold that keeps the buffer referenced for the entire
1642 * I/O. Note that if the buffer is async, it is not safe to reference
1643 * after this release.
Dave Chinner595bff72014-10-02 09:05:14 +10001644 */
1645 xfs_buf_rele(bp);
1646 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647}
1648
Christoph Hellwig88ee2df2015-06-22 09:44:29 +10001649void *
Nathan Scottce8e9222006-01-11 15:39:08 +11001650xfs_buf_offset(
Christoph Hellwig88ee2df2015-06-22 09:44:29 +10001651 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 size_t offset)
1653{
1654 struct page *page;
1655
Dave Chinner611c9942012-04-23 15:59:07 +10001656 if (bp->b_addr)
Chandra Seetharaman62926042011-07-22 23:40:15 +00001657 return bp->b_addr + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Dave Chinner0e6e8472011-03-26 09:16:45 +11001659 page = bp->b_pages[offset >> PAGE_SHIFT];
Christoph Hellwig88ee2df2015-06-22 09:44:29 +10001660 return page_address(page) + (offset & (PAGE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661}
1662
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663void
Christoph Hellwigf9a196e2019-06-12 08:59:59 -07001664xfs_buf_zero(
1665 struct xfs_buf *bp,
1666 size_t boff,
1667 size_t bsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668{
Dave Chinner795cac72012-04-23 15:58:53 +10001669 size_t bend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
1671 bend = boff + bsize;
1672 while (boff < bend) {
Dave Chinner795cac72012-04-23 15:58:53 +10001673 struct page *page;
1674 int page_index, page_offset, csize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Dave Chinner795cac72012-04-23 15:58:53 +10001676 page_index = (boff + bp->b_offset) >> PAGE_SHIFT;
1677 page_offset = (boff + bp->b_offset) & ~PAGE_MASK;
1678 page = bp->b_pages[page_index];
1679 csize = min_t(size_t, PAGE_SIZE - page_offset,
Christoph Hellwig8124b9b2019-06-28 19:27:28 -07001680 BBTOB(bp->b_length) - boff);
Dave Chinner795cac72012-04-23 15:58:53 +10001681
1682 ASSERT((csize + page_offset) <= PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683
Christoph Hellwigf9a196e2019-06-12 08:59:59 -07001684 memset(page_address(page) + page_offset, 0, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
1686 boff += csize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 }
1688}
1689
1690/*
Darrick J. Wong8d57c212020-03-11 10:37:54 -07001691 * Log a message about and stale a buffer that a caller has decided is corrupt.
1692 *
1693 * This function should be called for the kinds of metadata corruption that
1694 * cannot be detect from a verifier, such as incorrect inter-block relationship
1695 * data. Do /not/ call this function from a verifier function.
1696 *
1697 * The buffer must be XBF_DONE prior to the call. Afterwards, the buffer will
1698 * be marked stale, but b_error will not be set. The caller is responsible for
1699 * releasing the buffer or fixing it.
1700 */
1701void
1702__xfs_buf_mark_corrupt(
1703 struct xfs_buf *bp,
1704 xfs_failaddr_t fa)
1705{
1706 ASSERT(bp->b_flags & XBF_DONE);
1707
Darrick J. Wonge83cf872020-03-11 10:37:54 -07001708 xfs_buf_corruption_error(bp, fa);
Darrick J. Wong8d57c212020-03-11 10:37:54 -07001709 xfs_buf_stale(bp);
1710}
1711
1712/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001713 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 */
1715
1716/*
Dave Chinner430cbeb2010-12-02 16:30:55 +11001717 * Wait for any bufs with callbacks that have been submitted but have not yet
1718 * returned. These buffers will have an elevated hold count, so wait on those
1719 * while freeing all the buffers only held by the LRU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 */
Dave Chinnere80dfa12013-08-28 10:18:05 +10001721static enum lru_status
Brian Foster10fb9ac2021-01-22 16:48:19 -08001722xfs_buftarg_drain_rele(
Dave Chinnere80dfa12013-08-28 10:18:05 +10001723 struct list_head *item,
Vladimir Davydov3f97b162015-02-12 14:59:35 -08001724 struct list_lru_one *lru,
Dave Chinnere80dfa12013-08-28 10:18:05 +10001725 spinlock_t *lru_lock,
1726 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Dave Chinnere80dfa12013-08-28 10:18:05 +10001728{
1729 struct xfs_buf *bp = container_of(item, struct xfs_buf, b_lru);
Dave Chinnera4082352013-08-28 10:18:06 +10001730 struct list_head *dispose = arg;
Dave Chinnere80dfa12013-08-28 10:18:05 +10001731
1732 if (atomic_read(&bp->b_hold) > 1) {
Dave Chinnera4082352013-08-28 10:18:06 +10001733 /* need to wait, so skip it this pass */
Brian Foster10fb9ac2021-01-22 16:48:19 -08001734 trace_xfs_buf_drain_buftarg(bp, _RET_IP_);
Dave Chinnera4082352013-08-28 10:18:06 +10001735 return LRU_SKIP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
Dave Chinnera4082352013-08-28 10:18:06 +10001737 if (!spin_trylock(&bp->b_lock))
1738 return LRU_SKIP;
Dave Chinnere80dfa12013-08-28 10:18:05 +10001739
Dave Chinnera4082352013-08-28 10:18:06 +10001740 /*
1741 * clear the LRU reference count so the buffer doesn't get
1742 * ignored in xfs_buf_rele().
1743 */
1744 atomic_set(&bp->b_lru_ref, 0);
1745 bp->b_state |= XFS_BSTATE_DISPOSE;
Vladimir Davydov3f97b162015-02-12 14:59:35 -08001746 list_lru_isolate_move(lru, item, dispose);
Dave Chinnera4082352013-08-28 10:18:06 +10001747 spin_unlock(&bp->b_lock);
1748 return LRU_REMOVED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749}
1750
Brian Foster8321ddb2021-01-22 16:48:20 -08001751/*
1752 * Wait for outstanding I/O on the buftarg to complete.
1753 */
Dave Chinnere80dfa12013-08-28 10:18:05 +10001754void
Brian Foster8321ddb2021-01-22 16:48:20 -08001755xfs_buftarg_wait(
Dave Chinnere80dfa12013-08-28 10:18:05 +10001756 struct xfs_buftarg *btp)
1757{
Dave Chinner85bec542016-01-19 08:28:10 +11001758 /*
Brian Foster9c7504a2016-07-20 11:15:28 +10001759 * First wait on the buftarg I/O count for all in-flight buffers to be
1760 * released. This is critical as new buffers do not make the LRU until
1761 * they are released.
1762 *
1763 * Next, flush the buffer workqueue to ensure all completion processing
1764 * has finished. Just waiting on buffer locks is not sufficient for
1765 * async IO as the reference count held over IO is not released until
1766 * after the buffer lock is dropped. Hence we need to ensure here that
1767 * all reference counts have been dropped before we start walking the
1768 * LRU list.
Dave Chinner85bec542016-01-19 08:28:10 +11001769 */
Brian Foster9c7504a2016-07-20 11:15:28 +10001770 while (percpu_counter_sum(&btp->bt_io_count))
1771 delay(100);
Brian Foster800b2692016-08-26 16:01:59 +10001772 flush_workqueue(btp->bt_mount->m_buf_workqueue);
Brian Foster8321ddb2021-01-22 16:48:20 -08001773}
1774
1775void
1776xfs_buftarg_drain(
1777 struct xfs_buftarg *btp)
1778{
1779 LIST_HEAD(dispose);
1780 int loop = 0;
1781 bool write_fail = false;
1782
1783 xfs_buftarg_wait(btp);
Dave Chinner85bec542016-01-19 08:28:10 +11001784
Dave Chinnera4082352013-08-28 10:18:06 +10001785 /* loop until there is nothing left on the lru list. */
1786 while (list_lru_count(&btp->bt_lru)) {
Brian Foster10fb9ac2021-01-22 16:48:19 -08001787 list_lru_walk(&btp->bt_lru, xfs_buftarg_drain_rele,
Dave Chinnera4082352013-08-28 10:18:06 +10001788 &dispose, LONG_MAX);
1789
1790 while (!list_empty(&dispose)) {
1791 struct xfs_buf *bp;
1792 bp = list_first_entry(&dispose, struct xfs_buf, b_lru);
1793 list_del_init(&bp->b_lru);
Dave Chinnerac8809f2013-12-12 16:34:38 +11001794 if (bp->b_flags & XBF_WRITE_FAIL) {
Brian Foster61948b62020-05-06 13:25:21 -07001795 write_fail = true;
1796 xfs_buf_alert_ratelimited(bp,
1797 "XFS: Corruption Alert",
Darrick J. Wongc219b012018-01-08 11:39:18 -08001798"Corruption Alert: Buffer at daddr 0x%llx had permanent write failures!",
Dave Chinner4c7f65a2021-08-18 18:48:54 -07001799 (long long)xfs_buf_daddr(bp));
Dave Chinnerac8809f2013-12-12 16:34:38 +11001800 }
Dave Chinnera4082352013-08-28 10:18:06 +10001801 xfs_buf_rele(bp);
1802 }
1803 if (loop++ != 0)
1804 delay(100);
1805 }
Brian Foster61948b62020-05-06 13:25:21 -07001806
1807 /*
1808 * If one or more failed buffers were freed, that means dirty metadata
1809 * was thrown away. This should only ever happen after I/O completion
1810 * handling has elevated I/O error(s) to permanent failures and shuts
1811 * down the fs.
1812 */
1813 if (write_fail) {
Dave Chinner75c8c50f2021-08-18 18:46:53 -07001814 ASSERT(xfs_is_shutdown(btp->bt_mount));
Brian Foster61948b62020-05-06 13:25:21 -07001815 xfs_alert(btp->bt_mount,
1816 "Please run xfs_repair to determine the extent of the problem.");
1817 }
Dave Chinnere80dfa12013-08-28 10:18:05 +10001818}
1819
1820static enum lru_status
1821xfs_buftarg_isolate(
1822 struct list_head *item,
Vladimir Davydov3f97b162015-02-12 14:59:35 -08001823 struct list_lru_one *lru,
Dave Chinnere80dfa12013-08-28 10:18:05 +10001824 spinlock_t *lru_lock,
1825 void *arg)
1826{
1827 struct xfs_buf *bp = container_of(item, struct xfs_buf, b_lru);
1828 struct list_head *dispose = arg;
1829
1830 /*
Dave Chinnera4082352013-08-28 10:18:06 +10001831 * we are inverting the lru lock/bp->b_lock here, so use a trylock.
1832 * If we fail to get the lock, just skip it.
1833 */
1834 if (!spin_trylock(&bp->b_lock))
1835 return LRU_SKIP;
1836 /*
Dave Chinnere80dfa12013-08-28 10:18:05 +10001837 * Decrement the b_lru_ref count unless the value is already
1838 * zero. If the value is already zero, we need to reclaim the
1839 * buffer, otherwise it gets another trip through the LRU.
1840 */
Vratislav Bendel19957a12018-03-06 17:07:44 -08001841 if (atomic_add_unless(&bp->b_lru_ref, -1, 0)) {
Dave Chinnera4082352013-08-28 10:18:06 +10001842 spin_unlock(&bp->b_lock);
Dave Chinnere80dfa12013-08-28 10:18:05 +10001843 return LRU_ROTATE;
Dave Chinnera4082352013-08-28 10:18:06 +10001844 }
Dave Chinnere80dfa12013-08-28 10:18:05 +10001845
Dave Chinnera4082352013-08-28 10:18:06 +10001846 bp->b_state |= XFS_BSTATE_DISPOSE;
Vladimir Davydov3f97b162015-02-12 14:59:35 -08001847 list_lru_isolate_move(lru, item, dispose);
Dave Chinnera4082352013-08-28 10:18:06 +10001848 spin_unlock(&bp->b_lock);
Dave Chinnere80dfa12013-08-28 10:18:05 +10001849 return LRU_REMOVED;
1850}
1851
Andrew Mortonaddbda42013-08-28 10:18:06 +10001852static unsigned long
Dave Chinnere80dfa12013-08-28 10:18:05 +10001853xfs_buftarg_shrink_scan(
Dave Chinnerff57ab22010-11-30 17:27:57 +11001854 struct shrinker *shrink,
Ying Han1495f232011-05-24 17:12:27 -07001855 struct shrink_control *sc)
David Chinnera6867a62006-01-11 15:37:58 +11001856{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001857 struct xfs_buftarg *btp = container_of(shrink,
1858 struct xfs_buftarg, bt_shrinker);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001859 LIST_HEAD(dispose);
Andrew Mortonaddbda42013-08-28 10:18:06 +10001860 unsigned long freed;
Dave Chinner430cbeb2010-12-02 16:30:55 +11001861
Vladimir Davydov503c3582015-02-12 14:58:47 -08001862 freed = list_lru_shrink_walk(&btp->bt_lru, sc,
1863 xfs_buftarg_isolate, &dispose);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001864
1865 while (!list_empty(&dispose)) {
Dave Chinnere80dfa12013-08-28 10:18:05 +10001866 struct xfs_buf *bp;
Dave Chinner430cbeb2010-12-02 16:30:55 +11001867 bp = list_first_entry(&dispose, struct xfs_buf, b_lru);
1868 list_del_init(&bp->b_lru);
1869 xfs_buf_rele(bp);
1870 }
1871
Dave Chinnere80dfa12013-08-28 10:18:05 +10001872 return freed;
1873}
1874
Andrew Mortonaddbda42013-08-28 10:18:06 +10001875static unsigned long
Dave Chinnere80dfa12013-08-28 10:18:05 +10001876xfs_buftarg_shrink_count(
1877 struct shrinker *shrink,
1878 struct shrink_control *sc)
1879{
1880 struct xfs_buftarg *btp = container_of(shrink,
1881 struct xfs_buftarg, bt_shrinker);
Vladimir Davydov503c3582015-02-12 14:58:47 -08001882 return list_lru_shrink_count(&btp->bt_lru, sc);
David Chinnera6867a62006-01-11 15:37:58 +11001883}
1884
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885void
1886xfs_free_buftarg(
Christoph Hellwigb7963132009-03-03 14:48:37 -05001887 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001889 unregister_shrinker(&btp->bt_shrinker);
Brian Foster9c7504a2016-07-20 11:15:28 +10001890 ASSERT(percpu_counter_sum(&btp->bt_io_count) == 0);
1891 percpu_counter_destroy(&btp->bt_io_count);
Glauber Costaf5e1dd32013-08-28 10:18:18 +10001892 list_lru_destroy(&btp->bt_lru);
Dave Chinnerff57ab22010-11-30 17:27:57 +11001893
Dave Chinnerb5071ad2021-06-18 08:21:49 -07001894 blkdev_issue_flush(btp->bt_bdev);
David Chinnera6867a62006-01-11 15:37:58 +11001895
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001896 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897}
1898
Eric Sandeen3fefdee2013-11-13 14:53:45 -06001899int
1900xfs_setsize_buftarg(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 xfs_buftarg_t *btp,
Eric Sandeen3fefdee2013-11-13 14:53:45 -06001902 unsigned int sectorsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903{
Eric Sandeen7c71ee72014-01-21 16:46:23 -06001904 /* Set up metadata sector size info */
Eric Sandeen6da54172014-01-21 16:45:52 -06001905 btp->bt_meta_sectorsize = sectorsize;
1906 btp->bt_meta_sectormask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
Nathan Scottce8e9222006-01-11 15:39:08 +11001908 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Dave Chinner4f107002011-03-07 10:00:35 +11001909 xfs_warn(btp->bt_mount,
Dmitry Monakhova1c6f0572015-04-13 16:31:37 +04001910 "Cannot set_blocksize to %u on device %pg",
1911 sectorsize, btp->bt_bdev);
Dave Chinner24513372014-06-25 14:58:08 +10001912 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 }
1914
Eric Sandeen7c71ee72014-01-21 16:46:23 -06001915 /* Set up device logical sector size mask */
1916 btp->bt_logical_sectorsize = bdev_logical_block_size(btp->bt_bdev);
1917 btp->bt_logical_sectormask = bdev_logical_block_size(btp->bt_bdev) - 1;
1918
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 return 0;
1920}
1921
1922/*
Eric Sandeen3fefdee2013-11-13 14:53:45 -06001923 * When allocating the initial buffer target we have not yet
1924 * read in the superblock, so don't know what sized sectors
1925 * are being used at this early stage. Play safe.
Nathan Scottce8e9222006-01-11 15:39:08 +11001926 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927STATIC int
1928xfs_setsize_buftarg_early(
1929 xfs_buftarg_t *btp,
1930 struct block_device *bdev)
1931{
Eric Sandeena96c4152014-04-14 19:00:29 +10001932 return xfs_setsize_buftarg(btp, bdev_logical_block_size(bdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933}
1934
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935xfs_buftarg_t *
1936xfs_alloc_buftarg(
Dave Chinnerebad8612010-09-22 10:47:20 +10001937 struct xfs_mount *mp,
Dan Williams486aff52017-08-24 15:12:50 -07001938 struct block_device *bdev,
1939 struct dax_device *dax_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940{
1941 xfs_buftarg_t *btp;
1942
Tetsuo Handa707e0dd2019-08-26 12:06:22 -07001943 btp = kmem_zalloc(sizeof(*btp), KM_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944
Dave Chinnerebad8612010-09-22 10:47:20 +10001945 btp->bt_mount = mp;
Nathan Scottce8e9222006-01-11 15:39:08 +11001946 btp->bt_dev = bdev->bd_dev;
1947 btp->bt_bdev = bdev;
Dan Williams486aff52017-08-24 15:12:50 -07001948 btp->bt_daxdev = dax_dev;
Dave Chinner0e6e8472011-03-26 09:16:45 +11001949
Brian Fosterf9bccfc2020-05-06 13:25:21 -07001950 /*
1951 * Buffer IO error rate limiting. Limit it to no more than 10 messages
1952 * per 30 seconds so as to not spam logs too much on repeated errors.
1953 */
1954 ratelimit_state_init(&btp->bt_ioerror_rl, 30 * HZ,
1955 DEFAULT_RATELIMIT_BURST);
1956
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 if (xfs_setsize_buftarg_early(btp, bdev))
Michal Hockod210a982017-11-23 17:13:40 +01001958 goto error_free;
Glauber Costa5ca302c2013-08-28 10:18:18 +10001959
1960 if (list_lru_init(&btp->bt_lru))
Michal Hockod210a982017-11-23 17:13:40 +01001961 goto error_free;
Glauber Costa5ca302c2013-08-28 10:18:18 +10001962
Brian Foster9c7504a2016-07-20 11:15:28 +10001963 if (percpu_counter_init(&btp->bt_io_count, 0, GFP_KERNEL))
Michal Hockod210a982017-11-23 17:13:40 +01001964 goto error_lru;
Brian Foster9c7504a2016-07-20 11:15:28 +10001965
Dave Chinnere80dfa12013-08-28 10:18:05 +10001966 btp->bt_shrinker.count_objects = xfs_buftarg_shrink_count;
1967 btp->bt_shrinker.scan_objects = xfs_buftarg_shrink_scan;
Dave Chinnerff57ab22010-11-30 17:27:57 +11001968 btp->bt_shrinker.seeks = DEFAULT_SEEKS;
Dave Chinnere80dfa12013-08-28 10:18:05 +10001969 btp->bt_shrinker.flags = SHRINKER_NUMA_AWARE;
Michal Hockod210a982017-11-23 17:13:40 +01001970 if (register_shrinker(&btp->bt_shrinker))
1971 goto error_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 return btp;
1973
Michal Hockod210a982017-11-23 17:13:40 +01001974error_pcpu:
1975 percpu_counter_destroy(&btp->bt_io_count);
1976error_lru:
1977 list_lru_destroy(&btp->bt_lru);
1978error_free:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001979 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 return NULL;
1981}
1982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983/*
Brian Foster20e8a062017-04-21 12:40:44 -07001984 * Cancel a delayed write list.
1985 *
1986 * Remove each buffer from the list, clear the delwri queue flag and drop the
1987 * associated buffer reference.
1988 */
1989void
1990xfs_buf_delwri_cancel(
1991 struct list_head *list)
1992{
1993 struct xfs_buf *bp;
1994
1995 while (!list_empty(list)) {
1996 bp = list_first_entry(list, struct xfs_buf, b_list);
1997
1998 xfs_buf_lock(bp);
1999 bp->b_flags &= ~_XBF_DELWRI_Q;
2000 list_del_init(&bp->b_list);
2001 xfs_buf_relse(bp);
2002 }
2003}
2004
2005/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002006 * Add a buffer to the delayed write list.
2007 *
2008 * This queues a buffer for writeout if it hasn't already been. Note that
2009 * neither this routine nor the buffer list submission functions perform
2010 * any internal synchronization. It is expected that the lists are thread-local
2011 * to the callers.
2012 *
2013 * Returns true if we queued up the buffer, or false if it already had
2014 * been on the buffer list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002016bool
Nathan Scottce8e9222006-01-11 15:39:08 +11002017xfs_buf_delwri_queue(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002018 struct xfs_buf *bp,
2019 struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002021 ASSERT(xfs_buf_islocked(bp));
2022 ASSERT(!(bp->b_flags & XBF_READ));
2023
2024 /*
2025 * If the buffer is already marked delwri it already is queued up
2026 * by someone else for imediate writeout. Just ignore it in that
2027 * case.
2028 */
2029 if (bp->b_flags & _XBF_DELWRI_Q) {
2030 trace_xfs_buf_delwri_queued(bp, _RET_IP_);
2031 return false;
2032 }
David Chinnera6867a62006-01-11 15:37:58 +11002033
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002034 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
2035
Dave Chinnerd808f612010-02-02 10:13:42 +11002036 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002037 * If a buffer gets written out synchronously or marked stale while it
2038 * is on a delwri list we lazily remove it. To do this, the other party
2039 * clears the _XBF_DELWRI_Q flag but otherwise leaves the buffer alone.
2040 * It remains referenced and on the list. In a rare corner case it
2041 * might get readded to a delwri list after the synchronous writeout, in
2042 * which case we need just need to re-add the flag here.
Dave Chinnerd808f612010-02-02 10:13:42 +11002043 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002044 bp->b_flags |= _XBF_DELWRI_Q;
2045 if (list_empty(&bp->b_list)) {
2046 atomic_inc(&bp->b_hold);
2047 list_add_tail(&bp->b_list, list);
David Chinner585e6d82007-02-10 18:32:29 +11002048 }
David Chinner585e6d82007-02-10 18:32:29 +11002049
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002050 return true;
David Chinner585e6d82007-02-10 18:32:29 +11002051}
2052
Dave Chinner089716a2010-01-26 15:13:25 +11002053/*
2054 * Compare function is more complex than it needs to be because
2055 * the return value is only 32 bits and we are doing comparisons
2056 * on 64 bit values
2057 */
2058static int
2059xfs_buf_cmp(
Sami Tolvanen4f0f5862021-04-08 11:28:34 -07002060 void *priv,
2061 const struct list_head *a,
2062 const struct list_head *b)
Dave Chinner089716a2010-01-26 15:13:25 +11002063{
2064 struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
2065 struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
2066 xfs_daddr_t diff;
2067
Mark Tinguelyf4b42422012-12-04 17:18:02 -06002068 diff = ap->b_maps[0].bm_bn - bp->b_maps[0].bm_bn;
Dave Chinner089716a2010-01-26 15:13:25 +11002069 if (diff < 0)
2070 return -1;
2071 if (diff > 0)
2072 return 1;
2073 return 0;
2074}
2075
Dave Chinner26f1fe82016-06-01 17:38:15 +10002076/*
Brian Fostere339dd82018-07-11 22:26:34 -07002077 * Submit buffers for write. If wait_list is specified, the buffers are
2078 * submitted using sync I/O and placed on the wait list such that the caller can
2079 * iowait each buffer. Otherwise async I/O is used and the buffers are released
2080 * at I/O completion time. In either case, buffers remain locked until I/O
2081 * completes and the buffer is released from the queue.
Dave Chinner26f1fe82016-06-01 17:38:15 +10002082 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002083static int
Dave Chinner26f1fe82016-06-01 17:38:15 +10002084xfs_buf_delwri_submit_buffers(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002085 struct list_head *buffer_list,
Dave Chinner26f1fe82016-06-01 17:38:15 +10002086 struct list_head *wait_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002088 struct xfs_buf *bp, *n;
2089 int pinned = 0;
Dave Chinner26f1fe82016-06-01 17:38:15 +10002090 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091
Dave Chinner26f1fe82016-06-01 17:38:15 +10002092 list_sort(NULL, buffer_list, xfs_buf_cmp);
2093
2094 blk_start_plug(&plug);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002095 list_for_each_entry_safe(bp, n, buffer_list, b_list) {
Dave Chinner26f1fe82016-06-01 17:38:15 +10002096 if (!wait_list) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002097 if (xfs_buf_ispinned(bp)) {
2098 pinned++;
2099 continue;
2100 }
2101 if (!xfs_buf_trylock(bp))
2102 continue;
2103 } else {
2104 xfs_buf_lock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002107 /*
2108 * Someone else might have written the buffer synchronously or
2109 * marked it stale in the meantime. In that case only the
2110 * _XBF_DELWRI_Q flag got cleared, and we have to drop the
2111 * reference and remove it from the list here.
2112 */
2113 if (!(bp->b_flags & _XBF_DELWRI_Q)) {
2114 list_del_init(&bp->b_list);
2115 xfs_buf_relse(bp);
2116 continue;
2117 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002119 trace_xfs_buf_delwri_split(bp, _RET_IP_);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002120
Dave Chinnercf53e992014-10-02 09:04:01 +10002121 /*
Brian Fostere339dd82018-07-11 22:26:34 -07002122 * If we have a wait list, each buffer (and associated delwri
2123 * queue reference) transfers to it and is submitted
2124 * synchronously. Otherwise, drop the buffer from the delwri
2125 * queue and submit async.
Dave Chinnercf53e992014-10-02 09:04:01 +10002126 */
Brian Fosterb6983e82020-05-06 13:25:20 -07002127 bp->b_flags &= ~_XBF_DELWRI_Q;
Brian Fostere339dd82018-07-11 22:26:34 -07002128 bp->b_flags |= XBF_WRITE;
Dave Chinner26f1fe82016-06-01 17:38:15 +10002129 if (wait_list) {
Brian Fostere339dd82018-07-11 22:26:34 -07002130 bp->b_flags &= ~XBF_ASYNC;
Dave Chinner26f1fe82016-06-01 17:38:15 +10002131 list_move_tail(&bp->b_list, wait_list);
Brian Fostere339dd82018-07-11 22:26:34 -07002132 } else {
2133 bp->b_flags |= XBF_ASYNC;
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002134 list_del_init(&bp->b_list);
Brian Fostere339dd82018-07-11 22:26:34 -07002135 }
Brian Foster6af88cd2018-07-11 22:26:35 -07002136 __xfs_buf_submit(bp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 }
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00002138 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002140 return pinned;
2141}
Nathan Scottf07c2252006-09-28 10:52:15 +10002142
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002143/*
2144 * Write out a buffer list asynchronously.
2145 *
2146 * This will take the @buffer_list, write all non-locked and non-pinned buffers
2147 * out and not wait for I/O completion on any of the buffers. This interface
2148 * is only safely useable for callers that can track I/O completion by higher
2149 * level means, e.g. AIL pushing as the @buffer_list is consumed in this
2150 * function.
Brian Fosterefc32892018-10-18 17:21:49 +11002151 *
2152 * Note: this function will skip buffers it would block on, and in doing so
2153 * leaves them on @buffer_list so they can be retried on a later pass. As such,
2154 * it is up to the caller to ensure that the buffer list is fully submitted or
2155 * cancelled appropriately when they are finished with the list. Failure to
2156 * cancel or resubmit the list until it is empty will result in leaked buffers
2157 * at unmount time.
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002158 */
2159int
2160xfs_buf_delwri_submit_nowait(
2161 struct list_head *buffer_list)
2162{
Dave Chinner26f1fe82016-06-01 17:38:15 +10002163 return xfs_buf_delwri_submit_buffers(buffer_list, NULL);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002164}
2165
2166/*
2167 * Write out a buffer list synchronously.
2168 *
2169 * This will take the @buffer_list, write all buffers out and wait for I/O
2170 * completion on all of the buffers. @buffer_list is consumed by the function,
2171 * so callers must have some other way of tracking buffers if they require such
2172 * functionality.
2173 */
2174int
2175xfs_buf_delwri_submit(
2176 struct list_head *buffer_list)
2177{
Dave Chinner26f1fe82016-06-01 17:38:15 +10002178 LIST_HEAD (wait_list);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002179 int error = 0, error2;
2180 struct xfs_buf *bp;
2181
Dave Chinner26f1fe82016-06-01 17:38:15 +10002182 xfs_buf_delwri_submit_buffers(buffer_list, &wait_list);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002183
2184 /* Wait for IO to complete. */
Dave Chinner26f1fe82016-06-01 17:38:15 +10002185 while (!list_empty(&wait_list)) {
2186 bp = list_first_entry(&wait_list, struct xfs_buf, b_list);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002187
2188 list_del_init(&bp->b_list);
Dave Chinnercf53e992014-10-02 09:04:01 +10002189
Brian Fostere339dd82018-07-11 22:26:34 -07002190 /*
2191 * Wait on the locked buffer, check for errors and unlock and
2192 * release the delwri queue reference.
2193 */
2194 error2 = xfs_buf_iowait(bp);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002195 xfs_buf_relse(bp);
2196 if (!error)
2197 error = error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 }
2199
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002200 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201}
2202
Brian Foster7912e7f2017-06-14 21:21:45 -07002203/*
2204 * Push a single buffer on a delwri queue.
2205 *
2206 * The purpose of this function is to submit a single buffer of a delwri queue
2207 * and return with the buffer still on the original queue. The waiting delwri
2208 * buffer submission infrastructure guarantees transfer of the delwri queue
2209 * buffer reference to a temporary wait list. We reuse this infrastructure to
2210 * transfer the buffer back to the original queue.
2211 *
2212 * Note the buffer transitions from the queued state, to the submitted and wait
2213 * listed state and back to the queued state during this call. The buffer
2214 * locking and queue management logic between _delwri_pushbuf() and
2215 * _delwri_queue() guarantee that the buffer cannot be queued to another list
2216 * before returning.
2217 */
2218int
2219xfs_buf_delwri_pushbuf(
2220 struct xfs_buf *bp,
2221 struct list_head *buffer_list)
2222{
2223 LIST_HEAD (submit_list);
2224 int error;
2225
2226 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
2227
2228 trace_xfs_buf_delwri_pushbuf(bp, _RET_IP_);
2229
2230 /*
2231 * Isolate the buffer to a new local list so we can submit it for I/O
2232 * independently from the rest of the original list.
2233 */
2234 xfs_buf_lock(bp);
2235 list_move(&bp->b_list, &submit_list);
2236 xfs_buf_unlock(bp);
2237
2238 /*
2239 * Delwri submission clears the DELWRI_Q buffer flag and returns with
Brian Fostere339dd82018-07-11 22:26:34 -07002240 * the buffer on the wait list with the original reference. Rather than
Brian Foster7912e7f2017-06-14 21:21:45 -07002241 * bounce the buffer from a local wait list back to the original list
2242 * after I/O completion, reuse the original list as the wait list.
2243 */
2244 xfs_buf_delwri_submit_buffers(&submit_list, buffer_list);
2245
2246 /*
Brian Fostere339dd82018-07-11 22:26:34 -07002247 * The buffer is now locked, under I/O and wait listed on the original
2248 * delwri queue. Wait for I/O completion, restore the DELWRI_Q flag and
2249 * return with the buffer unlocked and on the original queue.
Brian Foster7912e7f2017-06-14 21:21:45 -07002250 */
Brian Fostere339dd82018-07-11 22:26:34 -07002251 error = xfs_buf_iowait(bp);
Brian Foster7912e7f2017-06-14 21:21:45 -07002252 bp->b_flags |= _XBF_DELWRI_Q;
2253 xfs_buf_unlock(bp);
2254
2255 return error;
2256}
2257
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002258int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11002259xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260{
Darrick J. Wong182696f2021-10-12 11:09:23 -07002261 xfs_buf_cache = kmem_cache_create("xfs_buf", sizeof(struct xfs_buf), 0,
Dave Chinner12eba652020-03-24 20:10:28 -07002262 SLAB_HWCACHE_ALIGN |
2263 SLAB_RECLAIM_ACCOUNT |
2264 SLAB_MEM_SPREAD,
2265 NULL);
Darrick J. Wong182696f2021-10-12 11:09:23 -07002266 if (!xfs_buf_cache)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002267 goto out;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002268
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002269 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002271 out:
Nathan Scott87582802006-03-14 13:18:19 +11002272 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273}
2274
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275void
Nathan Scottce8e9222006-01-11 15:39:08 +11002276xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277{
Darrick J. Wong182696f2021-10-12 11:09:23 -07002278 kmem_cache_destroy(xfs_buf_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279}
Brian Foster7561d272017-10-17 14:16:29 -07002280
2281void xfs_buf_set_ref(struct xfs_buf *bp, int lru_ref)
2282{
Brian Foster7561d272017-10-17 14:16:29 -07002283 /*
2284 * Set the lru reference count to 0 based on the error injection tag.
2285 * This allows userspace to disrupt buffer caching for debug/testing
2286 * purposes.
2287 */
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07002288 if (XFS_TEST_ERROR(false, bp->b_mount, XFS_ERRTAG_BUF_LRU_REF))
Brian Foster7561d272017-10-17 14:16:29 -07002289 lru_ref = 0;
2290
2291 atomic_set(&bp->b_lru_ref, lru_ref);
2292}
Brian Foster8473fee2019-02-07 10:45:46 -08002293
2294/*
2295 * Verify an on-disk magic value against the magic value specified in the
2296 * verifier structure. The verifier magic is in disk byte order so the caller is
2297 * expected to pass the value directly from disk.
2298 */
2299bool
2300xfs_verify_magic(
2301 struct xfs_buf *bp,
Darrick J. Wong15baadf2019-02-16 11:47:28 -08002302 __be32 dmagic)
Brian Foster8473fee2019-02-07 10:45:46 -08002303{
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07002304 struct xfs_mount *mp = bp->b_mount;
Brian Foster8473fee2019-02-07 10:45:46 -08002305 int idx;
2306
Dave Chinner38c26bf2021-08-18 18:46:37 -07002307 idx = xfs_has_crc(mp);
Denis Efremov14ed8682019-09-25 16:49:37 -07002308 if (WARN_ON(!bp->b_ops || !bp->b_ops->magic[idx]))
Brian Foster8473fee2019-02-07 10:45:46 -08002309 return false;
2310 return dmagic == bp->b_ops->magic[idx];
2311}
Darrick J. Wong15baadf2019-02-16 11:47:28 -08002312/*
2313 * Verify an on-disk magic value against the magic value specified in the
2314 * verifier structure. The verifier magic is in disk byte order so the caller is
2315 * expected to pass the value directly from disk.
2316 */
2317bool
2318xfs_verify_magic16(
2319 struct xfs_buf *bp,
2320 __be16 dmagic)
2321{
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07002322 struct xfs_mount *mp = bp->b_mount;
Darrick J. Wong15baadf2019-02-16 11:47:28 -08002323 int idx;
2324
Dave Chinner38c26bf2021-08-18 18:46:37 -07002325 idx = xfs_has_crc(mp);
Denis Efremov14ed8682019-09-25 16:49:37 -07002326 if (WARN_ON(!bp->b_ops || !bp->b_ops->magic16[idx]))
Darrick J. Wong15baadf2019-02-16 11:47:28 -08002327 return false;
2328 return dmagic == bp->b_ops->magic16[idx];
2329}