]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/xfs/xfs_iomap.c
Merge branch 'fix' of git://git.kernel.org/pub/scm/linux/kernel/git/ycmiao/pxa-linux-2.6
[mirror_ubuntu-bionic-kernel.git] / fs / xfs / xfs_iomap.c
CommitLineData
1da177e4 1/*
3e57ecf6 2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
7b718769 3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * 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.
1da177e4 13 *
7b718769
NS
14 * 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
1da177e4 17 */
1da177e4 18#include "xfs.h"
1da177e4 19#include "xfs_fs.h"
a844f451 20#include "xfs_bit.h"
1da177e4 21#include "xfs_log.h"
a844f451 22#include "xfs_inum.h"
1da177e4
LT
23#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
1da177e4
LT
26#include "xfs_dir2.h"
27#include "xfs_alloc.h"
28#include "xfs_dmapi.h"
29#include "xfs_quota.h"
30#include "xfs_mount.h"
1da177e4 31#include "xfs_bmap_btree.h"
a844f451 32#include "xfs_alloc_btree.h"
1da177e4 33#include "xfs_ialloc_btree.h"
1da177e4 34#include "xfs_dir2_sf.h"
a844f451 35#include "xfs_attr_sf.h"
1da177e4
LT
36#include "xfs_dinode.h"
37#include "xfs_inode.h"
a844f451
NS
38#include "xfs_ialloc.h"
39#include "xfs_btree.h"
1da177e4 40#include "xfs_bmap.h"
1da177e4
LT
41#include "xfs_rtalloc.h"
42#include "xfs_error.h"
43#include "xfs_itable.h"
44#include "xfs_rw.h"
45#include "xfs_acl.h"
1da177e4
LT
46#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,
541d7d3c 56 xfs_inode_t *ip,
1da177e4
LT
57 xfs_off_t offset,
58 ssize_t count)
59{
1da177e4
LT
60 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),
613d7043
CH
71 (void *)((unsigned long)((ip->i_new_size >> 32) & 0xffffffff)),
72 (void *)((unsigned long)(ip->i_new_size & 0xffffffff)),
f1fdc848 73 (void *)((unsigned long)current_pid()),
1da177e4
LT
74 (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,
541d7d3c 85 xfs_inode_t *ip,
1da177e4
LT
86 xfs_off_t offset,
87 ssize_t count,
88 xfs_iomap_t *iomapp,
89 xfs_bmbt_irec_t *imapp,
90 int flags)
91{
1da177e4
LT
92 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(
541d7d3c 125 xfs_inode_t *ip,
1da177e4
LT
126 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{
541d7d3c 133 xfs_mount_t *mp = ip->i_mount;
1da177e4
LT
134 int pbm;
135 xfs_fsblock_t start_block;
136
1da177e4
LT
137
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
71ddabb9 144 if (XFS_IS_REALTIME_INODE(ip)) {
1da177e4
LT
145 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 {
9d87c319 158 iomapp->iomap_bn = xfs_fsb_to_db(ip, start_block);
1da177e4
LT
159 if (ISUNWRITTEN(imap))
160 iomapp->iomap_flags |= IOMAP_UNWRITTEN;
161 }
162
1da177e4
LT
163 offset += iomapp->iomap_bsize - iomapp->iomap_delta;
164 }
165 return pbm; /* Return the number filled */
166}
167
168int
169xfs_iomap(
541d7d3c 170 xfs_inode_t *ip,
1da177e4
LT
171 xfs_off_t offset,
172 ssize_t count,
173 int flags,
174 xfs_iomap_t *iomapp,
175 int *niomaps)
176{
541d7d3c 177 xfs_mount_t *mp = ip->i_mount;
1da177e4
LT
178 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
541d7d3c 186 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFREG);
541d7d3c 187
1da177e4
LT
188 if (XFS_FORCED_SHUTDOWN(mp))
189 return XFS_ERROR(EIO);
190
7642861b 191 switch (flags & (BMAPI_READ | BMAPI_WRITE | BMAPI_ALLOCATE)) {
1da177e4 192 case BMAPI_READ:
541d7d3c
LM
193 xfs_iomap_enter_trace(XFS_IOMAP_READ_ENTER, ip, offset, count);
194 lockmode = xfs_ilock_map_shared(ip);
1da177e4 195 bmapi_flags = XFS_BMAPI_ENTIRE;
1da177e4
LT
196 break;
197 case BMAPI_WRITE:
541d7d3c 198 xfs_iomap_enter_trace(XFS_IOMAP_WRITE_ENTER, ip, offset, count);
579aa9ca 199 lockmode = XFS_ILOCK_EXCL;
c31e8878
NS
200 if (flags & BMAPI_IGNSTATE)
201 bmapi_flags |= XFS_BMAPI_IGSTATE|XFS_BMAPI_ENTIRE;
541d7d3c 202 xfs_ilock(ip, lockmode);
1da177e4
LT
203 break;
204 case BMAPI_ALLOCATE:
541d7d3c 205 xfs_iomap_enter_trace(XFS_IOMAP_ALLOC_ENTER, ip, offset, count);
579aa9ca 206 lockmode = XFS_ILOCK_SHARED;
1da177e4 207 bmapi_flags = XFS_BMAPI_ENTIRE;
541d7d3c 208
1da177e4
LT
209 /* Attempt non-blocking lock */
210 if (flags & BMAPI_TRYLOCK) {
541d7d3c 211 if (!xfs_ilock_nowait(ip, lockmode))
1da177e4
LT
212 return XFS_ERROR(EAGAIN);
213 } else {
541d7d3c 214 xfs_ilock(ip, lockmode);
1da177e4
LT
215 }
216 break;
1da177e4
LT
217 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
541d7d3c 227 error = xfs_bmapi(NULL, ip, offset_fsb,
1da177e4
LT
228 (xfs_filblks_t)(end_fsb - offset_fsb),
229 bmapi_flags, NULL, 0, &imap,
3e57ecf6 230 &nimaps, NULL, NULL);
1da177e4
LT
231
232 if (error)
233 goto out;
234
7642861b 235 switch (flags & (BMAPI_WRITE|BMAPI_ALLOCATE)) {
1da177e4
LT
236 case BMAPI_WRITE:
237 /* If we found an extent, return it */
68d1498c 238 if (nimaps &&
dd9f438e 239 (imap.br_startblock != HOLESTARTBLOCK) &&
68d1498c 240 (imap.br_startblock != DELAYSTARTBLOCK)) {
541d7d3c 241 xfs_iomap_map_trace(XFS_IOMAP_WRITE_MAP, ip,
1da177e4
LT
242 offset, count, iomapp, &imap, flags);
243 break;
244 }
245
246 if (flags & (BMAPI_DIRECT|BMAPI_MMAP)) {
541d7d3c
LM
247 error = xfs_iomap_write_direct(ip, offset, count, flags,
248 &imap, &nimaps, nimaps);
1da177e4 249 } else {
541d7d3c
LM
250 error = xfs_iomap_write_delay(ip, offset, count, flags,
251 &imap, &nimaps);
1da177e4
LT
252 }
253 if (!error) {
541d7d3c 254 xfs_iomap_map_trace(XFS_IOMAP_ALLOC_MAP, ip,
1da177e4
LT
255 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 */
541d7d3c 261 xfs_iunlock(ip, lockmode);
1da177e4
LT
262 lockmode = 0;
263
9d87c319 264 if (nimaps && !isnullstartblock(imap.br_startblock)) {
541d7d3c 265 xfs_iomap_map_trace(XFS_IOMAP_WRITE_MAP, ip,
1da177e4
LT
266 offset, count, iomapp, &imap, flags);
267 break;
268 }
269
541d7d3c 270 error = xfs_iomap_write_allocate(ip, offset, count,
24e17b5f 271 &imap, &nimaps);
1da177e4 272 break;
1da177e4
LT
273 }
274
275 if (nimaps) {
541d7d3c 276 *niomaps = xfs_imap_to_bmap(ip, offset, &imap,
1da177e4
LT
277 iomapp, nimaps, *niomaps, iomap_flags);
278 } else if (niomaps) {
279 *niomaps = 0;
280 }
281
282out:
283 if (lockmode)
541d7d3c 284 xfs_iunlock(ip, lockmode);
1da177e4
LT
285 return XFS_ERROR(error);
286}
287
541d7d3c 288
dd9f438e
NS
289STATIC int
290xfs_iomap_eof_align_last_fsb(
291 xfs_mount_t *mp,
541d7d3c 292 xfs_inode_t *ip,
dd9f438e
NS
293 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
71ddabb9 300 if (XFS_IS_REALTIME_INODE(ip))
dd9f438e
NS
301 ;
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) &&
9f6c92b9 308 (ip->i_size >= XFS_FSB_TO_B(mp, mp->m_swidth)))
dd9f438e
NS
309 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 */
9f6c92b9 315 else if (mp->m_dalign && (ip->i_size >= XFS_FSB_TO_B(mp, mp->m_dalign)))
dd9f438e
NS
316 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) {
541d7d3c 331 error = xfs_bmap_eof(ip, new_last_fsb, XFS_DATA_FORK, &eof);
dd9f438e
NS
332 if (error)
333 return error;
334 if (eof)
335 *last_fsb = new_last_fsb;
336 }
337 return 0;
338}
339
572d95f4
NS
340STATIC int
341xfs_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
1da177e4
LT
357int
358xfs_iomap_write_direct(
359 xfs_inode_t *ip,
f403b7f4 360 xfs_off_t offset,
1da177e4
LT
361 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;
1da177e4
LT
368 xfs_fileoff_t offset_fsb;
369 xfs_fileoff_t last_fsb;
dd9f438e 370 xfs_filblks_t count_fsb, resaligned;
1da177e4 371 xfs_fsblock_t firstfsb;
dd9f438e 372 xfs_extlen_t extsz, temp;
0116d935 373 int nimaps;
1da177e4 374 int bmapi_flag;
06d10dd9 375 int quota_flag;
1da177e4
LT
376 int rt;
377 xfs_trans_t *tp;
0116d935 378 xfs_bmbt_irec_t imap;
1da177e4 379 xfs_bmap_free_t free_list;
dd9f438e 380 uint qblocks, resblks, resrtextents;
1da177e4 381 int committed;
dd9f438e 382 int error;
1da177e4
LT
383
384 /*
385 * Make sure that the dquots are there. This doesn't hold
386 * the ilock across a disk read.
387 */
388 error = XFS_QM_DQATTACH(ip->i_mount, ip, XFS_QMOPT_ILOCKED);
389 if (error)
390 return XFS_ERROR(error);
391
dd9f438e 392 rt = XFS_IS_REALTIME_INODE(ip);
957d0ebe 393 extsz = xfs_get_extsz_hint(ip);
1da177e4 394
957d0ebe
DC
395 offset_fsb = XFS_B_TO_FSBT(mp, offset);
396 last_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)(offset + count)));
9f6c92b9
LM
397 if ((offset + count) > ip->i_size) {
398 error = xfs_iomap_eof_align_last_fsb(mp, ip, extsz, &last_fsb);
dd9f438e
NS
399 if (error)
400 goto error_out;
1da177e4 401 } else {
dd9f438e
NS
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);
1da177e4 406 }
dd9f438e
NS
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;
84e1e99f
DC
421 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
422 quota_flag = XFS_QMOPT_RES_RTBLKS;
423 } else {
424 resrtextents = 0;
dd9f438e 425 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resaligned);
84e1e99f
DC
426 quota_flag = XFS_QMOPT_RES_REGBLKS;
427 }
1da177e4
LT
428
429 /*
06d10dd9 430 * Allocate and setup the transaction
1da177e4
LT
431 */
432 xfs_iunlock(ip, XFS_ILOCK_EXCL);
433 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
1da177e4 434 error = xfs_trans_reserve(tp, resblks,
d52b44d0 435 XFS_WRITE_LOG_RES(mp), resrtextents,
1da177e4
LT
436 XFS_TRANS_PERM_LOG_RES,
437 XFS_WRITE_LOG_COUNT);
1da177e4 438 /*
06d10dd9 439 * Check for running out of space, note: need lock to return
1da177e4
LT
440 */
441 if (error)
1da177e4 442 xfs_trans_cancel(tp, 0);
1da177e4 443 xfs_ilock(ip, XFS_ILOCK_EXCL);
1da177e4 444 if (error)
06d10dd9 445 goto error_out;
1da177e4 446
dd9f438e
NS
447 error = XFS_TRANS_RESERVE_QUOTA_NBLKS(mp, tp, ip,
448 qblocks, 0, quota_flag);
449 if (error)
1da177e4 450 goto error1;
1da177e4 451
1da177e4
LT
452 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
453 xfs_trans_ihold(tp, ip);
454
dd9f438e 455 bmapi_flag = XFS_BMAPI_WRITE;
ba87ea69 456 if ((flags & BMAPI_DIRECT) && (offset < ip->i_size || extsz))
1da177e4
LT
457 bmapi_flag |= XFS_BMAPI_PREALLOC;
458
459 /*
dd9f438e 460 * Issue the xfs_bmapi() call to allocate the blocks
1da177e4 461 */
9d87c319 462 xfs_bmap_init(&free_list, &firstfsb);
06d10dd9 463 nimaps = 1;
541d7d3c 464 error = xfs_bmapi(tp, ip, offset_fsb, count_fsb, bmapi_flag,
3e57ecf6 465 &firstfsb, 0, &imap, &nimaps, &free_list, NULL);
06d10dd9 466 if (error)
1da177e4 467 goto error0;
1da177e4
LT
468
469 /*
06d10dd9 470 * Complete the transaction
1da177e4 471 */
f7c99b6f 472 error = xfs_bmap_finish(&tp, &free_list, &committed);
06d10dd9 473 if (error)
1da177e4 474 goto error0;
1c72bf90 475 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
06d10dd9 476 if (error)
1da177e4 477 goto error_out;
1da177e4 478
06d10dd9
NS
479 /*
480 * Copy any maps to caller's array and return any error.
481 */
1da177e4 482 if (nimaps == 0) {
572d95f4
NS
483 error = ENOSPC;
484 goto error_out;
485 }
486
86c4d623 487 if (!(imap.br_startblock || XFS_IS_REALTIME_INODE(ip))) {
572d95f4 488 error = xfs_cmn_err_fsblock_zero(ip, &imap);
1da177e4
LT
489 goto error_out;
490 }
491
0116d935 492 *ret_imap = imap;
1da177e4 493 *nmaps = 1;
1da177e4
LT
494 return 0;
495
06d10dd9 496error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
1da177e4 497 xfs_bmap_cancel(&free_list);
06d10dd9 498 XFS_TRANS_UNRESERVE_QUOTA_NBLKS(mp, tp, ip, qblocks, 0, quota_flag);
1da177e4 499
06d10dd9 500error1: /* Just cancel transaction */
1da177e4
LT
501 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
502 *nmaps = 0; /* nothing set-up here */
503
504error_out:
505 return XFS_ERROR(error);
506}
507
dd9f438e 508/*
8de2bf93
DC
509 * If the caller is doing a write at the end of the file, then extend the
510 * allocation out to the file system's write iosize. We clean up any extra
511 * space left over when the file is closed in xfs_inactive().
dd9f438e
NS
512 */
513STATIC int
514xfs_iomap_eof_want_preallocate(
515 xfs_mount_t *mp,
541d7d3c 516 xfs_inode_t *ip,
dd9f438e
NS
517 xfs_off_t offset,
518 size_t count,
519 int ioflag,
520 xfs_bmbt_irec_t *imap,
521 int nimaps,
522 int *prealloc)
523{
524 xfs_fileoff_t start_fsb;
525 xfs_filblks_t count_fsb;
526 xfs_fsblock_t firstblock;
527 int n, error, imaps;
528
529 *prealloc = 0;
8de2bf93 530 if ((offset + count) <= ip->i_size)
dd9f438e
NS
531 return 0;
532
533 /*
534 * If there are any real blocks past eof, then don't
535 * do any speculative allocation.
536 */
537 start_fsb = XFS_B_TO_FSBT(mp, ((xfs_ufsize_t)(offset + count - 1)));
538 count_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
539 while (count_fsb > 0) {
540 imaps = nimaps;
3ddb8fa9 541 firstblock = NULLFSBLOCK;
541d7d3c 542 error = xfs_bmapi(NULL, ip, start_fsb, count_fsb, 0,
3e57ecf6 543 &firstblock, 0, imap, &imaps, NULL, NULL);
dd9f438e
NS
544 if (error)
545 return error;
546 for (n = 0; n < imaps; n++) {
547 if ((imap[n].br_startblock != HOLESTARTBLOCK) &&
548 (imap[n].br_startblock != DELAYSTARTBLOCK))
549 return 0;
550 start_fsb += imap[n].br_blockcount;
551 count_fsb -= imap[n].br_blockcount;
552 }
553 }
554 *prealloc = 1;
555 return 0;
556}
557
1da177e4
LT
558int
559xfs_iomap_write_delay(
560 xfs_inode_t *ip,
f403b7f4 561 xfs_off_t offset,
1da177e4
LT
562 size_t count,
563 int ioflag,
564 xfs_bmbt_irec_t *ret_imap,
565 int *nmaps)
566{
567 xfs_mount_t *mp = ip->i_mount;
1da177e4
LT
568 xfs_fileoff_t offset_fsb;
569 xfs_fileoff_t last_fsb;
dd9f438e
NS
570 xfs_off_t aligned_offset;
571 xfs_fileoff_t ioalign;
1da177e4 572 xfs_fsblock_t firstblock;
dd9f438e 573 xfs_extlen_t extsz;
1da177e4 574 int nimaps;
1da177e4 575 xfs_bmbt_irec_t imap[XFS_WRITE_IMAPS];
8de2bf93 576 int prealloc, flushed = 0;
dd9f438e 577 int error;
1da177e4 578
579aa9ca 579 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1da177e4
LT
580
581 /*
582 * Make sure that the dquots are there. This doesn't hold
583 * the ilock across a disk read.
584 */
1da177e4
LT
585 error = XFS_QM_DQATTACH(mp, ip, XFS_QMOPT_ILOCKED);
586 if (error)
587 return XFS_ERROR(error);
588
957d0ebe 589 extsz = xfs_get_extsz_hint(ip);
dd9f438e
NS
590 offset_fsb = XFS_B_TO_FSBT(mp, offset);
591
9f6c92b9 592 error = xfs_iomap_eof_want_preallocate(mp, ip, offset, count,
dd9f438e
NS
593 ioflag, imap, XFS_WRITE_IMAPS, &prealloc);
594 if (error)
595 return error;
1da177e4 596
8de2bf93 597retry:
dd9f438e 598 if (prealloc) {
1da177e4
LT
599 aligned_offset = XFS_WRITEIO_ALIGN(mp, (offset + count - 1));
600 ioalign = XFS_B_TO_FSBT(mp, aligned_offset);
dd9f438e
NS
601 last_fsb = ioalign + mp->m_writeio_blocks;
602 } else {
603 last_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)(offset + count)));
1da177e4 604 }
1da177e4 605
dd9f438e 606 if (prealloc || extsz) {
9f6c92b9 607 error = xfs_iomap_eof_align_last_fsb(mp, ip, extsz, &last_fsb);
dd9f438e 608 if (error)
1da177e4 609 return error;
1da177e4 610 }
dd9f438e
NS
611
612 nimaps = XFS_WRITE_IMAPS;
613 firstblock = NULLFSBLOCK;
541d7d3c 614 error = xfs_bmapi(NULL, ip, offset_fsb,
1da177e4
LT
615 (xfs_filblks_t)(last_fsb - offset_fsb),
616 XFS_BMAPI_DELAY | XFS_BMAPI_WRITE |
617 XFS_BMAPI_ENTIRE, &firstblock, 1, imap,
3e57ecf6 618 &nimaps, NULL, NULL);
dd9f438e 619 if (error && (error != ENOSPC))
1da177e4 620 return XFS_ERROR(error);
dd9f438e 621
1da177e4
LT
622 /*
623 * If bmapi returned us nothing, and if we didn't get back EDQUOT,
8de2bf93
DC
624 * then we must have run out of space - flush all other inodes with
625 * delalloc blocks and retry without EOF preallocation.
1da177e4
LT
626 */
627 if (nimaps == 0) {
628 xfs_iomap_enter_trace(XFS_IOMAP_WRITE_NOSPACE,
541d7d3c 629 ip, offset, count);
8de2bf93 630 if (flushed)
1da177e4
LT
631 return XFS_ERROR(ENOSPC);
632
8de2bf93
DC
633 xfs_iunlock(ip, XFS_ILOCK_EXCL);
634 xfs_flush_inodes(ip);
635 xfs_ilock(ip, XFS_ILOCK_EXCL);
636
637 flushed = 1;
1da177e4 638 error = 0;
8de2bf93 639 prealloc = 0;
1da177e4
LT
640 goto retry;
641 }
642
86c4d623 643 if (!(imap[0].br_startblock || XFS_IS_REALTIME_INODE(ip)))
572d95f4 644 return xfs_cmn_err_fsblock_zero(ip, &imap[0]);
dd9f438e
NS
645
646 *ret_imap = imap[0];
647 *nmaps = 1;
648
1da177e4
LT
649 return 0;
650}
651
652/*
653 * Pass in a delayed allocate extent, convert it to real extents;
654 * return to the caller the extent we create which maps on top of
655 * the originating callers request.
656 *
657 * Called without a lock on the inode.
e4143a1c
DC
658 *
659 * We no longer bother to look at the incoming map - all we have to
660 * guarantee is that whatever we allocate fills the required range.
1da177e4
LT
661 */
662int
663xfs_iomap_write_allocate(
664 xfs_inode_t *ip,
f403b7f4 665 xfs_off_t offset,
24e17b5f 666 size_t count,
1da177e4
LT
667 xfs_bmbt_irec_t *map,
668 int *retmap)
669{
670 xfs_mount_t *mp = ip->i_mount;
1da177e4
LT
671 xfs_fileoff_t offset_fsb, last_block;
672 xfs_fileoff_t end_fsb, map_start_fsb;
673 xfs_fsblock_t first_block;
674 xfs_bmap_free_t free_list;
675 xfs_filblks_t count_fsb;
e4143a1c 676 xfs_bmbt_irec_t imap;
1da177e4 677 xfs_trans_t *tp;
e4143a1c 678 int nimaps, committed;
1da177e4
LT
679 int error = 0;
680 int nres;
681
682 *retmap = 0;
683
684 /*
685 * Make sure that the dquots are there.
686 */
687 if ((error = XFS_QM_DQATTACH(mp, ip, 0)))
688 return XFS_ERROR(error);
689
24e17b5f 690 offset_fsb = XFS_B_TO_FSBT(mp, offset);
1da177e4 691 count_fsb = map->br_blockcount;
24e17b5f 692 map_start_fsb = map->br_startoff;
1da177e4
LT
693
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);
84e1e99f 709 tp->t_flags |= XFS_TRANS_RESERVE;
1da177e4
LT
710 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);
1da177e4
LT
715 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
9d87c319 723 xfs_bmap_init(&free_list, &first_block);
1da177e4 724
1da177e4 725 /*
e4143a1c
DC
726 * 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....
1da177e4 755 */
e4143a1c 756 nimaps = 1;
ba87ea69 757 end_fsb = XFS_B_TO_FSB(mp, ip->i_size);
7c9ef85c
DC
758 error = xfs_bmap_last_offset(NULL, ip, &last_block,
759 XFS_DATA_FORK);
760 if (error)
761 goto trans_cancel;
762
1da177e4
LT
763 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 */
541d7d3c 773 error = xfs_bmapi(tp, ip, map_start_fsb, count_fsb,
1da177e4 774 XFS_BMAPI_WRITE, &first_block, 1,
e4143a1c 775 &imap, &nimaps, &free_list, NULL);
1da177e4
LT
776 if (error)
777 goto trans_cancel;
778
f7c99b6f 779 error = xfs_bmap_finish(&tp, &free_list, &committed);
1da177e4
LT
780 if (error)
781 goto trans_cancel;
782
1c72bf90 783 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1da177e4
LT
784 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 */
86c4d623 794 if (!(imap.br_startblock || XFS_IS_REALTIME_INODE(ip)))
e4143a1c 795 return xfs_cmn_err_fsblock_zero(ip, &imap);
86c4d623 796
e4143a1c
DC
797 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;
1da177e4
LT
804 }
805
e4143a1c
DC
806 /*
807 * So far we have not mapped the requested part of the
1da177e4
LT
808 * file, just surrounding data, try again.
809 */
e4143a1c
DC
810 count_fsb -= imap.br_blockcount;
811 map_start_fsb = imap.br_startoff + imap.br_blockcount;
1da177e4
LT
812 }
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,
f403b7f4 825 xfs_off_t offset,
1da177e4
LT
826 size_t count)
827{
828 xfs_mount_t *mp = ip->i_mount;
1da177e4
LT
829 xfs_fileoff_t offset_fsb;
830 xfs_filblks_t count_fsb;
831 xfs_filblks_t numblks_fsb;
dd9f438e
NS
832 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;
1da177e4
LT
838 int committed;
839 int error;
1da177e4 840
541d7d3c 841 xfs_iomap_enter_trace(XFS_IOMAP_UNWRITTEN, ip, offset, count);
1da177e4
LT
842
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
4ddd8bb1
LM
847 /*
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 */
dd9f438e 857 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0) << 1;
1da177e4 858
dd9f438e 859 do {
1da177e4
LT
860 /*
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 */
1da177e4 865 tp = xfs_trans_alloc(mp, XFS_TRANS_STRAT_WRITE);
84e1e99f 866 tp->t_flags |= XFS_TRANS_RESERVE;
dd9f438e 867 error = xfs_trans_reserve(tp, resblks,
1da177e4
LT
868 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);
572d95f4 873 return XFS_ERROR(error);
1da177e4
LT
874 }
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 */
9d87c319 883 xfs_bmap_init(&free_list, &firstfsb);
1da177e4 884 nimaps = 1;
541d7d3c 885 error = xfs_bmapi(tp, ip, offset_fsb, count_fsb,
dd9f438e 886 XFS_BMAPI_WRITE|XFS_BMAPI_CONVERT, &firstfsb,
3e57ecf6 887 1, &imap, &nimaps, &free_list, NULL);
1da177e4
LT
888 if (error)
889 goto error_on_bmapi_transaction;
890
f7c99b6f 891 error = xfs_bmap_finish(&(tp), &(free_list), &committed);
1da177e4
LT
892 if (error)
893 goto error_on_bmapi_transaction;
894
1c72bf90 895 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1da177e4
LT
896 xfs_iunlock(ip, XFS_ILOCK_EXCL);
897 if (error)
572d95f4
NS
898 return XFS_ERROR(error);
899
86c4d623 900 if (!(imap.br_startblock || XFS_IS_REALTIME_INODE(ip)))
572d95f4 901 return xfs_cmn_err_fsblock_zero(ip, &imap);
1da177e4
LT
902
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);
1da177e4
LT
921 return XFS_ERROR(error);
922}