2 * Copyright 2005 Sun Microsystems, Inc. All rights reserved.
3 * Use is subject to license terms.
6 /* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */
7 /* All Rights Reserved */
10 * Copyright (c) 1980, 1986, 1990 The Regents of the University of California.
11 * All rights reserved.
13 * Redistribution and use in source and binary forms are permitted
14 * provided that: (1) source distributions retain this entire copyright
15 * notice and comment, and (2) distributions including binaries display
16 * the following acknowledgement: ``This product includes software
17 * developed by the University of California, Berkeley and its contributors''
18 * in the documentation or other materials provided with the distribution
19 * and in all advertising materials mentioning features or use of this
20 * software. Neither the name of the University nor the names of its
21 * contributors may be used to endorse or promote products derived
22 * from this software without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
24 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
25 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
28 #pragma ident "%Z%%M% %I% %E% SMI"
30 #include <sys/param.h>
31 #include <sys/types.h>
32 #include <sys/sysmacros.h>
33 #include <sys/mntent.h>
36 #include <sys/fs/ufs_fs.h>
37 #include <sys/vnode.h>
38 #include <sys/fs/ufs_inode.h>
40 #include <sys/fs/ufs_fsdir.h>
45 struct rc_queue
*rc_next
;
51 caddr_t lfname
= "lost+found"; /* name to use for l+f dir */
52 static int lfmode
= 01700; /* mode to use when creating l+f dir */
53 static struct dirtemplate emptydir
= { 0, DIRBLKSIZ
};
54 static struct dirtemplate dirhead
= {
55 0, 12, 1, ".", 0, DIRBLKSIZ
- 12, 2, ".."
58 static void lftempname(char *, fsck_ino_t
);
59 static int do_reconnect(fsck_ino_t
, fsck_ino_t
, caddr_t
);
60 static caddr_t
mkuniqname(caddr_t
, caddr_t
, fsck_ino_t
, fsck_ino_t
);
61 static int chgino(struct inodesc
*);
62 static int dircheck(struct inodesc
*, struct direct
*);
63 static int expanddir(fsck_ino_t
, char *);
64 static void freedir(fsck_ino_t
, fsck_ino_t
);
65 static struct direct
*fsck_readdir(struct inodesc
*);
66 static struct bufarea
*getdirblk(daddr32_t
, size_t);
67 static int mkentry(struct inodesc
*);
68 static fsck_ino_t
newdir(fsck_ino_t
, fsck_ino_t
, int, caddr_t
);
69 static fsck_ino_t
reallocdir(fsck_ino_t
, fsck_ino_t
, int, caddr_t
);
72 * Propagate connected state through the tree.
77 struct inoinfo
**inpp
, *inp
;
78 struct inoinfo
**inpend
;
81 inpend
= &inpsort
[inplast
];
84 for (inpp
= inpsort
; inpp
< inpend
; inpp
++) {
86 if (inp
->i_parent
== 0)
88 if (statemap
[inp
->i_parent
] == DFOUND
&&
89 INO_IS_DUNFOUND(inp
->i_number
)) {
90 inorphan
= statemap
[inp
->i_number
] & INORPHAN
;
91 statemap
[inp
->i_number
] = DFOUND
| inorphan
;
99 * Scan each entry in a directory block.
102 dirscan(struct inodesc
*idesc
)
108 union { /* keep lint happy about alignment */
109 char dbuf
[DIRBLKSIZ
];
113 if (idesc
->id_type
!= DATA
)
114 errexit("wrong type to dirscan %d\n", idesc
->id_type
);
115 if (idesc
->id_entryno
== 0 &&
116 (idesc
->id_filesize
& (DIRBLKSIZ
- 1)) != 0)
117 idesc
->id_filesize
= roundup(idesc
->id_filesize
, DIRBLKSIZ
);
118 blksiz
= idesc
->id_numfrags
* sblock
.fs_fsize
;
119 if (chkrange(idesc
->id_blkno
, idesc
->id_numfrags
)) {
120 idesc
->id_filesize
-= (offset_t
)blksiz
;
124 for (dp
= fsck_readdir(idesc
); dp
!= NULL
; dp
= fsck_readdir(idesc
)) {
126 * If we were just passed a corrupt directory entry with
127 * d_reclen > DIRBLKSIZ, we don't want to memmove() all over
128 * our stack. This directory gets cleaned up later.
130 dsize
= MIN(dp
->d_reclen
, sizeof (u
.dbuf
));
131 (void) memmove((void *)u
.dbuf
, (void *)dp
, (size_t)dsize
);
132 idesc
->id_dirp
= &u
.dir
;
133 if ((n
= (*idesc
->id_func
)(idesc
)) & ALTERED
) {
135 * We can ignore errors from getdirblk() here,
136 * as the block is still in memory thanks to
137 * buffering and fsck_readdir(). If there was
138 * an error reading it before, then all decisions
139 * leading to getting us here were based on the
140 * resulting zeros. As such, we have nothing
141 * to worry about at this point.
143 bp
= getdirblk(idesc
->id_blkno
, blksiz
);
144 (void) memmove((void *)(bp
->b_un
.b_buf
+
145 idesc
->id_loc
- dsize
),
146 (void *)u
.dbuf
, (size_t)dsize
);
153 return (idesc
->id_filesize
> 0 ? KEEPON
: STOP
);
157 * Get current entry in a directory (and peek at the next entry).
159 static struct direct
*
160 fsck_readdir(struct inodesc
*idesc
)
162 struct direct
*dp
, *ndp
= 0;
164 ushort_t size
; /* of directory entry */
167 int salvaged
; /* when to report SALVAGED in preen mode */
168 int origloc
= idesc
->id_loc
;
170 blksiz
= idesc
->id_numfrags
* sblock
.fs_fsize
;
172 * Sanity check id_filesize and id_loc fields. The latter
173 * has to be within the block we're looking at, as well as
174 * aligned to a four-byte boundary. The alignment is due to
175 * a struct direct containing four-byte integers. It's
176 * unfortunate that the four is a magic number, but there's
177 * really no good way to derive it from the ufs header files.
179 if ((idesc
->id_filesize
<= 0) || (idesc
->id_loc
>= blksiz
) ||
180 ((idesc
->id_loc
& 3) != 0))
183 * We don't have to worry about holes in the directory's
184 * block list, because that was checked for when the
185 * inode was first encountered during pass1. We never
186 * scan a directory until after we've vetted its block list.
189 * We can ignore errors from getdirblk() here, as dircheck()
190 * will reject any entries that would have been in the bad
191 * sectors (fsck_bread() fills in zeros on failures). The main
192 * reject keys are that d_reclen would be zero and/or that it
193 * is less than the minimal size of a directory entry. Since
194 * entries can't span sectors, there's no worry about having
195 * a good beginning in one sector and the rest in the next,
196 * where that second sector was unreadable and therefore
197 * replaced with zeros.
199 bp
= getdirblk(idesc
->id_blkno
, blksiz
);
200 /* LINTED b_buf is aligned and id_loc was verified above */
201 dp
= (struct direct
*)(bp
->b_un
.b_buf
+ idesc
->id_loc
);
204 * Check the current entry in the directory.
206 if (dircheck(idesc
, dp
) == 0) {
208 * If we are in here, then either the current directory
209 * entry is bad or the next directory entry is bad.
213 * Find the amount of space left to the end of the
214 * directory block for either directory entry.
216 size
= DIRBLKSIZ
- (idesc
->id_loc
& (DIRBLKSIZ
- 1));
219 * Advance to the end of the directory block.
221 idesc
->id_loc
+= size
;
222 idesc
->id_filesize
-= (offset_t
)size
;
225 * Ask the question before we fix the in-core directory
226 * block because dofix() may reuse the buffer.
228 salvaged
= (idesc
->id_fix
== DONTKNOW
);
229 dofixret
= dofix(idesc
, "DIRECTORY CORRUPTED");
232 * If there was an error reading the block, then that
233 * same error can reasonably be expected to have occurred
234 * when it was read previously. As such, the decision
235 * to come here was based on the results of that partially-
236 * zerod block, and so anything we change should be
237 * based on it as well. Upshot: no need to check for
240 bp
= getdirblk(idesc
->id_blkno
, blksiz
);
241 /* LINTED b_buf is aligned and id_loc/origloc was verified */
242 dp
= (struct direct
*)(bp
->b_un
.b_buf
+ origloc
);
245 * This is the current directory entry and since it is
246 * corrupt we cannot trust the rest of the directory
247 * block so change the current directory entry to
248 * contain nothing and encompass the rest of the block.
254 dp
->d_name
[0] = '\0';
257 * This is the next directory entry, i.e., we got here
258 * via a "goto next_is_bad". That directory entry is
259 * corrupt. However, the current directory entry is okay
260 * so if we are in fix mode, just extend its record size
261 * to encompass the rest of the block.
264 dp
->d_reclen
+= size
;
267 * If the user said to fix the directory corruption, then
268 * mark the block as dirty. Otherwise, our "repairs" only
269 * apply to the in-core copy so we don't hand back trash
272 * Note: It is possible that saying "no" to a change in
273 * one part of the I/O buffer and "yes" to a later change
274 * in the same I/O buffer may still flush the change to
275 * which we said "no". This is the pathological case and
276 * no fix is planned at this time.
280 if (preen
&& salvaged
)
281 (void) printf(" (SALVAGED)\n");
282 if (idesc
->id_number
== lfdir
)
287 * dp points into bp, which will get re-used at some
288 * arbitrary time in the future. We rely on the fact
289 * that we're singled-threaded, and that we'll be done
290 * with this directory entry by the time the next one
296 * The current directory entry checked out so advance past it.
298 idesc
->id_loc
+= dp
->d_reclen
;
299 idesc
->id_filesize
-= (offset_t
)dp
->d_reclen
;
301 * If we are not at the directory block boundary, then peek
302 * at the next directory entry and if it is bad we can add
303 * its space to the current directory entry (compression).
304 * Again, we sanity check the id_loc and id_filesize fields
305 * since we modified them above.
307 if ((idesc
->id_loc
& (DIRBLKSIZ
- 1)) && /* not at start */
308 (idesc
->id_loc
< blksiz
) && /* within block */
309 ((idesc
->id_loc
& 3) == 0) && /* properly aligned */
310 (idesc
->id_filesize
> 0)) { /* data follows */
311 /* LINTED b_buf is aligned and id_loc verified to be ok */
312 ndp
= (struct direct
*)(bp
->b_un
.b_buf
+ idesc
->id_loc
);
313 if (dircheck(idesc
, ndp
) == 0)
318 * See comment above about dp pointing into bp.
324 * Verify that a directory entry is valid.
325 * This is a superset of the checks made in the kernel.
328 dircheck(struct inodesc
*idesc
, struct direct
*dp
)
335 * Recall that id_filesize is the number of bytes left to
336 * process in the directory. We check id_filesize >= size
337 * instead of id_filesize >= d_reclen because all that the
338 * directory is actually required to contain is the entry
339 * itself (and it's how the kernel does the allocation).
341 * We indirectly check for d_reclen going past the end of
342 * the allocated space by comparing it against spaceleft.
345 spaceleft
= DIRBLKSIZ
- (idesc
->id_loc
% DIRBLKSIZ
);
346 if (dp
->d_ino
< maxino
&&
348 (int)dp
->d_reclen
<= spaceleft
&&
349 (dp
->d_reclen
& 0x3) == 0 &&
350 (int)dp
->d_reclen
>= size
&&
351 idesc
->id_filesize
>= (offset_t
)size
&&
352 dp
->d_namlen
<= MAXNAMLEN
) {
355 for (cp
= dp
->d_name
, size
= 0; size
< (size_t)dp
->d_namlen
;
357 if ((*cp
== '\0') || (*cp
== '/'))
364 (void) printf("Bad dir in inode %d at lbn %d, loc %d:\n",
365 idesc
->id_number
, idesc
->id_lbn
, idesc
->id_loc
);
366 (void) printf(" ino %d reclen %d namlen %d name `%s'\n",
367 dp
->d_ino
, dp
->d_reclen
, dp
->d_namlen
, dp
->d_name
);
373 adjust(struct inodesc
*idesc
, int lcnt
)
378 struct inodesc lcidesc
;
380 dp
= ginode(idesc
->id_number
);
381 if (dp
->di_nlink
== lcnt
) {
383 * If we have not hit any unresolved problems, are running
384 * in preen mode, and are on a file system using logging,
385 * then just toss any partially allocated files, as they are
386 * an expected occurrence.
388 if (!iscorrupt
&& preen
&& islog
) {
389 clri(idesc
, "UNREF", CLRI_VERBOSE
, CLRI_NOP_OK
);
393 * The file system can be considered clean even if
394 * a file is not linked up, but is cleared. In
395 * other words, the kernel won't panic over it.
396 * Hence, iscorrupt should not be set when
397 * linkup is answered no, but clri is answered yes.
399 * If neither is answered yes, then we have a
400 * non-panic-inducing known corruption that the
401 * user needs to be reminded of when we exit.
403 saveiscorrupt
= iscorrupt
;
404 if (linkup(idesc
->id_number
, (fsck_ino_t
)0,
406 iscorrupt
= saveiscorrupt
;
407 clri(idesc
, "UNREF", CLRI_QUIET
, CLRI_NOP_OK
);
408 if (statemap
[idesc
->id_number
] != USTATE
)
412 dp
= ginode(idesc
->id_number
);
414 lcnt
= lncntp
[idesc
->id_number
];
418 * It doesn't happen often, but it's possible to get a true
419 * excess of links (especially if a lot of directories got
420 * orphaned and reattached to lost+found). Instead of wrapping
421 * around, do something semi-useful (i.e., give progress towards
422 * a less-broken filesystem) when this happens.
424 LINK_RANGE(flow
, dp
->di_nlink
, -lcnt
);
426 LINK_CLEAR(flow
, idesc
->id_number
, dp
->di_mode
, &lcidesc
);
427 if (statemap
[idesc
->id_number
] == USTATE
)
431 dp
= ginode(idesc
->id_number
);
432 if (lcnt
&& dp
->di_nlink
!= lcnt
) {
433 pwarn("LINK COUNT %s",
434 file_id(idesc
->id_number
, dp
->di_mode
));
435 pinode(idesc
->id_number
);
436 dp
= ginode(idesc
->id_number
);
437 (void) printf(" COUNT %d SHOULD BE %d",
438 dp
->di_nlink
, dp
->di_nlink
- lcnt
);
440 * Even lost+found is subject to this, as whenever
441 * we modify it, we update both the in-memory and
442 * on-disk counts. Thus, they should still be in
448 if ((dp
->di_mode
& IFMT
) == IFSHAD
)
449 pwarn("LINK COUNT INCREASING");
451 pfatal("LINK COUNT INCREASING");
454 if (preen
|| reply("ADJUST") == 1) {
455 dp
->di_nlink
-= lcnt
;
458 (void) printf(" (ADJUSTED)\n");
459 } else if (((dp
->di_mode
& IFMT
) == IFDIR
) ||
460 ((dp
->di_mode
& IFMT
) == IFATTRDIR
)) {
462 * File counts can be off relatively harmlessly,
463 * but a bad directory count can cause the
464 * kernel to lose its mind.
472 mkentry(struct inodesc
*idesc
)
474 struct direct
*dirp
= idesc
->id_dirp
;
475 struct direct newent
;
478 newent
.d_namlen
= strlen(idesc
->id_name
);
479 newlen
= DIRSIZ(&newent
);
480 if (dirp
->d_ino
!= 0)
481 oldlen
= DIRSIZ(dirp
);
484 if ((int)dirp
->d_reclen
- oldlen
< newlen
)
486 newent
.d_reclen
= dirp
->d_reclen
- (ushort_t
)oldlen
;
487 dirp
->d_reclen
= (ushort_t
)oldlen
;
489 /* LINTED dirp is aligned and DIRSIZ() forces oldlen to be aligned */
490 dirp
= (struct direct
*)(((char *)dirp
) + oldlen
);
491 dirp
->d_ino
= idesc
->id_parent
; /* ino to be entered is in id_parent */
492 dirp
->d_reclen
= newent
.d_reclen
;
493 dirp
->d_namlen
= newent
.d_namlen
;
494 (void) memmove(dirp
->d_name
, idesc
->id_name
,
495 (size_t)newent
.d_namlen
+ 1);
497 return (ALTERED
|STOP
);
501 chgino(struct inodesc
*idesc
)
503 struct direct
*dirp
= idesc
->id_dirp
;
505 if (memcmp(dirp
->d_name
, idesc
->id_name
,
506 (size_t)dirp
->d_namlen
+ 1) != 0)
508 dirp
->d_ino
= idesc
->id_parent
;
509 return (ALTERED
|STOP
);
513 linkup(fsck_ino_t orphan
, fsck_ino_t parentdir
, caddr_t name
)
521 struct inodesc idesc
;
523 init_inodesc(&idesc
);
525 lostdir
= (((dp
->di_mode
& IFMT
) == IFDIR
) ||
526 ((dp
->di_mode
& IFMT
) == IFATTRDIR
));
527 if (debug
&& lostdir
&& dp
->di_nlink
<= 0 && lncntp
[orphan
] == -1)
529 "old fsck would have left inode %d for reclaim thread\n",
531 lostshadow
= (dp
->di_mode
& IFMT
) == IFSHAD
;
532 pwarn("UNREF %s ", file_id(orphan
, dp
->di_mode
));
534 if (lostshadow
|| (dp
->di_size
== 0 && dp
->di_oeftflag
== 0))
536 if (!preen
&& (reply("RECONNECT") == 0))
540 dp
= ginode(UFSROOTINO
);
541 idesc
.id_name
= lfname
;
542 idesc
.id_type
= DATA
;
543 idesc
.id_func
= findino
;
544 idesc
.id_number
= UFSROOTINO
;
545 idesc
.id_fix
= DONTKNOW
;
546 if ((ckinode(dp
, &idesc
, CKI_TRAVERSE
) & FOUND
) != 0) {
547 lfdir
= idesc
.id_parent
;
549 pwarn("NO %s DIRECTORY", lfname
);
550 if (preen
|| reply("CREATE") == 1) {
551 lfdir
= newdir(UFSROOTINO
, (fsck_ino_t
)0,
555 (void) printf(" (CREATED)\n");
558 statemap
[lfdir
] |= INFOUND
;
560 * XXX What if we allocate an inode
561 * that's already been scanned? Then
562 * we need to leave lnctnp[] alone.
564 TRACK_LNCNTP(UFSROOTINO
,
565 lncntp
[UFSROOTINO
]++);
570 pfatal("SORRY. CANNOT CREATE %s DIRECTORY\n", lfname
);
571 pwarn("Could not reconnect inode %d\n", orphan
);
575 * We searched for it via the namespace, so by
576 * definition it's been found. We have to do this
577 * because it is possible that we're called before
578 * the full namespace mapping is complete (especially
579 * from pass 1, if it encounters a corrupt directory
580 * that has to be cleared).
582 statemap
[lfdir
] |= INFOUND
;
586 if ((dp
->di_mode
& IFMT
) != IFDIR
) {
587 pfatal("%s IS NOT A DIRECTORY", lfname
);
588 if (reply("REALLOCATE") == 0) {
593 lfdir
= reallocdir(UFSROOTINO
, (fsck_ino_t
)0, lfmode
, lfname
);
596 pfatal("SORRY. CANNOT CREATE %s DIRECTORY\n\n",
601 statemap
[lfdir
] |= INFOUND
;
602 freeino(oldlfdir
, TI_PARENT
);
604 if (statemap
[lfdir
] != DFOUND
) {
606 * Not a consistency problem of the sort that'll
607 * cause the kernel heartburn, so don't set iscorrupt.
610 (void) printf("lfdir %d is in state 0x%x\n",
611 lfdir
, (int)statemap
[lfdir
]);
613 pfatal("SORRY. %s DIRECTORY DISAPPEARED\n\n", lfname
);
614 pwarn("Could not reconnect inode %d\n", orphan
);
618 rval
= do_reconnect(orphan
, parentdir
, name
);
623 * Leaving things unconnected is harmless as far as trying to
624 * use the filesystem later, so don't set iscorrupt yet (it's
625 * just lost blocks and inodes, after all).
627 * Lost directories get noted for reporting after all checks
628 * are done - they may get cleared later.
632 intree
= tsearch((void *)orphan
, &limbo_dirs
,
635 errexit("linkup: out of memory");
641 * Connect an orphaned inode to lost+found.
643 * Returns non-zero for success, zero for failure.
646 do_reconnect(fsck_ino_t orphan
, fsck_ino_t parentdir
, caddr_t name
)
653 struct inodesc idesc
;
656 mode
= dp
->di_mode
& IFMT
;
657 lostdir
= (mode
== IFDIR
) || (mode
== IFATTRDIR
);
659 name
= mkuniqname(name
, lfname
, lfdir
, orphan
);
662 if (makeentry(lfdir
, orphan
, name
) == 0) {
663 pfatal("SORRY. NO SPACE IN %s DIRECTORY\n", lfname
);
664 pwarn("Could not reconnect inode %d\n", orphan
);
669 LINK_RANGE(flow_msg
, lncntp
[orphan
], -1);
670 if (flow_msg
!= NULL
) {
671 LINK_CLEAR(flow_msg
, orphan
, dp
->di_mode
, &idesc
);
672 if (statemap
[orphan
] == USTATE
)
675 TRACK_LNCNTP(orphan
, lncntp
[orphan
]--);
678 * Make sure that anything we put into the normal namespace
679 * looks like it belongs there. Attributes can only be in
680 * attribute directories, not the normal directory lost+found.
682 maybe_convert_attrdir_to_dir(orphan
);
686 * Can't be creating a duplicate entry with makeentry(),
687 * because changeino() will succeed if ".." already
690 if ((changeino(orphan
, "..", lfdir
) & ALTERED
) == 0 &&
691 parentdir
!= (fsck_ino_t
)-1)
692 (void) makeentry(orphan
, lfdir
, "..");
694 * If we were half-detached, don't try to get
700 * Fix up link counts.
702 * XXX This section is getting pretty byzantine, espcially
703 * when combined with changeino()/chgino()'s link manipulation.
705 LFDIR_LINK_RANGE_RVAL(flow_msg
, lncntp
[lfdir
], 1, &idesc
, 0);
706 TRACK_LNCNTP(lfdir
, lncntp
[lfdir
]--);
707 pwarn("DIR I=%lu CONNECTED. ", (long)orphan
);
709 if (parentdir
!= (fsck_ino_t
)-1) {
711 * Have to clear the parent's reference. Otherwise,
712 * if it's an orphan, then we may clear this orphan
713 * in pass 4 even though we've reconnected it.
715 * We already have the reference count
716 * allowing for a parent link, so undo the
717 * adjustment done above. Otherwise we come
720 (void) printf("PARENT WAS I=%lu\n", (long)parentdir
);
721 (void) cleardirentry(parentdir
, orphan
);
726 (void) printf(" (RECONNECTED)\n");
729 statemap
[orphan
] &= ~INDELAYD
;
733 * Leaving things unconnected is harmless as far as trying to
734 * use the filesystem later, so don't set iscorrupt yet (it's
735 * just lost blocks and inodes, after all).
737 * Lost directories get noted for reporting after all checks
738 * are done - they may get cleared later.
742 intree
= tsearch((void *)orphan
, &limbo_dirs
,
745 errexit("linkup: out of memory");
751 * fix an entry in a directory.
754 changeino(fsck_ino_t dir
, char *name
, fsck_ino_t newnum
)
756 struct inodesc idesc
;
758 init_inodesc(&idesc
);
759 idesc
.id_type
= DATA
;
760 idesc
.id_func
= chgino
;
761 idesc
.id_number
= dir
;
762 idesc
.id_fix
= DONTKNOW
;
763 idesc
.id_name
= name
;
764 idesc
.id_parent
= newnum
; /* new value for name */
765 return (ckinode(ginode(dir
), &idesc
, CKI_TRAVERSE
));
769 * make an entry in a directory
772 makeentry(fsck_ino_t parent
, fsck_ino_t ino
, char *name
)
777 struct inodesc idesc
;
778 char pathbuf
[MAXPATHLEN
+ 1];
780 if (parent
< UFSROOTINO
|| parent
>= maxino
||
781 ino
< UFSROOTINO
|| ino
>= maxino
)
783 init_inodesc(&idesc
);
784 idesc
.id_type
= DATA
;
785 idesc
.id_func
= mkentry
;
786 idesc
.id_number
= parent
;
787 idesc
.id_parent
= ino
; /* this is the inode to enter */
788 idesc
.id_fix
= DONTKNOW
;
789 idesc
.id_name
= name
;
794 if ((dp
->di_size
% DIRBLKSIZ
) != 0) {
795 dp
->di_size
= roundup(dp
->di_size
, DIRBLKSIZ
);
798 iip
= getinoinfo(ino
);
800 iip
->i_isize
= dp
->di_size
;
803 if ((ckinode(dp
, &idesc
, CKI_TRAVERSE
) & ALTERED
) != 0) {
804 iip
= getinoinfo(ino
);
806 iip
->i_isize
= dp
->di_size
;
812 getpathname(pathbuf
, parent
, parent
);
813 if (expanddir(parent
, pathbuf
) == 0)
824 * Attempt to expand the size of a directory
827 expanddir(fsck_ino_t ino
, char *name
)
829 struct bufarea
*bpback
, *bp
[2];
830 daddr32_t nxtibn
, nxtbn
;
842 bp
[0] = bp
[1] = NULL
;
845 if (dp
->di_size
== 0) {
849 nxtbn
= lblkno(&sblock
, dp
->di_size
- 1) + 1;
852 * Check that none of the nominally in-use direct block
853 * addresses for the directory are bogus.
855 for (bc
= 0; ((nxtbn
> 0) && (bc
< nxtbn
) && (bc
< NDADDR
)); bc
++) {
856 if (dp
->di_db
[bc
] == 0) {
862 * Determine our data block allocation needs. We always need to
863 * allocate at least one data block. We may need a second, the
864 * indirect block itself.
870 if (nxtbn
<= NDADDR
) {
872 * Still in direct blocks. Check for the unlikely
873 * case where the last block is a frag rather than
874 * a full block. This would only happen if someone had
875 * created a file in lost+found, and then that caused
876 * the dynamic directory shrinking capabilities of ufs
879 * Note that we test nxtbn <= NDADDR, as it's the
880 * next block (i.e., one greater than the current/
881 * actual block being examined).
883 lffragsz
= dp
->di_size
% sblock
.fs_bsize
;
886 if (nxtbn
>= NDADDR
&& !lffragsz
) {
887 n
= sblock
.fs_bsize
/ sizeof (daddr32_t
);
888 nxtibn
= nxtbn
- NDADDR
;
890 * Only go one level of indirection
896 * First indirect block means we need to pick up
897 * the actual indirect pointer block as well.
904 * Allocate all the new blocks we need.
906 if ((newblk
[0] = allocblk(sblock
.fs_frag
)) == 0) {
911 if ((newblk
[1] = allocblk(sblock
.fs_frag
)) == 0) {
918 * Take care of the block that will hold new directory entries.
919 * This one is always allocated.
921 bp
[0] = getdirblk(newblk
[0], (size_t)sblock
.fs_bsize
);
928 * Preserve the partially-populated existing directory.
930 bpback
= getdirblk(dp
->di_db
[nxtbn
- 1],
931 (size_t)dblksize(&sblock
, dp
, nxtbn
- 1));
932 if (!bpback
->b_errs
) {
933 (void) memmove(bp
[0]->b_un
.b_buf
, bpback
->b_un
.b_buf
,
939 * Initialize the new fragments. lffragsz is zero if this
940 * is a completely-new block.
942 for (cp
= &(bp
[0]->b_un
.b_buf
[lffragsz
]);
943 cp
< &(bp
[0]->b_un
.b_buf
[sblock
.fs_bsize
]);
945 (void) memmove(cp
, (char *)&emptydir
,
951 * If we allocated the indirect block, zero it out. Otherwise
952 * read it in if we're using one.
955 bp
[1] = getdatablk(newblk
[1], (size_t)sblock
.fs_bsize
);
959 (void) memset(bp
[1]->b_un
.b_buf
, 0, sblock
.fs_bsize
);
961 } else if (nxtibn
>= 0) {
962 /* Check that the indirect block pointer looks okay */
963 if (dp
->di_ib
[0] == 0) {
966 bp
[1] = getdatablk(dp
->di_ib
[0], (size_t)sblock
.fs_bsize
);
971 for (bc
= 0; ((bc
< nxtibn
) && (bc
< n
)); bc
++) {
972 /* LINTED pointer cast alignment */
973 if (((daddr32_t
*)bp
[1]->b_un
.b_buf
)[bc
] == 0) {
980 * Since the filesystem's consistency isn't affected by
981 * whether or not we actually do the expansion, iscorrupt
982 * is left alone for any of the approval paths.
984 pwarn("NO SPACE LEFT IN %s", name
);
985 if (!preen
&& (reply("EXPAND") == 0))
989 * Now that everything we need is gathered up and the
990 * necessary approvals acquired, we can make our provisional
996 * We've saved the data from the old end fragment(s) in
997 * our new block, so we can just swap the new one in.
998 * Make sure the size reflects the expansion of the
999 * final fragments/block.
1001 frag2blks
= roundup(lffragsz
, sblock
.fs_fsize
);
1002 freeblk(ino
, dp
->di_db
[nxtbn
- 1],
1003 frag2blks
/ sblock
.fs_fsize
);
1004 frag2blks
= btodb(frag2blks
);
1005 dp
->di_size
-= (uoff_t
)lffragsz
;
1006 dp
->di_blocks
= dp
->di_blocks
- frag2blks
;
1007 dp
->di_db
[nxtbn
- 1] = newblk
[0];
1008 dp
->di_size
+= (uoff_t
)sblock
.fs_bsize
;
1009 dp
->di_blocks
+= btodb(sblock
.fs_bsize
);
1016 * Full-block addition's much easier. It's just an append.
1018 dp
->di_size
+= (uoff_t
)sblock
.fs_bsize
;
1019 dp
->di_blocks
+= btodb(sblock
.fs_bsize
);
1021 dp
->di_blocks
+= btodb(sblock
.fs_bsize
);
1027 * Still in direct blocks
1029 dp
->di_db
[nxtbn
] = newblk
[0];
1032 * Last indirect is always going to point at the
1033 * new directory buffer
1036 dp
->di_ib
[0] = newblk
[1];
1037 /* LINTED pointer case alignment */
1038 ((daddr32_t
*)bp
[1]->b_un
.b_buf
)[nxtibn
] = newblk
[0];
1043 (void) printf(" (EXPANDED)\n");
1049 for (f
= 0; f
< c
; f
++)
1050 freeblk(ino
, newblk
[f
], sblock
.fs_frag
);
1053 * bp[0] is handled by the directory cache's auto-release.
1062 newdir(fsck_ino_t parent
, fsck_ino_t request
, int mode
, caddr_t name
)
1068 * This function creates a new directory and populates it with
1069 * "." and "..", then links to it as NAME in PARENT.
1071 dino
= allocdir(parent
, request
, mode
, 1);
1073 getpathname(pname
, parent
, parent
);
1074 name
= mkuniqname(name
, pname
, parent
, dino
);
1076 * We don't touch numdirs, because it's just a cache of
1077 * what the filesystem claimed originally and is used
1078 * to calculate hash keys.
1080 if (makeentry(parent
, dino
, name
) == 0) {
1081 freedir(dino
, parent
);
1090 * Replace whatever NAME refers to in PARENT with a new directory.
1091 * Note that if the old inode REQUEST is a directory, all of its
1092 * contents will be freed and reaped.
1095 reallocdir(fsck_ino_t parent
, fsck_ino_t request
, int mode
, caddr_t name
)
1100 if ((request
!= 0) && (statemap
[request
] != USTATE
))
1101 freeino(request
, TI_PARENT
);
1103 newino
= allocdir(parent
, request
, mode
, 0);
1105 retval
= changeino(parent
, name
, newino
);
1106 if ((retval
& ALTERED
) == 0) {
1108 * No change made, so name doesn't exist, so
1109 * unwind allocation rather than leak it.
1111 freedir(newino
, parent
);
1120 * allocate a new directory
1123 allocdir(fsck_ino_t parent
, fsck_ino_t request
, int mode
, int update_parent
)
1130 struct inoinfo
*inp
;
1131 struct inodesc idesc
;
1132 struct dirtemplate
*dirp
;
1134 ino
= allocino(request
, IFDIR
|mode
);
1138 dirp
->dot_ino
= ino
;
1139 dirp
->dotdot_ino
= parent
;
1141 bp
= getdirblk(dp
->di_db
[0], (size_t)sblock
.fs_fsize
);
1143 freeino(ino
, TI_PARENT
);
1146 (void) memmove(bp
->b_un
.b_buf
, (void *)dirp
,
1147 sizeof (struct dirtemplate
));
1148 for (cp
= &bp
->b_un
.b_buf
[DIRBLKSIZ
];
1149 cp
< &bp
->b_un
.b_buf
[sblock
.fs_fsize
];
1151 (void) memmove(cp
, (void *)&emptydir
, sizeof (emptydir
));
1155 if (!inocached(ino
)) {
1159 * re-using an old directory inode
1161 inp
= getinoinfo(ino
);
1164 errexit("allocdir got NULL from getinoinfo "
1165 "for existing entry I=%d\n",
1169 init_inoinfo(inp
, dp
, ino
);
1170 inp
->i_parent
= parent
;
1171 inp
->i_dotdot
= parent
;
1176 * Short-circuit all the dancing around below if it's the
1177 * root inode. The net effect's the same.
1179 if (ino
== UFSROOTINO
) {
1180 TRACK_LNCNTP(ino
, lncntp
[ino
] = dp
->di_nlink
);
1188 * We never create attribute directories, which can have
1189 * non-directory parents. So, the parent of the directory
1190 * we're creating must itself be a directory.
1192 if (!INO_IS_DVALID(parent
)) {
1193 freeino(ino
, TI_PARENT
);
1198 * Make sure the parent can handle another link.
1199 * Since we might only update one version of the
1200 * count (disk versus in-memory), we have to check both.
1202 LINK_RANGE(flow
, lncntp
[parent
], -1);
1204 LINK_RANGE(flow
, (int)dp
->di_nlink
, 1);
1207 LINK_CLEAR(flow
, parent
, dp
->di_mode
, &idesc
);
1208 if (statemap
[parent
] == USTATE
) {
1210 * No parent any more, so bail out. Callers
1211 * are expected to handle this possibility.
1212 * Since most just throw up their hands if
1213 * we return 0, this just happens to work.
1215 freeino(ino
, TI_PARENT
);
1221 * We've created a directory with two entries, "." and "..",
1222 * and a link count of two ("." and one from its parent). If
1223 * the parent's not been scanned yet, which means this inode
1224 * will get scanned later as well, then make our in-core count
1225 * match what we pushed out to disk. Similarly, update the
1226 * parent. On the other hand, if the parent's already been
1227 * looked at (statemap[ino] == DFOUND), the discrepancy
1228 * between lncntp[] and di_nlink will be noted later, with
1229 * appropriate reporting and propagation, in pass2.
1231 * We're explicitly skipping where the parent was DZLINK or
1232 * DFOUND. If it has zero links, it can't be gotten to, so
1233 * we want a discrepancy set up that will be caught in pass2.
1234 * DFOUND was discussed above.
1236 * Regarding the claim of a link from the parent: we've not
1237 * done anything to create such a link here. We depend on the
1238 * semantics of our callers attaching the inode we return to
1239 * an existing entry in the directory or creating the entry
1240 * themselves, but in either case, not modifying the link
1243 * Note that setting lncntp[ino] to zero means that both claimed
1244 * links have been ``found''.
1246 statemap
[ino
] = statemap
[parent
];
1247 if (INO_IS_DVALID(parent
)) {
1248 TRACK_LNCNTP(ino
, lncntp
[ino
] = 0);
1249 TRACK_LNCNTP(parent
, lncntp
[parent
]--);
1251 dp
= ginode(parent
);
1258 * free a directory inode
1261 freedir(fsck_ino_t ino
, fsck_ino_t parent
)
1263 struct inoinfo
*iip
;
1265 if (ino
!= parent
) {
1267 * Make sure that the desired parent gets a link
1268 * count update from freeino()/truncino(). If
1269 * we can't look it up, then it's not really a
1270 * directory, so there's nothing to worry about.
1272 iip
= getinoinfo(ino
);
1274 iip
->i_parent
= parent
;
1276 freeino(ino
, TI_PARENT
);
1280 * generate a temporary name for use in the lost+found directory.
1283 lftempname(char *bufp
, fsck_ino_t ino
)
1290 for (in
= maxino
; in
> 0; in
/= 10)
1293 /* LINTED difference will not overflow an int */
1295 if ((namlen
> BUFSIZ
) || (namlen
> MAXPATHLEN
)) {
1296 errexit("buffer overflow in lftempname()\n");
1301 *--cp
= (in
% 10) + '0';
1308 * Get a directory block.
1309 * Insure that it is held until another is requested.
1311 * Our callers are expected to check for errors and/or be
1312 * prepared to handle blocks of zeros in the middle of a
1315 static struct bufarea
*
1316 getdirblk(daddr32_t blkno
, size_t size
)
1321 pdirbp
= getdatablk(blkno
, size
);
1326 * Create a unique name for INODE to be created in directory PARENT.
1327 * Use NAME if it is provided (non-NULL) and doesn't already exist.
1328 * Returning NULL indicates no unique name could be generated.
1330 * If we were given a name, and it conflicts with an existing
1331 * entry, use our usual temp name instead. Without this check,
1332 * we could end up creating duplicate entries for multiple
1333 * orphaned directories in lost+found with the same name (but
1334 * different parents). Of course, our usual name might already
1335 * be in use as well, so be paranoid.
1337 * We could do something like keep tacking something onto the
1338 * end of tempname until we come up with something that's not
1339 * in use, but that has liabilities as well. This is a
1340 * sufficiently rare case that it's not worth going that
1344 mkuniqname(caddr_t name
, caddr_t pname
, fsck_ino_t parent
, fsck_ino_t inode
)
1349 struct inodesc idesc
;
1350 static char tempname
[BUFSIZ
];
1352 lftempname(tempname
, inode
);
1353 if ((name
!= NULL
) &&
1354 (lookup_named_ino(parent
, name
) != 0)) {
1359 * No name given, or it wasn't unique.
1362 if ((oldino
= lookup_named_ino(parent
, name
)) != 0) {
1364 "Name ``%s'' for inode %d already exists in %s \n",
1365 name
, oldino
, pname
);
1366 if (reply("REMOVE OLD ENTRY") == 0) {
1367 if (parent
== lfdir
)
1369 "Could not reconnect inode %d\n\n",
1373 "Could not create entry for %d\n\n",
1378 (void) changeino(parent
, name
, inode
);
1379 LINK_RANGE(flow_msg
, lncntp
[oldino
], 1);
1380 if (flow_msg
!= NULL
) {
1382 * Do a best-effort, but if we're not
1383 * allowed to do the clear, the fs is
1384 * corrupt in any case, so just carry on.
1386 dp
= ginode(oldino
);
1387 LINK_CLEAR(flow_msg
, oldino
, dp
->di_mode
,
1389 if (statemap
[oldino
] != USTATE
)
1392 TRACK_LNCNTP(oldino
, lncntp
[oldino
]++);