1 /* $NetBSD: main.c,v 1.20 2008/02/24 00:59:03 christos Exp $ */
4 * Copyright (C) 1995 Wolfgang Solfrank
5 * Copyright (c) 1995 Martin Husemann
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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.
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 #include <sys/cdefs.h>
31 __RCSID("$NetBSD: main.c,v 1.20 2008/02/24 00:59:03 christos Exp $");
44 #include "exitvalues.h"
46 int alwaysno
; /* assume "no" for all questions */
47 int alwaysyes
; /* assume "yes" for all questions */
48 int preen
; /* set when preening */
49 int rdonly
; /* device is opened read only (supersedes above) */
51 static void usage(void) __dead
;
56 (void)fprintf(stderr
, "Usage: %s [-fnpy] filesystem ... \n",
58 exit(FSCK_EXIT_USAGE
);
64 exit(FSCK_EXIT_SIGNALLED
);
68 main(int argc
, char **argv
)
70 int ret
= FSCK_EXIT_OK
, erg
;
73 while ((ch
= getopt(argc
, argv
, "pPqynf")) != -1) {
77 * We are always forced, since we don't
83 alwaysyes
= preen
= 0;
92 alwaysyes
= alwaysno
= 0;
95 case 'P': /* Progress meter not implemented. */
98 case 'q': /* Quiet not implemented. */
112 if (signal(SIGINT
, SIG_IGN
) != SIG_IGN
)
113 (void) signal(SIGINT
, catch);
115 (void) signal(SIGQUIT
, catch);
117 while (--argc
>= 0) {
118 setcdevname(*argv
, preen
);
119 erg
= checkfilesys(*argv
++);
130 ask(int def
, const char *fmt
, ...)
146 vsnprintf(prompt
, sizeof(prompt
), fmt
, ap
);
148 if (alwaysyes
|| rdonly
) {
149 printf("%s? %s\n", prompt
, rdonly
? "no" : "yes");
153 printf("%s? [yn] ", prompt
);
156 while (c
!= '\n' && getchar() != '\n')
159 } while (c
!= 'y' && c
!= 'Y' && c
!= 'n' && c
!= 'N');
160 return c
== 'y' || c
== 'Y';