Remove building with NOCRYPTO option
[minix3.git] / sbin / fsck / fsutil.c
blob0752705e11a5c3d4a0340beba43cadc49695a9cc
1 /* $NetBSD: fsutil.c,v 1.26 2015/06/21 04:01:40 dholland Exp $ */
3 /*
4 * Copyright (c) 1990, 1993
5 * The Regents of the University of California. All rights reserved.
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.
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.
32 #include <sys/cdefs.h>
33 #ifndef lint
34 __RCSID("$NetBSD: fsutil.c,v 1.26 2015/06/21 04:01:40 dholland Exp $");
35 #endif /* not lint */
38 * used by sbin/fsck
39 * used by sbin/fsck_ext2fs
40 * used by sbin/fsck_ffs
41 * used by sbin/fsck_lfs
42 * used by sbin/fsck_msdos
43 * used by sbin/fsck_v7fs
44 * used by sbin/fsdb
45 * used by usr.sbin/quotacheck
48 #include <sys/param.h>
50 #include <stdio.h>
51 #include <string.h>
52 #include <stdlib.h>
53 #include <stdarg.h>
54 #include <errno.h>
55 #include <fstab.h>
56 #include <fcntl.h>
57 #include <unistd.h>
58 #include <err.h>
59 #include <util.h>
61 #include <sys/types.h>
62 #include <sys/stat.h>
64 #include "fsutil.h"
65 #include "exitvalues.h"
67 volatile sig_atomic_t returntosingle;
69 static const char *dev = NULL;
70 static int hot = 0;
71 static int preen = 0;
72 int quiet;
73 #define F_ERROR 0x80000000
75 void
76 setcdevname(const char *cd, int pr)
79 dev = cd;
80 preen = pr;
83 const char *
84 cdevname(void)
87 return dev;
90 int
91 hotroot(void)
94 return hot;
97 /*VARARGS*/
98 void
99 errexit(const char *fmt, ...)
101 va_list ap;
103 va_start(ap, fmt);
104 (void) vfprintf(stderr, fmt, ap);
105 va_end(ap);
106 (void)fprintf(stderr, "\n");
107 exit(FSCK_EXIT_CHECK_FAILED);
110 void
111 vmsg(int fatal, const char *fmt, va_list ap)
113 int serr = fatal & F_ERROR;
114 int serrno = errno;
115 fatal &= ~F_ERROR;
117 if (!fatal && preen)
118 (void)printf("%s: ", dev);
119 if (quiet && !preen) {
120 (void)printf("** %s (vmsg)\n", dev);
121 quiet = 0;
124 (void) vprintf(fmt, ap);
125 if (serr)
126 printf(" (%s)", strerror(serrno));
128 if (fatal && preen)
129 (void) printf("\n");
131 if (fatal && preen) {
132 (void) printf(
133 "%s: UNEXPECTED INCONSISTENCY; RUN %s MANUALLY.\n",
134 dev, getprogname());
135 exit(FSCK_EXIT_CHECK_FAILED);
139 /*VARARGS*/
140 void
141 pfatal(const char *fmt, ...)
143 va_list ap;
145 va_start(ap, fmt);
146 vmsg(1, fmt, ap);
147 va_end(ap);
150 /*VARARGS*/
151 void
152 pwarn(const char *fmt, ...)
154 va_list ap;
156 va_start(ap, fmt);
157 vmsg(0, fmt, ap);
158 va_end(ap);
161 void
162 perr(const char *fmt, ...)
164 va_list ap;
166 va_start(ap, fmt);
167 vmsg(1 | F_ERROR, fmt, ap);
168 va_end(ap);
171 void
172 panic(const char *fmt, ...)
174 va_list ap;
176 va_start(ap, fmt);
177 vmsg(1, fmt, ap);
178 va_end(ap);
179 exit(FSCK_EXIT_CHECK_FAILED);
182 const char *
183 blockcheck(const char *origname)
185 #if defined(__minix)
186 return origname;
187 #else
188 struct stat stslash, stblock, stchar;
189 const char *newname, *raw, *cooked;
190 struct fstab *fsp;
191 int retried = 0;
192 ssize_t len;
193 char cbuf[MAXPATHLEN];
194 static char buf[MAXPATHLEN];
196 hot = 0;
197 if (stat("/", &stslash) < 0) {
198 perr("Can't stat `/'");
199 return (origname);
201 len = readlink(origname, cbuf, sizeof(cbuf)-1);
202 if (len == -1) {
203 newname = origname;
204 } else {
205 cbuf[len] = '\0';
206 newname = cbuf;
208 retry:
209 if (stat(newname, &stblock) < 0) {
210 perr("Can't stat `%s'", newname);
211 return origname;
213 if (S_ISBLK(stblock.st_mode)) {
214 if (stslash.st_dev == stblock.st_rdev)
215 hot++;
216 raw = getdiskrawname(buf, sizeof(buf), newname);
217 if (raw == NULL) {
218 perr("Can't convert to raw `%s'", newname);
219 return origname;
221 if (stat(raw, &stchar) < 0) {
222 perr("Can't stat `%s'", raw);
223 return origname;
225 if (S_ISCHR(stchar.st_mode)) {
226 return raw;
227 } else {
228 perr("%s is not a character device\n", raw);
229 return origname;
231 } else if (S_ISCHR(stblock.st_mode) && !retried) {
232 cooked = getdiskcookedname(cbuf, sizeof(cbuf), newname);
233 if (cooked == NULL) {
234 perr("Can't convert to cooked `%s'", newname);
235 return origname;
236 } else
237 newname = cooked;
238 retried++;
239 goto retry;
240 } else if ((fsp = getfsfile(newname)) != 0 && !retried) {
241 newname = getfsspecname(cbuf, sizeof(cbuf), fsp->fs_spec);
242 if (newname == NULL)
243 perr("%s", buf);
244 retried++;
245 goto retry;
248 * Not a block or character device, just return name and
249 * let the user decide whether to use it.
251 return origname;
252 #endif /* defined(__minix) */
255 const char *
256 print_mtime(time_t t)
258 static char b[128];
259 char *p = ctime(&t);
260 if (p != NULL)
261 (void)snprintf(b, sizeof(b), "%12.12s %4.4s ", &p[4], &p[20]);
262 else
263 (void)snprintf(b, sizeof(b), "%lld ", (long long)t);
264 return b;
268 void
269 catch(int n)
271 if (ckfinish) (*ckfinish)(0);
272 _exit(FSCK_EXIT_SIGNALLED);
276 * When preening, allow a single quit to signal
277 * a special exit after filesystem checks complete
278 * so that reboot sequence may be interrupted.
280 void
281 catchquit(int n)
283 static const char msg[] =
284 "returning to single-user after filesystem check\n";
285 int serrno = errno;
287 (void)write(STDOUT_FILENO, msg, sizeof(msg) - 1);
288 returntosingle = 1;
289 (void)signal(SIGQUIT, SIG_DFL);
290 errno = serrno;
294 * Ignore a single quit signal; wait and flush just in case.
295 * Used by child processes in preen.
297 void
298 voidquit(int n)
300 int serrno = errno;
302 sleep(1);
303 (void)signal(SIGQUIT, SIG_IGN);
304 (void)signal(SIGQUIT, SIG_DFL);
305 errno = serrno;