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