Loading...
1/*
2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
3 * All Rights Reserved.
4 *
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
7 * published by the Free Software Foundation.
8 *
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.
13 *
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
17 */
18#include <linux/log2.h>
19
20#include "xfs.h"
21#include "xfs_fs.h"
22#include "xfs_format.h"
23#include "xfs_log_format.h"
24#include "xfs_trans_resv.h"
25#include "xfs_mount.h"
26#include "xfs_inode.h"
27#include "xfs_trans.h"
28#include "xfs_inode_item.h"
29#include "xfs_bmap_btree.h"
30#include "xfs_bmap.h"
31#include "xfs_error.h"
32#include "xfs_trace.h"
33#include "xfs_attr_sf.h"
34#include "xfs_da_format.h"
35
36kmem_zone_t *xfs_ifork_zone;
37
38STATIC int xfs_iformat_local(xfs_inode_t *, xfs_dinode_t *, int, int);
39STATIC int xfs_iformat_extents(xfs_inode_t *, xfs_dinode_t *, int);
40STATIC int xfs_iformat_btree(xfs_inode_t *, xfs_dinode_t *, int);
41
42#ifdef DEBUG
43/*
44 * Make sure that the extents in the given memory buffer
45 * are valid.
46 */
47void
48xfs_validate_extents(
49 xfs_ifork_t *ifp,
50 int nrecs,
51 xfs_exntfmt_t fmt)
52{
53 xfs_bmbt_irec_t irec;
54 xfs_bmbt_rec_host_t rec;
55 int i;
56
57 for (i = 0; i < nrecs; i++) {
58 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, i);
59 rec.l0 = get_unaligned(&ep->l0);
60 rec.l1 = get_unaligned(&ep->l1);
61 xfs_bmbt_get_all(&rec, &irec);
62 if (fmt == XFS_EXTFMT_NOSTATE)
63 ASSERT(irec.br_state == XFS_EXT_NORM);
64 }
65}
66#else /* DEBUG */
67#define xfs_validate_extents(ifp, nrecs, fmt)
68#endif /* DEBUG */
69
70
71/*
72 * Move inode type and inode format specific information from the
73 * on-disk inode to the in-core inode. For fifos, devs, and sockets
74 * this means set if_rdev to the proper value. For files, directories,
75 * and symlinks this means to bring in the in-line data or extent
76 * pointers. For a file in B-tree format, only the root is immediately
77 * brought in-core. The rest will be in-lined in if_extents when it
78 * is first referenced (see xfs_iread_extents()).
79 */
80int
81xfs_iformat_fork(
82 xfs_inode_t *ip,
83 xfs_dinode_t *dip)
84{
85 xfs_attr_shortform_t *atp;
86 int size;
87 int error = 0;
88 xfs_fsize_t di_size;
89
90 if (unlikely(be32_to_cpu(dip->di_nextents) +
91 be16_to_cpu(dip->di_anextents) >
92 be64_to_cpu(dip->di_nblocks))) {
93 xfs_warn(ip->i_mount,
94 "corrupt dinode %Lu, extent total = %d, nblocks = %Lu.",
95 (unsigned long long)ip->i_ino,
96 (int)(be32_to_cpu(dip->di_nextents) +
97 be16_to_cpu(dip->di_anextents)),
98 (unsigned long long)
99 be64_to_cpu(dip->di_nblocks));
100 XFS_CORRUPTION_ERROR("xfs_iformat(1)", XFS_ERRLEVEL_LOW,
101 ip->i_mount, dip);
102 return -EFSCORRUPTED;
103 }
104
105 if (unlikely(dip->di_forkoff > ip->i_mount->m_sb.sb_inodesize)) {
106 xfs_warn(ip->i_mount, "corrupt dinode %Lu, forkoff = 0x%x.",
107 (unsigned long long)ip->i_ino,
108 dip->di_forkoff);
109 XFS_CORRUPTION_ERROR("xfs_iformat(2)", XFS_ERRLEVEL_LOW,
110 ip->i_mount, dip);
111 return -EFSCORRUPTED;
112 }
113
114 if (unlikely((ip->i_d.di_flags & XFS_DIFLAG_REALTIME) &&
115 !ip->i_mount->m_rtdev_targp)) {
116 xfs_warn(ip->i_mount,
117 "corrupt dinode %Lu, has realtime flag set.",
118 ip->i_ino);
119 XFS_CORRUPTION_ERROR("xfs_iformat(realtime)",
120 XFS_ERRLEVEL_LOW, ip->i_mount, dip);
121 return -EFSCORRUPTED;
122 }
123
124 switch (VFS_I(ip)->i_mode & S_IFMT) {
125 case S_IFIFO:
126 case S_IFCHR:
127 case S_IFBLK:
128 case S_IFSOCK:
129 if (unlikely(dip->di_format != XFS_DINODE_FMT_DEV)) {
130 XFS_CORRUPTION_ERROR("xfs_iformat(3)", XFS_ERRLEVEL_LOW,
131 ip->i_mount, dip);
132 return -EFSCORRUPTED;
133 }
134 ip->i_d.di_size = 0;
135 ip->i_df.if_u2.if_rdev = xfs_dinode_get_rdev(dip);
136 break;
137
138 case S_IFREG:
139 case S_IFLNK:
140 case S_IFDIR:
141 switch (dip->di_format) {
142 case XFS_DINODE_FMT_LOCAL:
143 /*
144 * no local regular files yet
145 */
146 if (unlikely(S_ISREG(be16_to_cpu(dip->di_mode)))) {
147 xfs_warn(ip->i_mount,
148 "corrupt inode %Lu (local format for regular file).",
149 (unsigned long long) ip->i_ino);
150 XFS_CORRUPTION_ERROR("xfs_iformat(4)",
151 XFS_ERRLEVEL_LOW,
152 ip->i_mount, dip);
153 return -EFSCORRUPTED;
154 }
155
156 di_size = be64_to_cpu(dip->di_size);
157 if (unlikely(di_size < 0 ||
158 di_size > XFS_DFORK_DSIZE(dip, ip->i_mount))) {
159 xfs_warn(ip->i_mount,
160 "corrupt inode %Lu (bad size %Ld for local inode).",
161 (unsigned long long) ip->i_ino,
162 (long long) di_size);
163 XFS_CORRUPTION_ERROR("xfs_iformat(5)",
164 XFS_ERRLEVEL_LOW,
165 ip->i_mount, dip);
166 return -EFSCORRUPTED;
167 }
168
169 size = (int)di_size;
170 error = xfs_iformat_local(ip, dip, XFS_DATA_FORK, size);
171 break;
172 case XFS_DINODE_FMT_EXTENTS:
173 error = xfs_iformat_extents(ip, dip, XFS_DATA_FORK);
174 break;
175 case XFS_DINODE_FMT_BTREE:
176 error = xfs_iformat_btree(ip, dip, XFS_DATA_FORK);
177 break;
178 default:
179 XFS_ERROR_REPORT("xfs_iformat(6)", XFS_ERRLEVEL_LOW,
180 ip->i_mount);
181 return -EFSCORRUPTED;
182 }
183 break;
184
185 default:
186 XFS_ERROR_REPORT("xfs_iformat(7)", XFS_ERRLEVEL_LOW, ip->i_mount);
187 return -EFSCORRUPTED;
188 }
189 if (error) {
190 return error;
191 }
192 if (!XFS_DFORK_Q(dip))
193 return 0;
194
195 ASSERT(ip->i_afp == NULL);
196 ip->i_afp = kmem_zone_zalloc(xfs_ifork_zone, KM_SLEEP | KM_NOFS);
197
198 switch (dip->di_aformat) {
199 case XFS_DINODE_FMT_LOCAL:
200 atp = (xfs_attr_shortform_t *)XFS_DFORK_APTR(dip);
201 size = be16_to_cpu(atp->hdr.totsize);
202
203 if (unlikely(size < sizeof(struct xfs_attr_sf_hdr))) {
204 xfs_warn(ip->i_mount,
205 "corrupt inode %Lu (bad attr fork size %Ld).",
206 (unsigned long long) ip->i_ino,
207 (long long) size);
208 XFS_CORRUPTION_ERROR("xfs_iformat(8)",
209 XFS_ERRLEVEL_LOW,
210 ip->i_mount, dip);
211 return -EFSCORRUPTED;
212 }
213
214 error = xfs_iformat_local(ip, dip, XFS_ATTR_FORK, size);
215 break;
216 case XFS_DINODE_FMT_EXTENTS:
217 error = xfs_iformat_extents(ip, dip, XFS_ATTR_FORK);
218 break;
219 case XFS_DINODE_FMT_BTREE:
220 error = xfs_iformat_btree(ip, dip, XFS_ATTR_FORK);
221 break;
222 default:
223 error = -EFSCORRUPTED;
224 break;
225 }
226 if (error) {
227 kmem_zone_free(xfs_ifork_zone, ip->i_afp);
228 ip->i_afp = NULL;
229 xfs_idestroy_fork(ip, XFS_DATA_FORK);
230 }
231 return error;
232}
233
234/*
235 * The file is in-lined in the on-disk inode.
236 * If it fits into if_inline_data, then copy
237 * it there, otherwise allocate a buffer for it
238 * and copy the data there. Either way, set
239 * if_data to point at the data.
240 * If we allocate a buffer for the data, make
241 * sure that its size is a multiple of 4 and
242 * record the real size in i_real_bytes.
243 */
244STATIC int
245xfs_iformat_local(
246 xfs_inode_t *ip,
247 xfs_dinode_t *dip,
248 int whichfork,
249 int size)
250{
251 xfs_ifork_t *ifp;
252 int real_size;
253
254 /*
255 * If the size is unreasonable, then something
256 * is wrong and we just bail out rather than crash in
257 * kmem_alloc() or memcpy() below.
258 */
259 if (unlikely(size > XFS_DFORK_SIZE(dip, ip->i_mount, whichfork))) {
260 xfs_warn(ip->i_mount,
261 "corrupt inode %Lu (bad size %d for local fork, size = %d).",
262 (unsigned long long) ip->i_ino, size,
263 XFS_DFORK_SIZE(dip, ip->i_mount, whichfork));
264 XFS_CORRUPTION_ERROR("xfs_iformat_local", XFS_ERRLEVEL_LOW,
265 ip->i_mount, dip);
266 return -EFSCORRUPTED;
267 }
268 ifp = XFS_IFORK_PTR(ip, whichfork);
269 real_size = 0;
270 if (size == 0)
271 ifp->if_u1.if_data = NULL;
272 else if (size <= sizeof(ifp->if_u2.if_inline_data))
273 ifp->if_u1.if_data = ifp->if_u2.if_inline_data;
274 else {
275 real_size = roundup(size, 4);
276 ifp->if_u1.if_data = kmem_alloc(real_size, KM_SLEEP | KM_NOFS);
277 }
278 ifp->if_bytes = size;
279 ifp->if_real_bytes = real_size;
280 if (size)
281 memcpy(ifp->if_u1.if_data, XFS_DFORK_PTR(dip, whichfork), size);
282 ifp->if_flags &= ~XFS_IFEXTENTS;
283 ifp->if_flags |= XFS_IFINLINE;
284 return 0;
285}
286
287/*
288 * The file consists of a set of extents all
289 * of which fit into the on-disk inode.
290 * If there are few enough extents to fit into
291 * the if_inline_ext, then copy them there.
292 * Otherwise allocate a buffer for them and copy
293 * them into it. Either way, set if_extents
294 * to point at the extents.
295 */
296STATIC int
297xfs_iformat_extents(
298 xfs_inode_t *ip,
299 xfs_dinode_t *dip,
300 int whichfork)
301{
302 xfs_bmbt_rec_t *dp;
303 xfs_ifork_t *ifp;
304 int nex;
305 int size;
306 int i;
307
308 ifp = XFS_IFORK_PTR(ip, whichfork);
309 nex = XFS_DFORK_NEXTENTS(dip, whichfork);
310 size = nex * (uint)sizeof(xfs_bmbt_rec_t);
311
312 /*
313 * If the number of extents is unreasonable, then something
314 * is wrong and we just bail out rather than crash in
315 * kmem_alloc() or memcpy() below.
316 */
317 if (unlikely(size < 0 || size > XFS_DFORK_SIZE(dip, ip->i_mount, whichfork))) {
318 xfs_warn(ip->i_mount, "corrupt inode %Lu ((a)extents = %d).",
319 (unsigned long long) ip->i_ino, nex);
320 XFS_CORRUPTION_ERROR("xfs_iformat_extents(1)", XFS_ERRLEVEL_LOW,
321 ip->i_mount, dip);
322 return -EFSCORRUPTED;
323 }
324
325 ifp->if_real_bytes = 0;
326 if (nex == 0)
327 ifp->if_u1.if_extents = NULL;
328 else if (nex <= XFS_INLINE_EXTS)
329 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
330 else
331 xfs_iext_add(ifp, 0, nex);
332
333 ifp->if_bytes = size;
334 if (size) {
335 dp = (xfs_bmbt_rec_t *) XFS_DFORK_PTR(dip, whichfork);
336 xfs_validate_extents(ifp, nex, XFS_EXTFMT_INODE(ip));
337 for (i = 0; i < nex; i++, dp++) {
338 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, i);
339 ep->l0 = get_unaligned_be64(&dp->l0);
340 ep->l1 = get_unaligned_be64(&dp->l1);
341 }
342 XFS_BMAP_TRACE_EXLIST(ip, nex, whichfork);
343 if (whichfork != XFS_DATA_FORK ||
344 XFS_EXTFMT_INODE(ip) == XFS_EXTFMT_NOSTATE)
345 if (unlikely(xfs_check_nostate_extents(
346 ifp, 0, nex))) {
347 XFS_ERROR_REPORT("xfs_iformat_extents(2)",
348 XFS_ERRLEVEL_LOW,
349 ip->i_mount);
350 return -EFSCORRUPTED;
351 }
352 }
353 ifp->if_flags |= XFS_IFEXTENTS;
354 return 0;
355}
356
357/*
358 * The file has too many extents to fit into
359 * the inode, so they are in B-tree format.
360 * Allocate a buffer for the root of the B-tree
361 * and copy the root into it. The i_extents
362 * field will remain NULL until all of the
363 * extents are read in (when they are needed).
364 */
365STATIC int
366xfs_iformat_btree(
367 xfs_inode_t *ip,
368 xfs_dinode_t *dip,
369 int whichfork)
370{
371 struct xfs_mount *mp = ip->i_mount;
372 xfs_bmdr_block_t *dfp;
373 xfs_ifork_t *ifp;
374 /* REFERENCED */
375 int nrecs;
376 int size;
377
378 ifp = XFS_IFORK_PTR(ip, whichfork);
379 dfp = (xfs_bmdr_block_t *)XFS_DFORK_PTR(dip, whichfork);
380 size = XFS_BMAP_BROOT_SPACE(mp, dfp);
381 nrecs = be16_to_cpu(dfp->bb_numrecs);
382
383 /*
384 * blow out if -- fork has less extents than can fit in
385 * fork (fork shouldn't be a btree format), root btree
386 * block has more records than can fit into the fork,
387 * or the number of extents is greater than the number of
388 * blocks.
389 */
390 if (unlikely(XFS_IFORK_NEXTENTS(ip, whichfork) <=
391 XFS_IFORK_MAXEXT(ip, whichfork) ||
392 XFS_BMDR_SPACE_CALC(nrecs) >
393 XFS_DFORK_SIZE(dip, mp, whichfork) ||
394 XFS_IFORK_NEXTENTS(ip, whichfork) > ip->i_d.di_nblocks)) {
395 xfs_warn(mp, "corrupt inode %Lu (btree).",
396 (unsigned long long) ip->i_ino);
397 XFS_CORRUPTION_ERROR("xfs_iformat_btree", XFS_ERRLEVEL_LOW,
398 mp, dip);
399 return -EFSCORRUPTED;
400 }
401
402 ifp->if_broot_bytes = size;
403 ifp->if_broot = kmem_alloc(size, KM_SLEEP | KM_NOFS);
404 ASSERT(ifp->if_broot != NULL);
405 /*
406 * Copy and convert from the on-disk structure
407 * to the in-memory structure.
408 */
409 xfs_bmdr_to_bmbt(ip, dfp, XFS_DFORK_SIZE(dip, ip->i_mount, whichfork),
410 ifp->if_broot, size);
411 ifp->if_flags &= ~XFS_IFEXTENTS;
412 ifp->if_flags |= XFS_IFBROOT;
413
414 return 0;
415}
416
417/*
418 * Read in extents from a btree-format inode.
419 * Allocate and fill in if_extents. Real work is done in xfs_bmap.c.
420 */
421int
422xfs_iread_extents(
423 xfs_trans_t *tp,
424 xfs_inode_t *ip,
425 int whichfork)
426{
427 int error;
428 xfs_ifork_t *ifp;
429 xfs_extnum_t nextents;
430
431 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
432
433 if (unlikely(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) {
434 XFS_ERROR_REPORT("xfs_iread_extents", XFS_ERRLEVEL_LOW,
435 ip->i_mount);
436 return -EFSCORRUPTED;
437 }
438 nextents = XFS_IFORK_NEXTENTS(ip, whichfork);
439 ifp = XFS_IFORK_PTR(ip, whichfork);
440
441 /*
442 * We know that the size is valid (it's checked in iformat_btree)
443 */
444 ifp->if_bytes = ifp->if_real_bytes = 0;
445 ifp->if_flags |= XFS_IFEXTENTS;
446 xfs_iext_add(ifp, 0, nextents);
447 error = xfs_bmap_read_extents(tp, ip, whichfork);
448 if (error) {
449 xfs_iext_destroy(ifp);
450 ifp->if_flags &= ~XFS_IFEXTENTS;
451 return error;
452 }
453 xfs_validate_extents(ifp, nextents, XFS_EXTFMT_INODE(ip));
454 return 0;
455}
456/*
457 * Reallocate the space for if_broot based on the number of records
458 * being added or deleted as indicated in rec_diff. Move the records
459 * and pointers in if_broot to fit the new size. When shrinking this
460 * will eliminate holes between the records and pointers created by
461 * the caller. When growing this will create holes to be filled in
462 * by the caller.
463 *
464 * The caller must not request to add more records than would fit in
465 * the on-disk inode root. If the if_broot is currently NULL, then
466 * if we are adding records, one will be allocated. The caller must also
467 * not request that the number of records go below zero, although
468 * it can go to zero.
469 *
470 * ip -- the inode whose if_broot area is changing
471 * ext_diff -- the change in the number of records, positive or negative,
472 * requested for the if_broot array.
473 */
474void
475xfs_iroot_realloc(
476 xfs_inode_t *ip,
477 int rec_diff,
478 int whichfork)
479{
480 struct xfs_mount *mp = ip->i_mount;
481 int cur_max;
482 xfs_ifork_t *ifp;
483 struct xfs_btree_block *new_broot;
484 int new_max;
485 size_t new_size;
486 char *np;
487 char *op;
488
489 /*
490 * Handle the degenerate case quietly.
491 */
492 if (rec_diff == 0) {
493 return;
494 }
495
496 ifp = XFS_IFORK_PTR(ip, whichfork);
497 if (rec_diff > 0) {
498 /*
499 * If there wasn't any memory allocated before, just
500 * allocate it now and get out.
501 */
502 if (ifp->if_broot_bytes == 0) {
503 new_size = XFS_BMAP_BROOT_SPACE_CALC(mp, rec_diff);
504 ifp->if_broot = kmem_alloc(new_size, KM_SLEEP | KM_NOFS);
505 ifp->if_broot_bytes = (int)new_size;
506 return;
507 }
508
509 /*
510 * If there is already an existing if_broot, then we need
511 * to realloc() it and shift the pointers to their new
512 * location. The records don't change location because
513 * they are kept butted up against the btree block header.
514 */
515 cur_max = xfs_bmbt_maxrecs(mp, ifp->if_broot_bytes, 0);
516 new_max = cur_max + rec_diff;
517 new_size = XFS_BMAP_BROOT_SPACE_CALC(mp, new_max);
518 ifp->if_broot = kmem_realloc(ifp->if_broot, new_size,
519 XFS_BMAP_BROOT_SPACE_CALC(mp, cur_max),
520 KM_SLEEP | KM_NOFS);
521 op = (char *)XFS_BMAP_BROOT_PTR_ADDR(mp, ifp->if_broot, 1,
522 ifp->if_broot_bytes);
523 np = (char *)XFS_BMAP_BROOT_PTR_ADDR(mp, ifp->if_broot, 1,
524 (int)new_size);
525 ifp->if_broot_bytes = (int)new_size;
526 ASSERT(XFS_BMAP_BMDR_SPACE(ifp->if_broot) <=
527 XFS_IFORK_SIZE(ip, whichfork));
528 memmove(np, op, cur_max * (uint)sizeof(xfs_fsblock_t));
529 return;
530 }
531
532 /*
533 * rec_diff is less than 0. In this case, we are shrinking the
534 * if_broot buffer. It must already exist. If we go to zero
535 * records, just get rid of the root and clear the status bit.
536 */
537 ASSERT((ifp->if_broot != NULL) && (ifp->if_broot_bytes > 0));
538 cur_max = xfs_bmbt_maxrecs(mp, ifp->if_broot_bytes, 0);
539 new_max = cur_max + rec_diff;
540 ASSERT(new_max >= 0);
541 if (new_max > 0)
542 new_size = XFS_BMAP_BROOT_SPACE_CALC(mp, new_max);
543 else
544 new_size = 0;
545 if (new_size > 0) {
546 new_broot = kmem_alloc(new_size, KM_SLEEP | KM_NOFS);
547 /*
548 * First copy over the btree block header.
549 */
550 memcpy(new_broot, ifp->if_broot,
551 XFS_BMBT_BLOCK_LEN(ip->i_mount));
552 } else {
553 new_broot = NULL;
554 ifp->if_flags &= ~XFS_IFBROOT;
555 }
556
557 /*
558 * Only copy the records and pointers if there are any.
559 */
560 if (new_max > 0) {
561 /*
562 * First copy the records.
563 */
564 op = (char *)XFS_BMBT_REC_ADDR(mp, ifp->if_broot, 1);
565 np = (char *)XFS_BMBT_REC_ADDR(mp, new_broot, 1);
566 memcpy(np, op, new_max * (uint)sizeof(xfs_bmbt_rec_t));
567
568 /*
569 * Then copy the pointers.
570 */
571 op = (char *)XFS_BMAP_BROOT_PTR_ADDR(mp, ifp->if_broot, 1,
572 ifp->if_broot_bytes);
573 np = (char *)XFS_BMAP_BROOT_PTR_ADDR(mp, new_broot, 1,
574 (int)new_size);
575 memcpy(np, op, new_max * (uint)sizeof(xfs_fsblock_t));
576 }
577 kmem_free(ifp->if_broot);
578 ifp->if_broot = new_broot;
579 ifp->if_broot_bytes = (int)new_size;
580 if (ifp->if_broot)
581 ASSERT(XFS_BMAP_BMDR_SPACE(ifp->if_broot) <=
582 XFS_IFORK_SIZE(ip, whichfork));
583 return;
584}
585
586
587/*
588 * This is called when the amount of space needed for if_data
589 * is increased or decreased. The change in size is indicated by
590 * the number of bytes that need to be added or deleted in the
591 * byte_diff parameter.
592 *
593 * If the amount of space needed has decreased below the size of the
594 * inline buffer, then switch to using the inline buffer. Otherwise,
595 * use kmem_realloc() or kmem_alloc() to adjust the size of the buffer
596 * to what is needed.
597 *
598 * ip -- the inode whose if_data area is changing
599 * byte_diff -- the change in the number of bytes, positive or negative,
600 * requested for the if_data array.
601 */
602void
603xfs_idata_realloc(
604 xfs_inode_t *ip,
605 int byte_diff,
606 int whichfork)
607{
608 xfs_ifork_t *ifp;
609 int new_size;
610 int real_size;
611
612 if (byte_diff == 0) {
613 return;
614 }
615
616 ifp = XFS_IFORK_PTR(ip, whichfork);
617 new_size = (int)ifp->if_bytes + byte_diff;
618 ASSERT(new_size >= 0);
619
620 if (new_size == 0) {
621 if (ifp->if_u1.if_data != ifp->if_u2.if_inline_data) {
622 kmem_free(ifp->if_u1.if_data);
623 }
624 ifp->if_u1.if_data = NULL;
625 real_size = 0;
626 } else if (new_size <= sizeof(ifp->if_u2.if_inline_data)) {
627 /*
628 * If the valid extents/data can fit in if_inline_ext/data,
629 * copy them from the malloc'd vector and free it.
630 */
631 if (ifp->if_u1.if_data == NULL) {
632 ifp->if_u1.if_data = ifp->if_u2.if_inline_data;
633 } else if (ifp->if_u1.if_data != ifp->if_u2.if_inline_data) {
634 ASSERT(ifp->if_real_bytes != 0);
635 memcpy(ifp->if_u2.if_inline_data, ifp->if_u1.if_data,
636 new_size);
637 kmem_free(ifp->if_u1.if_data);
638 ifp->if_u1.if_data = ifp->if_u2.if_inline_data;
639 }
640 real_size = 0;
641 } else {
642 /*
643 * Stuck with malloc/realloc.
644 * For inline data, the underlying buffer must be
645 * a multiple of 4 bytes in size so that it can be
646 * logged and stay on word boundaries. We enforce
647 * that here.
648 */
649 real_size = roundup(new_size, 4);
650 if (ifp->if_u1.if_data == NULL) {
651 ASSERT(ifp->if_real_bytes == 0);
652 ifp->if_u1.if_data = kmem_alloc(real_size,
653 KM_SLEEP | KM_NOFS);
654 } else if (ifp->if_u1.if_data != ifp->if_u2.if_inline_data) {
655 /*
656 * Only do the realloc if the underlying size
657 * is really changing.
658 */
659 if (ifp->if_real_bytes != real_size) {
660 ifp->if_u1.if_data =
661 kmem_realloc(ifp->if_u1.if_data,
662 real_size,
663 ifp->if_real_bytes,
664 KM_SLEEP | KM_NOFS);
665 }
666 } else {
667 ASSERT(ifp->if_real_bytes == 0);
668 ifp->if_u1.if_data = kmem_alloc(real_size,
669 KM_SLEEP | KM_NOFS);
670 memcpy(ifp->if_u1.if_data, ifp->if_u2.if_inline_data,
671 ifp->if_bytes);
672 }
673 }
674 ifp->if_real_bytes = real_size;
675 ifp->if_bytes = new_size;
676 ASSERT(ifp->if_bytes <= XFS_IFORK_SIZE(ip, whichfork));
677}
678
679void
680xfs_idestroy_fork(
681 xfs_inode_t *ip,
682 int whichfork)
683{
684 xfs_ifork_t *ifp;
685
686 ifp = XFS_IFORK_PTR(ip, whichfork);
687 if (ifp->if_broot != NULL) {
688 kmem_free(ifp->if_broot);
689 ifp->if_broot = NULL;
690 }
691
692 /*
693 * If the format is local, then we can't have an extents
694 * array so just look for an inline data array. If we're
695 * not local then we may or may not have an extents list,
696 * so check and free it up if we do.
697 */
698 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
699 if ((ifp->if_u1.if_data != ifp->if_u2.if_inline_data) &&
700 (ifp->if_u1.if_data != NULL)) {
701 ASSERT(ifp->if_real_bytes != 0);
702 kmem_free(ifp->if_u1.if_data);
703 ifp->if_u1.if_data = NULL;
704 ifp->if_real_bytes = 0;
705 }
706 } else if ((ifp->if_flags & XFS_IFEXTENTS) &&
707 ((ifp->if_flags & XFS_IFEXTIREC) ||
708 ((ifp->if_u1.if_extents != NULL) &&
709 (ifp->if_u1.if_extents != ifp->if_u2.if_inline_ext)))) {
710 ASSERT(ifp->if_real_bytes != 0);
711 xfs_iext_destroy(ifp);
712 }
713 ASSERT(ifp->if_u1.if_extents == NULL ||
714 ifp->if_u1.if_extents == ifp->if_u2.if_inline_ext);
715 ASSERT(ifp->if_real_bytes == 0);
716 if (whichfork == XFS_ATTR_FORK) {
717 kmem_zone_free(xfs_ifork_zone, ip->i_afp);
718 ip->i_afp = NULL;
719 }
720}
721
722/*
723 * Convert in-core extents to on-disk form
724 *
725 * For either the data or attr fork in extent format, we need to endian convert
726 * the in-core extent as we place them into the on-disk inode.
727 *
728 * In the case of the data fork, the in-core and on-disk fork sizes can be
729 * different due to delayed allocation extents. We only copy on-disk extents
730 * here, so callers must always use the physical fork size to determine the
731 * size of the buffer passed to this routine. We will return the size actually
732 * used.
733 */
734int
735xfs_iextents_copy(
736 xfs_inode_t *ip,
737 xfs_bmbt_rec_t *dp,
738 int whichfork)
739{
740 int copied;
741 int i;
742 xfs_ifork_t *ifp;
743 int nrecs;
744 xfs_fsblock_t start_block;
745
746 ifp = XFS_IFORK_PTR(ip, whichfork);
747 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
748 ASSERT(ifp->if_bytes > 0);
749
750 nrecs = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
751 XFS_BMAP_TRACE_EXLIST(ip, nrecs, whichfork);
752 ASSERT(nrecs > 0);
753
754 /*
755 * There are some delayed allocation extents in the
756 * inode, so copy the extents one at a time and skip
757 * the delayed ones. There must be at least one
758 * non-delayed extent.
759 */
760 copied = 0;
761 for (i = 0; i < nrecs; i++) {
762 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, i);
763 start_block = xfs_bmbt_get_startblock(ep);
764 if (isnullstartblock(start_block)) {
765 /*
766 * It's a delayed allocation extent, so skip it.
767 */
768 continue;
769 }
770
771 /* Translate to on disk format */
772 put_unaligned_be64(ep->l0, &dp->l0);
773 put_unaligned_be64(ep->l1, &dp->l1);
774 dp++;
775 copied++;
776 }
777 ASSERT(copied != 0);
778 xfs_validate_extents(ifp, copied, XFS_EXTFMT_INODE(ip));
779
780 return (copied * (uint)sizeof(xfs_bmbt_rec_t));
781}
782
783/*
784 * Each of the following cases stores data into the same region
785 * of the on-disk inode, so only one of them can be valid at
786 * any given time. While it is possible to have conflicting formats
787 * and log flags, e.g. having XFS_ILOG_?DATA set when the fork is
788 * in EXTENTS format, this can only happen when the fork has
789 * changed formats after being modified but before being flushed.
790 * In these cases, the format always takes precedence, because the
791 * format indicates the current state of the fork.
792 */
793void
794xfs_iflush_fork(
795 xfs_inode_t *ip,
796 xfs_dinode_t *dip,
797 xfs_inode_log_item_t *iip,
798 int whichfork)
799{
800 char *cp;
801 xfs_ifork_t *ifp;
802 xfs_mount_t *mp;
803 static const short brootflag[2] =
804 { XFS_ILOG_DBROOT, XFS_ILOG_ABROOT };
805 static const short dataflag[2] =
806 { XFS_ILOG_DDATA, XFS_ILOG_ADATA };
807 static const short extflag[2] =
808 { XFS_ILOG_DEXT, XFS_ILOG_AEXT };
809
810 if (!iip)
811 return;
812 ifp = XFS_IFORK_PTR(ip, whichfork);
813 /*
814 * This can happen if we gave up in iformat in an error path,
815 * for the attribute fork.
816 */
817 if (!ifp) {
818 ASSERT(whichfork == XFS_ATTR_FORK);
819 return;
820 }
821 cp = XFS_DFORK_PTR(dip, whichfork);
822 mp = ip->i_mount;
823 switch (XFS_IFORK_FORMAT(ip, whichfork)) {
824 case XFS_DINODE_FMT_LOCAL:
825 if ((iip->ili_fields & dataflag[whichfork]) &&
826 (ifp->if_bytes > 0)) {
827 ASSERT(ifp->if_u1.if_data != NULL);
828 ASSERT(ifp->if_bytes <= XFS_IFORK_SIZE(ip, whichfork));
829 memcpy(cp, ifp->if_u1.if_data, ifp->if_bytes);
830 }
831 break;
832
833 case XFS_DINODE_FMT_EXTENTS:
834 ASSERT((ifp->if_flags & XFS_IFEXTENTS) ||
835 !(iip->ili_fields & extflag[whichfork]));
836 if ((iip->ili_fields & extflag[whichfork]) &&
837 (ifp->if_bytes > 0)) {
838 ASSERT(xfs_iext_get_ext(ifp, 0));
839 ASSERT(XFS_IFORK_NEXTENTS(ip, whichfork) > 0);
840 (void)xfs_iextents_copy(ip, (xfs_bmbt_rec_t *)cp,
841 whichfork);
842 }
843 break;
844
845 case XFS_DINODE_FMT_BTREE:
846 if ((iip->ili_fields & brootflag[whichfork]) &&
847 (ifp->if_broot_bytes > 0)) {
848 ASSERT(ifp->if_broot != NULL);
849 ASSERT(XFS_BMAP_BMDR_SPACE(ifp->if_broot) <=
850 XFS_IFORK_SIZE(ip, whichfork));
851 xfs_bmbt_to_bmdr(mp, ifp->if_broot, ifp->if_broot_bytes,
852 (xfs_bmdr_block_t *)cp,
853 XFS_DFORK_SIZE(dip, mp, whichfork));
854 }
855 break;
856
857 case XFS_DINODE_FMT_DEV:
858 if (iip->ili_fields & XFS_ILOG_DEV) {
859 ASSERT(whichfork == XFS_DATA_FORK);
860 xfs_dinode_put_rdev(dip, ip->i_df.if_u2.if_rdev);
861 }
862 break;
863
864 case XFS_DINODE_FMT_UUID:
865 if (iip->ili_fields & XFS_ILOG_UUID) {
866 ASSERT(whichfork == XFS_DATA_FORK);
867 memcpy(XFS_DFORK_DPTR(dip),
868 &ip->i_df.if_u2.if_uuid,
869 sizeof(uuid_t));
870 }
871 break;
872
873 default:
874 ASSERT(0);
875 break;
876 }
877}
878
879/*
880 * Return a pointer to the extent record at file index idx.
881 */
882xfs_bmbt_rec_host_t *
883xfs_iext_get_ext(
884 xfs_ifork_t *ifp, /* inode fork pointer */
885 xfs_extnum_t idx) /* index of target extent */
886{
887 ASSERT(idx >= 0);
888 ASSERT(idx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t));
889
890 if ((ifp->if_flags & XFS_IFEXTIREC) && (idx == 0)) {
891 return ifp->if_u1.if_ext_irec->er_extbuf;
892 } else if (ifp->if_flags & XFS_IFEXTIREC) {
893 xfs_ext_irec_t *erp; /* irec pointer */
894 int erp_idx = 0; /* irec index */
895 xfs_extnum_t page_idx = idx; /* ext index in target list */
896
897 erp = xfs_iext_idx_to_irec(ifp, &page_idx, &erp_idx, 0);
898 return &erp->er_extbuf[page_idx];
899 } else if (ifp->if_bytes) {
900 return &ifp->if_u1.if_extents[idx];
901 } else {
902 return NULL;
903 }
904}
905
906/*
907 * Insert new item(s) into the extent records for incore inode
908 * fork 'ifp'. 'count' new items are inserted at index 'idx'.
909 */
910void
911xfs_iext_insert(
912 xfs_inode_t *ip, /* incore inode pointer */
913 xfs_extnum_t idx, /* starting index of new items */
914 xfs_extnum_t count, /* number of inserted items */
915 xfs_bmbt_irec_t *new, /* items to insert */
916 int state) /* type of extent conversion */
917{
918 xfs_ifork_t *ifp = (state & BMAP_ATTRFORK) ? ip->i_afp : &ip->i_df;
919 xfs_extnum_t i; /* extent record index */
920
921 trace_xfs_iext_insert(ip, idx, new, state, _RET_IP_);
922
923 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
924 xfs_iext_add(ifp, idx, count);
925 for (i = idx; i < idx + count; i++, new++)
926 xfs_bmbt_set_all(xfs_iext_get_ext(ifp, i), new);
927}
928
929/*
930 * This is called when the amount of space required for incore file
931 * extents needs to be increased. The ext_diff parameter stores the
932 * number of new extents being added and the idx parameter contains
933 * the extent index where the new extents will be added. If the new
934 * extents are being appended, then we just need to (re)allocate and
935 * initialize the space. Otherwise, if the new extents are being
936 * inserted into the middle of the existing entries, a bit more work
937 * is required to make room for the new extents to be inserted. The
938 * caller is responsible for filling in the new extent entries upon
939 * return.
940 */
941void
942xfs_iext_add(
943 xfs_ifork_t *ifp, /* inode fork pointer */
944 xfs_extnum_t idx, /* index to begin adding exts */
945 int ext_diff) /* number of extents to add */
946{
947 int byte_diff; /* new bytes being added */
948 int new_size; /* size of extents after adding */
949 xfs_extnum_t nextents; /* number of extents in file */
950
951 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
952 ASSERT((idx >= 0) && (idx <= nextents));
953 byte_diff = ext_diff * sizeof(xfs_bmbt_rec_t);
954 new_size = ifp->if_bytes + byte_diff;
955 /*
956 * If the new number of extents (nextents + ext_diff)
957 * fits inside the inode, then continue to use the inline
958 * extent buffer.
959 */
960 if (nextents + ext_diff <= XFS_INLINE_EXTS) {
961 if (idx < nextents) {
962 memmove(&ifp->if_u2.if_inline_ext[idx + ext_diff],
963 &ifp->if_u2.if_inline_ext[idx],
964 (nextents - idx) * sizeof(xfs_bmbt_rec_t));
965 memset(&ifp->if_u2.if_inline_ext[idx], 0, byte_diff);
966 }
967 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
968 ifp->if_real_bytes = 0;
969 }
970 /*
971 * Otherwise use a linear (direct) extent list.
972 * If the extents are currently inside the inode,
973 * xfs_iext_realloc_direct will switch us from
974 * inline to direct extent allocation mode.
975 */
976 else if (nextents + ext_diff <= XFS_LINEAR_EXTS) {
977 xfs_iext_realloc_direct(ifp, new_size);
978 if (idx < nextents) {
979 memmove(&ifp->if_u1.if_extents[idx + ext_diff],
980 &ifp->if_u1.if_extents[idx],
981 (nextents - idx) * sizeof(xfs_bmbt_rec_t));
982 memset(&ifp->if_u1.if_extents[idx], 0, byte_diff);
983 }
984 }
985 /* Indirection array */
986 else {
987 xfs_ext_irec_t *erp;
988 int erp_idx = 0;
989 int page_idx = idx;
990
991 ASSERT(nextents + ext_diff > XFS_LINEAR_EXTS);
992 if (ifp->if_flags & XFS_IFEXTIREC) {
993 erp = xfs_iext_idx_to_irec(ifp, &page_idx, &erp_idx, 1);
994 } else {
995 xfs_iext_irec_init(ifp);
996 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
997 erp = ifp->if_u1.if_ext_irec;
998 }
999 /* Extents fit in target extent page */
1000 if (erp && erp->er_extcount + ext_diff <= XFS_LINEAR_EXTS) {
1001 if (page_idx < erp->er_extcount) {
1002 memmove(&erp->er_extbuf[page_idx + ext_diff],
1003 &erp->er_extbuf[page_idx],
1004 (erp->er_extcount - page_idx) *
1005 sizeof(xfs_bmbt_rec_t));
1006 memset(&erp->er_extbuf[page_idx], 0, byte_diff);
1007 }
1008 erp->er_extcount += ext_diff;
1009 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, ext_diff);
1010 }
1011 /* Insert a new extent page */
1012 else if (erp) {
1013 xfs_iext_add_indirect_multi(ifp,
1014 erp_idx, page_idx, ext_diff);
1015 }
1016 /*
1017 * If extent(s) are being appended to the last page in
1018 * the indirection array and the new extent(s) don't fit
1019 * in the page, then erp is NULL and erp_idx is set to
1020 * the next index needed in the indirection array.
1021 */
1022 else {
1023 uint count = ext_diff;
1024
1025 while (count) {
1026 erp = xfs_iext_irec_new(ifp, erp_idx);
1027 erp->er_extcount = min(count, XFS_LINEAR_EXTS);
1028 count -= erp->er_extcount;
1029 if (count)
1030 erp_idx++;
1031 }
1032 }
1033 }
1034 ifp->if_bytes = new_size;
1035}
1036
1037/*
1038 * This is called when incore extents are being added to the indirection
1039 * array and the new extents do not fit in the target extent list. The
1040 * erp_idx parameter contains the irec index for the target extent list
1041 * in the indirection array, and the idx parameter contains the extent
1042 * index within the list. The number of extents being added is stored
1043 * in the count parameter.
1044 *
1045 * |-------| |-------|
1046 * | | | | idx - number of extents before idx
1047 * | idx | | count |
1048 * | | | | count - number of extents being inserted at idx
1049 * |-------| |-------|
1050 * | count | | nex2 | nex2 - number of extents after idx + count
1051 * |-------| |-------|
1052 */
1053void
1054xfs_iext_add_indirect_multi(
1055 xfs_ifork_t *ifp, /* inode fork pointer */
1056 int erp_idx, /* target extent irec index */
1057 xfs_extnum_t idx, /* index within target list */
1058 int count) /* new extents being added */
1059{
1060 int byte_diff; /* new bytes being added */
1061 xfs_ext_irec_t *erp; /* pointer to irec entry */
1062 xfs_extnum_t ext_diff; /* number of extents to add */
1063 xfs_extnum_t ext_cnt; /* new extents still needed */
1064 xfs_extnum_t nex2; /* extents after idx + count */
1065 xfs_bmbt_rec_t *nex2_ep = NULL; /* temp list for nex2 extents */
1066 int nlists; /* number of irec's (lists) */
1067
1068 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1069 erp = &ifp->if_u1.if_ext_irec[erp_idx];
1070 nex2 = erp->er_extcount - idx;
1071 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1072
1073 /*
1074 * Save second part of target extent list
1075 * (all extents past */
1076 if (nex2) {
1077 byte_diff = nex2 * sizeof(xfs_bmbt_rec_t);
1078 nex2_ep = (xfs_bmbt_rec_t *) kmem_alloc(byte_diff, KM_NOFS);
1079 memmove(nex2_ep, &erp->er_extbuf[idx], byte_diff);
1080 erp->er_extcount -= nex2;
1081 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, -nex2);
1082 memset(&erp->er_extbuf[idx], 0, byte_diff);
1083 }
1084
1085 /*
1086 * Add the new extents to the end of the target
1087 * list, then allocate new irec record(s) and
1088 * extent buffer(s) as needed to store the rest
1089 * of the new extents.
1090 */
1091 ext_cnt = count;
1092 ext_diff = MIN(ext_cnt, (int)XFS_LINEAR_EXTS - erp->er_extcount);
1093 if (ext_diff) {
1094 erp->er_extcount += ext_diff;
1095 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, ext_diff);
1096 ext_cnt -= ext_diff;
1097 }
1098 while (ext_cnt) {
1099 erp_idx++;
1100 erp = xfs_iext_irec_new(ifp, erp_idx);
1101 ext_diff = MIN(ext_cnt, (int)XFS_LINEAR_EXTS);
1102 erp->er_extcount = ext_diff;
1103 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, ext_diff);
1104 ext_cnt -= ext_diff;
1105 }
1106
1107 /* Add nex2 extents back to indirection array */
1108 if (nex2) {
1109 xfs_extnum_t ext_avail;
1110 int i;
1111
1112 byte_diff = nex2 * sizeof(xfs_bmbt_rec_t);
1113 ext_avail = XFS_LINEAR_EXTS - erp->er_extcount;
1114 i = 0;
1115 /*
1116 * If nex2 extents fit in the current page, append
1117 * nex2_ep after the new extents.
1118 */
1119 if (nex2 <= ext_avail) {
1120 i = erp->er_extcount;
1121 }
1122 /*
1123 * Otherwise, check if space is available in the
1124 * next page.
1125 */
1126 else if ((erp_idx < nlists - 1) &&
1127 (nex2 <= (ext_avail = XFS_LINEAR_EXTS -
1128 ifp->if_u1.if_ext_irec[erp_idx+1].er_extcount))) {
1129 erp_idx++;
1130 erp++;
1131 /* Create a hole for nex2 extents */
1132 memmove(&erp->er_extbuf[nex2], erp->er_extbuf,
1133 erp->er_extcount * sizeof(xfs_bmbt_rec_t));
1134 }
1135 /*
1136 * Final choice, create a new extent page for
1137 * nex2 extents.
1138 */
1139 else {
1140 erp_idx++;
1141 erp = xfs_iext_irec_new(ifp, erp_idx);
1142 }
1143 memmove(&erp->er_extbuf[i], nex2_ep, byte_diff);
1144 kmem_free(nex2_ep);
1145 erp->er_extcount += nex2;
1146 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, nex2);
1147 }
1148}
1149
1150/*
1151 * This is called when the amount of space required for incore file
1152 * extents needs to be decreased. The ext_diff parameter stores the
1153 * number of extents to be removed and the idx parameter contains
1154 * the extent index where the extents will be removed from.
1155 *
1156 * If the amount of space needed has decreased below the linear
1157 * limit, XFS_IEXT_BUFSZ, then switch to using the contiguous
1158 * extent array. Otherwise, use kmem_realloc() to adjust the
1159 * size to what is needed.
1160 */
1161void
1162xfs_iext_remove(
1163 xfs_inode_t *ip, /* incore inode pointer */
1164 xfs_extnum_t idx, /* index to begin removing exts */
1165 int ext_diff, /* number of extents to remove */
1166 int state) /* type of extent conversion */
1167{
1168 xfs_ifork_t *ifp = (state & BMAP_ATTRFORK) ? ip->i_afp : &ip->i_df;
1169 xfs_extnum_t nextents; /* number of extents in file */
1170 int new_size; /* size of extents after removal */
1171
1172 trace_xfs_iext_remove(ip, idx, state, _RET_IP_);
1173
1174 ASSERT(ext_diff > 0);
1175 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1176 new_size = (nextents - ext_diff) * sizeof(xfs_bmbt_rec_t);
1177
1178 if (new_size == 0) {
1179 xfs_iext_destroy(ifp);
1180 } else if (ifp->if_flags & XFS_IFEXTIREC) {
1181 xfs_iext_remove_indirect(ifp, idx, ext_diff);
1182 } else if (ifp->if_real_bytes) {
1183 xfs_iext_remove_direct(ifp, idx, ext_diff);
1184 } else {
1185 xfs_iext_remove_inline(ifp, idx, ext_diff);
1186 }
1187 ifp->if_bytes = new_size;
1188}
1189
1190/*
1191 * This removes ext_diff extents from the inline buffer, beginning
1192 * at extent index idx.
1193 */
1194void
1195xfs_iext_remove_inline(
1196 xfs_ifork_t *ifp, /* inode fork pointer */
1197 xfs_extnum_t idx, /* index to begin removing exts */
1198 int ext_diff) /* number of extents to remove */
1199{
1200 int nextents; /* number of extents in file */
1201
1202 ASSERT(!(ifp->if_flags & XFS_IFEXTIREC));
1203 ASSERT(idx < XFS_INLINE_EXTS);
1204 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1205 ASSERT(((nextents - ext_diff) > 0) &&
1206 (nextents - ext_diff) < XFS_INLINE_EXTS);
1207
1208 if (idx + ext_diff < nextents) {
1209 memmove(&ifp->if_u2.if_inline_ext[idx],
1210 &ifp->if_u2.if_inline_ext[idx + ext_diff],
1211 (nextents - (idx + ext_diff)) *
1212 sizeof(xfs_bmbt_rec_t));
1213 memset(&ifp->if_u2.if_inline_ext[nextents - ext_diff],
1214 0, ext_diff * sizeof(xfs_bmbt_rec_t));
1215 } else {
1216 memset(&ifp->if_u2.if_inline_ext[idx], 0,
1217 ext_diff * sizeof(xfs_bmbt_rec_t));
1218 }
1219}
1220
1221/*
1222 * This removes ext_diff extents from a linear (direct) extent list,
1223 * beginning at extent index idx. If the extents are being removed
1224 * from the end of the list (ie. truncate) then we just need to re-
1225 * allocate the list to remove the extra space. Otherwise, if the
1226 * extents are being removed from the middle of the existing extent
1227 * entries, then we first need to move the extent records beginning
1228 * at idx + ext_diff up in the list to overwrite the records being
1229 * removed, then remove the extra space via kmem_realloc.
1230 */
1231void
1232xfs_iext_remove_direct(
1233 xfs_ifork_t *ifp, /* inode fork pointer */
1234 xfs_extnum_t idx, /* index to begin removing exts */
1235 int ext_diff) /* number of extents to remove */
1236{
1237 xfs_extnum_t nextents; /* number of extents in file */
1238 int new_size; /* size of extents after removal */
1239
1240 ASSERT(!(ifp->if_flags & XFS_IFEXTIREC));
1241 new_size = ifp->if_bytes -
1242 (ext_diff * sizeof(xfs_bmbt_rec_t));
1243 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1244
1245 if (new_size == 0) {
1246 xfs_iext_destroy(ifp);
1247 return;
1248 }
1249 /* Move extents up in the list (if needed) */
1250 if (idx + ext_diff < nextents) {
1251 memmove(&ifp->if_u1.if_extents[idx],
1252 &ifp->if_u1.if_extents[idx + ext_diff],
1253 (nextents - (idx + ext_diff)) *
1254 sizeof(xfs_bmbt_rec_t));
1255 }
1256 memset(&ifp->if_u1.if_extents[nextents - ext_diff],
1257 0, ext_diff * sizeof(xfs_bmbt_rec_t));
1258 /*
1259 * Reallocate the direct extent list. If the extents
1260 * will fit inside the inode then xfs_iext_realloc_direct
1261 * will switch from direct to inline extent allocation
1262 * mode for us.
1263 */
1264 xfs_iext_realloc_direct(ifp, new_size);
1265 ifp->if_bytes = new_size;
1266}
1267
1268/*
1269 * This is called when incore extents are being removed from the
1270 * indirection array and the extents being removed span multiple extent
1271 * buffers. The idx parameter contains the file extent index where we
1272 * want to begin removing extents, and the count parameter contains
1273 * how many extents need to be removed.
1274 *
1275 * |-------| |-------|
1276 * | nex1 | | | nex1 - number of extents before idx
1277 * |-------| | count |
1278 * | | | | count - number of extents being removed at idx
1279 * | count | |-------|
1280 * | | | nex2 | nex2 - number of extents after idx + count
1281 * |-------| |-------|
1282 */
1283void
1284xfs_iext_remove_indirect(
1285 xfs_ifork_t *ifp, /* inode fork pointer */
1286 xfs_extnum_t idx, /* index to begin removing extents */
1287 int count) /* number of extents to remove */
1288{
1289 xfs_ext_irec_t *erp; /* indirection array pointer */
1290 int erp_idx = 0; /* indirection array index */
1291 xfs_extnum_t ext_cnt; /* extents left to remove */
1292 xfs_extnum_t ext_diff; /* extents to remove in current list */
1293 xfs_extnum_t nex1; /* number of extents before idx */
1294 xfs_extnum_t nex2; /* extents after idx + count */
1295 int page_idx = idx; /* index in target extent list */
1296
1297 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1298 erp = xfs_iext_idx_to_irec(ifp, &page_idx, &erp_idx, 0);
1299 ASSERT(erp != NULL);
1300 nex1 = page_idx;
1301 ext_cnt = count;
1302 while (ext_cnt) {
1303 nex2 = MAX((erp->er_extcount - (nex1 + ext_cnt)), 0);
1304 ext_diff = MIN(ext_cnt, (erp->er_extcount - nex1));
1305 /*
1306 * Check for deletion of entire list;
1307 * xfs_iext_irec_remove() updates extent offsets.
1308 */
1309 if (ext_diff == erp->er_extcount) {
1310 xfs_iext_irec_remove(ifp, erp_idx);
1311 ext_cnt -= ext_diff;
1312 nex1 = 0;
1313 if (ext_cnt) {
1314 ASSERT(erp_idx < ifp->if_real_bytes /
1315 XFS_IEXT_BUFSZ);
1316 erp = &ifp->if_u1.if_ext_irec[erp_idx];
1317 nex1 = 0;
1318 continue;
1319 } else {
1320 break;
1321 }
1322 }
1323 /* Move extents up (if needed) */
1324 if (nex2) {
1325 memmove(&erp->er_extbuf[nex1],
1326 &erp->er_extbuf[nex1 + ext_diff],
1327 nex2 * sizeof(xfs_bmbt_rec_t));
1328 }
1329 /* Zero out rest of page */
1330 memset(&erp->er_extbuf[nex1 + nex2], 0, (XFS_IEXT_BUFSZ -
1331 ((nex1 + nex2) * sizeof(xfs_bmbt_rec_t))));
1332 /* Update remaining counters */
1333 erp->er_extcount -= ext_diff;
1334 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, -ext_diff);
1335 ext_cnt -= ext_diff;
1336 nex1 = 0;
1337 erp_idx++;
1338 erp++;
1339 }
1340 ifp->if_bytes -= count * sizeof(xfs_bmbt_rec_t);
1341 xfs_iext_irec_compact(ifp);
1342}
1343
1344/*
1345 * Create, destroy, or resize a linear (direct) block of extents.
1346 */
1347void
1348xfs_iext_realloc_direct(
1349 xfs_ifork_t *ifp, /* inode fork pointer */
1350 int new_size) /* new size of extents after adding */
1351{
1352 int rnew_size; /* real new size of extents */
1353
1354 rnew_size = new_size;
1355
1356 ASSERT(!(ifp->if_flags & XFS_IFEXTIREC) ||
1357 ((new_size >= 0) && (new_size <= XFS_IEXT_BUFSZ) &&
1358 (new_size != ifp->if_real_bytes)));
1359
1360 /* Free extent records */
1361 if (new_size == 0) {
1362 xfs_iext_destroy(ifp);
1363 }
1364 /* Resize direct extent list and zero any new bytes */
1365 else if (ifp->if_real_bytes) {
1366 /* Check if extents will fit inside the inode */
1367 if (new_size <= XFS_INLINE_EXTS * sizeof(xfs_bmbt_rec_t)) {
1368 xfs_iext_direct_to_inline(ifp, new_size /
1369 (uint)sizeof(xfs_bmbt_rec_t));
1370 ifp->if_bytes = new_size;
1371 return;
1372 }
1373 if (!is_power_of_2(new_size)){
1374 rnew_size = roundup_pow_of_two(new_size);
1375 }
1376 if (rnew_size != ifp->if_real_bytes) {
1377 ifp->if_u1.if_extents =
1378 kmem_realloc(ifp->if_u1.if_extents,
1379 rnew_size,
1380 ifp->if_real_bytes, KM_NOFS);
1381 }
1382 if (rnew_size > ifp->if_real_bytes) {
1383 memset(&ifp->if_u1.if_extents[ifp->if_bytes /
1384 (uint)sizeof(xfs_bmbt_rec_t)], 0,
1385 rnew_size - ifp->if_real_bytes);
1386 }
1387 }
1388 /* Switch from the inline extent buffer to a direct extent list */
1389 else {
1390 if (!is_power_of_2(new_size)) {
1391 rnew_size = roundup_pow_of_two(new_size);
1392 }
1393 xfs_iext_inline_to_direct(ifp, rnew_size);
1394 }
1395 ifp->if_real_bytes = rnew_size;
1396 ifp->if_bytes = new_size;
1397}
1398
1399/*
1400 * Switch from linear (direct) extent records to inline buffer.
1401 */
1402void
1403xfs_iext_direct_to_inline(
1404 xfs_ifork_t *ifp, /* inode fork pointer */
1405 xfs_extnum_t nextents) /* number of extents in file */
1406{
1407 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
1408 ASSERT(nextents <= XFS_INLINE_EXTS);
1409 /*
1410 * The inline buffer was zeroed when we switched
1411 * from inline to direct extent allocation mode,
1412 * so we don't need to clear it here.
1413 */
1414 memcpy(ifp->if_u2.if_inline_ext, ifp->if_u1.if_extents,
1415 nextents * sizeof(xfs_bmbt_rec_t));
1416 kmem_free(ifp->if_u1.if_extents);
1417 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
1418 ifp->if_real_bytes = 0;
1419}
1420
1421/*
1422 * Switch from inline buffer to linear (direct) extent records.
1423 * new_size should already be rounded up to the next power of 2
1424 * by the caller (when appropriate), so use new_size as it is.
1425 * However, since new_size may be rounded up, we can't update
1426 * if_bytes here. It is the caller's responsibility to update
1427 * if_bytes upon return.
1428 */
1429void
1430xfs_iext_inline_to_direct(
1431 xfs_ifork_t *ifp, /* inode fork pointer */
1432 int new_size) /* number of extents in file */
1433{
1434 ifp->if_u1.if_extents = kmem_alloc(new_size, KM_NOFS);
1435 memset(ifp->if_u1.if_extents, 0, new_size);
1436 if (ifp->if_bytes) {
1437 memcpy(ifp->if_u1.if_extents, ifp->if_u2.if_inline_ext,
1438 ifp->if_bytes);
1439 memset(ifp->if_u2.if_inline_ext, 0, XFS_INLINE_EXTS *
1440 sizeof(xfs_bmbt_rec_t));
1441 }
1442 ifp->if_real_bytes = new_size;
1443}
1444
1445/*
1446 * Resize an extent indirection array to new_size bytes.
1447 */
1448STATIC void
1449xfs_iext_realloc_indirect(
1450 xfs_ifork_t *ifp, /* inode fork pointer */
1451 int new_size) /* new indirection array size */
1452{
1453 int nlists; /* number of irec's (ex lists) */
1454 int size; /* current indirection array size */
1455
1456 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1457 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1458 size = nlists * sizeof(xfs_ext_irec_t);
1459 ASSERT(ifp->if_real_bytes);
1460 ASSERT((new_size >= 0) && (new_size != size));
1461 if (new_size == 0) {
1462 xfs_iext_destroy(ifp);
1463 } else {
1464 ifp->if_u1.if_ext_irec = (xfs_ext_irec_t *)
1465 kmem_realloc(ifp->if_u1.if_ext_irec,
1466 new_size, size, KM_NOFS);
1467 }
1468}
1469
1470/*
1471 * Switch from indirection array to linear (direct) extent allocations.
1472 */
1473STATIC void
1474xfs_iext_indirect_to_direct(
1475 xfs_ifork_t *ifp) /* inode fork pointer */
1476{
1477 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
1478 xfs_extnum_t nextents; /* number of extents in file */
1479 int size; /* size of file extents */
1480
1481 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1482 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1483 ASSERT(nextents <= XFS_LINEAR_EXTS);
1484 size = nextents * sizeof(xfs_bmbt_rec_t);
1485
1486 xfs_iext_irec_compact_pages(ifp);
1487 ASSERT(ifp->if_real_bytes == XFS_IEXT_BUFSZ);
1488
1489 ep = ifp->if_u1.if_ext_irec->er_extbuf;
1490 kmem_free(ifp->if_u1.if_ext_irec);
1491 ifp->if_flags &= ~XFS_IFEXTIREC;
1492 ifp->if_u1.if_extents = ep;
1493 ifp->if_bytes = size;
1494 if (nextents < XFS_LINEAR_EXTS) {
1495 xfs_iext_realloc_direct(ifp, size);
1496 }
1497}
1498
1499/*
1500 * Free incore file extents.
1501 */
1502void
1503xfs_iext_destroy(
1504 xfs_ifork_t *ifp) /* inode fork pointer */
1505{
1506 if (ifp->if_flags & XFS_IFEXTIREC) {
1507 int erp_idx;
1508 int nlists;
1509
1510 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1511 for (erp_idx = nlists - 1; erp_idx >= 0 ; erp_idx--) {
1512 xfs_iext_irec_remove(ifp, erp_idx);
1513 }
1514 ifp->if_flags &= ~XFS_IFEXTIREC;
1515 } else if (ifp->if_real_bytes) {
1516 kmem_free(ifp->if_u1.if_extents);
1517 } else if (ifp->if_bytes) {
1518 memset(ifp->if_u2.if_inline_ext, 0, XFS_INLINE_EXTS *
1519 sizeof(xfs_bmbt_rec_t));
1520 }
1521 ifp->if_u1.if_extents = NULL;
1522 ifp->if_real_bytes = 0;
1523 ifp->if_bytes = 0;
1524}
1525
1526/*
1527 * Return a pointer to the extent record for file system block bno.
1528 */
1529xfs_bmbt_rec_host_t * /* pointer to found extent record */
1530xfs_iext_bno_to_ext(
1531 xfs_ifork_t *ifp, /* inode fork pointer */
1532 xfs_fileoff_t bno, /* block number to search for */
1533 xfs_extnum_t *idxp) /* index of target extent */
1534{
1535 xfs_bmbt_rec_host_t *base; /* pointer to first extent */
1536 xfs_filblks_t blockcount = 0; /* number of blocks in extent */
1537 xfs_bmbt_rec_host_t *ep = NULL; /* pointer to target extent */
1538 xfs_ext_irec_t *erp = NULL; /* indirection array pointer */
1539 int high; /* upper boundary in search */
1540 xfs_extnum_t idx = 0; /* index of target extent */
1541 int low; /* lower boundary in search */
1542 xfs_extnum_t nextents; /* number of file extents */
1543 xfs_fileoff_t startoff = 0; /* start offset of extent */
1544
1545 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1546 if (nextents == 0) {
1547 *idxp = 0;
1548 return NULL;
1549 }
1550 low = 0;
1551 if (ifp->if_flags & XFS_IFEXTIREC) {
1552 /* Find target extent list */
1553 int erp_idx = 0;
1554 erp = xfs_iext_bno_to_irec(ifp, bno, &erp_idx);
1555 base = erp->er_extbuf;
1556 high = erp->er_extcount - 1;
1557 } else {
1558 base = ifp->if_u1.if_extents;
1559 high = nextents - 1;
1560 }
1561 /* Binary search extent records */
1562 while (low <= high) {
1563 idx = (low + high) >> 1;
1564 ep = base + idx;
1565 startoff = xfs_bmbt_get_startoff(ep);
1566 blockcount = xfs_bmbt_get_blockcount(ep);
1567 if (bno < startoff) {
1568 high = idx - 1;
1569 } else if (bno >= startoff + blockcount) {
1570 low = idx + 1;
1571 } else {
1572 /* Convert back to file-based extent index */
1573 if (ifp->if_flags & XFS_IFEXTIREC) {
1574 idx += erp->er_extoff;
1575 }
1576 *idxp = idx;
1577 return ep;
1578 }
1579 }
1580 /* Convert back to file-based extent index */
1581 if (ifp->if_flags & XFS_IFEXTIREC) {
1582 idx += erp->er_extoff;
1583 }
1584 if (bno >= startoff + blockcount) {
1585 if (++idx == nextents) {
1586 ep = NULL;
1587 } else {
1588 ep = xfs_iext_get_ext(ifp, idx);
1589 }
1590 }
1591 *idxp = idx;
1592 return ep;
1593}
1594
1595/*
1596 * Return a pointer to the indirection array entry containing the
1597 * extent record for filesystem block bno. Store the index of the
1598 * target irec in *erp_idxp.
1599 */
1600xfs_ext_irec_t * /* pointer to found extent record */
1601xfs_iext_bno_to_irec(
1602 xfs_ifork_t *ifp, /* inode fork pointer */
1603 xfs_fileoff_t bno, /* block number to search for */
1604 int *erp_idxp) /* irec index of target ext list */
1605{
1606 xfs_ext_irec_t *erp = NULL; /* indirection array pointer */
1607 xfs_ext_irec_t *erp_next; /* next indirection array entry */
1608 int erp_idx; /* indirection array index */
1609 int nlists; /* number of extent irec's (lists) */
1610 int high; /* binary search upper limit */
1611 int low; /* binary search lower limit */
1612
1613 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1614 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1615 erp_idx = 0;
1616 low = 0;
1617 high = nlists - 1;
1618 while (low <= high) {
1619 erp_idx = (low + high) >> 1;
1620 erp = &ifp->if_u1.if_ext_irec[erp_idx];
1621 erp_next = erp_idx < nlists - 1 ? erp + 1 : NULL;
1622 if (bno < xfs_bmbt_get_startoff(erp->er_extbuf)) {
1623 high = erp_idx - 1;
1624 } else if (erp_next && bno >=
1625 xfs_bmbt_get_startoff(erp_next->er_extbuf)) {
1626 low = erp_idx + 1;
1627 } else {
1628 break;
1629 }
1630 }
1631 *erp_idxp = erp_idx;
1632 return erp;
1633}
1634
1635/*
1636 * Return a pointer to the indirection array entry containing the
1637 * extent record at file extent index *idxp. Store the index of the
1638 * target irec in *erp_idxp and store the page index of the target
1639 * extent record in *idxp.
1640 */
1641xfs_ext_irec_t *
1642xfs_iext_idx_to_irec(
1643 xfs_ifork_t *ifp, /* inode fork pointer */
1644 xfs_extnum_t *idxp, /* extent index (file -> page) */
1645 int *erp_idxp, /* pointer to target irec */
1646 int realloc) /* new bytes were just added */
1647{
1648 xfs_ext_irec_t *prev; /* pointer to previous irec */
1649 xfs_ext_irec_t *erp = NULL; /* pointer to current irec */
1650 int erp_idx; /* indirection array index */
1651 int nlists; /* number of irec's (ex lists) */
1652 int high; /* binary search upper limit */
1653 int low; /* binary search lower limit */
1654 xfs_extnum_t page_idx = *idxp; /* extent index in target list */
1655
1656 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1657 ASSERT(page_idx >= 0);
1658 ASSERT(page_idx <= ifp->if_bytes / sizeof(xfs_bmbt_rec_t));
1659 ASSERT(page_idx < ifp->if_bytes / sizeof(xfs_bmbt_rec_t) || realloc);
1660
1661 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1662 erp_idx = 0;
1663 low = 0;
1664 high = nlists - 1;
1665
1666 /* Binary search extent irec's */
1667 while (low <= high) {
1668 erp_idx = (low + high) >> 1;
1669 erp = &ifp->if_u1.if_ext_irec[erp_idx];
1670 prev = erp_idx > 0 ? erp - 1 : NULL;
1671 if (page_idx < erp->er_extoff || (page_idx == erp->er_extoff &&
1672 realloc && prev && prev->er_extcount < XFS_LINEAR_EXTS)) {
1673 high = erp_idx - 1;
1674 } else if (page_idx > erp->er_extoff + erp->er_extcount ||
1675 (page_idx == erp->er_extoff + erp->er_extcount &&
1676 !realloc)) {
1677 low = erp_idx + 1;
1678 } else if (page_idx == erp->er_extoff + erp->er_extcount &&
1679 erp->er_extcount == XFS_LINEAR_EXTS) {
1680 ASSERT(realloc);
1681 page_idx = 0;
1682 erp_idx++;
1683 erp = erp_idx < nlists ? erp + 1 : NULL;
1684 break;
1685 } else {
1686 page_idx -= erp->er_extoff;
1687 break;
1688 }
1689 }
1690 *idxp = page_idx;
1691 *erp_idxp = erp_idx;
1692 return erp;
1693}
1694
1695/*
1696 * Allocate and initialize an indirection array once the space needed
1697 * for incore extents increases above XFS_IEXT_BUFSZ.
1698 */
1699void
1700xfs_iext_irec_init(
1701 xfs_ifork_t *ifp) /* inode fork pointer */
1702{
1703 xfs_ext_irec_t *erp; /* indirection array pointer */
1704 xfs_extnum_t nextents; /* number of extents in file */
1705
1706 ASSERT(!(ifp->if_flags & XFS_IFEXTIREC));
1707 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1708 ASSERT(nextents <= XFS_LINEAR_EXTS);
1709
1710 erp = kmem_alloc(sizeof(xfs_ext_irec_t), KM_NOFS);
1711
1712 if (nextents == 0) {
1713 ifp->if_u1.if_extents = kmem_alloc(XFS_IEXT_BUFSZ, KM_NOFS);
1714 } else if (!ifp->if_real_bytes) {
1715 xfs_iext_inline_to_direct(ifp, XFS_IEXT_BUFSZ);
1716 } else if (ifp->if_real_bytes < XFS_IEXT_BUFSZ) {
1717 xfs_iext_realloc_direct(ifp, XFS_IEXT_BUFSZ);
1718 }
1719 erp->er_extbuf = ifp->if_u1.if_extents;
1720 erp->er_extcount = nextents;
1721 erp->er_extoff = 0;
1722
1723 ifp->if_flags |= XFS_IFEXTIREC;
1724 ifp->if_real_bytes = XFS_IEXT_BUFSZ;
1725 ifp->if_bytes = nextents * sizeof(xfs_bmbt_rec_t);
1726 ifp->if_u1.if_ext_irec = erp;
1727
1728 return;
1729}
1730
1731/*
1732 * Allocate and initialize a new entry in the indirection array.
1733 */
1734xfs_ext_irec_t *
1735xfs_iext_irec_new(
1736 xfs_ifork_t *ifp, /* inode fork pointer */
1737 int erp_idx) /* index for new irec */
1738{
1739 xfs_ext_irec_t *erp; /* indirection array pointer */
1740 int i; /* loop counter */
1741 int nlists; /* number of irec's (ex lists) */
1742
1743 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1744 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1745
1746 /* Resize indirection array */
1747 xfs_iext_realloc_indirect(ifp, ++nlists *
1748 sizeof(xfs_ext_irec_t));
1749 /*
1750 * Move records down in the array so the
1751 * new page can use erp_idx.
1752 */
1753 erp = ifp->if_u1.if_ext_irec;
1754 for (i = nlists - 1; i > erp_idx; i--) {
1755 memmove(&erp[i], &erp[i-1], sizeof(xfs_ext_irec_t));
1756 }
1757 ASSERT(i == erp_idx);
1758
1759 /* Initialize new extent record */
1760 erp = ifp->if_u1.if_ext_irec;
1761 erp[erp_idx].er_extbuf = kmem_alloc(XFS_IEXT_BUFSZ, KM_NOFS);
1762 ifp->if_real_bytes = nlists * XFS_IEXT_BUFSZ;
1763 memset(erp[erp_idx].er_extbuf, 0, XFS_IEXT_BUFSZ);
1764 erp[erp_idx].er_extcount = 0;
1765 erp[erp_idx].er_extoff = erp_idx > 0 ?
1766 erp[erp_idx-1].er_extoff + erp[erp_idx-1].er_extcount : 0;
1767 return (&erp[erp_idx]);
1768}
1769
1770/*
1771 * Remove a record from the indirection array.
1772 */
1773void
1774xfs_iext_irec_remove(
1775 xfs_ifork_t *ifp, /* inode fork pointer */
1776 int erp_idx) /* irec index to remove */
1777{
1778 xfs_ext_irec_t *erp; /* indirection array pointer */
1779 int i; /* loop counter */
1780 int nlists; /* number of irec's (ex lists) */
1781
1782 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1783 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1784 erp = &ifp->if_u1.if_ext_irec[erp_idx];
1785 if (erp->er_extbuf) {
1786 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1,
1787 -erp->er_extcount);
1788 kmem_free(erp->er_extbuf);
1789 }
1790 /* Compact extent records */
1791 erp = ifp->if_u1.if_ext_irec;
1792 for (i = erp_idx; i < nlists - 1; i++) {
1793 memmove(&erp[i], &erp[i+1], sizeof(xfs_ext_irec_t));
1794 }
1795 /*
1796 * Manually free the last extent record from the indirection
1797 * array. A call to xfs_iext_realloc_indirect() with a size
1798 * of zero would result in a call to xfs_iext_destroy() which
1799 * would in turn call this function again, creating a nasty
1800 * infinite loop.
1801 */
1802 if (--nlists) {
1803 xfs_iext_realloc_indirect(ifp,
1804 nlists * sizeof(xfs_ext_irec_t));
1805 } else {
1806 kmem_free(ifp->if_u1.if_ext_irec);
1807 }
1808 ifp->if_real_bytes = nlists * XFS_IEXT_BUFSZ;
1809}
1810
1811/*
1812 * This is called to clean up large amounts of unused memory allocated
1813 * by the indirection array. Before compacting anything though, verify
1814 * that the indirection array is still needed and switch back to the
1815 * linear extent list (or even the inline buffer) if possible. The
1816 * compaction policy is as follows:
1817 *
1818 * Full Compaction: Extents fit into a single page (or inline buffer)
1819 * Partial Compaction: Extents occupy less than 50% of allocated space
1820 * No Compaction: Extents occupy at least 50% of allocated space
1821 */
1822void
1823xfs_iext_irec_compact(
1824 xfs_ifork_t *ifp) /* inode fork pointer */
1825{
1826 xfs_extnum_t nextents; /* number of extents in file */
1827 int nlists; /* number of irec's (ex lists) */
1828
1829 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1830 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1831 nextents = ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
1832
1833 if (nextents == 0) {
1834 xfs_iext_destroy(ifp);
1835 } else if (nextents <= XFS_INLINE_EXTS) {
1836 xfs_iext_indirect_to_direct(ifp);
1837 xfs_iext_direct_to_inline(ifp, nextents);
1838 } else if (nextents <= XFS_LINEAR_EXTS) {
1839 xfs_iext_indirect_to_direct(ifp);
1840 } else if (nextents < (nlists * XFS_LINEAR_EXTS) >> 1) {
1841 xfs_iext_irec_compact_pages(ifp);
1842 }
1843}
1844
1845/*
1846 * Combine extents from neighboring extent pages.
1847 */
1848void
1849xfs_iext_irec_compact_pages(
1850 xfs_ifork_t *ifp) /* inode fork pointer */
1851{
1852 xfs_ext_irec_t *erp, *erp_next;/* pointers to irec entries */
1853 int erp_idx = 0; /* indirection array index */
1854 int nlists; /* number of irec's (ex lists) */
1855
1856 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1857 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1858 while (erp_idx < nlists - 1) {
1859 erp = &ifp->if_u1.if_ext_irec[erp_idx];
1860 erp_next = erp + 1;
1861 if (erp_next->er_extcount <=
1862 (XFS_LINEAR_EXTS - erp->er_extcount)) {
1863 memcpy(&erp->er_extbuf[erp->er_extcount],
1864 erp_next->er_extbuf, erp_next->er_extcount *
1865 sizeof(xfs_bmbt_rec_t));
1866 erp->er_extcount += erp_next->er_extcount;
1867 /*
1868 * Free page before removing extent record
1869 * so er_extoffs don't get modified in
1870 * xfs_iext_irec_remove.
1871 */
1872 kmem_free(erp_next->er_extbuf);
1873 erp_next->er_extbuf = NULL;
1874 xfs_iext_irec_remove(ifp, erp_idx + 1);
1875 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1876 } else {
1877 erp_idx++;
1878 }
1879 }
1880}
1881
1882/*
1883 * This is called to update the er_extoff field in the indirection
1884 * array when extents have been added or removed from one of the
1885 * extent lists. erp_idx contains the irec index to begin updating
1886 * at and ext_diff contains the number of extents that were added
1887 * or removed.
1888 */
1889void
1890xfs_iext_irec_update_extoffs(
1891 xfs_ifork_t *ifp, /* inode fork pointer */
1892 int erp_idx, /* irec index to update */
1893 int ext_diff) /* number of new extents */
1894{
1895 int i; /* loop counter */
1896 int nlists; /* number of irec's (ex lists */
1897
1898 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1899 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1900 for (i = erp_idx; i < nlists; i++) {
1901 ifp->if_u1.if_ext_irec[i].er_extoff += ext_diff;
1902 }
1903}
1/*
2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
3 * All Rights Reserved.
4 *
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
7 * published by the Free Software Foundation.
8 *
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.
13 *
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
17 */
18#include <linux/log2.h>
19
20#include "xfs.h"
21#include "xfs_fs.h"
22#include "xfs_format.h"
23#include "xfs_log_format.h"
24#include "xfs_trans_resv.h"
25#include "xfs_mount.h"
26#include "xfs_inode.h"
27#include "xfs_trans.h"
28#include "xfs_inode_item.h"
29#include "xfs_btree.h"
30#include "xfs_bmap_btree.h"
31#include "xfs_bmap.h"
32#include "xfs_error.h"
33#include "xfs_trace.h"
34#include "xfs_attr_sf.h"
35#include "xfs_da_format.h"
36
37kmem_zone_t *xfs_ifork_zone;
38
39STATIC int xfs_iformat_local(xfs_inode_t *, xfs_dinode_t *, int, int);
40STATIC int xfs_iformat_extents(xfs_inode_t *, xfs_dinode_t *, int);
41STATIC int xfs_iformat_btree(xfs_inode_t *, xfs_dinode_t *, int);
42
43#ifdef DEBUG
44/*
45 * Make sure that the extents in the given memory buffer
46 * are valid.
47 */
48void
49xfs_validate_extents(
50 xfs_ifork_t *ifp,
51 int nrecs,
52 xfs_exntfmt_t fmt)
53{
54 xfs_bmbt_irec_t irec;
55 xfs_bmbt_rec_host_t rec;
56 int i;
57
58 for (i = 0; i < nrecs; i++) {
59 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, i);
60 rec.l0 = get_unaligned(&ep->l0);
61 rec.l1 = get_unaligned(&ep->l1);
62 xfs_bmbt_get_all(&rec, &irec);
63 if (fmt == XFS_EXTFMT_NOSTATE)
64 ASSERT(irec.br_state == XFS_EXT_NORM);
65 }
66}
67#else /* DEBUG */
68#define xfs_validate_extents(ifp, nrecs, fmt)
69#endif /* DEBUG */
70
71
72/*
73 * Move inode type and inode format specific information from the
74 * on-disk inode to the in-core inode. For fifos, devs, and sockets
75 * this means set if_rdev to the proper value. For files, directories,
76 * and symlinks this means to bring in the in-line data or extent
77 * pointers. For a file in B-tree format, only the root is immediately
78 * brought in-core. The rest will be in-lined in if_extents when it
79 * is first referenced (see xfs_iread_extents()).
80 */
81int
82xfs_iformat_fork(
83 xfs_inode_t *ip,
84 xfs_dinode_t *dip)
85{
86 xfs_attr_shortform_t *atp;
87 int size;
88 int error = 0;
89 xfs_fsize_t di_size;
90
91 if (unlikely(be32_to_cpu(dip->di_nextents) +
92 be16_to_cpu(dip->di_anextents) >
93 be64_to_cpu(dip->di_nblocks))) {
94 xfs_warn(ip->i_mount,
95 "corrupt dinode %Lu, extent total = %d, nblocks = %Lu.",
96 (unsigned long long)ip->i_ino,
97 (int)(be32_to_cpu(dip->di_nextents) +
98 be16_to_cpu(dip->di_anextents)),
99 (unsigned long long)
100 be64_to_cpu(dip->di_nblocks));
101 XFS_CORRUPTION_ERROR("xfs_iformat(1)", XFS_ERRLEVEL_LOW,
102 ip->i_mount, dip);
103 return -EFSCORRUPTED;
104 }
105
106 if (unlikely(dip->di_forkoff > ip->i_mount->m_sb.sb_inodesize)) {
107 xfs_warn(ip->i_mount, "corrupt dinode %Lu, forkoff = 0x%x.",
108 (unsigned long long)ip->i_ino,
109 dip->di_forkoff);
110 XFS_CORRUPTION_ERROR("xfs_iformat(2)", XFS_ERRLEVEL_LOW,
111 ip->i_mount, dip);
112 return -EFSCORRUPTED;
113 }
114
115 if (unlikely((ip->i_d.di_flags & XFS_DIFLAG_REALTIME) &&
116 !ip->i_mount->m_rtdev_targp)) {
117 xfs_warn(ip->i_mount,
118 "corrupt dinode %Lu, has realtime flag set.",
119 ip->i_ino);
120 XFS_CORRUPTION_ERROR("xfs_iformat(realtime)",
121 XFS_ERRLEVEL_LOW, ip->i_mount, dip);
122 return -EFSCORRUPTED;
123 }
124
125 if (unlikely(xfs_is_reflink_inode(ip) &&
126 (VFS_I(ip)->i_mode & S_IFMT) != S_IFREG)) {
127 xfs_warn(ip->i_mount,
128 "corrupt dinode %llu, wrong file type for reflink.",
129 ip->i_ino);
130 XFS_CORRUPTION_ERROR("xfs_iformat(reflink)",
131 XFS_ERRLEVEL_LOW, ip->i_mount, dip);
132 return -EFSCORRUPTED;
133 }
134
135 if (unlikely(xfs_is_reflink_inode(ip) &&
136 (ip->i_d.di_flags & XFS_DIFLAG_REALTIME))) {
137 xfs_warn(ip->i_mount,
138 "corrupt dinode %llu, has reflink+realtime flag set.",
139 ip->i_ino);
140 XFS_CORRUPTION_ERROR("xfs_iformat(reflink)",
141 XFS_ERRLEVEL_LOW, ip->i_mount, dip);
142 return -EFSCORRUPTED;
143 }
144
145 switch (VFS_I(ip)->i_mode & S_IFMT) {
146 case S_IFIFO:
147 case S_IFCHR:
148 case S_IFBLK:
149 case S_IFSOCK:
150 if (unlikely(dip->di_format != XFS_DINODE_FMT_DEV)) {
151 XFS_CORRUPTION_ERROR("xfs_iformat(3)", XFS_ERRLEVEL_LOW,
152 ip->i_mount, dip);
153 return -EFSCORRUPTED;
154 }
155 ip->i_d.di_size = 0;
156 ip->i_df.if_u2.if_rdev = xfs_dinode_get_rdev(dip);
157 break;
158
159 case S_IFREG:
160 case S_IFLNK:
161 case S_IFDIR:
162 switch (dip->di_format) {
163 case XFS_DINODE_FMT_LOCAL:
164 /*
165 * no local regular files yet
166 */
167 if (unlikely(S_ISREG(be16_to_cpu(dip->di_mode)))) {
168 xfs_warn(ip->i_mount,
169 "corrupt inode %Lu (local format for regular file).",
170 (unsigned long long) ip->i_ino);
171 XFS_CORRUPTION_ERROR("xfs_iformat(4)",
172 XFS_ERRLEVEL_LOW,
173 ip->i_mount, dip);
174 return -EFSCORRUPTED;
175 }
176
177 di_size = be64_to_cpu(dip->di_size);
178 if (unlikely(di_size < 0 ||
179 di_size > XFS_DFORK_DSIZE(dip, ip->i_mount))) {
180 xfs_warn(ip->i_mount,
181 "corrupt inode %Lu (bad size %Ld for local inode).",
182 (unsigned long long) ip->i_ino,
183 (long long) di_size);
184 XFS_CORRUPTION_ERROR("xfs_iformat(5)",
185 XFS_ERRLEVEL_LOW,
186 ip->i_mount, dip);
187 return -EFSCORRUPTED;
188 }
189
190 size = (int)di_size;
191 error = xfs_iformat_local(ip, dip, XFS_DATA_FORK, size);
192 break;
193 case XFS_DINODE_FMT_EXTENTS:
194 error = xfs_iformat_extents(ip, dip, XFS_DATA_FORK);
195 break;
196 case XFS_DINODE_FMT_BTREE:
197 error = xfs_iformat_btree(ip, dip, XFS_DATA_FORK);
198 break;
199 default:
200 XFS_ERROR_REPORT("xfs_iformat(6)", XFS_ERRLEVEL_LOW,
201 ip->i_mount);
202 return -EFSCORRUPTED;
203 }
204 break;
205
206 default:
207 XFS_ERROR_REPORT("xfs_iformat(7)", XFS_ERRLEVEL_LOW, ip->i_mount);
208 return -EFSCORRUPTED;
209 }
210 if (error)
211 return error;
212
213 if (xfs_is_reflink_inode(ip)) {
214 ASSERT(ip->i_cowfp == NULL);
215 xfs_ifork_init_cow(ip);
216 }
217
218 if (!XFS_DFORK_Q(dip))
219 return 0;
220
221 ASSERT(ip->i_afp == NULL);
222 ip->i_afp = kmem_zone_zalloc(xfs_ifork_zone, KM_SLEEP | KM_NOFS);
223
224 switch (dip->di_aformat) {
225 case XFS_DINODE_FMT_LOCAL:
226 atp = (xfs_attr_shortform_t *)XFS_DFORK_APTR(dip);
227 size = be16_to_cpu(atp->hdr.totsize);
228
229 if (unlikely(size < sizeof(struct xfs_attr_sf_hdr))) {
230 xfs_warn(ip->i_mount,
231 "corrupt inode %Lu (bad attr fork size %Ld).",
232 (unsigned long long) ip->i_ino,
233 (long long) size);
234 XFS_CORRUPTION_ERROR("xfs_iformat(8)",
235 XFS_ERRLEVEL_LOW,
236 ip->i_mount, dip);
237 error = -EFSCORRUPTED;
238 break;
239 }
240
241 error = xfs_iformat_local(ip, dip, XFS_ATTR_FORK, size);
242 break;
243 case XFS_DINODE_FMT_EXTENTS:
244 error = xfs_iformat_extents(ip, dip, XFS_ATTR_FORK);
245 break;
246 case XFS_DINODE_FMT_BTREE:
247 error = xfs_iformat_btree(ip, dip, XFS_ATTR_FORK);
248 break;
249 default:
250 error = -EFSCORRUPTED;
251 break;
252 }
253 if (error) {
254 kmem_zone_free(xfs_ifork_zone, ip->i_afp);
255 ip->i_afp = NULL;
256 if (ip->i_cowfp)
257 kmem_zone_free(xfs_ifork_zone, ip->i_cowfp);
258 ip->i_cowfp = NULL;
259 xfs_idestroy_fork(ip, XFS_DATA_FORK);
260 }
261 return error;
262}
263
264void
265xfs_init_local_fork(
266 struct xfs_inode *ip,
267 int whichfork,
268 const void *data,
269 int size)
270{
271 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
272 int mem_size = size, real_size = 0;
273 bool zero_terminate;
274
275 /*
276 * If we are using the local fork to store a symlink body we need to
277 * zero-terminate it so that we can pass it back to the VFS directly.
278 * Overallocate the in-memory fork by one for that and add a zero
279 * to terminate it below.
280 */
281 zero_terminate = S_ISLNK(VFS_I(ip)->i_mode);
282 if (zero_terminate)
283 mem_size++;
284
285 if (size == 0)
286 ifp->if_u1.if_data = NULL;
287 else if (mem_size <= sizeof(ifp->if_u2.if_inline_data))
288 ifp->if_u1.if_data = ifp->if_u2.if_inline_data;
289 else {
290 real_size = roundup(mem_size, 4);
291 ifp->if_u1.if_data = kmem_alloc(real_size, KM_SLEEP | KM_NOFS);
292 }
293
294 if (size) {
295 memcpy(ifp->if_u1.if_data, data, size);
296 if (zero_terminate)
297 ifp->if_u1.if_data[size] = '\0';
298 }
299
300 ifp->if_bytes = size;
301 ifp->if_real_bytes = real_size;
302 ifp->if_flags &= ~(XFS_IFEXTENTS | XFS_IFBROOT);
303 ifp->if_flags |= XFS_IFINLINE;
304}
305
306/*
307 * The file is in-lined in the on-disk inode.
308 * If it fits into if_inline_data, then copy
309 * it there, otherwise allocate a buffer for it
310 * and copy the data there. Either way, set
311 * if_data to point at the data.
312 * If we allocate a buffer for the data, make
313 * sure that its size is a multiple of 4 and
314 * record the real size in i_real_bytes.
315 */
316STATIC int
317xfs_iformat_local(
318 xfs_inode_t *ip,
319 xfs_dinode_t *dip,
320 int whichfork,
321 int size)
322{
323
324 /*
325 * If the size is unreasonable, then something
326 * is wrong and we just bail out rather than crash in
327 * kmem_alloc() or memcpy() below.
328 */
329 if (unlikely(size > XFS_DFORK_SIZE(dip, ip->i_mount, whichfork))) {
330 xfs_warn(ip->i_mount,
331 "corrupt inode %Lu (bad size %d for local fork, size = %d).",
332 (unsigned long long) ip->i_ino, size,
333 XFS_DFORK_SIZE(dip, ip->i_mount, whichfork));
334 XFS_CORRUPTION_ERROR("xfs_iformat_local", XFS_ERRLEVEL_LOW,
335 ip->i_mount, dip);
336 return -EFSCORRUPTED;
337 }
338
339 xfs_init_local_fork(ip, whichfork, XFS_DFORK_PTR(dip, whichfork), size);
340 return 0;
341}
342
343/*
344 * The file consists of a set of extents all
345 * of which fit into the on-disk inode.
346 * If there are few enough extents to fit into
347 * the if_inline_ext, then copy them there.
348 * Otherwise allocate a buffer for them and copy
349 * them into it. Either way, set if_extents
350 * to point at the extents.
351 */
352STATIC int
353xfs_iformat_extents(
354 xfs_inode_t *ip,
355 xfs_dinode_t *dip,
356 int whichfork)
357{
358 xfs_bmbt_rec_t *dp;
359 xfs_ifork_t *ifp;
360 int nex;
361 int size;
362 int i;
363
364 ifp = XFS_IFORK_PTR(ip, whichfork);
365 nex = XFS_DFORK_NEXTENTS(dip, whichfork);
366 size = nex * (uint)sizeof(xfs_bmbt_rec_t);
367
368 /*
369 * If the number of extents is unreasonable, then something
370 * is wrong and we just bail out rather than crash in
371 * kmem_alloc() or memcpy() below.
372 */
373 if (unlikely(size < 0 || size > XFS_DFORK_SIZE(dip, ip->i_mount, whichfork))) {
374 xfs_warn(ip->i_mount, "corrupt inode %Lu ((a)extents = %d).",
375 (unsigned long long) ip->i_ino, nex);
376 XFS_CORRUPTION_ERROR("xfs_iformat_extents(1)", XFS_ERRLEVEL_LOW,
377 ip->i_mount, dip);
378 return -EFSCORRUPTED;
379 }
380
381 ifp->if_real_bytes = 0;
382 if (nex == 0)
383 ifp->if_u1.if_extents = NULL;
384 else if (nex <= XFS_INLINE_EXTS)
385 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
386 else
387 xfs_iext_add(ifp, 0, nex);
388
389 ifp->if_bytes = size;
390 if (size) {
391 dp = (xfs_bmbt_rec_t *) XFS_DFORK_PTR(dip, whichfork);
392 xfs_validate_extents(ifp, nex, XFS_EXTFMT_INODE(ip));
393 for (i = 0; i < nex; i++, dp++) {
394 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, i);
395 ep->l0 = get_unaligned_be64(&dp->l0);
396 ep->l1 = get_unaligned_be64(&dp->l1);
397 }
398 XFS_BMAP_TRACE_EXLIST(ip, nex, whichfork);
399 if (whichfork != XFS_DATA_FORK ||
400 XFS_EXTFMT_INODE(ip) == XFS_EXTFMT_NOSTATE)
401 if (unlikely(xfs_check_nostate_extents(
402 ifp, 0, nex))) {
403 XFS_ERROR_REPORT("xfs_iformat_extents(2)",
404 XFS_ERRLEVEL_LOW,
405 ip->i_mount);
406 return -EFSCORRUPTED;
407 }
408 }
409 ifp->if_flags |= XFS_IFEXTENTS;
410 return 0;
411}
412
413/*
414 * The file has too many extents to fit into
415 * the inode, so they are in B-tree format.
416 * Allocate a buffer for the root of the B-tree
417 * and copy the root into it. The i_extents
418 * field will remain NULL until all of the
419 * extents are read in (when they are needed).
420 */
421STATIC int
422xfs_iformat_btree(
423 xfs_inode_t *ip,
424 xfs_dinode_t *dip,
425 int whichfork)
426{
427 struct xfs_mount *mp = ip->i_mount;
428 xfs_bmdr_block_t *dfp;
429 xfs_ifork_t *ifp;
430 /* REFERENCED */
431 int nrecs;
432 int size;
433 int level;
434
435 ifp = XFS_IFORK_PTR(ip, whichfork);
436 dfp = (xfs_bmdr_block_t *)XFS_DFORK_PTR(dip, whichfork);
437 size = XFS_BMAP_BROOT_SPACE(mp, dfp);
438 nrecs = be16_to_cpu(dfp->bb_numrecs);
439 level = be16_to_cpu(dfp->bb_level);
440
441 /*
442 * blow out if -- fork has less extents than can fit in
443 * fork (fork shouldn't be a btree format), root btree
444 * block has more records than can fit into the fork,
445 * or the number of extents is greater than the number of
446 * blocks.
447 */
448 if (unlikely(XFS_IFORK_NEXTENTS(ip, whichfork) <=
449 XFS_IFORK_MAXEXT(ip, whichfork) ||
450 XFS_BMDR_SPACE_CALC(nrecs) >
451 XFS_DFORK_SIZE(dip, mp, whichfork) ||
452 XFS_IFORK_NEXTENTS(ip, whichfork) > ip->i_d.di_nblocks) ||
453 level == 0 || level > XFS_BTREE_MAXLEVELS) {
454 xfs_warn(mp, "corrupt inode %Lu (btree).",
455 (unsigned long long) ip->i_ino);
456 XFS_CORRUPTION_ERROR("xfs_iformat_btree", XFS_ERRLEVEL_LOW,
457 mp, dip);
458 return -EFSCORRUPTED;
459 }
460
461 ifp->if_broot_bytes = size;
462 ifp->if_broot = kmem_alloc(size, KM_SLEEP | KM_NOFS);
463 ASSERT(ifp->if_broot != NULL);
464 /*
465 * Copy and convert from the on-disk structure
466 * to the in-memory structure.
467 */
468 xfs_bmdr_to_bmbt(ip, dfp, XFS_DFORK_SIZE(dip, ip->i_mount, whichfork),
469 ifp->if_broot, size);
470 ifp->if_flags &= ~XFS_IFEXTENTS;
471 ifp->if_flags |= XFS_IFBROOT;
472
473 return 0;
474}
475
476/*
477 * Read in extents from a btree-format inode.
478 * Allocate and fill in if_extents. Real work is done in xfs_bmap.c.
479 */
480int
481xfs_iread_extents(
482 xfs_trans_t *tp,
483 xfs_inode_t *ip,
484 int whichfork)
485{
486 int error;
487 xfs_ifork_t *ifp;
488 xfs_extnum_t nextents;
489
490 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL));
491
492 if (unlikely(XFS_IFORK_FORMAT(ip, whichfork) != XFS_DINODE_FMT_BTREE)) {
493 XFS_ERROR_REPORT("xfs_iread_extents", XFS_ERRLEVEL_LOW,
494 ip->i_mount);
495 return -EFSCORRUPTED;
496 }
497 nextents = XFS_IFORK_NEXTENTS(ip, whichfork);
498 ifp = XFS_IFORK_PTR(ip, whichfork);
499
500 /*
501 * We know that the size is valid (it's checked in iformat_btree)
502 */
503 ifp->if_bytes = ifp->if_real_bytes = 0;
504 xfs_iext_add(ifp, 0, nextents);
505 error = xfs_bmap_read_extents(tp, ip, whichfork);
506 if (error) {
507 xfs_iext_destroy(ifp);
508 return error;
509 }
510 xfs_validate_extents(ifp, nextents, XFS_EXTFMT_INODE(ip));
511 ifp->if_flags |= XFS_IFEXTENTS;
512 return 0;
513}
514/*
515 * Reallocate the space for if_broot based on the number of records
516 * being added or deleted as indicated in rec_diff. Move the records
517 * and pointers in if_broot to fit the new size. When shrinking this
518 * will eliminate holes between the records and pointers created by
519 * the caller. When growing this will create holes to be filled in
520 * by the caller.
521 *
522 * The caller must not request to add more records than would fit in
523 * the on-disk inode root. If the if_broot is currently NULL, then
524 * if we are adding records, one will be allocated. The caller must also
525 * not request that the number of records go below zero, although
526 * it can go to zero.
527 *
528 * ip -- the inode whose if_broot area is changing
529 * ext_diff -- the change in the number of records, positive or negative,
530 * requested for the if_broot array.
531 */
532void
533xfs_iroot_realloc(
534 xfs_inode_t *ip,
535 int rec_diff,
536 int whichfork)
537{
538 struct xfs_mount *mp = ip->i_mount;
539 int cur_max;
540 xfs_ifork_t *ifp;
541 struct xfs_btree_block *new_broot;
542 int new_max;
543 size_t new_size;
544 char *np;
545 char *op;
546
547 /*
548 * Handle the degenerate case quietly.
549 */
550 if (rec_diff == 0) {
551 return;
552 }
553
554 ifp = XFS_IFORK_PTR(ip, whichfork);
555 if (rec_diff > 0) {
556 /*
557 * If there wasn't any memory allocated before, just
558 * allocate it now and get out.
559 */
560 if (ifp->if_broot_bytes == 0) {
561 new_size = XFS_BMAP_BROOT_SPACE_CALC(mp, rec_diff);
562 ifp->if_broot = kmem_alloc(new_size, KM_SLEEP | KM_NOFS);
563 ifp->if_broot_bytes = (int)new_size;
564 return;
565 }
566
567 /*
568 * If there is already an existing if_broot, then we need
569 * to realloc() it and shift the pointers to their new
570 * location. The records don't change location because
571 * they are kept butted up against the btree block header.
572 */
573 cur_max = xfs_bmbt_maxrecs(mp, ifp->if_broot_bytes, 0);
574 new_max = cur_max + rec_diff;
575 new_size = XFS_BMAP_BROOT_SPACE_CALC(mp, new_max);
576 ifp->if_broot = kmem_realloc(ifp->if_broot, new_size,
577 KM_SLEEP | KM_NOFS);
578 op = (char *)XFS_BMAP_BROOT_PTR_ADDR(mp, ifp->if_broot, 1,
579 ifp->if_broot_bytes);
580 np = (char *)XFS_BMAP_BROOT_PTR_ADDR(mp, ifp->if_broot, 1,
581 (int)new_size);
582 ifp->if_broot_bytes = (int)new_size;
583 ASSERT(XFS_BMAP_BMDR_SPACE(ifp->if_broot) <=
584 XFS_IFORK_SIZE(ip, whichfork));
585 memmove(np, op, cur_max * (uint)sizeof(xfs_fsblock_t));
586 return;
587 }
588
589 /*
590 * rec_diff is less than 0. In this case, we are shrinking the
591 * if_broot buffer. It must already exist. If we go to zero
592 * records, just get rid of the root and clear the status bit.
593 */
594 ASSERT((ifp->if_broot != NULL) && (ifp->if_broot_bytes > 0));
595 cur_max = xfs_bmbt_maxrecs(mp, ifp->if_broot_bytes, 0);
596 new_max = cur_max + rec_diff;
597 ASSERT(new_max >= 0);
598 if (new_max > 0)
599 new_size = XFS_BMAP_BROOT_SPACE_CALC(mp, new_max);
600 else
601 new_size = 0;
602 if (new_size > 0) {
603 new_broot = kmem_alloc(new_size, KM_SLEEP | KM_NOFS);
604 /*
605 * First copy over the btree block header.
606 */
607 memcpy(new_broot, ifp->if_broot,
608 XFS_BMBT_BLOCK_LEN(ip->i_mount));
609 } else {
610 new_broot = NULL;
611 ifp->if_flags &= ~XFS_IFBROOT;
612 }
613
614 /*
615 * Only copy the records and pointers if there are any.
616 */
617 if (new_max > 0) {
618 /*
619 * First copy the records.
620 */
621 op = (char *)XFS_BMBT_REC_ADDR(mp, ifp->if_broot, 1);
622 np = (char *)XFS_BMBT_REC_ADDR(mp, new_broot, 1);
623 memcpy(np, op, new_max * (uint)sizeof(xfs_bmbt_rec_t));
624
625 /*
626 * Then copy the pointers.
627 */
628 op = (char *)XFS_BMAP_BROOT_PTR_ADDR(mp, ifp->if_broot, 1,
629 ifp->if_broot_bytes);
630 np = (char *)XFS_BMAP_BROOT_PTR_ADDR(mp, new_broot, 1,
631 (int)new_size);
632 memcpy(np, op, new_max * (uint)sizeof(xfs_fsblock_t));
633 }
634 kmem_free(ifp->if_broot);
635 ifp->if_broot = new_broot;
636 ifp->if_broot_bytes = (int)new_size;
637 if (ifp->if_broot)
638 ASSERT(XFS_BMAP_BMDR_SPACE(ifp->if_broot) <=
639 XFS_IFORK_SIZE(ip, whichfork));
640 return;
641}
642
643
644/*
645 * This is called when the amount of space needed for if_data
646 * is increased or decreased. The change in size is indicated by
647 * the number of bytes that need to be added or deleted in the
648 * byte_diff parameter.
649 *
650 * If the amount of space needed has decreased below the size of the
651 * inline buffer, then switch to using the inline buffer. Otherwise,
652 * use kmem_realloc() or kmem_alloc() to adjust the size of the buffer
653 * to what is needed.
654 *
655 * ip -- the inode whose if_data area is changing
656 * byte_diff -- the change in the number of bytes, positive or negative,
657 * requested for the if_data array.
658 */
659void
660xfs_idata_realloc(
661 xfs_inode_t *ip,
662 int byte_diff,
663 int whichfork)
664{
665 xfs_ifork_t *ifp;
666 int new_size;
667 int real_size;
668
669 if (byte_diff == 0) {
670 return;
671 }
672
673 ifp = XFS_IFORK_PTR(ip, whichfork);
674 new_size = (int)ifp->if_bytes + byte_diff;
675 ASSERT(new_size >= 0);
676
677 if (new_size == 0) {
678 if (ifp->if_u1.if_data != ifp->if_u2.if_inline_data) {
679 kmem_free(ifp->if_u1.if_data);
680 }
681 ifp->if_u1.if_data = NULL;
682 real_size = 0;
683 } else if (new_size <= sizeof(ifp->if_u2.if_inline_data)) {
684 /*
685 * If the valid extents/data can fit in if_inline_ext/data,
686 * copy them from the malloc'd vector and free it.
687 */
688 if (ifp->if_u1.if_data == NULL) {
689 ifp->if_u1.if_data = ifp->if_u2.if_inline_data;
690 } else if (ifp->if_u1.if_data != ifp->if_u2.if_inline_data) {
691 ASSERT(ifp->if_real_bytes != 0);
692 memcpy(ifp->if_u2.if_inline_data, ifp->if_u1.if_data,
693 new_size);
694 kmem_free(ifp->if_u1.if_data);
695 ifp->if_u1.if_data = ifp->if_u2.if_inline_data;
696 }
697 real_size = 0;
698 } else {
699 /*
700 * Stuck with malloc/realloc.
701 * For inline data, the underlying buffer must be
702 * a multiple of 4 bytes in size so that it can be
703 * logged and stay on word boundaries. We enforce
704 * that here.
705 */
706 real_size = roundup(new_size, 4);
707 if (ifp->if_u1.if_data == NULL) {
708 ASSERT(ifp->if_real_bytes == 0);
709 ifp->if_u1.if_data = kmem_alloc(real_size,
710 KM_SLEEP | KM_NOFS);
711 } else if (ifp->if_u1.if_data != ifp->if_u2.if_inline_data) {
712 /*
713 * Only do the realloc if the underlying size
714 * is really changing.
715 */
716 if (ifp->if_real_bytes != real_size) {
717 ifp->if_u1.if_data =
718 kmem_realloc(ifp->if_u1.if_data,
719 real_size,
720 KM_SLEEP | KM_NOFS);
721 }
722 } else {
723 ASSERT(ifp->if_real_bytes == 0);
724 ifp->if_u1.if_data = kmem_alloc(real_size,
725 KM_SLEEP | KM_NOFS);
726 memcpy(ifp->if_u1.if_data, ifp->if_u2.if_inline_data,
727 ifp->if_bytes);
728 }
729 }
730 ifp->if_real_bytes = real_size;
731 ifp->if_bytes = new_size;
732 ASSERT(ifp->if_bytes <= XFS_IFORK_SIZE(ip, whichfork));
733}
734
735void
736xfs_idestroy_fork(
737 xfs_inode_t *ip,
738 int whichfork)
739{
740 xfs_ifork_t *ifp;
741
742 ifp = XFS_IFORK_PTR(ip, whichfork);
743 if (ifp->if_broot != NULL) {
744 kmem_free(ifp->if_broot);
745 ifp->if_broot = NULL;
746 }
747
748 /*
749 * If the format is local, then we can't have an extents
750 * array so just look for an inline data array. If we're
751 * not local then we may or may not have an extents list,
752 * so check and free it up if we do.
753 */
754 if (XFS_IFORK_FORMAT(ip, whichfork) == XFS_DINODE_FMT_LOCAL) {
755 if ((ifp->if_u1.if_data != ifp->if_u2.if_inline_data) &&
756 (ifp->if_u1.if_data != NULL)) {
757 ASSERT(ifp->if_real_bytes != 0);
758 kmem_free(ifp->if_u1.if_data);
759 ifp->if_u1.if_data = NULL;
760 ifp->if_real_bytes = 0;
761 }
762 } else if ((ifp->if_flags & XFS_IFEXTENTS) &&
763 ((ifp->if_flags & XFS_IFEXTIREC) ||
764 ((ifp->if_u1.if_extents != NULL) &&
765 (ifp->if_u1.if_extents != ifp->if_u2.if_inline_ext)))) {
766 ASSERT(ifp->if_real_bytes != 0);
767 xfs_iext_destroy(ifp);
768 }
769 ASSERT(ifp->if_u1.if_extents == NULL ||
770 ifp->if_u1.if_extents == ifp->if_u2.if_inline_ext);
771 ASSERT(ifp->if_real_bytes == 0);
772 if (whichfork == XFS_ATTR_FORK) {
773 kmem_zone_free(xfs_ifork_zone, ip->i_afp);
774 ip->i_afp = NULL;
775 } else if (whichfork == XFS_COW_FORK) {
776 kmem_zone_free(xfs_ifork_zone, ip->i_cowfp);
777 ip->i_cowfp = NULL;
778 }
779}
780
781/* Count number of incore extents based on if_bytes */
782xfs_extnum_t
783xfs_iext_count(struct xfs_ifork *ifp)
784{
785 return ifp->if_bytes / (uint)sizeof(xfs_bmbt_rec_t);
786}
787
788/*
789 * Convert in-core extents to on-disk form
790 *
791 * For either the data or attr fork in extent format, we need to endian convert
792 * the in-core extent as we place them into the on-disk inode.
793 *
794 * In the case of the data fork, the in-core and on-disk fork sizes can be
795 * different due to delayed allocation extents. We only copy on-disk extents
796 * here, so callers must always use the physical fork size to determine the
797 * size of the buffer passed to this routine. We will return the size actually
798 * used.
799 */
800int
801xfs_iextents_copy(
802 xfs_inode_t *ip,
803 xfs_bmbt_rec_t *dp,
804 int whichfork)
805{
806 int copied;
807 int i;
808 xfs_ifork_t *ifp;
809 int nrecs;
810 xfs_fsblock_t start_block;
811
812 ifp = XFS_IFORK_PTR(ip, whichfork);
813 ASSERT(xfs_isilocked(ip, XFS_ILOCK_EXCL|XFS_ILOCK_SHARED));
814 ASSERT(ifp->if_bytes > 0);
815
816 nrecs = xfs_iext_count(ifp);
817 XFS_BMAP_TRACE_EXLIST(ip, nrecs, whichfork);
818 ASSERT(nrecs > 0);
819
820 /*
821 * There are some delayed allocation extents in the
822 * inode, so copy the extents one at a time and skip
823 * the delayed ones. There must be at least one
824 * non-delayed extent.
825 */
826 copied = 0;
827 for (i = 0; i < nrecs; i++) {
828 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, i);
829 start_block = xfs_bmbt_get_startblock(ep);
830 if (isnullstartblock(start_block)) {
831 /*
832 * It's a delayed allocation extent, so skip it.
833 */
834 continue;
835 }
836
837 /* Translate to on disk format */
838 put_unaligned_be64(ep->l0, &dp->l0);
839 put_unaligned_be64(ep->l1, &dp->l1);
840 dp++;
841 copied++;
842 }
843 ASSERT(copied != 0);
844 xfs_validate_extents(ifp, copied, XFS_EXTFMT_INODE(ip));
845
846 return (copied * (uint)sizeof(xfs_bmbt_rec_t));
847}
848
849/*
850 * Each of the following cases stores data into the same region
851 * of the on-disk inode, so only one of them can be valid at
852 * any given time. While it is possible to have conflicting formats
853 * and log flags, e.g. having XFS_ILOG_?DATA set when the fork is
854 * in EXTENTS format, this can only happen when the fork has
855 * changed formats after being modified but before being flushed.
856 * In these cases, the format always takes precedence, because the
857 * format indicates the current state of the fork.
858 */
859void
860xfs_iflush_fork(
861 xfs_inode_t *ip,
862 xfs_dinode_t *dip,
863 xfs_inode_log_item_t *iip,
864 int whichfork)
865{
866 char *cp;
867 xfs_ifork_t *ifp;
868 xfs_mount_t *mp;
869 static const short brootflag[2] =
870 { XFS_ILOG_DBROOT, XFS_ILOG_ABROOT };
871 static const short dataflag[2] =
872 { XFS_ILOG_DDATA, XFS_ILOG_ADATA };
873 static const short extflag[2] =
874 { XFS_ILOG_DEXT, XFS_ILOG_AEXT };
875
876 if (!iip)
877 return;
878 ifp = XFS_IFORK_PTR(ip, whichfork);
879 /*
880 * This can happen if we gave up in iformat in an error path,
881 * for the attribute fork.
882 */
883 if (!ifp) {
884 ASSERT(whichfork == XFS_ATTR_FORK);
885 return;
886 }
887 cp = XFS_DFORK_PTR(dip, whichfork);
888 mp = ip->i_mount;
889 switch (XFS_IFORK_FORMAT(ip, whichfork)) {
890 case XFS_DINODE_FMT_LOCAL:
891 if ((iip->ili_fields & dataflag[whichfork]) &&
892 (ifp->if_bytes > 0)) {
893 ASSERT(ifp->if_u1.if_data != NULL);
894 ASSERT(ifp->if_bytes <= XFS_IFORK_SIZE(ip, whichfork));
895 memcpy(cp, ifp->if_u1.if_data, ifp->if_bytes);
896 }
897 break;
898
899 case XFS_DINODE_FMT_EXTENTS:
900 ASSERT((ifp->if_flags & XFS_IFEXTENTS) ||
901 !(iip->ili_fields & extflag[whichfork]));
902 if ((iip->ili_fields & extflag[whichfork]) &&
903 (ifp->if_bytes > 0)) {
904 ASSERT(xfs_iext_get_ext(ifp, 0));
905 ASSERT(XFS_IFORK_NEXTENTS(ip, whichfork) > 0);
906 (void)xfs_iextents_copy(ip, (xfs_bmbt_rec_t *)cp,
907 whichfork);
908 }
909 break;
910
911 case XFS_DINODE_FMT_BTREE:
912 if ((iip->ili_fields & brootflag[whichfork]) &&
913 (ifp->if_broot_bytes > 0)) {
914 ASSERT(ifp->if_broot != NULL);
915 ASSERT(XFS_BMAP_BMDR_SPACE(ifp->if_broot) <=
916 XFS_IFORK_SIZE(ip, whichfork));
917 xfs_bmbt_to_bmdr(mp, ifp->if_broot, ifp->if_broot_bytes,
918 (xfs_bmdr_block_t *)cp,
919 XFS_DFORK_SIZE(dip, mp, whichfork));
920 }
921 break;
922
923 case XFS_DINODE_FMT_DEV:
924 if (iip->ili_fields & XFS_ILOG_DEV) {
925 ASSERT(whichfork == XFS_DATA_FORK);
926 xfs_dinode_put_rdev(dip, ip->i_df.if_u2.if_rdev);
927 }
928 break;
929
930 case XFS_DINODE_FMT_UUID:
931 if (iip->ili_fields & XFS_ILOG_UUID) {
932 ASSERT(whichfork == XFS_DATA_FORK);
933 memcpy(XFS_DFORK_DPTR(dip),
934 &ip->i_df.if_u2.if_uuid,
935 sizeof(uuid_t));
936 }
937 break;
938
939 default:
940 ASSERT(0);
941 break;
942 }
943}
944
945/*
946 * Return a pointer to the extent record at file index idx.
947 */
948xfs_bmbt_rec_host_t *
949xfs_iext_get_ext(
950 xfs_ifork_t *ifp, /* inode fork pointer */
951 xfs_extnum_t idx) /* index of target extent */
952{
953 ASSERT(idx >= 0);
954 ASSERT(idx < xfs_iext_count(ifp));
955
956 if ((ifp->if_flags & XFS_IFEXTIREC) && (idx == 0)) {
957 return ifp->if_u1.if_ext_irec->er_extbuf;
958 } else if (ifp->if_flags & XFS_IFEXTIREC) {
959 xfs_ext_irec_t *erp; /* irec pointer */
960 int erp_idx = 0; /* irec index */
961 xfs_extnum_t page_idx = idx; /* ext index in target list */
962
963 erp = xfs_iext_idx_to_irec(ifp, &page_idx, &erp_idx, 0);
964 return &erp->er_extbuf[page_idx];
965 } else if (ifp->if_bytes) {
966 return &ifp->if_u1.if_extents[idx];
967 } else {
968 return NULL;
969 }
970}
971
972/* Convert bmap state flags to an inode fork. */
973struct xfs_ifork *
974xfs_iext_state_to_fork(
975 struct xfs_inode *ip,
976 int state)
977{
978 if (state & BMAP_COWFORK)
979 return ip->i_cowfp;
980 else if (state & BMAP_ATTRFORK)
981 return ip->i_afp;
982 return &ip->i_df;
983}
984
985/*
986 * Insert new item(s) into the extent records for incore inode
987 * fork 'ifp'. 'count' new items are inserted at index 'idx'.
988 */
989void
990xfs_iext_insert(
991 xfs_inode_t *ip, /* incore inode pointer */
992 xfs_extnum_t idx, /* starting index of new items */
993 xfs_extnum_t count, /* number of inserted items */
994 xfs_bmbt_irec_t *new, /* items to insert */
995 int state) /* type of extent conversion */
996{
997 xfs_ifork_t *ifp = xfs_iext_state_to_fork(ip, state);
998 xfs_extnum_t i; /* extent record index */
999
1000 trace_xfs_iext_insert(ip, idx, new, state, _RET_IP_);
1001
1002 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
1003 xfs_iext_add(ifp, idx, count);
1004 for (i = idx; i < idx + count; i++, new++)
1005 xfs_bmbt_set_all(xfs_iext_get_ext(ifp, i), new);
1006}
1007
1008/*
1009 * This is called when the amount of space required for incore file
1010 * extents needs to be increased. The ext_diff parameter stores the
1011 * number of new extents being added and the idx parameter contains
1012 * the extent index where the new extents will be added. If the new
1013 * extents are being appended, then we just need to (re)allocate and
1014 * initialize the space. Otherwise, if the new extents are being
1015 * inserted into the middle of the existing entries, a bit more work
1016 * is required to make room for the new extents to be inserted. The
1017 * caller is responsible for filling in the new extent entries upon
1018 * return.
1019 */
1020void
1021xfs_iext_add(
1022 xfs_ifork_t *ifp, /* inode fork pointer */
1023 xfs_extnum_t idx, /* index to begin adding exts */
1024 int ext_diff) /* number of extents to add */
1025{
1026 int byte_diff; /* new bytes being added */
1027 int new_size; /* size of extents after adding */
1028 xfs_extnum_t nextents; /* number of extents in file */
1029
1030 nextents = xfs_iext_count(ifp);
1031 ASSERT((idx >= 0) && (idx <= nextents));
1032 byte_diff = ext_diff * sizeof(xfs_bmbt_rec_t);
1033 new_size = ifp->if_bytes + byte_diff;
1034 /*
1035 * If the new number of extents (nextents + ext_diff)
1036 * fits inside the inode, then continue to use the inline
1037 * extent buffer.
1038 */
1039 if (nextents + ext_diff <= XFS_INLINE_EXTS) {
1040 if (idx < nextents) {
1041 memmove(&ifp->if_u2.if_inline_ext[idx + ext_diff],
1042 &ifp->if_u2.if_inline_ext[idx],
1043 (nextents - idx) * sizeof(xfs_bmbt_rec_t));
1044 memset(&ifp->if_u2.if_inline_ext[idx], 0, byte_diff);
1045 }
1046 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
1047 ifp->if_real_bytes = 0;
1048 }
1049 /*
1050 * Otherwise use a linear (direct) extent list.
1051 * If the extents are currently inside the inode,
1052 * xfs_iext_realloc_direct will switch us from
1053 * inline to direct extent allocation mode.
1054 */
1055 else if (nextents + ext_diff <= XFS_LINEAR_EXTS) {
1056 xfs_iext_realloc_direct(ifp, new_size);
1057 if (idx < nextents) {
1058 memmove(&ifp->if_u1.if_extents[idx + ext_diff],
1059 &ifp->if_u1.if_extents[idx],
1060 (nextents - idx) * sizeof(xfs_bmbt_rec_t));
1061 memset(&ifp->if_u1.if_extents[idx], 0, byte_diff);
1062 }
1063 }
1064 /* Indirection array */
1065 else {
1066 xfs_ext_irec_t *erp;
1067 int erp_idx = 0;
1068 int page_idx = idx;
1069
1070 ASSERT(nextents + ext_diff > XFS_LINEAR_EXTS);
1071 if (ifp->if_flags & XFS_IFEXTIREC) {
1072 erp = xfs_iext_idx_to_irec(ifp, &page_idx, &erp_idx, 1);
1073 } else {
1074 xfs_iext_irec_init(ifp);
1075 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1076 erp = ifp->if_u1.if_ext_irec;
1077 }
1078 /* Extents fit in target extent page */
1079 if (erp && erp->er_extcount + ext_diff <= XFS_LINEAR_EXTS) {
1080 if (page_idx < erp->er_extcount) {
1081 memmove(&erp->er_extbuf[page_idx + ext_diff],
1082 &erp->er_extbuf[page_idx],
1083 (erp->er_extcount - page_idx) *
1084 sizeof(xfs_bmbt_rec_t));
1085 memset(&erp->er_extbuf[page_idx], 0, byte_diff);
1086 }
1087 erp->er_extcount += ext_diff;
1088 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, ext_diff);
1089 }
1090 /* Insert a new extent page */
1091 else if (erp) {
1092 xfs_iext_add_indirect_multi(ifp,
1093 erp_idx, page_idx, ext_diff);
1094 }
1095 /*
1096 * If extent(s) are being appended to the last page in
1097 * the indirection array and the new extent(s) don't fit
1098 * in the page, then erp is NULL and erp_idx is set to
1099 * the next index needed in the indirection array.
1100 */
1101 else {
1102 uint count = ext_diff;
1103
1104 while (count) {
1105 erp = xfs_iext_irec_new(ifp, erp_idx);
1106 erp->er_extcount = min(count, XFS_LINEAR_EXTS);
1107 count -= erp->er_extcount;
1108 if (count)
1109 erp_idx++;
1110 }
1111 }
1112 }
1113 ifp->if_bytes = new_size;
1114}
1115
1116/*
1117 * This is called when incore extents are being added to the indirection
1118 * array and the new extents do not fit in the target extent list. The
1119 * erp_idx parameter contains the irec index for the target extent list
1120 * in the indirection array, and the idx parameter contains the extent
1121 * index within the list. The number of extents being added is stored
1122 * in the count parameter.
1123 *
1124 * |-------| |-------|
1125 * | | | | idx - number of extents before idx
1126 * | idx | | count |
1127 * | | | | count - number of extents being inserted at idx
1128 * |-------| |-------|
1129 * | count | | nex2 | nex2 - number of extents after idx + count
1130 * |-------| |-------|
1131 */
1132void
1133xfs_iext_add_indirect_multi(
1134 xfs_ifork_t *ifp, /* inode fork pointer */
1135 int erp_idx, /* target extent irec index */
1136 xfs_extnum_t idx, /* index within target list */
1137 int count) /* new extents being added */
1138{
1139 int byte_diff; /* new bytes being added */
1140 xfs_ext_irec_t *erp; /* pointer to irec entry */
1141 xfs_extnum_t ext_diff; /* number of extents to add */
1142 xfs_extnum_t ext_cnt; /* new extents still needed */
1143 xfs_extnum_t nex2; /* extents after idx + count */
1144 xfs_bmbt_rec_t *nex2_ep = NULL; /* temp list for nex2 extents */
1145 int nlists; /* number of irec's (lists) */
1146
1147 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1148 erp = &ifp->if_u1.if_ext_irec[erp_idx];
1149 nex2 = erp->er_extcount - idx;
1150 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1151
1152 /*
1153 * Save second part of target extent list
1154 * (all extents past */
1155 if (nex2) {
1156 byte_diff = nex2 * sizeof(xfs_bmbt_rec_t);
1157 nex2_ep = (xfs_bmbt_rec_t *) kmem_alloc(byte_diff, KM_NOFS);
1158 memmove(nex2_ep, &erp->er_extbuf[idx], byte_diff);
1159 erp->er_extcount -= nex2;
1160 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, -nex2);
1161 memset(&erp->er_extbuf[idx], 0, byte_diff);
1162 }
1163
1164 /*
1165 * Add the new extents to the end of the target
1166 * list, then allocate new irec record(s) and
1167 * extent buffer(s) as needed to store the rest
1168 * of the new extents.
1169 */
1170 ext_cnt = count;
1171 ext_diff = MIN(ext_cnt, (int)XFS_LINEAR_EXTS - erp->er_extcount);
1172 if (ext_diff) {
1173 erp->er_extcount += ext_diff;
1174 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, ext_diff);
1175 ext_cnt -= ext_diff;
1176 }
1177 while (ext_cnt) {
1178 erp_idx++;
1179 erp = xfs_iext_irec_new(ifp, erp_idx);
1180 ext_diff = MIN(ext_cnt, (int)XFS_LINEAR_EXTS);
1181 erp->er_extcount = ext_diff;
1182 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, ext_diff);
1183 ext_cnt -= ext_diff;
1184 }
1185
1186 /* Add nex2 extents back to indirection array */
1187 if (nex2) {
1188 xfs_extnum_t ext_avail;
1189 int i;
1190
1191 byte_diff = nex2 * sizeof(xfs_bmbt_rec_t);
1192 ext_avail = XFS_LINEAR_EXTS - erp->er_extcount;
1193 i = 0;
1194 /*
1195 * If nex2 extents fit in the current page, append
1196 * nex2_ep after the new extents.
1197 */
1198 if (nex2 <= ext_avail) {
1199 i = erp->er_extcount;
1200 }
1201 /*
1202 * Otherwise, check if space is available in the
1203 * next page.
1204 */
1205 else if ((erp_idx < nlists - 1) &&
1206 (nex2 <= (ext_avail = XFS_LINEAR_EXTS -
1207 ifp->if_u1.if_ext_irec[erp_idx+1].er_extcount))) {
1208 erp_idx++;
1209 erp++;
1210 /* Create a hole for nex2 extents */
1211 memmove(&erp->er_extbuf[nex2], erp->er_extbuf,
1212 erp->er_extcount * sizeof(xfs_bmbt_rec_t));
1213 }
1214 /*
1215 * Final choice, create a new extent page for
1216 * nex2 extents.
1217 */
1218 else {
1219 erp_idx++;
1220 erp = xfs_iext_irec_new(ifp, erp_idx);
1221 }
1222 memmove(&erp->er_extbuf[i], nex2_ep, byte_diff);
1223 kmem_free(nex2_ep);
1224 erp->er_extcount += nex2;
1225 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, nex2);
1226 }
1227}
1228
1229/*
1230 * This is called when the amount of space required for incore file
1231 * extents needs to be decreased. The ext_diff parameter stores the
1232 * number of extents to be removed and the idx parameter contains
1233 * the extent index where the extents will be removed from.
1234 *
1235 * If the amount of space needed has decreased below the linear
1236 * limit, XFS_IEXT_BUFSZ, then switch to using the contiguous
1237 * extent array. Otherwise, use kmem_realloc() to adjust the
1238 * size to what is needed.
1239 */
1240void
1241xfs_iext_remove(
1242 xfs_inode_t *ip, /* incore inode pointer */
1243 xfs_extnum_t idx, /* index to begin removing exts */
1244 int ext_diff, /* number of extents to remove */
1245 int state) /* type of extent conversion */
1246{
1247 xfs_ifork_t *ifp = xfs_iext_state_to_fork(ip, state);
1248 xfs_extnum_t nextents; /* number of extents in file */
1249 int new_size; /* size of extents after removal */
1250
1251 trace_xfs_iext_remove(ip, idx, state, _RET_IP_);
1252
1253 ASSERT(ext_diff > 0);
1254 nextents = xfs_iext_count(ifp);
1255 new_size = (nextents - ext_diff) * sizeof(xfs_bmbt_rec_t);
1256
1257 if (new_size == 0) {
1258 xfs_iext_destroy(ifp);
1259 } else if (ifp->if_flags & XFS_IFEXTIREC) {
1260 xfs_iext_remove_indirect(ifp, idx, ext_diff);
1261 } else if (ifp->if_real_bytes) {
1262 xfs_iext_remove_direct(ifp, idx, ext_diff);
1263 } else {
1264 xfs_iext_remove_inline(ifp, idx, ext_diff);
1265 }
1266 ifp->if_bytes = new_size;
1267}
1268
1269/*
1270 * This removes ext_diff extents from the inline buffer, beginning
1271 * at extent index idx.
1272 */
1273void
1274xfs_iext_remove_inline(
1275 xfs_ifork_t *ifp, /* inode fork pointer */
1276 xfs_extnum_t idx, /* index to begin removing exts */
1277 int ext_diff) /* number of extents to remove */
1278{
1279 int nextents; /* number of extents in file */
1280
1281 ASSERT(!(ifp->if_flags & XFS_IFEXTIREC));
1282 ASSERT(idx < XFS_INLINE_EXTS);
1283 nextents = xfs_iext_count(ifp);
1284 ASSERT(((nextents - ext_diff) > 0) &&
1285 (nextents - ext_diff) < XFS_INLINE_EXTS);
1286
1287 if (idx + ext_diff < nextents) {
1288 memmove(&ifp->if_u2.if_inline_ext[idx],
1289 &ifp->if_u2.if_inline_ext[idx + ext_diff],
1290 (nextents - (idx + ext_diff)) *
1291 sizeof(xfs_bmbt_rec_t));
1292 memset(&ifp->if_u2.if_inline_ext[nextents - ext_diff],
1293 0, ext_diff * sizeof(xfs_bmbt_rec_t));
1294 } else {
1295 memset(&ifp->if_u2.if_inline_ext[idx], 0,
1296 ext_diff * sizeof(xfs_bmbt_rec_t));
1297 }
1298}
1299
1300/*
1301 * This removes ext_diff extents from a linear (direct) extent list,
1302 * beginning at extent index idx. If the extents are being removed
1303 * from the end of the list (ie. truncate) then we just need to re-
1304 * allocate the list to remove the extra space. Otherwise, if the
1305 * extents are being removed from the middle of the existing extent
1306 * entries, then we first need to move the extent records beginning
1307 * at idx + ext_diff up in the list to overwrite the records being
1308 * removed, then remove the extra space via kmem_realloc.
1309 */
1310void
1311xfs_iext_remove_direct(
1312 xfs_ifork_t *ifp, /* inode fork pointer */
1313 xfs_extnum_t idx, /* index to begin removing exts */
1314 int ext_diff) /* number of extents to remove */
1315{
1316 xfs_extnum_t nextents; /* number of extents in file */
1317 int new_size; /* size of extents after removal */
1318
1319 ASSERT(!(ifp->if_flags & XFS_IFEXTIREC));
1320 new_size = ifp->if_bytes -
1321 (ext_diff * sizeof(xfs_bmbt_rec_t));
1322 nextents = xfs_iext_count(ifp);
1323
1324 if (new_size == 0) {
1325 xfs_iext_destroy(ifp);
1326 return;
1327 }
1328 /* Move extents up in the list (if needed) */
1329 if (idx + ext_diff < nextents) {
1330 memmove(&ifp->if_u1.if_extents[idx],
1331 &ifp->if_u1.if_extents[idx + ext_diff],
1332 (nextents - (idx + ext_diff)) *
1333 sizeof(xfs_bmbt_rec_t));
1334 }
1335 memset(&ifp->if_u1.if_extents[nextents - ext_diff],
1336 0, ext_diff * sizeof(xfs_bmbt_rec_t));
1337 /*
1338 * Reallocate the direct extent list. If the extents
1339 * will fit inside the inode then xfs_iext_realloc_direct
1340 * will switch from direct to inline extent allocation
1341 * mode for us.
1342 */
1343 xfs_iext_realloc_direct(ifp, new_size);
1344 ifp->if_bytes = new_size;
1345}
1346
1347/*
1348 * This is called when incore extents are being removed from the
1349 * indirection array and the extents being removed span multiple extent
1350 * buffers. The idx parameter contains the file extent index where we
1351 * want to begin removing extents, and the count parameter contains
1352 * how many extents need to be removed.
1353 *
1354 * |-------| |-------|
1355 * | nex1 | | | nex1 - number of extents before idx
1356 * |-------| | count |
1357 * | | | | count - number of extents being removed at idx
1358 * | count | |-------|
1359 * | | | nex2 | nex2 - number of extents after idx + count
1360 * |-------| |-------|
1361 */
1362void
1363xfs_iext_remove_indirect(
1364 xfs_ifork_t *ifp, /* inode fork pointer */
1365 xfs_extnum_t idx, /* index to begin removing extents */
1366 int count) /* number of extents to remove */
1367{
1368 xfs_ext_irec_t *erp; /* indirection array pointer */
1369 int erp_idx = 0; /* indirection array index */
1370 xfs_extnum_t ext_cnt; /* extents left to remove */
1371 xfs_extnum_t ext_diff; /* extents to remove in current list */
1372 xfs_extnum_t nex1; /* number of extents before idx */
1373 xfs_extnum_t nex2; /* extents after idx + count */
1374 int page_idx = idx; /* index in target extent list */
1375
1376 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1377 erp = xfs_iext_idx_to_irec(ifp, &page_idx, &erp_idx, 0);
1378 ASSERT(erp != NULL);
1379 nex1 = page_idx;
1380 ext_cnt = count;
1381 while (ext_cnt) {
1382 nex2 = MAX((erp->er_extcount - (nex1 + ext_cnt)), 0);
1383 ext_diff = MIN(ext_cnt, (erp->er_extcount - nex1));
1384 /*
1385 * Check for deletion of entire list;
1386 * xfs_iext_irec_remove() updates extent offsets.
1387 */
1388 if (ext_diff == erp->er_extcount) {
1389 xfs_iext_irec_remove(ifp, erp_idx);
1390 ext_cnt -= ext_diff;
1391 nex1 = 0;
1392 if (ext_cnt) {
1393 ASSERT(erp_idx < ifp->if_real_bytes /
1394 XFS_IEXT_BUFSZ);
1395 erp = &ifp->if_u1.if_ext_irec[erp_idx];
1396 nex1 = 0;
1397 continue;
1398 } else {
1399 break;
1400 }
1401 }
1402 /* Move extents up (if needed) */
1403 if (nex2) {
1404 memmove(&erp->er_extbuf[nex1],
1405 &erp->er_extbuf[nex1 + ext_diff],
1406 nex2 * sizeof(xfs_bmbt_rec_t));
1407 }
1408 /* Zero out rest of page */
1409 memset(&erp->er_extbuf[nex1 + nex2], 0, (XFS_IEXT_BUFSZ -
1410 ((nex1 + nex2) * sizeof(xfs_bmbt_rec_t))));
1411 /* Update remaining counters */
1412 erp->er_extcount -= ext_diff;
1413 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1, -ext_diff);
1414 ext_cnt -= ext_diff;
1415 nex1 = 0;
1416 erp_idx++;
1417 erp++;
1418 }
1419 ifp->if_bytes -= count * sizeof(xfs_bmbt_rec_t);
1420 xfs_iext_irec_compact(ifp);
1421}
1422
1423/*
1424 * Create, destroy, or resize a linear (direct) block of extents.
1425 */
1426void
1427xfs_iext_realloc_direct(
1428 xfs_ifork_t *ifp, /* inode fork pointer */
1429 int new_size) /* new size of extents after adding */
1430{
1431 int rnew_size; /* real new size of extents */
1432
1433 rnew_size = new_size;
1434
1435 ASSERT(!(ifp->if_flags & XFS_IFEXTIREC) ||
1436 ((new_size >= 0) && (new_size <= XFS_IEXT_BUFSZ) &&
1437 (new_size != ifp->if_real_bytes)));
1438
1439 /* Free extent records */
1440 if (new_size == 0) {
1441 xfs_iext_destroy(ifp);
1442 }
1443 /* Resize direct extent list and zero any new bytes */
1444 else if (ifp->if_real_bytes) {
1445 /* Check if extents will fit inside the inode */
1446 if (new_size <= XFS_INLINE_EXTS * sizeof(xfs_bmbt_rec_t)) {
1447 xfs_iext_direct_to_inline(ifp, new_size /
1448 (uint)sizeof(xfs_bmbt_rec_t));
1449 ifp->if_bytes = new_size;
1450 return;
1451 }
1452 if (!is_power_of_2(new_size)){
1453 rnew_size = roundup_pow_of_two(new_size);
1454 }
1455 if (rnew_size != ifp->if_real_bytes) {
1456 ifp->if_u1.if_extents =
1457 kmem_realloc(ifp->if_u1.if_extents,
1458 rnew_size, KM_NOFS);
1459 }
1460 if (rnew_size > ifp->if_real_bytes) {
1461 memset(&ifp->if_u1.if_extents[ifp->if_bytes /
1462 (uint)sizeof(xfs_bmbt_rec_t)], 0,
1463 rnew_size - ifp->if_real_bytes);
1464 }
1465 }
1466 /* Switch from the inline extent buffer to a direct extent list */
1467 else {
1468 if (!is_power_of_2(new_size)) {
1469 rnew_size = roundup_pow_of_two(new_size);
1470 }
1471 xfs_iext_inline_to_direct(ifp, rnew_size);
1472 }
1473 ifp->if_real_bytes = rnew_size;
1474 ifp->if_bytes = new_size;
1475}
1476
1477/*
1478 * Switch from linear (direct) extent records to inline buffer.
1479 */
1480void
1481xfs_iext_direct_to_inline(
1482 xfs_ifork_t *ifp, /* inode fork pointer */
1483 xfs_extnum_t nextents) /* number of extents in file */
1484{
1485 ASSERT(ifp->if_flags & XFS_IFEXTENTS);
1486 ASSERT(nextents <= XFS_INLINE_EXTS);
1487 /*
1488 * The inline buffer was zeroed when we switched
1489 * from inline to direct extent allocation mode,
1490 * so we don't need to clear it here.
1491 */
1492 memcpy(ifp->if_u2.if_inline_ext, ifp->if_u1.if_extents,
1493 nextents * sizeof(xfs_bmbt_rec_t));
1494 kmem_free(ifp->if_u1.if_extents);
1495 ifp->if_u1.if_extents = ifp->if_u2.if_inline_ext;
1496 ifp->if_real_bytes = 0;
1497}
1498
1499/*
1500 * Switch from inline buffer to linear (direct) extent records.
1501 * new_size should already be rounded up to the next power of 2
1502 * by the caller (when appropriate), so use new_size as it is.
1503 * However, since new_size may be rounded up, we can't update
1504 * if_bytes here. It is the caller's responsibility to update
1505 * if_bytes upon return.
1506 */
1507void
1508xfs_iext_inline_to_direct(
1509 xfs_ifork_t *ifp, /* inode fork pointer */
1510 int new_size) /* number of extents in file */
1511{
1512 ifp->if_u1.if_extents = kmem_alloc(new_size, KM_NOFS);
1513 memset(ifp->if_u1.if_extents, 0, new_size);
1514 if (ifp->if_bytes) {
1515 memcpy(ifp->if_u1.if_extents, ifp->if_u2.if_inline_ext,
1516 ifp->if_bytes);
1517 memset(ifp->if_u2.if_inline_ext, 0, XFS_INLINE_EXTS *
1518 sizeof(xfs_bmbt_rec_t));
1519 }
1520 ifp->if_real_bytes = new_size;
1521}
1522
1523/*
1524 * Resize an extent indirection array to new_size bytes.
1525 */
1526STATIC void
1527xfs_iext_realloc_indirect(
1528 xfs_ifork_t *ifp, /* inode fork pointer */
1529 int new_size) /* new indirection array size */
1530{
1531 int nlists; /* number of irec's (ex lists) */
1532 int size; /* current indirection array size */
1533
1534 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1535 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1536 size = nlists * sizeof(xfs_ext_irec_t);
1537 ASSERT(ifp->if_real_bytes);
1538 ASSERT((new_size >= 0) && (new_size != size));
1539 if (new_size == 0) {
1540 xfs_iext_destroy(ifp);
1541 } else {
1542 ifp->if_u1.if_ext_irec =
1543 kmem_realloc(ifp->if_u1.if_ext_irec, new_size, KM_NOFS);
1544 }
1545}
1546
1547/*
1548 * Switch from indirection array to linear (direct) extent allocations.
1549 */
1550STATIC void
1551xfs_iext_indirect_to_direct(
1552 xfs_ifork_t *ifp) /* inode fork pointer */
1553{
1554 xfs_bmbt_rec_host_t *ep; /* extent record pointer */
1555 xfs_extnum_t nextents; /* number of extents in file */
1556 int size; /* size of file extents */
1557
1558 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1559 nextents = xfs_iext_count(ifp);
1560 ASSERT(nextents <= XFS_LINEAR_EXTS);
1561 size = nextents * sizeof(xfs_bmbt_rec_t);
1562
1563 xfs_iext_irec_compact_pages(ifp);
1564 ASSERT(ifp->if_real_bytes == XFS_IEXT_BUFSZ);
1565
1566 ep = ifp->if_u1.if_ext_irec->er_extbuf;
1567 kmem_free(ifp->if_u1.if_ext_irec);
1568 ifp->if_flags &= ~XFS_IFEXTIREC;
1569 ifp->if_u1.if_extents = ep;
1570 ifp->if_bytes = size;
1571 if (nextents < XFS_LINEAR_EXTS) {
1572 xfs_iext_realloc_direct(ifp, size);
1573 }
1574}
1575
1576/*
1577 * Remove all records from the indirection array.
1578 */
1579STATIC void
1580xfs_iext_irec_remove_all(
1581 struct xfs_ifork *ifp)
1582{
1583 int nlists;
1584 int i;
1585
1586 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1587 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1588 for (i = 0; i < nlists; i++)
1589 kmem_free(ifp->if_u1.if_ext_irec[i].er_extbuf);
1590 kmem_free(ifp->if_u1.if_ext_irec);
1591 ifp->if_flags &= ~XFS_IFEXTIREC;
1592}
1593
1594/*
1595 * Free incore file extents.
1596 */
1597void
1598xfs_iext_destroy(
1599 xfs_ifork_t *ifp) /* inode fork pointer */
1600{
1601 if (ifp->if_flags & XFS_IFEXTIREC) {
1602 xfs_iext_irec_remove_all(ifp);
1603 } else if (ifp->if_real_bytes) {
1604 kmem_free(ifp->if_u1.if_extents);
1605 } else if (ifp->if_bytes) {
1606 memset(ifp->if_u2.if_inline_ext, 0, XFS_INLINE_EXTS *
1607 sizeof(xfs_bmbt_rec_t));
1608 }
1609 ifp->if_u1.if_extents = NULL;
1610 ifp->if_real_bytes = 0;
1611 ifp->if_bytes = 0;
1612}
1613
1614/*
1615 * Return a pointer to the extent record for file system block bno.
1616 */
1617xfs_bmbt_rec_host_t * /* pointer to found extent record */
1618xfs_iext_bno_to_ext(
1619 xfs_ifork_t *ifp, /* inode fork pointer */
1620 xfs_fileoff_t bno, /* block number to search for */
1621 xfs_extnum_t *idxp) /* index of target extent */
1622{
1623 xfs_bmbt_rec_host_t *base; /* pointer to first extent */
1624 xfs_filblks_t blockcount = 0; /* number of blocks in extent */
1625 xfs_bmbt_rec_host_t *ep = NULL; /* pointer to target extent */
1626 xfs_ext_irec_t *erp = NULL; /* indirection array pointer */
1627 int high; /* upper boundary in search */
1628 xfs_extnum_t idx = 0; /* index of target extent */
1629 int low; /* lower boundary in search */
1630 xfs_extnum_t nextents; /* number of file extents */
1631 xfs_fileoff_t startoff = 0; /* start offset of extent */
1632
1633 nextents = xfs_iext_count(ifp);
1634 if (nextents == 0) {
1635 *idxp = 0;
1636 return NULL;
1637 }
1638 low = 0;
1639 if (ifp->if_flags & XFS_IFEXTIREC) {
1640 /* Find target extent list */
1641 int erp_idx = 0;
1642 erp = xfs_iext_bno_to_irec(ifp, bno, &erp_idx);
1643 base = erp->er_extbuf;
1644 high = erp->er_extcount - 1;
1645 } else {
1646 base = ifp->if_u1.if_extents;
1647 high = nextents - 1;
1648 }
1649 /* Binary search extent records */
1650 while (low <= high) {
1651 idx = (low + high) >> 1;
1652 ep = base + idx;
1653 startoff = xfs_bmbt_get_startoff(ep);
1654 blockcount = xfs_bmbt_get_blockcount(ep);
1655 if (bno < startoff) {
1656 high = idx - 1;
1657 } else if (bno >= startoff + blockcount) {
1658 low = idx + 1;
1659 } else {
1660 /* Convert back to file-based extent index */
1661 if (ifp->if_flags & XFS_IFEXTIREC) {
1662 idx += erp->er_extoff;
1663 }
1664 *idxp = idx;
1665 return ep;
1666 }
1667 }
1668 /* Convert back to file-based extent index */
1669 if (ifp->if_flags & XFS_IFEXTIREC) {
1670 idx += erp->er_extoff;
1671 }
1672 if (bno >= startoff + blockcount) {
1673 if (++idx == nextents) {
1674 ep = NULL;
1675 } else {
1676 ep = xfs_iext_get_ext(ifp, idx);
1677 }
1678 }
1679 *idxp = idx;
1680 return ep;
1681}
1682
1683/*
1684 * Return a pointer to the indirection array entry containing the
1685 * extent record for filesystem block bno. Store the index of the
1686 * target irec in *erp_idxp.
1687 */
1688xfs_ext_irec_t * /* pointer to found extent record */
1689xfs_iext_bno_to_irec(
1690 xfs_ifork_t *ifp, /* inode fork pointer */
1691 xfs_fileoff_t bno, /* block number to search for */
1692 int *erp_idxp) /* irec index of target ext list */
1693{
1694 xfs_ext_irec_t *erp = NULL; /* indirection array pointer */
1695 xfs_ext_irec_t *erp_next; /* next indirection array entry */
1696 int erp_idx; /* indirection array index */
1697 int nlists; /* number of extent irec's (lists) */
1698 int high; /* binary search upper limit */
1699 int low; /* binary search lower limit */
1700
1701 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1702 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1703 erp_idx = 0;
1704 low = 0;
1705 high = nlists - 1;
1706 while (low <= high) {
1707 erp_idx = (low + high) >> 1;
1708 erp = &ifp->if_u1.if_ext_irec[erp_idx];
1709 erp_next = erp_idx < nlists - 1 ? erp + 1 : NULL;
1710 if (bno < xfs_bmbt_get_startoff(erp->er_extbuf)) {
1711 high = erp_idx - 1;
1712 } else if (erp_next && bno >=
1713 xfs_bmbt_get_startoff(erp_next->er_extbuf)) {
1714 low = erp_idx + 1;
1715 } else {
1716 break;
1717 }
1718 }
1719 *erp_idxp = erp_idx;
1720 return erp;
1721}
1722
1723/*
1724 * Return a pointer to the indirection array entry containing the
1725 * extent record at file extent index *idxp. Store the index of the
1726 * target irec in *erp_idxp and store the page index of the target
1727 * extent record in *idxp.
1728 */
1729xfs_ext_irec_t *
1730xfs_iext_idx_to_irec(
1731 xfs_ifork_t *ifp, /* inode fork pointer */
1732 xfs_extnum_t *idxp, /* extent index (file -> page) */
1733 int *erp_idxp, /* pointer to target irec */
1734 int realloc) /* new bytes were just added */
1735{
1736 xfs_ext_irec_t *prev; /* pointer to previous irec */
1737 xfs_ext_irec_t *erp = NULL; /* pointer to current irec */
1738 int erp_idx; /* indirection array index */
1739 int nlists; /* number of irec's (ex lists) */
1740 int high; /* binary search upper limit */
1741 int low; /* binary search lower limit */
1742 xfs_extnum_t page_idx = *idxp; /* extent index in target list */
1743
1744 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1745 ASSERT(page_idx >= 0);
1746 ASSERT(page_idx <= xfs_iext_count(ifp));
1747 ASSERT(page_idx < xfs_iext_count(ifp) || realloc);
1748
1749 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1750 erp_idx = 0;
1751 low = 0;
1752 high = nlists - 1;
1753
1754 /* Binary search extent irec's */
1755 while (low <= high) {
1756 erp_idx = (low + high) >> 1;
1757 erp = &ifp->if_u1.if_ext_irec[erp_idx];
1758 prev = erp_idx > 0 ? erp - 1 : NULL;
1759 if (page_idx < erp->er_extoff || (page_idx == erp->er_extoff &&
1760 realloc && prev && prev->er_extcount < XFS_LINEAR_EXTS)) {
1761 high = erp_idx - 1;
1762 } else if (page_idx > erp->er_extoff + erp->er_extcount ||
1763 (page_idx == erp->er_extoff + erp->er_extcount &&
1764 !realloc)) {
1765 low = erp_idx + 1;
1766 } else if (page_idx == erp->er_extoff + erp->er_extcount &&
1767 erp->er_extcount == XFS_LINEAR_EXTS) {
1768 ASSERT(realloc);
1769 page_idx = 0;
1770 erp_idx++;
1771 erp = erp_idx < nlists ? erp + 1 : NULL;
1772 break;
1773 } else {
1774 page_idx -= erp->er_extoff;
1775 break;
1776 }
1777 }
1778 *idxp = page_idx;
1779 *erp_idxp = erp_idx;
1780 return erp;
1781}
1782
1783/*
1784 * Allocate and initialize an indirection array once the space needed
1785 * for incore extents increases above XFS_IEXT_BUFSZ.
1786 */
1787void
1788xfs_iext_irec_init(
1789 xfs_ifork_t *ifp) /* inode fork pointer */
1790{
1791 xfs_ext_irec_t *erp; /* indirection array pointer */
1792 xfs_extnum_t nextents; /* number of extents in file */
1793
1794 ASSERT(!(ifp->if_flags & XFS_IFEXTIREC));
1795 nextents = xfs_iext_count(ifp);
1796 ASSERT(nextents <= XFS_LINEAR_EXTS);
1797
1798 erp = kmem_alloc(sizeof(xfs_ext_irec_t), KM_NOFS);
1799
1800 if (nextents == 0) {
1801 ifp->if_u1.if_extents = kmem_alloc(XFS_IEXT_BUFSZ, KM_NOFS);
1802 } else if (!ifp->if_real_bytes) {
1803 xfs_iext_inline_to_direct(ifp, XFS_IEXT_BUFSZ);
1804 } else if (ifp->if_real_bytes < XFS_IEXT_BUFSZ) {
1805 xfs_iext_realloc_direct(ifp, XFS_IEXT_BUFSZ);
1806 }
1807 erp->er_extbuf = ifp->if_u1.if_extents;
1808 erp->er_extcount = nextents;
1809 erp->er_extoff = 0;
1810
1811 ifp->if_flags |= XFS_IFEXTIREC;
1812 ifp->if_real_bytes = XFS_IEXT_BUFSZ;
1813 ifp->if_bytes = nextents * sizeof(xfs_bmbt_rec_t);
1814 ifp->if_u1.if_ext_irec = erp;
1815
1816 return;
1817}
1818
1819/*
1820 * Allocate and initialize a new entry in the indirection array.
1821 */
1822xfs_ext_irec_t *
1823xfs_iext_irec_new(
1824 xfs_ifork_t *ifp, /* inode fork pointer */
1825 int erp_idx) /* index for new irec */
1826{
1827 xfs_ext_irec_t *erp; /* indirection array pointer */
1828 int i; /* loop counter */
1829 int nlists; /* number of irec's (ex lists) */
1830
1831 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1832 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1833
1834 /* Resize indirection array */
1835 xfs_iext_realloc_indirect(ifp, ++nlists *
1836 sizeof(xfs_ext_irec_t));
1837 /*
1838 * Move records down in the array so the
1839 * new page can use erp_idx.
1840 */
1841 erp = ifp->if_u1.if_ext_irec;
1842 for (i = nlists - 1; i > erp_idx; i--) {
1843 memmove(&erp[i], &erp[i-1], sizeof(xfs_ext_irec_t));
1844 }
1845 ASSERT(i == erp_idx);
1846
1847 /* Initialize new extent record */
1848 erp = ifp->if_u1.if_ext_irec;
1849 erp[erp_idx].er_extbuf = kmem_alloc(XFS_IEXT_BUFSZ, KM_NOFS);
1850 ifp->if_real_bytes = nlists * XFS_IEXT_BUFSZ;
1851 memset(erp[erp_idx].er_extbuf, 0, XFS_IEXT_BUFSZ);
1852 erp[erp_idx].er_extcount = 0;
1853 erp[erp_idx].er_extoff = erp_idx > 0 ?
1854 erp[erp_idx-1].er_extoff + erp[erp_idx-1].er_extcount : 0;
1855 return (&erp[erp_idx]);
1856}
1857
1858/*
1859 * Remove a record from the indirection array.
1860 */
1861void
1862xfs_iext_irec_remove(
1863 xfs_ifork_t *ifp, /* inode fork pointer */
1864 int erp_idx) /* irec index to remove */
1865{
1866 xfs_ext_irec_t *erp; /* indirection array pointer */
1867 int i; /* loop counter */
1868 int nlists; /* number of irec's (ex lists) */
1869
1870 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1871 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1872 erp = &ifp->if_u1.if_ext_irec[erp_idx];
1873 if (erp->er_extbuf) {
1874 xfs_iext_irec_update_extoffs(ifp, erp_idx + 1,
1875 -erp->er_extcount);
1876 kmem_free(erp->er_extbuf);
1877 }
1878 /* Compact extent records */
1879 erp = ifp->if_u1.if_ext_irec;
1880 for (i = erp_idx; i < nlists - 1; i++) {
1881 memmove(&erp[i], &erp[i+1], sizeof(xfs_ext_irec_t));
1882 }
1883 /*
1884 * Manually free the last extent record from the indirection
1885 * array. A call to xfs_iext_realloc_indirect() with a size
1886 * of zero would result in a call to xfs_iext_destroy() which
1887 * would in turn call this function again, creating a nasty
1888 * infinite loop.
1889 */
1890 if (--nlists) {
1891 xfs_iext_realloc_indirect(ifp,
1892 nlists * sizeof(xfs_ext_irec_t));
1893 } else {
1894 kmem_free(ifp->if_u1.if_ext_irec);
1895 }
1896 ifp->if_real_bytes = nlists * XFS_IEXT_BUFSZ;
1897}
1898
1899/*
1900 * This is called to clean up large amounts of unused memory allocated
1901 * by the indirection array. Before compacting anything though, verify
1902 * that the indirection array is still needed and switch back to the
1903 * linear extent list (or even the inline buffer) if possible. The
1904 * compaction policy is as follows:
1905 *
1906 * Full Compaction: Extents fit into a single page (or inline buffer)
1907 * Partial Compaction: Extents occupy less than 50% of allocated space
1908 * No Compaction: Extents occupy at least 50% of allocated space
1909 */
1910void
1911xfs_iext_irec_compact(
1912 xfs_ifork_t *ifp) /* inode fork pointer */
1913{
1914 xfs_extnum_t nextents; /* number of extents in file */
1915 int nlists; /* number of irec's (ex lists) */
1916
1917 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1918 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1919 nextents = xfs_iext_count(ifp);
1920
1921 if (nextents == 0) {
1922 xfs_iext_destroy(ifp);
1923 } else if (nextents <= XFS_INLINE_EXTS) {
1924 xfs_iext_indirect_to_direct(ifp);
1925 xfs_iext_direct_to_inline(ifp, nextents);
1926 } else if (nextents <= XFS_LINEAR_EXTS) {
1927 xfs_iext_indirect_to_direct(ifp);
1928 } else if (nextents < (nlists * XFS_LINEAR_EXTS) >> 1) {
1929 xfs_iext_irec_compact_pages(ifp);
1930 }
1931}
1932
1933/*
1934 * Combine extents from neighboring extent pages.
1935 */
1936void
1937xfs_iext_irec_compact_pages(
1938 xfs_ifork_t *ifp) /* inode fork pointer */
1939{
1940 xfs_ext_irec_t *erp, *erp_next;/* pointers to irec entries */
1941 int erp_idx = 0; /* indirection array index */
1942 int nlists; /* number of irec's (ex lists) */
1943
1944 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1945 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1946 while (erp_idx < nlists - 1) {
1947 erp = &ifp->if_u1.if_ext_irec[erp_idx];
1948 erp_next = erp + 1;
1949 if (erp_next->er_extcount <=
1950 (XFS_LINEAR_EXTS - erp->er_extcount)) {
1951 memcpy(&erp->er_extbuf[erp->er_extcount],
1952 erp_next->er_extbuf, erp_next->er_extcount *
1953 sizeof(xfs_bmbt_rec_t));
1954 erp->er_extcount += erp_next->er_extcount;
1955 /*
1956 * Free page before removing extent record
1957 * so er_extoffs don't get modified in
1958 * xfs_iext_irec_remove.
1959 */
1960 kmem_free(erp_next->er_extbuf);
1961 erp_next->er_extbuf = NULL;
1962 xfs_iext_irec_remove(ifp, erp_idx + 1);
1963 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1964 } else {
1965 erp_idx++;
1966 }
1967 }
1968}
1969
1970/*
1971 * This is called to update the er_extoff field in the indirection
1972 * array when extents have been added or removed from one of the
1973 * extent lists. erp_idx contains the irec index to begin updating
1974 * at and ext_diff contains the number of extents that were added
1975 * or removed.
1976 */
1977void
1978xfs_iext_irec_update_extoffs(
1979 xfs_ifork_t *ifp, /* inode fork pointer */
1980 int erp_idx, /* irec index to update */
1981 int ext_diff) /* number of new extents */
1982{
1983 int i; /* loop counter */
1984 int nlists; /* number of irec's (ex lists */
1985
1986 ASSERT(ifp->if_flags & XFS_IFEXTIREC);
1987 nlists = ifp->if_real_bytes / XFS_IEXT_BUFSZ;
1988 for (i = erp_idx; i < nlists; i++) {
1989 ifp->if_u1.if_ext_irec[i].er_extoff += ext_diff;
1990 }
1991}
1992
1993/*
1994 * Initialize an inode's copy-on-write fork.
1995 */
1996void
1997xfs_ifork_init_cow(
1998 struct xfs_inode *ip)
1999{
2000 if (ip->i_cowfp)
2001 return;
2002
2003 ip->i_cowfp = kmem_zone_zalloc(xfs_ifork_zone,
2004 KM_SLEEP | KM_NOFS);
2005 ip->i_cowfp->if_flags = XFS_IFEXTENTS;
2006 ip->i_cformat = XFS_DINODE_FMT_EXTENTS;
2007 ip->i_cnextents = 0;
2008}
2009
2010/*
2011 * Lookup the extent covering bno.
2012 *
2013 * If there is an extent covering bno return the extent index, and store the
2014 * expanded extent structure in *gotp, and the extent index in *idx.
2015 * If there is no extent covering bno, but there is an extent after it (e.g.
2016 * it lies in a hole) return that extent in *gotp and its index in *idx
2017 * instead.
2018 * If bno is beyond the last extent return false, and return the index after
2019 * the last valid index in *idxp.
2020 */
2021bool
2022xfs_iext_lookup_extent(
2023 struct xfs_inode *ip,
2024 struct xfs_ifork *ifp,
2025 xfs_fileoff_t bno,
2026 xfs_extnum_t *idxp,
2027 struct xfs_bmbt_irec *gotp)
2028{
2029 struct xfs_bmbt_rec_host *ep;
2030
2031 XFS_STATS_INC(ip->i_mount, xs_look_exlist);
2032
2033 ep = xfs_iext_bno_to_ext(ifp, bno, idxp);
2034 if (!ep)
2035 return false;
2036 xfs_bmbt_get_all(ep, gotp);
2037 return true;
2038}
2039
2040/*
2041 * Return true if there is an extent at index idx, and return the expanded
2042 * extent structure at idx in that case. Else return false.
2043 */
2044bool
2045xfs_iext_get_extent(
2046 struct xfs_ifork *ifp,
2047 xfs_extnum_t idx,
2048 struct xfs_bmbt_irec *gotp)
2049{
2050 if (idx < 0 || idx >= xfs_iext_count(ifp))
2051 return false;
2052 xfs_bmbt_get_all(xfs_iext_get_ext(ifp, idx), gotp);
2053 return true;
2054}