xref: /netbsd-src/sbin/fsck_ffs/setup.c (revision b1c86f5f087524e68db12794ee9c3e3da1ab17a0)
1 /*	$NetBSD: setup.c,v 1.90 2010/01/31 16:04:35 mlelstv Exp $	*/
2 
3 /*
4  * Copyright (c) 1980, 1986, 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 
32 #include <sys/cdefs.h>
33 #ifndef lint
34 #if 0
35 static char sccsid[] = "@(#)setup.c	8.10 (Berkeley) 5/9/95";
36 #else
37 __RCSID("$NetBSD: setup.c,v 1.90 2010/01/31 16:04:35 mlelstv Exp $");
38 #endif
39 #endif /* not lint */
40 
41 #include <sys/param.h>
42 #include <sys/time.h>
43 #include <sys/stat.h>
44 #include <sys/ioctl.h>
45 #include <sys/file.h>
46 #include <sys/disk.h>
47 
48 #include <ufs/ufs/dinode.h>
49 #include <ufs/ufs/dir.h>
50 #include <ufs/ufs/ufs_bswap.h>
51 #include <ufs/ffs/fs.h>
52 #include <ufs/ffs/ffs_extern.h>
53 
54 #include <ctype.h>
55 #include <err.h>
56 #include <errno.h>
57 #include <stdio.h>
58 #include <stdlib.h>
59 #include <string.h>
60 
61 #include "fsck.h"
62 #include "extern.h"
63 #include "fsutil.h"
64 #include "partutil.h"
65 #include "exitvalues.h"
66 
67 #define POWEROF2(num)	(((num) & ((num) - 1)) == 0)
68 
69 static void badsb(int, const char *);
70 static int calcsb(const char *, int, struct fs *);
71 static int readsb(int);
72 static int readappleufs(void);
73 
74 int16_t sblkpostbl[256];
75 
76 /*
77  * Read in a superblock finding an alternate if necessary.
78  * Return 1 if successful, 0 if unsuccessful, -1 if filesystem
79  * is already clean (preen mode only).
80  */
81 int
82 setup(const char *dev, const char *origdev)
83 {
84 	long cg, size, asked, i, j;
85 	long bmapsize;
86 	struct disk_geom geo;
87 	struct dkwedge_info dkw;
88 	off_t sizepb;
89 	struct stat statb;
90 	struct fs proto;
91 	int doskipclean;
92 	u_int64_t maxfilesize;
93 	struct csum *ccsp;
94 	int fd;
95 
96 	havesb = 0;
97 	fswritefd = -1;
98 	doskipclean = skipclean;
99 	if (stat(dev, &statb) < 0) {
100 		printf("Can't stat %s: %s\n", dev, strerror(errno));
101 		return (0);
102 	}
103 	if (!forceimage && !S_ISCHR(statb.st_mode)) {
104 		pfatal("%s is not a character device", dev);
105 		if (reply("CONTINUE") == 0)
106 			return (0);
107 	}
108 	if ((fsreadfd = open(dev, O_RDONLY)) < 0) {
109 		printf("Can't open %s: %s\n", dev, strerror(errno));
110 		return (0);
111 	}
112 	if (nflag || (fswritefd = open(dev, O_WRONLY)) < 0) {
113 		fswritefd = -1;
114 		if (preen)
115 			pfatal("NO WRITE ACCESS");
116 		printf("** %s (NO WRITE)\n", dev);
117 		quiet = 0;
118 	} else
119 		if (!preen && !quiet)
120 			printf("** %s\n", dev);
121 	fsmodified = 0;
122 	lfdir = 0;
123 	initbarea(&sblk);
124 	initbarea(&asblk);
125 	sblk.b_un.b_buf = malloc(SBLOCKSIZE);
126 	sblock = malloc(SBLOCKSIZE);
127 	asblk.b_un.b_buf = malloc(SBLOCKSIZE);
128 	altsblock = malloc(SBLOCKSIZE);
129 	if (sblk.b_un.b_buf == NULL || asblk.b_un.b_buf == NULL ||
130 		sblock == NULL || altsblock == NULL)
131 		errexit("Cannot allocate space for superblock");
132 	if (strcmp(dev, origdev) && !forceimage) {
133 		/*
134 		 * dev isn't the original fs (for example it's a snapshot)
135 		 * do getdiskinfo on the original device
136 		 */
137 		 fd = open(origdev, O_RDONLY);
138 		 if (fd < 0) {
139 			warn("Can't open %s", origdev);
140 			return (0);
141 		}
142 	} else {
143 		fd = fsreadfd;
144 	}
145 	if (!forceimage && getdiskinfo(origdev, fd, NULL, &geo, &dkw) != -1)
146 		dev_bsize = secsize = geo.dg_secsize;
147 	else
148 		dev_bsize = secsize = DEV_BSIZE;
149 	/*
150 	 * Read in the superblock, looking for alternates if necessary
151 	 */
152 	if (readsb(1) == 0) {
153 		if (bflag || preen || forceimage ||
154 		    calcsb(dev, fsreadfd, &proto) == 0)
155 			return(0);
156 		if (reply("LOOK FOR ALTERNATE SUPERBLOCKS") == 0)
157 			return (0);
158 		for (cg = 0; cg < proto.fs_ncg; cg++) {
159 			bflag = fsbtodb(&proto, cgsblock(&proto, cg));
160 			if (readsb(0) != 0)
161 				break;
162 		}
163 		if (cg >= proto.fs_ncg) {
164 			printf("%s %s\n%s %s\n%s %s\n",
165 				"SEARCH FOR ALTERNATE SUPER-BLOCK",
166 				"FAILED. YOU MUST USE THE",
167 				"-b OPTION TO fsck_ffs TO SPECIFY THE",
168 				"LOCATION OF AN ALTERNATE",
169 				"SUPER-BLOCK TO SUPPLY NEEDED",
170 				"INFORMATION; SEE fsck_ffs(8).");
171 			return(0);
172 		}
173 		doskipclean = 0;
174 		pwarn("USING ALTERNATE SUPERBLOCK AT %d\n", bflag);
175 	}
176 	/* ffs_superblock_layout() == 2 */
177 	if (sblock->fs_magic != FS_UFS1_MAGIC ||
178 	    (sblock->fs_old_flags & FS_FLAGS_UPDATED) != 0) {
179 		/* can have WAPBL */
180 		if (check_wapbl() != 0) {
181 			doskipclean = 0;
182 		}
183 		if (sblock->fs_flags & FS_DOWAPBL) {
184 			if (preen && skipclean) {
185 				if (!quiet)
186 					pwarn("file system is journaled; "
187 					    "not checking\n");
188 				return (-1);
189 			}
190 			if (!quiet)
191 				pwarn("** File system is journaled; "
192 				    "replaying journal\n");
193 			replay_wapbl();
194 			doskipclean = 0;
195 			sblock->fs_flags &= ~FS_DOWAPBL;
196 			sbdirty();
197 			/* Although we may have updated the superblock from
198 			 * the journal, we are still going to do a full check,
199 			 * so we don't bother to re-read the superblock from
200 			 * the journal.
201 			 * XXX, instead we could re-read the superblock and
202 			 * then not force doskipclean = 0
203 			 */
204 		}
205 	}
206 	if (debug)
207 		printf("clean = %d\n", sblock->fs_clean);
208 	if (doswap)
209 		doskipclean = 0;
210 	if (sblock->fs_clean & FS_ISCLEAN) {
211 		if (doskipclean) {
212 			if (!quiet)
213 				pwarn("%sile system is clean; not checking\n",
214 				    preen ? "f" : "** F");
215 			return (-1);
216 		}
217 		if (!preen && !doswap)
218 			pwarn("** File system is already clean\n");
219 	}
220 	maxfsblock = sblock->fs_size;
221 	maxino = sblock->fs_ncg * sblock->fs_ipg;
222 	sizepb = sblock->fs_bsize;
223 	maxfilesize = sblock->fs_bsize * NDADDR - 1;
224 	for (i = 0; i < NIADDR; i++) {
225 		sizepb *= NINDIR(sblock);
226 		maxfilesize += sizepb;
227 	}
228 	if ((!is_ufs2 && cvtlevel >= 4) &&
229 			(sblock->fs_old_flags & FS_FLAGS_UPDATED) == 0) {
230 		if (preen)
231 			pwarn("CONVERTING TO NEW SUPERBLOCK LAYOUT\n");
232 		else if (!reply("CONVERT TO NEW SUPERBLOCK LAYOUT"))
233 			return(0);
234 		sblock->fs_old_flags |= FS_FLAGS_UPDATED;
235 		/* Disable the postbl tables */
236 		sblock->fs_old_cpc = 0;
237 		sblock->fs_old_nrpos = 1;
238 		sblock->fs_old_trackskew = 0;
239 		/* The other fields have already been updated by
240 		 * sb_oldfscompat_read
241 		 */
242 		sbdirty();
243 	}
244 	if (!is_ufs2 && cvtlevel == 3 &&
245 	    (sblock->fs_old_flags & FS_FLAGS_UPDATED)) {
246 		if (preen)
247 			pwarn("DOWNGRADING TO OLD SUPERBLOCK LAYOUT\n");
248 		else if (!reply("DOWNGRADE TO OLD SUPERBLOCK LAYOUT"))
249 			return(0);
250 		sblock->fs_old_flags &= ~FS_FLAGS_UPDATED;
251 		sb_oldfscompat_write(sblock, sblock);
252 		sblock->fs_old_flags &= ~FS_FLAGS_UPDATED; /* just in case */
253 		/* Leave postbl tables disabled, but blank its superblock region anyway */
254 		sblock->fs_old_postblformat = FS_DYNAMICPOSTBLFMT;
255 		sblock->fs_old_cpc = 0;
256 		sblock->fs_old_nrpos = 1;
257 		sblock->fs_old_trackskew = 0;
258 		memset(&sblock->fs_old_postbl_start, 0xff, 256);
259 		sb_oldfscompat_read(sblock, &sblocksave);
260 		sbdirty();
261 	}
262 	/*
263 	 * Check and potentially fix certain fields in the super block.
264 	 */
265 	if (sblock->fs_flags & ~(FS_KNOWN_FLAGS)) {
266 		pfatal("UNKNOWN FLAGS=0x%08x IN SUPERBLOCK", sblock->fs_flags);
267 		if (reply("CLEAR") == 1) {
268 			sblock->fs_flags &= FS_KNOWN_FLAGS;
269 			sbdirty();
270 		}
271 	}
272 	if (sblock->fs_optim != FS_OPTTIME && sblock->fs_optim != FS_OPTSPACE) {
273 		pfatal("UNDEFINED OPTIMIZATION IN SUPERBLOCK");
274 		if (reply("SET TO DEFAULT") == 1) {
275 			sblock->fs_optim = FS_OPTTIME;
276 			sbdirty();
277 		}
278 	}
279 	if ((sblock->fs_minfree < 0 || sblock->fs_minfree > 99)) {
280 		pfatal("IMPOSSIBLE MINFREE=%d IN SUPERBLOCK",
281 			sblock->fs_minfree);
282 		if (reply("SET TO DEFAULT") == 1) {
283 			sblock->fs_minfree = 10;
284 			sbdirty();
285 		}
286 	}
287 	if (!is_ufs2 && sblock->fs_old_postblformat != FS_42POSTBLFMT &&
288 	    (sblock->fs_old_interleave < 1 ||
289 	    sblock->fs_old_interleave > sblock->fs_old_nsect)) {
290 		pwarn("IMPOSSIBLE INTERLEAVE=%d IN SUPERBLOCK",
291 			sblock->fs_old_interleave);
292 		sblock->fs_old_interleave = 1;
293 		if (preen)
294 			printf(" (FIXED)\n");
295 		if (preen || reply("SET TO DEFAULT") == 1) {
296 			sbdirty();
297 			dirty(&asblk);
298 		}
299 	}
300 	if (!is_ufs2 && sblock->fs_old_postblformat != FS_42POSTBLFMT &&
301 	    (sblock->fs_old_npsect < sblock->fs_old_nsect ||
302 	    sblock->fs_old_npsect > sblock->fs_old_nsect*2)) {
303 		pwarn("IMPOSSIBLE NPSECT=%d IN SUPERBLOCK",
304 			sblock->fs_old_npsect);
305 		sblock->fs_old_npsect = sblock->fs_old_nsect;
306 		if (preen)
307 			printf(" (FIXED)\n");
308 		if (preen || reply("SET TO DEFAULT") == 1) {
309 			sbdirty();
310 			dirty(&asblk);
311 		}
312 	}
313 	if (sblock->fs_bmask != ~(sblock->fs_bsize - 1)) {
314 		pwarn("INCORRECT BMASK=0x%x IN SUPERBLOCK",
315 			sblock->fs_bmask);
316 		sblock->fs_bmask = ~(sblock->fs_bsize - 1);
317 		if (preen)
318 			printf(" (FIXED)\n");
319 		if (preen || reply("FIX") == 1) {
320 			sbdirty();
321 			dirty(&asblk);
322 		}
323 	}
324 	if (sblock->fs_fmask != ~(sblock->fs_fsize - 1)) {
325 		pwarn("INCORRECT FMASK=0x%x IN SUPERBLOCK",
326 			sblock->fs_fmask);
327 		sblock->fs_fmask = ~(sblock->fs_fsize - 1);
328 		if (preen)
329 			printf(" (FIXED)\n");
330 		if (preen || reply("FIX") == 1) {
331 			sbdirty();
332 			dirty(&asblk);
333 		}
334 	}
335 	if (is_ufs2 || sblock->fs_old_inodefmt >= FS_44INODEFMT) {
336 		if (sblock->fs_maxfilesize != maxfilesize) {
337 			pwarn("INCORRECT MAXFILESIZE=%lld IN SUPERBLOCK",
338 			    (unsigned long long)sblock->fs_maxfilesize);
339 			sblock->fs_maxfilesize = maxfilesize;
340 			if (preen)
341 				printf(" (FIXED)\n");
342 			if (preen || reply("FIX") == 1) {
343 				sbdirty();
344 				dirty(&asblk);
345 			}
346 		}
347 		if ((is_ufs2 && sblock->fs_maxsymlinklen != MAXSYMLINKLEN_UFS2)
348 		    ||
349 		   (!is_ufs2 && sblock->fs_maxsymlinklen != MAXSYMLINKLEN_UFS1))
350 		    {
351 			pwarn("INCORRECT MAXSYMLINKLEN=%d IN SUPERBLOCK",
352 				sblock->fs_maxsymlinklen);
353 			sblock->fs_maxsymlinklen = is_ufs2 ?
354 			    MAXSYMLINKLEN_UFS2 : MAXSYMLINKLEN_UFS1;
355 			if (preen)
356 				printf(" (FIXED)\n");
357 			if (preen || reply("FIX") == 1) {
358 				sbdirty();
359 				dirty(&asblk);
360 			}
361 		}
362 		if (sblock->fs_qbmask != ~sblock->fs_bmask) {
363 			pwarn("INCORRECT QBMASK=%#llx IN SUPERBLOCK",
364 			    (unsigned long long)sblock->fs_qbmask);
365 			sblock->fs_qbmask = ~sblock->fs_bmask;
366 			if (preen)
367 				printf(" (FIXED)\n");
368 			if (preen || reply("FIX") == 1) {
369 				sbdirty();
370 				dirty(&asblk);
371 			}
372 		}
373 		if (sblock->fs_qfmask != ~sblock->fs_fmask) {
374 			pwarn("INCORRECT QFMASK=%#llx IN SUPERBLOCK",
375 			    (unsigned long long)sblock->fs_qfmask);
376 			sblock->fs_qfmask = ~sblock->fs_fmask;
377 			if (preen)
378 				printf(" (FIXED)\n");
379 			if (preen || reply("FIX") == 1) {
380 				sbdirty();
381 				dirty(&asblk);
382 			}
383 		}
384 		newinofmt = 1;
385 	} else {
386 		sblock->fs_qbmask = ~sblock->fs_bmask;
387 		sblock->fs_qfmask = ~sblock->fs_fmask;
388 		newinofmt = 0;
389 	}
390 	/*
391 	 * Convert to new inode format.
392 	 */
393 	if (!is_ufs2 && cvtlevel >= 2 &&
394 	    sblock->fs_old_inodefmt < FS_44INODEFMT) {
395 		if (preen)
396 			pwarn("CONVERTING TO NEW INODE FORMAT\n");
397 		else if (!reply("CONVERT TO NEW INODE FORMAT"))
398 			return(0);
399 		doinglevel2++;
400 		sblock->fs_old_inodefmt = FS_44INODEFMT;
401 		sblock->fs_maxfilesize = maxfilesize;
402 		sblock->fs_maxsymlinklen = MAXSYMLINKLEN_UFS1;
403 		sblock->fs_qbmask = ~sblock->fs_bmask;
404 		sblock->fs_qfmask = ~sblock->fs_fmask;
405 		sbdirty();
406 		dirty(&asblk);
407 	}
408 	/*
409 	 * Convert to new cylinder group format.
410 	 */
411 	if (!is_ufs2 && cvtlevel >= 1 &&
412 	    sblock->fs_old_postblformat == FS_42POSTBLFMT) {
413 		if (preen)
414 			pwarn("CONVERTING TO NEW CYLINDER GROUP FORMAT\n");
415 		else if (!reply("CONVERT TO NEW CYLINDER GROUP FORMAT"))
416 			return(0);
417 		doinglevel1++;
418 		sblock->fs_old_postblformat = FS_DYNAMICPOSTBLFMT;
419 		sblock->fs_old_nrpos = 8;
420 		sblock->fs_old_postbloff =
421 		    (char *)(&sblock->fs_old_postbl_start) -
422 		    (char *)(&sblock->fs_firstfield);
423 		sblock->fs_old_rotbloff =
424 				(char *)(&sblock->fs_magic+1) -
425 				(char *)(&sblock->fs_firstfield);
426 		sblock->fs_cgsize =
427 			fragroundup(sblock, CGSIZE(sblock));
428 		sbdirty();
429 		dirty(&asblk);
430 	}
431 	if (asblk.b_dirty && !bflag) {
432 		memmove(sblk.b_un.b_fs, sblock, SBLOCKSIZE);
433 		sb_oldfscompat_write(sblk.b_un.b_fs, sblocksave);
434 		if (needswap)
435 			ffs_sb_swap(sblk.b_un.b_fs, sblk.b_un.b_fs);
436 		memmove(asblk.b_un.b_fs, sblk.b_un.b_fs, (size_t)sblock->fs_sbsize);
437 		flush(fswritefd, &asblk);
438 	}
439 	/*
440 	 * read in the summary info.
441 	 */
442 	asked = 0;
443 	sblock->fs_csp = (struct csum *)calloc(1, sblock->fs_cssize);
444 	if (sblock->fs_csp == NULL) {
445 		pwarn("cannot alloc %u bytes for summary info\n",
446 		    sblock->fs_cssize);
447 		goto badsblabel;
448 	}
449 	for (i = 0, j = 0; i < sblock->fs_cssize; i += sblock->fs_bsize, j++) {
450 		size = sblock->fs_cssize - i < sblock->fs_bsize ?
451 		    sblock->fs_cssize - i : sblock->fs_bsize;
452 		ccsp = (struct csum *)((char *)sblock->fs_csp + i);
453 		if (bread(fsreadfd, (char *)ccsp,
454 		    fsbtodb(sblock, sblock->fs_csaddr + j * sblock->fs_frag),
455 		    size) != 0 && !asked) {
456 			pfatal("BAD SUMMARY INFORMATION");
457 			if (reply("CONTINUE") == 0) {
458 				markclean = 0;
459 				exit(FSCK_EXIT_CHECK_FAILED);
460 			}
461 			asked++;
462 		}
463 		if (doswap) {
464 			ffs_csum_swap(ccsp, ccsp, size);
465 			bwrite(fswritefd, (char *)ccsp,
466 			    fsbtodb(sblock,
467 				sblock->fs_csaddr + j * sblock->fs_frag),
468 			    size);
469 		}
470 		if (needswap)
471 			ffs_csum_swap(ccsp, ccsp, size);
472 	}
473 	/*
474 	 * allocate and initialize the necessary maps
475 	 */
476 	bmapsize = roundup(howmany(maxfsblock, NBBY), sizeof(int16_t));
477 	blockmap = calloc((unsigned)bmapsize, sizeof (char));
478 	if (blockmap == NULL) {
479 		pwarn("cannot alloc %u bytes for blockmap\n",
480 		    (unsigned)bmapsize);
481 		goto badsblabel;
482 	}
483 	inostathead = calloc((unsigned)(sblock->fs_ncg),
484 	    sizeof(struct inostatlist));
485 	if (inostathead == NULL) {
486 		pwarn("cannot alloc %u bytes for inostathead\n",
487 		    (unsigned)(sizeof(struct inostatlist) * (sblock->fs_ncg)));
488 		goto badsblabel;
489 	}
490 	/*
491 	 * cs_ndir may be inaccurate, particularly if we're using the -b
492 	 * option, so set a minimum to prevent bogus subdirectory reconnects
493 	 * and really inefficient directory scans.
494 	 * Also set a maximum in case the value is too large.
495 	 */
496 	numdirs = sblock->fs_cstotal.cs_ndir;
497 	if (numdirs < 1024)
498 		numdirs = 1024;
499 	if (numdirs > maxino + 1)
500 		numdirs = maxino + 1;
501 	dirhash = numdirs;
502 	inplast = 0;
503 	listmax = numdirs + 10;
504 	inpsort = (struct inoinfo **)calloc((unsigned)listmax,
505 	    sizeof(struct inoinfo *));
506 	inphead = (struct inoinfo **)calloc((unsigned)numdirs,
507 	    sizeof(struct inoinfo *));
508 	if (inpsort == NULL || inphead == NULL) {
509 		pwarn("cannot alloc %u bytes for inphead\n",
510 		    (unsigned)(numdirs * sizeof(struct inoinfo *)));
511 		goto badsblabel;
512 	}
513 	cgrp = malloc(sblock->fs_cgsize);
514 	if (cgrp == NULL) {
515 		pwarn("cannot alloc %u bytes for cylinder group\n",
516 		    sblock->fs_cgsize);
517 		goto badsblabel;
518 	}
519 	bufinit();
520 	if (sblock->fs_flags & FS_DOSOFTDEP)
521 		usedsoftdep = 1;
522 	else
523 		usedsoftdep = 0;
524 
525 	if (!forceimage && dkw.dkw_parent[0])
526 		if (strcmp(dkw.dkw_ptype, DKW_PTYPE_APPLEUFS) == 0)
527 			isappleufs = 1;
528 
529 	if (readappleufs())
530 		isappleufs = 1;
531 
532 	dirblksiz = DIRBLKSIZ;
533 	if (isappleufs)
534 		dirblksiz = APPLEUFS_DIRBLKSIZ;
535 
536 	if (debug)
537 		printf("isappleufs = %d, dirblksiz = %d\n", isappleufs, dirblksiz);
538 
539 	return (1);
540 
541 badsblabel:
542 	markclean=0;
543 	ckfini();
544 	return (0);
545 }
546 
547 static int
548 readappleufs(void)
549 {
550 	daddr_t label = APPLEUFS_LABEL_OFFSET / dev_bsize;
551 	struct appleufslabel *appleufs;
552 	int i;
553 
554 	/* XXX do we have to deal with APPLEUFS_LABEL_OFFSET not
555 	 * being block aligned (CD's?)
556 	 */
557 	if (APPLEUFS_LABEL_SIZE % dev_bsize != 0)
558 		return 0;
559 	if (bread(fsreadfd, (char *)appleufsblk.b_un.b_fs, label,
560 	    (long)APPLEUFS_LABEL_SIZE) != 0)
561 		return 0;
562 	appleufsblk.b_bno = label;
563 	appleufsblk.b_size = APPLEUFS_LABEL_SIZE;
564 
565 	appleufs = appleufsblk.b_un.b_appleufs;
566 
567 	if (ntohl(appleufs->ul_magic) != APPLEUFS_LABEL_MAGIC) {
568 		if (!isappleufs) {
569 			return 0;
570 		} else {
571 			pfatal("MISSING APPLEUFS VOLUME LABEL\n");
572 			if (reply("FIX") == 0) {
573 				return 1;
574 			}
575 			ffs_appleufs_set(appleufs, NULL, -1, 0);
576 			appleufsdirty();
577 		}
578 	}
579 
580 	if (ntohl(appleufs->ul_version) != APPLEUFS_LABEL_VERSION) {
581 		pwarn("INCORRECT APPLE UFS VERSION NUMBER (%d should be %d)",
582 			ntohl(appleufs->ul_version),APPLEUFS_LABEL_VERSION);
583 		if (preen) {
584 			printf(" (CORRECTED)\n");
585 		}
586 		if (preen || reply("CORRECT")) {
587 			appleufs->ul_version = htonl(APPLEUFS_LABEL_VERSION);
588 			appleufsdirty();
589 		}
590 	}
591 
592 	if (ntohs(appleufs->ul_namelen) > APPLEUFS_MAX_LABEL_NAME) {
593 		pwarn("APPLE UFS LABEL NAME TOO LONG");
594 		if (preen) {
595 			printf(" (TRUNCATED)\n");
596 		}
597 		if (preen || reply("TRUNCATE")) {
598 			appleufs->ul_namelen = htons(APPLEUFS_MAX_LABEL_NAME);
599 			appleufsdirty();
600 		}
601 	}
602 
603 	if (ntohs(appleufs->ul_namelen) == 0) {
604 		pwarn("MISSING APPLE UFS LABEL NAME");
605 		if (preen) {
606 			printf(" (FIXED)\n");
607 		}
608 		if (preen || reply("FIX")) {
609 			ffs_appleufs_set(appleufs, NULL, -1, 0);
610 			appleufsdirty();
611 		}
612 	}
613 
614 	/* Scan name for first illegal character */
615 	for (i=0;i<ntohs(appleufs->ul_namelen);i++) {
616 		if ((appleufs->ul_name[i] == '\0') ||
617 			(appleufs->ul_name[i] == ':') ||
618 			(appleufs->ul_name[i] == '/')) {
619 			pwarn("APPLE UFS LABEL NAME CONTAINS ILLEGAL CHARACTER");
620 			if (preen) {
621 				printf(" (TRUNCATED)\n");
622 			}
623 			if (preen || reply("TRUNCATE")) {
624 				appleufs->ul_namelen = i+1;
625 				appleufsdirty();
626 			}
627 			break;
628 		}
629 	}
630 
631 	/* Check the checksum last, because if anything else was wrong,
632 	 * then the checksum gets reset anyway.
633 	 */
634 	appleufs->ul_checksum = 0;
635 	appleufs->ul_checksum = ffs_appleufs_cksum(appleufs);
636 	if (appleufsblk.b_un.b_appleufs->ul_checksum != appleufs->ul_checksum) {
637 		pwarn("INVALID APPLE UFS CHECKSUM (%#04x should be %#04x)",
638 			appleufsblk.b_un.b_appleufs->ul_checksum, appleufs->ul_checksum);
639 		if (preen) {
640 			printf(" (CORRECTED)\n");
641 		}
642 		if (preen || reply("CORRECT")) {
643 			appleufsdirty();
644 		} else {
645 			/* put the incorrect checksum back in place */
646 			appleufs->ul_checksum = appleufsblk.b_un.b_appleufs->ul_checksum;
647 		}
648 	}
649 	return 1;
650 }
651 
652 /*
653  * Detect byte order. Return 0 if valid magic found, -1 otherwise.
654  */
655 static int
656 detect_byteorder(struct fs *fs, int sblockoff)
657 {
658 	if (sblockoff == SBLOCK_UFS2 && (fs->fs_magic == FS_UFS1_MAGIC ||
659 	    fs->fs_magic == bswap32(FS_UFS1_MAGIC)))
660 		/* Likely to be the first alternate of a fs with 64k blocks */
661 		return -1;
662 	if (fs->fs_magic == FS_UFS1_MAGIC || fs->fs_magic == FS_UFS2_MAGIC) {
663 		if (endian == 0 || BYTE_ORDER == endian) {
664 			needswap = 0;
665 			doswap = do_blkswap = do_dirswap = 0;
666 		} else {
667 			needswap = 1;
668 			doswap = do_blkswap = do_dirswap = 1;
669 		}
670 		return 0;
671 	} else if (fs->fs_magic == bswap32(FS_UFS1_MAGIC) ||
672 		   fs->fs_magic == bswap32(FS_UFS2_MAGIC)) {
673 		if (endian == 0 || BYTE_ORDER != endian) {
674 			needswap = 1;
675 			doswap = do_blkswap = do_dirswap = 0;
676 		} else {
677 			needswap = 0;
678 			doswap = do_blkswap = do_dirswap = 1;
679 		}
680 		return 0;
681 	}
682 	return -1;
683 }
684 
685 /*
686  * Possible superblock locations ordered from most to least likely.
687  */
688 static off_t sblock_try[] = SBLOCKSEARCH;
689 
690 /*
691  * Read in the super block and its summary info.
692  */
693 static int
694 readsb(int listerr)
695 {
696 	daddr_t super = 0;
697 	struct fs *fs;
698 	int i;
699 
700 	if (bflag) {
701 		super = bflag;
702 		if (bread(fsreadfd, (char *)sblk.b_un.b_fs, super,
703 		    (long)SBLOCKSIZE) != 0)
704 			return (0);
705 		fs = sblk.b_un.b_fs;
706 		if (detect_byteorder(fs, -1) < 0) {
707 			badsb(listerr, "MAGIC NUMBER WRONG");
708 			return (0);
709 		}
710 	} else {
711 		for (i = 0; sblock_try[i] != -1; i++) {
712 			super = sblock_try[i] / dev_bsize;
713 			if (bread(fsreadfd, (char *)sblk.b_un.b_fs,
714 			    super, (long)SBLOCKSIZE) != 0)
715 				continue;
716 			fs = sblk.b_un.b_fs;
717 			if (detect_byteorder(fs, sblock_try[i]) == 0)
718 				break;
719 		}
720 		if (sblock_try[i] == -1) {
721 			badsb(listerr, "CAN'T FIND SUPERBLOCK");
722 			return (0);
723 		}
724 	}
725 	if (doswap) {
726 		if (preen)
727 			errx(FSCK_EXIT_USAGE,
728 			    "Incompatible options -B and -p");
729 		if (nflag)
730 			errx(FSCK_EXIT_USAGE,
731 			    "Incompatible options -B and -n");
732 		if (endian == LITTLE_ENDIAN) {
733 			if (!reply("CONVERT TO LITTLE ENDIAN"))
734 				return 0;
735 		} else if (endian == BIG_ENDIAN) {
736 			if (!reply("CONVERT TO BIG ENDIAN"))
737 				return 0;
738 		} else
739 			pfatal("INTERNAL ERROR: unknown endian");
740 	}
741 	if (needswap)
742 		pwarn("** Swapped byte order\n");
743 	/* swap SB byte order if asked */
744 	if (doswap)
745 		ffs_sb_swap(sblk.b_un.b_fs, sblk.b_un.b_fs);
746 
747 	memmove(sblock, sblk.b_un.b_fs, SBLOCKSIZE);
748 	if (needswap)
749 		ffs_sb_swap(sblk.b_un.b_fs, sblock);
750 
751 	is_ufs2 = sblock->fs_magic == FS_UFS2_MAGIC;
752 
753 	/*
754 	 * run a few consistency checks of the super block
755 	 */
756 	if (sblock->fs_sbsize > SBLOCKSIZE)
757 		{ badsb(listerr, "SIZE PREPOSTEROUSLY LARGE"); return (0); }
758 	/*
759 	 * Compute block size that the filesystem is based on,
760 	 * according to fsbtodb, and adjust superblock block number
761 	 * so we can tell if this is an alternate later.
762 	 */
763 	super *= dev_bsize;
764 	dev_bsize = sblock->fs_fsize / fsbtodb(sblock, 1);
765 	sblk.b_bno = super / dev_bsize;
766 	sblk.b_size = SBLOCKSIZE;
767 	if (bflag)
768 		goto out;
769 	/*
770 	 * Set all possible fields that could differ, then do check
771 	 * of whole super block against an alternate super block->
772 	 * When an alternate super-block is specified this check is skipped.
773 	 */
774 	getblk(&asblk, cgsblock(sblock, sblock->fs_ncg - 1), sblock->fs_sbsize);
775 	if (asblk.b_errs)
776 		return (0);
777 	/* swap SB byte order if asked */
778 	if (doswap)
779 		ffs_sb_swap(asblk.b_un.b_fs, asblk.b_un.b_fs);
780 
781 	memmove(altsblock, asblk.b_un.b_fs, sblock->fs_sbsize);
782 	if (needswap)
783 		ffs_sb_swap(asblk.b_un.b_fs, altsblock);
784 	if (cmpsblks(sblock, altsblock)) {
785 		if (debug) {
786 			uint32_t *nlp, *olp, *endlp;
787 
788 			printf("superblock mismatches\n");
789 			nlp = (uint32_t *)altsblock;
790 			olp = (uint32_t *)sblock;
791 			endlp = olp + (sblock->fs_sbsize / sizeof *olp);
792 			for ( ; olp < endlp; olp++, nlp++) {
793 				if (*olp == *nlp)
794 					continue;
795 				printf("offset %#x, original 0x%08x, alternate "
796 				       "0x%08x\n",
797 				    (int)((uint8_t *)olp-(uint8_t *)sblock),
798 				    *olp, *nlp);
799 			}
800 		}
801 		badsb(listerr,
802 		"VALUES IN SUPER BLOCK DISAGREE WITH THOSE IN FIRST ALTERNATE");
803 /*
804 		return (0);
805 */
806 	}
807 out:
808 
809 	sb_oldfscompat_read(sblock, &sblocksave);
810 
811 	/* Now we know the SB is valid, we can write it back if needed */
812 	if (doswap) {
813 		sbdirty();
814 		dirty(&asblk);
815 	}
816 	havesb = 1;
817 	return (1);
818 }
819 
820 int
821 cmpsblks(const struct fs *sb, struct fs *asb)
822 {
823 	if (!is_ufs2 && ((sb->fs_old_flags & FS_FLAGS_UPDATED) == 0)) {
824 		if (sb->fs_old_postblformat < FS_DYNAMICPOSTBLFMT)
825 			return cmpsblks42(sb, asb);
826 		else
827 			return cmpsblks44(sb, asb);
828 	}
829 	if (asb->fs_sblkno != sb->fs_sblkno ||
830 	    asb->fs_cblkno != sb->fs_cblkno ||
831 	    asb->fs_iblkno != sb->fs_iblkno ||
832 	    asb->fs_dblkno != sb->fs_dblkno ||
833 	    asb->fs_ncg != sb->fs_ncg ||
834 	    asb->fs_bsize != sb->fs_bsize ||
835 	    asb->fs_fsize != sb->fs_fsize ||
836 	    asb->fs_frag != sb->fs_frag ||
837 	    asb->fs_bmask != sb->fs_bmask ||
838 	    asb->fs_fmask != sb->fs_fmask ||
839 	    asb->fs_bshift != sb->fs_bshift ||
840 	    asb->fs_fshift != sb->fs_fshift ||
841 	    asb->fs_fragshift != sb->fs_fragshift ||
842 	    asb->fs_fsbtodb != sb->fs_fsbtodb ||
843 	    asb->fs_sbsize != sb->fs_sbsize ||
844 	    asb->fs_nindir != sb->fs_nindir ||
845 	    asb->fs_inopb != sb->fs_inopb ||
846 	    asb->fs_cssize != sb->fs_cssize ||
847 	    asb->fs_ipg != sb->fs_ipg ||
848 	    asb->fs_fpg != sb->fs_fpg ||
849 	    asb->fs_magic != sb->fs_magic)
850 		return 1;
851 	return 0;
852 }
853 
854 /* BSD 4.2 performed the following superblock comparison
855  * It should correspond to FS_42POSTBLFMT
856  * (although note that in 4.2, the fs_old_postblformat
857  * field didn't exist and the corresponding bits are
858  * located near the end of the postbl itself, where they
859  * are not likely to be used.)
860  */
861 int
862 cmpsblks42(const struct fs *sb, struct fs *asb)
863 {
864 	asb->fs_firstfield = sb->fs_firstfield; /* fs_link */
865 	asb->fs_unused_1 = sb->fs_unused_1; /* fs_rlink */
866 	asb->fs_old_time = sb->fs_old_time; /* fs_time */
867 	asb->fs_old_cstotal = sb->fs_old_cstotal; /* fs_cstotal */
868 	asb->fs_cgrotor = sb->fs_cgrotor;
869 	asb->fs_fmod = sb->fs_fmod;
870 	asb->fs_clean = sb->fs_clean;
871 	asb->fs_ronly = sb->fs_ronly;
872 	asb->fs_old_flags = sb->fs_old_flags;
873 	asb->fs_maxcontig = sb->fs_maxcontig;
874 	asb->fs_minfree = sb->fs_minfree;
875 	asb->fs_old_rotdelay = sb->fs_old_rotdelay;
876 	asb->fs_maxbpg = sb->fs_maxbpg;
877 
878 	/* The former fs_csp, totaling 128 bytes  */
879 	memmove(asb->fs_ocsp, sb->fs_ocsp, sizeof sb->fs_ocsp);
880 	asb->fs_contigdirs = sb->fs_contigdirs;
881 	asb->fs_csp = sb->fs_csp;
882 	asb->fs_maxcluster = sb->fs_maxcluster;
883 	asb->fs_active = sb->fs_active;
884 
885 	/* The former fs_fsmnt, totaling 512 bytes */
886 	memmove(asb->fs_fsmnt, sb->fs_fsmnt, sizeof sb->fs_fsmnt);
887 	memmove(asb->fs_volname, sb->fs_volname, sizeof sb->fs_volname);
888 
889 	return memcmp(sb, asb, sb->fs_sbsize);
890 }
891 
892 /* BSD 4.4 performed the following superblock comparison
893  * This was used in NetBSD through 1.6.1
894  *
895  * Note that this implementation is destructive to asb.
896  */
897 int
898 cmpsblks44(const struct fs *sb, struct fs *asb)
899 {
900 	/*
901 	 * "Copy fields which we don't care if they're different in the
902 	 * alternate superblocks, as they're either likely to be
903 	 * different because they're per-cylinder-group specific, or
904 	 * because they're transient details which are only maintained
905 	 * in the primary superblock."
906 	 */
907 	asb->fs_firstfield = sb->fs_firstfield;
908 	asb->fs_unused_1 = sb->fs_unused_1;
909 	asb->fs_old_time = sb->fs_old_time;
910 	asb->fs_old_cstotal = sb->fs_old_cstotal;
911 	asb->fs_cgrotor = sb->fs_cgrotor;
912 	asb->fs_fmod = sb->fs_fmod;
913 	asb->fs_clean = sb->fs_clean;
914 	asb->fs_ronly = sb->fs_ronly;
915 	asb->fs_old_flags = sb->fs_old_flags;
916 	asb->fs_maxcontig = sb->fs_maxcontig;
917 	asb->fs_minfree = sb->fs_minfree;
918 	asb->fs_optim = sb->fs_optim;
919 	asb->fs_old_rotdelay = sb->fs_old_rotdelay;
920 	asb->fs_maxbpg = sb->fs_maxbpg;
921 
922 	/* The former fs_csp and fs_maxcluster, totaling 128 bytes */
923 	memmove(asb->fs_ocsp, sb->fs_ocsp, sizeof sb->fs_ocsp);
924 	asb->fs_contigdirs = sb->fs_contigdirs;
925 	asb->fs_csp = sb->fs_csp;
926 	asb->fs_maxcluster = sb->fs_maxcluster;
927 	asb->fs_active = sb->fs_active;
928 
929 	/* The former fs_fsmnt, totaling 512 bytes */
930 	memmove(asb->fs_fsmnt, sb->fs_fsmnt, sizeof sb->fs_fsmnt);
931 	memmove(asb->fs_volname, sb->fs_volname, sizeof sb->fs_volname);
932 
933 	/* The former fs_sparecon, totaling 200 bytes */
934 	memmove(asb->fs_snapinum,
935 		sb->fs_snapinum, sizeof sb->fs_snapinum);
936 	asb->fs_avgfilesize = sb->fs_avgfilesize;
937 	asb->fs_avgfpdir = sb->fs_avgfpdir;
938 	asb->fs_save_cgsize = sb->fs_save_cgsize;
939 	memmove(asb->fs_sparecon32,
940 		sb->fs_sparecon32, sizeof sb->fs_sparecon32);
941 	asb->fs_flags = sb->fs_flags;
942 
943 	/* Original comment:
944 	 * "The following should not have to be copied, but need to be."
945 	 */
946 	asb->fs_fsbtodb = sb->fs_fsbtodb;
947 	asb->fs_old_interleave = sb->fs_old_interleave;
948 	asb->fs_old_npsect = sb->fs_old_npsect;
949 	asb->fs_old_nrpos = sb->fs_old_nrpos;
950 	asb->fs_state = sb->fs_state;
951 	asb->fs_qbmask = sb->fs_qbmask;
952 	asb->fs_qfmask = sb->fs_qfmask;
953 	asb->fs_state = sb->fs_state;
954 	asb->fs_maxfilesize = sb->fs_maxfilesize;
955 
956 	/*
957 	 * "Compare the superblocks, effectively checking every other
958 	 * field to see if they differ."
959 	 */
960 	return memcmp(sb, asb, sb->fs_sbsize);
961 }
962 
963 
964 static void
965 badsb(int listerr, const char *s)
966 {
967 
968 	if (!listerr)
969 		return;
970 	if (preen)
971 		printf("%s: ", cdevname());
972 	pfatal("BAD SUPER BLOCK: %s\n", s);
973 }
974 
975 /*
976  * Calculate a prototype superblock based on information in the disk label.
977  * When done the cgsblock macro can be calculated and the fs_ncg field
978  * can be used. Do NOT attempt to use other macros without verifying that
979  * their needed information is available!
980  */
981 static int
982 calcsb(const char *dev, int devfd, struct fs *fs)
983 {
984 	struct dkwedge_info dkw;
985 	struct disk_geom geo;
986 	int i, nspf;
987 
988 	if (getdiskinfo(dev, fsreadfd, NULL, &geo, &dkw) == -1)
989 		pfatal("%s: CANNOT FIGURE OUT FILE SYSTEM PARTITION\n", dev);
990 	if (dkw.dkw_parent[0] == '\0') {
991 		pfatal("%s: CANNOT FIGURE OUT FILE SYSTEM PARTITION\n", dev);
992 		return (0);
993 	}
994 	if (strcmp(dkw.dkw_ptype, DKW_PTYPE_FFS) &&
995 	    strcmp(dkw.dkw_ptype, DKW_PTYPE_APPLEUFS)) {
996 		pfatal("%s: NOT LABELED AS A BSD FILE SYSTEM (%s)\n",
997 		    dev, dkw.dkw_ptype);
998 		return (0);
999 	}
1000 	if (geo.dg_secsize == 0) {
1001 		pfatal("%s: CANNOT FIGURE OUT SECTOR SIZE\n", dev);
1002 		return 0;
1003 	}
1004 	if (geo.dg_secpercyl == 0) {
1005 		pfatal("%s: CANNOT FIGURE OUT SECTORS PER CYLINDER\n", dev);
1006 		return 0;
1007 	}
1008 	if (sblk.b_un.b_fs->fs_fsize == 0) {
1009 		pfatal("%s: CANNOT FIGURE OUT FRAG BLOCK SIZE\n", dev);
1010 		return 0;
1011 	}
1012 	if (sblk.b_un.b_fs->fs_fpg == 0) {
1013 		pfatal("%s: CANNOT FIGURE OUT FRAGS PER GROUP\n", dev);
1014 		return 0;
1015 	}
1016 	if (sblk.b_un.b_fs->fs_old_cpg == 0) {
1017 		pfatal("%s: CANNOT FIGURE OUT OLD CYLINDERS PER GROUP\n", dev);
1018 		return 0;
1019 	}
1020 	memcpy(fs, sblk.b_un.b_fs, sizeof(struct fs));
1021 	nspf = fs->fs_fsize / geo.dg_secsize;
1022 	fs->fs_old_nspf = nspf;
1023 	for (fs->fs_fsbtodb = 0, i = nspf; i > 1; i >>= 1)
1024 		fs->fs_fsbtodb++;
1025 	dev_bsize = geo.dg_secsize;
1026 	if (fs->fs_magic == FS_UFS2_MAGIC) {
1027 		fs->fs_ncg = howmany(fs->fs_size, fs->fs_fpg);
1028 	} else /* if (fs->fs_magic == FS_UFS1_MAGIC) */ {
1029 		fs->fs_old_cgmask = 0xffffffff;
1030 		for (i = geo.dg_ntracks; i > 1; i >>= 1)
1031 			fs->fs_old_cgmask <<= 1;
1032 		if (!POWEROF2(geo.dg_ntracks))
1033 			fs->fs_old_cgmask <<= 1;
1034 		fs->fs_old_cgoffset = roundup(
1035 			howmany(geo.dg_nsectors, nspf), fs->fs_frag);
1036 		fs->fs_fpg = (fs->fs_old_cpg * geo.dg_secpercyl) / nspf;
1037 		fs->fs_ncg = howmany(fs->fs_size / geo.dg_secpercyl,
1038 		    fs->fs_old_cpg);
1039 	}
1040 	return (1);
1041 }
1042