utilities.c revision 1.12 1 1.12 perseant /* $NetBSD: utilities.c,v 1.12 2003/03/31 19:57:00 perseant Exp $ */
2 1.1 perseant
3 1.1 perseant /*
4 1.1 perseant * Copyright (c) 1980, 1986, 1993
5 1.1 perseant * The Regents of the University of California. All rights reserved.
6 1.1 perseant *
7 1.1 perseant * Redistribution and use in source and binary forms, with or without
8 1.1 perseant * modification, are permitted provided that the following conditions
9 1.1 perseant * are met:
10 1.1 perseant * 1. Redistributions of source code must retain the above copyright
11 1.1 perseant * notice, this list of conditions and the following disclaimer.
12 1.1 perseant * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 perseant * notice, this list of conditions and the following disclaimer in the
14 1.1 perseant * documentation and/or other materials provided with the distribution.
15 1.1 perseant * 3. All advertising materials mentioning features or use of this software
16 1.1 perseant * must display the following acknowledgement:
17 1.1 perseant * This product includes software developed by the University of
18 1.1 perseant * California, Berkeley and its contributors.
19 1.1 perseant * 4. Neither the name of the University nor the names of its contributors
20 1.1 perseant * may be used to endorse or promote products derived from this software
21 1.1 perseant * without specific prior written permission.
22 1.1 perseant *
23 1.1 perseant * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 perseant * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 perseant * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 perseant * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 perseant * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 perseant * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 perseant * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 perseant * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 perseant * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 perseant * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 perseant * SUCH DAMAGE.
34 1.1 perseant */
35 1.1 perseant
36 1.1 perseant #include <sys/param.h>
37 1.1 perseant #include <sys/time.h>
38 1.12 perseant #include <sys/mount.h>
39 1.11 perseant
40 1.12 perseant #include <ufs/ufs/inode.h>
41 1.1 perseant #include <ufs/ufs/dir.h>
42 1.12 perseant #define buf ubuf
43 1.12 perseant #define vnode uvnode
44 1.1 perseant #include <ufs/lfs/lfs.h>
45 1.11 perseant
46 1.11 perseant #include <err.h>
47 1.1 perseant #include <stdio.h>
48 1.1 perseant #include <stdlib.h>
49 1.1 perseant #include <string.h>
50 1.1 perseant #include <ctype.h>
51 1.1 perseant #include <unistd.h>
52 1.1 perseant
53 1.1 perseant #include <signal.h>
54 1.1 perseant
55 1.11 perseant #include "bufcache.h"
56 1.11 perseant #include "vnode.h"
57 1.11 perseant #include "lfs.h"
58 1.11 perseant #include "segwrite.h"
59 1.11 perseant
60 1.1 perseant #include "fsutil.h"
61 1.1 perseant #include "fsck.h"
62 1.1 perseant #include "extern.h"
63 1.1 perseant
64 1.11 perseant long diskreads, totalreads; /* Disk cache statistics */
65 1.1 perseant
66 1.11 perseant extern int returntosingle;
67 1.11 perseant extern off_t locked_queue_bytes;
68 1.7 christos
69 1.1 perseant int
70 1.4 perseant ftypeok(struct dinode * dp)
71 1.1 perseant {
72 1.1 perseant switch (dp->di_mode & IFMT) {
73 1.1 perseant
74 1.11 perseant case IFDIR:
75 1.11 perseant case IFREG:
76 1.11 perseant case IFBLK:
77 1.11 perseant case IFCHR:
78 1.11 perseant case IFLNK:
79 1.11 perseant case IFSOCK:
80 1.11 perseant case IFIFO:
81 1.1 perseant return (1);
82 1.1 perseant
83 1.1 perseant default:
84 1.1 perseant if (debug)
85 1.11 perseant pwarn("bad file type 0%o\n", dp->di_mode);
86 1.1 perseant return (0);
87 1.1 perseant }
88 1.1 perseant }
89 1.1 perseant
90 1.1 perseant int
91 1.4 perseant reply(char *question)
92 1.1 perseant {
93 1.11 perseant int persevere;
94 1.11 perseant char c;
95 1.1 perseant
96 1.1 perseant if (preen)
97 1.11 perseant err(1, "INTERNAL ERROR: GOT TO reply()");
98 1.1 perseant persevere = !strcmp(question, "CONTINUE");
99 1.1 perseant printf("\n");
100 1.11 perseant if (!persevere && nflag) {
101 1.1 perseant printf("%s? no\n\n", question);
102 1.1 perseant return (0);
103 1.1 perseant }
104 1.1 perseant if (yflag || (persevere && nflag)) {
105 1.1 perseant printf("%s? yes\n\n", question);
106 1.1 perseant return (1);
107 1.1 perseant }
108 1.4 perseant do {
109 1.1 perseant printf("%s? [yn] ", question);
110 1.11 perseant (void) fflush(stdout);
111 1.1 perseant c = getc(stdin);
112 1.1 perseant while (c != '\n' && getc(stdin) != '\n')
113 1.1 perseant if (feof(stdin))
114 1.1 perseant return (0);
115 1.1 perseant } while (c != 'y' && c != 'Y' && c != 'n' && c != 'N');
116 1.1 perseant printf("\n");
117 1.1 perseant if (c == 'y' || c == 'Y')
118 1.1 perseant return (1);
119 1.1 perseant return (0);
120 1.1 perseant }
121 1.1 perseant
122 1.1 perseant static void
123 1.11 perseant write_superblocks(void)
124 1.1 perseant {
125 1.11 perseant lfs_writesuper(fs, fs->lfs_sboffs[0]);
126 1.11 perseant lfs_writesuper(fs, fs->lfs_sboffs[1]);
127 1.11 perseant fsmodified = 1;
128 1.1 perseant }
129 1.1 perseant
130 1.1 perseant void
131 1.4 perseant ckfini(int markclean)
132 1.1 perseant {
133 1.12 perseant if (locked_queue_bytes > 0) {
134 1.11 perseant if (preen || reply("WRITE CHANGES TO DISK") == 1) {
135 1.12 perseant if (preen == 0)
136 1.12 perseant pwarn("WRITING CHANGES TO DISK\n");
137 1.11 perseant lfs_segwrite(fs, SEGM_CKP);
138 1.11 perseant fsdirty = 0;
139 1.11 perseant fsmodified = 1;
140 1.11 perseant }
141 1.11 perseant }
142 1.1 perseant
143 1.12 perseant if ((fs->lfs_flags & LFS_PF_CLEAN) == 0)
144 1.12 perseant fsmodified = 1;
145 1.12 perseant fs->lfs_pflags |= LFS_PF_CLEAN;
146 1.12 perseant
147 1.12 perseant if (fsmodified && (preen || reply("UPDATE STANDARD SUPERBLOCK"))) {
148 1.1 perseant sbdirty();
149 1.11 perseant write_superblocks();
150 1.1 perseant }
151 1.12 perseant if (markclean && fsmodified) {
152 1.1 perseant /*
153 1.1 perseant * Mark the file system as clean, and sync the superblock.
154 1.1 perseant */
155 1.1 perseant if (preen)
156 1.1 perseant pwarn("MARKING FILE SYSTEM CLEAN\n");
157 1.1 perseant else if (!reply("MARK FILE SYSTEM CLEAN"))
158 1.1 perseant markclean = 0;
159 1.1 perseant if (markclean) {
160 1.11 perseant fs->lfs_pflags |= LFS_PF_CLEAN;
161 1.1 perseant sbdirty();
162 1.11 perseant write_superblocks();
163 1.11 perseant if (!preen)
164 1.11 perseant printf(
165 1.11 perseant "\n***** FILE SYSTEM MARKED CLEAN *****\n");
166 1.1 perseant }
167 1.1 perseant }
168 1.12 perseant
169 1.1 perseant if (debug)
170 1.11 perseant bufstats();
171 1.11 perseant (void) close(fsreadfd);
172 1.1 perseant }
173 1.1 perseant /*
174 1.1 perseant * Free a previously allocated block
175 1.1 perseant */
176 1.1 perseant void
177 1.4 perseant freeblk(daddr_t blkno, long frags)
178 1.1 perseant {
179 1.11 perseant struct inodesc idesc;
180 1.1 perseant
181 1.1 perseant idesc.id_blkno = blkno;
182 1.1 perseant idesc.id_numfrags = frags;
183 1.11 perseant (void) pass4check(&idesc);
184 1.1 perseant }
185 1.1 perseant /*
186 1.1 perseant * Find a pathname
187 1.1 perseant */
188 1.1 perseant void
189 1.4 perseant getpathname(char *namebuf, ino_t curdir, ino_t ino)
190 1.4 perseant {
191 1.11 perseant int len;
192 1.11 perseant register char *cp;
193 1.11 perseant struct inodesc idesc;
194 1.11 perseant static int busy = 0;
195 1.1 perseant
196 1.1 perseant if (curdir == ino && ino == ROOTINO) {
197 1.11 perseant (void) strcpy(namebuf, "/");
198 1.1 perseant return;
199 1.1 perseant }
200 1.1 perseant if (busy ||
201 1.1 perseant (statemap[curdir] != DSTATE && statemap[curdir] != DFOUND)) {
202 1.11 perseant (void) strcpy(namebuf, "?");
203 1.1 perseant return;
204 1.1 perseant }
205 1.1 perseant busy = 1;
206 1.1 perseant memset(&idesc, 0, sizeof(struct inodesc));
207 1.1 perseant idesc.id_type = DATA;
208 1.1 perseant idesc.id_fix = IGNORE;
209 1.1 perseant cp = &namebuf[MAXPATHLEN - 1];
210 1.1 perseant *cp = '\0';
211 1.1 perseant if (curdir != ino) {
212 1.1 perseant idesc.id_parent = curdir;
213 1.1 perseant goto namelookup;
214 1.1 perseant }
215 1.1 perseant while (ino != ROOTINO) {
216 1.1 perseant idesc.id_number = ino;
217 1.1 perseant idesc.id_func = findino;
218 1.1 perseant idesc.id_name = "..";
219 1.1 perseant if ((ckinode(ginode(ino), &idesc) & FOUND) == 0)
220 1.1 perseant break;
221 1.4 perseant namelookup:
222 1.1 perseant idesc.id_number = idesc.id_parent;
223 1.1 perseant idesc.id_parent = ino;
224 1.1 perseant idesc.id_func = findname;
225 1.1 perseant idesc.id_name = namebuf;
226 1.4 perseant if ((ckinode(ginode(idesc.id_number), &idesc) & FOUND) == 0)
227 1.1 perseant break;
228 1.1 perseant len = strlen(namebuf);
229 1.1 perseant cp -= len;
230 1.11 perseant memcpy(cp, namebuf, (size_t) len);
231 1.1 perseant *--cp = '/';
232 1.1 perseant if (cp < &namebuf[MAXNAMLEN])
233 1.1 perseant break;
234 1.1 perseant ino = idesc.id_number;
235 1.1 perseant }
236 1.1 perseant busy = 0;
237 1.1 perseant if (ino != ROOTINO)
238 1.1 perseant *--cp = '?';
239 1.11 perseant memcpy(namebuf, cp, (size_t) (&namebuf[MAXPATHLEN] - cp));
240 1.1 perseant }
241 1.1 perseant
242 1.1 perseant void
243 1.4 perseant catch(int n)
244 1.1 perseant {
245 1.11 perseant ckfini(0);
246 1.1 perseant exit(12);
247 1.1 perseant }
248 1.1 perseant /*
249 1.1 perseant * When preening, allow a single quit to signal
250 1.1 perseant * a special exit after filesystem checks complete
251 1.1 perseant * so that reboot sequence may be interrupted.
252 1.1 perseant */
253 1.1 perseant void
254 1.4 perseant catchquit(int n)
255 1.1 perseant {
256 1.1 perseant printf("returning to single-user after filesystem check\n");
257 1.1 perseant returntosingle = 1;
258 1.11 perseant (void) signal(SIGQUIT, SIG_DFL);
259 1.1 perseant }
260 1.1 perseant /*
261 1.1 perseant * Ignore a single quit signal; wait and flush just in case.
262 1.1 perseant * Used by child processes in preen.
263 1.1 perseant */
264 1.1 perseant void
265 1.4 perseant voidquit(int n)
266 1.1 perseant {
267 1.1 perseant
268 1.1 perseant sleep(1);
269 1.11 perseant (void) signal(SIGQUIT, SIG_IGN);
270 1.11 perseant (void) signal(SIGQUIT, SIG_DFL);
271 1.1 perseant }
272 1.1 perseant /*
273 1.1 perseant * determine whether an inode should be fixed.
274 1.1 perseant */
275 1.1 perseant int
276 1.4 perseant dofix(struct inodesc * idesc, char *msg)
277 1.1 perseant {
278 1.1 perseant
279 1.1 perseant switch (idesc->id_fix) {
280 1.1 perseant
281 1.11 perseant case DONTKNOW:
282 1.1 perseant if (idesc->id_type == DATA)
283 1.1 perseant direrror(idesc->id_number, msg);
284 1.1 perseant else
285 1.6 is pwarn("%s", msg);
286 1.1 perseant if (preen) {
287 1.1 perseant printf(" (SALVAGED)\n");
288 1.1 perseant idesc->id_fix = FIX;
289 1.1 perseant return (ALTERED);
290 1.1 perseant }
291 1.1 perseant if (reply("SALVAGE") == 0) {
292 1.1 perseant idesc->id_fix = NOFIX;
293 1.1 perseant return (0);
294 1.1 perseant }
295 1.1 perseant idesc->id_fix = FIX;
296 1.1 perseant return (ALTERED);
297 1.1 perseant
298 1.1 perseant case FIX:
299 1.1 perseant return (ALTERED);
300 1.1 perseant
301 1.1 perseant case NOFIX:
302 1.1 perseant case IGNORE:
303 1.1 perseant return (0);
304 1.1 perseant
305 1.1 perseant default:
306 1.11 perseant err(8, "UNKNOWN INODESC FIX MODE %d\n", idesc->id_fix);
307 1.1 perseant }
308 1.1 perseant /* NOTREACHED */
309 1.1 perseant }
310