2012-10-21 12:01:11 +00:00
|
|
|
/* $NetBSD: fsck.c,v 1.30 2003/08/07 10:04:15 agc Exp $ */
|
2000-10-09 10:23:31 +00:00
|
|
|
|
2017-11-20 19:49:47 +00:00
|
|
|
/*-
|
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
2000-10-09 10:23:31 +00:00
|
|
|
* Copyright (c) 1996 Christos Zoulas. All rights reserved.
|
|
|
|
* Copyright (c) 1980, 1989, 1993, 1994
|
|
|
|
* 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.
|
2012-10-21 12:01:11 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
2000-10-09 10:23:31 +00:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* From: @(#)mount.c 8.19 (Berkeley) 4/19/94
|
2000-10-10 08:57:30 +00:00
|
|
|
* From: $NetBSD: mount.c,v 1.24 1995/11/18 03:34:29 cgd Exp
|
2012-10-21 12:01:11 +00:00
|
|
|
* $NetBSD: fsck.c,v 1.30 2003/08/07 10:04:15 agc Exp $
|
2000-10-09 10:23:31 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2002-03-24 15:06:48 +00:00
|
|
|
__FBSDID("$FreeBSD$");
|
2000-10-09 10:23:31 +00:00
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/queue.h>
|
|
|
|
#include <sys/wait.h>
|
2014-11-21 01:43:55 +00:00
|
|
|
#include <sys/disk.h>
|
2000-10-09 10:23:31 +00:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
2002-03-24 15:06:48 +00:00
|
|
|
#include <ctype.h>
|
2000-10-09 10:23:31 +00:00
|
|
|
#include <err.h>
|
|
|
|
#include <fstab.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <paths.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "fsutil.h"
|
|
|
|
|
|
|
|
static enum { IN_LIST, NOT_IN_LIST } which = NOT_IN_LIST;
|
|
|
|
|
2011-11-04 13:36:02 +00:00
|
|
|
static TAILQ_HEAD(fstypelist, entry) opthead, selhead;
|
2000-10-09 10:23:31 +00:00
|
|
|
|
|
|
|
struct entry {
|
|
|
|
char *type;
|
|
|
|
char *options;
|
|
|
|
TAILQ_ENTRY(entry) entries;
|
|
|
|
};
|
|
|
|
|
|
|
|
static char *options = NULL;
|
|
|
|
static int flags = 0;
|
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
|
|
|
static int forceflag = 0;
|
2000-10-09 10:23:31 +00:00
|
|
|
|
2012-10-21 12:01:19 +00:00
|
|
|
static int checkfs(const char *, const char *, const char *, const char *, pid_t *);
|
2002-03-20 22:57:10 +00:00
|
|
|
static int selected(const char *);
|
|
|
|
static void addoption(char *);
|
|
|
|
static const char *getoptions(const char *);
|
|
|
|
static void addentry(struct fstypelist *, const char *, const char *);
|
|
|
|
static void maketypelist(char *);
|
|
|
|
static void catopt(char **, const char *);
|
2012-10-21 12:01:19 +00:00
|
|
|
static void mangle(char *, int *, const char ** volatile *, int *);
|
2014-11-21 01:43:55 +00:00
|
|
|
static const char *getfstype(const char *);
|
2002-03-20 22:57:10 +00:00
|
|
|
static void usage(void) __dead2;
|
|
|
|
static int isok(struct fstab *);
|
2000-10-09 10:23:31 +00:00
|
|
|
|
2014-11-21 01:43:55 +00:00
|
|
|
static struct {
|
|
|
|
const char *ptype;
|
|
|
|
const char *name;
|
|
|
|
} ptype_map[] = {
|
|
|
|
{ "ufs", "ffs" },
|
|
|
|
{ "ffs", "ffs" },
|
|
|
|
{ "fat", "msdosfs" },
|
|
|
|
{ "efi", "msdosfs" },
|
|
|
|
{ NULL, NULL },
|
|
|
|
};
|
|
|
|
|
2000-10-09 10:23:31 +00:00
|
|
|
int
|
2002-03-20 22:57:10 +00:00
|
|
|
main(int argc, char *argv[])
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
struct fstab *fs;
|
|
|
|
int i, rval = 0;
|
|
|
|
const char *vfstype = NULL;
|
|
|
|
char globopt[3];
|
2011-10-25 01:46:42 +00:00
|
|
|
const char *etc_fstab;
|
2000-10-09 10:23:31 +00:00
|
|
|
|
|
|
|
globopt[0] = '-';
|
|
|
|
globopt[2] = '\0';
|
|
|
|
|
|
|
|
TAILQ_INIT(&selhead);
|
|
|
|
TAILQ_INIT(&opthead);
|
|
|
|
|
2011-10-25 01:46:42 +00:00
|
|
|
etc_fstab = NULL;
|
|
|
|
while ((i = getopt(argc, argv, "BCdvpfFnyl:t:T:c:")) != -1)
|
2000-10-09 10:23:31 +00:00
|
|
|
switch (i) {
|
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
|
|
|
case 'B':
|
|
|
|
if (flags & CHECK_BACKGRD)
|
|
|
|
errx(1, "Cannot specify -B and -F.");
|
|
|
|
flags |= DO_BACKGRD;
|
|
|
|
break;
|
|
|
|
|
2000-10-09 10:23:31 +00:00
|
|
|
case 'd':
|
|
|
|
flags |= CHECK_DEBUG;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'v':
|
|
|
|
flags |= CHECK_VERBOSE;
|
|
|
|
break;
|
|
|
|
|
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
|
|
|
case 'F':
|
|
|
|
if (flags & DO_BACKGRD)
|
|
|
|
errx(1, "Cannot specify -B and -F.");
|
|
|
|
flags |= CHECK_BACKGRD;
|
|
|
|
break;
|
|
|
|
|
2000-10-09 10:23:31 +00:00
|
|
|
case 'p':
|
|
|
|
flags |= CHECK_PREEN;
|
|
|
|
/*FALLTHROUGH*/
|
2009-01-30 18:33:05 +00:00
|
|
|
case 'C':
|
|
|
|
flags |= CHECK_CLEAN;
|
|
|
|
/*FALLTHROUGH*/
|
2000-10-09 10:23:31 +00:00
|
|
|
case 'n':
|
|
|
|
case 'y':
|
|
|
|
globopt[1] = i;
|
|
|
|
catopt(&options, globopt);
|
|
|
|
break;
|
|
|
|
|
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
|
|
|
case 'f':
|
|
|
|
forceflag = 1;
|
|
|
|
globopt[1] = i;
|
|
|
|
catopt(&options, globopt);
|
|
|
|
break;
|
|
|
|
|
2000-10-09 10:23:31 +00:00
|
|
|
case 'l':
|
2001-03-30 08:01:34 +00:00
|
|
|
warnx("Ignoring obsolete -l option\n");
|
2000-10-09 10:23:31 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 'T':
|
|
|
|
if (*optarg)
|
|
|
|
addoption(optarg);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 't':
|
2000-12-30 21:05:45 +00:00
|
|
|
if (!TAILQ_EMPTY(&selhead))
|
2000-10-09 10:23:31 +00:00
|
|
|
errx(1, "only one -t option may be specified.");
|
|
|
|
|
|
|
|
maketypelist(optarg);
|
|
|
|
vfstype = optarg;
|
|
|
|
break;
|
|
|
|
|
2011-10-25 01:46:42 +00:00
|
|
|
case 'c':
|
|
|
|
etc_fstab = optarg;
|
|
|
|
break;
|
|
|
|
|
2000-10-09 10:23:31 +00:00
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
2011-10-25 01:46:42 +00:00
|
|
|
if (etc_fstab != NULL)
|
|
|
|
setfstab(etc_fstab);
|
|
|
|
|
2000-10-09 10:23:31 +00:00
|
|
|
if (argc == 0)
|
2001-03-30 08:01:34 +00:00
|
|
|
return checkfstab(flags, isok, checkfs);
|
2000-10-09 10:23:31 +00:00
|
|
|
|
|
|
|
#define BADTYPE(type) \
|
|
|
|
(strcmp(type, FSTAB_RO) && \
|
|
|
|
strcmp(type, FSTAB_RW) && strcmp(type, FSTAB_RQ))
|
|
|
|
|
|
|
|
|
|
|
|
for (; argc--; argv++) {
|
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
|
|
|
const char *spec, *mntpt, *type, *cp;
|
|
|
|
char device[MAXPATHLEN];
|
|
|
|
struct statfs *mntp;
|
2000-10-09 10:23:31 +00:00
|
|
|
|
2012-10-21 12:01:19 +00:00
|
|
|
mntpt = NULL;
|
2000-10-09 10:23:31 +00:00
|
|
|
spec = *argv;
|
|
|
|
cp = strrchr(spec, '/');
|
2016-04-18 07:44:53 +00:00
|
|
|
if (cp == NULL) {
|
2000-10-09 10:23:31 +00:00
|
|
|
(void)snprintf(device, sizeof(device), "%s%s",
|
|
|
|
_PATH_DEV, spec);
|
|
|
|
spec = device;
|
|
|
|
}
|
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
|
|
|
mntp = getmntpt(spec);
|
|
|
|
if (mntp != NULL) {
|
|
|
|
spec = mntp->f_mntfromname;
|
|
|
|
mntpt = mntp->f_mntonname;
|
|
|
|
}
|
2000-10-09 10:23:31 +00:00
|
|
|
if ((fs = getfsfile(spec)) == NULL &&
|
|
|
|
(fs = getfsspec(spec)) == NULL) {
|
|
|
|
if (vfstype == NULL)
|
2014-11-21 01:43:55 +00:00
|
|
|
vfstype = getfstype(spec);
|
2002-10-31 15:32:39 +00:00
|
|
|
if (vfstype == NULL)
|
2017-02-18 11:43:13 +00:00
|
|
|
vfstype = "ufs";
|
2000-10-09 10:23:31 +00:00
|
|
|
type = vfstype;
|
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
|
|
|
devcheck(spec);
|
|
|
|
} else {
|
2000-10-09 10:23:31 +00:00
|
|
|
spec = fs->fs_spec;
|
|
|
|
type = fs->fs_vfstype;
|
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
|
|
|
mntpt = fs->fs_file;
|
2000-10-09 10:23:31 +00:00
|
|
|
if (BADTYPE(fs->fs_type))
|
2002-08-21 18:11:48 +00:00
|
|
|
errx(1, "%s has unknown file system type.",
|
2000-10-09 10:23:31 +00:00
|
|
|
spec);
|
|
|
|
}
|
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
|
|
|
if ((flags & CHECK_BACKGRD) &&
|
|
|
|
checkfs(type, spec, mntpt, "-F", NULL) == 0) {
|
|
|
|
printf("%s: DEFER FOR BACKGROUND CHECKING\n", *argv);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ((flags & DO_BACKGRD) && forceflag == 0 &&
|
|
|
|
checkfs(type, spec, mntpt, "-F", NULL) != 0)
|
|
|
|
continue;
|
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
|
|
|
rval |= checkfs(type, spec, mntpt, NULL, NULL);
|
2000-10-09 10:23:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return rval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
static int
|
2002-03-20 22:57:10 +00:00
|
|
|
isok(struct fstab *fs)
|
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
|
|
|
int i;
|
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
|
|
|
if (fs->fs_passno == 0)
|
|
|
|
return (0);
|
2000-10-09 10:23:31 +00:00
|
|
|
if (BADTYPE(fs->fs_type))
|
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
|
|
|
return (0);
|
2000-10-09 10:23:31 +00:00
|
|
|
if (!selected(fs->fs_vfstype))
|
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
|
|
|
return (0);
|
|
|
|
/*
|
|
|
|
* If the -B flag has been given, then process the needed
|
|
|
|
* background checks. Background checks cannot be run on
|
2002-08-21 18:11:48 +00:00
|
|
|
* file systems that will be mounted read-only or that were
|
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
|
|
|
* not mounted at boot time (typically those marked `noauto').
|
2002-08-21 18:11:48 +00:00
|
|
|
* If these basic tests are passed, check with the file system
|
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
|
|
|
* itself to see if it is willing to do background checking
|
|
|
|
* by invoking its check program with the -F flag.
|
|
|
|
*/
|
|
|
|
if (flags & DO_BACKGRD) {
|
|
|
|
if (!strcmp(fs->fs_type, FSTAB_RO))
|
|
|
|
return (0);
|
|
|
|
if (getmntpt(fs->fs_spec) == NULL)
|
|
|
|
return (0);
|
|
|
|
if (checkfs(fs->fs_vfstype, fs->fs_spec, fs->fs_file, "-F", 0))
|
|
|
|
return (0);
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* If the -F flag has been given, then consider deferring the
|
|
|
|
* check to background. Background checks cannot be run on
|
2002-08-21 18:11:48 +00:00
|
|
|
* file systems that will be mounted read-only or that will
|
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
|
|
|
* not be mounted at boot time (e.g., marked `noauto'). If
|
2002-08-21 18:11:48 +00:00
|
|
|
* these basic tests are passed, check with the file system
|
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
|
|
|
* itself to see if it is willing to defer to background
|
|
|
|
* checking by invoking its check program with the -F flag.
|
|
|
|
*/
|
|
|
|
if ((flags & CHECK_BACKGRD) == 0 || !strcmp(fs->fs_type, FSTAB_RO))
|
|
|
|
return (1);
|
|
|
|
for (i = strlen(fs->fs_mntops) - 6; i >= 0; i--)
|
|
|
|
if (!strncmp(&fs->fs_mntops[i], "noauto", 6))
|
|
|
|
break;
|
|
|
|
if (i >= 0)
|
|
|
|
return (1);
|
|
|
|
if (checkfs(fs->fs_vfstype, fs->fs_spec, fs->fs_file, "-F", NULL) != 0)
|
|
|
|
return (1);
|
|
|
|
printf("%s: DEFER FOR BACKGROUND CHECKING\n", fs->fs_spec);
|
|
|
|
return (0);
|
2000-10-09 10:23:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2003-04-25 01:12:35 +00:00
|
|
|
checkfs(const char *pvfstype, const char *spec, const char *mntpt,
|
2012-10-21 12:01:19 +00:00
|
|
|
const char *auxopt, pid_t *pidp)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
2012-10-21 12:01:19 +00:00
|
|
|
const char ** volatile argv;
|
2000-10-09 10:23:31 +00:00
|
|
|
pid_t pid;
|
|
|
|
int argc, i, status, maxargc;
|
2003-06-29 17:53:48 +00:00
|
|
|
char *optbuf, execbase[MAXPATHLEN];
|
2003-04-25 01:12:35 +00:00
|
|
|
char *vfstype = NULL;
|
2000-10-09 10:23:31 +00:00
|
|
|
const char *extra = NULL;
|
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
/* Avoid vfork clobbering */
|
|
|
|
(void) &optbuf;
|
|
|
|
(void) &vfstype;
|
|
|
|
#endif
|
2003-04-25 01:12:35 +00:00
|
|
|
/*
|
|
|
|
* We convert the vfstype to lowercase and any spaces to underscores
|
|
|
|
* to not confuse the issue
|
|
|
|
*
|
|
|
|
* XXX This is a kludge to make automatic filesystem type guessing
|
|
|
|
* from the disklabel work for "4.2BSD" filesystems. It does a
|
|
|
|
* very limited subset of transliteration to a normalised form of
|
|
|
|
* filesystem name, and we do not seem to enforce a filesystem
|
|
|
|
* name character set.
|
|
|
|
*/
|
|
|
|
vfstype = strdup(pvfstype);
|
|
|
|
if (vfstype == NULL)
|
2012-10-21 12:01:11 +00:00
|
|
|
perr("strdup(pvfstype)");
|
2012-10-21 12:01:19 +00:00
|
|
|
for (i = 0; i < (int)strlen(vfstype); i++) {
|
2003-04-25 01:12:35 +00:00
|
|
|
vfstype[i] = tolower(vfstype[i]);
|
|
|
|
if (vfstype[i] == ' ')
|
|
|
|
vfstype[i] = '_';
|
|
|
|
}
|
2000-10-09 10:23:31 +00:00
|
|
|
|
|
|
|
extra = getoptions(vfstype);
|
|
|
|
optbuf = NULL;
|
|
|
|
if (options)
|
|
|
|
catopt(&optbuf, options);
|
|
|
|
if (extra)
|
|
|
|
catopt(&optbuf, extra);
|
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
|
|
|
if (auxopt)
|
|
|
|
catopt(&optbuf, auxopt);
|
|
|
|
else if (flags & DO_BACKGRD)
|
|
|
|
catopt(&optbuf, "-B");
|
2000-10-09 10:23:31 +00:00
|
|
|
|
|
|
|
maxargc = 64;
|
|
|
|
argv = emalloc(sizeof(char *) * maxargc);
|
|
|
|
|
|
|
|
(void) snprintf(execbase, sizeof(execbase), "fsck_%s", vfstype);
|
|
|
|
argc = 0;
|
|
|
|
argv[argc++] = execbase;
|
|
|
|
if (optbuf)
|
|
|
|
mangle(optbuf, &argc, &argv, &maxargc);
|
|
|
|
argv[argc++] = spec;
|
|
|
|
argv[argc] = NULL;
|
|
|
|
|
|
|
|
if (flags & (CHECK_DEBUG|CHECK_VERBOSE)) {
|
|
|
|
(void)printf("start %s %swait", mntpt,
|
|
|
|
pidp ? "no" : "");
|
|
|
|
for (i = 0; i < argc; i++)
|
|
|
|
(void)printf(" %s", argv[i]);
|
|
|
|
(void)printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (pid = vfork()) {
|
|
|
|
case -1: /* Error. */
|
|
|
|
warn("vfork");
|
|
|
|
if (optbuf)
|
|
|
|
free(optbuf);
|
2003-04-25 01:12:35 +00:00
|
|
|
free(vfstype);
|
2000-10-09 10:23:31 +00:00
|
|
|
return (1);
|
|
|
|
|
|
|
|
case 0: /* Child. */
|
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
|
|
|
if ((flags & CHECK_DEBUG) && auxopt == NULL)
|
2000-10-09 10:23:31 +00:00
|
|
|
_exit(0);
|
|
|
|
|
|
|
|
/* Go find an executable. */
|
2012-10-21 12:01:19 +00:00
|
|
|
execvP(execbase, _PATH_SYSPATH, __DECONST(char * const *, argv));
|
2003-06-29 17:53:48 +00:00
|
|
|
if (spec)
|
|
|
|
warn("exec %s for %s in %s", execbase, spec, _PATH_SYSPATH);
|
|
|
|
else
|
|
|
|
warn("exec %s in %s", execbase, _PATH_SYSPATH);
|
2000-10-09 10:23:31 +00:00
|
|
|
_exit(1);
|
|
|
|
/* NOTREACHED */
|
|
|
|
|
|
|
|
default: /* Parent. */
|
|
|
|
if (optbuf)
|
|
|
|
free(optbuf);
|
|
|
|
|
2003-04-25 01:12:35 +00:00
|
|
|
free(vfstype);
|
|
|
|
|
2000-10-09 10:23:31 +00:00
|
|
|
if (pidp) {
|
|
|
|
*pidp = pid;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (waitpid(pid, &status, 0) < 0) {
|
|
|
|
warn("waitpid");
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (WIFEXITED(status)) {
|
|
|
|
if (WEXITSTATUS(status) != 0)
|
|
|
|
return (WEXITSTATUS(status));
|
|
|
|
}
|
|
|
|
else if (WIFSIGNALED(status)) {
|
|
|
|
warnx("%s: %s", spec, strsignal(WTERMSIG(status)));
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
2002-03-20 22:57:10 +00:00
|
|
|
selected(const char *type)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
struct entry *e;
|
|
|
|
|
|
|
|
/* If no type specified, it's always selected. */
|
2000-12-30 21:05:45 +00:00
|
|
|
TAILQ_FOREACH(e, &selhead, entries)
|
2000-10-09 10:23:31 +00:00
|
|
|
if (!strncmp(e->type, type, MFSNAMELEN))
|
|
|
|
return which == IN_LIST ? 1 : 0;
|
|
|
|
|
|
|
|
return which == IN_LIST ? 0 : 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static const char *
|
2002-03-20 22:57:10 +00:00
|
|
|
getoptions(const char *type)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
struct entry *e;
|
|
|
|
|
2000-12-30 21:05:45 +00:00
|
|
|
TAILQ_FOREACH(e, &opthead, entries)
|
2000-10-09 10:23:31 +00:00
|
|
|
if (!strncmp(e->type, type, MFSNAMELEN))
|
|
|
|
return e->options;
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2002-03-20 22:57:10 +00:00
|
|
|
addoption(char *optstr)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
char *newoptions;
|
|
|
|
struct entry *e;
|
|
|
|
|
|
|
|
if ((newoptions = strchr(optstr, ':')) == NULL)
|
|
|
|
errx(1, "Invalid option string");
|
|
|
|
|
|
|
|
*newoptions++ = '\0';
|
|
|
|
|
2000-12-30 21:05:45 +00:00
|
|
|
TAILQ_FOREACH(e, &opthead, entries)
|
2000-10-09 10:23:31 +00:00
|
|
|
if (!strncmp(e->type, optstr, MFSNAMELEN)) {
|
|
|
|
catopt(&e->options, newoptions);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
addentry(&opthead, optstr, newoptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2002-03-20 22:57:10 +00:00
|
|
|
addentry(struct fstypelist *list, const char *type, const char *opts)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
struct entry *e;
|
|
|
|
|
|
|
|
e = emalloc(sizeof(struct entry));
|
|
|
|
e->type = estrdup(type);
|
|
|
|
e->options = estrdup(opts);
|
|
|
|
TAILQ_INSERT_TAIL(list, e, entries);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2002-03-20 22:57:10 +00:00
|
|
|
maketypelist(char *fslist)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
char *ptr;
|
|
|
|
|
|
|
|
if ((fslist == NULL) || (fslist[0] == '\0'))
|
|
|
|
errx(1, "empty type list");
|
|
|
|
|
|
|
|
if (fslist[0] == 'n' && fslist[1] == 'o') {
|
|
|
|
fslist += 2;
|
|
|
|
which = NOT_IN_LIST;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
which = IN_LIST;
|
|
|
|
|
|
|
|
while ((ptr = strsep(&fslist, ",")) != NULL)
|
|
|
|
addentry(&selhead, ptr, "");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2002-03-20 22:57:10 +00:00
|
|
|
catopt(char **sp, const char *o)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
char *s;
|
|
|
|
size_t i, j;
|
|
|
|
|
|
|
|
s = *sp;
|
|
|
|
if (s) {
|
|
|
|
i = strlen(s);
|
|
|
|
j = i + 1 + strlen(o) + 1;
|
|
|
|
s = erealloc(s, j);
|
|
|
|
(void)snprintf(s + i, j, ",%s", o);
|
|
|
|
} else
|
|
|
|
s = estrdup(o);
|
|
|
|
*sp = s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2012-10-21 12:01:19 +00:00
|
|
|
mangle(char *opts, int *argcp, const char ** volatile *argvp, int *maxargcp)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
char *p, *s;
|
|
|
|
int argc, maxargc;
|
|
|
|
const char **argv;
|
|
|
|
|
|
|
|
argc = *argcp;
|
|
|
|
argv = *argvp;
|
|
|
|
maxargc = *maxargcp;
|
|
|
|
|
2012-10-21 12:01:11 +00:00
|
|
|
for (s = opts; (p = strsep(&s, ",")) != NULL;) {
|
2000-10-09 10:23:31 +00:00
|
|
|
/* Always leave space for one more argument and the NULL. */
|
|
|
|
if (argc >= maxargc - 3) {
|
|
|
|
maxargc <<= 1;
|
|
|
|
argv = erealloc(argv, maxargc * sizeof(char *));
|
|
|
|
}
|
|
|
|
if (*p != '\0') {
|
|
|
|
if (*p == '-') {
|
|
|
|
argv[argc++] = p;
|
|
|
|
p = strchr(p, '=');
|
|
|
|
if (p) {
|
|
|
|
*p = '\0';
|
|
|
|
argv[argc++] = p+1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
argv[argc++] = "-o";
|
|
|
|
argv[argc++] = p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*argcp = argc;
|
|
|
|
*argvp = argv;
|
|
|
|
*maxargcp = maxargc;
|
|
|
|
}
|
|
|
|
|
2012-10-21 12:01:19 +00:00
|
|
|
static const char *
|
2014-11-21 01:43:55 +00:00
|
|
|
getfstype(const char *str)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
2014-11-21 01:43:55 +00:00
|
|
|
struct diocgattr_arg attr;
|
|
|
|
int fd, i;
|
2000-10-09 10:23:31 +00:00
|
|
|
|
|
|
|
if ((fd = open(str, O_RDONLY)) == -1)
|
|
|
|
err(1, "cannot open `%s'", str);
|
|
|
|
|
2014-11-21 01:43:55 +00:00
|
|
|
strncpy(attr.name, "PART::type", sizeof(attr.name));
|
|
|
|
memset(&attr.value, 0, sizeof(attr.value));
|
|
|
|
attr.len = sizeof(attr.value);
|
|
|
|
if (ioctl(fd, DIOCGATTR, &attr) == -1) {
|
2009-11-20 15:27:00 +00:00
|
|
|
(void) close(fd);
|
2002-10-31 15:32:39 +00:00
|
|
|
return(NULL);
|
2009-11-20 15:27:00 +00:00
|
|
|
}
|
2000-10-09 10:23:31 +00:00
|
|
|
(void) close(fd);
|
2014-11-21 01:43:55 +00:00
|
|
|
for (i = 0; ptype_map[i].ptype != NULL; i++)
|
|
|
|
if (strstr(attr.value.str, ptype_map[i].ptype) != NULL)
|
|
|
|
return (ptype_map[i].name);
|
|
|
|
return (NULL);
|
2000-10-09 10:23:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
2002-03-20 22:57:10 +00:00
|
|
|
usage(void)
|
2000-10-09 10:23:31 +00:00
|
|
|
{
|
|
|
|
static const char common[] =
|
2011-10-25 01:46:42 +00:00
|
|
|
"[-Cdfnpvy] [-B | -F] [-T fstype:fsoptions] [-t fstype] [-c fstab]";
|
2000-10-09 10:23:31 +00:00
|
|
|
|
2005-02-10 09:19:34 +00:00
|
|
|
(void)fprintf(stderr, "usage: %s %s [special | node] ...\n",
|
2002-03-24 15:06:48 +00:00
|
|
|
getprogname(), common);
|
2000-10-09 10:23:31 +00:00
|
|
|
exit(1);
|
|
|
|
}
|