main.c revision 1.16 1 /* $NetBSD: main.c,v 1.16 2005/01/13 15:22:35 christos Exp $ */
2
3 /*
4 * Copyright (C) 1995 Wolfgang Solfrank
5 * Copyright (c) 1995 Martin Husemann
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. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Martin Husemann
18 * and Wolfgang Solfrank.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR
24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 */
34
35
36 #include <sys/cdefs.h>
37 #ifndef lint
38 __RCSID("$NetBSD: main.c,v 1.16 2005/01/13 15:22:35 christos Exp $");
39 #endif /* not lint */
40
41 #include <stdlib.h>
42 #include <string.h>
43 #include <ctype.h>
44 #include <stdio.h>
45 #include <unistd.h>
46 #include <errno.h>
47 #include <stdarg.h>
48
49 #include "fsutil.h"
50 #include "ext.h"
51
52 int alwaysno; /* assume "no" for all questions */
53 int alwaysyes; /* assume "yes" for all questions */
54 int preen; /* set when preening */
55 int rdonly; /* device is opened read only (supersedes above) */
56
57 static void usage __P((void));
58 int main __P((int, char **));
59
60 static void
61 usage()
62 {
63 errexit("usage: fsck_msdos [-fnpy] filesystem ... \n");
64 }
65
66 int
67 main(argc, argv)
68 int argc;
69 char **argv;
70 {
71 int ret = 0, erg;
72 int ch;
73
74 while ((ch = getopt(argc, argv, "pPqynf")) != -1) {
75 switch (ch) {
76 case 'f':
77 /*
78 * We are always forced, since we don't
79 * have a clean flag
80 */
81 break;
82 case 'n':
83 alwaysno = 1;
84 alwaysyes = preen = 0;
85 break;
86 case 'y':
87 alwaysyes = 1;
88 alwaysno = preen = 0;
89 break;
90
91 case 'p':
92 preen = 1;
93 alwaysyes = alwaysno = 0;
94 break;
95
96 case 'P': /* Progress meter not implemented. */
97 break;
98
99 case 'q': /* Quiet not implemented. */
100 break;
101
102 default:
103 usage();
104 break;
105 }
106 }
107 argc -= optind;
108 argv += optind;
109
110 if (!argc)
111 usage();
112
113 while (--argc >= 0) {
114 setcdevname(*argv, preen);
115 erg = checkfilesys(*argv++);
116 if (erg > ret)
117 ret = erg;
118 }
119
120 return ret;
121 }
122
123
124 /*VARARGS*/
125 int
126 ask(int def, const char *fmt, ...)
127 {
128 va_list ap;
129
130 char prompt[256];
131 int c;
132
133 if (preen) {
134 if (rdonly)
135 def = 0;
136 if (def)
137 printf("FIXED\n");
138 return def;
139 }
140
141 va_start(ap, fmt);
142 vsnprintf(prompt, sizeof(prompt), fmt, ap);
143 va_end(ap);
144 if (alwaysyes || rdonly) {
145 printf("%s? %s\n", prompt, rdonly ? "no" : "yes");
146 return !rdonly;
147 }
148 do {
149 printf("%s? [yn] ", prompt);
150 fflush(stdout);
151 c = getchar();
152 while (c != '\n' && getchar() != '\n')
153 if (feof(stdin))
154 return 0;
155 } while (c != 'y' && c != 'Y' && c != 'n' && c != 'N');
156 return c == 'y' || c == 'Y';
157 }
158