blob: 2f3719461cbd70bdddccb9320ad8bff368c6a5ef [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Christoph Hellwig3b3dce02016-06-21 09:52:47 +100018#include <linux/iomap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_fs.h"
Dave Chinner70a9883c2013-10-23 10:36:05 +110021#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110022#include "xfs_format.h"
23#include "xfs_log_format.h"
24#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110027#include "xfs_btree.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110028#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100030#include "xfs_bmap_util.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_error.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110032#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_trans_space.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_iomap.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000035#include "xfs_trace.h"
Brian Foster27b52862012-11-06 09:50:38 -050036#include "xfs_icache.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110037#include "xfs_quota.h"
Brian Foster76a42022013-03-18 10:51:47 -040038#include "xfs_dquot_item.h"
39#include "xfs_dquot.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#define XFS_WRITEIO_ALIGN(mp,off) (((off) >> mp->m_writeio_log) \
43 << mp->m_writeio_log)
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define XFS_WRITE_IMAPS XFS_BMAP_MAX_NMAP
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046STATIC int
Nathan Scottdd9f4382006-01-11 15:28:28 +110047xfs_iomap_eof_align_last_fsb(
48 xfs_mount_t *mp,
Lachlan McIlroy541d7d32007-10-11 17:34:33 +100049 xfs_inode_t *ip,
Nathan Scottdd9f4382006-01-11 15:28:28 +110050 xfs_extlen_t extsize,
51 xfs_fileoff_t *last_fsb)
52{
Christoph Hellwigbf322d92011-12-18 20:00:05 +000053 xfs_extlen_t align = 0;
Nathan Scottdd9f4382006-01-11 15:28:28 +110054 int eof, error;
55
Christoph Hellwigbf322d92011-12-18 20:00:05 +000056 if (!XFS_IS_REALTIME_INODE(ip)) {
57 /*
58 * Round up the allocation request to a stripe unit
59 * (m_dalign) boundary if the file size is >= stripe unit
60 * size, and we are allocating past the allocation eof.
61 *
62 * If mounted with the "-o swalloc" option the alignment is
63 * increased from the strip unit size to the stripe width.
64 */
65 if (mp->m_swidth && (mp->m_flags & XFS_MOUNT_SWALLOC))
66 align = mp->m_swidth;
67 else if (mp->m_dalign)
68 align = mp->m_dalign;
69
Peter Watkins76b57302014-12-04 09:30:51 +110070 if (align && XFS_ISIZE(ip) < XFS_FSB_TO_B(mp, align))
71 align = 0;
Christoph Hellwigbf322d92011-12-18 20:00:05 +000072 }
Nathan Scottdd9f4382006-01-11 15:28:28 +110073
74 /*
75 * Always round up the allocation request to an extent boundary
76 * (when file on a real-time subvolume or has di_extsize hint).
77 */
78 if (extsize) {
Peter Watkins76b57302014-12-04 09:30:51 +110079 if (align)
80 align = roundup_64(align, extsize);
Nathan Scottdd9f4382006-01-11 15:28:28 +110081 else
82 align = extsize;
Nathan Scottdd9f4382006-01-11 15:28:28 +110083 }
84
Peter Watkins76b57302014-12-04 09:30:51 +110085 if (align) {
86 xfs_fileoff_t new_last_fsb = roundup_64(*last_fsb, align);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +100087 error = xfs_bmap_eof(ip, new_last_fsb, XFS_DATA_FORK, &eof);
Nathan Scottdd9f4382006-01-11 15:28:28 +110088 if (error)
89 return error;
90 if (eof)
91 *last_fsb = new_last_fsb;
92 }
93 return 0;
94}
95
96STATIC int
Dave Chinner6d4a8ec2011-03-07 10:06:35 +110097xfs_alert_fsblock_zero(
Nathan Scott572d95f2006-09-28 11:03:20 +100098 xfs_inode_t *ip,
99 xfs_bmbt_irec_t *imap)
100{
Dave Chinner6a19d932011-03-07 10:02:35 +1100101 xfs_alert_tag(ip->i_mount, XFS_PTAG_FSBLOCK_ZERO,
Nathan Scott572d95f2006-09-28 11:03:20 +1000102 "Access to block zero in inode %llu "
103 "start_block: %llx start_off: %llx "
Eric Sandeen08e96e12013-10-11 20:59:05 -0500104 "blkcnt: %llx extent-state: %x",
Nathan Scott572d95f2006-09-28 11:03:20 +1000105 (unsigned long long)ip->i_ino,
106 (unsigned long long)imap->br_startblock,
107 (unsigned long long)imap->br_startoff,
108 (unsigned long long)imap->br_blockcount,
109 imap->br_state);
Dave Chinner24513372014-06-25 14:58:08 +1000110 return -EFSCORRUPTED;
Nathan Scott572d95f2006-09-28 11:03:20 +1000111}
112
Christoph Hellwiga206c812010-12-10 08:42:20 +0000113int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114xfs_iomap_write_direct(
115 xfs_inode_t *ip,
Nathan Scottf403b7f2005-05-05 13:33:40 -0700116 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 size_t count,
Christoph Hellwig30704512010-06-24 11:42:19 +1000118 xfs_bmbt_irec_t *imap,
Christoph Hellwig405f8042010-12-10 08:42:19 +0000119 int nmaps)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
121 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 xfs_fileoff_t offset_fsb;
123 xfs_fileoff_t last_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100124 xfs_filblks_t count_fsb, resaligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 xfs_fsblock_t firstfsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100126 xfs_extlen_t extsz, temp;
Eric Sandeen0116d932005-11-02 15:00:01 +1100127 int nimaps;
Nathan Scott06d10dd2005-06-21 15:48:47 +1000128 int quota_flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 int rt;
130 xfs_trans_t *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 xfs_bmap_free_t free_list;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100132 uint qblocks, resblks, resrtextents;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100133 int error;
Brian Foster009c6e82015-10-12 15:34:20 +1100134 int lockmode;
Dave Chinner1ca19152015-11-03 12:37:00 +1100135 int bmapi_flags = XFS_BMAPI_PREALLOC;
Christoph Hellwig253f4912016-04-06 09:19:55 +1000136 uint tflags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Nathan Scottdd9f4382006-01-11 15:28:28 +1100138 rt = XFS_IS_REALTIME_INODE(ip);
David Chinner957d0eb2007-06-18 16:50:37 +1000139 extsz = xfs_get_extsz_hint(ip);
Brian Foster009c6e82015-10-12 15:34:20 +1100140 lockmode = XFS_ILOCK_SHARED; /* locked by caller */
141
142 ASSERT(xfs_isilocked(ip, lockmode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
David Chinner957d0eb2007-06-18 16:50:37 +1000144 offset_fsb = XFS_B_TO_FSBT(mp, offset);
145 last_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)(offset + count)));
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000146 if ((offset + count) > XFS_ISIZE(ip)) {
Brian Foster009c6e82015-10-12 15:34:20 +1100147 /*
148 * Assert that the in-core extent list is present since this can
149 * call xfs_iread_extents() and we only have the ilock shared.
150 * This should be safe because the lock was held around a bmapi
151 * call in the caller and we only need it to access the in-core
152 * list.
153 */
154 ASSERT(XFS_IFORK_PTR(ip, XFS_DATA_FORK)->if_flags &
155 XFS_IFEXTENTS);
Lachlan McIlroy9f6c92b2008-12-22 17:56:49 +1100156 error = xfs_iomap_eof_align_last_fsb(mp, ip, extsz, &last_fsb);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100157 if (error)
Brian Foster009c6e82015-10-12 15:34:20 +1100158 goto out_unlock;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100159 } else {
Christoph Hellwig405f8042010-12-10 08:42:19 +0000160 if (nmaps && (imap->br_startblock == HOLESTARTBLOCK))
Nathan Scottdd9f4382006-01-11 15:28:28 +1100161 last_fsb = MIN(last_fsb, (xfs_fileoff_t)
Christoph Hellwig30704512010-06-24 11:42:19 +1000162 imap->br_blockcount +
163 imap->br_startoff);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100164 }
165 count_fsb = last_fsb - offset_fsb;
166 ASSERT(count_fsb > 0);
167
168 resaligned = count_fsb;
169 if (unlikely(extsz)) {
170 if ((temp = do_mod(offset_fsb, extsz)))
171 resaligned += temp;
172 if ((temp = do_mod(resaligned, extsz)))
173 resaligned += extsz - temp;
174 }
175
176 if (unlikely(rt)) {
177 resrtextents = qblocks = resaligned;
178 resrtextents /= mp->m_sb.sb_rextsize;
David Chinner84e1e992007-06-18 16:50:27 +1000179 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
180 quota_flag = XFS_QMOPT_RES_RTBLKS;
181 } else {
182 resrtextents = 0;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100183 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resaligned);
David Chinner84e1e992007-06-18 16:50:27 +1000184 quota_flag = XFS_QMOPT_RES_REGBLKS;
185 }
Nathan Scottdd9f4382006-01-11 15:28:28 +1100186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /*
Brian Foster009c6e82015-10-12 15:34:20 +1100188 * Drop the shared lock acquired by the caller, attach the dquot if
189 * necessary and move on to transaction setup.
190 */
191 xfs_iunlock(ip, lockmode);
192 error = xfs_qm_dqattach(ip, 0);
193 if (error)
194 return error;
195
196 /*
Dave Chinner1ca19152015-11-03 12:37:00 +1100197 * For DAX, we do not allocate unwritten extents, but instead we zero
198 * the block before we commit the transaction. Ideally we'd like to do
199 * this outside the transaction context, but if we commit and then crash
200 * we may not have zeroed the blocks and this will be exposed on
201 * recovery of the allocation. Hence we must zero before commit.
Dave Chinner3b0fe472016-01-04 16:22:45 +1100202 *
Dave Chinner1ca19152015-11-03 12:37:00 +1100203 * Further, if we are mapping unwritten extents here, we need to zero
204 * and convert them to written so that we don't need an unwritten extent
205 * callback for DAX. This also means that we need to be able to dip into
Dave Chinner3b0fe472016-01-04 16:22:45 +1100206 * the reserve block pool for bmbt block allocation if there is no space
207 * left but we need to do unwritten extent conversion.
Dave Chinner1ca19152015-11-03 12:37:00 +1100208 */
209 if (IS_DAX(VFS_I(ip))) {
210 bmapi_flags = XFS_BMAPI_CONVERT | XFS_BMAPI_ZERO;
Dave Chinner3b0fe472016-01-04 16:22:45 +1100211 if (ISUNWRITTEN(imap)) {
Christoph Hellwig253f4912016-04-06 09:19:55 +1000212 tflags |= XFS_TRANS_RESERVE;
Dave Chinner3b0fe472016-01-04 16:22:45 +1100213 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0) << 1;
214 }
Dave Chinner1ca19152015-11-03 12:37:00 +1100215 }
Christoph Hellwig253f4912016-04-06 09:19:55 +1000216 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, resrtextents,
217 tflags, &tp);
218 if (error)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000219 return error;
Dave Chinner507630b2012-03-27 10:34:50 -0400220
Brian Foster009c6e82015-10-12 15:34:20 +1100221 lockmode = XFS_ILOCK_EXCL;
222 xfs_ilock(ip, lockmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Christoph Hellwig7d095252009-06-08 15:33:32 +0200224 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks, 0, quota_flag);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100225 if (error)
Dave Chinner507630b2012-03-27 10:34:50 -0400226 goto out_trans_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
Christoph Hellwigddc34152011-09-19 15:00:54 +0000228 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 /*
Christoph Hellwig30704512010-06-24 11:42:19 +1000231 * From this point onwards we overwrite the imap pointer that the
232 * caller gave to us.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600234 xfs_bmap_init(&free_list, &firstfsb);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000235 nimaps = 1;
Christoph Hellwigd531d912014-02-10 10:27:43 +1100236 error = xfs_bmapi_write(tp, ip, offset_fsb, count_fsb,
Dave Chinner264e89a2015-11-03 13:28:41 +1100237 bmapi_flags, &firstfsb, resblks, imap,
Brian Fosterdbd5c8c2015-10-12 16:04:13 +1100238 &nimaps, &free_list);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000239 if (error)
Dave Chinner507630b2012-03-27 10:34:50 -0400240 goto out_bmap_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
242 /*
Nathan Scott06d10dd2005-06-21 15:48:47 +1000243 * Complete the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 */
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100245 error = xfs_bmap_finish(&tp, &free_list, NULL);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000246 if (error)
Dave Chinner507630b2012-03-27 10:34:50 -0400247 goto out_bmap_cancel;
Dave Chinner1ca19152015-11-03 12:37:00 +1100248
Christoph Hellwig70393312015-06-04 13:48:08 +1000249 error = xfs_trans_commit(tp);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000250 if (error)
Dave Chinner507630b2012-03-27 10:34:50 -0400251 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
Nathan Scott06d10dd2005-06-21 15:48:47 +1000253 /*
254 * Copy any maps to caller's array and return any error.
255 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 if (nimaps == 0) {
Dave Chinner24513372014-06-25 14:58:08 +1000257 error = -ENOSPC;
Dave Chinner507630b2012-03-27 10:34:50 -0400258 goto out_unlock;
Nathan Scott572d95f2006-09-28 11:03:20 +1000259 }
260
Dave Chinner507630b2012-03-27 10:34:50 -0400261 if (!(imap->br_startblock || XFS_IS_REALTIME_INODE(ip)))
Dave Chinner6d4a8ec2011-03-07 10:06:35 +1100262 error = xfs_alert_fsblock_zero(ip, imap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
Dave Chinner507630b2012-03-27 10:34:50 -0400264out_unlock:
Brian Foster009c6e82015-10-12 15:34:20 +1100265 xfs_iunlock(ip, lockmode);
Dave Chinner507630b2012-03-27 10:34:50 -0400266 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Dave Chinner507630b2012-03-27 10:34:50 -0400268out_bmap_cancel:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 xfs_bmap_cancel(&free_list);
Dave Chinnerea562ed2012-05-08 20:48:53 +1000270 xfs_trans_unreserve_quota_nblks(tp, ip, (long)qblocks, 0, quota_flag);
Dave Chinner507630b2012-03-27 10:34:50 -0400271out_trans_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +1000272 xfs_trans_cancel(tp);
Dave Chinner507630b2012-03-27 10:34:50 -0400273 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274}
275
Nathan Scottdd9f4382006-01-11 15:28:28 +1100276/*
Dave Chinner8de2bf92009-04-06 18:49:12 +0200277 * If the caller is doing a write at the end of the file, then extend the
278 * allocation out to the file system's write iosize. We clean up any extra
279 * space left over when the file is closed in xfs_inactive().
Dave Chinner055388a2011-01-04 11:35:03 +1100280 *
281 * If we find we already have delalloc preallocation beyond EOF, don't do more
282 * preallocation as it it not needed.
Nathan Scottdd9f4382006-01-11 15:28:28 +1100283 */
284STATIC int
285xfs_iomap_eof_want_preallocate(
286 xfs_mount_t *mp,
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000287 xfs_inode_t *ip,
Nathan Scottdd9f4382006-01-11 15:28:28 +1100288 xfs_off_t offset,
289 size_t count,
Nathan Scottdd9f4382006-01-11 15:28:28 +1100290 xfs_bmbt_irec_t *imap,
291 int nimaps,
292 int *prealloc)
293{
294 xfs_fileoff_t start_fsb;
295 xfs_filblks_t count_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100296 int n, error, imaps;
Dave Chinner055388a2011-01-04 11:35:03 +1100297 int found_delalloc = 0;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100298
299 *prealloc = 0;
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000300 if (offset + count <= XFS_ISIZE(ip))
Nathan Scottdd9f4382006-01-11 15:28:28 +1100301 return 0;
302
303 /*
Dave Chinner133eeb12013-06-27 16:04:48 +1000304 * If the file is smaller than the minimum prealloc and we are using
305 * dynamic preallocation, don't do any preallocation at all as it is
306 * likely this is the only write to the file that is going to be done.
307 */
308 if (!(mp->m_flags & XFS_MOUNT_DFLT_IOSIZE) &&
309 XFS_ISIZE(ip) < XFS_FSB_TO_B(mp, mp->m_writeio_blocks))
310 return 0;
311
312 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +1100313 * If there are any real blocks past eof, then don't
314 * do any speculative allocation.
315 */
316 start_fsb = XFS_B_TO_FSBT(mp, ((xfs_ufsize_t)(offset + count - 1)));
Dave Chinner32972382012-06-08 15:44:54 +1000317 count_fsb = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100318 while (count_fsb > 0) {
319 imaps = nimaps;
Dave Chinner5c8ed202011-09-18 20:40:45 +0000320 error = xfs_bmapi_read(ip, start_fsb, count_fsb, imap, &imaps,
321 0);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100322 if (error)
323 return error;
324 for (n = 0; n < imaps; n++) {
325 if ((imap[n].br_startblock != HOLESTARTBLOCK) &&
326 (imap[n].br_startblock != DELAYSTARTBLOCK))
327 return 0;
328 start_fsb += imap[n].br_blockcount;
329 count_fsb -= imap[n].br_blockcount;
Dave Chinner055388a2011-01-04 11:35:03 +1100330
331 if (imap[n].br_startblock == DELAYSTARTBLOCK)
332 found_delalloc = 1;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100333 }
334 }
Dave Chinner055388a2011-01-04 11:35:03 +1100335 if (!found_delalloc)
336 *prealloc = 1;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100337 return 0;
338}
339
Dave Chinner055388a2011-01-04 11:35:03 +1100340/*
Dave Chinnera1e16c22013-02-11 16:05:01 +1100341 * Determine the initial size of the preallocation. We are beyond the current
342 * EOF here, but we need to take into account whether this is a sparse write or
343 * an extending write when determining the preallocation size. Hence we need to
344 * look up the extent that ends at the current write offset and use the result
345 * to determine the preallocation size.
346 *
347 * If the extent is a hole, then preallocation is essentially disabled.
348 * Otherwise we take the size of the preceeding data extent as the basis for the
349 * preallocation size. If the size of the extent is greater than half the
350 * maximum extent length, then use the current offset as the basis. This ensures
351 * that for large files the preallocation size always extends to MAXEXTLEN
352 * rather than falling short due to things like stripe unit/width alignment of
353 * real extents.
354 */
Mark Tinguelye8108ce2013-02-24 13:04:37 -0600355STATIC xfs_fsblock_t
Dave Chinnera1e16c22013-02-11 16:05:01 +1100356xfs_iomap_eof_prealloc_initial_size(
357 struct xfs_mount *mp,
358 struct xfs_inode *ip,
359 xfs_off_t offset,
360 xfs_bmbt_irec_t *imap,
361 int nimaps)
362{
363 xfs_fileoff_t start_fsb;
364 int imaps = 1;
365 int error;
366
367 ASSERT(nimaps >= imaps);
368
369 /* if we are using a specific prealloc size, return now */
370 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
371 return 0;
372
Dave Chinner133eeb12013-06-27 16:04:48 +1000373 /* If the file is small, then use the minimum prealloc */
374 if (XFS_ISIZE(ip) < XFS_FSB_TO_B(mp, mp->m_dalign))
375 return 0;
376
Dave Chinnera1e16c22013-02-11 16:05:01 +1100377 /*
378 * As we write multiple pages, the offset will always align to the
379 * start of a page and hence point to a hole at EOF. i.e. if the size is
380 * 4096 bytes, we only have one block at FSB 0, but XFS_B_TO_FSB(4096)
381 * will return FSB 1. Hence if there are blocks in the file, we want to
382 * point to the block prior to the EOF block and not the hole that maps
383 * directly at @offset.
384 */
385 start_fsb = XFS_B_TO_FSB(mp, offset);
386 if (start_fsb)
387 start_fsb--;
388 error = xfs_bmapi_read(ip, start_fsb, 1, imap, &imaps, XFS_BMAPI_ENTIRE);
389 if (error)
390 return 0;
391
392 ASSERT(imaps == 1);
393 if (imap[0].br_startblock == HOLESTARTBLOCK)
394 return 0;
395 if (imap[0].br_blockcount <= (MAXEXTLEN >> 1))
Brian Fostere114b5f2013-02-19 10:24:41 -0500396 return imap[0].br_blockcount << 1;
Dave Chinnera1e16c22013-02-11 16:05:01 +1100397 return XFS_B_TO_FSB(mp, offset);
398}
399
Brian Foster76a42022013-03-18 10:51:47 -0400400STATIC bool
401xfs_quota_need_throttle(
402 struct xfs_inode *ip,
403 int type,
404 xfs_fsblock_t alloc_blocks)
405{
406 struct xfs_dquot *dq = xfs_inode_dquot(ip, type);
407
408 if (!dq || !xfs_this_quota_on(ip->i_mount, type))
409 return false;
410
411 /* no hi watermark, no throttle */
412 if (!dq->q_prealloc_hi_wmark)
413 return false;
414
415 /* under the lo watermark, no throttle */
416 if (dq->q_res_bcount + alloc_blocks < dq->q_prealloc_lo_wmark)
417 return false;
418
419 return true;
420}
421
422STATIC void
423xfs_quota_calc_throttle(
424 struct xfs_inode *ip,
425 int type,
426 xfs_fsblock_t *qblocks,
Brian Fosterf0740512014-07-24 19:56:08 +1000427 int *qshift,
428 int64_t *qfreesp)
Brian Foster76a42022013-03-18 10:51:47 -0400429{
430 int64_t freesp;
431 int shift = 0;
432 struct xfs_dquot *dq = xfs_inode_dquot(ip, type);
433
Eric Sandeen5cca3f62014-10-02 09:27:09 +1000434 /* no dq, or over hi wmark, squash the prealloc completely */
435 if (!dq || dq->q_res_bcount >= dq->q_prealloc_hi_wmark) {
Brian Foster76a42022013-03-18 10:51:47 -0400436 *qblocks = 0;
Brian Fosterf0740512014-07-24 19:56:08 +1000437 *qfreesp = 0;
Brian Foster76a42022013-03-18 10:51:47 -0400438 return;
439 }
440
441 freesp = dq->q_prealloc_hi_wmark - dq->q_res_bcount;
442 if (freesp < dq->q_low_space[XFS_QLOWSP_5_PCNT]) {
443 shift = 2;
444 if (freesp < dq->q_low_space[XFS_QLOWSP_3_PCNT])
445 shift += 2;
446 if (freesp < dq->q_low_space[XFS_QLOWSP_1_PCNT])
447 shift += 2;
448 }
449
Brian Fosterf0740512014-07-24 19:56:08 +1000450 if (freesp < *qfreesp)
451 *qfreesp = freesp;
452
Brian Foster76a42022013-03-18 10:51:47 -0400453 /* only overwrite the throttle values if we are more aggressive */
454 if ((freesp >> shift) < (*qblocks >> *qshift)) {
455 *qblocks = freesp;
456 *qshift = shift;
457 }
458}
459
Dave Chinnera1e16c22013-02-11 16:05:01 +1100460/*
Dave Chinner055388a2011-01-04 11:35:03 +1100461 * If we don't have a user specified preallocation size, dynamically increase
462 * the preallocation size as the size of the file grows. Cap the maximum size
463 * at a single extent or less if the filesystem is near full. The closer the
464 * filesystem is to full, the smaller the maximum prealocation.
465 */
466STATIC xfs_fsblock_t
467xfs_iomap_prealloc_size(
468 struct xfs_mount *mp,
Dave Chinnera1e16c22013-02-11 16:05:01 +1100469 struct xfs_inode *ip,
470 xfs_off_t offset,
471 struct xfs_bmbt_irec *imap,
472 int nimaps)
Dave Chinner055388a2011-01-04 11:35:03 +1100473{
474 xfs_fsblock_t alloc_blocks = 0;
Brian Foster3c58b5f2013-03-18 10:51:43 -0400475 int shift = 0;
476 int64_t freesp;
Brian Foster76a42022013-03-18 10:51:47 -0400477 xfs_fsblock_t qblocks;
478 int qshift = 0;
Dave Chinner055388a2011-01-04 11:35:03 +1100479
Dave Chinnera1e16c22013-02-11 16:05:01 +1100480 alloc_blocks = xfs_iomap_eof_prealloc_initial_size(mp, ip, offset,
481 imap, nimaps);
Brian Foster3c58b5f2013-03-18 10:51:43 -0400482 if (!alloc_blocks)
483 goto check_writeio;
Brian Foster76a42022013-03-18 10:51:47 -0400484 qblocks = alloc_blocks;
Dave Chinner055388a2011-01-04 11:35:03 +1100485
Brian Fosterc9bdbdc2013-03-18 10:51:44 -0400486 /*
487 * MAXEXTLEN is not a power of two value but we round the prealloc down
488 * to the nearest power of two value after throttling. To prevent the
489 * round down from unconditionally reducing the maximum supported prealloc
490 * size, we round up first, apply appropriate throttling, round down and
491 * cap the value to MAXEXTLEN.
492 */
493 alloc_blocks = XFS_FILEOFF_MIN(roundup_pow_of_two(MAXEXTLEN),
494 alloc_blocks);
Dave Chinner055388a2011-01-04 11:35:03 +1100495
Dave Chinner0d485ad2015-02-23 21:22:03 +1100496 freesp = percpu_counter_read_positive(&mp->m_fdblocks);
Brian Foster3c58b5f2013-03-18 10:51:43 -0400497 if (freesp < mp->m_low_space[XFS_LOWSP_5_PCNT]) {
498 shift = 2;
499 if (freesp < mp->m_low_space[XFS_LOWSP_4_PCNT])
500 shift++;
501 if (freesp < mp->m_low_space[XFS_LOWSP_3_PCNT])
502 shift++;
503 if (freesp < mp->m_low_space[XFS_LOWSP_2_PCNT])
504 shift++;
505 if (freesp < mp->m_low_space[XFS_LOWSP_1_PCNT])
506 shift++;
Dave Chinner055388a2011-01-04 11:35:03 +1100507 }
Brian Foster76a42022013-03-18 10:51:47 -0400508
509 /*
Brian Fosterf0740512014-07-24 19:56:08 +1000510 * Check each quota to cap the prealloc size, provide a shift value to
511 * throttle with and adjust amount of available space.
Brian Foster76a42022013-03-18 10:51:47 -0400512 */
513 if (xfs_quota_need_throttle(ip, XFS_DQ_USER, alloc_blocks))
Brian Fosterf0740512014-07-24 19:56:08 +1000514 xfs_quota_calc_throttle(ip, XFS_DQ_USER, &qblocks, &qshift,
515 &freesp);
Brian Foster76a42022013-03-18 10:51:47 -0400516 if (xfs_quota_need_throttle(ip, XFS_DQ_GROUP, alloc_blocks))
Brian Fosterf0740512014-07-24 19:56:08 +1000517 xfs_quota_calc_throttle(ip, XFS_DQ_GROUP, &qblocks, &qshift,
518 &freesp);
Brian Foster76a42022013-03-18 10:51:47 -0400519 if (xfs_quota_need_throttle(ip, XFS_DQ_PROJ, alloc_blocks))
Brian Fosterf0740512014-07-24 19:56:08 +1000520 xfs_quota_calc_throttle(ip, XFS_DQ_PROJ, &qblocks, &qshift,
521 &freesp);
Brian Foster76a42022013-03-18 10:51:47 -0400522
523 /*
524 * The final prealloc size is set to the minimum of free space available
525 * in each of the quotas and the overall filesystem.
526 *
527 * The shift throttle value is set to the maximum value as determined by
528 * the global low free space values and per-quota low free space values.
529 */
530 alloc_blocks = MIN(alloc_blocks, qblocks);
531 shift = MAX(shift, qshift);
532
Brian Foster3c58b5f2013-03-18 10:51:43 -0400533 if (shift)
534 alloc_blocks >>= shift;
Brian Fosterc9bdbdc2013-03-18 10:51:44 -0400535 /*
536 * rounddown_pow_of_two() returns an undefined result if we pass in
537 * alloc_blocks = 0.
538 */
539 if (alloc_blocks)
540 alloc_blocks = rounddown_pow_of_two(alloc_blocks);
541 if (alloc_blocks > MAXEXTLEN)
542 alloc_blocks = MAXEXTLEN;
Dave Chinner055388a2011-01-04 11:35:03 +1100543
Brian Foster3c58b5f2013-03-18 10:51:43 -0400544 /*
545 * If we are still trying to allocate more space than is
546 * available, squash the prealloc hard. This can happen if we
547 * have a large file on a small filesystem and the above
548 * lowspace thresholds are smaller than MAXEXTLEN.
549 */
550 while (alloc_blocks && alloc_blocks >= freesp)
551 alloc_blocks >>= 4;
552
553check_writeio:
Dave Chinner055388a2011-01-04 11:35:03 +1100554 if (alloc_blocks < mp->m_writeio_blocks)
555 alloc_blocks = mp->m_writeio_blocks;
556
Brian Foster19cb7e32013-03-18 10:51:48 -0400557 trace_xfs_iomap_prealloc_size(ip, alloc_blocks, shift,
558 mp->m_writeio_blocks);
559
Dave Chinner055388a2011-01-04 11:35:03 +1100560 return alloc_blocks;
561}
562
Christoph Hellwiga206c812010-12-10 08:42:20 +0000563int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564xfs_iomap_write_delay(
565 xfs_inode_t *ip,
Nathan Scottf403b7f2005-05-05 13:33:40 -0700566 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 size_t count,
Christoph Hellwig405f8042010-12-10 08:42:19 +0000568 xfs_bmbt_irec_t *ret_imap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
570 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 xfs_fileoff_t offset_fsb;
572 xfs_fileoff_t last_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100573 xfs_off_t aligned_offset;
574 xfs_fileoff_t ioalign;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100575 xfs_extlen_t extsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 int nimaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 xfs_bmbt_irec_t imap[XFS_WRITE_IMAPS];
Dave Chinner9aa05002012-10-08 21:56:04 +1100578 int prealloc;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100579 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000581 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 /*
584 * Make sure that the dquots are there. This doesn't hold
585 * the ilock across a disk read.
586 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200587 error = xfs_qm_dqattach_locked(ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (error)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000589 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
David Chinner957d0eb2007-06-18 16:50:37 +1000591 extsz = xfs_get_extsz_hint(ip);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100592 offset_fsb = XFS_B_TO_FSBT(mp, offset);
593
Lachlan McIlroy9f6c92b2008-12-22 17:56:49 +1100594 error = xfs_iomap_eof_want_preallocate(mp, ip, offset, count,
Christoph Hellwig405f8042010-12-10 08:42:19 +0000595 imap, XFS_WRITE_IMAPS, &prealloc);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100596 if (error)
597 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Dave Chinner8de2bf92009-04-06 18:49:12 +0200599retry:
Nathan Scottdd9f4382006-01-11 15:28:28 +1100600 if (prealloc) {
Dave Chinnera1e16c22013-02-11 16:05:01 +1100601 xfs_fsblock_t alloc_blocks;
602
603 alloc_blocks = xfs_iomap_prealloc_size(mp, ip, offset, imap,
604 XFS_WRITE_IMAPS);
Dave Chinner055388a2011-01-04 11:35:03 +1100605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 aligned_offset = XFS_WRITEIO_ALIGN(mp, (offset + count - 1));
607 ioalign = XFS_B_TO_FSBT(mp, aligned_offset);
Dave Chinner055388a2011-01-04 11:35:03 +1100608 last_fsb = ioalign + alloc_blocks;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100609 } else {
610 last_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)(offset + count)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
Nathan Scottdd9f4382006-01-11 15:28:28 +1100612
613 if (prealloc || extsz) {
Lachlan McIlroy9f6c92b2008-12-22 17:56:49 +1100614 error = xfs_iomap_eof_align_last_fsb(mp, ip, extsz, &last_fsb);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100615 if (error)
616 return error;
617 }
618
Dave Chinner3ed91162012-04-29 22:43:19 +1000619 /*
620 * Make sure preallocation does not create extents beyond the range we
621 * actually support in this filesystem.
622 */
Dave Chinnerd2c28192012-06-08 15:44:53 +1000623 if (last_fsb > XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes))
624 last_fsb = XFS_B_TO_FSB(mp, mp->m_super->s_maxbytes);
Dave Chinner3ed91162012-04-29 22:43:19 +1000625
626 ASSERT(last_fsb > offset_fsb);
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 nimaps = XFS_WRITE_IMAPS;
Christoph Hellwig44032802011-09-18 20:40:48 +0000629 error = xfs_bmapi_delay(ip, offset_fsb, last_fsb - offset_fsb,
630 imap, &nimaps, XFS_BMAPI_ENTIRE);
Dave Chinner055388a2011-01-04 11:35:03 +1100631 switch (error) {
632 case 0:
Dave Chinner24513372014-06-25 14:58:08 +1000633 case -ENOSPC:
634 case -EDQUOT:
Dave Chinner055388a2011-01-04 11:35:03 +1100635 break;
636 default:
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000637 return error;
Dave Chinner055388a2011-01-04 11:35:03 +1100638 }
Nathan Scottdd9f4382006-01-11 15:28:28 +1100639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 /*
Dave Chinner9aa05002012-10-08 21:56:04 +1100641 * If bmapi returned us nothing, we got either ENOSPC or EDQUOT. Retry
Dave Chinner055388a2011-01-04 11:35:03 +1100642 * without EOF preallocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 */
644 if (nimaps == 0) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000645 trace_xfs_delalloc_enospc(ip, offset, count);
Dave Chinner9aa05002012-10-08 21:56:04 +1100646 if (prealloc) {
647 prealloc = 0;
648 error = 0;
649 goto retry;
Dave Chinner055388a2011-01-04 11:35:03 +1100650 }
Dave Chinner24513372014-06-25 14:58:08 +1000651 return error ? error : -ENOSPC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653
David Chinner86c4d622008-04-29 12:53:21 +1000654 if (!(imap[0].br_startblock || XFS_IS_REALTIME_INODE(ip)))
Dave Chinner6d4a8ec2011-03-07 10:06:35 +1100655 return xfs_alert_fsblock_zero(ip, &imap[0]);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100656
Brian Foster27b52862012-11-06 09:50:38 -0500657 /*
658 * Tag the inode as speculatively preallocated so we can reclaim this
659 * space on demand, if necessary.
660 */
661 if (prealloc)
662 xfs_inode_set_eofblocks_tag(ip);
663
Nathan Scottdd9f4382006-01-11 15:28:28 +1100664 *ret_imap = imap[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return 0;
666}
667
668/*
669 * Pass in a delayed allocate extent, convert it to real extents;
670 * return to the caller the extent we create which maps on top of
671 * the originating callers request.
672 *
673 * Called without a lock on the inode.
David Chinnere4143a12007-11-23 16:29:11 +1100674 *
675 * We no longer bother to look at the incoming map - all we have to
676 * guarantee is that whatever we allocate fills the required range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 */
Christoph Hellwiga206c812010-12-10 08:42:20 +0000678int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679xfs_iomap_write_allocate(
680 xfs_inode_t *ip,
Nathan Scottf403b7f2005-05-05 13:33:40 -0700681 xfs_off_t offset,
Christoph Hellwig405f8042010-12-10 08:42:19 +0000682 xfs_bmbt_irec_t *imap)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
684 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 xfs_fileoff_t offset_fsb, last_block;
686 xfs_fileoff_t end_fsb, map_start_fsb;
687 xfs_fsblock_t first_block;
688 xfs_bmap_free_t free_list;
689 xfs_filblks_t count_fsb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 xfs_trans_t *tp;
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100691 int nimaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 int error = 0;
693 int nres;
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 /*
696 * Make sure that the dquots are there.
697 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200698 error = xfs_qm_dqattach(ip, 0);
699 if (error)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000700 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Nathan Scott24e17b52005-05-05 13:33:20 -0700702 offset_fsb = XFS_B_TO_FSBT(mp, offset);
Christoph Hellwig30704512010-06-24 11:42:19 +1000703 count_fsb = imap->br_blockcount;
704 map_start_fsb = imap->br_startoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100706 XFS_STATS_ADD(mp, xs_xstrat_bytes, XFS_FSB_TO_B(mp, count_fsb));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708 while (count_fsb != 0) {
709 /*
710 * Set up a transaction with which to allocate the
711 * backing store for the file. Do allocations in a
712 * loop until we get some space in the range we are
713 * interested in. The other space that might be allocated
714 * is in the delayed allocation extent on which we sit
715 * but before our buffer starts.
716 */
717
718 nimaps = 0;
719 while (nimaps == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 nres = XFS_EXTENTADD_SPACE_RES(mp, XFS_DATA_FORK);
Christoph Hellwig253f4912016-04-06 09:19:55 +1000721
722 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, nres,
723 0, XFS_TRANS_RESERVE, &tp);
724 if (error)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000725 return error;
Christoph Hellwig253f4912016-04-06 09:19:55 +1000726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +0000728 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Eric Sandeen9d87c312009-01-14 23:22:07 -0600730 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 /*
David Chinnere4143a12007-11-23 16:29:11 +1100733 * it is possible that the extents have changed since
734 * we did the read call as we dropped the ilock for a
735 * while. We have to be careful about truncates or hole
736 * punchs here - we are not allowed to allocate
737 * non-delalloc blocks here.
738 *
739 * The only protection against truncation is the pages
740 * for the range we are being asked to convert are
741 * locked and hence a truncate will block on them
742 * first.
743 *
744 * As a result, if we go beyond the range we really
745 * need and hit an delalloc extent boundary followed by
746 * a hole while we have excess blocks in the map, we
747 * will fill the hole incorrectly and overrun the
748 * transaction reservation.
749 *
750 * Using a single map prevents this as we are forced to
751 * check each map we look for overlap with the desired
752 * range and abort as soon as we find it. Also, given
753 * that we only return a single map, having one beyond
754 * what we can return is probably a bit silly.
755 *
756 * We also need to check that we don't go beyond EOF;
757 * this is a truncate optimisation as a truncate sets
758 * the new file size before block on the pages we
759 * currently have locked under writeback. Because they
760 * are about to be tossed, we don't need to write them
761 * back....
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 */
David Chinnere4143a12007-11-23 16:29:11 +1100763 nimaps = 1;
Christoph Hellwigce7ae1512011-12-18 20:00:11 +0000764 end_fsb = XFS_B_TO_FSB(mp, XFS_ISIZE(ip));
Eric Sandeen7fb2cd42014-04-14 18:58:05 +1000765 error = xfs_bmap_last_offset(ip, &last_block,
David Chinner7c9ef852008-04-10 12:21:59 +1000766 XFS_DATA_FORK);
767 if (error)
768 goto trans_cancel;
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 last_block = XFS_FILEOFF_MAX(last_block, end_fsb);
771 if ((map_start_fsb + count_fsb) > last_block) {
772 count_fsb = last_block - map_start_fsb;
773 if (count_fsb == 0) {
Dave Chinner24513372014-06-25 14:58:08 +1000774 error = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 goto trans_cancel;
776 }
777 }
778
Christoph Hellwig30704512010-06-24 11:42:19 +1000779 /*
Christoph Hellwig30704512010-06-24 11:42:19 +1000780 * From this point onwards we overwrite the imap
781 * pointer that the caller gave to us.
782 */
Dave Chinnerc0dc7822011-09-18 20:40:52 +0000783 error = xfs_bmapi_write(tp, ip, map_start_fsb,
Brian Fosterdbd5c8c2015-10-12 16:04:13 +1100784 count_fsb, 0, &first_block,
785 nres, imap, &nimaps,
786 &free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (error)
788 goto trans_cancel;
789
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100790 error = xfs_bmap_finish(&tp, &free_list, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 if (error)
792 goto trans_cancel;
793
Christoph Hellwig70393312015-06-04 13:48:08 +1000794 error = xfs_trans_commit(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 if (error)
796 goto error0;
797
798 xfs_iunlock(ip, XFS_ILOCK_EXCL);
799 }
800
801 /*
802 * See if we were able to allocate an extent that
803 * covers at least part of the callers request
804 */
Christoph Hellwig30704512010-06-24 11:42:19 +1000805 if (!(imap->br_startblock || XFS_IS_REALTIME_INODE(ip)))
Dave Chinner6d4a8ec2011-03-07 10:06:35 +1100806 return xfs_alert_fsblock_zero(ip, imap);
David Chinner86c4d622008-04-29 12:53:21 +1000807
Christoph Hellwig30704512010-06-24 11:42:19 +1000808 if ((offset_fsb >= imap->br_startoff) &&
809 (offset_fsb < (imap->br_startoff +
810 imap->br_blockcount))) {
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100811 XFS_STATS_INC(mp, xs_xstrat_quick);
David Chinnere4143a12007-11-23 16:29:11 +1100812 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
814
David Chinnere4143a12007-11-23 16:29:11 +1100815 /*
816 * So far we have not mapped the requested part of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 * file, just surrounding data, try again.
818 */
Christoph Hellwig30704512010-06-24 11:42:19 +1000819 count_fsb -= imap->br_blockcount;
820 map_start_fsb = imap->br_startoff + imap->br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
822
823trans_cancel:
824 xfs_bmap_cancel(&free_list);
Christoph Hellwig4906e212015-06-04 13:47:56 +1000825 xfs_trans_cancel(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826error0:
827 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000828 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829}
830
831int
832xfs_iomap_write_unwritten(
833 xfs_inode_t *ip,
Nathan Scottf403b7f2005-05-05 13:33:40 -0700834 xfs_off_t offset,
Christoph Hellwigd32057f2015-01-09 10:48:12 +1100835 xfs_off_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836{
837 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 xfs_fileoff_t offset_fsb;
839 xfs_filblks_t count_fsb;
840 xfs_filblks_t numblks_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100841 xfs_fsblock_t firstfsb;
842 int nimaps;
843 xfs_trans_t *tp;
844 xfs_bmbt_irec_t imap;
845 xfs_bmap_free_t free_list;
Christoph Hellwig84803fb2012-02-29 09:53:50 +0000846 xfs_fsize_t i_size;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100847 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000850 trace_xfs_unwritten_convert(ip, offset, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 offset_fsb = XFS_B_TO_FSBT(mp, offset);
853 count_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count);
854 count_fsb = (xfs_filblks_t)(count_fsb - offset_fsb);
855
Lachlan McIlroy4ddd8bb2008-06-27 13:32:53 +1000856 /*
857 * Reserve enough blocks in this transaction for two complete extent
858 * btree splits. We may be converting the middle part of an unwritten
859 * extent and in this case we will insert two new extents in the btree
860 * each of which could cause a full split.
861 *
862 * This reservation amount will be used in the first call to
863 * xfs_bmbt_split() to select an AG with enough space to satisfy the
864 * rest of the operation.
865 */
Nathan Scottdd9f4382006-01-11 15:28:28 +1100866 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0) << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
Nathan Scottdd9f4382006-01-11 15:28:28 +1100868 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /*
Christoph Hellwig253f4912016-04-06 09:19:55 +1000870 * Set up a transaction to convert the range of extents
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 * from unwritten to real. Do allocations in a loop until
872 * we have covered the range passed in.
Christoph Hellwig80641dc2009-10-19 04:00:03 +0000873 *
Christoph Hellwig253f4912016-04-06 09:19:55 +1000874 * Note that we can't risk to recursing back into the filesystem
875 * here as we might be asked to write out the same inode that we
876 * complete here and might deadlock on the iolock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 */
Christoph Hellwig253f4912016-04-06 09:19:55 +1000878 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_write, resblks, 0,
879 XFS_TRANS_RESERVE | XFS_TRANS_NOFS, &tp);
880 if (error)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000881 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
883 xfs_ilock(ip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +0000884 xfs_trans_ijoin(tp, ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 /*
887 * Modify the unwritten extent state of the buffer.
888 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600889 xfs_bmap_init(&free_list, &firstfsb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 nimaps = 1;
Dave Chinnerc0dc7822011-09-18 20:40:52 +0000891 error = xfs_bmapi_write(tp, ip, offset_fsb, count_fsb,
Brian Fosterdbd5c8c2015-10-12 16:04:13 +1100892 XFS_BMAPI_CONVERT, &firstfsb, resblks,
893 &imap, &nimaps, &free_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 if (error)
895 goto error_on_bmapi_transaction;
896
Christoph Hellwig84803fb2012-02-29 09:53:50 +0000897 /*
898 * Log the updated inode size as we go. We have to be careful
899 * to only log it up to the actual write offset if it is
900 * halfway into a block.
901 */
902 i_size = XFS_FSB_TO_B(mp, offset_fsb + count_fsb);
903 if (i_size > offset + count)
904 i_size = offset + count;
905
906 i_size = xfs_new_eof(ip, i_size);
907 if (i_size) {
908 ip->i_d.di_size = i_size;
909 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
910 }
911
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100912 error = xfs_bmap_finish(&tp, &free_list, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 if (error)
914 goto error_on_bmapi_transaction;
915
Christoph Hellwig70393312015-06-04 13:48:08 +1000916 error = xfs_trans_commit(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 xfs_iunlock(ip, XFS_ILOCK_EXCL);
918 if (error)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000919 return error;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100920
David Chinner86c4d622008-04-29 12:53:21 +1000921 if (!(imap.br_startblock || XFS_IS_REALTIME_INODE(ip)))
Dave Chinner6d4a8ec2011-03-07 10:06:35 +1100922 return xfs_alert_fsblock_zero(ip, &imap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924 if ((numblks_fsb = imap.br_blockcount) == 0) {
925 /*
926 * The numblks_fsb value should always get
927 * smaller, otherwise the loop is stuck.
928 */
929 ASSERT(imap.br_blockcount);
930 break;
931 }
932 offset_fsb += numblks_fsb;
933 count_fsb -= numblks_fsb;
934 } while (count_fsb > 0);
935
936 return 0;
937
938error_on_bmapi_transaction:
939 xfs_bmap_cancel(&free_list);
Christoph Hellwig4906e212015-06-04 13:47:56 +1000940 xfs_trans_cancel(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000942 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943}
Christoph Hellwig3b3dce02016-06-21 09:52:47 +1000944
945void
946xfs_bmbt_to_iomap(
947 struct xfs_inode *ip,
948 struct iomap *iomap,
949 struct xfs_bmbt_irec *imap)
950{
951 struct xfs_mount *mp = ip->i_mount;
952
953 if (imap->br_startblock == HOLESTARTBLOCK) {
954 iomap->blkno = IOMAP_NULL_BLOCK;
955 iomap->type = IOMAP_HOLE;
956 } else if (imap->br_startblock == DELAYSTARTBLOCK) {
957 iomap->blkno = IOMAP_NULL_BLOCK;
958 iomap->type = IOMAP_DELALLOC;
959 } else {
960 iomap->blkno = xfs_fsb_to_db(ip, imap->br_startblock);
961 if (imap->br_state == XFS_EXT_UNWRITTEN)
962 iomap->type = IOMAP_UNWRITTEN;
963 else
964 iomap->type = IOMAP_MAPPED;
965 }
966 iomap->offset = XFS_FSB_TO_B(mp, imap->br_startoff);
967 iomap->length = XFS_FSB_TO_B(mp, imap->br_blockcount);
968 iomap->bdev = xfs_find_bdev_for_inode(VFS_I(ip));
969}