1 /* $NetBSD: fsutil.c,v 1.7 1998/07/30 17:41:03 thorpej Exp $ */
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
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 the University of
18 * California, Berkeley and its contributors.
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.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 * $FreeBSD: src/sbin/fsck/fsutil.c,v 1.2.2.1 2001/08/01 05:47:55 obrien Exp $
36 * $DragonFly: src/sbin/fsck/fsutil.c,v 1.6 2006/10/12 04:04:03 dillon Exp $
38 * $NetBSD: fsutil.c,v 1.7 1998/07/30 17:41:03 thorpej Exp $
41 #include <sys/cdefs.h>
56 #include <sys/param.h>
58 #include <sys/mount.h>
62 static const char *dev
= NULL
;
66 extern char *__progname
;
68 static void vmsg(int, const char *, va_list);
71 setcdevname(const char *cd
, int pr
)
91 errexit(const char *fmt
, ...)
96 vfprintf(stderr
, fmt
, ap
);
102 vmsg(int fatal
, const char *fmt
, va_list ap
)
112 if (fatal
&& preen
) {
114 "%s: UNEXPECTED INCONSISTENCY; RUN %s MANUALLY.\n",
122 pfatal(const char *fmt
, ...)
133 pwarn(const char *fmt
, ...)
142 perror(const char *s
)
144 pfatal("%s (%s)", s
, strerror(errno
));
148 panic(const char *fmt
, ...)
159 unrawname(const char *name
)
161 static char unrawbuf
[32];
165 if ((dp
= strrchr(name
, '/')) == 0)
167 if (stat(name
, &stb
) < 0)
169 if (!S_ISCHR(stb
.st_mode
))
173 snprintf(unrawbuf
, 32, "%.*s/%s", (int)(dp
- name
), name
, dp
+ 2);
178 rawname(const char *name
)
180 static char rawbuf
[32];
183 if ((dp
= strrchr(name
, '/')) == 0)
185 snprintf(rawbuf
, 32, "%.*s/r%s", (int)(dp
- name
), name
, dp
+ 1);
190 devcheck(const char *origname
)
192 struct stat stslash
, stchar
;
194 if (stat("/", &stslash
) < 0) {
196 printf("Can't stat root\n");
199 if (stat(origname
, &stchar
) < 0) {
201 printf("Can't stat %s\n", origname
);
204 if (!S_ISCHR(stchar
.st_mode
)) {
206 printf("%s is not a char device\n", origname
);
212 * Get the mount point information for name.
215 getmntpt(const char *name
)
217 struct stat devstat
, mntdevstat
;
218 char device
[sizeof(_PATH_DEV
) - 1 + MNAMELEN
];
220 struct statfs
*mntbuf
, *statfsp
;
221 int i
, mntsize
, isdev
;
223 if (stat(name
, &devstat
) != 0)
225 if (S_ISCHR(devstat
.st_mode
) || S_ISBLK(devstat
.st_mode
))
229 mntsize
= getmntinfo(&mntbuf
, MNT_NOWAIT
);
230 for (i
= 0; i
< mntsize
; i
++) {
231 statfsp
= &mntbuf
[i
];
232 devname
= statfsp
->f_mntfromname
;
233 if (*devname
!= '/') {
234 strcpy(device
, _PATH_DEV
);
235 strcat(device
, devname
);
236 strcpy(statfsp
->f_mntfromname
, device
);
239 if (strcmp(name
, statfsp
->f_mntonname
))
243 if (stat(devname
, &mntdevstat
) == 0 &&
244 mntdevstat
.st_rdev
== devstat
.st_rdev
)
253 * XXX this code is from NetBSD, but fails in FreeBSD because we
254 * don't have blockdevs. I don't think its needed.
257 blockcheck(const char *origname
)
259 struct stat stslash
, stblock
, stchar
;
260 const char *newname
, *raw
;
265 if (stat("/", &stslash
) < 0) {
267 printf("Can't stat root\n");
272 if (stat(newname
, &stblock
) < 0) {
274 printf("Can't stat %s\n", newname
);
277 if (S_ISBLK(stblock
.st_mode
)) {
278 if (stslash
.st_dev
== stblock
.st_rdev
)
280 raw
= rawname(newname
);
281 if (stat(raw
, &stchar
) < 0) {
283 printf("Can't stat %s\n", raw
);
286 if (S_ISCHR(stchar
.st_mode
)) {
289 printf("%s is not a character device\n", raw
);
292 } else if (S_ISCHR(stblock
.st_mode
) && !retried
) {
293 newname
= unrawname(newname
);
296 } else if ((fsp
= getfsfile(newname
)) != 0 && !retried
) {
297 newname
= fsp
->fs_spec
;
302 * Not a block or character device, just return name and
303 * let the user decide whether to use it.