blob: feb30a92549bfc23de25be512a0ba2dbaff38060 [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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs_fs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_dir2.h"
27#include "xfs_alloc.h"
28#include "xfs_dmapi.h"
29#include "xfs_quota.h"
30#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include "xfs_dinode.h"
37#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110038#include "xfs_ialloc.h"
39#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_rtalloc.h"
42#include "xfs_error.h"
43#include "xfs_itable.h"
44#include "xfs_rw.h"
45#include "xfs_acl.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include "xfs_attr.h"
47#include "xfs_buf_item.h"
48#include "xfs_trans_space.h"
49#include "xfs_utils.h"
50#include "xfs_iomap.h"
51
52#if defined(XFS_RW_TRACE)
53void
54xfs_iomap_enter_trace(
55 int tag,
Lachlan McIlroy541d7d32007-10-11 17:34:33 +100056 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 xfs_off_t offset,
58 ssize_t count)
59{
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 if (!ip->i_rwtrace)
61 return;
62
63 ktrace_enter(ip->i_rwtrace,
64 (void *)((unsigned long)tag),
65 (void *)ip,
66 (void *)((unsigned long)((ip->i_d.di_size >> 32) & 0xffffffff)),
67 (void *)((unsigned long)(ip->i_d.di_size & 0xffffffff)),
68 (void *)((unsigned long)((offset >> 32) & 0xffffffff)),
69 (void *)((unsigned long)(offset & 0xffffffff)),
70 (void *)((unsigned long)count),
Christoph Hellwig613d7042007-10-11 17:44:08 +100071 (void *)((unsigned long)((ip->i_new_size >> 32) & 0xffffffff)),
72 (void *)((unsigned long)(ip->i_new_size & 0xffffffff)),
Yingping Luf1fdc842006-03-22 12:44:15 +110073 (void *)((unsigned long)current_pid()),
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 (void *)NULL,
75 (void *)NULL,
76 (void *)NULL,
77 (void *)NULL,
78 (void *)NULL,
79 (void *)NULL);
80}
81
82void
83xfs_iomap_map_trace(
84 int tag,
Lachlan McIlroy541d7d32007-10-11 17:34:33 +100085 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 xfs_off_t offset,
87 ssize_t count,
88 xfs_iomap_t *iomapp,
89 xfs_bmbt_irec_t *imapp,
90 int flags)
91{
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 if (!ip->i_rwtrace)
93 return;
94
95 ktrace_enter(ip->i_rwtrace,
96 (void *)((unsigned long)tag),
97 (void *)ip,
98 (void *)((unsigned long)((ip->i_d.di_size >> 32) & 0xffffffff)),
99 (void *)((unsigned long)(ip->i_d.di_size & 0xffffffff)),
100 (void *)((unsigned long)((offset >> 32) & 0xffffffff)),
101 (void *)((unsigned long)(offset & 0xffffffff)),
102 (void *)((unsigned long)count),
103 (void *)((unsigned long)flags),
104 (void *)((unsigned long)((iomapp->iomap_offset >> 32) & 0xffffffff)),
105 (void *)((unsigned long)(iomapp->iomap_offset & 0xffffffff)),
106 (void *)((unsigned long)(iomapp->iomap_delta)),
107 (void *)((unsigned long)(iomapp->iomap_bsize)),
108 (void *)((unsigned long)(iomapp->iomap_bn)),
109 (void *)(__psint_t)(imapp->br_startoff),
110 (void *)((unsigned long)(imapp->br_blockcount)),
111 (void *)(__psint_t)(imapp->br_startblock));
112}
113#else
114#define xfs_iomap_enter_trace(tag, io, offset, count)
115#define xfs_iomap_map_trace(tag, io, offset, count, iomapp, imapp, flags)
116#endif
117
118#define XFS_WRITEIO_ALIGN(mp,off) (((off) >> mp->m_writeio_log) \
119 << mp->m_writeio_log)
120#define XFS_STRAT_WRITE_IMAPS 2
121#define XFS_WRITE_IMAPS XFS_BMAP_MAX_NMAP
122
123STATIC int
124xfs_imap_to_bmap(
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000125 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 xfs_off_t offset,
127 xfs_bmbt_irec_t *imap,
128 xfs_iomap_t *iomapp,
129 int imaps, /* Number of imap entries */
130 int iomaps, /* Number of iomap entries */
131 int flags)
132{
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000133 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 int pbm;
135 xfs_fsblock_t start_block;
136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 for (pbm = 0; imaps && pbm < iomaps; imaps--, iomapp++, imap++, pbm++) {
139 iomapp->iomap_offset = XFS_FSB_TO_B(mp, imap->br_startoff);
140 iomapp->iomap_delta = offset - iomapp->iomap_offset;
141 iomapp->iomap_bsize = XFS_FSB_TO_B(mp, imap->br_blockcount);
142 iomapp->iomap_flags = flags;
143
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100144 if (XFS_IS_REALTIME_INODE(ip)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 iomapp->iomap_flags |= IOMAP_REALTIME;
146 iomapp->iomap_target = mp->m_rtdev_targp;
147 } else {
148 iomapp->iomap_target = mp->m_ddev_targp;
149 }
150 start_block = imap->br_startblock;
151 if (start_block == HOLESTARTBLOCK) {
152 iomapp->iomap_bn = IOMAP_DADDR_NULL;
153 iomapp->iomap_flags |= IOMAP_HOLE;
154 } else if (start_block == DELAYSTARTBLOCK) {
155 iomapp->iomap_bn = IOMAP_DADDR_NULL;
156 iomapp->iomap_flags |= IOMAP_DELAY;
157 } else {
Eric Sandeen9d87c312009-01-14 23:22:07 -0600158 iomapp->iomap_bn = xfs_fsb_to_db(ip, start_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 if (ISUNWRITTEN(imap))
160 iomapp->iomap_flags |= IOMAP_UNWRITTEN;
161 }
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 offset += iomapp->iomap_bsize - iomapp->iomap_delta;
164 }
165 return pbm; /* Return the number filled */
166}
167
168int
169xfs_iomap(
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000170 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 xfs_off_t offset,
172 ssize_t count,
173 int flags,
174 xfs_iomap_t *iomapp,
175 int *niomaps)
176{
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000177 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 xfs_fileoff_t offset_fsb, end_fsb;
179 int error = 0;
180 int lockmode = 0;
181 xfs_bmbt_irec_t imap;
182 int nimaps = 1;
183 int bmapi_flags = 0;
184 int iomap_flags = 0;
185
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000186 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFREG);
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (XFS_FORCED_SHUTDOWN(mp))
189 return XFS_ERROR(EIO);
190
Christoph Hellwig76428612007-09-14 15:23:31 +1000191 switch (flags & (BMAPI_READ | BMAPI_WRITE | BMAPI_ALLOCATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 case BMAPI_READ:
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000193 xfs_iomap_enter_trace(XFS_IOMAP_READ_ENTER, ip, offset, count);
194 lockmode = xfs_ilock_map_shared(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 bmapi_flags = XFS_BMAPI_ENTIRE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 break;
197 case BMAPI_WRITE:
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000198 xfs_iomap_enter_trace(XFS_IOMAP_WRITE_ENTER, ip, offset, count);
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000199 lockmode = XFS_ILOCK_EXCL;
Nathan Scottc31e8872005-09-05 10:06:55 +1000200 if (flags & BMAPI_IGNSTATE)
201 bmapi_flags |= XFS_BMAPI_IGSTATE|XFS_BMAPI_ENTIRE;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000202 xfs_ilock(ip, lockmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 break;
204 case BMAPI_ALLOCATE:
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000205 xfs_iomap_enter_trace(XFS_IOMAP_ALLOC_ENTER, ip, offset, count);
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000206 lockmode = XFS_ILOCK_SHARED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 bmapi_flags = XFS_BMAPI_ENTIRE;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 /* Attempt non-blocking lock */
210 if (flags & BMAPI_TRYLOCK) {
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000211 if (!xfs_ilock_nowait(ip, lockmode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 return XFS_ERROR(EAGAIN);
213 } else {
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000214 xfs_ilock(ip, lockmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 }
216 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 default:
218 BUG();
219 }
220
221 ASSERT(offset <= mp->m_maxioffset);
222 if ((xfs_fsize_t)offset + count > mp->m_maxioffset)
223 count = mp->m_maxioffset - offset;
224 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count);
225 offset_fsb = XFS_B_TO_FSBT(mp, offset);
226
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000227 error = xfs_bmapi(NULL, ip, offset_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 (xfs_filblks_t)(end_fsb - offset_fsb),
229 bmapi_flags, NULL, 0, &imap,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000230 &nimaps, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232 if (error)
233 goto out;
234
Christoph Hellwig76428612007-09-14 15:23:31 +1000235 switch (flags & (BMAPI_WRITE|BMAPI_ALLOCATE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 case BMAPI_WRITE:
237 /* If we found an extent, return it */
Russell Cattelan68d14982005-05-06 06:42:22 -0700238 if (nimaps &&
Nathan Scottdd9f4382006-01-11 15:28:28 +1100239 (imap.br_startblock != HOLESTARTBLOCK) &&
Russell Cattelan68d14982005-05-06 06:42:22 -0700240 (imap.br_startblock != DELAYSTARTBLOCK)) {
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000241 xfs_iomap_map_trace(XFS_IOMAP_WRITE_MAP, ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 offset, count, iomapp, &imap, flags);
243 break;
244 }
245
246 if (flags & (BMAPI_DIRECT|BMAPI_MMAP)) {
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000247 error = xfs_iomap_write_direct(ip, offset, count, flags,
248 &imap, &nimaps, nimaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 } else {
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000250 error = xfs_iomap_write_delay(ip, offset, count, flags,
251 &imap, &nimaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 }
253 if (!error) {
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000254 xfs_iomap_map_trace(XFS_IOMAP_ALLOC_MAP, ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 offset, count, iomapp, &imap, flags);
256 }
257 iomap_flags = IOMAP_NEW;
258 break;
259 case BMAPI_ALLOCATE:
260 /* If we found an extent, return it */
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000261 xfs_iunlock(ip, lockmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 lockmode = 0;
263
Eric Sandeen9d87c312009-01-14 23:22:07 -0600264 if (nimaps && !isnullstartblock(imap.br_startblock)) {
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000265 xfs_iomap_map_trace(XFS_IOMAP_WRITE_MAP, ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 offset, count, iomapp, &imap, flags);
267 break;
268 }
269
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000270 error = xfs_iomap_write_allocate(ip, offset, count,
Nathan Scott24e17b52005-05-05 13:33:20 -0700271 &imap, &nimaps);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273 }
274
275 if (nimaps) {
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000276 *niomaps = xfs_imap_to_bmap(ip, offset, &imap,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 iomapp, nimaps, *niomaps, iomap_flags);
278 } else if (niomaps) {
279 *niomaps = 0;
280 }
281
282out:
283 if (lockmode)
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000284 xfs_iunlock(ip, lockmode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 return XFS_ERROR(error);
286}
287
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289STATIC int
Nathan Scottdd9f4382006-01-11 15:28:28 +1100290xfs_iomap_eof_align_last_fsb(
291 xfs_mount_t *mp,
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000292 xfs_inode_t *ip,
Nathan Scottdd9f4382006-01-11 15:28:28 +1100293 xfs_extlen_t extsize,
294 xfs_fileoff_t *last_fsb)
295{
296 xfs_fileoff_t new_last_fsb = 0;
297 xfs_extlen_t align;
298 int eof, error;
299
Eric Sandeen71ddabb2007-11-23 16:29:42 +1100300 if (XFS_IS_REALTIME_INODE(ip))
Nathan Scottdd9f4382006-01-11 15:28:28 +1100301 ;
302 /*
303 * If mounted with the "-o swalloc" option, roundup the allocation
304 * request to a stripe width boundary if the file size is >=
305 * stripe width and we are allocating past the allocation eof.
306 */
307 else if (mp->m_swidth && (mp->m_flags & XFS_MOUNT_SWALLOC) &&
Lachlan McIlroy9f6c92b2008-12-22 17:56:49 +1100308 (ip->i_size >= XFS_FSB_TO_B(mp, mp->m_swidth)))
Nathan Scottdd9f4382006-01-11 15:28:28 +1100309 new_last_fsb = roundup_64(*last_fsb, mp->m_swidth);
310 /*
311 * Roundup the allocation request to a stripe unit (m_dalign) boundary
312 * if the file size is >= stripe unit size, and we are allocating past
313 * the allocation eof.
314 */
Lachlan McIlroy9f6c92b2008-12-22 17:56:49 +1100315 else if (mp->m_dalign && (ip->i_size >= XFS_FSB_TO_B(mp, mp->m_dalign)))
Nathan Scottdd9f4382006-01-11 15:28:28 +1100316 new_last_fsb = roundup_64(*last_fsb, mp->m_dalign);
317
318 /*
319 * Always round up the allocation request to an extent boundary
320 * (when file on a real-time subvolume or has di_extsize hint).
321 */
322 if (extsize) {
323 if (new_last_fsb)
324 align = roundup_64(new_last_fsb, extsize);
325 else
326 align = extsize;
327 new_last_fsb = roundup_64(*last_fsb, align);
328 }
329
330 if (new_last_fsb) {
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000331 error = xfs_bmap_eof(ip, new_last_fsb, XFS_DATA_FORK, &eof);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100332 if (error)
333 return error;
334 if (eof)
335 *last_fsb = new_last_fsb;
336 }
337 return 0;
338}
339
340STATIC int
Nathan Scott572d95f2006-09-28 11:03:20 +1000341xfs_cmn_err_fsblock_zero(
342 xfs_inode_t *ip,
343 xfs_bmbt_irec_t *imap)
344{
345 xfs_cmn_err(XFS_PTAG_FSBLOCK_ZERO, CE_ALERT, ip->i_mount,
346 "Access to block zero in inode %llu "
347 "start_block: %llx start_off: %llx "
348 "blkcnt: %llx extent-state: %x\n",
349 (unsigned long long)ip->i_ino,
350 (unsigned long long)imap->br_startblock,
351 (unsigned long long)imap->br_startoff,
352 (unsigned long long)imap->br_blockcount,
353 imap->br_state);
354 return EFSCORRUPTED;
355}
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357int
358xfs_iomap_write_direct(
359 xfs_inode_t *ip,
Nathan Scottf403b7f2005-05-05 13:33:40 -0700360 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 size_t count,
362 int flags,
363 xfs_bmbt_irec_t *ret_imap,
364 int *nmaps,
365 int found)
366{
367 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 xfs_fileoff_t offset_fsb;
369 xfs_fileoff_t last_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100370 xfs_filblks_t count_fsb, resaligned;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 xfs_fsblock_t firstfsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100372 xfs_extlen_t extsz, temp;
Eric Sandeen0116d932005-11-02 15:00:01 +1100373 int nimaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 int bmapi_flag;
Nathan Scott06d10dd2005-06-21 15:48:47 +1000375 int quota_flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 int rt;
377 xfs_trans_t *tp;
Eric Sandeen0116d932005-11-02 15:00:01 +1100378 xfs_bmbt_irec_t imap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 xfs_bmap_free_t free_list;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100380 uint qblocks, resblks, resrtextents;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 int committed;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100382 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 /*
385 * Make sure that the dquots are there. This doesn't hold
386 * the ilock across a disk read.
387 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200388 error = xfs_qm_dqattach_locked(ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 if (error)
390 return XFS_ERROR(error);
391
Nathan Scottdd9f4382006-01-11 15:28:28 +1100392 rt = XFS_IS_REALTIME_INODE(ip);
David Chinner957d0eb2007-06-18 16:50:37 +1000393 extsz = xfs_get_extsz_hint(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
David Chinner957d0eb2007-06-18 16:50:37 +1000395 offset_fsb = XFS_B_TO_FSBT(mp, offset);
396 last_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)(offset + count)));
Lachlan McIlroy9f6c92b2008-12-22 17:56:49 +1100397 if ((offset + count) > ip->i_size) {
398 error = xfs_iomap_eof_align_last_fsb(mp, ip, extsz, &last_fsb);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100399 if (error)
400 goto error_out;
401 } else {
402 if (found && (ret_imap->br_startblock == HOLESTARTBLOCK))
403 last_fsb = MIN(last_fsb, (xfs_fileoff_t)
404 ret_imap->br_blockcount +
405 ret_imap->br_startoff);
406 }
407 count_fsb = last_fsb - offset_fsb;
408 ASSERT(count_fsb > 0);
409
410 resaligned = count_fsb;
411 if (unlikely(extsz)) {
412 if ((temp = do_mod(offset_fsb, extsz)))
413 resaligned += temp;
414 if ((temp = do_mod(resaligned, extsz)))
415 resaligned += extsz - temp;
416 }
417
418 if (unlikely(rt)) {
419 resrtextents = qblocks = resaligned;
420 resrtextents /= mp->m_sb.sb_rextsize;
David Chinner84e1e992007-06-18 16:50:27 +1000421 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
422 quota_flag = XFS_QMOPT_RES_RTBLKS;
423 } else {
424 resrtextents = 0;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100425 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resaligned);
David Chinner84e1e992007-06-18 16:50:27 +1000426 quota_flag = XFS_QMOPT_RES_REGBLKS;
427 }
Nathan Scottdd9f4382006-01-11 15:28:28 +1100428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 /*
Nathan Scott06d10dd2005-06-21 15:48:47 +1000430 * Allocate and setup the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 */
432 xfs_iunlock(ip, XFS_ILOCK_EXCL);
433 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 error = xfs_trans_reserve(tp, resblks,
Nathan Scottd52b44d2005-09-02 16:41:32 +1000435 XFS_WRITE_LOG_RES(mp), resrtextents,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 XFS_TRANS_PERM_LOG_RES,
437 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 /*
Nathan Scott06d10dd2005-06-21 15:48:47 +1000439 * Check for running out of space, note: need lock to return
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 */
441 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 xfs_trans_cancel(tp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 xfs_ilock(ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (error)
Nathan Scott06d10dd2005-06-21 15:48:47 +1000445 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446
Christoph Hellwig7d095252009-06-08 15:33:32 +0200447 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks, 0, quota_flag);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100448 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 goto error1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
452 xfs_trans_ihold(tp, ip);
453
Nathan Scottdd9f4382006-01-11 15:28:28 +1100454 bmapi_flag = XFS_BMAPI_WRITE;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000455 if ((flags & BMAPI_DIRECT) && (offset < ip->i_size || extsz))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 bmapi_flag |= XFS_BMAPI_PREALLOC;
457
458 /*
Nathan Scottdd9f4382006-01-11 15:28:28 +1100459 * Issue the xfs_bmapi() call to allocate the blocks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600461 xfs_bmap_init(&free_list, &firstfsb);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000462 nimaps = 1;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000463 error = xfs_bmapi(tp, ip, offset_fsb, count_fsb, bmapi_flag,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000464 &firstfsb, 0, &imap, &nimaps, &free_list, NULL);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000465 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468 /*
Nathan Scott06d10dd2005-06-21 15:48:47 +1000469 * Complete the transaction
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 */
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100471 error = xfs_bmap_finish(&tp, &free_list, &committed);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000472 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 goto error0;
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000474 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Nathan Scott06d10dd2005-06-21 15:48:47 +1000475 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 goto error_out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Nathan Scott06d10dd2005-06-21 15:48:47 +1000478 /*
479 * Copy any maps to caller's array and return any error.
480 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (nimaps == 0) {
Nathan Scott572d95f2006-09-28 11:03:20 +1000482 error = ENOSPC;
483 goto error_out;
484 }
485
David Chinner86c4d622008-04-29 12:53:21 +1000486 if (!(imap.br_startblock || XFS_IS_REALTIME_INODE(ip))) {
Nathan Scott572d95f2006-09-28 11:03:20 +1000487 error = xfs_cmn_err_fsblock_zero(ip, &imap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 goto error_out;
489 }
490
Eric Sandeen0116d932005-11-02 15:00:01 +1100491 *ret_imap = imap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 *nmaps = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 return 0;
494
Nathan Scott06d10dd2005-06-21 15:48:47 +1000495error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 xfs_bmap_cancel(&free_list);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200497 xfs_trans_unreserve_quota_nblks(tp, ip, qblocks, 0, quota_flag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
Nathan Scott06d10dd2005-06-21 15:48:47 +1000499error1: /* Just cancel transaction */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
501 *nmaps = 0; /* nothing set-up here */
502
503error_out:
504 return XFS_ERROR(error);
505}
506
Nathan Scottdd9f4382006-01-11 15:28:28 +1100507/*
Dave Chinner8de2bf92009-04-06 18:49:12 +0200508 * If the caller is doing a write at the end of the file, then extend the
509 * allocation out to the file system's write iosize. We clean up any extra
510 * space left over when the file is closed in xfs_inactive().
Nathan Scottdd9f4382006-01-11 15:28:28 +1100511 */
512STATIC int
513xfs_iomap_eof_want_preallocate(
514 xfs_mount_t *mp,
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000515 xfs_inode_t *ip,
Nathan Scottdd9f4382006-01-11 15:28:28 +1100516 xfs_off_t offset,
517 size_t count,
518 int ioflag,
519 xfs_bmbt_irec_t *imap,
520 int nimaps,
521 int *prealloc)
522{
523 xfs_fileoff_t start_fsb;
524 xfs_filblks_t count_fsb;
525 xfs_fsblock_t firstblock;
526 int n, error, imaps;
527
528 *prealloc = 0;
Dave Chinner8de2bf92009-04-06 18:49:12 +0200529 if ((offset + count) <= ip->i_size)
Nathan Scottdd9f4382006-01-11 15:28:28 +1100530 return 0;
531
532 /*
533 * If there are any real blocks past eof, then don't
534 * do any speculative allocation.
535 */
536 start_fsb = XFS_B_TO_FSBT(mp, ((xfs_ufsize_t)(offset + count - 1)));
537 count_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
538 while (count_fsb > 0) {
539 imaps = nimaps;
Nathan Scott3ddb8fa2006-01-11 15:33:02 +1100540 firstblock = NULLFSBLOCK;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000541 error = xfs_bmapi(NULL, ip, start_fsb, count_fsb, 0,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000542 &firstblock, 0, imap, &imaps, NULL, NULL);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100543 if (error)
544 return error;
545 for (n = 0; n < imaps; n++) {
546 if ((imap[n].br_startblock != HOLESTARTBLOCK) &&
547 (imap[n].br_startblock != DELAYSTARTBLOCK))
548 return 0;
549 start_fsb += imap[n].br_blockcount;
550 count_fsb -= imap[n].br_blockcount;
551 }
552 }
553 *prealloc = 1;
554 return 0;
555}
556
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557int
558xfs_iomap_write_delay(
559 xfs_inode_t *ip,
Nathan Scottf403b7f2005-05-05 13:33:40 -0700560 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 size_t count,
562 int ioflag,
563 xfs_bmbt_irec_t *ret_imap,
564 int *nmaps)
565{
566 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 xfs_fileoff_t offset_fsb;
568 xfs_fileoff_t last_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100569 xfs_off_t aligned_offset;
570 xfs_fileoff_t ioalign;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 xfs_fsblock_t firstblock;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100572 xfs_extlen_t extsz;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 int nimaps;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 xfs_bmbt_irec_t imap[XFS_WRITE_IMAPS];
Dave Chinner8de2bf92009-04-06 18:49:12 +0200575 int prealloc, flushed = 0;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100576 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Christoph Hellwig579aa9c2008-04-22 17:34:00 +1000578 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 /*
581 * Make sure that the dquots are there. This doesn't hold
582 * the ilock across a disk read.
583 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200584 error = xfs_qm_dqattach_locked(ip, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 if (error)
586 return XFS_ERROR(error);
587
David Chinner957d0eb2007-06-18 16:50:37 +1000588 extsz = xfs_get_extsz_hint(ip);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100589 offset_fsb = XFS_B_TO_FSBT(mp, offset);
590
Lachlan McIlroy9f6c92b2008-12-22 17:56:49 +1100591 error = xfs_iomap_eof_want_preallocate(mp, ip, offset, count,
Nathan Scottdd9f4382006-01-11 15:28:28 +1100592 ioflag, imap, XFS_WRITE_IMAPS, &prealloc);
593 if (error)
594 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Dave Chinner8de2bf92009-04-06 18:49:12 +0200596retry:
Nathan Scottdd9f4382006-01-11 15:28:28 +1100597 if (prealloc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 aligned_offset = XFS_WRITEIO_ALIGN(mp, (offset + count - 1));
599 ioalign = XFS_B_TO_FSBT(mp, aligned_offset);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100600 last_fsb = ioalign + mp->m_writeio_blocks;
601 } else {
602 last_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)(offset + count)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
Nathan Scottdd9f4382006-01-11 15:28:28 +1100604
605 if (prealloc || extsz) {
Lachlan McIlroy9f6c92b2008-12-22 17:56:49 +1100606 error = xfs_iomap_eof_align_last_fsb(mp, ip, extsz, &last_fsb);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100607 if (error)
608 return error;
609 }
610
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 nimaps = XFS_WRITE_IMAPS;
612 firstblock = NULLFSBLOCK;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000613 error = xfs_bmapi(NULL, ip, offset_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614 (xfs_filblks_t)(last_fsb - offset_fsb),
615 XFS_BMAPI_DELAY | XFS_BMAPI_WRITE |
616 XFS_BMAPI_ENTIRE, &firstblock, 1, imap,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000617 &nimaps, NULL, NULL);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100618 if (error && (error != ENOSPC))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 return XFS_ERROR(error);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 /*
622 * If bmapi returned us nothing, and if we didn't get back EDQUOT,
Dave Chinner8de2bf92009-04-06 18:49:12 +0200623 * then we must have run out of space - flush all other inodes with
624 * delalloc blocks and retry without EOF preallocation.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 */
626 if (nimaps == 0) {
627 xfs_iomap_enter_trace(XFS_IOMAP_WRITE_NOSPACE,
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000628 ip, offset, count);
Dave Chinner8de2bf92009-04-06 18:49:12 +0200629 if (flushed)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 return XFS_ERROR(ENOSPC);
631
Dave Chinner8de2bf92009-04-06 18:49:12 +0200632 xfs_iunlock(ip, XFS_ILOCK_EXCL);
633 xfs_flush_inodes(ip);
634 xfs_ilock(ip, XFS_ILOCK_EXCL);
635
636 flushed = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 error = 0;
Dave Chinner8de2bf92009-04-06 18:49:12 +0200638 prealloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 goto retry;
640 }
641
David Chinner86c4d622008-04-29 12:53:21 +1000642 if (!(imap[0].br_startblock || XFS_IS_REALTIME_INODE(ip)))
Nathan Scott572d95f2006-09-28 11:03:20 +1000643 return xfs_cmn_err_fsblock_zero(ip, &imap[0]);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100644
645 *ret_imap = imap[0];
646 *nmaps = 1;
647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 return 0;
649}
650
651/*
652 * Pass in a delayed allocate extent, convert it to real extents;
653 * return to the caller the extent we create which maps on top of
654 * the originating callers request.
655 *
656 * Called without a lock on the inode.
David Chinnere4143a12007-11-23 16:29:11 +1100657 *
658 * We no longer bother to look at the incoming map - all we have to
659 * guarantee is that whatever we allocate fills the required range.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 */
661int
662xfs_iomap_write_allocate(
663 xfs_inode_t *ip,
Nathan Scottf403b7f2005-05-05 13:33:40 -0700664 xfs_off_t offset,
Nathan Scott24e17b52005-05-05 13:33:20 -0700665 size_t count,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 xfs_bmbt_irec_t *map,
667 int *retmap)
668{
669 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 xfs_fileoff_t offset_fsb, last_block;
671 xfs_fileoff_t end_fsb, map_start_fsb;
672 xfs_fsblock_t first_block;
673 xfs_bmap_free_t free_list;
674 xfs_filblks_t count_fsb;
David Chinnere4143a12007-11-23 16:29:11 +1100675 xfs_bmbt_irec_t imap;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 xfs_trans_t *tp;
David Chinnere4143a12007-11-23 16:29:11 +1100677 int nimaps, committed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 int error = 0;
679 int nres;
680
681 *retmap = 0;
682
683 /*
684 * Make sure that the dquots are there.
685 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200686 error = xfs_qm_dqattach(ip, 0);
687 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return XFS_ERROR(error);
689
Nathan Scott24e17b52005-05-05 13:33:20 -0700690 offset_fsb = XFS_B_TO_FSBT(mp, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 count_fsb = map->br_blockcount;
Nathan Scott24e17b52005-05-05 13:33:20 -0700692 map_start_fsb = map->br_startoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 XFS_STATS_ADD(xs_xstrat_bytes, XFS_FSB_TO_B(mp, count_fsb));
695
696 while (count_fsb != 0) {
697 /*
698 * Set up a transaction with which to allocate the
699 * backing store for the file. Do allocations in a
700 * loop until we get some space in the range we are
701 * interested in. The other space that might be allocated
702 * is in the delayed allocation extent on which we sit
703 * but before our buffer starts.
704 */
705
706 nimaps = 0;
707 while (nimaps == 0) {
708 tp = xfs_trans_alloc(mp, XFS_TRANS_STRAT_WRITE);
David Chinner84e1e992007-06-18 16:50:27 +1000709 tp->t_flags |= XFS_TRANS_RESERVE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 nres = XFS_EXTENTADD_SPACE_RES(mp, XFS_DATA_FORK);
711 error = xfs_trans_reserve(tp, nres,
712 XFS_WRITE_LOG_RES(mp),
713 0, XFS_TRANS_PERM_LOG_RES,
714 XFS_WRITE_LOG_COUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (error) {
716 xfs_trans_cancel(tp, 0);
717 return XFS_ERROR(error);
718 }
719 xfs_ilock(ip, XFS_ILOCK_EXCL);
720 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
721 xfs_trans_ihold(tp, ip);
722
Eric Sandeen9d87c312009-01-14 23:22:07 -0600723 xfs_bmap_init(&free_list, &first_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 /*
David Chinnere4143a12007-11-23 16:29:11 +1100726 * it is possible that the extents have changed since
727 * we did the read call as we dropped the ilock for a
728 * while. We have to be careful about truncates or hole
729 * punchs here - we are not allowed to allocate
730 * non-delalloc blocks here.
731 *
732 * The only protection against truncation is the pages
733 * for the range we are being asked to convert are
734 * locked and hence a truncate will block on them
735 * first.
736 *
737 * As a result, if we go beyond the range we really
738 * need and hit an delalloc extent boundary followed by
739 * a hole while we have excess blocks in the map, we
740 * will fill the hole incorrectly and overrun the
741 * transaction reservation.
742 *
743 * Using a single map prevents this as we are forced to
744 * check each map we look for overlap with the desired
745 * range and abort as soon as we find it. Also, given
746 * that we only return a single map, having one beyond
747 * what we can return is probably a bit silly.
748 *
749 * We also need to check that we don't go beyond EOF;
750 * this is a truncate optimisation as a truncate sets
751 * the new file size before block on the pages we
752 * currently have locked under writeback. Because they
753 * are about to be tossed, we don't need to write them
754 * back....
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 */
David Chinnere4143a12007-11-23 16:29:11 +1100756 nimaps = 1;
Lachlan McIlroyba87ea62007-05-08 13:49:46 +1000757 end_fsb = XFS_B_TO_FSB(mp, ip->i_size);
David Chinner7c9ef852008-04-10 12:21:59 +1000758 error = xfs_bmap_last_offset(NULL, ip, &last_block,
759 XFS_DATA_FORK);
760 if (error)
761 goto trans_cancel;
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 last_block = XFS_FILEOFF_MAX(last_block, end_fsb);
764 if ((map_start_fsb + count_fsb) > last_block) {
765 count_fsb = last_block - map_start_fsb;
766 if (count_fsb == 0) {
767 error = EAGAIN;
768 goto trans_cancel;
769 }
770 }
771
772 /* Go get the actual blocks */
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000773 error = xfs_bmapi(tp, ip, map_start_fsb, count_fsb,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 XFS_BMAPI_WRITE, &first_block, 1,
David Chinnere4143a12007-11-23 16:29:11 +1100775 &imap, &nimaps, &free_list, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 if (error)
777 goto trans_cancel;
778
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100779 error = xfs_bmap_finish(&tp, &free_list, &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 if (error)
781 goto trans_cancel;
782
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000783 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (error)
785 goto error0;
786
787 xfs_iunlock(ip, XFS_ILOCK_EXCL);
788 }
789
790 /*
791 * See if we were able to allocate an extent that
792 * covers at least part of the callers request
793 */
David Chinner86c4d622008-04-29 12:53:21 +1000794 if (!(imap.br_startblock || XFS_IS_REALTIME_INODE(ip)))
David Chinnere4143a12007-11-23 16:29:11 +1100795 return xfs_cmn_err_fsblock_zero(ip, &imap);
David Chinner86c4d622008-04-29 12:53:21 +1000796
David Chinnere4143a12007-11-23 16:29:11 +1100797 if ((offset_fsb >= imap.br_startoff) &&
798 (offset_fsb < (imap.br_startoff +
799 imap.br_blockcount))) {
800 *map = imap;
801 *retmap = 1;
802 XFS_STATS_INC(xs_xstrat_quick);
803 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
805
David Chinnere4143a12007-11-23 16:29:11 +1100806 /*
807 * So far we have not mapped the requested part of the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 * file, just surrounding data, try again.
809 */
David Chinnere4143a12007-11-23 16:29:11 +1100810 count_fsb -= imap.br_blockcount;
811 map_start_fsb = imap.br_startoff + imap.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
813
814trans_cancel:
815 xfs_bmap_cancel(&free_list);
816 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
817error0:
818 xfs_iunlock(ip, XFS_ILOCK_EXCL);
819 return XFS_ERROR(error);
820}
821
822int
823xfs_iomap_write_unwritten(
824 xfs_inode_t *ip,
Nathan Scottf403b7f2005-05-05 13:33:40 -0700825 xfs_off_t offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 size_t count)
827{
828 xfs_mount_t *mp = ip->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 xfs_fileoff_t offset_fsb;
830 xfs_filblks_t count_fsb;
831 xfs_filblks_t numblks_fsb;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100832 xfs_fsblock_t firstfsb;
833 int nimaps;
834 xfs_trans_t *tp;
835 xfs_bmbt_irec_t imap;
836 xfs_bmap_free_t free_list;
837 uint resblks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 int committed;
839 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000841 xfs_iomap_enter_trace(XFS_IOMAP_UNWRITTEN, ip, offset, count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
843 offset_fsb = XFS_B_TO_FSBT(mp, offset);
844 count_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count);
845 count_fsb = (xfs_filblks_t)(count_fsb - offset_fsb);
846
Lachlan McIlroy4ddd8bb2008-06-27 13:32:53 +1000847 /*
848 * Reserve enough blocks in this transaction for two complete extent
849 * btree splits. We may be converting the middle part of an unwritten
850 * extent and in this case we will insert two new extents in the btree
851 * each of which could cause a full split.
852 *
853 * This reservation amount will be used in the first call to
854 * xfs_bmbt_split() to select an AG with enough space to satisfy the
855 * rest of the operation.
856 */
Nathan Scottdd9f4382006-01-11 15:28:28 +1100857 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0) << 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Nathan Scottdd9f4382006-01-11 15:28:28 +1100859 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 /*
861 * set up a transaction to convert the range of extents
862 * from unwritten to real. Do allocations in a loop until
863 * we have covered the range passed in.
864 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 tp = xfs_trans_alloc(mp, XFS_TRANS_STRAT_WRITE);
David Chinner84e1e992007-06-18 16:50:27 +1000866 tp->t_flags |= XFS_TRANS_RESERVE;
Nathan Scottdd9f4382006-01-11 15:28:28 +1100867 error = xfs_trans_reserve(tp, resblks,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 XFS_WRITE_LOG_RES(mp), 0,
869 XFS_TRANS_PERM_LOG_RES,
870 XFS_WRITE_LOG_COUNT);
871 if (error) {
872 xfs_trans_cancel(tp, 0);
Nathan Scott572d95f2006-09-28 11:03:20 +1000873 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 }
875
876 xfs_ilock(ip, XFS_ILOCK_EXCL);
877 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
878 xfs_trans_ihold(tp, ip);
879
880 /*
881 * Modify the unwritten extent state of the buffer.
882 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600883 xfs_bmap_init(&free_list, &firstfsb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 nimaps = 1;
Lachlan McIlroy541d7d32007-10-11 17:34:33 +1000885 error = xfs_bmapi(tp, ip, offset_fsb, count_fsb,
Nathan Scottdd9f4382006-01-11 15:28:28 +1100886 XFS_BMAPI_WRITE|XFS_BMAPI_CONVERT, &firstfsb,
Olaf Weber3e57ecf2006-06-09 14:48:12 +1000887 1, &imap, &nimaps, &free_list, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 if (error)
889 goto error_on_bmapi_transaction;
890
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100891 error = xfs_bmap_finish(&(tp), &(free_list), &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 if (error)
893 goto error_on_bmapi_transaction;
894
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000895 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 xfs_iunlock(ip, XFS_ILOCK_EXCL);
897 if (error)
Nathan Scott572d95f2006-09-28 11:03:20 +1000898 return XFS_ERROR(error);
Nathan Scottdd9f4382006-01-11 15:28:28 +1100899
David Chinner86c4d622008-04-29 12:53:21 +1000900 if (!(imap.br_startblock || XFS_IS_REALTIME_INODE(ip)))
Nathan Scott572d95f2006-09-28 11:03:20 +1000901 return xfs_cmn_err_fsblock_zero(ip, &imap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 if ((numblks_fsb = imap.br_blockcount) == 0) {
904 /*
905 * The numblks_fsb value should always get
906 * smaller, otherwise the loop is stuck.
907 */
908 ASSERT(imap.br_blockcount);
909 break;
910 }
911 offset_fsb += numblks_fsb;
912 count_fsb -= numblks_fsb;
913 } while (count_fsb > 0);
914
915 return 0;
916
917error_on_bmapi_transaction:
918 xfs_bmap_cancel(&free_list);
919 xfs_trans_cancel(tp, (XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT));
920 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 return XFS_ERROR(error);
922}