Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.12-rc3 1271 lines 37 kB view raw
1/* 2 * Copyright (c) 2000-2003,2005 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 "xfs.h" 19#include "xfs_fs.h" 20#include "xfs_types.h" 21#include "xfs_log.h" 22#include "xfs_trans.h" 23#include "xfs_sb.h" 24#include "xfs_ag.h" 25#include "xfs_mount.h" 26#include "xfs_da_btree.h" 27#include "xfs_bmap_btree.h" 28#include "xfs_dinode.h" 29#include "xfs_inode.h" 30#include "xfs_inode_item.h" 31#include "xfs_error.h" 32#include "xfs_dir2_format.h" 33#include "xfs_dir2.h" 34#include "xfs_dir2_priv.h" 35#include "xfs_trace.h" 36 37/* 38 * Prototypes for internal functions. 39 */ 40static void xfs_dir2_sf_addname_easy(xfs_da_args_t *args, 41 xfs_dir2_sf_entry_t *sfep, 42 xfs_dir2_data_aoff_t offset, 43 int new_isize); 44static void xfs_dir2_sf_addname_hard(xfs_da_args_t *args, int objchange, 45 int new_isize); 46static int xfs_dir2_sf_addname_pick(xfs_da_args_t *args, int objchange, 47 xfs_dir2_sf_entry_t **sfepp, 48 xfs_dir2_data_aoff_t *offsetp); 49#ifdef DEBUG 50static void xfs_dir2_sf_check(xfs_da_args_t *args); 51#else 52#define xfs_dir2_sf_check(args) 53#endif /* DEBUG */ 54#if XFS_BIG_INUMS 55static void xfs_dir2_sf_toino4(xfs_da_args_t *args); 56static void xfs_dir2_sf_toino8(xfs_da_args_t *args); 57#endif /* XFS_BIG_INUMS */ 58 59/* 60 * Inode numbers in short-form directories can come in two versions, 61 * either 4 bytes or 8 bytes wide. These helpers deal with the 62 * two forms transparently by looking at the headers i8count field. 63 * 64 * For 64-bit inode number the most significant byte must be zero. 65 */ 66static xfs_ino_t 67xfs_dir2_sf_get_ino( 68 struct xfs_dir2_sf_hdr *hdr, 69 xfs_dir2_inou_t *from) 70{ 71 if (hdr->i8count) 72 return get_unaligned_be64(&from->i8.i) & 0x00ffffffffffffffULL; 73 else 74 return get_unaligned_be32(&from->i4.i); 75} 76 77static void 78xfs_dir2_sf_put_ino( 79 struct xfs_dir2_sf_hdr *hdr, 80 xfs_dir2_inou_t *to, 81 xfs_ino_t ino) 82{ 83 ASSERT((ino & 0xff00000000000000ULL) == 0); 84 85 if (hdr->i8count) 86 put_unaligned_be64(ino, &to->i8.i); 87 else 88 put_unaligned_be32(ino, &to->i4.i); 89} 90 91xfs_ino_t 92xfs_dir2_sf_get_parent_ino( 93 struct xfs_dir2_sf_hdr *hdr) 94{ 95 return xfs_dir2_sf_get_ino(hdr, &hdr->parent); 96} 97 98void 99xfs_dir2_sf_put_parent_ino( 100 struct xfs_dir2_sf_hdr *hdr, 101 xfs_ino_t ino) 102{ 103 xfs_dir2_sf_put_ino(hdr, &hdr->parent, ino); 104} 105 106/* 107 * In short-form directory entries the inode numbers are stored at variable 108 * offset behind the entry name. If the entry stores a filetype value, then it 109 * sits between the name and the inode number. Hence the inode numbers may only 110 * be accessed through the helpers below. 111 */ 112static xfs_dir2_inou_t * 113xfs_dir3_sfe_inop( 114 struct xfs_mount *mp, 115 struct xfs_dir2_sf_entry *sfep) 116{ 117 __uint8_t *ptr = &sfep->name[sfep->namelen]; 118 if (xfs_sb_version_hasftype(&mp->m_sb)) 119 ptr++; 120 return (xfs_dir2_inou_t *)ptr; 121} 122 123xfs_ino_t 124xfs_dir3_sfe_get_ino( 125 struct xfs_mount *mp, 126 struct xfs_dir2_sf_hdr *hdr, 127 struct xfs_dir2_sf_entry *sfep) 128{ 129 return xfs_dir2_sf_get_ino(hdr, xfs_dir3_sfe_inop(mp, sfep)); 130} 131 132void 133xfs_dir3_sfe_put_ino( 134 struct xfs_mount *mp, 135 struct xfs_dir2_sf_hdr *hdr, 136 struct xfs_dir2_sf_entry *sfep, 137 xfs_ino_t ino) 138{ 139 xfs_dir2_sf_put_ino(hdr, xfs_dir3_sfe_inop(mp, sfep), ino); 140} 141 142/* 143 * Given a block directory (dp/block), calculate its size as a shortform (sf) 144 * directory and a header for the sf directory, if it will fit it the 145 * space currently present in the inode. If it won't fit, the output 146 * size is too big (but not accurate). 147 */ 148int /* size for sf form */ 149xfs_dir2_block_sfsize( 150 xfs_inode_t *dp, /* incore inode pointer */ 151 xfs_dir2_data_hdr_t *hdr, /* block directory data */ 152 xfs_dir2_sf_hdr_t *sfhp) /* output: header for sf form */ 153{ 154 xfs_dir2_dataptr_t addr; /* data entry address */ 155 xfs_dir2_leaf_entry_t *blp; /* leaf area of the block */ 156 xfs_dir2_block_tail_t *btp; /* tail area of the block */ 157 int count; /* shortform entry count */ 158 xfs_dir2_data_entry_t *dep; /* data entry in the block */ 159 int i; /* block entry index */ 160 int i8count; /* count of big-inode entries */ 161 int isdot; /* entry is "." */ 162 int isdotdot; /* entry is ".." */ 163 xfs_mount_t *mp; /* mount structure pointer */ 164 int namelen; /* total name bytes */ 165 xfs_ino_t parent = 0; /* parent inode number */ 166 int size=0; /* total computed size */ 167 int has_ftype; 168 169 mp = dp->i_mount; 170 171 /* 172 * if there is a filetype field, add the extra byte to the namelen 173 * for each entry that we see. 174 */ 175 has_ftype = xfs_sb_version_hasftype(&mp->m_sb) ? 1 : 0; 176 177 count = i8count = namelen = 0; 178 btp = xfs_dir2_block_tail_p(mp, hdr); 179 blp = xfs_dir2_block_leaf_p(btp); 180 181 /* 182 * Iterate over the block's data entries by using the leaf pointers. 183 */ 184 for (i = 0; i < be32_to_cpu(btp->count); i++) { 185 if ((addr = be32_to_cpu(blp[i].address)) == XFS_DIR2_NULL_DATAPTR) 186 continue; 187 /* 188 * Calculate the pointer to the entry at hand. 189 */ 190 dep = (xfs_dir2_data_entry_t *) 191 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, addr)); 192 /* 193 * Detect . and .., so we can special-case them. 194 * . is not included in sf directories. 195 * .. is included by just the parent inode number. 196 */ 197 isdot = dep->namelen == 1 && dep->name[0] == '.'; 198 isdotdot = 199 dep->namelen == 2 && 200 dep->name[0] == '.' && dep->name[1] == '.'; 201#if XFS_BIG_INUMS 202 if (!isdot) 203 i8count += be64_to_cpu(dep->inumber) > XFS_DIR2_MAX_SHORT_INUM; 204#endif 205 /* take into account the file type field */ 206 if (!isdot && !isdotdot) { 207 count++; 208 namelen += dep->namelen + has_ftype; 209 } else if (isdotdot) 210 parent = be64_to_cpu(dep->inumber); 211 /* 212 * Calculate the new size, see if we should give up yet. 213 */ 214 size = xfs_dir2_sf_hdr_size(i8count) + /* header */ 215 count + /* namelen */ 216 count * (uint)sizeof(xfs_dir2_sf_off_t) + /* offset */ 217 namelen + /* name */ 218 (i8count ? /* inumber */ 219 (uint)sizeof(xfs_dir2_ino8_t) * count : 220 (uint)sizeof(xfs_dir2_ino4_t) * count); 221 if (size > XFS_IFORK_DSIZE(dp)) 222 return size; /* size value is a failure */ 223 } 224 /* 225 * Create the output header, if it worked. 226 */ 227 sfhp->count = count; 228 sfhp->i8count = i8count; 229 xfs_dir2_sf_put_parent_ino(sfhp, parent); 230 return size; 231} 232 233/* 234 * Convert a block format directory to shortform. 235 * Caller has already checked that it will fit, and built us a header. 236 */ 237int /* error */ 238xfs_dir2_block_to_sf( 239 xfs_da_args_t *args, /* operation arguments */ 240 struct xfs_buf *bp, 241 int size, /* shortform directory size */ 242 xfs_dir2_sf_hdr_t *sfhp) /* shortform directory hdr */ 243{ 244 xfs_dir2_data_hdr_t *hdr; /* block header */ 245 xfs_dir2_block_tail_t *btp; /* block tail pointer */ 246 xfs_dir2_data_entry_t *dep; /* data entry pointer */ 247 xfs_inode_t *dp; /* incore directory inode */ 248 xfs_dir2_data_unused_t *dup; /* unused data pointer */ 249 char *endptr; /* end of data entries */ 250 int error; /* error return value */ 251 int logflags; /* inode logging flags */ 252 xfs_mount_t *mp; /* filesystem mount point */ 253 char *ptr; /* current data pointer */ 254 xfs_dir2_sf_entry_t *sfep; /* shortform entry */ 255 xfs_dir2_sf_hdr_t *sfp; /* shortform directory header */ 256 257 trace_xfs_dir2_block_to_sf(args); 258 259 dp = args->dp; 260 mp = dp->i_mount; 261 262 /* 263 * Make a copy of the block data, so we can shrink the inode 264 * and add local data. 265 */ 266 hdr = kmem_alloc(mp->m_dirblksize, KM_SLEEP); 267 memcpy(hdr, bp->b_addr, mp->m_dirblksize); 268 logflags = XFS_ILOG_CORE; 269 if ((error = xfs_dir2_shrink_inode(args, mp->m_dirdatablk, bp))) { 270 ASSERT(error != ENOSPC); 271 goto out; 272 } 273 274 /* 275 * The buffer is now unconditionally gone, whether 276 * xfs_dir2_shrink_inode worked or not. 277 * 278 * Convert the inode to local format. 279 */ 280 dp->i_df.if_flags &= ~XFS_IFEXTENTS; 281 dp->i_df.if_flags |= XFS_IFINLINE; 282 dp->i_d.di_format = XFS_DINODE_FMT_LOCAL; 283 ASSERT(dp->i_df.if_bytes == 0); 284 xfs_idata_realloc(dp, size, XFS_DATA_FORK); 285 logflags |= XFS_ILOG_DDATA; 286 /* 287 * Copy the header into the newly allocate local space. 288 */ 289 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 290 memcpy(sfp, sfhp, xfs_dir2_sf_hdr_size(sfhp->i8count)); 291 dp->i_d.di_size = size; 292 /* 293 * Set up to loop over the block's entries. 294 */ 295 btp = xfs_dir2_block_tail_p(mp, hdr); 296 ptr = (char *)xfs_dir3_data_entry_p(hdr); 297 endptr = (char *)xfs_dir2_block_leaf_p(btp); 298 sfep = xfs_dir2_sf_firstentry(sfp); 299 /* 300 * Loop over the active and unused entries. 301 * Stop when we reach the leaf/tail portion of the block. 302 */ 303 while (ptr < endptr) { 304 /* 305 * If it's unused, just skip over it. 306 */ 307 dup = (xfs_dir2_data_unused_t *)ptr; 308 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) { 309 ptr += be16_to_cpu(dup->length); 310 continue; 311 } 312 dep = (xfs_dir2_data_entry_t *)ptr; 313 /* 314 * Skip . 315 */ 316 if (dep->namelen == 1 && dep->name[0] == '.') 317 ASSERT(be64_to_cpu(dep->inumber) == dp->i_ino); 318 /* 319 * Skip .., but make sure the inode number is right. 320 */ 321 else if (dep->namelen == 2 && 322 dep->name[0] == '.' && dep->name[1] == '.') 323 ASSERT(be64_to_cpu(dep->inumber) == 324 xfs_dir2_sf_get_parent_ino(sfp)); 325 /* 326 * Normal entry, copy it into shortform. 327 */ 328 else { 329 sfep->namelen = dep->namelen; 330 xfs_dir2_sf_put_offset(sfep, 331 (xfs_dir2_data_aoff_t) 332 ((char *)dep - (char *)hdr)); 333 memcpy(sfep->name, dep->name, dep->namelen); 334 xfs_dir3_sfe_put_ino(mp, sfp, sfep, 335 be64_to_cpu(dep->inumber)); 336 xfs_dir3_sfe_put_ftype(mp, sfp, sfep, 337 xfs_dir3_dirent_get_ftype(mp, dep)); 338 339 sfep = xfs_dir3_sf_nextentry(mp, sfp, sfep); 340 } 341 ptr += xfs_dir3_data_entsize(mp, dep->namelen); 342 } 343 ASSERT((char *)sfep - (char *)sfp == size); 344 xfs_dir2_sf_check(args); 345out: 346 xfs_trans_log_inode(args->trans, dp, logflags); 347 kmem_free(hdr); 348 return error; 349} 350 351/* 352 * Add a name to a shortform directory. 353 * There are two algorithms, "easy" and "hard" which we decide on 354 * before changing anything. 355 * Convert to block form if necessary, if the new entry won't fit. 356 */ 357int /* error */ 358xfs_dir2_sf_addname( 359 xfs_da_args_t *args) /* operation arguments */ 360{ 361 int add_entsize; /* size of the new entry */ 362 xfs_inode_t *dp; /* incore directory inode */ 363 int error; /* error return value */ 364 int incr_isize; /* total change in size */ 365 int new_isize; /* di_size after adding name */ 366 int objchange; /* changing to 8-byte inodes */ 367 xfs_dir2_data_aoff_t offset = 0; /* offset for new entry */ 368 int old_isize; /* di_size before adding name */ 369 int pick; /* which algorithm to use */ 370 xfs_dir2_sf_hdr_t *sfp; /* shortform structure */ 371 xfs_dir2_sf_entry_t *sfep = NULL; /* shortform entry */ 372 373 trace_xfs_dir2_sf_addname(args); 374 375 ASSERT(xfs_dir2_sf_lookup(args) == ENOENT); 376 dp = args->dp; 377 ASSERT(dp->i_df.if_flags & XFS_IFINLINE); 378 /* 379 * Make sure the shortform value has some of its header. 380 */ 381 if (dp->i_d.di_size < offsetof(xfs_dir2_sf_hdr_t, parent)) { 382 ASSERT(XFS_FORCED_SHUTDOWN(dp->i_mount)); 383 return XFS_ERROR(EIO); 384 } 385 ASSERT(dp->i_df.if_bytes == dp->i_d.di_size); 386 ASSERT(dp->i_df.if_u1.if_data != NULL); 387 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 388 ASSERT(dp->i_d.di_size >= xfs_dir2_sf_hdr_size(sfp->i8count)); 389 /* 390 * Compute entry (and change in) size. 391 */ 392 add_entsize = xfs_dir3_sf_entsize(dp->i_mount, sfp, args->namelen); 393 incr_isize = add_entsize; 394 objchange = 0; 395#if XFS_BIG_INUMS 396 /* 397 * Do we have to change to 8 byte inodes? 398 */ 399 if (args->inumber > XFS_DIR2_MAX_SHORT_INUM && sfp->i8count == 0) { 400 /* 401 * Yes, adjust the entry size and the total size. 402 */ 403 add_entsize += 404 (uint)sizeof(xfs_dir2_ino8_t) - 405 (uint)sizeof(xfs_dir2_ino4_t); 406 incr_isize += 407 (sfp->count + 2) * 408 ((uint)sizeof(xfs_dir2_ino8_t) - 409 (uint)sizeof(xfs_dir2_ino4_t)); 410 objchange = 1; 411 } 412#endif 413 old_isize = (int)dp->i_d.di_size; 414 new_isize = old_isize + incr_isize; 415 /* 416 * Won't fit as shortform any more (due to size), 417 * or the pick routine says it won't (due to offset values). 418 */ 419 if (new_isize > XFS_IFORK_DSIZE(dp) || 420 (pick = 421 xfs_dir2_sf_addname_pick(args, objchange, &sfep, &offset)) == 0) { 422 /* 423 * Just checking or no space reservation, it doesn't fit. 424 */ 425 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) || args->total == 0) 426 return XFS_ERROR(ENOSPC); 427 /* 428 * Convert to block form then add the name. 429 */ 430 error = xfs_dir2_sf_to_block(args); 431 if (error) 432 return error; 433 return xfs_dir2_block_addname(args); 434 } 435 /* 436 * Just checking, it fits. 437 */ 438 if (args->op_flags & XFS_DA_OP_JUSTCHECK) 439 return 0; 440 /* 441 * Do it the easy way - just add it at the end. 442 */ 443 if (pick == 1) 444 xfs_dir2_sf_addname_easy(args, sfep, offset, new_isize); 445 /* 446 * Do it the hard way - look for a place to insert the new entry. 447 * Convert to 8 byte inode numbers first if necessary. 448 */ 449 else { 450 ASSERT(pick == 2); 451#if XFS_BIG_INUMS 452 if (objchange) 453 xfs_dir2_sf_toino8(args); 454#endif 455 xfs_dir2_sf_addname_hard(args, objchange, new_isize); 456 } 457 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_DDATA); 458 return 0; 459} 460 461/* 462 * Add the new entry the "easy" way. 463 * This is copying the old directory and adding the new entry at the end. 464 * Since it's sorted by "offset" we need room after the last offset 465 * that's already there, and then room to convert to a block directory. 466 * This is already checked by the pick routine. 467 */ 468static void 469xfs_dir2_sf_addname_easy( 470 xfs_da_args_t *args, /* operation arguments */ 471 xfs_dir2_sf_entry_t *sfep, /* pointer to new entry */ 472 xfs_dir2_data_aoff_t offset, /* offset to use for new ent */ 473 int new_isize) /* new directory size */ 474{ 475 int byteoff; /* byte offset in sf dir */ 476 xfs_inode_t *dp; /* incore directory inode */ 477 xfs_dir2_sf_hdr_t *sfp; /* shortform structure */ 478 479 dp = args->dp; 480 481 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 482 byteoff = (int)((char *)sfep - (char *)sfp); 483 /* 484 * Grow the in-inode space. 485 */ 486 xfs_idata_realloc(dp, 487 xfs_dir3_sf_entsize(dp->i_mount, sfp, args->namelen), 488 XFS_DATA_FORK); 489 /* 490 * Need to set up again due to realloc of the inode data. 491 */ 492 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 493 sfep = (xfs_dir2_sf_entry_t *)((char *)sfp + byteoff); 494 /* 495 * Fill in the new entry. 496 */ 497 sfep->namelen = args->namelen; 498 xfs_dir2_sf_put_offset(sfep, offset); 499 memcpy(sfep->name, args->name, sfep->namelen); 500 xfs_dir3_sfe_put_ino(dp->i_mount, sfp, sfep, args->inumber); 501 xfs_dir3_sfe_put_ftype(dp->i_mount, sfp, sfep, args->filetype); 502 503 /* 504 * Update the header and inode. 505 */ 506 sfp->count++; 507#if XFS_BIG_INUMS 508 if (args->inumber > XFS_DIR2_MAX_SHORT_INUM) 509 sfp->i8count++; 510#endif 511 dp->i_d.di_size = new_isize; 512 xfs_dir2_sf_check(args); 513} 514 515/* 516 * Add the new entry the "hard" way. 517 * The caller has already converted to 8 byte inode numbers if necessary, 518 * in which case we need to leave the i8count at 1. 519 * Find a hole that the new entry will fit into, and copy 520 * the first part of the entries, the new entry, and the last part of 521 * the entries. 522 */ 523/* ARGSUSED */ 524static void 525xfs_dir2_sf_addname_hard( 526 xfs_da_args_t *args, /* operation arguments */ 527 int objchange, /* changing inode number size */ 528 int new_isize) /* new directory size */ 529{ 530 int add_datasize; /* data size need for new ent */ 531 char *buf; /* buffer for old */ 532 xfs_inode_t *dp; /* incore directory inode */ 533 int eof; /* reached end of old dir */ 534 int nbytes; /* temp for byte copies */ 535 xfs_dir2_data_aoff_t new_offset; /* next offset value */ 536 xfs_dir2_data_aoff_t offset; /* current offset value */ 537 int old_isize; /* previous di_size */ 538 xfs_dir2_sf_entry_t *oldsfep; /* entry in original dir */ 539 xfs_dir2_sf_hdr_t *oldsfp; /* original shortform dir */ 540 xfs_dir2_sf_entry_t *sfep; /* entry in new dir */ 541 xfs_dir2_sf_hdr_t *sfp; /* new shortform dir */ 542 struct xfs_mount *mp; 543 544 /* 545 * Copy the old directory to the stack buffer. 546 */ 547 dp = args->dp; 548 mp = dp->i_mount; 549 550 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 551 old_isize = (int)dp->i_d.di_size; 552 buf = kmem_alloc(old_isize, KM_SLEEP); 553 oldsfp = (xfs_dir2_sf_hdr_t *)buf; 554 memcpy(oldsfp, sfp, old_isize); 555 /* 556 * Loop over the old directory finding the place we're going 557 * to insert the new entry. 558 * If it's going to end up at the end then oldsfep will point there. 559 */ 560 for (offset = XFS_DIR3_DATA_FIRST_OFFSET(mp), 561 oldsfep = xfs_dir2_sf_firstentry(oldsfp), 562 add_datasize = xfs_dir3_data_entsize(mp, args->namelen), 563 eof = (char *)oldsfep == &buf[old_isize]; 564 !eof; 565 offset = new_offset + xfs_dir3_data_entsize(mp, oldsfep->namelen), 566 oldsfep = xfs_dir3_sf_nextentry(mp, oldsfp, oldsfep), 567 eof = (char *)oldsfep == &buf[old_isize]) { 568 new_offset = xfs_dir2_sf_get_offset(oldsfep); 569 if (offset + add_datasize <= new_offset) 570 break; 571 } 572 /* 573 * Get rid of the old directory, then allocate space for 574 * the new one. We do this so xfs_idata_realloc won't copy 575 * the data. 576 */ 577 xfs_idata_realloc(dp, -old_isize, XFS_DATA_FORK); 578 xfs_idata_realloc(dp, new_isize, XFS_DATA_FORK); 579 /* 580 * Reset the pointer since the buffer was reallocated. 581 */ 582 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 583 /* 584 * Copy the first part of the directory, including the header. 585 */ 586 nbytes = (int)((char *)oldsfep - (char *)oldsfp); 587 memcpy(sfp, oldsfp, nbytes); 588 sfep = (xfs_dir2_sf_entry_t *)((char *)sfp + nbytes); 589 /* 590 * Fill in the new entry, and update the header counts. 591 */ 592 sfep->namelen = args->namelen; 593 xfs_dir2_sf_put_offset(sfep, offset); 594 memcpy(sfep->name, args->name, sfep->namelen); 595 xfs_dir3_sfe_put_ino(mp, sfp, sfep, args->inumber); 596 xfs_dir3_sfe_put_ftype(mp, sfp, sfep, args->filetype); 597 sfp->count++; 598#if XFS_BIG_INUMS 599 if (args->inumber > XFS_DIR2_MAX_SHORT_INUM && !objchange) 600 sfp->i8count++; 601#endif 602 /* 603 * If there's more left to copy, do that. 604 */ 605 if (!eof) { 606 sfep = xfs_dir3_sf_nextentry(mp, sfp, sfep); 607 memcpy(sfep, oldsfep, old_isize - nbytes); 608 } 609 kmem_free(buf); 610 dp->i_d.di_size = new_isize; 611 xfs_dir2_sf_check(args); 612} 613 614/* 615 * Decide if the new entry will fit at all. 616 * If it will fit, pick between adding the new entry to the end (easy) 617 * or somewhere else (hard). 618 * Return 0 (won't fit), 1 (easy), 2 (hard). 619 */ 620/*ARGSUSED*/ 621static int /* pick result */ 622xfs_dir2_sf_addname_pick( 623 xfs_da_args_t *args, /* operation arguments */ 624 int objchange, /* inode # size changes */ 625 xfs_dir2_sf_entry_t **sfepp, /* out(1): new entry ptr */ 626 xfs_dir2_data_aoff_t *offsetp) /* out(1): new offset */ 627{ 628 xfs_inode_t *dp; /* incore directory inode */ 629 int holefit; /* found hole it will fit in */ 630 int i; /* entry number */ 631 xfs_mount_t *mp; /* filesystem mount point */ 632 xfs_dir2_data_aoff_t offset; /* data block offset */ 633 xfs_dir2_sf_entry_t *sfep; /* shortform entry */ 634 xfs_dir2_sf_hdr_t *sfp; /* shortform structure */ 635 int size; /* entry's data size */ 636 int used; /* data bytes used */ 637 638 dp = args->dp; 639 mp = dp->i_mount; 640 641 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 642 size = xfs_dir3_data_entsize(mp, args->namelen); 643 offset = XFS_DIR3_DATA_FIRST_OFFSET(mp); 644 sfep = xfs_dir2_sf_firstentry(sfp); 645 holefit = 0; 646 /* 647 * Loop over sf entries. 648 * Keep track of data offset and whether we've seen a place 649 * to insert the new entry. 650 */ 651 for (i = 0; i < sfp->count; i++) { 652 if (!holefit) 653 holefit = offset + size <= xfs_dir2_sf_get_offset(sfep); 654 offset = xfs_dir2_sf_get_offset(sfep) + 655 xfs_dir3_data_entsize(mp, sfep->namelen); 656 sfep = xfs_dir3_sf_nextentry(mp, sfp, sfep); 657 } 658 /* 659 * Calculate data bytes used excluding the new entry, if this 660 * was a data block (block form directory). 661 */ 662 used = offset + 663 (sfp->count + 3) * (uint)sizeof(xfs_dir2_leaf_entry_t) + 664 (uint)sizeof(xfs_dir2_block_tail_t); 665 /* 666 * If it won't fit in a block form then we can't insert it, 667 * we'll go back, convert to block, then try the insert and convert 668 * to leaf. 669 */ 670 if (used + (holefit ? 0 : size) > mp->m_dirblksize) 671 return 0; 672 /* 673 * If changing the inode number size, do it the hard way. 674 */ 675#if XFS_BIG_INUMS 676 if (objchange) { 677 return 2; 678 } 679#else 680 ASSERT(objchange == 0); 681#endif 682 /* 683 * If it won't fit at the end then do it the hard way (use the hole). 684 */ 685 if (used + size > mp->m_dirblksize) 686 return 2; 687 /* 688 * Do it the easy way. 689 */ 690 *sfepp = sfep; 691 *offsetp = offset; 692 return 1; 693} 694 695#ifdef DEBUG 696/* 697 * Check consistency of shortform directory, assert if bad. 698 */ 699static void 700xfs_dir2_sf_check( 701 xfs_da_args_t *args) /* operation arguments */ 702{ 703 xfs_inode_t *dp; /* incore directory inode */ 704 int i; /* entry number */ 705 int i8count; /* number of big inode#s */ 706 xfs_ino_t ino; /* entry inode number */ 707 int offset; /* data offset */ 708 xfs_dir2_sf_entry_t *sfep; /* shortform dir entry */ 709 xfs_dir2_sf_hdr_t *sfp; /* shortform structure */ 710 struct xfs_mount *mp; 711 712 dp = args->dp; 713 mp = dp->i_mount; 714 715 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 716 offset = XFS_DIR3_DATA_FIRST_OFFSET(mp); 717 ino = xfs_dir2_sf_get_parent_ino(sfp); 718 i8count = ino > XFS_DIR2_MAX_SHORT_INUM; 719 720 for (i = 0, sfep = xfs_dir2_sf_firstentry(sfp); 721 i < sfp->count; 722 i++, sfep = xfs_dir3_sf_nextentry(mp, sfp, sfep)) { 723 ASSERT(xfs_dir2_sf_get_offset(sfep) >= offset); 724 ino = xfs_dir3_sfe_get_ino(mp, sfp, sfep); 725 i8count += ino > XFS_DIR2_MAX_SHORT_INUM; 726 offset = 727 xfs_dir2_sf_get_offset(sfep) + 728 xfs_dir3_data_entsize(mp, sfep->namelen); 729 ASSERT(xfs_dir3_sfe_get_ftype(mp, sfp, sfep) < 730 XFS_DIR3_FT_MAX); 731 } 732 ASSERT(i8count == sfp->i8count); 733 ASSERT(XFS_BIG_INUMS || i8count == 0); 734 ASSERT((char *)sfep - (char *)sfp == dp->i_d.di_size); 735 ASSERT(offset + 736 (sfp->count + 2) * (uint)sizeof(xfs_dir2_leaf_entry_t) + 737 (uint)sizeof(xfs_dir2_block_tail_t) <= mp->m_dirblksize); 738} 739#endif /* DEBUG */ 740 741/* 742 * Create a new (shortform) directory. 743 */ 744int /* error, always 0 */ 745xfs_dir2_sf_create( 746 xfs_da_args_t *args, /* operation arguments */ 747 xfs_ino_t pino) /* parent inode number */ 748{ 749 xfs_inode_t *dp; /* incore directory inode */ 750 int i8count; /* parent inode is an 8-byte number */ 751 xfs_dir2_sf_hdr_t *sfp; /* shortform structure */ 752 int size; /* directory size */ 753 754 trace_xfs_dir2_sf_create(args); 755 756 dp = args->dp; 757 758 ASSERT(dp != NULL); 759 ASSERT(dp->i_d.di_size == 0); 760 /* 761 * If it's currently a zero-length extent file, 762 * convert it to local format. 763 */ 764 if (dp->i_d.di_format == XFS_DINODE_FMT_EXTENTS) { 765 dp->i_df.if_flags &= ~XFS_IFEXTENTS; /* just in case */ 766 dp->i_d.di_format = XFS_DINODE_FMT_LOCAL; 767 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE); 768 dp->i_df.if_flags |= XFS_IFINLINE; 769 } 770 ASSERT(dp->i_df.if_flags & XFS_IFINLINE); 771 ASSERT(dp->i_df.if_bytes == 0); 772 i8count = pino > XFS_DIR2_MAX_SHORT_INUM; 773 size = xfs_dir2_sf_hdr_size(i8count); 774 /* 775 * Make a buffer for the data. 776 */ 777 xfs_idata_realloc(dp, size, XFS_DATA_FORK); 778 /* 779 * Fill in the header, 780 */ 781 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 782 sfp->i8count = i8count; 783 /* 784 * Now can put in the inode number, since i8count is set. 785 */ 786 xfs_dir2_sf_put_parent_ino(sfp, pino); 787 sfp->count = 0; 788 dp->i_d.di_size = size; 789 xfs_dir2_sf_check(args); 790 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_DDATA); 791 return 0; 792} 793 794/* 795 * Lookup an entry in a shortform directory. 796 * Returns EEXIST if found, ENOENT if not found. 797 */ 798int /* error */ 799xfs_dir2_sf_lookup( 800 xfs_da_args_t *args) /* operation arguments */ 801{ 802 xfs_inode_t *dp; /* incore directory inode */ 803 int i; /* entry index */ 804 int error; 805 xfs_dir2_sf_entry_t *sfep; /* shortform directory entry */ 806 xfs_dir2_sf_hdr_t *sfp; /* shortform structure */ 807 enum xfs_dacmp cmp; /* comparison result */ 808 xfs_dir2_sf_entry_t *ci_sfep; /* case-insens. entry */ 809 810 trace_xfs_dir2_sf_lookup(args); 811 812 xfs_dir2_sf_check(args); 813 dp = args->dp; 814 815 ASSERT(dp->i_df.if_flags & XFS_IFINLINE); 816 /* 817 * Bail out if the directory is way too short. 818 */ 819 if (dp->i_d.di_size < offsetof(xfs_dir2_sf_hdr_t, parent)) { 820 ASSERT(XFS_FORCED_SHUTDOWN(dp->i_mount)); 821 return XFS_ERROR(EIO); 822 } 823 ASSERT(dp->i_df.if_bytes == dp->i_d.di_size); 824 ASSERT(dp->i_df.if_u1.if_data != NULL); 825 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 826 ASSERT(dp->i_d.di_size >= xfs_dir2_sf_hdr_size(sfp->i8count)); 827 /* 828 * Special case for . 829 */ 830 if (args->namelen == 1 && args->name[0] == '.') { 831 args->inumber = dp->i_ino; 832 args->cmpresult = XFS_CMP_EXACT; 833 args->filetype = XFS_DIR3_FT_DIR; 834 return XFS_ERROR(EEXIST); 835 } 836 /* 837 * Special case for .. 838 */ 839 if (args->namelen == 2 && 840 args->name[0] == '.' && args->name[1] == '.') { 841 args->inumber = xfs_dir2_sf_get_parent_ino(sfp); 842 args->cmpresult = XFS_CMP_EXACT; 843 args->filetype = XFS_DIR3_FT_DIR; 844 return XFS_ERROR(EEXIST); 845 } 846 /* 847 * Loop over all the entries trying to match ours. 848 */ 849 ci_sfep = NULL; 850 for (i = 0, sfep = xfs_dir2_sf_firstentry(sfp); i < sfp->count; 851 i++, sfep = xfs_dir3_sf_nextentry(dp->i_mount, sfp, sfep)) { 852 /* 853 * Compare name and if it's an exact match, return the inode 854 * number. If it's the first case-insensitive match, store the 855 * inode number and continue looking for an exact match. 856 */ 857 cmp = dp->i_mount->m_dirnameops->compname(args, sfep->name, 858 sfep->namelen); 859 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) { 860 args->cmpresult = cmp; 861 args->inumber = xfs_dir3_sfe_get_ino(dp->i_mount, 862 sfp, sfep); 863 args->filetype = xfs_dir3_sfe_get_ftype(dp->i_mount, 864 sfp, sfep); 865 if (cmp == XFS_CMP_EXACT) 866 return XFS_ERROR(EEXIST); 867 ci_sfep = sfep; 868 } 869 } 870 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT); 871 /* 872 * Here, we can only be doing a lookup (not a rename or replace). 873 * If a case-insensitive match was not found, return ENOENT. 874 */ 875 if (!ci_sfep) 876 return XFS_ERROR(ENOENT); 877 /* otherwise process the CI match as required by the caller */ 878 error = xfs_dir_cilookup_result(args, ci_sfep->name, ci_sfep->namelen); 879 return XFS_ERROR(error); 880} 881 882/* 883 * Remove an entry from a shortform directory. 884 */ 885int /* error */ 886xfs_dir2_sf_removename( 887 xfs_da_args_t *args) 888{ 889 int byteoff; /* offset of removed entry */ 890 xfs_inode_t *dp; /* incore directory inode */ 891 int entsize; /* this entry's size */ 892 int i; /* shortform entry index */ 893 int newsize; /* new inode size */ 894 int oldsize; /* old inode size */ 895 xfs_dir2_sf_entry_t *sfep; /* shortform directory entry */ 896 xfs_dir2_sf_hdr_t *sfp; /* shortform structure */ 897 898 trace_xfs_dir2_sf_removename(args); 899 900 dp = args->dp; 901 902 ASSERT(dp->i_df.if_flags & XFS_IFINLINE); 903 oldsize = (int)dp->i_d.di_size; 904 /* 905 * Bail out if the directory is way too short. 906 */ 907 if (oldsize < offsetof(xfs_dir2_sf_hdr_t, parent)) { 908 ASSERT(XFS_FORCED_SHUTDOWN(dp->i_mount)); 909 return XFS_ERROR(EIO); 910 } 911 ASSERT(dp->i_df.if_bytes == oldsize); 912 ASSERT(dp->i_df.if_u1.if_data != NULL); 913 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 914 ASSERT(oldsize >= xfs_dir2_sf_hdr_size(sfp->i8count)); 915 /* 916 * Loop over the old directory entries. 917 * Find the one we're deleting. 918 */ 919 for (i = 0, sfep = xfs_dir2_sf_firstentry(sfp); i < sfp->count; 920 i++, sfep = xfs_dir3_sf_nextentry(dp->i_mount, sfp, sfep)) { 921 if (xfs_da_compname(args, sfep->name, sfep->namelen) == 922 XFS_CMP_EXACT) { 923 ASSERT(xfs_dir3_sfe_get_ino(dp->i_mount, sfp, sfep) == 924 args->inumber); 925 break; 926 } 927 } 928 /* 929 * Didn't find it. 930 */ 931 if (i == sfp->count) 932 return XFS_ERROR(ENOENT); 933 /* 934 * Calculate sizes. 935 */ 936 byteoff = (int)((char *)sfep - (char *)sfp); 937 entsize = xfs_dir3_sf_entsize(dp->i_mount, sfp, args->namelen); 938 newsize = oldsize - entsize; 939 /* 940 * Copy the part if any after the removed entry, sliding it down. 941 */ 942 if (byteoff + entsize < oldsize) 943 memmove((char *)sfp + byteoff, (char *)sfp + byteoff + entsize, 944 oldsize - (byteoff + entsize)); 945 /* 946 * Fix up the header and file size. 947 */ 948 sfp->count--; 949 dp->i_d.di_size = newsize; 950 /* 951 * Reallocate, making it smaller. 952 */ 953 xfs_idata_realloc(dp, newsize - oldsize, XFS_DATA_FORK); 954 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 955#if XFS_BIG_INUMS 956 /* 957 * Are we changing inode number size? 958 */ 959 if (args->inumber > XFS_DIR2_MAX_SHORT_INUM) { 960 if (sfp->i8count == 1) 961 xfs_dir2_sf_toino4(args); 962 else 963 sfp->i8count--; 964 } 965#endif 966 xfs_dir2_sf_check(args); 967 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_DDATA); 968 return 0; 969} 970 971/* 972 * Replace the inode number of an entry in a shortform directory. 973 */ 974int /* error */ 975xfs_dir2_sf_replace( 976 xfs_da_args_t *args) /* operation arguments */ 977{ 978 xfs_inode_t *dp; /* incore directory inode */ 979 int i; /* entry index */ 980#if XFS_BIG_INUMS || defined(DEBUG) 981 xfs_ino_t ino=0; /* entry old inode number */ 982#endif 983#if XFS_BIG_INUMS 984 int i8elevated; /* sf_toino8 set i8count=1 */ 985#endif 986 xfs_dir2_sf_entry_t *sfep; /* shortform directory entry */ 987 xfs_dir2_sf_hdr_t *sfp; /* shortform structure */ 988 989 trace_xfs_dir2_sf_replace(args); 990 991 dp = args->dp; 992 993 ASSERT(dp->i_df.if_flags & XFS_IFINLINE); 994 /* 995 * Bail out if the shortform directory is way too small. 996 */ 997 if (dp->i_d.di_size < offsetof(xfs_dir2_sf_hdr_t, parent)) { 998 ASSERT(XFS_FORCED_SHUTDOWN(dp->i_mount)); 999 return XFS_ERROR(EIO); 1000 } 1001 ASSERT(dp->i_df.if_bytes == dp->i_d.di_size); 1002 ASSERT(dp->i_df.if_u1.if_data != NULL); 1003 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 1004 ASSERT(dp->i_d.di_size >= xfs_dir2_sf_hdr_size(sfp->i8count)); 1005#if XFS_BIG_INUMS 1006 /* 1007 * New inode number is large, and need to convert to 8-byte inodes. 1008 */ 1009 if (args->inumber > XFS_DIR2_MAX_SHORT_INUM && sfp->i8count == 0) { 1010 int error; /* error return value */ 1011 int newsize; /* new inode size */ 1012 1013 newsize = 1014 dp->i_df.if_bytes + 1015 (sfp->count + 1) * 1016 ((uint)sizeof(xfs_dir2_ino8_t) - 1017 (uint)sizeof(xfs_dir2_ino4_t)); 1018 /* 1019 * Won't fit as shortform, convert to block then do replace. 1020 */ 1021 if (newsize > XFS_IFORK_DSIZE(dp)) { 1022 error = xfs_dir2_sf_to_block(args); 1023 if (error) { 1024 return error; 1025 } 1026 return xfs_dir2_block_replace(args); 1027 } 1028 /* 1029 * Still fits, convert to 8-byte now. 1030 */ 1031 xfs_dir2_sf_toino8(args); 1032 i8elevated = 1; 1033 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 1034 } else 1035 i8elevated = 0; 1036#endif 1037 ASSERT(args->namelen != 1 || args->name[0] != '.'); 1038 /* 1039 * Replace ..'s entry. 1040 */ 1041 if (args->namelen == 2 && 1042 args->name[0] == '.' && args->name[1] == '.') { 1043#if XFS_BIG_INUMS || defined(DEBUG) 1044 ino = xfs_dir2_sf_get_parent_ino(sfp); 1045 ASSERT(args->inumber != ino); 1046#endif 1047 xfs_dir2_sf_put_parent_ino(sfp, args->inumber); 1048 } 1049 /* 1050 * Normal entry, look for the name. 1051 */ 1052 else { 1053 for (i = 0, sfep = xfs_dir2_sf_firstentry(sfp); i < sfp->count; 1054 i++, sfep = xfs_dir3_sf_nextentry(dp->i_mount, sfp, sfep)) { 1055 if (xfs_da_compname(args, sfep->name, sfep->namelen) == 1056 XFS_CMP_EXACT) { 1057#if XFS_BIG_INUMS || defined(DEBUG) 1058 ino = xfs_dir3_sfe_get_ino(dp->i_mount, 1059 sfp, sfep); 1060 ASSERT(args->inumber != ino); 1061#endif 1062 xfs_dir3_sfe_put_ino(dp->i_mount, sfp, sfep, 1063 args->inumber); 1064 xfs_dir3_sfe_put_ftype(dp->i_mount, sfp, sfep, 1065 args->filetype); 1066 break; 1067 } 1068 } 1069 /* 1070 * Didn't find it. 1071 */ 1072 if (i == sfp->count) { 1073 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT); 1074#if XFS_BIG_INUMS 1075 if (i8elevated) 1076 xfs_dir2_sf_toino4(args); 1077#endif 1078 return XFS_ERROR(ENOENT); 1079 } 1080 } 1081#if XFS_BIG_INUMS 1082 /* 1083 * See if the old number was large, the new number is small. 1084 */ 1085 if (ino > XFS_DIR2_MAX_SHORT_INUM && 1086 args->inumber <= XFS_DIR2_MAX_SHORT_INUM) { 1087 /* 1088 * And the old count was one, so need to convert to small. 1089 */ 1090 if (sfp->i8count == 1) 1091 xfs_dir2_sf_toino4(args); 1092 else 1093 sfp->i8count--; 1094 } 1095 /* 1096 * See if the old number was small, the new number is large. 1097 */ 1098 if (ino <= XFS_DIR2_MAX_SHORT_INUM && 1099 args->inumber > XFS_DIR2_MAX_SHORT_INUM) { 1100 /* 1101 * add to the i8count unless we just converted to 8-byte 1102 * inodes (which does an implied i8count = 1) 1103 */ 1104 ASSERT(sfp->i8count != 0); 1105 if (!i8elevated) 1106 sfp->i8count++; 1107 } 1108#endif 1109 xfs_dir2_sf_check(args); 1110 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_DDATA); 1111 return 0; 1112} 1113 1114#if XFS_BIG_INUMS 1115/* 1116 * Convert from 8-byte inode numbers to 4-byte inode numbers. 1117 * The last 8-byte inode number is gone, but the count is still 1. 1118 */ 1119static void 1120xfs_dir2_sf_toino4( 1121 xfs_da_args_t *args) /* operation arguments */ 1122{ 1123 char *buf; /* old dir's buffer */ 1124 xfs_inode_t *dp; /* incore directory inode */ 1125 int i; /* entry index */ 1126 int newsize; /* new inode size */ 1127 xfs_dir2_sf_entry_t *oldsfep; /* old sf entry */ 1128 xfs_dir2_sf_hdr_t *oldsfp; /* old sf directory */ 1129 int oldsize; /* old inode size */ 1130 xfs_dir2_sf_entry_t *sfep; /* new sf entry */ 1131 xfs_dir2_sf_hdr_t *sfp; /* new sf directory */ 1132 struct xfs_mount *mp; 1133 1134 trace_xfs_dir2_sf_toino4(args); 1135 1136 dp = args->dp; 1137 mp = dp->i_mount; 1138 1139 /* 1140 * Copy the old directory to the buffer. 1141 * Then nuke it from the inode, and add the new buffer to the inode. 1142 * Don't want xfs_idata_realloc copying the data here. 1143 */ 1144 oldsize = dp->i_df.if_bytes; 1145 buf = kmem_alloc(oldsize, KM_SLEEP); 1146 oldsfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 1147 ASSERT(oldsfp->i8count == 1); 1148 memcpy(buf, oldsfp, oldsize); 1149 /* 1150 * Compute the new inode size. 1151 */ 1152 newsize = 1153 oldsize - 1154 (oldsfp->count + 1) * 1155 ((uint)sizeof(xfs_dir2_ino8_t) - (uint)sizeof(xfs_dir2_ino4_t)); 1156 xfs_idata_realloc(dp, -oldsize, XFS_DATA_FORK); 1157 xfs_idata_realloc(dp, newsize, XFS_DATA_FORK); 1158 /* 1159 * Reset our pointers, the data has moved. 1160 */ 1161 oldsfp = (xfs_dir2_sf_hdr_t *)buf; 1162 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 1163 /* 1164 * Fill in the new header. 1165 */ 1166 sfp->count = oldsfp->count; 1167 sfp->i8count = 0; 1168 xfs_dir2_sf_put_parent_ino(sfp, xfs_dir2_sf_get_parent_ino(oldsfp)); 1169 /* 1170 * Copy the entries field by field. 1171 */ 1172 for (i = 0, sfep = xfs_dir2_sf_firstentry(sfp), 1173 oldsfep = xfs_dir2_sf_firstentry(oldsfp); 1174 i < sfp->count; 1175 i++, sfep = xfs_dir3_sf_nextentry(mp, sfp, sfep), 1176 oldsfep = xfs_dir3_sf_nextentry(mp, oldsfp, oldsfep)) { 1177 sfep->namelen = oldsfep->namelen; 1178 sfep->offset = oldsfep->offset; 1179 memcpy(sfep->name, oldsfep->name, sfep->namelen); 1180 xfs_dir3_sfe_put_ino(mp, sfp, sfep, 1181 xfs_dir3_sfe_get_ino(mp, oldsfp, oldsfep)); 1182 xfs_dir3_sfe_put_ftype(mp, sfp, sfep, 1183 xfs_dir3_sfe_get_ftype(mp, oldsfp, oldsfep)); 1184 } 1185 /* 1186 * Clean up the inode. 1187 */ 1188 kmem_free(buf); 1189 dp->i_d.di_size = newsize; 1190 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_DDATA); 1191} 1192 1193/* 1194 * Convert from 4-byte inode numbers to 8-byte inode numbers. 1195 * The new 8-byte inode number is not there yet, we leave with the 1196 * count 1 but no corresponding entry. 1197 */ 1198static void 1199xfs_dir2_sf_toino8( 1200 xfs_da_args_t *args) /* operation arguments */ 1201{ 1202 char *buf; /* old dir's buffer */ 1203 xfs_inode_t *dp; /* incore directory inode */ 1204 int i; /* entry index */ 1205 int newsize; /* new inode size */ 1206 xfs_dir2_sf_entry_t *oldsfep; /* old sf entry */ 1207 xfs_dir2_sf_hdr_t *oldsfp; /* old sf directory */ 1208 int oldsize; /* old inode size */ 1209 xfs_dir2_sf_entry_t *sfep; /* new sf entry */ 1210 xfs_dir2_sf_hdr_t *sfp; /* new sf directory */ 1211 struct xfs_mount *mp; 1212 1213 trace_xfs_dir2_sf_toino8(args); 1214 1215 dp = args->dp; 1216 mp = dp->i_mount; 1217 1218 /* 1219 * Copy the old directory to the buffer. 1220 * Then nuke it from the inode, and add the new buffer to the inode. 1221 * Don't want xfs_idata_realloc copying the data here. 1222 */ 1223 oldsize = dp->i_df.if_bytes; 1224 buf = kmem_alloc(oldsize, KM_SLEEP); 1225 oldsfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 1226 ASSERT(oldsfp->i8count == 0); 1227 memcpy(buf, oldsfp, oldsize); 1228 /* 1229 * Compute the new inode size. 1230 */ 1231 newsize = 1232 oldsize + 1233 (oldsfp->count + 1) * 1234 ((uint)sizeof(xfs_dir2_ino8_t) - (uint)sizeof(xfs_dir2_ino4_t)); 1235 xfs_idata_realloc(dp, -oldsize, XFS_DATA_FORK); 1236 xfs_idata_realloc(dp, newsize, XFS_DATA_FORK); 1237 /* 1238 * Reset our pointers, the data has moved. 1239 */ 1240 oldsfp = (xfs_dir2_sf_hdr_t *)buf; 1241 sfp = (xfs_dir2_sf_hdr_t *)dp->i_df.if_u1.if_data; 1242 /* 1243 * Fill in the new header. 1244 */ 1245 sfp->count = oldsfp->count; 1246 sfp->i8count = 1; 1247 xfs_dir2_sf_put_parent_ino(sfp, xfs_dir2_sf_get_parent_ino(oldsfp)); 1248 /* 1249 * Copy the entries field by field. 1250 */ 1251 for (i = 0, sfep = xfs_dir2_sf_firstentry(sfp), 1252 oldsfep = xfs_dir2_sf_firstentry(oldsfp); 1253 i < sfp->count; 1254 i++, sfep = xfs_dir3_sf_nextentry(mp, sfp, sfep), 1255 oldsfep = xfs_dir3_sf_nextentry(mp, oldsfp, oldsfep)) { 1256 sfep->namelen = oldsfep->namelen; 1257 sfep->offset = oldsfep->offset; 1258 memcpy(sfep->name, oldsfep->name, sfep->namelen); 1259 xfs_dir3_sfe_put_ino(mp, sfp, sfep, 1260 xfs_dir3_sfe_get_ino(mp, oldsfp, oldsfep)); 1261 xfs_dir3_sfe_put_ftype(mp, sfp, sfep, 1262 xfs_dir3_sfe_get_ftype(mp, oldsfp, oldsfep)); 1263 } 1264 /* 1265 * Clean up the inode. 1266 */ 1267 kmem_free(buf); 1268 dp->i_d.di_size = newsize; 1269 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE | XFS_ILOG_DDATA); 1270} 1271#endif /* XFS_BIG_INUMS */