2000-10-09 10:23:31 +00:00
|
|
|
/* $NetBSD: fsutil.c,v 1.7 1998/07/30 17:41:03 thorpej Exp $ */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1990, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#ifndef lint
|
|
|
|
__RCSID("$NetBSD: fsutil.c,v 1.7 1998/07/30 17:41:03 thorpej Exp $");
|
|
|
|
#endif /* not lint */
|
2002-03-24 15:06:48 +00:00
|
|
|
__FBSDID("$FreeBSD$");
|
2000-10-09 10:23:31 +00:00
|
|
|
|
Add support for running foreground (-F) and background (-B) checks.
Traditionally, fsck is invoked before the filesystems are mounted
and all checks are done to completion at that time. If background
checking is available, fsck is invoked twice. It is first invoked
at the traditional time, before the filesystems are mounted, with
the -F flag to do checking on all the filesystems that cannot do
background checking. It is then invoked a second time, after the
system has completed going multiuser, with the -B flag to do checking
on all the filesystems that can do background checking. Unlike
the foreground checking, the background checking is started
asynchonously so that other system activity can proceed even on
the filesystems that are being checked.
At the moment, only the fast filesystem supports background checking.
To be able to do background checking, a filesystem must have been
running with soft updates, not have been marked as needing a
foreground check, and be mounted and writable when the background
check is to be done (i.e., not listed as `noauto' in /etc/fstab).
These changes are the final piece needed to support background
filesystem checking. They will not have any effect until you update
your /etc/rc to invoke fsck in its new mode of operation. I am
still playing around with exactly what those changes should be
and should be committing them later this week.
2001-04-25 07:18:22 +00:00
|
|
|
#include <sys/param.h>
|
2000-10-09 10:23:31 +00:00
|
|
|
#include <sys/stat.h>
|
Add support for running foreground (-F) and background (-B) checks.
Traditionally, fsck is invoked before the filesystems are mounted
and all checks are done to completion at that time. If background
checking is available, fsck is invoked twice. It is first invoked
at the traditional time, before the filesystems are mounted, with
the -F flag to do checking on all the filesystems that cannot do
background checking. It is then invoked a second time, after the
system has completed going multiuser, with the -B flag to do checking
on all the filesystems that can do background checking. Unlike
the foreground checking, the background checking is started
asynchonously so that other system activity can proceed even on
the filesystems that are being checked.
At the moment, only the fast filesystem supports background checking.
To be able to do background checking, a filesystem must have been
running with soft updates, not have been marked as needing a
foreground check, and be mounted and writable when the background
check is to be done (i.e., not listed as `noauto' in /etc/fstab).
These changes are the final piece needed to support background
filesystem checking. They will not have any effect until you update
your /etc/rc to invoke fsck in its new mode of operation. I am
still playing around with exactly what those changes should be
and should be committing them later this week.
2001-04-25 07:18:22 +00:00
|
|
|
#include <sys/mount.h>
|
2000-10-09 10:23:31 +00:00
|
|
|
|
2002-03-24 15:06:48 +00:00
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fstab.h>
|
|
|
|
#include <paths.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
2000-10-09 10:23:31 +00:00
|
|
|
#include "fsutil.h"
|
|
|
|
|
|
|
|
static const char *dev = NULL;
|
|
|
|
static int preen = 0;
|
|
|
|
|
2002-03-20 22:57:10 +00:00
|
|
|
static void vmsg(int, const char *, va_list) __printflike(2, 0);
|
2000-10-09 10:23:31 +00:00
|
|
|
|
|
|
|
void
|
2002-03-20 22:57:10 +00:00
|
|
|
setcdevname(const char *cd, int pr)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
dev = cd;
|
|
|
|
preen = pr;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
2002-03-20 22:57:10 +00:00
|
|
|
cdevname(void)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
return dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2002-03-20 22:57:10 +00:00
|
|
|
vmsg(int fatal, const char *fmt, va_list ap)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
if (!fatal && preen)
|
|
|
|
(void) printf("%s: ", dev);
|
|
|
|
|
|
|
|
(void) vprintf(fmt, ap);
|
|
|
|
|
|
|
|
if (fatal && preen)
|
|
|
|
(void) printf("\n");
|
|
|
|
|
|
|
|
if (fatal && preen) {
|
|
|
|
(void) printf(
|
|
|
|
"%s: UNEXPECTED INCONSISTENCY; RUN %s MANUALLY.\n",
|
2002-03-24 15:06:48 +00:00
|
|
|
dev, getprogname());
|
2000-10-09 10:23:31 +00:00
|
|
|
exit(8);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*VARARGS*/
|
|
|
|
void
|
|
|
|
pfatal(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vmsg(1, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*VARARGS*/
|
|
|
|
void
|
|
|
|
pwarn(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
2002-03-20 22:57:10 +00:00
|
|
|
va_start(ap, fmt);
|
2000-10-09 10:23:31 +00:00
|
|
|
vmsg(0, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2002-03-20 22:57:10 +00:00
|
|
|
perror(const char *s)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
pfatal("%s (%s)", s, strerror(errno));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
panic(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vmsg(1, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
exit(8);
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
2002-03-20 22:57:10 +00:00
|
|
|
devcheck(const char *origname)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
struct stat stslash, stchar;
|
|
|
|
|
|
|
|
if (stat("/", &stslash) < 0) {
|
|
|
|
perror("/");
|
|
|
|
printf("Can't stat root\n");
|
|
|
|
return (origname);
|
|
|
|
}
|
|
|
|
if (stat(origname, &stchar) < 0) {
|
|
|
|
perror(origname);
|
|
|
|
printf("Can't stat %s\n", origname);
|
|
|
|
return (origname);
|
|
|
|
}
|
|
|
|
if (!S_ISCHR(stchar.st_mode)) {
|
|
|
|
perror(origname);
|
|
|
|
printf("%s is not a char device\n", origname);
|
|
|
|
}
|
|
|
|
return (origname);
|
|
|
|
}
|
|
|
|
|
Add support for running foreground (-F) and background (-B) checks.
Traditionally, fsck is invoked before the filesystems are mounted
and all checks are done to completion at that time. If background
checking is available, fsck is invoked twice. It is first invoked
at the traditional time, before the filesystems are mounted, with
the -F flag to do checking on all the filesystems that cannot do
background checking. It is then invoked a second time, after the
system has completed going multiuser, with the -B flag to do checking
on all the filesystems that can do background checking. Unlike
the foreground checking, the background checking is started
asynchonously so that other system activity can proceed even on
the filesystems that are being checked.
At the moment, only the fast filesystem supports background checking.
To be able to do background checking, a filesystem must have been
running with soft updates, not have been marked as needing a
foreground check, and be mounted and writable when the background
check is to be done (i.e., not listed as `noauto' in /etc/fstab).
These changes are the final piece needed to support background
filesystem checking. They will not have any effect until you update
your /etc/rc to invoke fsck in its new mode of operation. I am
still playing around with exactly what those changes should be
and should be committing them later this week.
2001-04-25 07:18:22 +00:00
|
|
|
/*
|
|
|
|
* Get the mount point information for name.
|
|
|
|
*/
|
|
|
|
struct statfs *
|
2002-03-20 22:57:10 +00:00
|
|
|
getmntpt(const char *name)
|
Add support for running foreground (-F) and background (-B) checks.
Traditionally, fsck is invoked before the filesystems are mounted
and all checks are done to completion at that time. If background
checking is available, fsck is invoked twice. It is first invoked
at the traditional time, before the filesystems are mounted, with
the -F flag to do checking on all the filesystems that cannot do
background checking. It is then invoked a second time, after the
system has completed going multiuser, with the -B flag to do checking
on all the filesystems that can do background checking. Unlike
the foreground checking, the background checking is started
asynchonously so that other system activity can proceed even on
the filesystems that are being checked.
At the moment, only the fast filesystem supports background checking.
To be able to do background checking, a filesystem must have been
running with soft updates, not have been marked as needing a
foreground check, and be mounted and writable when the background
check is to be done (i.e., not listed as `noauto' in /etc/fstab).
These changes are the final piece needed to support background
filesystem checking. They will not have any effect until you update
your /etc/rc to invoke fsck in its new mode of operation. I am
still playing around with exactly what those changes should be
and should be committing them later this week.
2001-04-25 07:18:22 +00:00
|
|
|
{
|
|
|
|
struct stat devstat, mntdevstat;
|
|
|
|
char device[sizeof(_PATH_DEV) - 1 + MNAMELEN];
|
|
|
|
char *devname;
|
|
|
|
struct statfs *mntbuf, *statfsp;
|
|
|
|
int i, mntsize, isdev;
|
|
|
|
|
|
|
|
if (stat(name, &devstat) != 0)
|
|
|
|
return (NULL);
|
|
|
|
if (S_ISCHR(devstat.st_mode) || S_ISBLK(devstat.st_mode))
|
|
|
|
isdev = 1;
|
|
|
|
else
|
|
|
|
isdev = 0;
|
|
|
|
mntsize = getmntinfo(&mntbuf, MNT_NOWAIT);
|
|
|
|
for (i = 0; i < mntsize; i++) {
|
|
|
|
statfsp = &mntbuf[i];
|
|
|
|
devname = statfsp->f_mntfromname;
|
|
|
|
if (*devname != '/') {
|
|
|
|
strcpy(device, _PATH_DEV);
|
|
|
|
strcat(device, devname);
|
|
|
|
strcpy(statfsp->f_mntfromname, device);
|
|
|
|
}
|
|
|
|
if (isdev == 0) {
|
|
|
|
if (strcmp(name, statfsp->f_mntonname))
|
|
|
|
continue;
|
|
|
|
return (statfsp);
|
|
|
|
}
|
|
|
|
if (stat(devname, &mntdevstat) == 0 &&
|
|
|
|
mntdevstat.st_rdev == devstat.st_rdev)
|
|
|
|
return (statfsp);
|
|
|
|
}
|
|
|
|
statfsp = NULL;
|
|
|
|
return (statfsp);
|
|
|
|
}
|
|
|
|
|
2000-10-09 10:23:31 +00:00
|
|
|
|
|
|
|
void *
|
2002-03-20 22:57:10 +00:00
|
|
|
emalloc(size_t s)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
void *p;
|
|
|
|
|
|
|
|
p = malloc(s);
|
|
|
|
if (p == NULL)
|
|
|
|
err(1, "malloc failed");
|
|
|
|
return (p);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void *
|
2002-03-20 22:57:10 +00:00
|
|
|
erealloc(void *p, size_t s)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
void *q;
|
|
|
|
|
|
|
|
q = realloc(p, s);
|
|
|
|
if (q == NULL)
|
|
|
|
err(1, "realloc failed");
|
|
|
|
return (q);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
char *
|
2002-03-20 22:57:10 +00:00
|
|
|
estrdup(const char *s)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
p = strdup(s);
|
|
|
|
if (p == NULL)
|
|
|
|
err(1, "strdup failed");
|
|
|
|
return (p);
|
|
|
|
}
|