xfs: kill struct xfs_iomap
[deliverable/linux.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"
1da177e4
LT
45#include "xfs_attr.h"
46#include "xfs_buf_item.h"
47#include "xfs_trans_space.h"
48#include "xfs_utils.h"
49#include "xfs_iomap.h"
0b1b213f 50#include "xfs_trace.h"
1da177e4 51
1da177e4
LT
52
53#define XFS_WRITEIO_ALIGN(mp,off) (((off) >> mp->m_writeio_log) \
54 << mp->m_writeio_log)
55#define XFS_STRAT_WRITE_IMAPS 2
56#define XFS_WRITE_IMAPS XFS_BMAP_MAX_NMAP
57
1da177e4
LT
58int
59xfs_iomap(
207d0416
CH
60 struct xfs_inode *ip,
61 xfs_off_t offset,
62 ssize_t count,
63 int flags,
64 struct xfs_bmbt_irec *imap,
65 int *nimaps,
66 int *new)
1da177e4 67{
207d0416
CH
68 struct xfs_mount *mp = ip->i_mount;
69 xfs_fileoff_t offset_fsb, end_fsb;
70 int error = 0;
71 int lockmode = 0;
72 int bmapi_flags = 0;
1da177e4 73
541d7d3c 74 ASSERT((ip->i_d.di_mode & S_IFMT) == S_IFREG);
207d0416
CH
75
76 *new = 0;
541d7d3c 77
1da177e4
LT
78 if (XFS_FORCED_SHUTDOWN(mp))
79 return XFS_ERROR(EIO);
80
0b1b213f
CH
81 trace_xfs_iomap_enter(ip, offset, count, flags, NULL);
82
7642861b 83 switch (flags & (BMAPI_READ | BMAPI_WRITE | BMAPI_ALLOCATE)) {
1da177e4 84 case BMAPI_READ:
541d7d3c 85 lockmode = xfs_ilock_map_shared(ip);
1da177e4 86 bmapi_flags = XFS_BMAPI_ENTIRE;
1da177e4
LT
87 break;
88 case BMAPI_WRITE:
579aa9ca 89 lockmode = XFS_ILOCK_EXCL;
c31e8878
NS
90 if (flags & BMAPI_IGNSTATE)
91 bmapi_flags |= XFS_BMAPI_IGSTATE|XFS_BMAPI_ENTIRE;
541d7d3c 92 xfs_ilock(ip, lockmode);
1da177e4
LT
93 break;
94 case BMAPI_ALLOCATE:
579aa9ca 95 lockmode = XFS_ILOCK_SHARED;
1da177e4 96 bmapi_flags = XFS_BMAPI_ENTIRE;
541d7d3c 97
1da177e4
LT
98 /* Attempt non-blocking lock */
99 if (flags & BMAPI_TRYLOCK) {
541d7d3c 100 if (!xfs_ilock_nowait(ip, lockmode))
1da177e4
LT
101 return XFS_ERROR(EAGAIN);
102 } else {
541d7d3c 103 xfs_ilock(ip, lockmode);
1da177e4
LT
104 }
105 break;
1da177e4
LT
106 default:
107 BUG();
108 }
109
110 ASSERT(offset <= mp->m_maxioffset);
111 if ((xfs_fsize_t)offset + count > mp->m_maxioffset)
112 count = mp->m_maxioffset - offset;
113 end_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count);
114 offset_fsb = XFS_B_TO_FSBT(mp, offset);
115
541d7d3c 116 error = xfs_bmapi(NULL, ip, offset_fsb,
1da177e4 117 (xfs_filblks_t)(end_fsb - offset_fsb),
207d0416
CH
118 bmapi_flags, NULL, 0, imap,
119 nimaps, NULL, NULL);
1da177e4
LT
120
121 if (error)
122 goto out;
123
7642861b 124 switch (flags & (BMAPI_WRITE|BMAPI_ALLOCATE)) {
1da177e4
LT
125 case BMAPI_WRITE:
126 /* If we found an extent, return it */
207d0416
CH
127 if (*nimaps &&
128 (imap->br_startblock != HOLESTARTBLOCK) &&
129 (imap->br_startblock != DELAYSTARTBLOCK)) {
130 trace_xfs_iomap_found(ip, offset, count, flags, imap);
1da177e4
LT
131 break;
132 }
133
134 if (flags & (BMAPI_DIRECT|BMAPI_MMAP)) {
541d7d3c 135 error = xfs_iomap_write_direct(ip, offset, count, flags,
207d0416 136 imap, nimaps, *nimaps);
1da177e4 137 } else {
541d7d3c 138 error = xfs_iomap_write_delay(ip, offset, count, flags,
207d0416 139 imap, nimaps);
1da177e4
LT
140 }
141 if (!error) {
207d0416 142 trace_xfs_iomap_alloc(ip, offset, count, flags, imap);
1da177e4 143 }
207d0416 144 *new = 1;
1da177e4
LT
145 break;
146 case BMAPI_ALLOCATE:
147 /* If we found an extent, return it */
541d7d3c 148 xfs_iunlock(ip, lockmode);
1da177e4
LT
149 lockmode = 0;
150
207d0416
CH
151 if (*nimaps && !isnullstartblock(imap->br_startblock)) {
152 trace_xfs_iomap_found(ip, offset, count, flags, imap);
1da177e4
LT
153 break;
154 }
155
541d7d3c 156 error = xfs_iomap_write_allocate(ip, offset, count,
207d0416 157 imap, nimaps);
1da177e4 158 break;
1da177e4
LT
159 }
160
207d0416 161 ASSERT(*nimaps <= 1);
1da177e4
LT
162
163out:
164 if (lockmode)
541d7d3c 165 xfs_iunlock(ip, lockmode);
1da177e4
LT
166 return XFS_ERROR(error);
167}
168
dd9f438e
NS
169STATIC int
170xfs_iomap_eof_align_last_fsb(
171 xfs_mount_t *mp,
541d7d3c 172 xfs_inode_t *ip,
dd9f438e
NS
173 xfs_extlen_t extsize,
174 xfs_fileoff_t *last_fsb)
175{
176 xfs_fileoff_t new_last_fsb = 0;
177 xfs_extlen_t align;
178 int eof, error;
179
71ddabb9 180 if (XFS_IS_REALTIME_INODE(ip))
dd9f438e
NS
181 ;
182 /*
183 * If mounted with the "-o swalloc" option, roundup the allocation
184 * request to a stripe width boundary if the file size is >=
185 * stripe width and we are allocating past the allocation eof.
186 */
187 else if (mp->m_swidth && (mp->m_flags & XFS_MOUNT_SWALLOC) &&
9f6c92b9 188 (ip->i_size >= XFS_FSB_TO_B(mp, mp->m_swidth)))
dd9f438e
NS
189 new_last_fsb = roundup_64(*last_fsb, mp->m_swidth);
190 /*
191 * Roundup the allocation request to a stripe unit (m_dalign) boundary
192 * if the file size is >= stripe unit size, and we are allocating past
193 * the allocation eof.
194 */
9f6c92b9 195 else if (mp->m_dalign && (ip->i_size >= XFS_FSB_TO_B(mp, mp->m_dalign)))
dd9f438e
NS
196 new_last_fsb = roundup_64(*last_fsb, mp->m_dalign);
197
198 /*
199 * Always round up the allocation request to an extent boundary
200 * (when file on a real-time subvolume or has di_extsize hint).
201 */
202 if (extsize) {
203 if (new_last_fsb)
204 align = roundup_64(new_last_fsb, extsize);
205 else
206 align = extsize;
207 new_last_fsb = roundup_64(*last_fsb, align);
208 }
209
210 if (new_last_fsb) {
541d7d3c 211 error = xfs_bmap_eof(ip, new_last_fsb, XFS_DATA_FORK, &eof);
dd9f438e
NS
212 if (error)
213 return error;
214 if (eof)
215 *last_fsb = new_last_fsb;
216 }
217 return 0;
218}
219
572d95f4
NS
220STATIC int
221xfs_cmn_err_fsblock_zero(
222 xfs_inode_t *ip,
223 xfs_bmbt_irec_t *imap)
224{
225 xfs_cmn_err(XFS_PTAG_FSBLOCK_ZERO, CE_ALERT, ip->i_mount,
226 "Access to block zero in inode %llu "
227 "start_block: %llx start_off: %llx "
228 "blkcnt: %llx extent-state: %x\n",
229 (unsigned long long)ip->i_ino,
230 (unsigned long long)imap->br_startblock,
231 (unsigned long long)imap->br_startoff,
232 (unsigned long long)imap->br_blockcount,
233 imap->br_state);
234 return EFSCORRUPTED;
235}
236
1da177e4
LT
237int
238xfs_iomap_write_direct(
239 xfs_inode_t *ip,
f403b7f4 240 xfs_off_t offset,
1da177e4
LT
241 size_t count,
242 int flags,
243 xfs_bmbt_irec_t *ret_imap,
244 int *nmaps,
245 int found)
246{
247 xfs_mount_t *mp = ip->i_mount;
1da177e4
LT
248 xfs_fileoff_t offset_fsb;
249 xfs_fileoff_t last_fsb;
dd9f438e 250 xfs_filblks_t count_fsb, resaligned;
1da177e4 251 xfs_fsblock_t firstfsb;
dd9f438e 252 xfs_extlen_t extsz, temp;
0116d935 253 int nimaps;
1da177e4 254 int bmapi_flag;
06d10dd9 255 int quota_flag;
1da177e4
LT
256 int rt;
257 xfs_trans_t *tp;
0116d935 258 xfs_bmbt_irec_t imap;
1da177e4 259 xfs_bmap_free_t free_list;
dd9f438e 260 uint qblocks, resblks, resrtextents;
1da177e4 261 int committed;
dd9f438e 262 int error;
1da177e4
LT
263
264 /*
265 * Make sure that the dquots are there. This doesn't hold
266 * the ilock across a disk read.
267 */
7d095257 268 error = xfs_qm_dqattach_locked(ip, 0);
1da177e4
LT
269 if (error)
270 return XFS_ERROR(error);
271
dd9f438e 272 rt = XFS_IS_REALTIME_INODE(ip);
957d0ebe 273 extsz = xfs_get_extsz_hint(ip);
1da177e4 274
957d0ebe
DC
275 offset_fsb = XFS_B_TO_FSBT(mp, offset);
276 last_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)(offset + count)));
9f6c92b9
LM
277 if ((offset + count) > ip->i_size) {
278 error = xfs_iomap_eof_align_last_fsb(mp, ip, extsz, &last_fsb);
dd9f438e
NS
279 if (error)
280 goto error_out;
1da177e4 281 } else {
dd9f438e
NS
282 if (found && (ret_imap->br_startblock == HOLESTARTBLOCK))
283 last_fsb = MIN(last_fsb, (xfs_fileoff_t)
284 ret_imap->br_blockcount +
285 ret_imap->br_startoff);
1da177e4 286 }
dd9f438e
NS
287 count_fsb = last_fsb - offset_fsb;
288 ASSERT(count_fsb > 0);
289
290 resaligned = count_fsb;
291 if (unlikely(extsz)) {
292 if ((temp = do_mod(offset_fsb, extsz)))
293 resaligned += temp;
294 if ((temp = do_mod(resaligned, extsz)))
295 resaligned += extsz - temp;
296 }
297
298 if (unlikely(rt)) {
299 resrtextents = qblocks = resaligned;
300 resrtextents /= mp->m_sb.sb_rextsize;
84e1e99f
DC
301 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0);
302 quota_flag = XFS_QMOPT_RES_RTBLKS;
303 } else {
304 resrtextents = 0;
dd9f438e 305 resblks = qblocks = XFS_DIOSTRAT_SPACE_RES(mp, resaligned);
84e1e99f
DC
306 quota_flag = XFS_QMOPT_RES_REGBLKS;
307 }
1da177e4
LT
308
309 /*
06d10dd9 310 * Allocate and setup the transaction
1da177e4
LT
311 */
312 xfs_iunlock(ip, XFS_ILOCK_EXCL);
313 tp = xfs_trans_alloc(mp, XFS_TRANS_DIOSTRAT);
1da177e4 314 error = xfs_trans_reserve(tp, resblks,
d52b44d0 315 XFS_WRITE_LOG_RES(mp), resrtextents,
1da177e4
LT
316 XFS_TRANS_PERM_LOG_RES,
317 XFS_WRITE_LOG_COUNT);
1da177e4 318 /*
06d10dd9 319 * Check for running out of space, note: need lock to return
1da177e4
LT
320 */
321 if (error)
1da177e4 322 xfs_trans_cancel(tp, 0);
1da177e4 323 xfs_ilock(ip, XFS_ILOCK_EXCL);
1da177e4 324 if (error)
06d10dd9 325 goto error_out;
1da177e4 326
7d095257 327 error = xfs_trans_reserve_quota_nblks(tp, ip, qblocks, 0, quota_flag);
dd9f438e 328 if (error)
1da177e4 329 goto error1;
1da177e4 330
1da177e4
LT
331 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
332 xfs_trans_ihold(tp, ip);
333
dd9f438e 334 bmapi_flag = XFS_BMAPI_WRITE;
ba87ea69 335 if ((flags & BMAPI_DIRECT) && (offset < ip->i_size || extsz))
1da177e4
LT
336 bmapi_flag |= XFS_BMAPI_PREALLOC;
337
338 /*
dd9f438e 339 * Issue the xfs_bmapi() call to allocate the blocks
1da177e4 340 */
9d87c319 341 xfs_bmap_init(&free_list, &firstfsb);
06d10dd9 342 nimaps = 1;
541d7d3c 343 error = xfs_bmapi(tp, ip, offset_fsb, count_fsb, bmapi_flag,
3e57ecf6 344 &firstfsb, 0, &imap, &nimaps, &free_list, NULL);
06d10dd9 345 if (error)
1da177e4 346 goto error0;
1da177e4
LT
347
348 /*
06d10dd9 349 * Complete the transaction
1da177e4 350 */
f7c99b6f 351 error = xfs_bmap_finish(&tp, &free_list, &committed);
06d10dd9 352 if (error)
1da177e4 353 goto error0;
1c72bf90 354 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
06d10dd9 355 if (error)
1da177e4 356 goto error_out;
1da177e4 357
06d10dd9
NS
358 /*
359 * Copy any maps to caller's array and return any error.
360 */
1da177e4 361 if (nimaps == 0) {
572d95f4
NS
362 error = ENOSPC;
363 goto error_out;
364 }
365
86c4d623 366 if (!(imap.br_startblock || XFS_IS_REALTIME_INODE(ip))) {
572d95f4 367 error = xfs_cmn_err_fsblock_zero(ip, &imap);
1da177e4
LT
368 goto error_out;
369 }
370
0116d935 371 *ret_imap = imap;
1da177e4 372 *nmaps = 1;
1da177e4
LT
373 return 0;
374
06d10dd9 375error0: /* Cancel bmap, unlock inode, unreserve quota blocks, cancel trans */
1da177e4 376 xfs_bmap_cancel(&free_list);
7d095257 377 xfs_trans_unreserve_quota_nblks(tp, ip, qblocks, 0, quota_flag);
1da177e4 378
06d10dd9 379error1: /* Just cancel transaction */
1da177e4
LT
380 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
381 *nmaps = 0; /* nothing set-up here */
382
383error_out:
384 return XFS_ERROR(error);
385}
386
dd9f438e 387/*
8de2bf93
DC
388 * If the caller is doing a write at the end of the file, then extend the
389 * allocation out to the file system's write iosize. We clean up any extra
390 * space left over when the file is closed in xfs_inactive().
dd9f438e
NS
391 */
392STATIC int
393xfs_iomap_eof_want_preallocate(
394 xfs_mount_t *mp,
541d7d3c 395 xfs_inode_t *ip,
dd9f438e
NS
396 xfs_off_t offset,
397 size_t count,
398 int ioflag,
399 xfs_bmbt_irec_t *imap,
400 int nimaps,
401 int *prealloc)
402{
403 xfs_fileoff_t start_fsb;
404 xfs_filblks_t count_fsb;
405 xfs_fsblock_t firstblock;
406 int n, error, imaps;
407
408 *prealloc = 0;
8de2bf93 409 if ((offset + count) <= ip->i_size)
dd9f438e
NS
410 return 0;
411
412 /*
413 * If there are any real blocks past eof, then don't
414 * do any speculative allocation.
415 */
416 start_fsb = XFS_B_TO_FSBT(mp, ((xfs_ufsize_t)(offset + count - 1)));
417 count_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)XFS_MAXIOFFSET(mp));
418 while (count_fsb > 0) {
419 imaps = nimaps;
3ddb8fa9 420 firstblock = NULLFSBLOCK;
541d7d3c 421 error = xfs_bmapi(NULL, ip, start_fsb, count_fsb, 0,
3e57ecf6 422 &firstblock, 0, imap, &imaps, NULL, NULL);
dd9f438e
NS
423 if (error)
424 return error;
425 for (n = 0; n < imaps; n++) {
426 if ((imap[n].br_startblock != HOLESTARTBLOCK) &&
427 (imap[n].br_startblock != DELAYSTARTBLOCK))
428 return 0;
429 start_fsb += imap[n].br_blockcount;
430 count_fsb -= imap[n].br_blockcount;
431 }
432 }
433 *prealloc = 1;
434 return 0;
435}
436
1da177e4
LT
437int
438xfs_iomap_write_delay(
439 xfs_inode_t *ip,
f403b7f4 440 xfs_off_t offset,
1da177e4
LT
441 size_t count,
442 int ioflag,
443 xfs_bmbt_irec_t *ret_imap,
444 int *nmaps)
445{
446 xfs_mount_t *mp = ip->i_mount;
1da177e4
LT
447 xfs_fileoff_t offset_fsb;
448 xfs_fileoff_t last_fsb;
dd9f438e
NS
449 xfs_off_t aligned_offset;
450 xfs_fileoff_t ioalign;
1da177e4 451 xfs_fsblock_t firstblock;
dd9f438e 452 xfs_extlen_t extsz;
1da177e4 453 int nimaps;
1da177e4 454 xfs_bmbt_irec_t imap[XFS_WRITE_IMAPS];
8de2bf93 455 int prealloc, flushed = 0;
dd9f438e 456 int error;
1da177e4 457
579aa9ca 458 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
1da177e4
LT
459
460 /*
461 * Make sure that the dquots are there. This doesn't hold
462 * the ilock across a disk read.
463 */
7d095257 464 error = xfs_qm_dqattach_locked(ip, 0);
1da177e4
LT
465 if (error)
466 return XFS_ERROR(error);
467
957d0ebe 468 extsz = xfs_get_extsz_hint(ip);
dd9f438e
NS
469 offset_fsb = XFS_B_TO_FSBT(mp, offset);
470
9f6c92b9 471 error = xfs_iomap_eof_want_preallocate(mp, ip, offset, count,
dd9f438e
NS
472 ioflag, imap, XFS_WRITE_IMAPS, &prealloc);
473 if (error)
474 return error;
1da177e4 475
8de2bf93 476retry:
dd9f438e 477 if (prealloc) {
1da177e4
LT
478 aligned_offset = XFS_WRITEIO_ALIGN(mp, (offset + count - 1));
479 ioalign = XFS_B_TO_FSBT(mp, aligned_offset);
dd9f438e
NS
480 last_fsb = ioalign + mp->m_writeio_blocks;
481 } else {
482 last_fsb = XFS_B_TO_FSB(mp, ((xfs_ufsize_t)(offset + count)));
1da177e4 483 }
1da177e4 484
dd9f438e 485 if (prealloc || extsz) {
9f6c92b9 486 error = xfs_iomap_eof_align_last_fsb(mp, ip, extsz, &last_fsb);
dd9f438e 487 if (error)
1da177e4 488 return error;
1da177e4 489 }
dd9f438e
NS
490
491 nimaps = XFS_WRITE_IMAPS;
492 firstblock = NULLFSBLOCK;
541d7d3c 493 error = xfs_bmapi(NULL, ip, offset_fsb,
1da177e4
LT
494 (xfs_filblks_t)(last_fsb - offset_fsb),
495 XFS_BMAPI_DELAY | XFS_BMAPI_WRITE |
496 XFS_BMAPI_ENTIRE, &firstblock, 1, imap,
3e57ecf6 497 &nimaps, NULL, NULL);
dd9f438e 498 if (error && (error != ENOSPC))
1da177e4 499 return XFS_ERROR(error);
dd9f438e 500
1da177e4
LT
501 /*
502 * If bmapi returned us nothing, and if we didn't get back EDQUOT,
8de2bf93
DC
503 * then we must have run out of space - flush all other inodes with
504 * delalloc blocks and retry without EOF preallocation.
1da177e4
LT
505 */
506 if (nimaps == 0) {
0b1b213f 507 trace_xfs_delalloc_enospc(ip, offset, count);
8de2bf93 508 if (flushed)
1da177e4
LT
509 return XFS_ERROR(ENOSPC);
510
8de2bf93
DC
511 xfs_iunlock(ip, XFS_ILOCK_EXCL);
512 xfs_flush_inodes(ip);
513 xfs_ilock(ip, XFS_ILOCK_EXCL);
514
515 flushed = 1;
1da177e4 516 error = 0;
8de2bf93 517 prealloc = 0;
1da177e4
LT
518 goto retry;
519 }
520
86c4d623 521 if (!(imap[0].br_startblock || XFS_IS_REALTIME_INODE(ip)))
572d95f4 522 return xfs_cmn_err_fsblock_zero(ip, &imap[0]);
dd9f438e
NS
523
524 *ret_imap = imap[0];
525 *nmaps = 1;
526
1da177e4
LT
527 return 0;
528}
529
530/*
531 * Pass in a delayed allocate extent, convert it to real extents;
532 * return to the caller the extent we create which maps on top of
533 * the originating callers request.
534 *
535 * Called without a lock on the inode.
e4143a1c
DC
536 *
537 * We no longer bother to look at the incoming map - all we have to
538 * guarantee is that whatever we allocate fills the required range.
1da177e4
LT
539 */
540int
541xfs_iomap_write_allocate(
542 xfs_inode_t *ip,
f403b7f4 543 xfs_off_t offset,
24e17b5f 544 size_t count,
1da177e4
LT
545 xfs_bmbt_irec_t *map,
546 int *retmap)
547{
548 xfs_mount_t *mp = ip->i_mount;
1da177e4
LT
549 xfs_fileoff_t offset_fsb, last_block;
550 xfs_fileoff_t end_fsb, map_start_fsb;
551 xfs_fsblock_t first_block;
552 xfs_bmap_free_t free_list;
553 xfs_filblks_t count_fsb;
e4143a1c 554 xfs_bmbt_irec_t imap;
1da177e4 555 xfs_trans_t *tp;
e4143a1c 556 int nimaps, committed;
1da177e4
LT
557 int error = 0;
558 int nres;
559
560 *retmap = 0;
561
562 /*
563 * Make sure that the dquots are there.
564 */
7d095257
CH
565 error = xfs_qm_dqattach(ip, 0);
566 if (error)
1da177e4
LT
567 return XFS_ERROR(error);
568
24e17b5f 569 offset_fsb = XFS_B_TO_FSBT(mp, offset);
1da177e4 570 count_fsb = map->br_blockcount;
24e17b5f 571 map_start_fsb = map->br_startoff;
1da177e4
LT
572
573 XFS_STATS_ADD(xs_xstrat_bytes, XFS_FSB_TO_B(mp, count_fsb));
574
575 while (count_fsb != 0) {
576 /*
577 * Set up a transaction with which to allocate the
578 * backing store for the file. Do allocations in a
579 * loop until we get some space in the range we are
580 * interested in. The other space that might be allocated
581 * is in the delayed allocation extent on which we sit
582 * but before our buffer starts.
583 */
584
585 nimaps = 0;
586 while (nimaps == 0) {
587 tp = xfs_trans_alloc(mp, XFS_TRANS_STRAT_WRITE);
84e1e99f 588 tp->t_flags |= XFS_TRANS_RESERVE;
1da177e4
LT
589 nres = XFS_EXTENTADD_SPACE_RES(mp, XFS_DATA_FORK);
590 error = xfs_trans_reserve(tp, nres,
591 XFS_WRITE_LOG_RES(mp),
592 0, XFS_TRANS_PERM_LOG_RES,
593 XFS_WRITE_LOG_COUNT);
1da177e4
LT
594 if (error) {
595 xfs_trans_cancel(tp, 0);
596 return XFS_ERROR(error);
597 }
598 xfs_ilock(ip, XFS_ILOCK_EXCL);
599 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
600 xfs_trans_ihold(tp, ip);
601
9d87c319 602 xfs_bmap_init(&free_list, &first_block);
1da177e4 603
1da177e4 604 /*
e4143a1c
DC
605 * it is possible that the extents have changed since
606 * we did the read call as we dropped the ilock for a
607 * while. We have to be careful about truncates or hole
608 * punchs here - we are not allowed to allocate
609 * non-delalloc blocks here.
610 *
611 * The only protection against truncation is the pages
612 * for the range we are being asked to convert are
613 * locked and hence a truncate will block on them
614 * first.
615 *
616 * As a result, if we go beyond the range we really
617 * need and hit an delalloc extent boundary followed by
618 * a hole while we have excess blocks in the map, we
619 * will fill the hole incorrectly and overrun the
620 * transaction reservation.
621 *
622 * Using a single map prevents this as we are forced to
623 * check each map we look for overlap with the desired
624 * range and abort as soon as we find it. Also, given
625 * that we only return a single map, having one beyond
626 * what we can return is probably a bit silly.
627 *
628 * We also need to check that we don't go beyond EOF;
629 * this is a truncate optimisation as a truncate sets
630 * the new file size before block on the pages we
631 * currently have locked under writeback. Because they
632 * are about to be tossed, we don't need to write them
633 * back....
1da177e4 634 */
e4143a1c 635 nimaps = 1;
ba87ea69 636 end_fsb = XFS_B_TO_FSB(mp, ip->i_size);
7c9ef85c
DC
637 error = xfs_bmap_last_offset(NULL, ip, &last_block,
638 XFS_DATA_FORK);
639 if (error)
640 goto trans_cancel;
641
1da177e4
LT
642 last_block = XFS_FILEOFF_MAX(last_block, end_fsb);
643 if ((map_start_fsb + count_fsb) > last_block) {
644 count_fsb = last_block - map_start_fsb;
645 if (count_fsb == 0) {
646 error = EAGAIN;
647 goto trans_cancel;
648 }
649 }
650
651 /* Go get the actual blocks */
541d7d3c 652 error = xfs_bmapi(tp, ip, map_start_fsb, count_fsb,
1da177e4 653 XFS_BMAPI_WRITE, &first_block, 1,
e4143a1c 654 &imap, &nimaps, &free_list, NULL);
1da177e4
LT
655 if (error)
656 goto trans_cancel;
657
f7c99b6f 658 error = xfs_bmap_finish(&tp, &free_list, &committed);
1da177e4
LT
659 if (error)
660 goto trans_cancel;
661
1c72bf90 662 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1da177e4
LT
663 if (error)
664 goto error0;
665
666 xfs_iunlock(ip, XFS_ILOCK_EXCL);
667 }
668
669 /*
670 * See if we were able to allocate an extent that
671 * covers at least part of the callers request
672 */
86c4d623 673 if (!(imap.br_startblock || XFS_IS_REALTIME_INODE(ip)))
e4143a1c 674 return xfs_cmn_err_fsblock_zero(ip, &imap);
86c4d623 675
e4143a1c
DC
676 if ((offset_fsb >= imap.br_startoff) &&
677 (offset_fsb < (imap.br_startoff +
678 imap.br_blockcount))) {
679 *map = imap;
680 *retmap = 1;
681 XFS_STATS_INC(xs_xstrat_quick);
682 return 0;
1da177e4
LT
683 }
684
e4143a1c
DC
685 /*
686 * So far we have not mapped the requested part of the
1da177e4
LT
687 * file, just surrounding data, try again.
688 */
e4143a1c
DC
689 count_fsb -= imap.br_blockcount;
690 map_start_fsb = imap.br_startoff + imap.br_blockcount;
1da177e4
LT
691 }
692
693trans_cancel:
694 xfs_bmap_cancel(&free_list);
695 xfs_trans_cancel(tp, XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT);
696error0:
697 xfs_iunlock(ip, XFS_ILOCK_EXCL);
698 return XFS_ERROR(error);
699}
700
701int
702xfs_iomap_write_unwritten(
703 xfs_inode_t *ip,
f403b7f4 704 xfs_off_t offset,
1da177e4
LT
705 size_t count)
706{
707 xfs_mount_t *mp = ip->i_mount;
1da177e4
LT
708 xfs_fileoff_t offset_fsb;
709 xfs_filblks_t count_fsb;
710 xfs_filblks_t numblks_fsb;
dd9f438e
NS
711 xfs_fsblock_t firstfsb;
712 int nimaps;
713 xfs_trans_t *tp;
714 xfs_bmbt_irec_t imap;
715 xfs_bmap_free_t free_list;
716 uint resblks;
1da177e4
LT
717 int committed;
718 int error;
1da177e4 719
0b1b213f 720 trace_xfs_unwritten_convert(ip, offset, count);
1da177e4
LT
721
722 offset_fsb = XFS_B_TO_FSBT(mp, offset);
723 count_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)offset + count);
724 count_fsb = (xfs_filblks_t)(count_fsb - offset_fsb);
725
4ddd8bb1
LM
726 /*
727 * Reserve enough blocks in this transaction for two complete extent
728 * btree splits. We may be converting the middle part of an unwritten
729 * extent and in this case we will insert two new extents in the btree
730 * each of which could cause a full split.
731 *
732 * This reservation amount will be used in the first call to
733 * xfs_bmbt_split() to select an AG with enough space to satisfy the
734 * rest of the operation.
735 */
dd9f438e 736 resblks = XFS_DIOSTRAT_SPACE_RES(mp, 0) << 1;
1da177e4 737
dd9f438e 738 do {
1da177e4
LT
739 /*
740 * set up a transaction to convert the range of extents
741 * from unwritten to real. Do allocations in a loop until
742 * we have covered the range passed in.
80641dc6
CH
743 *
744 * Note that we open code the transaction allocation here
745 * to pass KM_NOFS--we can't risk to recursing back into
746 * the filesystem here as we might be asked to write out
747 * the same inode that we complete here and might deadlock
748 * on the iolock.
1da177e4 749 */
80641dc6
CH
750 xfs_wait_for_freeze(mp, SB_FREEZE_TRANS);
751 tp = _xfs_trans_alloc(mp, XFS_TRANS_STRAT_WRITE, KM_NOFS);
84e1e99f 752 tp->t_flags |= XFS_TRANS_RESERVE;
dd9f438e 753 error = xfs_trans_reserve(tp, resblks,
1da177e4
LT
754 XFS_WRITE_LOG_RES(mp), 0,
755 XFS_TRANS_PERM_LOG_RES,
756 XFS_WRITE_LOG_COUNT);
757 if (error) {
758 xfs_trans_cancel(tp, 0);
572d95f4 759 return XFS_ERROR(error);
1da177e4
LT
760 }
761
762 xfs_ilock(ip, XFS_ILOCK_EXCL);
763 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
764 xfs_trans_ihold(tp, ip);
765
766 /*
767 * Modify the unwritten extent state of the buffer.
768 */
9d87c319 769 xfs_bmap_init(&free_list, &firstfsb);
1da177e4 770 nimaps = 1;
541d7d3c 771 error = xfs_bmapi(tp, ip, offset_fsb, count_fsb,
dd9f438e 772 XFS_BMAPI_WRITE|XFS_BMAPI_CONVERT, &firstfsb,
3e57ecf6 773 1, &imap, &nimaps, &free_list, NULL);
1da177e4
LT
774 if (error)
775 goto error_on_bmapi_transaction;
776
f7c99b6f 777 error = xfs_bmap_finish(&(tp), &(free_list), &committed);
1da177e4
LT
778 if (error)
779 goto error_on_bmapi_transaction;
780
1c72bf90 781 error = xfs_trans_commit(tp, XFS_TRANS_RELEASE_LOG_RES);
1da177e4
LT
782 xfs_iunlock(ip, XFS_ILOCK_EXCL);
783 if (error)
572d95f4
NS
784 return XFS_ERROR(error);
785
86c4d623 786 if (!(imap.br_startblock || XFS_IS_REALTIME_INODE(ip)))
572d95f4 787 return xfs_cmn_err_fsblock_zero(ip, &imap);
1da177e4
LT
788
789 if ((numblks_fsb = imap.br_blockcount) == 0) {
790 /*
791 * The numblks_fsb value should always get
792 * smaller, otherwise the loop is stuck.
793 */
794 ASSERT(imap.br_blockcount);
795 break;
796 }
797 offset_fsb += numblks_fsb;
798 count_fsb -= numblks_fsb;
799 } while (count_fsb > 0);
800
801 return 0;
802
803error_on_bmapi_transaction:
804 xfs_bmap_cancel(&free_list);
805 xfs_trans_cancel(tp, (XFS_TRANS_RELEASE_LOG_RES | XFS_TRANS_ABORT));
806 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1da177e4
LT
807 return XFS_ERROR(error);
808}
This page took 0.470822 seconds and 5 git commands to generate.