1 /* $NetBSD: ext2fs_alloc.c,v 1.46 2015/03/28 19:24:04 maxv Exp $ */ 2 3 /* 4 * Copyright (c) 1982, 1986, 1989, 1993 5 * The Regents of the University of California. All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 3. Neither the name of the University nor the names of its contributors 16 * may be used to endorse or promote products derived from this software 17 * without specific prior written permission. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 22 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 29 * SUCH DAMAGE. 30 * 31 * @(#)ffs_alloc.c 8.11 (Berkeley) 10/27/94 32 * Modified for ext2fs by Manuel Bouyer. 33 */ 34 35 /* 36 * Copyright (c) 1997 Manuel Bouyer. 37 * 38 * Redistribution and use in source and binary forms, with or without 39 * modification, are permitted provided that the following conditions 40 * are met: 41 * 1. Redistributions of source code must retain the above copyright 42 * notice, this list of conditions and the following disclaimer. 43 * 2. Redistributions in binary form must reproduce the above copyright 44 * notice, this list of conditions and the following disclaimer in the 45 * documentation and/or other materials provided with the distribution. 46 * 47 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 48 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 49 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 50 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 51 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 52 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 53 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 54 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 55 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 56 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 57 * 58 * @(#)ffs_alloc.c 8.11 (Berkeley) 10/27/94 59 * Modified for ext2fs by Manuel Bouyer. 60 */ 61 62 #include <sys/cdefs.h> 63 __KERNEL_RCSID(0, "$NetBSD: ext2fs_alloc.c,v 1.46 2015/03/28 19:24:04 maxv Exp $"); 64 65 #include <sys/param.h> 66 #include <sys/systm.h> 67 #include <sys/buf.h> 68 #include <sys/proc.h> 69 #include <sys/vnode.h> 70 #include <sys/mount.h> 71 #include <sys/kernel.h> 72 #include <sys/syslog.h> 73 #include <sys/kauth.h> 74 75 #include <ufs/ufs/inode.h> 76 #include <ufs/ufs/ufs_extern.h> 77 #include <ufs/ufs/ufsmount.h> 78 79 #include <ufs/ext2fs/ext2fs.h> 80 #include <ufs/ext2fs/ext2fs_extern.h> 81 82 u_long ext2gennumber; 83 84 static daddr_t ext2fs_alloccg(struct inode *, int, daddr_t, int); 85 static u_long ext2fs_dirpref(struct m_ext2fs *); 86 static void ext2fs_fserr(struct m_ext2fs *, u_int, const char *); 87 static u_long ext2fs_hashalloc(struct inode *, int, long, int, 88 daddr_t (*)(struct inode *, int, daddr_t, int)); 89 static daddr_t ext2fs_nodealloccg(struct inode *, int, daddr_t, int); 90 static daddr_t ext2fs_mapsearch(struct m_ext2fs *, char *, daddr_t); 91 92 /* 93 * Allocate a block in the file system. 94 * 95 * A preference may be optionally specified. If a preference is given 96 * the following hierarchy is used to allocate a block: 97 * 1) allocate the requested block. 98 * 2) allocate a rotationally optimal block in the same cylinder. 99 * 3) allocate a block in the same cylinder group. 100 * 4) quadradically rehash into other cylinder groups, until an 101 * available block is located. 102 * If no block preference is given the following hierarchy is used 103 * to allocate a block: 104 * 1) allocate a block in the cylinder group that contains the 105 * inode for the file. 106 * 2) quadradically rehash into other cylinder groups, until an 107 * available block is located. 108 */ 109 int 110 ext2fs_alloc(struct inode *ip, daddr_t lbn, daddr_t bpref, 111 kauth_cred_t cred, daddr_t *bnp) 112 { 113 struct m_ext2fs *fs; 114 daddr_t bno; 115 int cg; 116 117 *bnp = 0; 118 fs = ip->i_e2fs; 119 #ifdef DIAGNOSTIC 120 if (cred == NOCRED) 121 panic("ext2fs_alloc: missing credential"); 122 #endif /* DIAGNOSTIC */ 123 if (fs->e2fs.e2fs_fbcount == 0) 124 goto nospace; 125 if (kauth_authorize_system(cred, KAUTH_SYSTEM_FS_RESERVEDSPACE, 0, NULL, 126 NULL, NULL) != 0 && 127 freespace(fs) <= 0) 128 goto nospace; 129 if (bpref >= fs->e2fs.e2fs_bcount) 130 bpref = 0; 131 if (bpref == 0) 132 cg = ino_to_cg(fs, ip->i_number); 133 else 134 cg = dtog(fs, bpref); 135 bno = (daddr_t)ext2fs_hashalloc(ip, cg, bpref, fs->e2fs_bsize, 136 ext2fs_alloccg); 137 if (bno > 0) { 138 ext2fs_setnblock(ip, ext2fs_nblock(ip) + btodb(fs->e2fs_bsize)); 139 ip->i_flag |= IN_CHANGE | IN_UPDATE; 140 *bnp = bno; 141 return (0); 142 } 143 nospace: 144 ext2fs_fserr(fs, kauth_cred_geteuid(cred), "file system full"); 145 uprintf("\n%s: write failed, file system is full\n", fs->e2fs_fsmnt); 146 return (ENOSPC); 147 } 148 149 /* 150 * Allocate an inode in the file system. 151 * 152 * If allocating a directory, use ext2fs_dirpref to select the inode. 153 * If allocating in a directory, the following hierarchy is followed: 154 * 1) allocate the preferred inode. 155 * 2) allocate an inode in the same cylinder group. 156 * 3) quadradically rehash into other cylinder groups, until an 157 * available inode is located. 158 * If no inode preference is given the following hierarchy is used 159 * to allocate an inode: 160 * 1) allocate an inode in cylinder group 0. 161 * 2) quadradically rehash into other cylinder groups, until an 162 * available inode is located. 163 */ 164 int 165 ext2fs_valloc(struct vnode *pvp, int mode, kauth_cred_t cred, 166 struct vnode **vpp) 167 { 168 struct inode *pip; 169 struct m_ext2fs *fs; 170 struct inode *ip; 171 ino_t ino, ipref; 172 int cg, error; 173 174 *vpp = NULL; 175 pip = VTOI(pvp); 176 fs = pip->i_e2fs; 177 if (fs->e2fs.e2fs_ficount == 0) 178 goto noinodes; 179 180 if ((mode & IFMT) == IFDIR) 181 cg = ext2fs_dirpref(fs); 182 else 183 cg = ino_to_cg(fs, pip->i_number); 184 ipref = cg * fs->e2fs.e2fs_ipg + 1; 185 ino = (ino_t)ext2fs_hashalloc(pip, cg, (long)ipref, mode, ext2fs_nodealloccg); 186 if (ino == 0) 187 goto noinodes; 188 error = VFS_VGET(pvp->v_mount, ino, vpp); 189 if (error) { 190 ext2fs_vfree(pvp, ino, mode); 191 return (error); 192 } 193 ip = VTOI(*vpp); 194 if (ip->i_e2fs_mode && ip->i_e2fs_nlink != 0) { 195 printf("mode = 0%o, nlinks %d, inum = %llu, fs = %s\n", 196 ip->i_e2fs_mode, ip->i_e2fs_nlink, 197 (unsigned long long)ip->i_number, fs->e2fs_fsmnt); 198 panic("ext2fs_valloc: dup alloc"); 199 } 200 201 memset(ip->i_din.e2fs_din, 0, sizeof(struct ext2fs_dinode)); 202 203 /* 204 * Set up a new generation number for this inode. 205 */ 206 if (++ext2gennumber < time_second) 207 ext2gennumber = time_second; 208 ip->i_e2fs_gen = ext2gennumber; 209 return (0); 210 noinodes: 211 ext2fs_fserr(fs, kauth_cred_geteuid(cred), "out of inodes"); 212 uprintf("\n%s: create/symlink failed, no inodes free\n", fs->e2fs_fsmnt); 213 return (ENOSPC); 214 } 215 216 /* 217 * Find a cylinder to place a directory. 218 * 219 * The policy implemented by this algorithm is to select from 220 * among those cylinder groups with above the average number of 221 * free inodes, the one with the smallest number of directories. 222 */ 223 static u_long 224 ext2fs_dirpref(struct m_ext2fs *fs) 225 { 226 int cg, maxspace, mincg, avgifree; 227 228 avgifree = fs->e2fs.e2fs_ficount / fs->e2fs_ncg; 229 maxspace = 0; 230 mincg = -1; 231 for (cg = 0; cg < fs->e2fs_ncg; cg++) 232 if ( fs->e2fs_gd[cg].ext2bgd_nifree >= avgifree) { 233 if (mincg == -1 || fs->e2fs_gd[cg].ext2bgd_nbfree > maxspace) { 234 mincg = cg; 235 maxspace = fs->e2fs_gd[cg].ext2bgd_nbfree; 236 } 237 } 238 return mincg; 239 } 240 241 /* 242 * Select the desired position for the next block in a file. The file is 243 * logically divided into sections. The first section is composed of the 244 * direct blocks. Each additional section contains fs_maxbpg blocks. 245 * 246 * If no blocks have been allocated in the first section, the policy is to 247 * request a block in the same cylinder group as the inode that describes 248 * the file. Otherwise, the policy is to try to allocate the blocks 249 * contigously. The two fields of the ext2 inode extension (see 250 * ufs/ufs/inode.h) help this. 251 */ 252 daddr_t 253 ext2fs_blkpref(struct inode *ip, daddr_t lbn, int indx, 254 int32_t *bap /* XXX ondisk32 */) 255 { 256 struct m_ext2fs *fs; 257 int cg, i; 258 259 fs = ip->i_e2fs; 260 /* 261 * if we are doing contigous lbn allocation, try to alloc blocks 262 * contigously on disk 263 */ 264 265 if ( ip->i_e2fs_last_blk && lbn == ip->i_e2fs_last_lblk + 1) { 266 return ip->i_e2fs_last_blk + 1; 267 } 268 269 /* 270 * bap, if provided, gives us a list of blocks to which we want to 271 * stay close 272 */ 273 274 if (bap) { 275 for (i = indx; i >= 0 ; i--) { 276 if (bap[i]) { 277 return fs2h32(bap[i]) + 1; 278 } 279 } 280 } 281 282 /* fall back to the first block of the cylinder containing the inode */ 283 284 cg = ino_to_cg(fs, ip->i_number); 285 return fs->e2fs.e2fs_bpg * cg + fs->e2fs.e2fs_first_dblock + 1; 286 } 287 288 /* 289 * Implement the cylinder overflow algorithm. 290 * 291 * The policy implemented by this algorithm is: 292 * 1) allocate the block in its requested cylinder group. 293 * 2) quadradically rehash on the cylinder group number. 294 * 3) brute force search for a free block. 295 */ 296 static u_long 297 ext2fs_hashalloc(struct inode *ip, int cg, long pref, int size, 298 daddr_t (*allocator)(struct inode *, int, daddr_t, int)) 299 { 300 struct m_ext2fs *fs; 301 long result; 302 int i, icg = cg; 303 304 fs = ip->i_e2fs; 305 /* 306 * 1: preferred cylinder group 307 */ 308 result = (*allocator)(ip, cg, pref, size); 309 if (result) 310 return (result); 311 /* 312 * 2: quadratic rehash 313 */ 314 for (i = 1; i < fs->e2fs_ncg; i *= 2) { 315 cg += i; 316 if (cg >= fs->e2fs_ncg) 317 cg -= fs->e2fs_ncg; 318 result = (*allocator)(ip, cg, 0, size); 319 if (result) 320 return (result); 321 } 322 /* 323 * 3: brute force search 324 * Note that we start at i == 2, since 0 was checked initially, 325 * and 1 is always checked in the quadratic rehash. 326 */ 327 cg = (icg + 2) % fs->e2fs_ncg; 328 for (i = 2; i < fs->e2fs_ncg; i++) { 329 result = (*allocator)(ip, cg, 0, size); 330 if (result) 331 return (result); 332 cg++; 333 if (cg == fs->e2fs_ncg) 334 cg = 0; 335 } 336 return (0); 337 } 338 339 /* 340 * Determine whether a block can be allocated. 341 * 342 * Check to see if a block of the appropriate size is available, 343 * and if it is, allocate it. 344 */ 345 346 static daddr_t 347 ext2fs_alloccg(struct inode *ip, int cg, daddr_t bpref, int size) 348 { 349 struct m_ext2fs *fs; 350 char *bbp; 351 struct buf *bp; 352 /* XXX ondisk32 */ 353 int error, bno, start, end, loc; 354 355 fs = ip->i_e2fs; 356 if (fs->e2fs_gd[cg].ext2bgd_nbfree == 0) 357 return (0); 358 error = bread(ip->i_devvp, EXT2_FSBTODB(fs, 359 fs->e2fs_gd[cg].ext2bgd_b_bitmap), 360 (int)fs->e2fs_bsize, B_MODIFY, &bp); 361 if (error) { 362 return (0); 363 } 364 bbp = (char *)bp->b_data; 365 366 if (dtog(fs, bpref) != cg) 367 bpref = 0; 368 if (bpref != 0) { 369 bpref = dtogd(fs, bpref); 370 /* 371 * if the requested block is available, use it 372 */ 373 if (isclr(bbp, bpref)) { 374 bno = bpref; 375 goto gotit; 376 } 377 } 378 /* 379 * no blocks in the requested cylinder, so take next 380 * available one in this cylinder group. 381 * first try to get 8 contigous blocks, then fall back to a single 382 * block. 383 */ 384 if (bpref) 385 start = dtogd(fs, bpref) / NBBY; 386 else 387 start = 0; 388 end = howmany(fs->e2fs.e2fs_fpg, NBBY) - start; 389 for (loc = start; loc < end; loc++) { 390 if (bbp[loc] == 0) { 391 bno = loc * NBBY; 392 goto gotit; 393 } 394 } 395 for (loc = 0; loc < start; loc++) { 396 if (bbp[loc] == 0) { 397 bno = loc * NBBY; 398 goto gotit; 399 } 400 } 401 402 bno = ext2fs_mapsearch(fs, bbp, bpref); 403 if (bno < 0) 404 return (0); 405 gotit: 406 #ifdef DIAGNOSTIC 407 if (isset(bbp, (daddr_t)bno)) { 408 printf("ext2fs_alloccgblk: cg=%d bno=%d fs=%s\n", 409 cg, bno, fs->e2fs_fsmnt); 410 panic("ext2fs_alloccg: dup alloc"); 411 } 412 #endif 413 setbit(bbp, (daddr_t)bno); 414 fs->e2fs.e2fs_fbcount--; 415 fs->e2fs_gd[cg].ext2bgd_nbfree--; 416 fs->e2fs_fmod = 1; 417 bdwrite(bp); 418 return (cg * fs->e2fs.e2fs_fpg + fs->e2fs.e2fs_first_dblock + bno); 419 } 420 421 /* 422 * Determine whether an inode can be allocated. 423 * 424 * Check to see if an inode is available, and if it is, 425 * allocate it using the following policy: 426 * 1) allocate the requested inode. 427 * 2) allocate the next available inode after the requested 428 * inode in the specified cylinder group. 429 */ 430 static daddr_t 431 ext2fs_nodealloccg(struct inode *ip, int cg, daddr_t ipref, int mode) 432 { 433 struct m_ext2fs *fs; 434 char *ibp; 435 struct buf *bp; 436 int error, start, len, loc, map, i; 437 438 ipref--; /* to avoid a lot of (ipref -1) */ 439 if (ipref == -1) 440 ipref = 0; 441 fs = ip->i_e2fs; 442 if (fs->e2fs_gd[cg].ext2bgd_nifree == 0) 443 return (0); 444 error = bread(ip->i_devvp, EXT2_FSBTODB(fs, 445 fs->e2fs_gd[cg].ext2bgd_i_bitmap), 446 (int)fs->e2fs_bsize, B_MODIFY, &bp); 447 if (error) { 448 return (0); 449 } 450 ibp = (char *)bp->b_data; 451 if (ipref) { 452 ipref %= fs->e2fs.e2fs_ipg; 453 if (isclr(ibp, ipref)) 454 goto gotit; 455 } 456 start = ipref / NBBY; 457 len = howmany(fs->e2fs.e2fs_ipg - ipref, NBBY); 458 loc = skpc(0xff, len, &ibp[start]); 459 if (loc == 0) { 460 len = start + 1; 461 start = 0; 462 loc = skpc(0xff, len, &ibp[0]); 463 if (loc == 0) { 464 printf("cg = %d, ipref = %lld, fs = %s\n", 465 cg, (long long)ipref, fs->e2fs_fsmnt); 466 panic("ext2fs_nodealloccg: map corrupted"); 467 /* NOTREACHED */ 468 } 469 } 470 i = start + len - loc; 471 map = ibp[i] ^ 0xff; 472 if (map == 0) { 473 printf("fs = %s\n", fs->e2fs_fsmnt); 474 panic("ext2fs_nodealloccg: block not in map"); 475 } 476 ipref = i * NBBY + ffs(map) - 1; 477 gotit: 478 setbit(ibp, ipref); 479 fs->e2fs.e2fs_ficount--; 480 fs->e2fs_gd[cg].ext2bgd_nifree--; 481 fs->e2fs_fmod = 1; 482 if ((mode & IFMT) == IFDIR) { 483 fs->e2fs_gd[cg].ext2bgd_ndirs++; 484 } 485 bdwrite(bp); 486 return (cg * fs->e2fs.e2fs_ipg + ipref +1); 487 } 488 489 /* 490 * Free a block. 491 * 492 * The specified block is placed back in the 493 * free map. 494 */ 495 void 496 ext2fs_blkfree(struct inode *ip, daddr_t bno) 497 { 498 struct m_ext2fs *fs; 499 char *bbp; 500 struct buf *bp; 501 int error, cg; 502 503 fs = ip->i_e2fs; 504 cg = dtog(fs, bno); 505 if ((u_int)bno >= fs->e2fs.e2fs_bcount) { 506 printf("bad block %lld, ino %llu\n", (long long)bno, 507 (unsigned long long)ip->i_number); 508 ext2fs_fserr(fs, ip->i_uid, "bad block"); 509 return; 510 } 511 error = bread(ip->i_devvp, 512 EXT2_FSBTODB(fs, fs->e2fs_gd[cg].ext2bgd_b_bitmap), 513 (int)fs->e2fs_bsize, B_MODIFY, &bp); 514 if (error) { 515 return; 516 } 517 bbp = (char *)bp->b_data; 518 bno = dtogd(fs, bno); 519 if (isclr(bbp, bno)) { 520 printf("dev = 0x%llx, block = %lld, fs = %s\n", 521 (unsigned long long)ip->i_dev, (long long)bno, 522 fs->e2fs_fsmnt); 523 panic("blkfree: freeing free block"); 524 } 525 clrbit(bbp, bno); 526 fs->e2fs.e2fs_fbcount++; 527 fs->e2fs_gd[cg].ext2bgd_nbfree++; 528 529 fs->e2fs_fmod = 1; 530 bdwrite(bp); 531 } 532 533 /* 534 * Free an inode. 535 * 536 * The specified inode is placed back in the free map. 537 */ 538 int 539 ext2fs_vfree(struct vnode *pvp, ino_t ino, int mode) 540 { 541 struct m_ext2fs *fs; 542 char *ibp; 543 struct inode *pip; 544 struct buf *bp; 545 int error, cg; 546 547 pip = VTOI(pvp); 548 fs = pip->i_e2fs; 549 if ((u_int)ino > fs->e2fs.e2fs_icount || (u_int)ino < EXT2_FIRSTINO) 550 panic("ifree: range: dev = 0x%llx, ino = %llu, fs = %s", 551 (unsigned long long)pip->i_dev, (unsigned long long)ino, 552 fs->e2fs_fsmnt); 553 cg = ino_to_cg(fs, ino); 554 error = bread(pip->i_devvp, 555 EXT2_FSBTODB(fs, fs->e2fs_gd[cg].ext2bgd_i_bitmap), 556 (int)fs->e2fs_bsize, B_MODIFY, &bp); 557 if (error) { 558 return (0); 559 } 560 ibp = (char *)bp->b_data; 561 ino = (ino - 1) % fs->e2fs.e2fs_ipg; 562 if (isclr(ibp, ino)) { 563 printf("dev = 0x%llx, ino = %llu, fs = %s\n", 564 (unsigned long long)pip->i_dev, 565 (unsigned long long)ino, fs->e2fs_fsmnt); 566 if (fs->e2fs_ronly == 0) 567 panic("ifree: freeing free inode"); 568 } 569 clrbit(ibp, ino); 570 fs->e2fs.e2fs_ficount++; 571 fs->e2fs_gd[cg].ext2bgd_nifree++; 572 if ((mode & IFMT) == IFDIR) { 573 fs->e2fs_gd[cg].ext2bgd_ndirs--; 574 } 575 fs->e2fs_fmod = 1; 576 bdwrite(bp); 577 return (0); 578 } 579 580 /* 581 * Find a block in the specified cylinder group. 582 * 583 * It is a panic if a request is made to find a block if none are 584 * available. 585 */ 586 587 static daddr_t 588 ext2fs_mapsearch(struct m_ext2fs *fs, char *bbp, daddr_t bpref) 589 { 590 int start, len, loc, i, map; 591 592 /* 593 * find the fragment by searching through the free block 594 * map for an appropriate bit pattern 595 */ 596 if (bpref) 597 start = dtogd(fs, bpref) / NBBY; 598 else 599 start = 0; 600 len = howmany(fs->e2fs.e2fs_fpg, NBBY) - start; 601 loc = skpc(0xff, len, &bbp[start]); 602 if (loc == 0) { 603 len = start + 1; 604 start = 0; 605 loc = skpc(0xff, len, &bbp[start]); 606 if (loc == 0) { 607 printf("start = %d, len = %d, fs = %s\n", 608 start, len, fs->e2fs_fsmnt); 609 panic("ext2fs_alloccg: map corrupted"); 610 /* NOTREACHED */ 611 } 612 } 613 i = start + len - loc; 614 map = bbp[i] ^ 0xff; 615 if (map == 0) { 616 printf("fs = %s\n", fs->e2fs_fsmnt); 617 panic("ext2fs_mapsearch: block not in map"); 618 } 619 return i * NBBY + ffs(map) - 1; 620 } 621 622 /* 623 * Fserr prints the name of a file system with an error diagnostic. 624 * 625 * The form of the error message is: 626 * fs: error message 627 */ 628 static void 629 ext2fs_fserr(struct m_ext2fs *fs, u_int uid, const char *cp) 630 { 631 632 log(LOG_ERR, "uid %d on %s: %s\n", uid, fs->e2fs_fsmnt, cp); 633 } 634