blob: 5d2ebee263d90b4e65b8d26b29bdf63a6222d15f [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
David Chinner7989cb82007-02-10 18:34:56 +110023static kmem_zone_t *xfs_buf_zone;
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;
Carlos Maiolino32a2b112020-07-22 09:23:10 -0700223 bp = kmem_cache_zalloc(xfs_buf_zone, 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) {
Carlos Maiolino377bcd52019-11-14 12:43:04 -0800250 kmem_cache_free(xfs_buf_zone, bp);
Darrick J. Wong32dff5e2020-01-23 17:01:15 -0800251 return error;
Dave Chinner3e85c862012-06-22 18:50:09 +1000252 }
253
254 bp->b_bn = map[0].bm_bn;
255 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);
Carlos Maiolino377bcd52019-11-14 12:43:04 -0800310 kmem_cache_free(xfs_buf_zone, 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
462 if (bp->b_bn != map->bm_bn)
463 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),
484 .key_offset = offsetof(struct xfs_buf, b_bn),
485 .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) {
816 if (!XFS_FORCED_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
Jan Karaefa7c9f2017-02-02 15:56:53 +0100846 if (bdi_read_congested(target->bt_bdev->bd_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
856 * buffer containing the disk contents or nothing.
857 */
Dave Chinnerba3726742014-10-02 09:05:32 +1000858int
Dave Chinner5adc94c2010-09-24 21:58:31 +1000859xfs_buf_read_uncached(
Dave Chinner5adc94c2010-09-24 21:58:31 +1000860 struct xfs_buftarg *target,
861 xfs_daddr_t daddr,
Dave Chinnere70b73f2012-04-23 15:58:49 +1000862 size_t numblks,
Dave Chinnerc3f8fc72012-11-12 22:54:01 +1100863 int flags,
Dave Chinnerba3726742014-10-02 09:05:32 +1000864 struct xfs_buf **bpp,
Dave Chinner1813dd62012-11-14 17:54:40 +1100865 const struct xfs_buf_ops *ops)
Dave Chinner5adc94c2010-09-24 21:58:31 +1000866{
Dave Chinnereab4e632012-11-12 22:54:02 +1100867 struct xfs_buf *bp;
Darrick J. Wong2842b6d2020-01-23 17:01:17 -0800868 int error;
Dave Chinner5adc94c2010-09-24 21:58:31 +1000869
Dave Chinnerba3726742014-10-02 09:05:32 +1000870 *bpp = NULL;
871
Darrick J. Wong2842b6d2020-01-23 17:01:17 -0800872 error = xfs_buf_get_uncached(target, numblks, flags, &bp);
873 if (error)
874 return error;
Dave Chinner5adc94c2010-09-24 21:58:31 +1000875
876 /* set up the buffer for a read IO */
Dave Chinner3e85c862012-06-22 18:50:09 +1000877 ASSERT(bp->b_map_count == 1);
Dave Chinnerba3726742014-10-02 09:05:32 +1000878 bp->b_bn = XFS_BUF_DADDR_NULL; /* always null for uncached buffers */
Dave Chinner3e85c862012-06-22 18:50:09 +1000879 bp->b_maps[0].bm_bn = daddr;
Dave Chinnercbb7baa2012-06-22 18:50:08 +1000880 bp->b_flags |= XBF_READ;
Dave Chinner1813dd62012-11-14 17:54:40 +1100881 bp->b_ops = ops;
Dave Chinner5adc94c2010-09-24 21:58:31 +1000882
Brian Foster6af88cd2018-07-11 22:26:35 -0700883 xfs_buf_submit(bp);
Dave Chinnerba3726742014-10-02 09:05:32 +1000884 if (bp->b_error) {
Darrick J. Wong2842b6d2020-01-23 17:01:17 -0800885 error = bp->b_error;
Christoph Hellwig83a0adc2013-12-17 00:03:52 -0800886 xfs_buf_relse(bp);
Dave Chinnerba3726742014-10-02 09:05:32 +1000887 return error;
Christoph Hellwig83a0adc2013-12-17 00:03:52 -0800888 }
Dave Chinnerba3726742014-10-02 09:05:32 +1000889
890 *bpp = bp;
891 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892}
893
Darrick J. Wong2842b6d2020-01-23 17:01:17 -0800894int
Dave Chinner686865f2010-09-24 20:07:47 +1000895xfs_buf_get_uncached(
896 struct xfs_buftarg *target,
Dave Chinnere70b73f2012-04-23 15:58:49 +1000897 size_t numblks,
Darrick J. Wong2842b6d2020-01-23 17:01:17 -0800898 int flags,
899 struct xfs_buf **bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900{
Dave Chinner07b5c5a2021-06-01 13:40:35 +1000901 int error;
Dave Chinner3e85c862012-06-22 18:50:09 +1000902 struct xfs_buf *bp;
903 DEFINE_SINGLE_BUF_MAP(map, XFS_BUF_DADDR_NULL, numblks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904
Darrick J. Wong2842b6d2020-01-23 17:01:17 -0800905 *bpp = NULL;
906
Brian Fosterc891c302016-07-20 11:13:43 +1000907 /* flags might contain irrelevant bits, pass only what we care about */
Darrick J. Wong32dff5e2020-01-23 17:01:15 -0800908 error = _xfs_buf_alloc(target, &map, 1, flags & XBF_NO_IOACCT, &bp);
909 if (error)
Dave Chinner07b5c5a2021-06-01 13:40:35 +1000910 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
Christoph Hellwig934d10762021-06-07 11:50:00 +1000912 error = xfs_buf_alloc_pages(bp, flags);
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000913 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 goto fail_free_buf;
915
Dave Chinner611c9942012-04-23 15:59:07 +1000916 error = _xfs_buf_map_pages(bp, 0);
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000917 if (unlikely(error)) {
Dave Chinner4f107002011-03-07 10:00:35 +1100918 xfs_warn(target->bt_mount,
Eric Sandeen08e96e12013-10-11 20:59:05 -0500919 "%s: failed to map pages", __func__);
Dave Chinner07b5c5a2021-06-01 13:40:35 +1000920 goto fail_free_buf;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000921 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922
Dave Chinner686865f2010-09-24 20:07:47 +1000923 trace_xfs_buf_get_uncached(bp, _RET_IP_);
Darrick J. Wong2842b6d2020-01-23 17:01:17 -0800924 *bpp = bp;
925 return 0;
Christoph Hellwig1fa40b02007-05-14 18:23:50 +1000926
Dave Chinner07b5c5a2021-06-01 13:40:35 +1000927fail_free_buf:
928 xfs_buf_free(bp);
Darrick J. Wong2842b6d2020-01-23 17:01:17 -0800929 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930}
931
932/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 * Increment reference count on buffer, to hold the buffer concurrently
934 * with another thread which may release (free) the buffer asynchronously.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 * Must hold the buffer already to call this function.
936 */
937void
Nathan Scottce8e9222006-01-11 15:39:08 +1100938xfs_buf_hold(
Dave Chinnere8222612020-12-16 16:07:34 -0800939 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000941 trace_xfs_buf_hold(bp, _RET_IP_);
Nathan Scottce8e9222006-01-11 15:39:08 +1100942 atomic_inc(&bp->b_hold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
944
945/*
Brian Foster9c7504a2016-07-20 11:15:28 +1000946 * Release a hold on the specified buffer. If the hold count is 1, the buffer is
947 * placed on LRU or freed (depending on b_lru_ref).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 */
949void
Nathan Scottce8e9222006-01-11 15:39:08 +1100950xfs_buf_rele(
Dave Chinnere8222612020-12-16 16:07:34 -0800951 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
Dave Chinner74f75a02010-09-24 19:59:04 +1000953 struct xfs_perag *pag = bp->b_pag;
Brian Foster9c7504a2016-07-20 11:15:28 +1000954 bool release;
955 bool freebuf = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000957 trace_xfs_buf_rele(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
Dave Chinner74f75a02010-09-24 19:59:04 +1000959 if (!pag) {
Dave Chinner430cbeb2010-12-02 16:30:55 +1100960 ASSERT(list_empty(&bp->b_lru));
Brian Foster9c7504a2016-07-20 11:15:28 +1000961 if (atomic_dec_and_test(&bp->b_hold)) {
962 xfs_buf_ioacct_dec(bp);
Nathan Scottfad3aa12006-02-01 12:14:52 +1100963 xfs_buf_free(bp);
Brian Foster9c7504a2016-07-20 11:15:28 +1000964 }
Nathan Scottfad3aa12006-02-01 12:14:52 +1100965 return;
966 }
967
Lachlan McIlroy37906892008-08-13 15:42:10 +1000968 ASSERT(atomic_read(&bp->b_hold) > 0);
Dave Chinnera4082352013-08-28 10:18:06 +1000969
Dave Chinner37fd1672018-10-18 17:21:29 +1100970 /*
971 * We grab the b_lock here first to serialise racing xfs_buf_rele()
972 * calls. The pag_buf_lock being taken on the last reference only
973 * serialises against racing lookups in xfs_buf_find(). IOWs, the second
974 * to last reference we drop here is not serialised against the last
975 * reference until we take bp->b_lock. Hence if we don't grab b_lock
976 * first, the last "release" reference can win the race to the lock and
977 * free the buffer before the second-to-last reference is processed,
978 * leading to a use-after-free scenario.
979 */
Brian Foster9c7504a2016-07-20 11:15:28 +1000980 spin_lock(&bp->b_lock);
Dave Chinner37fd1672018-10-18 17:21:29 +1100981 release = atomic_dec_and_lock(&bp->b_hold, &pag->pag_buf_lock);
Brian Foster9c7504a2016-07-20 11:15:28 +1000982 if (!release) {
983 /*
984 * Drop the in-flight state if the buffer is already on the LRU
985 * and it holds the only reference. This is racy because we
986 * haven't acquired the pag lock, but the use of _XBF_IN_FLIGHT
987 * ensures the decrement occurs only once per-buf.
988 */
989 if ((atomic_read(&bp->b_hold) == 1) && !list_empty(&bp->b_lru))
Brian Foster63db7c82017-05-31 08:22:52 -0700990 __xfs_buf_ioacct_dec(bp);
Brian Foster9c7504a2016-07-20 11:15:28 +1000991 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 }
Brian Foster9c7504a2016-07-20 11:15:28 +1000993
994 /* the last reference has been dropped ... */
Brian Foster63db7c82017-05-31 08:22:52 -0700995 __xfs_buf_ioacct_dec(bp);
Brian Foster9c7504a2016-07-20 11:15:28 +1000996 if (!(bp->b_flags & XBF_STALE) && atomic_read(&bp->b_lru_ref)) {
997 /*
998 * If the buffer is added to the LRU take a new reference to the
999 * buffer for the LRU and clear the (now stale) dispose list
1000 * state flag
1001 */
1002 if (list_lru_add(&bp->b_target->bt_lru, &bp->b_lru)) {
1003 bp->b_state &= ~XFS_BSTATE_DISPOSE;
1004 atomic_inc(&bp->b_hold);
1005 }
1006 spin_unlock(&pag->pag_buf_lock);
1007 } else {
1008 /*
1009 * most of the time buffers will already be removed from the
1010 * LRU, so optimise that case by checking for the
1011 * XFS_BSTATE_DISPOSE flag indicating the last list the buffer
1012 * was on was the disposal list
1013 */
1014 if (!(bp->b_state & XFS_BSTATE_DISPOSE)) {
1015 list_lru_del(&bp->b_target->bt_lru, &bp->b_lru);
1016 } else {
1017 ASSERT(list_empty(&bp->b_lru));
1018 }
1019
1020 ASSERT(!(bp->b_flags & _XBF_DELWRI_Q));
Lucas Stach6031e732016-12-07 17:36:36 +11001021 rhashtable_remove_fast(&pag->pag_buf_hash, &bp->b_rhash_head,
1022 xfs_buf_hash_params);
Brian Foster9c7504a2016-07-20 11:15:28 +10001023 spin_unlock(&pag->pag_buf_lock);
1024 xfs_perag_put(pag);
1025 freebuf = true;
1026 }
1027
1028out_unlock:
1029 spin_unlock(&bp->b_lock);
1030
1031 if (freebuf)
1032 xfs_buf_free(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
1035
1036/*
Dave Chinner0e6e8472011-03-26 09:16:45 +11001037 * Lock a buffer object, if it is not already locked.
Dave Chinner90810b92010-11-30 15:16:16 +11001038 *
1039 * If we come across a stale, pinned, locked buffer, we know that we are
1040 * being asked to lock a buffer that has been reallocated. Because it is
1041 * pinned, we know that the log has not been pushed to disk and hence it
1042 * will still be locked. Rather than continuing to have trylock attempts
1043 * fail until someone else pushes the log, push it ourselves before
1044 * returning. This means that the xfsaild will not get stuck trying
1045 * to push on stale inode buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 */
1047int
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001048xfs_buf_trylock(
1049 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050{
1051 int locked;
1052
Nathan Scottce8e9222006-01-11 15:39:08 +11001053 locked = down_trylock(&bp->b_sema) == 0;
Eric Sandeenfa6c6682018-08-10 13:56:25 -07001054 if (locked)
Darrick J. Wong479c6412016-06-21 11:53:28 +10001055 trace_xfs_buf_trylock(bp, _RET_IP_);
Eric Sandeenfa6c6682018-08-10 13:56:25 -07001056 else
Darrick J. Wong479c6412016-06-21 11:53:28 +10001057 trace_xfs_buf_trylock_fail(bp, _RET_IP_);
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001058 return locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061/*
Dave Chinner0e6e8472011-03-26 09:16:45 +11001062 * Lock a buffer object.
Dave Chinnered3b4d62010-05-21 12:07:08 +10001063 *
1064 * If we come across a stale, pinned, locked buffer, we know that we
1065 * are being asked to lock a buffer that has been reallocated. Because
1066 * it is pinned, we know that the log has not been pushed to disk and
1067 * hence it will still be locked. Rather than sleeping until someone
1068 * else pushes the log, push it ourselves before trying to get the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 */
Nathan Scottce8e9222006-01-11 15:39:08 +11001070void
1071xfs_buf_lock(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001072 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001074 trace_xfs_buf_lock(bp, _RET_IP_);
1075
Dave Chinnered3b4d62010-05-21 12:07:08 +10001076 if (atomic_read(&bp->b_pin_count) && (bp->b_flags & XBF_STALE))
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07001077 xfs_log_force(bp->b_mount, 0);
Nathan Scottce8e9222006-01-11 15:39:08 +11001078 down(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001079
1080 trace_xfs_buf_lock_done(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081}
1082
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083void
Nathan Scottce8e9222006-01-11 15:39:08 +11001084xfs_buf_unlock(
Christoph Hellwig0c842ad2011-07-08 14:36:19 +02001085 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086{
Brian Foster20e8a062017-04-21 12:40:44 -07001087 ASSERT(xfs_buf_islocked(bp));
1088
Nathan Scottce8e9222006-01-11 15:39:08 +11001089 up(&bp->b_sema);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001090 trace_xfs_buf_unlock(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091}
1092
Nathan Scottce8e9222006-01-11 15:39:08 +11001093STATIC void
1094xfs_buf_wait_unpin(
Dave Chinnere8222612020-12-16 16:07:34 -08001095 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096{
1097 DECLARE_WAITQUEUE (wait, current);
1098
Nathan Scottce8e9222006-01-11 15:39:08 +11001099 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 return;
1101
Nathan Scottce8e9222006-01-11 15:39:08 +11001102 add_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 for (;;) {
1104 set_current_state(TASK_UNINTERRUPTIBLE);
Nathan Scottce8e9222006-01-11 15:39:08 +11001105 if (atomic_read(&bp->b_pin_count) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 break;
Jens Axboe7eaceac2011-03-10 08:52:07 +01001107 io_schedule();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 }
Nathan Scottce8e9222006-01-11 15:39:08 +11001109 remove_wait_queue(&bp->b_waiters, &wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 set_current_state(TASK_RUNNING);
1111}
1112
Christoph Hellwigf58d0ea2020-09-01 10:55:44 -07001113static void
1114xfs_buf_ioerror_alert_ratelimited(
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001115 struct xfs_buf *bp)
1116{
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001117 static unsigned long lasttime;
1118 static struct xfs_buftarg *lasttarg;
1119
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001120 if (bp->b_target != lasttarg ||
1121 time_after(jiffies, (lasttime + 5*HZ))) {
1122 lasttime = jiffies;
1123 xfs_buf_ioerror_alert(bp, __this_address);
1124 }
1125 lasttarg = bp->b_target;
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001126}
1127
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001128/*
1129 * Account for this latest trip around the retry handler, and decide if
1130 * we've failed enough times to constitute a permanent failure.
1131 */
1132static bool
1133xfs_buf_ioerror_permanent(
1134 struct xfs_buf *bp,
1135 struct xfs_error_cfg *cfg)
1136{
1137 struct xfs_mount *mp = bp->b_mount;
1138
1139 if (cfg->max_retries != XFS_ERR_RETRY_FOREVER &&
1140 ++bp->b_retries > cfg->max_retries)
1141 return true;
1142 if (cfg->retry_timeout != XFS_ERR_RETRY_FOREVER &&
1143 time_after(jiffies, cfg->retry_timeout + bp->b_first_retry_time))
1144 return true;
1145
1146 /* At unmount we may treat errors differently */
1147 if ((mp->m_flags & XFS_MOUNT_UNMOUNTING) && mp->m_fail_unmount)
1148 return true;
1149
1150 return false;
1151}
1152
1153/*
1154 * On a sync write or shutdown we just want to stale the buffer and let the
1155 * caller handle the error in bp->b_error appropriately.
1156 *
1157 * If the write was asynchronous then no one will be looking for the error. If
1158 * this is the first failure of this type, clear the error state and write the
1159 * buffer out again. This means we always retry an async write failure at least
1160 * once, but we also need to set the buffer up to behave correctly now for
1161 * repeated failures.
1162 *
1163 * If we get repeated async write failures, then we take action according to the
1164 * error configuration we have been set up to use.
1165 *
Christoph Hellwig70796c62020-09-01 10:55:45 -07001166 * Returns true if this function took care of error handling and the caller must
1167 * not touch the buffer again. Return false if the caller should proceed with
1168 * normal I/O completion handling.
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001169 */
Christoph Hellwig70796c62020-09-01 10:55:45 -07001170static bool
1171xfs_buf_ioend_handle_error(
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001172 struct xfs_buf *bp)
1173{
1174 struct xfs_mount *mp = bp->b_mount;
1175 struct xfs_error_cfg *cfg;
1176
Christoph Hellwigf58d0ea2020-09-01 10:55:44 -07001177 /*
1178 * If we've already decided to shutdown the filesystem because of I/O
1179 * errors, there's no point in giving this a retry.
1180 */
1181 if (XFS_FORCED_SHUTDOWN(mp))
1182 goto out_stale;
1183
1184 xfs_buf_ioerror_alert_ratelimited(bp);
1185
1186 /*
Christoph Hellwig22c10582020-09-01 10:55:46 -07001187 * We're not going to bother about retrying this during recovery.
1188 * One strike!
1189 */
1190 if (bp->b_flags & _XBF_LOGRECOVERY) {
1191 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1192 return false;
1193 }
1194
1195 /*
Christoph Hellwigf58d0ea2020-09-01 10:55:44 -07001196 * Synchronous writes will have callers process the error.
1197 */
1198 if (!(bp->b_flags & XBF_ASYNC))
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001199 goto out_stale;
1200
1201 trace_xfs_buf_iodone_async(bp, _RET_IP_);
1202
1203 cfg = xfs_error_get_cfg(mp, XFS_ERR_METADATA, bp->b_error);
Christoph Hellwig3cc49882020-09-01 10:55:45 -07001204 if (bp->b_last_error != bp->b_error ||
1205 !(bp->b_flags & (XBF_STALE | XBF_WRITE_FAIL))) {
1206 bp->b_last_error = bp->b_error;
1207 if (cfg->retry_timeout != XFS_ERR_RETRY_FOREVER &&
1208 !bp->b_first_retry_time)
1209 bp->b_first_retry_time = jiffies;
1210 goto resubmit;
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001211 }
1212
1213 /*
1214 * Permanent error - we need to trigger a shutdown if we haven't already
1215 * to indicate that inconsistency will result from this action.
1216 */
1217 if (xfs_buf_ioerror_permanent(bp, cfg)) {
1218 xfs_force_shutdown(mp, SHUTDOWN_META_IO_ERROR);
1219 goto out_stale;
1220 }
1221
1222 /* Still considered a transient error. Caller will schedule retries. */
Christoph Hellwig844c9352020-09-01 10:55:45 -07001223 if (bp->b_flags & _XBF_INODES)
1224 xfs_buf_inode_io_fail(bp);
1225 else if (bp->b_flags & _XBF_DQUOTS)
1226 xfs_buf_dquot_io_fail(bp);
1227 else
1228 ASSERT(list_empty(&bp->b_li_list));
1229 xfs_buf_ioerror(bp, 0);
1230 xfs_buf_relse(bp);
Christoph Hellwig70796c62020-09-01 10:55:45 -07001231 return true;
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001232
Christoph Hellwig3cc49882020-09-01 10:55:45 -07001233resubmit:
1234 xfs_buf_ioerror(bp, 0);
Christoph Hellwig55b7d712020-09-01 10:55:46 -07001235 bp->b_flags |= (XBF_DONE | XBF_WRITE_FAIL);
Christoph Hellwig3cc49882020-09-01 10:55:45 -07001236 xfs_buf_submit(bp);
Christoph Hellwig70796c62020-09-01 10:55:45 -07001237 return true;
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001238out_stale:
1239 xfs_buf_stale(bp);
1240 bp->b_flags |= XBF_DONE;
Christoph Hellwig55b7d712020-09-01 10:55:46 -07001241 bp->b_flags &= ~XBF_WRITE;
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001242 trace_xfs_buf_error_relse(bp, _RET_IP_);
Christoph Hellwig70796c62020-09-01 10:55:45 -07001243 return false;
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001244}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Christoph Hellwig76b2d322020-09-01 10:55:20 -07001246static void
Dave Chinnere8aaba92014-10-02 09:04:22 +10001247xfs_buf_ioend(
1248 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
Dave Chinnere8aaba92014-10-02 09:04:22 +10001250 trace_xfs_buf_iodone(bp, _RET_IP_);
Dave Chinner1813dd62012-11-14 17:54:40 +11001251
Dave Chinner61be9c52014-10-02 09:04:31 +10001252 /*
1253 * Pull in IO completion errors now. We are guaranteed to be running
1254 * single threaded, so we don't need the lock to read b_io_error.
1255 */
1256 if (!bp->b_error && bp->b_io_error)
1257 xfs_buf_ioerror(bp, bp->b_io_error);
1258
Christoph Hellwig55b7d712020-09-01 10:55:46 -07001259 if (bp->b_flags & XBF_READ) {
Dave Chinnerb01d1462020-06-29 14:48:47 -07001260 if (!bp->b_error && bp->b_ops)
1261 bp->b_ops->verify_read(bp);
1262 if (!bp->b_error)
1263 bp->b_flags |= XBF_DONE;
Christoph Hellwig23fb5a92020-09-01 10:55:20 -07001264 } else {
1265 if (!bp->b_error) {
1266 bp->b_flags &= ~XBF_WRITE_FAIL;
1267 bp->b_flags |= XBF_DONE;
1268 }
Dave Chinner9fe5c772020-06-29 14:48:47 -07001269
Christoph Hellwig70796c62020-09-01 10:55:45 -07001270 if (unlikely(bp->b_error) && xfs_buf_ioend_handle_error(bp))
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001271 return;
Christoph Hellwig664ffb82020-09-01 10:55:29 -07001272
1273 /* clear the retry state */
1274 bp->b_last_error = 0;
1275 bp->b_retries = 0;
1276 bp->b_first_retry_time = 0;
1277
1278 /*
1279 * Note that for things like remote attribute buffers, there may
1280 * not be a buffer log item here, so processing the buffer log
1281 * item must remain optional.
1282 */
1283 if (bp->b_log_item)
1284 xfs_buf_item_done(bp);
1285
Christoph Hellwig23fb5a92020-09-01 10:55:20 -07001286 if (bp->b_flags & _XBF_INODES)
1287 xfs_buf_inode_iodone(bp);
1288 else if (bp->b_flags & _XBF_DQUOTS)
1289 xfs_buf_dquot_iodone(bp);
Christoph Hellwig22c10582020-09-01 10:55:46 -07001290
Dave Chinnerf593bf12020-06-29 14:48:46 -07001291 }
Christoph Hellwig6a7584b2020-09-01 10:55:44 -07001292
Christoph Hellwig22c10582020-09-01 10:55:46 -07001293 bp->b_flags &= ~(XBF_READ | XBF_WRITE | XBF_READ_AHEAD |
1294 _XBF_LOGRECOVERY);
Christoph Hellwig55b7d712020-09-01 10:55:46 -07001295
Christoph Hellwig6a7584b2020-09-01 10:55:44 -07001296 if (bp->b_flags & XBF_ASYNC)
1297 xfs_buf_relse(bp);
1298 else
1299 complete(&bp->b_iowait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300}
1301
Dave Chinnere8aaba92014-10-02 09:04:22 +10001302static void
1303xfs_buf_ioend_work(
1304 struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305{
Dave Chinnere8aaba92014-10-02 09:04:22 +10001306 struct xfs_buf *bp =
Dave Chinnere8222612020-12-16 16:07:34 -08001307 container_of(work, struct xfs_buf, b_ioend_work);
Dave Chinner1813dd62012-11-14 17:54:40 +11001308
Dave Chinnere8aaba92014-10-02 09:04:22 +10001309 xfs_buf_ioend(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310}
1311
Alexander Kuleshov211fe1a2016-01-04 16:10:42 +11001312static void
Dave Chinnere8aaba92014-10-02 09:04:22 +10001313xfs_buf_ioend_async(
1314 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
Brian Fosterb29c70f2014-12-04 09:43:17 +11001316 INIT_WORK(&bp->b_ioend_work, xfs_buf_ioend_work);
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07001317 queue_work(bp->b_mount->m_buf_workqueue, &bp->b_ioend_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318}
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320void
Darrick J. Wong31ca03c2018-01-08 10:51:02 -08001321__xfs_buf_ioerror(
Dave Chinnere8222612020-12-16 16:07:34 -08001322 struct xfs_buf *bp,
Darrick J. Wong31ca03c2018-01-08 10:51:02 -08001323 int error,
1324 xfs_failaddr_t failaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325{
Dave Chinner24513372014-06-25 14:58:08 +10001326 ASSERT(error <= 0 && error >= -1000);
1327 bp->b_error = error;
Darrick J. Wong31ca03c2018-01-08 10:51:02 -08001328 trace_xfs_buf_ioerror(bp, error, failaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330
Christoph Hellwig901796a2011-10-10 16:52:49 +00001331void
1332xfs_buf_ioerror_alert(
1333 struct xfs_buf *bp,
Darrick J. Wongcdbcf822020-01-23 17:01:20 -08001334 xfs_failaddr_t func)
Christoph Hellwig901796a2011-10-10 16:52:49 +00001335{
Brian Fosterf9bccfc2020-05-06 13:25:21 -07001336 xfs_buf_alert_ratelimited(bp, "XFS: metadata IO error",
1337 "metadata I/O error in \"%pS\" at daddr 0x%llx len %d error %d",
1338 func, (uint64_t)XFS_BUF_ADDR(bp),
1339 bp->b_length, -bp->b_error);
Christoph Hellwig901796a2011-10-10 16:52:49 +00001340}
1341
Brian Foster54b3b1f2020-05-06 13:25:19 -07001342/*
1343 * To simulate an I/O failure, the buffer must be locked and held with at least
1344 * three references. The LRU reference is dropped by the stale call. The buf
1345 * item reference is dropped via ioend processing. The third reference is owned
1346 * by the caller and is dropped on I/O completion if the buffer is XBF_ASYNC.
1347 */
1348void
1349xfs_buf_ioend_fail(
1350 struct xfs_buf *bp)
1351{
1352 bp->b_flags &= ~XBF_DONE;
1353 xfs_buf_stale(bp);
1354 xfs_buf_ioerror(bp, -EIO);
1355 xfs_buf_ioend(bp);
Christoph Hellwig5d765b92008-12-03 12:20:26 +01001356}
Christoph Hellwig939d7232010-07-20 17:51:16 +10001357
Christoph Hellwiga2dcf5d2012-07-13 02:24:10 -04001358int
1359xfs_bwrite(
1360 struct xfs_buf *bp)
1361{
1362 int error;
1363
1364 ASSERT(xfs_buf_islocked(bp));
1365
1366 bp->b_flags |= XBF_WRITE;
Dave Chinner27187752014-10-02 09:04:56 +10001367 bp->b_flags &= ~(XBF_ASYNC | XBF_READ | _XBF_DELWRI_Q |
Brian Fosterb6983e82020-05-06 13:25:20 -07001368 XBF_DONE);
Christoph Hellwiga2dcf5d2012-07-13 02:24:10 -04001369
Brian Foster6af88cd2018-07-11 22:26:35 -07001370 error = xfs_buf_submit(bp);
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07001371 if (error)
1372 xfs_force_shutdown(bp->b_mount, SHUTDOWN_META_IO_ERROR);
Christoph Hellwiga2dcf5d2012-07-13 02:24:10 -04001373 return error;
1374}
1375
Brian Foster9bdd9bd2016-05-18 10:56:41 +10001376static void
Nathan Scottce8e9222006-01-11 15:39:08 +11001377xfs_buf_bio_end_io(
Christoph Hellwig4246a0b2015-07-20 15:29:37 +02001378 struct bio *bio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
Brian Foster9bdd9bd2016-05-18 10:56:41 +10001380 struct xfs_buf *bp = (struct xfs_buf *)bio->bi_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381
Brian Foster7376d742020-05-06 13:29:19 -07001382 if (!bio->bi_status &&
1383 (bp->b_flags & XBF_WRITE) && (bp->b_flags & XBF_ASYNC) &&
Brian Foster43dc0aa2020-05-08 08:50:52 -07001384 XFS_TEST_ERROR(false, bp->b_mount, XFS_ERRTAG_BUF_IOERROR))
Brian Foster7376d742020-05-06 13:29:19 -07001385 bio->bi_status = BLK_STS_IOERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Dave Chinner37eb17e2012-11-12 22:09:46 +11001387 /*
1388 * don't overwrite existing errors - otherwise we can lose errors on
1389 * buffers that require multiple bios to complete.
1390 */
Christoph Hellwig4e4cbee2017-06-03 09:38:06 +02001391 if (bio->bi_status) {
1392 int error = blk_status_to_errno(bio->bi_status);
1393
1394 cmpxchg(&bp->b_io_error, 0, error);
1395 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Dave Chinner37eb17e2012-11-12 22:09:46 +11001397 if (!bp->b_error && xfs_buf_is_vmapped(bp) && (bp->b_flags & XBF_READ))
James Bottomley73c77e22010-01-25 11:42:24 -06001398 invalidate_kernel_vmap_range(bp->b_addr, xfs_buf_vmap_len(bp));
1399
Dave Chinnere8aaba92014-10-02 09:04:22 +10001400 if (atomic_dec_and_test(&bp->b_io_remaining) == 1)
1401 xfs_buf_ioend_async(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403}
1404
Dave Chinner3e85c862012-06-22 18:50:09 +10001405static void
1406xfs_buf_ioapply_map(
1407 struct xfs_buf *bp,
1408 int map,
1409 int *buf_offset,
1410 int *count,
Christoph Hellwig2123ef82019-10-28 08:41:42 -07001411 int op)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412{
Dave Chinner3e85c862012-06-22 18:50:09 +10001413 int page_index;
Matthew Wilcox (Oracle)5f7136d2021-01-29 04:38:57 +00001414 unsigned int total_nr_pages = bp->b_page_count;
Dave Chinner3e85c862012-06-22 18:50:09 +10001415 int nr_pages;
1416 struct bio *bio;
1417 sector_t sector = bp->b_maps[map].bm_bn;
1418 int size;
1419 int offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Dave Chinner3e85c862012-06-22 18:50:09 +10001421 /* skip the pages in the buffer before the start offset */
1422 page_index = 0;
1423 offset = *buf_offset;
1424 while (offset >= PAGE_SIZE) {
1425 page_index++;
1426 offset -= PAGE_SIZE;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001427 }
1428
Dave Chinner3e85c862012-06-22 18:50:09 +10001429 /*
1430 * Limit the IO size to the length of the current vector, and update the
1431 * remaining IO count for the next time around.
1432 */
1433 size = min_t(int, BBTOB(bp->b_maps[map].bm_len), *count);
1434 *count -= size;
1435 *buf_offset += size;
Christoph Hellwig34951f52011-07-26 15:06:44 +00001436
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437next_chunk:
Nathan Scottce8e9222006-01-11 15:39:08 +11001438 atomic_inc(&bp->b_io_remaining);
Matthew Wilcox (Oracle)5f7136d2021-01-29 04:38:57 +00001439 nr_pages = bio_max_segs(total_nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
1441 bio = bio_alloc(GFP_NOIO, nr_pages);
Christoph Hellwig74d46992017-08-23 19:10:32 +02001442 bio_set_dev(bio, bp->b_target->bt_bdev);
Kent Overstreet4f024f32013-10-11 15:44:27 -07001443 bio->bi_iter.bi_sector = sector;
Nathan Scottce8e9222006-01-11 15:39:08 +11001444 bio->bi_end_io = xfs_buf_bio_end_io;
1445 bio->bi_private = bp;
Christoph Hellwig2123ef82019-10-28 08:41:42 -07001446 bio->bi_opf = op;
Dave Chinner0e6e8472011-03-26 09:16:45 +11001447
Dave Chinner3e85c862012-06-22 18:50:09 +10001448 for (; size && nr_pages; nr_pages--, page_index++) {
Dave Chinner0e6e8472011-03-26 09:16:45 +11001449 int rbytes, nbytes = PAGE_SIZE - offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
1451 if (nbytes > size)
1452 nbytes = size;
1453
Dave Chinner3e85c862012-06-22 18:50:09 +10001454 rbytes = bio_add_page(bio, bp->b_pages[page_index], nbytes,
1455 offset);
Nathan Scottce8e9222006-01-11 15:39:08 +11001456 if (rbytes < nbytes)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 break;
1458
1459 offset = 0;
Dave Chinneraa0e8832012-04-23 15:58:52 +10001460 sector += BTOBB(nbytes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 size -= nbytes;
1462 total_nr_pages--;
1463 }
1464
Kent Overstreet4f024f32013-10-11 15:44:27 -07001465 if (likely(bio->bi_iter.bi_size)) {
James Bottomley73c77e22010-01-25 11:42:24 -06001466 if (xfs_buf_is_vmapped(bp)) {
1467 flush_kernel_vmap_range(bp->b_addr,
1468 xfs_buf_vmap_len(bp));
1469 }
Mike Christie4e49ea42016-06-05 14:31:41 -05001470 submit_bio(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 if (size)
1472 goto next_chunk;
1473 } else {
Dave Chinner37eb17e2012-11-12 22:09:46 +11001474 /*
1475 * This is guaranteed not to be the last io reference count
Dave Chinner595bff72014-10-02 09:05:14 +10001476 * because the caller (xfs_buf_submit) holds a count itself.
Dave Chinner37eb17e2012-11-12 22:09:46 +11001477 */
1478 atomic_dec(&bp->b_io_remaining);
Dave Chinner24513372014-06-25 14:58:08 +10001479 xfs_buf_ioerror(bp, -EIO);
Dave Chinnerec53d1d2010-07-20 17:52:59 +10001480 bio_put(bio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 }
Dave Chinner3e85c862012-06-22 18:50:09 +10001482
1483}
1484
1485STATIC void
1486_xfs_buf_ioapply(
1487 struct xfs_buf *bp)
1488{
1489 struct blk_plug plug;
Mike Christie50bfcd02016-06-05 14:31:57 -05001490 int op;
Dave Chinner3e85c862012-06-22 18:50:09 +10001491 int offset;
1492 int size;
1493 int i;
1494
Dave Chinnerc163f9a2013-03-12 23:30:34 +11001495 /*
1496 * Make sure we capture only current IO errors rather than stale errors
1497 * left over from previous use of the buffer (e.g. failed readahead).
1498 */
1499 bp->b_error = 0;
1500
Dave Chinner3e85c862012-06-22 18:50:09 +10001501 if (bp->b_flags & XBF_WRITE) {
Mike Christie50bfcd02016-06-05 14:31:57 -05001502 op = REQ_OP_WRITE;
Dave Chinner1813dd62012-11-14 17:54:40 +11001503
1504 /*
1505 * Run the write verifier callback function if it exists. If
1506 * this function fails it will mark the buffer with an error and
1507 * the IO should not be dispatched.
1508 */
1509 if (bp->b_ops) {
1510 bp->b_ops->verify_write(bp);
1511 if (bp->b_error) {
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07001512 xfs_force_shutdown(bp->b_mount,
Dave Chinner1813dd62012-11-14 17:54:40 +11001513 SHUTDOWN_CORRUPT_INCORE);
1514 return;
1515 }
Dave Chinner400b9d82014-08-04 12:42:40 +10001516 } else if (bp->b_bn != XFS_BUF_DADDR_NULL) {
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07001517 struct xfs_mount *mp = bp->b_mount;
Dave Chinner400b9d82014-08-04 12:42:40 +10001518
1519 /*
1520 * non-crc filesystems don't attach verifiers during
1521 * log recovery, so don't warn for such filesystems.
1522 */
Dave Chinner38c26bf2021-08-18 18:46:37 -07001523 if (xfs_has_crc(mp)) {
Dave Chinner400b9d82014-08-04 12:42:40 +10001524 xfs_warn(mp,
Darrick J. Wongc219b012018-01-08 11:39:18 -08001525 "%s: no buf ops on daddr 0x%llx len %d",
Dave Chinner400b9d82014-08-04 12:42:40 +10001526 __func__, bp->b_bn, bp->b_length);
Darrick J. Wong9c712a12018-01-08 10:51:26 -08001527 xfs_hex_dump(bp->b_addr,
1528 XFS_CORRUPTION_DUMP_LEN);
Dave Chinner400b9d82014-08-04 12:42:40 +10001529 dump_stack();
1530 }
Dave Chinner1813dd62012-11-14 17:54:40 +11001531 }
Dave Chinner3e85c862012-06-22 18:50:09 +10001532 } else {
Mike Christie50bfcd02016-06-05 14:31:57 -05001533 op = REQ_OP_READ;
Christoph Hellwig2123ef82019-10-28 08:41:42 -07001534 if (bp->b_flags & XBF_READ_AHEAD)
1535 op |= REQ_RAHEAD;
Dave Chinner3e85c862012-06-22 18:50:09 +10001536 }
1537
1538 /* we only use the buffer cache for meta-data */
Christoph Hellwig2123ef82019-10-28 08:41:42 -07001539 op |= REQ_META;
Dave Chinner3e85c862012-06-22 18:50:09 +10001540
1541 /*
1542 * Walk all the vectors issuing IO on them. Set up the initial offset
1543 * into the buffer and the desired IO size before we start -
1544 * _xfs_buf_ioapply_vec() will modify them appropriately for each
1545 * subsequent call.
1546 */
1547 offset = bp->b_offset;
Christoph Hellwig8124b9b2019-06-28 19:27:28 -07001548 size = BBTOB(bp->b_length);
Dave Chinner3e85c862012-06-22 18:50:09 +10001549 blk_start_plug(&plug);
1550 for (i = 0; i < bp->b_map_count; i++) {
Christoph Hellwig2123ef82019-10-28 08:41:42 -07001551 xfs_buf_ioapply_map(bp, i, &offset, &size, op);
Dave Chinner3e85c862012-06-22 18:50:09 +10001552 if (bp->b_error)
1553 break;
1554 if (size <= 0)
1555 break; /* all done */
1556 }
1557 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558}
1559
Dave Chinner595bff72014-10-02 09:05:14 +10001560/*
Brian Fosterbb00b6f2018-07-11 22:26:35 -07001561 * Wait for I/O completion of a sync buffer and return the I/O error code.
Dave Chinner595bff72014-10-02 09:05:14 +10001562 */
Brian Fostereaebb512018-07-11 22:26:34 -07001563static int
Brian Fosterbb00b6f2018-07-11 22:26:35 -07001564xfs_buf_iowait(
Dave Chinner595bff72014-10-02 09:05:14 +10001565 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566{
Brian Fosterbb00b6f2018-07-11 22:26:35 -07001567 ASSERT(!(bp->b_flags & XBF_ASYNC));
1568
1569 trace_xfs_buf_iowait(bp, _RET_IP_);
1570 wait_for_completion(&bp->b_iowait);
1571 trace_xfs_buf_iowait_done(bp, _RET_IP_);
1572
1573 return bp->b_error;
1574}
1575
1576/*
1577 * Buffer I/O submission path, read or write. Asynchronous submission transfers
1578 * the buffer lock ownership and the current reference to the IO. It is not
1579 * safe to reference the buffer after a call to this function unless the caller
1580 * holds an additional reference itself.
1581 */
Christoph Hellwig26e328752020-09-01 10:55:47 -07001582static int
Brian Fosterbb00b6f2018-07-11 22:26:35 -07001583__xfs_buf_submit(
1584 struct xfs_buf *bp,
1585 bool wait)
1586{
1587 int error = 0;
1588
Dave Chinner595bff72014-10-02 09:05:14 +10001589 trace_xfs_buf_submit(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
Christoph Hellwig43ff2122012-04-23 15:58:39 +10001591 ASSERT(!(bp->b_flags & _XBF_DELWRI_Q));
Dave Chinner595bff72014-10-02 09:05:14 +10001592
1593 /* on shutdown we stale and complete the buffer immediately */
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07001594 if (XFS_FORCED_SHUTDOWN(bp->b_mount)) {
Brian Foster54b3b1f2020-05-06 13:25:19 -07001595 xfs_buf_ioend_fail(bp);
Brian Fostereaebb512018-07-11 22:26:34 -07001596 return -EIO;
Dave Chinner595bff72014-10-02 09:05:14 +10001597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Brian Fosterbb00b6f2018-07-11 22:26:35 -07001599 /*
1600 * Grab a reference so the buffer does not go away underneath us. For
1601 * async buffers, I/O completion drops the callers reference, which
1602 * could occur before submission returns.
1603 */
1604 xfs_buf_hold(bp);
1605
Christoph Hellwig375ec692011-08-23 08:28:03 +00001606 if (bp->b_flags & XBF_WRITE)
Nathan Scottce8e9222006-01-11 15:39:08 +11001607 xfs_buf_wait_unpin(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
Dave Chinner61be9c52014-10-02 09:04:31 +10001609 /* clear the internal error state to avoid spurious errors */
1610 bp->b_io_error = 0;
1611
Eric Sandeen8d6c1212014-04-17 08:15:28 +10001612 /*
Brian Fostereaebb512018-07-11 22:26:34 -07001613 * Set the count to 1 initially, this will stop an I/O completion
1614 * callout which happens before we have started all the I/O from calling
1615 * xfs_buf_ioend too early.
1616 */
1617 atomic_set(&bp->b_io_remaining, 1);
1618 if (bp->b_flags & XBF_ASYNC)
1619 xfs_buf_ioacct_inc(bp);
1620 _xfs_buf_ioapply(bp);
1621
1622 /*
1623 * If _xfs_buf_ioapply failed, we can get back here with only the IO
1624 * reference we took above. If we drop it to zero, run completion so
1625 * that we don't return to the caller with completion still pending.
1626 */
1627 if (atomic_dec_and_test(&bp->b_io_remaining) == 1) {
1628 if (bp->b_error || !(bp->b_flags & XBF_ASYNC))
1629 xfs_buf_ioend(bp);
1630 else
1631 xfs_buf_ioend_async(bp);
1632 }
1633
Brian Foster6af88cd2018-07-11 22:26:35 -07001634 if (wait)
1635 error = xfs_buf_iowait(bp);
Brian Fosterbb00b6f2018-07-11 22:26:35 -07001636
Dave Chinner595bff72014-10-02 09:05:14 +10001637 /*
Brian Foster6af88cd2018-07-11 22:26:35 -07001638 * Release the hold that keeps the buffer referenced for the entire
1639 * I/O. Note that if the buffer is async, it is not safe to reference
1640 * after this release.
Dave Chinner595bff72014-10-02 09:05:14 +10001641 */
1642 xfs_buf_rele(bp);
1643 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644}
1645
Christoph Hellwig88ee2df2015-06-22 09:44:29 +10001646void *
Nathan Scottce8e9222006-01-11 15:39:08 +11001647xfs_buf_offset(
Christoph Hellwig88ee2df2015-06-22 09:44:29 +10001648 struct xfs_buf *bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 size_t offset)
1650{
1651 struct page *page;
1652
Dave Chinner611c9942012-04-23 15:59:07 +10001653 if (bp->b_addr)
Chandra Seetharaman62926042011-07-22 23:40:15 +00001654 return bp->b_addr + offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655
Dave Chinner0e6e8472011-03-26 09:16:45 +11001656 page = bp->b_pages[offset >> PAGE_SHIFT];
Christoph Hellwig88ee2df2015-06-22 09:44:29 +10001657 return page_address(page) + (offset & (PAGE_SIZE-1));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658}
1659
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660void
Christoph Hellwigf9a196e2019-06-12 08:59:59 -07001661xfs_buf_zero(
1662 struct xfs_buf *bp,
1663 size_t boff,
1664 size_t bsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665{
Dave Chinner795cac72012-04-23 15:58:53 +10001666 size_t bend;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
1668 bend = boff + bsize;
1669 while (boff < bend) {
Dave Chinner795cac72012-04-23 15:58:53 +10001670 struct page *page;
1671 int page_index, page_offset, csize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
Dave Chinner795cac72012-04-23 15:58:53 +10001673 page_index = (boff + bp->b_offset) >> PAGE_SHIFT;
1674 page_offset = (boff + bp->b_offset) & ~PAGE_MASK;
1675 page = bp->b_pages[page_index];
1676 csize = min_t(size_t, PAGE_SIZE - page_offset,
Christoph Hellwig8124b9b2019-06-28 19:27:28 -07001677 BBTOB(bp->b_length) - boff);
Dave Chinner795cac72012-04-23 15:58:53 +10001678
1679 ASSERT((csize + page_offset) <= PAGE_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Christoph Hellwigf9a196e2019-06-12 08:59:59 -07001681 memset(page_address(page) + page_offset, 0, csize);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
1683 boff += csize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 }
1685}
1686
1687/*
Darrick J. Wong8d57c212020-03-11 10:37:54 -07001688 * Log a message about and stale a buffer that a caller has decided is corrupt.
1689 *
1690 * This function should be called for the kinds of metadata corruption that
1691 * cannot be detect from a verifier, such as incorrect inter-block relationship
1692 * data. Do /not/ call this function from a verifier function.
1693 *
1694 * The buffer must be XBF_DONE prior to the call. Afterwards, the buffer will
1695 * be marked stale, but b_error will not be set. The caller is responsible for
1696 * releasing the buffer or fixing it.
1697 */
1698void
1699__xfs_buf_mark_corrupt(
1700 struct xfs_buf *bp,
1701 xfs_failaddr_t fa)
1702{
1703 ASSERT(bp->b_flags & XBF_DONE);
1704
Darrick J. Wonge83cf872020-03-11 10:37:54 -07001705 xfs_buf_corruption_error(bp, fa);
Darrick J. Wong8d57c212020-03-11 10:37:54 -07001706 xfs_buf_stale(bp);
1707}
1708
1709/*
Nathan Scottce8e9222006-01-11 15:39:08 +11001710 * Handling of buffer targets (buftargs).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 */
1712
1713/*
Dave Chinner430cbeb2010-12-02 16:30:55 +11001714 * Wait for any bufs with callbacks that have been submitted but have not yet
1715 * returned. These buffers will have an elevated hold count, so wait on those
1716 * while freeing all the buffers only held by the LRU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 */
Dave Chinnere80dfa12013-08-28 10:18:05 +10001718static enum lru_status
Brian Foster10fb9ac2021-01-22 16:48:19 -08001719xfs_buftarg_drain_rele(
Dave Chinnere80dfa12013-08-28 10:18:05 +10001720 struct list_head *item,
Vladimir Davydov3f97b162015-02-12 14:59:35 -08001721 struct list_lru_one *lru,
Dave Chinnere80dfa12013-08-28 10:18:05 +10001722 spinlock_t *lru_lock,
1723 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724
Dave Chinnere80dfa12013-08-28 10:18:05 +10001725{
1726 struct xfs_buf *bp = container_of(item, struct xfs_buf, b_lru);
Dave Chinnera4082352013-08-28 10:18:06 +10001727 struct list_head *dispose = arg;
Dave Chinnere80dfa12013-08-28 10:18:05 +10001728
1729 if (atomic_read(&bp->b_hold) > 1) {
Dave Chinnera4082352013-08-28 10:18:06 +10001730 /* need to wait, so skip it this pass */
Brian Foster10fb9ac2021-01-22 16:48:19 -08001731 trace_xfs_buf_drain_buftarg(bp, _RET_IP_);
Dave Chinnera4082352013-08-28 10:18:06 +10001732 return LRU_SKIP;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
Dave Chinnera4082352013-08-28 10:18:06 +10001734 if (!spin_trylock(&bp->b_lock))
1735 return LRU_SKIP;
Dave Chinnere80dfa12013-08-28 10:18:05 +10001736
Dave Chinnera4082352013-08-28 10:18:06 +10001737 /*
1738 * clear the LRU reference count so the buffer doesn't get
1739 * ignored in xfs_buf_rele().
1740 */
1741 atomic_set(&bp->b_lru_ref, 0);
1742 bp->b_state |= XFS_BSTATE_DISPOSE;
Vladimir Davydov3f97b162015-02-12 14:59:35 -08001743 list_lru_isolate_move(lru, item, dispose);
Dave Chinnera4082352013-08-28 10:18:06 +10001744 spin_unlock(&bp->b_lock);
1745 return LRU_REMOVED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746}
1747
Brian Foster8321ddb2021-01-22 16:48:20 -08001748/*
1749 * Wait for outstanding I/O on the buftarg to complete.
1750 */
Dave Chinnere80dfa12013-08-28 10:18:05 +10001751void
Brian Foster8321ddb2021-01-22 16:48:20 -08001752xfs_buftarg_wait(
Dave Chinnere80dfa12013-08-28 10:18:05 +10001753 struct xfs_buftarg *btp)
1754{
Dave Chinner85bec542016-01-19 08:28:10 +11001755 /*
Brian Foster9c7504a2016-07-20 11:15:28 +10001756 * First wait on the buftarg I/O count for all in-flight buffers to be
1757 * released. This is critical as new buffers do not make the LRU until
1758 * they are released.
1759 *
1760 * Next, flush the buffer workqueue to ensure all completion processing
1761 * has finished. Just waiting on buffer locks is not sufficient for
1762 * async IO as the reference count held over IO is not released until
1763 * after the buffer lock is dropped. Hence we need to ensure here that
1764 * all reference counts have been dropped before we start walking the
1765 * LRU list.
Dave Chinner85bec542016-01-19 08:28:10 +11001766 */
Brian Foster9c7504a2016-07-20 11:15:28 +10001767 while (percpu_counter_sum(&btp->bt_io_count))
1768 delay(100);
Brian Foster800b2692016-08-26 16:01:59 +10001769 flush_workqueue(btp->bt_mount->m_buf_workqueue);
Brian Foster8321ddb2021-01-22 16:48:20 -08001770}
1771
1772void
1773xfs_buftarg_drain(
1774 struct xfs_buftarg *btp)
1775{
1776 LIST_HEAD(dispose);
1777 int loop = 0;
1778 bool write_fail = false;
1779
1780 xfs_buftarg_wait(btp);
Dave Chinner85bec542016-01-19 08:28:10 +11001781
Dave Chinnera4082352013-08-28 10:18:06 +10001782 /* loop until there is nothing left on the lru list. */
1783 while (list_lru_count(&btp->bt_lru)) {
Brian Foster10fb9ac2021-01-22 16:48:19 -08001784 list_lru_walk(&btp->bt_lru, xfs_buftarg_drain_rele,
Dave Chinnera4082352013-08-28 10:18:06 +10001785 &dispose, LONG_MAX);
1786
1787 while (!list_empty(&dispose)) {
1788 struct xfs_buf *bp;
1789 bp = list_first_entry(&dispose, struct xfs_buf, b_lru);
1790 list_del_init(&bp->b_lru);
Dave Chinnerac8809f2013-12-12 16:34:38 +11001791 if (bp->b_flags & XBF_WRITE_FAIL) {
Brian Foster61948b62020-05-06 13:25:21 -07001792 write_fail = true;
1793 xfs_buf_alert_ratelimited(bp,
1794 "XFS: Corruption Alert",
Darrick J. Wongc219b012018-01-08 11:39:18 -08001795"Corruption Alert: Buffer at daddr 0x%llx had permanent write failures!",
Dave Chinnerac8809f2013-12-12 16:34:38 +11001796 (long long)bp->b_bn);
1797 }
Dave Chinnera4082352013-08-28 10:18:06 +10001798 xfs_buf_rele(bp);
1799 }
1800 if (loop++ != 0)
1801 delay(100);
1802 }
Brian Foster61948b62020-05-06 13:25:21 -07001803
1804 /*
1805 * If one or more failed buffers were freed, that means dirty metadata
1806 * was thrown away. This should only ever happen after I/O completion
1807 * handling has elevated I/O error(s) to permanent failures and shuts
1808 * down the fs.
1809 */
1810 if (write_fail) {
1811 ASSERT(XFS_FORCED_SHUTDOWN(btp->bt_mount));
1812 xfs_alert(btp->bt_mount,
1813 "Please run xfs_repair to determine the extent of the problem.");
1814 }
Dave Chinnere80dfa12013-08-28 10:18:05 +10001815}
1816
1817static enum lru_status
1818xfs_buftarg_isolate(
1819 struct list_head *item,
Vladimir Davydov3f97b162015-02-12 14:59:35 -08001820 struct list_lru_one *lru,
Dave Chinnere80dfa12013-08-28 10:18:05 +10001821 spinlock_t *lru_lock,
1822 void *arg)
1823{
1824 struct xfs_buf *bp = container_of(item, struct xfs_buf, b_lru);
1825 struct list_head *dispose = arg;
1826
1827 /*
Dave Chinnera4082352013-08-28 10:18:06 +10001828 * we are inverting the lru lock/bp->b_lock here, so use a trylock.
1829 * If we fail to get the lock, just skip it.
1830 */
1831 if (!spin_trylock(&bp->b_lock))
1832 return LRU_SKIP;
1833 /*
Dave Chinnere80dfa12013-08-28 10:18:05 +10001834 * Decrement the b_lru_ref count unless the value is already
1835 * zero. If the value is already zero, we need to reclaim the
1836 * buffer, otherwise it gets another trip through the LRU.
1837 */
Vratislav Bendel19957a12018-03-06 17:07:44 -08001838 if (atomic_add_unless(&bp->b_lru_ref, -1, 0)) {
Dave Chinnera4082352013-08-28 10:18:06 +10001839 spin_unlock(&bp->b_lock);
Dave Chinnere80dfa12013-08-28 10:18:05 +10001840 return LRU_ROTATE;
Dave Chinnera4082352013-08-28 10:18:06 +10001841 }
Dave Chinnere80dfa12013-08-28 10:18:05 +10001842
Dave Chinnera4082352013-08-28 10:18:06 +10001843 bp->b_state |= XFS_BSTATE_DISPOSE;
Vladimir Davydov3f97b162015-02-12 14:59:35 -08001844 list_lru_isolate_move(lru, item, dispose);
Dave Chinnera4082352013-08-28 10:18:06 +10001845 spin_unlock(&bp->b_lock);
Dave Chinnere80dfa12013-08-28 10:18:05 +10001846 return LRU_REMOVED;
1847}
1848
Andrew Mortonaddbda42013-08-28 10:18:06 +10001849static unsigned long
Dave Chinnere80dfa12013-08-28 10:18:05 +10001850xfs_buftarg_shrink_scan(
Dave Chinnerff57ab22010-11-30 17:27:57 +11001851 struct shrinker *shrink,
Ying Han1495f232011-05-24 17:12:27 -07001852 struct shrink_control *sc)
David Chinnera6867a62006-01-11 15:37:58 +11001853{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001854 struct xfs_buftarg *btp = container_of(shrink,
1855 struct xfs_buftarg, bt_shrinker);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001856 LIST_HEAD(dispose);
Andrew Mortonaddbda42013-08-28 10:18:06 +10001857 unsigned long freed;
Dave Chinner430cbeb2010-12-02 16:30:55 +11001858
Vladimir Davydov503c3582015-02-12 14:58:47 -08001859 freed = list_lru_shrink_walk(&btp->bt_lru, sc,
1860 xfs_buftarg_isolate, &dispose);
Dave Chinner430cbeb2010-12-02 16:30:55 +11001861
1862 while (!list_empty(&dispose)) {
Dave Chinnere80dfa12013-08-28 10:18:05 +10001863 struct xfs_buf *bp;
Dave Chinner430cbeb2010-12-02 16:30:55 +11001864 bp = list_first_entry(&dispose, struct xfs_buf, b_lru);
1865 list_del_init(&bp->b_lru);
1866 xfs_buf_rele(bp);
1867 }
1868
Dave Chinnere80dfa12013-08-28 10:18:05 +10001869 return freed;
1870}
1871
Andrew Mortonaddbda42013-08-28 10:18:06 +10001872static unsigned long
Dave Chinnere80dfa12013-08-28 10:18:05 +10001873xfs_buftarg_shrink_count(
1874 struct shrinker *shrink,
1875 struct shrink_control *sc)
1876{
1877 struct xfs_buftarg *btp = container_of(shrink,
1878 struct xfs_buftarg, bt_shrinker);
Vladimir Davydov503c3582015-02-12 14:58:47 -08001879 return list_lru_shrink_count(&btp->bt_lru, sc);
David Chinnera6867a62006-01-11 15:37:58 +11001880}
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882void
1883xfs_free_buftarg(
Christoph Hellwigb7963132009-03-03 14:48:37 -05001884 struct xfs_buftarg *btp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885{
Dave Chinnerff57ab22010-11-30 17:27:57 +11001886 unregister_shrinker(&btp->bt_shrinker);
Brian Foster9c7504a2016-07-20 11:15:28 +10001887 ASSERT(percpu_counter_sum(&btp->bt_io_count) == 0);
1888 percpu_counter_destroy(&btp->bt_io_count);
Glauber Costaf5e1dd32013-08-28 10:18:18 +10001889 list_lru_destroy(&btp->bt_lru);
Dave Chinnerff57ab22010-11-30 17:27:57 +11001890
Dave Chinnerb5071ad2021-06-18 08:21:49 -07001891 blkdev_issue_flush(btp->bt_bdev);
David Chinnera6867a62006-01-11 15:37:58 +11001892
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001893 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894}
1895
Eric Sandeen3fefdee2013-11-13 14:53:45 -06001896int
1897xfs_setsize_buftarg(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 xfs_buftarg_t *btp,
Eric Sandeen3fefdee2013-11-13 14:53:45 -06001899 unsigned int sectorsize)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900{
Eric Sandeen7c71ee72014-01-21 16:46:23 -06001901 /* Set up metadata sector size info */
Eric Sandeen6da54172014-01-21 16:45:52 -06001902 btp->bt_meta_sectorsize = sectorsize;
1903 btp->bt_meta_sectormask = sectorsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904
Nathan Scottce8e9222006-01-11 15:39:08 +11001905 if (set_blocksize(btp->bt_bdev, sectorsize)) {
Dave Chinner4f107002011-03-07 10:00:35 +11001906 xfs_warn(btp->bt_mount,
Dmitry Monakhova1c6f0572015-04-13 16:31:37 +04001907 "Cannot set_blocksize to %u on device %pg",
1908 sectorsize, btp->bt_bdev);
Dave Chinner24513372014-06-25 14:58:08 +10001909 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 }
1911
Eric Sandeen7c71ee72014-01-21 16:46:23 -06001912 /* Set up device logical sector size mask */
1913 btp->bt_logical_sectorsize = bdev_logical_block_size(btp->bt_bdev);
1914 btp->bt_logical_sectormask = bdev_logical_block_size(btp->bt_bdev) - 1;
1915
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 return 0;
1917}
1918
1919/*
Eric Sandeen3fefdee2013-11-13 14:53:45 -06001920 * When allocating the initial buffer target we have not yet
1921 * read in the superblock, so don't know what sized sectors
1922 * are being used at this early stage. Play safe.
Nathan Scottce8e9222006-01-11 15:39:08 +11001923 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924STATIC int
1925xfs_setsize_buftarg_early(
1926 xfs_buftarg_t *btp,
1927 struct block_device *bdev)
1928{
Eric Sandeena96c4152014-04-14 19:00:29 +10001929 return xfs_setsize_buftarg(btp, bdev_logical_block_size(bdev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930}
1931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932xfs_buftarg_t *
1933xfs_alloc_buftarg(
Dave Chinnerebad8612010-09-22 10:47:20 +10001934 struct xfs_mount *mp,
Dan Williams486aff52017-08-24 15:12:50 -07001935 struct block_device *bdev,
1936 struct dax_device *dax_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937{
1938 xfs_buftarg_t *btp;
1939
Tetsuo Handa707e0dd2019-08-26 12:06:22 -07001940 btp = kmem_zalloc(sizeof(*btp), KM_NOFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941
Dave Chinnerebad8612010-09-22 10:47:20 +10001942 btp->bt_mount = mp;
Nathan Scottce8e9222006-01-11 15:39:08 +11001943 btp->bt_dev = bdev->bd_dev;
1944 btp->bt_bdev = bdev;
Dan Williams486aff52017-08-24 15:12:50 -07001945 btp->bt_daxdev = dax_dev;
Dave Chinner0e6e8472011-03-26 09:16:45 +11001946
Brian Fosterf9bccfc2020-05-06 13:25:21 -07001947 /*
1948 * Buffer IO error rate limiting. Limit it to no more than 10 messages
1949 * per 30 seconds so as to not spam logs too much on repeated errors.
1950 */
1951 ratelimit_state_init(&btp->bt_ioerror_rl, 30 * HZ,
1952 DEFAULT_RATELIMIT_BURST);
1953
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 if (xfs_setsize_buftarg_early(btp, bdev))
Michal Hockod210a982017-11-23 17:13:40 +01001955 goto error_free;
Glauber Costa5ca302c2013-08-28 10:18:18 +10001956
1957 if (list_lru_init(&btp->bt_lru))
Michal Hockod210a982017-11-23 17:13:40 +01001958 goto error_free;
Glauber Costa5ca302c2013-08-28 10:18:18 +10001959
Brian Foster9c7504a2016-07-20 11:15:28 +10001960 if (percpu_counter_init(&btp->bt_io_count, 0, GFP_KERNEL))
Michal Hockod210a982017-11-23 17:13:40 +01001961 goto error_lru;
Brian Foster9c7504a2016-07-20 11:15:28 +10001962
Dave Chinnere80dfa12013-08-28 10:18:05 +10001963 btp->bt_shrinker.count_objects = xfs_buftarg_shrink_count;
1964 btp->bt_shrinker.scan_objects = xfs_buftarg_shrink_scan;
Dave Chinnerff57ab22010-11-30 17:27:57 +11001965 btp->bt_shrinker.seeks = DEFAULT_SEEKS;
Dave Chinnere80dfa12013-08-28 10:18:05 +10001966 btp->bt_shrinker.flags = SHRINKER_NUMA_AWARE;
Michal Hockod210a982017-11-23 17:13:40 +01001967 if (register_shrinker(&btp->bt_shrinker))
1968 goto error_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 return btp;
1970
Michal Hockod210a982017-11-23 17:13:40 +01001971error_pcpu:
1972 percpu_counter_destroy(&btp->bt_io_count);
1973error_lru:
1974 list_lru_destroy(&btp->bt_lru);
1975error_free:
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001976 kmem_free(btp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 return NULL;
1978}
1979
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980/*
Brian Foster20e8a062017-04-21 12:40:44 -07001981 * Cancel a delayed write list.
1982 *
1983 * Remove each buffer from the list, clear the delwri queue flag and drop the
1984 * associated buffer reference.
1985 */
1986void
1987xfs_buf_delwri_cancel(
1988 struct list_head *list)
1989{
1990 struct xfs_buf *bp;
1991
1992 while (!list_empty(list)) {
1993 bp = list_first_entry(list, struct xfs_buf, b_list);
1994
1995 xfs_buf_lock(bp);
1996 bp->b_flags &= ~_XBF_DELWRI_Q;
1997 list_del_init(&bp->b_list);
1998 xfs_buf_relse(bp);
1999 }
2000}
2001
2002/*
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002003 * Add a buffer to the delayed write list.
2004 *
2005 * This queues a buffer for writeout if it hasn't already been. Note that
2006 * neither this routine nor the buffer list submission functions perform
2007 * any internal synchronization. It is expected that the lists are thread-local
2008 * to the callers.
2009 *
2010 * Returns true if we queued up the buffer, or false if it already had
2011 * been on the buffer list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002013bool
Nathan Scottce8e9222006-01-11 15:39:08 +11002014xfs_buf_delwri_queue(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002015 struct xfs_buf *bp,
2016 struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002018 ASSERT(xfs_buf_islocked(bp));
2019 ASSERT(!(bp->b_flags & XBF_READ));
2020
2021 /*
2022 * If the buffer is already marked delwri it already is queued up
2023 * by someone else for imediate writeout. Just ignore it in that
2024 * case.
2025 */
2026 if (bp->b_flags & _XBF_DELWRI_Q) {
2027 trace_xfs_buf_delwri_queued(bp, _RET_IP_);
2028 return false;
2029 }
David Chinnera6867a62006-01-11 15:37:58 +11002030
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002031 trace_xfs_buf_delwri_queue(bp, _RET_IP_);
2032
Dave Chinnerd808f612010-02-02 10:13:42 +11002033 /*
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002034 * If a buffer gets written out synchronously or marked stale while it
2035 * is on a delwri list we lazily remove it. To do this, the other party
2036 * clears the _XBF_DELWRI_Q flag but otherwise leaves the buffer alone.
2037 * It remains referenced and on the list. In a rare corner case it
2038 * might get readded to a delwri list after the synchronous writeout, in
2039 * which case we need just need to re-add the flag here.
Dave Chinnerd808f612010-02-02 10:13:42 +11002040 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002041 bp->b_flags |= _XBF_DELWRI_Q;
2042 if (list_empty(&bp->b_list)) {
2043 atomic_inc(&bp->b_hold);
2044 list_add_tail(&bp->b_list, list);
David Chinner585e6d82007-02-10 18:32:29 +11002045 }
David Chinner585e6d82007-02-10 18:32:29 +11002046
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002047 return true;
David Chinner585e6d82007-02-10 18:32:29 +11002048}
2049
Dave Chinner089716a2010-01-26 15:13:25 +11002050/*
2051 * Compare function is more complex than it needs to be because
2052 * the return value is only 32 bits and we are doing comparisons
2053 * on 64 bit values
2054 */
2055static int
2056xfs_buf_cmp(
Sami Tolvanen4f0f5862021-04-08 11:28:34 -07002057 void *priv,
2058 const struct list_head *a,
2059 const struct list_head *b)
Dave Chinner089716a2010-01-26 15:13:25 +11002060{
2061 struct xfs_buf *ap = container_of(a, struct xfs_buf, b_list);
2062 struct xfs_buf *bp = container_of(b, struct xfs_buf, b_list);
2063 xfs_daddr_t diff;
2064
Mark Tinguelyf4b42422012-12-04 17:18:02 -06002065 diff = ap->b_maps[0].bm_bn - bp->b_maps[0].bm_bn;
Dave Chinner089716a2010-01-26 15:13:25 +11002066 if (diff < 0)
2067 return -1;
2068 if (diff > 0)
2069 return 1;
2070 return 0;
2071}
2072
Dave Chinner26f1fe82016-06-01 17:38:15 +10002073/*
Brian Fostere339dd82018-07-11 22:26:34 -07002074 * Submit buffers for write. If wait_list is specified, the buffers are
2075 * submitted using sync I/O and placed on the wait list such that the caller can
2076 * iowait each buffer. Otherwise async I/O is used and the buffers are released
2077 * at I/O completion time. In either case, buffers remain locked until I/O
2078 * completes and the buffer is released from the queue.
Dave Chinner26f1fe82016-06-01 17:38:15 +10002079 */
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002080static int
Dave Chinner26f1fe82016-06-01 17:38:15 +10002081xfs_buf_delwri_submit_buffers(
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002082 struct list_head *buffer_list,
Dave Chinner26f1fe82016-06-01 17:38:15 +10002083 struct list_head *wait_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084{
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002085 struct xfs_buf *bp, *n;
2086 int pinned = 0;
Dave Chinner26f1fe82016-06-01 17:38:15 +10002087 struct blk_plug plug;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Dave Chinner26f1fe82016-06-01 17:38:15 +10002089 list_sort(NULL, buffer_list, xfs_buf_cmp);
2090
2091 blk_start_plug(&plug);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002092 list_for_each_entry_safe(bp, n, buffer_list, b_list) {
Dave Chinner26f1fe82016-06-01 17:38:15 +10002093 if (!wait_list) {
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002094 if (xfs_buf_ispinned(bp)) {
2095 pinned++;
2096 continue;
2097 }
2098 if (!xfs_buf_trylock(bp))
2099 continue;
2100 } else {
2101 xfs_buf_lock(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002104 /*
2105 * Someone else might have written the buffer synchronously or
2106 * marked it stale in the meantime. In that case only the
2107 * _XBF_DELWRI_Q flag got cleared, and we have to drop the
2108 * reference and remove it from the list here.
2109 */
2110 if (!(bp->b_flags & _XBF_DELWRI_Q)) {
2111 list_del_init(&bp->b_list);
2112 xfs_buf_relse(bp);
2113 continue;
2114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002116 trace_xfs_buf_delwri_split(bp, _RET_IP_);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002117
Dave Chinnercf53e992014-10-02 09:04:01 +10002118 /*
Brian Fostere339dd82018-07-11 22:26:34 -07002119 * If we have a wait list, each buffer (and associated delwri
2120 * queue reference) transfers to it and is submitted
2121 * synchronously. Otherwise, drop the buffer from the delwri
2122 * queue and submit async.
Dave Chinnercf53e992014-10-02 09:04:01 +10002123 */
Brian Fosterb6983e82020-05-06 13:25:20 -07002124 bp->b_flags &= ~_XBF_DELWRI_Q;
Brian Fostere339dd82018-07-11 22:26:34 -07002125 bp->b_flags |= XBF_WRITE;
Dave Chinner26f1fe82016-06-01 17:38:15 +10002126 if (wait_list) {
Brian Fostere339dd82018-07-11 22:26:34 -07002127 bp->b_flags &= ~XBF_ASYNC;
Dave Chinner26f1fe82016-06-01 17:38:15 +10002128 list_move_tail(&bp->b_list, wait_list);
Brian Fostere339dd82018-07-11 22:26:34 -07002129 } else {
2130 bp->b_flags |= XBF_ASYNC;
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002131 list_del_init(&bp->b_list);
Brian Fostere339dd82018-07-11 22:26:34 -07002132 }
Brian Foster6af88cd2018-07-11 22:26:35 -07002133 __xfs_buf_submit(bp, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 }
Christoph Hellwiga1b7ea52011-03-30 11:05:09 +00002135 blk_finish_plug(&plug);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002137 return pinned;
2138}
Nathan Scottf07c2252006-09-28 10:52:15 +10002139
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002140/*
2141 * Write out a buffer list asynchronously.
2142 *
2143 * This will take the @buffer_list, write all non-locked and non-pinned buffers
2144 * out and not wait for I/O completion on any of the buffers. This interface
2145 * is only safely useable for callers that can track I/O completion by higher
2146 * level means, e.g. AIL pushing as the @buffer_list is consumed in this
2147 * function.
Brian Fosterefc32892018-10-18 17:21:49 +11002148 *
2149 * Note: this function will skip buffers it would block on, and in doing so
2150 * leaves them on @buffer_list so they can be retried on a later pass. As such,
2151 * it is up to the caller to ensure that the buffer list is fully submitted or
2152 * cancelled appropriately when they are finished with the list. Failure to
2153 * cancel or resubmit the list until it is empty will result in leaked buffers
2154 * at unmount time.
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002155 */
2156int
2157xfs_buf_delwri_submit_nowait(
2158 struct list_head *buffer_list)
2159{
Dave Chinner26f1fe82016-06-01 17:38:15 +10002160 return xfs_buf_delwri_submit_buffers(buffer_list, NULL);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002161}
2162
2163/*
2164 * Write out a buffer list synchronously.
2165 *
2166 * This will take the @buffer_list, write all buffers out and wait for I/O
2167 * completion on all of the buffers. @buffer_list is consumed by the function,
2168 * so callers must have some other way of tracking buffers if they require such
2169 * functionality.
2170 */
2171int
2172xfs_buf_delwri_submit(
2173 struct list_head *buffer_list)
2174{
Dave Chinner26f1fe82016-06-01 17:38:15 +10002175 LIST_HEAD (wait_list);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002176 int error = 0, error2;
2177 struct xfs_buf *bp;
2178
Dave Chinner26f1fe82016-06-01 17:38:15 +10002179 xfs_buf_delwri_submit_buffers(buffer_list, &wait_list);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002180
2181 /* Wait for IO to complete. */
Dave Chinner26f1fe82016-06-01 17:38:15 +10002182 while (!list_empty(&wait_list)) {
2183 bp = list_first_entry(&wait_list, struct xfs_buf, b_list);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002184
2185 list_del_init(&bp->b_list);
Dave Chinnercf53e992014-10-02 09:04:01 +10002186
Brian Fostere339dd82018-07-11 22:26:34 -07002187 /*
2188 * Wait on the locked buffer, check for errors and unlock and
2189 * release the delwri queue reference.
2190 */
2191 error2 = xfs_buf_iowait(bp);
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002192 xfs_buf_relse(bp);
2193 if (!error)
2194 error = error2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 }
2196
Christoph Hellwig43ff2122012-04-23 15:58:39 +10002197 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198}
2199
Brian Foster7912e7f2017-06-14 21:21:45 -07002200/*
2201 * Push a single buffer on a delwri queue.
2202 *
2203 * The purpose of this function is to submit a single buffer of a delwri queue
2204 * and return with the buffer still on the original queue. The waiting delwri
2205 * buffer submission infrastructure guarantees transfer of the delwri queue
2206 * buffer reference to a temporary wait list. We reuse this infrastructure to
2207 * transfer the buffer back to the original queue.
2208 *
2209 * Note the buffer transitions from the queued state, to the submitted and wait
2210 * listed state and back to the queued state during this call. The buffer
2211 * locking and queue management logic between _delwri_pushbuf() and
2212 * _delwri_queue() guarantee that the buffer cannot be queued to another list
2213 * before returning.
2214 */
2215int
2216xfs_buf_delwri_pushbuf(
2217 struct xfs_buf *bp,
2218 struct list_head *buffer_list)
2219{
2220 LIST_HEAD (submit_list);
2221 int error;
2222
2223 ASSERT(bp->b_flags & _XBF_DELWRI_Q);
2224
2225 trace_xfs_buf_delwri_pushbuf(bp, _RET_IP_);
2226
2227 /*
2228 * Isolate the buffer to a new local list so we can submit it for I/O
2229 * independently from the rest of the original list.
2230 */
2231 xfs_buf_lock(bp);
2232 list_move(&bp->b_list, &submit_list);
2233 xfs_buf_unlock(bp);
2234
2235 /*
2236 * Delwri submission clears the DELWRI_Q buffer flag and returns with
Brian Fostere339dd82018-07-11 22:26:34 -07002237 * the buffer on the wait list with the original reference. Rather than
Brian Foster7912e7f2017-06-14 21:21:45 -07002238 * bounce the buffer from a local wait list back to the original list
2239 * after I/O completion, reuse the original list as the wait list.
2240 */
2241 xfs_buf_delwri_submit_buffers(&submit_list, buffer_list);
2242
2243 /*
Brian Fostere339dd82018-07-11 22:26:34 -07002244 * The buffer is now locked, under I/O and wait listed on the original
2245 * delwri queue. Wait for I/O completion, restore the DELWRI_Q flag and
2246 * return with the buffer unlocked and on the original queue.
Brian Foster7912e7f2017-06-14 21:21:45 -07002247 */
Brian Fostere339dd82018-07-11 22:26:34 -07002248 error = xfs_buf_iowait(bp);
Brian Foster7912e7f2017-06-14 21:21:45 -07002249 bp->b_flags |= _XBF_DELWRI_Q;
2250 xfs_buf_unlock(bp);
2251
2252 return error;
2253}
2254
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002255int __init
Nathan Scottce8e9222006-01-11 15:39:08 +11002256xfs_buf_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257{
Dave Chinner12eba652020-03-24 20:10:28 -07002258 xfs_buf_zone = kmem_cache_create("xfs_buf", sizeof(struct xfs_buf), 0,
2259 SLAB_HWCACHE_ALIGN |
2260 SLAB_RECLAIM_ACCOUNT |
2261 SLAB_MEM_SPREAD,
2262 NULL);
Nathan Scottce8e9222006-01-11 15:39:08 +11002263 if (!xfs_buf_zone)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002264 goto out;
Christoph Hellwig04d8b282005-11-02 10:15:05 +11002265
Christoph Hellwig23ea4032005-06-21 15:14:01 +10002266 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002268 out:
Nathan Scott87582802006-03-14 13:18:19 +11002269 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270}
2271
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272void
Nathan Scottce8e9222006-01-11 15:39:08 +11002273xfs_buf_terminate(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274{
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002275 kmem_cache_destroy(xfs_buf_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276}
Brian Foster7561d272017-10-17 14:16:29 -07002277
2278void xfs_buf_set_ref(struct xfs_buf *bp, int lru_ref)
2279{
Brian Foster7561d272017-10-17 14:16:29 -07002280 /*
2281 * Set the lru reference count to 0 based on the error injection tag.
2282 * This allows userspace to disrupt buffer caching for debug/testing
2283 * purposes.
2284 */
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07002285 if (XFS_TEST_ERROR(false, bp->b_mount, XFS_ERRTAG_BUF_LRU_REF))
Brian Foster7561d272017-10-17 14:16:29 -07002286 lru_ref = 0;
2287
2288 atomic_set(&bp->b_lru_ref, lru_ref);
2289}
Brian Foster8473fee2019-02-07 10:45:46 -08002290
2291/*
2292 * Verify an on-disk magic value against the magic value specified in the
2293 * verifier structure. The verifier magic is in disk byte order so the caller is
2294 * expected to pass the value directly from disk.
2295 */
2296bool
2297xfs_verify_magic(
2298 struct xfs_buf *bp,
Darrick J. Wong15baadf2019-02-16 11:47:28 -08002299 __be32 dmagic)
Brian Foster8473fee2019-02-07 10:45:46 -08002300{
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07002301 struct xfs_mount *mp = bp->b_mount;
Brian Foster8473fee2019-02-07 10:45:46 -08002302 int idx;
2303
Dave Chinner38c26bf2021-08-18 18:46:37 -07002304 idx = xfs_has_crc(mp);
Denis Efremov14ed8682019-09-25 16:49:37 -07002305 if (WARN_ON(!bp->b_ops || !bp->b_ops->magic[idx]))
Brian Foster8473fee2019-02-07 10:45:46 -08002306 return false;
2307 return dmagic == bp->b_ops->magic[idx];
2308}
Darrick J. Wong15baadf2019-02-16 11:47:28 -08002309/*
2310 * Verify an on-disk magic value against the magic value specified in the
2311 * verifier structure. The verifier magic is in disk byte order so the caller is
2312 * expected to pass the value directly from disk.
2313 */
2314bool
2315xfs_verify_magic16(
2316 struct xfs_buf *bp,
2317 __be16 dmagic)
2318{
Christoph Hellwigdbd329f12019-06-28 19:27:29 -07002319 struct xfs_mount *mp = bp->b_mount;
Darrick J. Wong15baadf2019-02-16 11:47:28 -08002320 int idx;
2321
Dave Chinner38c26bf2021-08-18 18:46:37 -07002322 idx = xfs_has_crc(mp);
Denis Efremov14ed8682019-09-25 16:49:37 -07002323 if (WARN_ON(!bp->b_ops || !bp->b_ops->magic16[idx]))
Darrick J. Wong15baadf2019-02-16 11:47:28 -08002324 return false;
2325 return dmagic == bp->b_ops->magic16[idx];
2326}