blob: e552ce541ec2da6c0893957b04db8751c047b54b [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/*
Olaf Weber3e57ecf2006-06-09 14:48:12 +10003 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Christoph Hellwig98c1a7c02018-07-11 22:26:06 -07004 * Copyright (c) 2016-2018 Christoph Hellwig.
Nathan Scott7b718762005-11-02 14:58:39 +11005 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include "xfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include "xfs_fs.h"
Dave Chinner70a98832013-10-23 10:36:05 +11009#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110010#include "xfs_format.h"
11#include "xfs_log_format.h"
12#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110015#include "xfs_btree.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110016#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100018#include "xfs_bmap_util.h"
Darrick J. Wonge9e899a2017-10-31 12:04:49 -070019#include "xfs_errortag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_error.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110021#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_trans_space.h"
Christoph Hellwiga39e5962017-11-01 16:36:47 +010023#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_iomap.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000025#include "xfs_trace.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110026#include "xfs_quota.h"
Brian Foster76a42022013-03-18 10:51:47 -040027#include "xfs_dquot_item.h"
28#include "xfs_dquot.h"
Darrick J. Wong2a067052016-10-03 09:11:33 -070029#include "xfs_reflink.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Christoph Hellwig5da8a072019-10-28 08:41:44 -070031#define XFS_ALLOC_ALIGN(mp, off) \
32 (((off) >> mp->m_allocsize_log) << mp->m_allocsize_log)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Christoph Hellwig16be1432019-02-18 09:38:46 -080034static int
35xfs_alert_fsblock_zero(
36 xfs_inode_t *ip,
37 xfs_bmbt_irec_t *imap)
38{
39 xfs_alert_tag(ip->i_mount, XFS_PTAG_FSBLOCK_ZERO,
40 "Access to block zero in inode %llu "
41 "start_block: %llx start_off: %llx "
42 "blkcnt: %llx extent-state: %x",
43 (unsigned long long)ip->i_ino,
44 (unsigned long long)imap->br_startblock,
45 (unsigned long long)imap->br_startoff,
46 (unsigned long long)imap->br_blockcount,
47 imap->br_state);
48 return -EFSCORRUPTED;
49}
50
51int
Christoph Hellwige9c49732016-09-19 11:09:12 +100052xfs_bmbt_to_iomap(
53 struct xfs_inode *ip,
54 struct iomap *iomap,
Christoph Hellwig16be1432019-02-18 09:38:46 -080055 struct xfs_bmbt_irec *imap,
Christoph Hellwig740fd672021-11-29 11:21:57 +010056 unsigned int mapping_flags,
57 u16 iomap_flags)
Christoph Hellwige9c49732016-09-19 11:09:12 +100058{
59 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig30fa5292019-10-24 22:25:38 -070060 struct xfs_buftarg *target = xfs_inode_buftarg(ip);
Christoph Hellwige9c49732016-09-19 11:09:12 +100061
Christoph Hellwigeb77b232019-09-03 08:13:13 -070062 if (unlikely(!xfs_valid_startblock(ip, imap->br_startblock)))
Christoph Hellwig16be1432019-02-18 09:38:46 -080063 return xfs_alert_fsblock_zero(ip, imap);
64
Christoph Hellwige9c49732016-09-19 11:09:12 +100065 if (imap->br_startblock == HOLESTARTBLOCK) {
Andreas Gruenbacher19fe5f62017-10-01 17:55:54 -040066 iomap->addr = IOMAP_NULL_ADDR;
Christoph Hellwige9c49732016-09-19 11:09:12 +100067 iomap->type = IOMAP_HOLE;
Christoph Hellwig16be1432019-02-18 09:38:46 -080068 } else if (imap->br_startblock == DELAYSTARTBLOCK ||
69 isnullstartblock(imap->br_startblock)) {
Andreas Gruenbacher19fe5f62017-10-01 17:55:54 -040070 iomap->addr = IOMAP_NULL_ADDR;
Christoph Hellwige9c49732016-09-19 11:09:12 +100071 iomap->type = IOMAP_DELALLOC;
72 } else {
Andreas Gruenbacher19fe5f62017-10-01 17:55:54 -040073 iomap->addr = BBTOB(xfs_fsb_to_db(ip, imap->br_startblock));
Christoph Hellwigde205112021-11-29 11:22:00 +010074 if (mapping_flags & IOMAP_DAX)
75 iomap->addr += target->bt_dax_part_off;
76
Christoph Hellwige9c49732016-09-19 11:09:12 +100077 if (imap->br_state == XFS_EXT_UNWRITTEN)
78 iomap->type = IOMAP_UNWRITTEN;
79 else
80 iomap->type = IOMAP_MAPPED;
Christoph Hellwigde205112021-11-29 11:22:00 +010081
Christoph Hellwige9c49732016-09-19 11:09:12 +100082 }
83 iomap->offset = XFS_FSB_TO_B(mp, imap->br_startoff);
84 iomap->length = XFS_FSB_TO_B(mp, imap->br_blockcount);
Christoph Hellwigde205112021-11-29 11:22:00 +010085 if (mapping_flags & IOMAP_DAX)
86 iomap->dax_dev = target->bt_daxdev;
87 else
88 iomap->bdev = target->bt_bdev;
Christoph Hellwig740fd672021-11-29 11:21:57 +010089 iomap->flags = iomap_flags;
Christoph Hellwig16be1432019-02-18 09:38:46 -080090
91 if (xfs_ipincount(ip) &&
92 (ip->i_itemp->ili_fsync_fields & ~XFS_ILOG_TIMESTAMP))
93 iomap->flags |= IOMAP_F_DIRTY;
Christoph Hellwig16be1432019-02-18 09:38:46 -080094 return 0;
Christoph Hellwige9c49732016-09-19 11:09:12 +100095}
96
Christoph Hellwig0365c5d2018-10-18 17:19:26 +110097static void
98xfs_hole_to_iomap(
99 struct xfs_inode *ip,
100 struct iomap *iomap,
101 xfs_fileoff_t offset_fsb,
102 xfs_fileoff_t end_fsb)
103{
Christoph Hellwig30fa5292019-10-24 22:25:38 -0700104 struct xfs_buftarg *target = xfs_inode_buftarg(ip);
105
Christoph Hellwig0365c5d2018-10-18 17:19:26 +1100106 iomap->addr = IOMAP_NULL_ADDR;
107 iomap->type = IOMAP_HOLE;
108 iomap->offset = XFS_FSB_TO_B(ip->i_mount, offset_fsb);
109 iomap->length = XFS_FSB_TO_B(ip->i_mount, end_fsb - offset_fsb);
Christoph Hellwig30fa5292019-10-24 22:25:38 -0700110 iomap->bdev = target->bt_bdev;
111 iomap->dax_dev = target->bt_daxdev;
Christoph Hellwig0365c5d2018-10-18 17:19:26 +1100112}
113
Christoph Hellwig43568222019-10-19 09:09:44 -0700114static inline xfs_fileoff_t
115xfs_iomap_end_fsb(
116 struct xfs_mount *mp,
117 loff_t offset,
118 loff_t count)
119{
120 ASSERT(offset <= mp->m_super->s_maxbytes);
121 return min(XFS_B_TO_FSB(mp, offset + count),
122 XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes));
123}
124
Christoph Hellwig49bbf8c2019-10-30 12:24:57 -0700125static xfs_extlen_t
Christoph Hellwigf8e3a822016-09-19 11:09:28 +1000126xfs_eof_alignment(
Christoph Hellwig57c49442019-10-30 12:24:58 -0700127 struct xfs_inode *ip)
Nathan Scottdd9f4382006-01-11 15:28:28 +1100128{
Christoph Hellwigf8e3a822016-09-19 11:09:28 +1000129 struct xfs_mount *mp = ip->i_mount;
130 xfs_extlen_t align = 0;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100131
Christoph Hellwigbf322d92011-12-18 20:00:05 +0000132 if (!XFS_IS_REALTIME_INODE(ip)) {
133 /*
134 * Round up the allocation request to a stripe unit
135 * (m_dalign) boundary if the file size is >= stripe unit
136 * size, and we are allocating past the allocation eof.
137 *
138 * If mounted with the "-o swalloc" option the alignment is
139 * increased from the strip unit size to the stripe width.
140 */
Dave Chinner0560f312021-08-18 18:46:52 -0700141 if (mp->m_swidth && xfs_has_swalloc(mp))
Christoph Hellwigbf322d92011-12-18 20:00:05 +0000142 align = mp->m_swidth;
143 else if (mp->m_dalign)
144 align = mp->m_dalign;
145
Peter Watkins76b57302014-12-04 09:30:51 +1100146 if (align && XFS_ISIZE(ip) < XFS_FSB_TO_B(mp, align))
147 align = 0;
Christoph Hellwigbf322d92011-12-18 20:00:05 +0000148 }
Nathan Scottdd9f4382006-01-11 15:28:28 +1100149
Christoph Hellwigf8e3a822016-09-19 11:09:28 +1000150 return align;
151}
152
Christoph Hellwigae7e4032019-10-30 12:24:57 -0700153/*
154 * Check if last_fsb is outside the last extent, and if so grow it to the next
155 * stripe unit boundary.
156 */
Christoph Hellwige6966632019-10-30 12:24:59 -0700157xfs_fileoff_t
Christoph Hellwigf8e3a822016-09-19 11:09:28 +1000158xfs_iomap_eof_align_last_fsb(
159 struct xfs_inode *ip,
Christoph Hellwigae7e4032019-10-30 12:24:57 -0700160 xfs_fileoff_t end_fsb)
Christoph Hellwigf8e3a822016-09-19 11:09:28 +1000161{
Christoph Hellwigae7e4032019-10-30 12:24:57 -0700162 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_DATA_FORK);
163 xfs_extlen_t extsz = xfs_get_extsz_hint(ip);
Christoph Hellwig57c49442019-10-30 12:24:58 -0700164 xfs_extlen_t align = xfs_eof_alignment(ip);
Christoph Hellwigae7e4032019-10-30 12:24:57 -0700165 struct xfs_bmbt_irec irec;
166 struct xfs_iext_cursor icur;
167
Christoph Hellwigb2197a32021-04-13 11:15:12 -0700168 ASSERT(!xfs_need_iread_extents(ifp));
Christoph Hellwigf8e3a822016-09-19 11:09:28 +1000169
Christoph Hellwig57c49442019-10-30 12:24:58 -0700170 /*
171 * Always round up the allocation request to the extent hint boundary.
172 */
173 if (extsz) {
174 if (align)
175 align = roundup_64(align, extsz);
176 else
177 align = extsz;
178 }
179
Peter Watkins76b57302014-12-04 09:30:51 +1100180 if (align) {
Christoph Hellwigae7e4032019-10-30 12:24:57 -0700181 xfs_fileoff_t aligned_end_fsb = roundup_64(end_fsb, align);
Christoph Hellwigf8e3a822016-09-19 11:09:28 +1000182
Christoph Hellwigae7e4032019-10-30 12:24:57 -0700183 xfs_iext_last(ifp, &icur);
184 if (!xfs_iext_get_extent(ifp, &icur, &irec) ||
185 aligned_end_fsb >= irec.br_startoff + irec.br_blockcount)
186 return aligned_end_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100187 }
Christoph Hellwigae7e4032019-10-30 12:24:57 -0700188
189 return end_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100190}
191
Christoph Hellwiga206c812010-12-10 08:42:20 +0000192int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193xfs_iomap_write_direct(
Christoph Hellwige6966632019-10-30 12:24:59 -0700194 struct xfs_inode *ip,
195 xfs_fileoff_t offset_fsb,
196 xfs_fileoff_t count_fsb,
Christoph Hellwig952da062021-11-29 11:21:58 +0100197 unsigned int flags,
Christoph Hellwige6966632019-10-30 12:24:59 -0700198 struct xfs_bmbt_irec *imap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199{
Christoph Hellwige6966632019-10-30 12:24:59 -0700200 struct xfs_mount *mp = ip->i_mount;
201 struct xfs_trans *tp;
202 xfs_filblks_t resaligned;
203 int nimaps;
Darrick J. Wong02b7ee42021-01-26 17:20:42 -0800204 unsigned int dblocks, rblocks;
Darrick J. Wong3de4eb12021-01-26 16:44:07 -0800205 bool force = false;
Christoph Hellwige6966632019-10-30 12:24:59 -0700206 int error;
207 int bmapi_flags = XFS_BMAPI_PREALLOC;
Chandan Babu R5147ef32021-03-25 11:48:18 -0700208 int nr_exts = XFS_IEXT_ADD_NOSPLIT_CNT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Nathan Scottdd9f4382006-01-11 15:28:28 +1100210 ASSERT(count_fsb > 0);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100211
Christoph Hellwige6966632019-10-30 12:24:59 -0700212 resaligned = xfs_aligned_fsb_count(offset_fsb, count_fsb,
213 xfs_get_extsz_hint(ip));
214 if (unlikely(XFS_IS_REALTIME_INODE(ip))) {
Darrick J. Wong02b7ee42021-01-26 17:20:42 -0800215 dblocks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
216 rblocks = resaligned;
David Chinner84e1e992007-06-18 16:50:27 +1000217 } else {
Darrick J. Wong02b7ee42021-01-26 17:20:42 -0800218 dblocks = XFS_DIOSTRAT_SPACE_RES(mp, resaligned);
219 rblocks = 0;
David Chinner84e1e992007-06-18 16:50:27 +1000220 }
Nathan Scottdd9f4382006-01-11 15:28:28 +1100221
Darrick J. Wongc14cfcc2018-05-04 15:30:21 -0700222 error = xfs_qm_dqattach(ip);
Brian Foster009c6e82015-10-12 15:34:20 +1100223 if (error)
224 return error;
225
226 /*
Dave Chinner1ca19152015-11-03 12:37:00 +1100227 * For DAX, we do not allocate unwritten extents, but instead we zero
228 * the block before we commit the transaction. Ideally we'd like to do
229 * this outside the transaction context, but if we commit and then crash
230 * we may not have zeroed the blocks and this will be exposed on
231 * recovery of the allocation. Hence we must zero before commit.
Dave Chinner3b0fe472016-01-04 16:22:45 +1100232 *
Dave Chinner1ca19152015-11-03 12:37:00 +1100233 * Further, if we are mapping unwritten extents here, we need to zero
234 * and convert them to written so that we don't need an unwritten extent
235 * callback for DAX. This also means that we need to be able to dip into
Dave Chinner3b0fe472016-01-04 16:22:45 +1100236 * the reserve block pool for bmbt block allocation if there is no space
237 * left but we need to do unwritten extent conversion.
Dave Chinner1ca19152015-11-03 12:37:00 +1100238 */
Christoph Hellwig952da062021-11-29 11:21:58 +0100239 if (flags & IOMAP_DAX) {
Dave Chinner1ca19152015-11-03 12:37:00 +1100240 bmapi_flags = XFS_BMAPI_CONVERT | XFS_BMAPI_ZERO;
Christoph Hellwig63fbb4c2017-03-28 14:53:36 -0700241 if (imap->br_state == XFS_EXT_UNWRITTEN) {
Darrick J. Wong02b7ee42021-01-26 17:20:42 -0800242 force = true;
Chandan Babu R5147ef32021-03-25 11:48:18 -0700243 nr_exts = XFS_IEXT_WRITE_UNWRITTEN_CNT;
Darrick J. Wong02b7ee42021-01-26 17:20:42 -0800244 dblocks = XFS_DIOSTRAT_SPACE_RES(mp, 0) << 1;
Dave Chinner3b0fe472016-01-04 16:22:45 +1100245 }
Dave Chinner1ca19152015-11-03 12:37:00 +1100246 }
Darrick J. Wong3de4eb12021-01-26 16:44:07 -0800247
248 error = xfs_trans_alloc_inode(ip, &M_RES(mp)->tr_write, dblocks,
249 rblocks, force, &tp);
Christoph Hellwig253f4912016-04-06 09:19:55 +1000250 if (error)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000251 return error;
Dave Chinner507630b2012-03-27 10:34:50 -0400252
Chandan Babu R5147ef32021-03-25 11:48:18 -0700253 error = xfs_iext_count_may_overflow(ip, XFS_DATA_FORK, nr_exts);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100254 if (error)
Dave Chinner507630b2012-03-27 10:34:50 -0400255 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 /*
Christoph Hellwig30704512010-06-24 11:42:19 +1000258 * From this point onwards we overwrite the imap pointer that the
259 * caller gave to us.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 */
Nathan Scott06d10dd2005-06-21 15:48:47 +1000261 nimaps = 1;
Brian Fosterda781e62019-10-21 09:26:48 -0700262 error = xfs_bmapi_write(tp, ip, offset_fsb, count_fsb, bmapi_flags, 0,
263 imap, &nimaps);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000264 if (error)
Darrick J. Wong35b110102021-01-26 17:23:30 -0800265 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 /*
Nathan Scott06d10dd2005-06-21 15:48:47 +1000268 * Complete the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 */
Christoph Hellwig70393312015-06-04 13:48:08 +1000270 error = xfs_trans_commit(tp);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000271 if (error)
Dave Chinner507630b2012-03-27 10:34:50 -0400272 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Nathan Scott06d10dd2005-06-21 15:48:47 +1000274 /*
275 * Copy any maps to caller's array and return any error.
276 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (nimaps == 0) {
Dave Chinner24513372014-06-25 14:58:08 +1000278 error = -ENOSPC;
Dave Chinner507630b2012-03-27 10:34:50 -0400279 goto out_unlock;
Nathan Scott572d95f2006-09-28 11:03:20 +1000280 }
281
Christoph Hellwigeb77b232019-09-03 08:13:13 -0700282 if (unlikely(!xfs_valid_startblock(ip, imap->br_startblock)))
Dave Chinner6d4a8ec2011-03-07 10:06:35 +1100283 error = xfs_alert_fsblock_zero(ip, imap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Dave Chinner507630b2012-03-27 10:34:50 -0400285out_unlock:
Christoph Hellwige6966632019-10-30 12:24:59 -0700286 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinner507630b2012-03-27 10:34:50 -0400287 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Dave Chinner507630b2012-03-27 10:34:50 -0400289out_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +1000290 xfs_trans_cancel(tp);
Dave Chinner507630b2012-03-27 10:34:50 -0400291 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
Brian Foster76a42022013-03-18 10:51:47 -0400294STATIC bool
295xfs_quota_need_throttle(
Darrick J. Wong1a7ed272020-07-15 17:53:43 -0700296 struct xfs_inode *ip,
297 xfs_dqtype_t type,
298 xfs_fsblock_t alloc_blocks)
Brian Foster76a42022013-03-18 10:51:47 -0400299{
Darrick J. Wong1a7ed272020-07-15 17:53:43 -0700300 struct xfs_dquot *dq = xfs_inode_dquot(ip, type);
Brian Foster76a42022013-03-18 10:51:47 -0400301
302 if (!dq || !xfs_this_quota_on(ip->i_mount, type))
303 return false;
304
305 /* no hi watermark, no throttle */
306 if (!dq->q_prealloc_hi_wmark)
307 return false;
308
309 /* under the lo watermark, no throttle */
Darrick J. Wong784e80f2020-07-14 10:37:30 -0700310 if (dq->q_blk.reserved + alloc_blocks < dq->q_prealloc_lo_wmark)
Brian Foster76a42022013-03-18 10:51:47 -0400311 return false;
312
313 return true;
314}
315
316STATIC void
317xfs_quota_calc_throttle(
Darrick J. Wong1a7ed272020-07-15 17:53:43 -0700318 struct xfs_inode *ip,
319 xfs_dqtype_t type,
320 xfs_fsblock_t *qblocks,
321 int *qshift,
322 int64_t *qfreesp)
Brian Foster76a42022013-03-18 10:51:47 -0400323{
Darrick J. Wong1a7ed272020-07-15 17:53:43 -0700324 struct xfs_dquot *dq = xfs_inode_dquot(ip, type);
325 int64_t freesp;
326 int shift = 0;
Brian Foster76a42022013-03-18 10:51:47 -0400327
Eric Sandeen5cca3f62014-10-02 09:27:09 +1000328 /* no dq, or over hi wmark, squash the prealloc completely */
Darrick J. Wong784e80f2020-07-14 10:37:30 -0700329 if (!dq || dq->q_blk.reserved >= dq->q_prealloc_hi_wmark) {
Brian Foster76a42022013-03-18 10:51:47 -0400330 *qblocks = 0;
Brian Fosterf0740512014-07-24 19:56:08 +1000331 *qfreesp = 0;
Brian Foster76a42022013-03-18 10:51:47 -0400332 return;
333 }
334
Darrick J. Wong784e80f2020-07-14 10:37:30 -0700335 freesp = dq->q_prealloc_hi_wmark - dq->q_blk.reserved;
Brian Foster76a42022013-03-18 10:51:47 -0400336 if (freesp < dq->q_low_space[XFS_QLOWSP_5_PCNT]) {
337 shift = 2;
338 if (freesp < dq->q_low_space[XFS_QLOWSP_3_PCNT])
339 shift += 2;
340 if (freesp < dq->q_low_space[XFS_QLOWSP_1_PCNT])
341 shift += 2;
342 }
343
Brian Fosterf0740512014-07-24 19:56:08 +1000344 if (freesp < *qfreesp)
345 *qfreesp = freesp;
346
Brian Foster76a42022013-03-18 10:51:47 -0400347 /* only overwrite the throttle values if we are more aggressive */
348 if ((freesp >> shift) < (*qblocks >> *qshift)) {
349 *qblocks = freesp;
350 *qshift = shift;
351 }
352}
353
Dave Chinnera1e16c22013-02-11 16:05:01 +1100354/*
Dave Chinner055388a2011-01-04 11:35:03 +1100355 * If we don't have a user specified preallocation size, dynamically increase
Christoph Hellwig51446f52016-09-19 11:10:21 +1000356 * the preallocation size as the size of the file grows. Cap the maximum size
Dave Chinner055388a2011-01-04 11:35:03 +1100357 * at a single extent or less if the filesystem is near full. The closer the
Darrick J. Wong590b1652020-05-23 09:43:30 -0700358 * filesystem is to being full, the smaller the maximum preallocation.
Dave Chinner055388a2011-01-04 11:35:03 +1100359 */
360STATIC xfs_fsblock_t
361xfs_iomap_prealloc_size(
Dave Chinnera1e16c22013-02-11 16:05:01 +1100362 struct xfs_inode *ip,
Christoph Hellwig66ae56a2019-02-18 09:38:49 -0800363 int whichfork,
Christoph Hellwig51446f52016-09-19 11:10:21 +1000364 loff_t offset,
365 loff_t count,
Christoph Hellwigb2b17122017-11-03 10:34:43 -0700366 struct xfs_iext_cursor *icur)
Dave Chinner055388a2011-01-04 11:35:03 +1100367{
Darrick J. Wongf0322c72020-05-23 09:43:30 -0700368 struct xfs_iext_cursor ncur = *icur;
369 struct xfs_bmbt_irec prev, got;
Christoph Hellwig51446f52016-09-19 11:10:21 +1000370 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig66ae56a2019-02-18 09:38:49 -0800371 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
Christoph Hellwig51446f52016-09-19 11:10:21 +1000372 xfs_fileoff_t offset_fsb = XFS_B_TO_FSBT(mp, offset);
Brian Foster3c58b5f2013-03-18 10:51:43 -0400373 int64_t freesp;
Brian Foster76a42022013-03-18 10:51:47 -0400374 xfs_fsblock_t qblocks;
Christoph Hellwig51446f52016-09-19 11:10:21 +1000375 xfs_fsblock_t alloc_blocks = 0;
Darrick J. Wongf0322c72020-05-23 09:43:30 -0700376 xfs_extlen_t plen;
377 int shift = 0;
378 int qshift = 0;
Dave Chinner055388a2011-01-04 11:35:03 +1100379
Darrick J. Wong590b1652020-05-23 09:43:30 -0700380 /*
381 * As an exception we don't do any preallocation at all if the file is
382 * smaller than the minimum preallocation and we are using the default
383 * dynamic preallocation scheme, as it is likely this is the only write
384 * to the file that is going to be done.
385 */
386 if (XFS_ISIZE(ip) < XFS_FSB_TO_B(mp, mp->m_allocsize_blocks))
Christoph Hellwig51446f52016-09-19 11:10:21 +1000387 return 0;
388
389 /*
Darrick J. Wong590b1652020-05-23 09:43:30 -0700390 * Use the minimum preallocation size for small files or if we are
391 * writing right after a hole.
Christoph Hellwig51446f52016-09-19 11:10:21 +1000392 */
Darrick J. Wong590b1652020-05-23 09:43:30 -0700393 if (XFS_ISIZE(ip) < XFS_FSB_TO_B(mp, mp->m_dalign) ||
Darrick J. Wongf0322c72020-05-23 09:43:30 -0700394 !xfs_iext_prev_extent(ifp, &ncur, &prev) ||
Christoph Hellwig656152e2016-11-24 11:39:44 +1100395 prev.br_startoff + prev.br_blockcount < offset_fsb)
Christoph Hellwig5da8a072019-10-28 08:41:44 -0700396 return mp->m_allocsize_blocks;
Christoph Hellwig51446f52016-09-19 11:10:21 +1000397
398 /*
Darrick J. Wong590b1652020-05-23 09:43:30 -0700399 * Take the size of the preceding data extents as the basis for the
400 * preallocation size. Note that we don't care if the previous extents
401 * are written or not.
Christoph Hellwig51446f52016-09-19 11:10:21 +1000402 */
Darrick J. Wongf0322c72020-05-23 09:43:30 -0700403 plen = prev.br_blockcount;
404 while (xfs_iext_prev_extent(ifp, &ncur, &got)) {
405 if (plen > MAXEXTLEN / 2 ||
406 isnullstartblock(got.br_startblock) ||
407 got.br_startoff + got.br_blockcount != prev.br_startoff ||
408 got.br_startblock + got.br_blockcount != prev.br_startblock)
409 break;
410 plen += got.br_blockcount;
411 prev = got;
412 }
Darrick J. Wong590b1652020-05-23 09:43:30 -0700413
414 /*
415 * If the size of the extents is greater than half the maximum extent
416 * length, then use the current offset as the basis. This ensures that
417 * for large files the preallocation size always extends to MAXEXTLEN
418 * rather than falling short due to things like stripe unit/width
419 * alignment of real extents.
420 */
Darrick J. Wongf0322c72020-05-23 09:43:30 -0700421 alloc_blocks = plen * 2;
422 if (alloc_blocks > MAXEXTLEN)
Christoph Hellwig51446f52016-09-19 11:10:21 +1000423 alloc_blocks = XFS_B_TO_FSB(mp, offset);
Brian Foster76a42022013-03-18 10:51:47 -0400424 qblocks = alloc_blocks;
Dave Chinner055388a2011-01-04 11:35:03 +1100425
Brian Fosterc9bdbdc2013-03-18 10:51:44 -0400426 /*
427 * MAXEXTLEN is not a power of two value but we round the prealloc down
428 * to the nearest power of two value after throttling. To prevent the
Darrick J. Wong590b1652020-05-23 09:43:30 -0700429 * round down from unconditionally reducing the maximum supported
430 * prealloc size, we round up first, apply appropriate throttling,
431 * round down and cap the value to MAXEXTLEN.
Brian Fosterc9bdbdc2013-03-18 10:51:44 -0400432 */
433 alloc_blocks = XFS_FILEOFF_MIN(roundup_pow_of_two(MAXEXTLEN),
434 alloc_blocks);
Dave Chinner055388a2011-01-04 11:35:03 +1100435
Dave Chinner0d485ad2015-02-23 21:22:03 +1100436 freesp = percpu_counter_read_positive(&mp->m_fdblocks);
Brian Foster3c58b5f2013-03-18 10:51:43 -0400437 if (freesp < mp->m_low_space[XFS_LOWSP_5_PCNT]) {
438 shift = 2;
439 if (freesp < mp->m_low_space[XFS_LOWSP_4_PCNT])
440 shift++;
441 if (freesp < mp->m_low_space[XFS_LOWSP_3_PCNT])
442 shift++;
443 if (freesp < mp->m_low_space[XFS_LOWSP_2_PCNT])
444 shift++;
445 if (freesp < mp->m_low_space[XFS_LOWSP_1_PCNT])
446 shift++;
Dave Chinner055388a2011-01-04 11:35:03 +1100447 }
Brian Foster76a42022013-03-18 10:51:47 -0400448
449 /*
Brian Fosterf0740512014-07-24 19:56:08 +1000450 * Check each quota to cap the prealloc size, provide a shift value to
451 * throttle with and adjust amount of available space.
Brian Foster76a42022013-03-18 10:51:47 -0400452 */
Darrick J. Wong8cd49012020-07-15 17:42:36 -0700453 if (xfs_quota_need_throttle(ip, XFS_DQTYPE_USER, alloc_blocks))
454 xfs_quota_calc_throttle(ip, XFS_DQTYPE_USER, &qblocks, &qshift,
Brian Fosterf0740512014-07-24 19:56:08 +1000455 &freesp);
Darrick J. Wong8cd49012020-07-15 17:42:36 -0700456 if (xfs_quota_need_throttle(ip, XFS_DQTYPE_GROUP, alloc_blocks))
457 xfs_quota_calc_throttle(ip, XFS_DQTYPE_GROUP, &qblocks, &qshift,
Brian Fosterf0740512014-07-24 19:56:08 +1000458 &freesp);
Darrick J. Wong8cd49012020-07-15 17:42:36 -0700459 if (xfs_quota_need_throttle(ip, XFS_DQTYPE_PROJ, alloc_blocks))
460 xfs_quota_calc_throttle(ip, XFS_DQTYPE_PROJ, &qblocks, &qshift,
Brian Fosterf0740512014-07-24 19:56:08 +1000461 &freesp);
Brian Foster76a42022013-03-18 10:51:47 -0400462
463 /*
464 * The final prealloc size is set to the minimum of free space available
465 * in each of the quotas and the overall filesystem.
466 *
467 * The shift throttle value is set to the maximum value as determined by
468 * the global low free space values and per-quota low free space values.
469 */
Dave Chinner9bb54cb2018-06-07 07:54:02 -0700470 alloc_blocks = min(alloc_blocks, qblocks);
471 shift = max(shift, qshift);
Brian Foster76a42022013-03-18 10:51:47 -0400472
Brian Foster3c58b5f2013-03-18 10:51:43 -0400473 if (shift)
474 alloc_blocks >>= shift;
Brian Fosterc9bdbdc2013-03-18 10:51:44 -0400475 /*
476 * rounddown_pow_of_two() returns an undefined result if we pass in
477 * alloc_blocks = 0.
478 */
479 if (alloc_blocks)
480 alloc_blocks = rounddown_pow_of_two(alloc_blocks);
481 if (alloc_blocks > MAXEXTLEN)
482 alloc_blocks = MAXEXTLEN;
Dave Chinner055388a2011-01-04 11:35:03 +1100483
Brian Foster3c58b5f2013-03-18 10:51:43 -0400484 /*
485 * If we are still trying to allocate more space than is
486 * available, squash the prealloc hard. This can happen if we
487 * have a large file on a small filesystem and the above
488 * lowspace thresholds are smaller than MAXEXTLEN.
489 */
490 while (alloc_blocks && alloc_blocks >= freesp)
491 alloc_blocks >>= 4;
Christoph Hellwig5da8a072019-10-28 08:41:44 -0700492 if (alloc_blocks < mp->m_allocsize_blocks)
493 alloc_blocks = mp->m_allocsize_blocks;
Brian Foster19cb7e32013-03-18 10:51:48 -0400494 trace_xfs_iomap_prealloc_size(ip, alloc_blocks, shift,
Christoph Hellwig5da8a072019-10-28 08:41:44 -0700495 mp->m_allocsize_blocks);
Dave Chinner055388a2011-01-04 11:35:03 +1100496 return alloc_blocks;
497}
498
Christoph Hellwiga526c852019-10-19 09:09:46 -0700499int
500xfs_iomap_write_unwritten(
501 xfs_inode_t *ip,
502 xfs_off_t offset,
503 xfs_off_t count,
504 bool update_isize)
505{
506 xfs_mount_t *mp = ip->i_mount;
507 xfs_fileoff_t offset_fsb;
508 xfs_filblks_t count_fsb;
509 xfs_filblks_t numblks_fsb;
510 int nimaps;
511 xfs_trans_t *tp;
512 xfs_bmbt_irec_t imap;
513 struct inode *inode = VFS_I(ip);
514 xfs_fsize_t i_size;
515 uint resblks;
516 int error;
517
518 trace_xfs_unwritten_convert(ip, offset, count);
519
520 offset_fsb = XFS_B_TO_FSBT(mp, offset);
521 count_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count);
522 count_fsb = (xfs_filblks_t)(count_fsb - offset_fsb);
523
524 /*
525 * Reserve enough blocks in this transaction for two complete extent
526 * btree splits. We may be converting the middle part of an unwritten
527 * extent and in this case we will insert two new extents in the btree
528 * each of which could cause a full split.
529 *
530 * This reservation amount will be used in the first call to
531 * xfs_bmbt_split() to select an AG with enough space to satisfy the
532 * rest of the operation.
533 */
534 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0) << 1;
535
Darrick J. Wong2815a162019-11-08 23:04:20 -0800536 /* Attach dquots so that bmbt splits are accounted correctly. */
537 error = xfs_qm_dqattach(ip);
538 if (error)
539 return error;
540
Christoph Hellwiga526c852019-10-19 09:09:46 -0700541 do {
542 /*
543 * Set up a transaction to convert the range of extents
544 * from unwritten to real. Do allocations in a loop until
545 * we have covered the range passed in.
546 *
547 * Note that we can't risk to recursing back into the filesystem
548 * here as we might be asked to write out the same inode that we
549 * complete here and might deadlock on the iolock.
550 */
Darrick J. Wong3a1af6c2021-01-26 16:33:29 -0800551 error = xfs_trans_alloc_inode(ip, &M_RES(mp)->tr_write, resblks,
Darrick J. Wong3de4eb12021-01-26 16:44:07 -0800552 0, true, &tp);
Christoph Hellwiga526c852019-10-19 09:09:46 -0700553 if (error)
554 return error;
555
Chandan Babu Rc442f302021-01-22 16:48:14 -0800556 error = xfs_iext_count_may_overflow(ip, XFS_DATA_FORK,
557 XFS_IEXT_WRITE_UNWRITTEN_CNT);
Darrick J. Wong2815a162019-11-08 23:04:20 -0800558 if (error)
559 goto error_on_bmapi_transaction;
560
Christoph Hellwiga526c852019-10-19 09:09:46 -0700561 /*
562 * Modify the unwritten extent state of the buffer.
563 */
564 nimaps = 1;
565 error = xfs_bmapi_write(tp, ip, offset_fsb, count_fsb,
566 XFS_BMAPI_CONVERT, resblks, &imap,
567 &nimaps);
568 if (error)
569 goto error_on_bmapi_transaction;
570
571 /*
572 * Log the updated inode size as we go. We have to be careful
573 * to only log it up to the actual write offset if it is
574 * halfway into a block.
575 */
576 i_size = XFS_FSB_TO_B(mp, offset_fsb + count_fsb);
577 if (i_size > offset + count)
578 i_size = offset + count;
579 if (update_isize && i_size > i_size_read(inode))
580 i_size_write(inode, i_size);
581 i_size = xfs_new_eof(ip, i_size);
582 if (i_size) {
Christoph Hellwig13d2c102021-03-29 11:11:40 -0700583 ip->i_disk_size = i_size;
Christoph Hellwiga526c852019-10-19 09:09:46 -0700584 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
585 }
586
587 error = xfs_trans_commit(tp);
588 xfs_iunlock(ip, XFS_ILOCK_EXCL);
589 if (error)
590 return error;
591
592 if (unlikely(!xfs_valid_startblock(ip, imap.br_startblock)))
593 return xfs_alert_fsblock_zero(ip, &imap);
594
595 if ((numblks_fsb = imap.br_blockcount) == 0) {
596 /*
597 * The numblks_fsb value should always get
598 * smaller, otherwise the loop is stuck.
599 */
600 ASSERT(imap.br_blockcount);
601 break;
602 }
603 offset_fsb += numblks_fsb;
604 count_fsb -= numblks_fsb;
605 } while (count_fsb > 0);
606
607 return 0;
608
609error_on_bmapi_transaction:
610 xfs_trans_cancel(tp);
611 xfs_iunlock(ip, XFS_ILOCK_EXCL);
612 return error;
613}
614
615static inline bool
616imap_needs_alloc(
617 struct inode *inode,
Christoph Hellwig5c5b6f72019-10-19 09:09:47 -0700618 unsigned flags,
Christoph Hellwiga526c852019-10-19 09:09:46 -0700619 struct xfs_bmbt_irec *imap,
620 int nimaps)
621{
Christoph Hellwig5c5b6f72019-10-19 09:09:47 -0700622 /* don't allocate blocks when just zeroing */
623 if (flags & IOMAP_ZERO)
624 return false;
625 if (!nimaps ||
626 imap->br_startblock == HOLESTARTBLOCK ||
627 imap->br_startblock == DELAYSTARTBLOCK)
628 return true;
629 /* we convert unwritten extents before copying the data for DAX */
Christoph Hellwig952da062021-11-29 11:21:58 +0100630 if ((flags & IOMAP_DAX) && imap->br_state == XFS_EXT_UNWRITTEN)
Christoph Hellwig5c5b6f72019-10-19 09:09:47 -0700631 return true;
632 return false;
Christoph Hellwiga526c852019-10-19 09:09:46 -0700633}
634
635static inline bool
Christoph Hellwig5c5b6f72019-10-19 09:09:47 -0700636imap_needs_cow(
637 struct xfs_inode *ip,
638 unsigned int flags,
Christoph Hellwiga526c852019-10-19 09:09:46 -0700639 struct xfs_bmbt_irec *imap,
640 int nimaps)
641{
Christoph Hellwig5c5b6f72019-10-19 09:09:47 -0700642 if (!xfs_is_cow_inode(ip))
643 return false;
644
645 /* when zeroing we don't have to COW holes or unwritten extents */
646 if (flags & IOMAP_ZERO) {
647 if (!nimaps ||
648 imap->br_startblock == HOLESTARTBLOCK ||
649 imap->br_state == XFS_EXT_UNWRITTEN)
650 return false;
651 }
652
653 return true;
Christoph Hellwiga526c852019-10-19 09:09:46 -0700654}
655
656static int
657xfs_ilock_for_iomap(
658 struct xfs_inode *ip,
659 unsigned flags,
660 unsigned *lockmode)
661{
662 unsigned mode = XFS_ILOCK_SHARED;
663 bool is_write = flags & (IOMAP_WRITE | IOMAP_ZERO);
664
665 /*
666 * COW writes may allocate delalloc space or convert unwritten COW
667 * extents, so we need to make sure to take the lock exclusively here.
668 */
Christoph Hellwig1e190f82019-10-19 09:09:47 -0700669 if (xfs_is_cow_inode(ip) && is_write)
Christoph Hellwiga526c852019-10-19 09:09:46 -0700670 mode = XFS_ILOCK_EXCL;
Christoph Hellwiga526c852019-10-19 09:09:46 -0700671
672 /*
673 * Extents not yet cached requires exclusive access, don't block. This
674 * is an opencoded xfs_ilock_data_map_shared() call but with
675 * non-blocking behaviour.
676 */
Christoph Hellwigb2197a32021-04-13 11:15:12 -0700677 if (xfs_need_iread_extents(&ip->i_df)) {
Christoph Hellwiga526c852019-10-19 09:09:46 -0700678 if (flags & IOMAP_NOWAIT)
679 return -EAGAIN;
680 mode = XFS_ILOCK_EXCL;
681 }
682
683relock:
684 if (flags & IOMAP_NOWAIT) {
685 if (!xfs_ilock_nowait(ip, mode))
686 return -EAGAIN;
687 } else {
688 xfs_ilock(ip, mode);
689 }
690
691 /*
692 * The reflink iflag could have changed since the earlier unlocked
693 * check, so if we got ILOCK_SHARED for a write and but we're now a
694 * reflink inode we have to switch to ILOCK_EXCL and relock.
695 */
696 if (mode == XFS_ILOCK_SHARED && is_write && xfs_is_cow_inode(ip)) {
697 xfs_iunlock(ip, mode);
698 mode = XFS_ILOCK_EXCL;
699 goto relock;
700 }
701
702 *lockmode = mode;
703 return 0;
704}
705
Dave Chinner883a7902020-11-19 08:59:11 -0800706/*
707 * Check that the imap we are going to return to the caller spans the entire
708 * range that the caller requested for the IO.
709 */
710static bool
711imap_spans_range(
712 struct xfs_bmbt_irec *imap,
713 xfs_fileoff_t offset_fsb,
714 xfs_fileoff_t end_fsb)
715{
716 if (imap->br_startoff > offset_fsb)
717 return false;
718 if (imap->br_startoff + imap->br_blockcount < end_fsb)
719 return false;
720 return true;
721}
722
Christoph Hellwiga526c852019-10-19 09:09:46 -0700723static int
Christoph Hellwigf150b422019-10-19 09:09:46 -0700724xfs_direct_write_iomap_begin(
Christoph Hellwiga526c852019-10-19 09:09:46 -0700725 struct inode *inode,
726 loff_t offset,
727 loff_t length,
728 unsigned flags,
729 struct iomap *iomap,
730 struct iomap *srcmap)
731{
732 struct xfs_inode *ip = XFS_I(inode);
733 struct xfs_mount *mp = ip->i_mount;
734 struct xfs_bmbt_irec imap, cmap;
735 xfs_fileoff_t offset_fsb = XFS_B_TO_FSBT(mp, offset);
736 xfs_fileoff_t end_fsb = xfs_iomap_end_fsb(mp, offset, length);
737 int nimaps = 1, error = 0;
738 bool shared = false;
739 u16 iomap_flags = 0;
740 unsigned lockmode;
741
742 ASSERT(flags & (IOMAP_WRITE | IOMAP_ZERO));
743
Dave Chinner75c8c50f2021-08-18 18:46:53 -0700744 if (xfs_is_shutdown(mp))
Christoph Hellwiga526c852019-10-19 09:09:46 -0700745 return -EIO;
746
Christoph Hellwiga526c852019-10-19 09:09:46 -0700747 /*
Christoph Hellwig5c5b6f72019-10-19 09:09:47 -0700748 * Writes that span EOF might trigger an IO size update on completion,
749 * so consider them to be dirty for the purposes of O_DSYNC even if
750 * there is no other metadata changes pending or have been made here.
751 */
752 if (offset + length > i_size_read(inode))
753 iomap_flags |= IOMAP_F_DIRTY;
754
Christoph Hellwiga526c852019-10-19 09:09:46 -0700755 error = xfs_ilock_for_iomap(ip, flags, &lockmode);
756 if (error)
757 return error;
758
759 error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb, &imap,
760 &nimaps, 0);
761 if (error)
762 goto out_unlock;
763
Christoph Hellwig5c5b6f72019-10-19 09:09:47 -0700764 if (imap_needs_cow(ip, flags, &imap, nimaps)) {
Christoph Hellwig1e190f82019-10-19 09:09:47 -0700765 error = -EAGAIN;
766 if (flags & IOMAP_NOWAIT)
767 goto out_unlock;
768
Christoph Hellwiga526c852019-10-19 09:09:46 -0700769 /* may drop and re-acquire the ilock */
770 error = xfs_reflink_allocate_cow(ip, &imap, &cmap, &shared,
771 &lockmode, flags & IOMAP_DIRECT);
772 if (error)
773 goto out_unlock;
774 if (shared)
775 goto out_found_cow;
776 end_fsb = imap.br_startoff + imap.br_blockcount;
777 length = XFS_FSB_TO_B(mp, end_fsb) - offset;
778 }
779
Christoph Hellwig5c5b6f72019-10-19 09:09:47 -0700780 if (imap_needs_alloc(inode, flags, &imap, nimaps))
781 goto allocate_blocks;
Christoph Hellwiga526c852019-10-19 09:09:46 -0700782
Dave Chinner883a7902020-11-19 08:59:11 -0800783 /*
Dave Chinnered1128c2021-01-23 10:06:31 -0800784 * NOWAIT and OVERWRITE I/O needs to span the entire requested I/O with
785 * a single map so that we avoid partial IO failures due to the rest of
786 * the I/O range not covered by this map triggering an EAGAIN condition
787 * when it is subsequently mapped and aborting the I/O.
Dave Chinner883a7902020-11-19 08:59:11 -0800788 */
Dave Chinnered1128c2021-01-23 10:06:31 -0800789 if (flags & (IOMAP_NOWAIT | IOMAP_OVERWRITE_ONLY)) {
Dave Chinner883a7902020-11-19 08:59:11 -0800790 error = -EAGAIN;
Dave Chinnered1128c2021-01-23 10:06:31 -0800791 if (!imap_spans_range(&imap, offset_fsb, end_fsb))
792 goto out_unlock;
793 }
794
795 /*
796 * For overwrite only I/O, we cannot convert unwritten extents without
797 * requiring sub-block zeroing. This can only be done under an
798 * exclusive IOLOCK, hence return -EAGAIN if this is not a written
799 * extent to tell the caller to try again.
800 */
801 if (flags & IOMAP_OVERWRITE_ONLY) {
802 error = -EAGAIN;
803 if (imap.br_state != XFS_EXT_NORM &&
804 ((offset | length) & mp->m_blockmask))
805 goto out_unlock;
Dave Chinner883a7902020-11-19 08:59:11 -0800806 }
807
Christoph Hellwig5c5b6f72019-10-19 09:09:47 -0700808 xfs_iunlock(ip, lockmode);
809 trace_xfs_iomap_found(ip, offset, length, XFS_DATA_FORK, &imap);
Christoph Hellwig740fd672021-11-29 11:21:57 +0100810 return xfs_bmbt_to_iomap(ip, iomap, &imap, flags, iomap_flags);
Christoph Hellwiga526c852019-10-19 09:09:46 -0700811
Christoph Hellwig5c5b6f72019-10-19 09:09:47 -0700812allocate_blocks:
813 error = -EAGAIN;
Dave Chinnered1128c2021-01-23 10:06:31 -0800814 if (flags & (IOMAP_NOWAIT | IOMAP_OVERWRITE_ONLY))
Christoph Hellwiga526c852019-10-19 09:09:46 -0700815 goto out_unlock;
Christoph Hellwiga526c852019-10-19 09:09:46 -0700816
817 /*
818 * We cap the maximum length we map to a sane size to keep the chunks
819 * of work done where somewhat symmetric with the work writeback does.
820 * This is a completely arbitrary number pulled out of thin air as a
821 * best guess for initial testing.
822 *
823 * Note that the values needs to be less than 32-bits wide until the
824 * lower level functions are updated.
825 */
826 length = min_t(loff_t, length, 1024 * PAGE_SIZE);
Christoph Hellwige6966632019-10-30 12:24:59 -0700827 end_fsb = xfs_iomap_end_fsb(mp, offset, length);
Christoph Hellwiga526c852019-10-19 09:09:46 -0700828
Christoph Hellwige6966632019-10-30 12:24:59 -0700829 if (offset + length > XFS_ISIZE(ip))
830 end_fsb = xfs_iomap_eof_align_last_fsb(ip, end_fsb);
831 else if (nimaps && imap.br_startblock == HOLESTARTBLOCK)
832 end_fsb = min(end_fsb, imap.br_startoff + imap.br_blockcount);
833 xfs_iunlock(ip, lockmode);
834
835 error = xfs_iomap_write_direct(ip, offset_fsb, end_fsb - offset_fsb,
Christoph Hellwig952da062021-11-29 11:21:58 +0100836 flags, &imap);
Christoph Hellwiga526c852019-10-19 09:09:46 -0700837 if (error)
838 return error;
839
Christoph Hellwiga526c852019-10-19 09:09:46 -0700840 trace_xfs_iomap_alloc(ip, offset, length, XFS_DATA_FORK, &imap);
Christoph Hellwig740fd672021-11-29 11:21:57 +0100841 return xfs_bmbt_to_iomap(ip, iomap, &imap, flags,
842 iomap_flags | IOMAP_F_NEW);
Christoph Hellwiga526c852019-10-19 09:09:46 -0700843
844out_found_cow:
845 xfs_iunlock(ip, lockmode);
846 length = XFS_FSB_TO_B(mp, cmap.br_startoff + cmap.br_blockcount);
847 trace_xfs_iomap_found(ip, offset, length - offset, XFS_COW_FORK, &cmap);
848 if (imap.br_startblock != HOLESTARTBLOCK) {
Christoph Hellwig740fd672021-11-29 11:21:57 +0100849 error = xfs_bmbt_to_iomap(ip, srcmap, &imap, flags, 0);
Christoph Hellwiga526c852019-10-19 09:09:46 -0700850 if (error)
851 return error;
852 }
Christoph Hellwig740fd672021-11-29 11:21:57 +0100853 return xfs_bmbt_to_iomap(ip, iomap, &cmap, flags, IOMAP_F_SHARED);
Christoph Hellwiga526c852019-10-19 09:09:46 -0700854
855out_unlock:
Darrick J. Wongf2733872021-01-27 10:07:27 -0800856 if (lockmode)
857 xfs_iunlock(ip, lockmode);
Christoph Hellwiga526c852019-10-19 09:09:46 -0700858 return error;
859}
860
Christoph Hellwigf150b422019-10-19 09:09:46 -0700861const struct iomap_ops xfs_direct_write_iomap_ops = {
862 .iomap_begin = xfs_direct_write_iomap_begin,
863};
864
Christoph Hellwig51446f52016-09-19 11:10:21 +1000865static int
Christoph Hellwigf150b422019-10-19 09:09:46 -0700866xfs_buffered_write_iomap_begin(
Christoph Hellwig51446f52016-09-19 11:10:21 +1000867 struct inode *inode,
868 loff_t offset,
869 loff_t count,
Christoph Hellwig0365c5d2018-10-18 17:19:26 +1100870 unsigned flags,
Christoph Hellwig36adcba2019-10-19 09:09:44 -0700871 struct iomap *iomap,
872 struct iomap *srcmap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Christoph Hellwig51446f52016-09-19 11:10:21 +1000874 struct xfs_inode *ip = XFS_I(inode);
875 struct xfs_mount *mp = ip->i_mount;
Christoph Hellwig51446f52016-09-19 11:10:21 +1000876 xfs_fileoff_t offset_fsb = XFS_B_TO_FSBT(mp, offset);
Christoph Hellwig43568222019-10-19 09:09:44 -0700877 xfs_fileoff_t end_fsb = xfs_iomap_end_fsb(mp, offset, count);
Christoph Hellwigdb46e602019-02-18 09:38:47 -0800878 struct xfs_bmbt_irec imap, cmap;
879 struct xfs_iext_cursor icur, ccur;
Brian Fosterf7820882016-11-28 14:57:42 +1100880 xfs_fsblock_t prealloc_blocks = 0;
Christoph Hellwigc4feb0b2019-02-18 09:38:48 -0800881 bool eof = false, cow_eof = false, shared = false;
Christoph Hellwig12dfb582019-10-19 09:09:47 -0700882 int allocfork = XFS_DATA_FORK;
Christoph Hellwigdb46e602019-02-18 09:38:47 -0800883 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Dave Chinner75c8c50f2021-08-18 18:46:53 -0700885 if (xfs_is_shutdown(mp))
Brian Fostere4826692021-02-10 17:27:20 -0800886 return -EIO;
887
Christoph Hellwigf150b422019-10-19 09:09:46 -0700888 /* we can't use delayed allocations when using extent size hints */
889 if (xfs_get_extsz_hint(ip))
890 return xfs_direct_write_iomap_begin(inode, offset, count,
891 flags, iomap, srcmap);
892
Christoph Hellwig51446f52016-09-19 11:10:21 +1000893 ASSERT(!XFS_IS_REALTIME_INODE(ip));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
Christoph Hellwig51446f52016-09-19 11:10:21 +1000895 xfs_ilock(ip, XFS_ILOCK_EXCL);
896
Christoph Hellwigf7e67b22020-05-18 10:28:05 -0700897 if (XFS_IS_CORRUPT(mp, !xfs_ifork_has_extents(&ip->i_df)) ||
Darrick J. Wonga71895c2019-11-11 12:53:22 -0800898 XFS_TEST_ERROR(false, mp, XFS_ERRTAG_BMAPIFORMAT)) {
Christoph Hellwig51446f52016-09-19 11:10:21 +1000899 error = -EFSCORRUPTED;
900 goto out_unlock;
901 }
902
903 XFS_STATS_INC(mp, xs_blk_mapw);
904
Christoph Hellwig862a8042021-04-13 11:15:09 -0700905 error = xfs_iread_extents(NULL, ip, XFS_DATA_FORK);
906 if (error)
907 goto out_unlock;
Christoph Hellwig51446f52016-09-19 11:10:21 +1000908
Christoph Hellwigdb46e602019-02-18 09:38:47 -0800909 /*
Randy Dunlapb63da6c2020-08-05 08:49:58 -0700910 * Search the data fork first to look up our source mapping. We
Christoph Hellwigdb46e602019-02-18 09:38:47 -0800911 * always need the data fork map, as we have to return it to the
912 * iomap code so that the higher level write code can read data in to
913 * perform read-modify-write cycles for unaligned writes.
914 */
915 eof = !xfs_iext_lookup_extent(ip, &ip->i_df, offset_fsb, &icur, &imap);
Christoph Hellwig0365c5d2018-10-18 17:19:26 +1100916 if (eof)
Christoph Hellwigdb46e602019-02-18 09:38:47 -0800917 imap.br_startoff = end_fsb; /* fake hole until the end */
Christoph Hellwig0365c5d2018-10-18 17:19:26 +1100918
Christoph Hellwigdb46e602019-02-18 09:38:47 -0800919 /* We never need to allocate blocks for zeroing a hole. */
920 if ((flags & IOMAP_ZERO) && imap.br_startoff > offset_fsb) {
921 xfs_hole_to_iomap(ip, iomap, offset_fsb, imap.br_startoff);
922 goto out_unlock;
923 }
924
925 /*
926 * Search the COW fork extent list even if we did not find a data fork
927 * extent. This serves two purposes: first this implements the
928 * speculative preallocation using cowextsize, so that we also unshare
929 * block adjacent to shared blocks instead of just the shared blocks
930 * themselves. Second the lookup in the extent list is generally faster
931 * than going out to the shared extent tree.
932 */
Christoph Hellwig66ae56a2019-02-18 09:38:49 -0800933 if (xfs_is_cow_inode(ip)) {
934 if (!ip->i_cowfp) {
935 ASSERT(!xfs_is_reflink_inode(ip));
936 xfs_ifork_init_cow(ip);
937 }
Christoph Hellwigdb46e602019-02-18 09:38:47 -0800938 cow_eof = !xfs_iext_lookup_extent(ip, ip->i_cowfp, offset_fsb,
939 &ccur, &cmap);
940 if (!cow_eof && cmap.br_startoff <= offset_fsb) {
941 trace_xfs_reflink_cow_found(ip, &cmap);
Christoph Hellwigae36b532019-10-19 09:09:43 -0700942 goto found_cow;
Christoph Hellwigdb46e602019-02-18 09:38:47 -0800943 }
944 }
945
946 if (imap.br_startoff <= offset_fsb) {
Christoph Hellwig0365c5d2018-10-18 17:19:26 +1100947 /*
948 * For reflink files we may need a delalloc reservation when
949 * overwriting shared extents. This includes zeroing of
950 * existing extents that contain data.
951 */
Christoph Hellwig66ae56a2019-02-18 09:38:49 -0800952 if (!xfs_is_cow_inode(ip) ||
Christoph Hellwigdb46e602019-02-18 09:38:47 -0800953 ((flags & IOMAP_ZERO) && imap.br_state != XFS_EXT_NORM)) {
954 trace_xfs_iomap_found(ip, offset, count, XFS_DATA_FORK,
955 &imap);
Christoph Hellwigae36b532019-10-19 09:09:43 -0700956 goto found_imap;
Christoph Hellwig3ba020b2016-10-20 15:53:50 +1100957 }
958
Christoph Hellwigdb46e602019-02-18 09:38:47 -0800959 xfs_trim_extent(&imap, offset_fsb, end_fsb - offset_fsb);
Christoph Hellwig51446f52016-09-19 11:10:21 +1000960
Christoph Hellwigdb46e602019-02-18 09:38:47 -0800961 /* Trim the mapping to the nearest shared extent boundary. */
zhengbinaa124432020-01-20 14:34:47 -0800962 error = xfs_bmap_trim_cow(ip, &imap, &shared);
Christoph Hellwigdb46e602019-02-18 09:38:47 -0800963 if (error)
964 goto out_unlock;
965
966 /* Not shared? Just report the (potentially capped) extent. */
967 if (!shared) {
968 trace_xfs_iomap_found(ip, offset, count, XFS_DATA_FORK,
969 &imap);
Christoph Hellwigae36b532019-10-19 09:09:43 -0700970 goto found_imap;
Christoph Hellwigdb46e602019-02-18 09:38:47 -0800971 }
972
973 /*
974 * Fork all the shared blocks from our write offset until the
975 * end of the extent.
976 */
Christoph Hellwig12dfb582019-10-19 09:09:47 -0700977 allocfork = XFS_COW_FORK;
Christoph Hellwigdb46e602019-02-18 09:38:47 -0800978 end_fsb = imap.br_startoff + imap.br_blockcount;
979 } else {
980 /*
981 * We cap the maximum length we map here to MAX_WRITEBACK_PAGES
982 * pages to keep the chunks of work done where somewhat
983 * symmetric with the work writeback does. This is a completely
984 * arbitrary number pulled out of thin air.
985 *
986 * Note that the values needs to be less than 32-bits wide until
987 * the lower level functions are updated.
988 */
989 count = min_t(loff_t, count, 1024 * PAGE_SIZE);
Christoph Hellwig43568222019-10-19 09:09:44 -0700990 end_fsb = xfs_iomap_end_fsb(mp, offset, count);
Christoph Hellwig66ae56a2019-02-18 09:38:49 -0800991
992 if (xfs_is_always_cow_inode(ip))
Christoph Hellwig12dfb582019-10-19 09:09:47 -0700993 allocfork = XFS_COW_FORK;
Christoph Hellwig0365c5d2018-10-18 17:19:26 +1100994 }
995
Darrick J. Wong4882c192018-05-04 15:30:22 -0700996 error = xfs_qm_dqattach_locked(ip, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 if (error)
Christoph Hellwig51446f52016-09-19 11:10:21 +1000998 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Darrick J. Wong590b1652020-05-23 09:43:30 -07001000 if (eof && offset + count > XFS_ISIZE(ip)) {
1001 /*
1002 * Determine the initial size of the preallocation.
1003 * We clean up any extra preallocation when the file is closed.
1004 */
Dave Chinner0560f312021-08-18 18:46:52 -07001005 if (xfs_has_allocsize(mp))
Darrick J. Wong590b1652020-05-23 09:43:30 -07001006 prealloc_blocks = mp->m_allocsize_blocks;
1007 else
1008 prealloc_blocks = xfs_iomap_prealloc_size(ip, allocfork,
1009 offset, count, &icur);
Christoph Hellwig51446f52016-09-19 11:10:21 +10001010 if (prealloc_blocks) {
1011 xfs_extlen_t align;
1012 xfs_off_t end_offset;
Brian Fosterf7820882016-11-28 14:57:42 +11001013 xfs_fileoff_t p_end_fsb;
Christoph Hellwig51446f52016-09-19 11:10:21 +10001014
Christoph Hellwig5da8a072019-10-28 08:41:44 -07001015 end_offset = XFS_ALLOC_ALIGN(mp, offset + count - 1);
Brian Fosterf7820882016-11-28 14:57:42 +11001016 p_end_fsb = XFS_B_TO_FSBT(mp, end_offset) +
1017 prealloc_blocks;
Christoph Hellwig51446f52016-09-19 11:10:21 +10001018
Christoph Hellwig57c49442019-10-30 12:24:58 -07001019 align = xfs_eof_alignment(ip);
Christoph Hellwig51446f52016-09-19 11:10:21 +10001020 if (align)
Brian Fosterf7820882016-11-28 14:57:42 +11001021 p_end_fsb = roundup_64(p_end_fsb, align);
Christoph Hellwig51446f52016-09-19 11:10:21 +10001022
Christoph Hellwig43568222019-10-19 09:09:44 -07001023 p_end_fsb = min(p_end_fsb,
1024 XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes));
Brian Fosterf7820882016-11-28 14:57:42 +11001025 ASSERT(p_end_fsb > offset_fsb);
1026 prealloc_blocks = p_end_fsb - end_fsb;
Christoph Hellwig51446f52016-09-19 11:10:21 +10001027 }
1028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Dave Chinner8de2bf92009-04-06 18:49:12 +02001030retry:
Christoph Hellwig12dfb582019-10-19 09:09:47 -07001031 error = xfs_bmapi_reserve_delalloc(ip, allocfork, offset_fsb,
Christoph Hellwigdb46e602019-02-18 09:38:47 -08001032 end_fsb - offset_fsb, prealloc_blocks,
Christoph Hellwig12dfb582019-10-19 09:09:47 -07001033 allocfork == XFS_DATA_FORK ? &imap : &cmap,
1034 allocfork == XFS_DATA_FORK ? &icur : &ccur,
1035 allocfork == XFS_DATA_FORK ? eof : cow_eof);
Dave Chinner055388a2011-01-04 11:35:03 +11001036 switch (error) {
1037 case 0:
Christoph Hellwig51446f52016-09-19 11:10:21 +10001038 break;
Dave Chinner24513372014-06-25 14:58:08 +10001039 case -ENOSPC:
1040 case -EDQUOT:
Christoph Hellwig51446f52016-09-19 11:10:21 +10001041 /* retry without any preallocation */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001042 trace_xfs_delalloc_enospc(ip, offset, count);
Brian Fosterf7820882016-11-28 14:57:42 +11001043 if (prealloc_blocks) {
1044 prealloc_blocks = 0;
Dave Chinner9aa05002012-10-08 21:56:04 +11001045 goto retry;
Dave Chinner055388a2011-01-04 11:35:03 +11001046 }
Gustavo A. R. Silva53004ee2021-04-20 17:54:36 -05001047 fallthrough;
Christoph Hellwig51446f52016-09-19 11:10:21 +10001048 default:
1049 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050 }
1051
Christoph Hellwig12dfb582019-10-19 09:09:47 -07001052 if (allocfork == XFS_COW_FORK) {
1053 trace_xfs_iomap_alloc(ip, offset, count, allocfork, &cmap);
Christoph Hellwigae36b532019-10-19 09:09:43 -07001054 goto found_cow;
1055 }
1056
Brian Fosterf65e6fa2017-03-08 09:58:08 -08001057 /*
1058 * Flag newly allocated delalloc blocks with IOMAP_F_NEW so we punch
1059 * them out if the write happens to fail.
1060 */
Christoph Hellwigae36b532019-10-19 09:09:43 -07001061 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig12dfb582019-10-19 09:09:47 -07001062 trace_xfs_iomap_alloc(ip, offset, count, allocfork, &imap);
Christoph Hellwig740fd672021-11-29 11:21:57 +01001063 return xfs_bmbt_to_iomap(ip, iomap, &imap, flags, IOMAP_F_NEW);
Christoph Hellwigae36b532019-10-19 09:09:43 -07001064
1065found_imap:
1066 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Christoph Hellwig740fd672021-11-29 11:21:57 +01001067 return xfs_bmbt_to_iomap(ip, iomap, &imap, flags, 0);
Christoph Hellwigae36b532019-10-19 09:09:43 -07001068
1069found_cow:
1070 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1071 if (imap.br_startoff <= offset_fsb) {
Christoph Hellwig740fd672021-11-29 11:21:57 +01001072 error = xfs_bmbt_to_iomap(ip, srcmap, &imap, flags, 0);
Christoph Hellwig36adcba2019-10-19 09:09:44 -07001073 if (error)
1074 return error;
Christoph Hellwig740fd672021-11-29 11:21:57 +01001075 return xfs_bmbt_to_iomap(ip, iomap, &cmap, flags,
1076 IOMAP_F_SHARED);
Christoph Hellwigdb46e602019-02-18 09:38:47 -08001077 }
Darrick J. Wong72a048c2021-08-20 14:42:39 -07001078
1079 xfs_trim_extent(&cmap, offset_fsb, imap.br_startoff - offset_fsb);
Christoph Hellwig740fd672021-11-29 11:21:57 +01001080 return xfs_bmbt_to_iomap(ip, iomap, &cmap, flags, 0);
Christoph Hellwigae36b532019-10-19 09:09:43 -07001081
Christoph Hellwig51446f52016-09-19 11:10:21 +10001082out_unlock:
1083 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1084 return error;
Christoph Hellwig68a9f5e2016-06-21 09:53:44 +10001085}
1086
1087static int
Christoph Hellwigf150b422019-10-19 09:09:46 -07001088xfs_buffered_write_iomap_end(
1089 struct inode *inode,
Christoph Hellwig68a9f5e2016-06-21 09:53:44 +10001090 loff_t offset,
1091 loff_t length,
Brian Fosterf65e6fa2017-03-08 09:58:08 -08001092 ssize_t written,
Christoph Hellwigf150b422019-10-19 09:09:46 -07001093 unsigned flags,
Brian Fosterf65e6fa2017-03-08 09:58:08 -08001094 struct iomap *iomap)
Christoph Hellwig68a9f5e2016-06-21 09:53:44 +10001095{
Christoph Hellwigf150b422019-10-19 09:09:46 -07001096 struct xfs_inode *ip = XFS_I(inode);
Christoph Hellwig68a9f5e2016-06-21 09:53:44 +10001097 struct xfs_mount *mp = ip->i_mount;
1098 xfs_fileoff_t start_fsb;
1099 xfs_fileoff_t end_fsb;
1100 int error = 0;
1101
Christoph Hellwigf150b422019-10-19 09:09:46 -07001102 if (iomap->type != IOMAP_DELALLOC)
1103 return 0;
1104
Brian Fosterf65e6fa2017-03-08 09:58:08 -08001105 /*
1106 * Behave as if the write failed if drop writes is enabled. Set the NEW
1107 * flag to force delalloc cleanup.
1108 */
Darrick J. Wongf8c47252017-06-20 17:54:48 -07001109 if (XFS_TEST_ERROR(false, mp, XFS_ERRTAG_DROP_WRITES)) {
Brian Fosterf65e6fa2017-03-08 09:58:08 -08001110 iomap->flags |= IOMAP_F_NEW;
Brian Foster9dbddd72017-02-13 22:48:17 -08001111 written = 0;
Brian Fosterf65e6fa2017-03-08 09:58:08 -08001112 }
Brian Foster9dbddd72017-02-13 22:48:17 -08001113
Brian Fosterfa7f1382017-02-16 17:19:12 -08001114 /*
1115 * start_fsb refers to the first unused block after a short write. If
1116 * nothing was written, round offset down to point at the first block in
1117 * the range.
1118 */
1119 if (unlikely(!written))
1120 start_fsb = XFS_B_TO_FSBT(mp, offset);
1121 else
1122 start_fsb = XFS_B_TO_FSB(mp, offset + written);
Christoph Hellwig68a9f5e2016-06-21 09:53:44 +10001123 end_fsb = XFS_B_TO_FSB(mp, offset + length);
1124
1125 /*
Brian Fosterf65e6fa2017-03-08 09:58:08 -08001126 * Trim delalloc blocks if they were allocated by this write and we
1127 * didn't manage to write the whole range.
Christoph Hellwig68a9f5e2016-06-21 09:53:44 +10001128 *
1129 * We don't need to care about racing delalloc as we hold i_mutex
1130 * across the reserve/allocate/unreserve calls. If there are delalloc
1131 * blocks in the range, they are ours.
1132 */
Brian Fosterf65e6fa2017-03-08 09:58:08 -08001133 if ((iomap->flags & IOMAP_F_NEW) && start_fsb < end_fsb) {
Brian Fosterfa7f1382017-02-16 17:19:12 -08001134 truncate_pagecache_range(VFS_I(ip), XFS_FSB_TO_B(mp, start_fsb),
1135 XFS_FSB_TO_B(mp, end_fsb) - 1);
1136
Christoph Hellwig68a9f5e2016-06-21 09:53:44 +10001137 error = xfs_bmap_punch_delalloc_range(ip, start_fsb,
1138 end_fsb - start_fsb);
Dave Chinner75c8c50f2021-08-18 18:46:53 -07001139 if (error && !xfs_is_shutdown(mp)) {
Christoph Hellwig68a9f5e2016-06-21 09:53:44 +10001140 xfs_alert(mp, "%s: unable to clean up ino %lld",
1141 __func__, ip->i_ino);
1142 return error;
1143 }
1144 }
1145
1146 return 0;
1147}
1148
Christoph Hellwigf150b422019-10-19 09:09:46 -07001149const struct iomap_ops xfs_buffered_write_iomap_ops = {
1150 .iomap_begin = xfs_buffered_write_iomap_begin,
1151 .iomap_end = xfs_buffered_write_iomap_end,
Christoph Hellwig68a9f5e2016-06-21 09:53:44 +10001152};
Christoph Hellwig1d4795e2016-08-17 08:45:30 +10001153
1154static int
Christoph Hellwig690c2a32019-10-19 09:09:45 -07001155xfs_read_iomap_begin(
1156 struct inode *inode,
1157 loff_t offset,
1158 loff_t length,
1159 unsigned flags,
1160 struct iomap *iomap,
1161 struct iomap *srcmap)
1162{
1163 struct xfs_inode *ip = XFS_I(inode);
1164 struct xfs_mount *mp = ip->i_mount;
1165 struct xfs_bmbt_irec imap;
1166 xfs_fileoff_t offset_fsb = XFS_B_TO_FSBT(mp, offset);
1167 xfs_fileoff_t end_fsb = xfs_iomap_end_fsb(mp, offset, length);
1168 int nimaps = 1, error = 0;
1169 bool shared = false;
1170 unsigned lockmode;
1171
1172 ASSERT(!(flags & (IOMAP_WRITE | IOMAP_ZERO)));
1173
Dave Chinner75c8c50f2021-08-18 18:46:53 -07001174 if (xfs_is_shutdown(mp))
Christoph Hellwig690c2a32019-10-19 09:09:45 -07001175 return -EIO;
1176
1177 error = xfs_ilock_for_iomap(ip, flags, &lockmode);
1178 if (error)
1179 return error;
1180 error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb, &imap,
1181 &nimaps, 0);
1182 if (!error && (flags & IOMAP_REPORT))
1183 error = xfs_reflink_trim_around_shared(ip, &imap, &shared);
1184 xfs_iunlock(ip, lockmode);
1185
1186 if (error)
1187 return error;
1188 trace_xfs_iomap_found(ip, offset, length, XFS_DATA_FORK, &imap);
Christoph Hellwig740fd672021-11-29 11:21:57 +01001189 return xfs_bmbt_to_iomap(ip, iomap, &imap, flags,
1190 shared ? IOMAP_F_SHARED : 0);
Christoph Hellwig690c2a32019-10-19 09:09:45 -07001191}
1192
1193const struct iomap_ops xfs_read_iomap_ops = {
1194 .iomap_begin = xfs_read_iomap_begin,
1195};
1196
1197static int
Christoph Hellwig60271ab72019-02-18 09:38:46 -08001198xfs_seek_iomap_begin(
1199 struct inode *inode,
1200 loff_t offset,
1201 loff_t length,
1202 unsigned flags,
Goldwyn Rodriguesc039b992019-10-18 16:44:10 -07001203 struct iomap *iomap,
1204 struct iomap *srcmap)
Christoph Hellwig60271ab72019-02-18 09:38:46 -08001205{
1206 struct xfs_inode *ip = XFS_I(inode);
1207 struct xfs_mount *mp = ip->i_mount;
1208 xfs_fileoff_t offset_fsb = XFS_B_TO_FSBT(mp, offset);
1209 xfs_fileoff_t end_fsb = XFS_B_TO_FSB(mp, offset + length);
1210 xfs_fileoff_t cow_fsb = NULLFILEOFF, data_fsb = NULLFILEOFF;
1211 struct xfs_iext_cursor icur;
1212 struct xfs_bmbt_irec imap, cmap;
1213 int error = 0;
1214 unsigned lockmode;
1215
Dave Chinner75c8c50f2021-08-18 18:46:53 -07001216 if (xfs_is_shutdown(mp))
Christoph Hellwig60271ab72019-02-18 09:38:46 -08001217 return -EIO;
1218
1219 lockmode = xfs_ilock_data_map_shared(ip);
Christoph Hellwig862a8042021-04-13 11:15:09 -07001220 error = xfs_iread_extents(NULL, ip, XFS_DATA_FORK);
1221 if (error)
1222 goto out_unlock;
Christoph Hellwig60271ab72019-02-18 09:38:46 -08001223
1224 if (xfs_iext_lookup_extent(ip, &ip->i_df, offset_fsb, &icur, &imap)) {
1225 /*
1226 * If we found a data extent we are done.
1227 */
1228 if (imap.br_startoff <= offset_fsb)
1229 goto done;
1230 data_fsb = imap.br_startoff;
1231 } else {
1232 /*
1233 * Fake a hole until the end of the file.
1234 */
Christoph Hellwig43568222019-10-19 09:09:44 -07001235 data_fsb = xfs_iomap_end_fsb(mp, offset, length);
Christoph Hellwig60271ab72019-02-18 09:38:46 -08001236 }
1237
1238 /*
1239 * If a COW fork extent covers the hole, report it - capped to the next
1240 * data fork extent:
1241 */
1242 if (xfs_inode_has_cow_data(ip) &&
1243 xfs_iext_lookup_extent(ip, ip->i_cowfp, offset_fsb, &icur, &cmap))
1244 cow_fsb = cmap.br_startoff;
1245 if (cow_fsb != NULLFILEOFF && cow_fsb <= offset_fsb) {
1246 if (data_fsb < cow_fsb + cmap.br_blockcount)
1247 end_fsb = min(end_fsb, data_fsb);
1248 xfs_trim_extent(&cmap, offset_fsb, end_fsb);
Christoph Hellwig740fd672021-11-29 11:21:57 +01001249 error = xfs_bmbt_to_iomap(ip, iomap, &cmap, flags,
1250 IOMAP_F_SHARED);
Christoph Hellwig60271ab72019-02-18 09:38:46 -08001251 /*
1252 * This is a COW extent, so we must probe the page cache
1253 * because there could be dirty page cache being backed
1254 * by this extent.
1255 */
1256 iomap->type = IOMAP_UNWRITTEN;
1257 goto out_unlock;
1258 }
1259
1260 /*
1261 * Else report a hole, capped to the next found data or COW extent.
1262 */
1263 if (cow_fsb != NULLFILEOFF && cow_fsb < data_fsb)
1264 imap.br_blockcount = cow_fsb - offset_fsb;
1265 else
1266 imap.br_blockcount = data_fsb - offset_fsb;
1267 imap.br_startoff = offset_fsb;
1268 imap.br_startblock = HOLESTARTBLOCK;
1269 imap.br_state = XFS_EXT_NORM;
1270done:
1271 xfs_trim_extent(&imap, offset_fsb, end_fsb);
Christoph Hellwig740fd672021-11-29 11:21:57 +01001272 error = xfs_bmbt_to_iomap(ip, iomap, &imap, flags, 0);
Christoph Hellwig60271ab72019-02-18 09:38:46 -08001273out_unlock:
1274 xfs_iunlock(ip, lockmode);
1275 return error;
1276}
1277
1278const struct iomap_ops xfs_seek_iomap_ops = {
1279 .iomap_begin = xfs_seek_iomap_begin,
1280};
1281
1282static int
Christoph Hellwig1d4795e2016-08-17 08:45:30 +10001283xfs_xattr_iomap_begin(
1284 struct inode *inode,
1285 loff_t offset,
1286 loff_t length,
1287 unsigned flags,
Goldwyn Rodriguesc039b992019-10-18 16:44:10 -07001288 struct iomap *iomap,
1289 struct iomap *srcmap)
Christoph Hellwig1d4795e2016-08-17 08:45:30 +10001290{
1291 struct xfs_inode *ip = XFS_I(inode);
1292 struct xfs_mount *mp = ip->i_mount;
1293 xfs_fileoff_t offset_fsb = XFS_B_TO_FSBT(mp, offset);
1294 xfs_fileoff_t end_fsb = XFS_B_TO_FSB(mp, offset + length);
1295 struct xfs_bmbt_irec imap;
1296 int nimaps = 1, error = 0;
1297 unsigned lockmode;
1298
Dave Chinner75c8c50f2021-08-18 18:46:53 -07001299 if (xfs_is_shutdown(mp))
Christoph Hellwig1d4795e2016-08-17 08:45:30 +10001300 return -EIO;
1301
Darrick J. Wong84358536d2017-04-06 16:00:39 -07001302 lockmode = xfs_ilock_attr_map_shared(ip);
Christoph Hellwig1d4795e2016-08-17 08:45:30 +10001303
1304 /* if there are no attribute fork or extents, return ENOENT */
Christoph Hellwigdaf83962020-05-18 10:27:22 -07001305 if (!XFS_IFORK_Q(ip) || !ip->i_afp->if_nextents) {
Christoph Hellwig1d4795e2016-08-17 08:45:30 +10001306 error = -ENOENT;
1307 goto out_unlock;
1308 }
1309
Christoph Hellwigf7e67b22020-05-18 10:28:05 -07001310 ASSERT(ip->i_afp->if_format != XFS_DINODE_FMT_LOCAL);
Christoph Hellwig1d4795e2016-08-17 08:45:30 +10001311 error = xfs_bmapi_read(ip, offset_fsb, end_fsb - offset_fsb, &imap,
Darrick J. Wongb7e0b6f2017-12-06 16:13:35 -08001312 &nimaps, XFS_BMAPI_ATTRFORK);
Christoph Hellwig1d4795e2016-08-17 08:45:30 +10001313out_unlock:
1314 xfs_iunlock(ip, lockmode);
1315
Christoph Hellwig16be1432019-02-18 09:38:46 -08001316 if (error)
1317 return error;
1318 ASSERT(nimaps);
Christoph Hellwig740fd672021-11-29 11:21:57 +01001319 return xfs_bmbt_to_iomap(ip, iomap, &imap, flags, 0);
Christoph Hellwig1d4795e2016-08-17 08:45:30 +10001320}
1321
Christoph Hellwig8ff6daa2017-01-27 23:20:26 -08001322const struct iomap_ops xfs_xattr_iomap_ops = {
Christoph Hellwig1d4795e2016-08-17 08:45:30 +10001323 .iomap_begin = xfs_xattr_iomap_begin,
1324};
Shiyang Ruanf1ba5fa2021-11-29 11:21:49 +01001325
1326int
1327xfs_zero_range(
1328 struct xfs_inode *ip,
1329 loff_t pos,
1330 loff_t len,
1331 bool *did_zero)
1332{
1333 struct inode *inode = VFS_I(ip);
1334
Christoph Hellwigc6f40462021-11-29 11:21:52 +01001335 if (IS_DAX(inode))
1336 return dax_zero_range(inode, pos, len, did_zero,
Christoph Hellwiga50f6ab2021-11-29 11:21:56 +01001337 &xfs_direct_write_iomap_ops);
Shiyang Ruanf1ba5fa2021-11-29 11:21:49 +01001338 return iomap_zero_range(inode, pos, len, did_zero,
1339 &xfs_buffered_write_iomap_ops);
1340}
1341
1342int
1343xfs_truncate_page(
1344 struct xfs_inode *ip,
1345 loff_t pos,
1346 bool *did_zero)
1347{
1348 struct inode *inode = VFS_I(ip);
1349
Christoph Hellwigc6f40462021-11-29 11:21:52 +01001350 if (IS_DAX(inode))
1351 return dax_truncate_page(inode, pos, did_zero,
Christoph Hellwiga50f6ab2021-11-29 11:21:56 +01001352 &xfs_direct_write_iomap_ops);
Shiyang Ruanf1ba5fa2021-11-29 11:21:49 +01001353 return iomap_truncate_page(inode, pos, did_zero,
1354 &xfs_buffered_write_iomap_ops);
1355}