NetBSD/sbin/umount/umount.c

392 lines
8.8 KiB
C
Raw Normal View History

1997-09-16 16:24:05 +04:00
/* $NetBSD: umount.c,v 1.20 1997/09/16 12:24:06 lukem Exp $ */
1993-03-21 12:45:37 +03:00
/*-
* Copyright (c) 1980, 1989, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* 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.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 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.
*/
1997-09-15 15:33:59 +04:00
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#ifndef lint
1997-09-15 15:33:59 +04:00
__COPYRIGHT("@(#) Copyright (c) 1980, 1989, 1993\n\
The Regents of the University of California. All rights reserved.\n");
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#ifndef lint
#if 0
1997-09-16 16:24:05 +04:00
static char sccsid[] = "@(#)umount.c 8.8 (Berkeley) 5/8/95";
#else
1997-09-16 16:24:05 +04:00
__RCSID("$NetBSD: umount.c,v 1.20 1997/09/16 12:24:06 lukem Exp $");
#endif
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#include <sys/param.h>
#include <sys/stat.h>
#include <sys/mount.h>
#include <sys/time.h>
#include <sys/socket.h>
#include <sys/socketvar.h>
1993-03-21 12:45:37 +03:00
#include <netdb.h>
#include <rpc/rpc.h>
#include <rpc/pmap_clnt.h>
#include <rpc/pmap_prot.h>
#include <nfs/rpcv2.h>
1994-04-14 07:25:14 +04:00
#include <err.h>
1993-03-21 12:45:37 +03:00
#include <fstab.h>
#include <stdio.h>
1994-04-14 07:25:14 +04:00
#include <stdlib.h>
#include <string.h>
1994-04-14 07:25:14 +04:00
#include <unistd.h>
1993-03-21 12:45:37 +03:00
1997-05-22 02:26:38 +04:00
typedef enum { MNTANY, MNTON, MNTFROM } mntwhat;
1993-03-21 12:45:37 +03:00
int fake, fflag, verbose;
char *nfshost;
1993-03-21 12:45:37 +03:00
1997-09-16 16:24:05 +04:00
int checkvfsname __P((const char *, char **));
char *getmntname __P((char *, mntwhat, char **));
char **makevfslist __P((char *));
1997-09-15 15:33:59 +04:00
int main __P((int, char *[]));
int namematch __P((struct hostent *));
1997-09-16 16:24:05 +04:00
int selected __P((int));
int umountall __P((char **));
int umountfs __P((char *, char **));
void usage __P((void));
int xdr_dir __P((XDR *, char *));
1994-04-14 07:25:14 +04:00
int
1993-03-21 12:45:37 +03:00
main(argc, argv)
int argc;
char *argv[];
1993-03-21 12:45:37 +03:00
{
1997-09-16 16:24:05 +04:00
int all, ch, errs, mnts;
char **typelist = NULL;
struct statfs *mntbuf;
1993-03-21 12:45:37 +03:00
/* Start disks transferring immediately. */
1993-03-21 12:45:37 +03:00
sync();
all = 0;
1997-09-16 16:24:05 +04:00
while ((ch = getopt(argc, argv, "AaFfh:t:v")) != -1)
switch (ch) {
1997-09-16 16:24:05 +04:00
case 'A':
all = 2;
break;
case 'a':
all = 1;
break;
case 'F':
fake = 1;
1993-03-21 12:45:37 +03:00
break;
case 'f':
fflag = MNT_FORCE;
break;
1997-09-16 16:24:05 +04:00
case 'h': /* -h implies -A. */
all = 2;
nfshost = optarg;
1993-03-21 12:45:37 +03:00
break;
case 't':
if (typelist != NULL)
errx(1, "only one -t option may be specified.");
1997-09-16 16:24:05 +04:00
typelist = makevfslist(optarg);
1993-03-21 12:45:37 +03:00
break;
case 'v':
verbose = 1;
1993-03-21 12:45:37 +03:00
break;
default:
usage();
/* NOTREACHED */
}
argc -= optind;
argv += optind;
1997-09-15 15:33:59 +04:00
if ((argc == 0 && !all) || (argc != 0 && all))
1993-03-21 12:45:37 +03:00
usage();
/* -h implies "-t nfs" if no -t flag. */
if ((nfshost != NULL) && (typelist == NULL))
1997-09-16 16:24:05 +04:00
typelist = makevfslist("nfs");
1997-09-16 16:24:05 +04:00
errs = 0;
switch (all) {
case 2:
if ((mnts = getmntinfo(&mntbuf, MNT_NOWAIT)) == 0) {
warn("getmntinfo");
errs = 1;
break;
}
for (errs = 0, mnts--; mnts > 0; mnts--) {
if (checkvfsname(mntbuf[mnts].f_fstypename, typelist))
continue;
if (umountfs(mntbuf[mnts].f_mntonname, typelist) != 0)
errs = 1;
}
break;
case 1:
if (setfsent() == 0)
err(1, "%s", _PATH_FSTAB);
errs = umountall(typelist);
break;
case 0:
for (errs = 0; *argv != NULL; ++argv)
1997-09-16 16:24:05 +04:00
if (umountfs(*argv, typelist) != 0)
errs = 1;
1997-09-16 16:24:05 +04:00
break;
}
1993-03-21 12:45:37 +03:00
exit(errs);
}
1997-09-16 16:24:05 +04:00
int
1997-09-16 16:24:05 +04:00
umountall(typelist)
char **typelist;
1993-03-21 12:45:37 +03:00
{
struct statfs *fs;
int n;
int rval;
n = getmntinfo(&fs, MNT_NOWAIT);
if (n == 0)
1997-09-15 15:33:59 +04:00
err(1, "%s", "");
rval = 0;
while (--n >= 0) {
/* Ignore the root. */
if (strncmp(fs[n].f_mntonname, "/", MNAMELEN) == 0)
continue;
1997-09-16 16:24:05 +04:00
if (checkvfsname(fs[n].f_fstypename, typelist))
continue;
1997-09-16 16:24:05 +04:00
if (umountfs(fs[n].f_mntonname, typelist))
rval = 1;
1993-03-21 12:45:37 +03:00
}
return (rval);
1993-03-21 12:45:37 +03:00
}
1994-04-14 07:25:14 +04:00
int
1997-09-16 16:24:05 +04:00
umountfs(name, typelist)
1993-03-21 12:45:37 +03:00
char *name;
1997-09-16 16:24:05 +04:00
char **typelist;
1993-03-21 12:45:37 +03:00
{
enum clnt_stat clnt_stat;
struct hostent *hp;
1993-03-21 12:45:37 +03:00
struct sockaddr_in saddr;
struct stat sb;
1993-03-21 12:45:37 +03:00
struct timeval pertry, try;
CLIENT *clp;
int so;
1997-09-16 16:24:05 +04:00
char *type, *delimp, *hostp, *mntpt, rname[MAXPATHLEN];
1997-05-22 02:26:38 +04:00
mntwhat what;
1997-09-15 15:33:59 +04:00
hp = NULL;
delimp = NULL;
if (realpath(name, rname) == NULL) {
warn("%s", rname);
return (1);
}
1997-05-22 02:26:38 +04:00
what = MNTANY;
mntpt = name = rname;
1997-05-22 02:26:38 +04:00
if (stat(name, &sb) == 0) {
if (S_ISBLK(sb.st_mode))
what = MNTON;
else if (S_ISDIR(sb.st_mode))
what = MNTFROM;
}
switch (what) {
case MNTON:
1997-09-16 16:24:05 +04:00
if ((mntpt = getmntname(name, MNTON, &type)) == NULL) {
1997-05-22 02:26:38 +04:00
warnx("%s: not currently mounted", name);
return (1);
}
break;
case MNTFROM:
1997-09-16 16:24:05 +04:00
if ((name = getmntname(mntpt, MNTFROM, &type)) == NULL) {
1997-05-22 02:26:38 +04:00
warnx("%s: not currently mounted", mntpt);
return (1);
1993-03-21 12:45:37 +03:00
}
1997-05-22 02:26:38 +04:00
break;
default:
1997-09-16 16:24:05 +04:00
if ((name = getmntname(mntpt, MNTFROM, &type)) == NULL) {
name = rname;
1997-09-16 16:24:05 +04:00
if ((mntpt = getmntname(name, MNTON, &type)) == NULL) {
warnx("%s: not currently mounted", name);
return (1);
}
1993-03-21 12:45:37 +03:00
}
}
1997-09-16 16:24:05 +04:00
if (checkvfsname(type, typelist))
return (1);
1997-09-16 16:24:05 +04:00
hp = NULL;
if (!strncmp(type, MOUNT_NFS, MFSNAMELEN)) {
if ((delimp = strchr(name, '@')) != NULL) {
hostp = delimp + 1;
*delimp = '\0';
hp = gethostbyname(hostp);
*delimp = '@';
} else if ((delimp = strchr(name, ':')) != NULL) {
*delimp = '\0';
hostp = name;
hp = gethostbyname(hostp);
name = delimp + 1;
*delimp = ':';
1997-09-16 16:24:05 +04:00
}
}
1993-03-21 12:45:37 +03:00
1997-09-16 16:24:05 +04:00
if (!namematch(hp))
return (1);
if (verbose)
(void)printf("%s: unmount from %s\n", name, mntpt);
if (fake)
1993-03-21 12:45:37 +03:00
return (0);
if (unmount(mntpt, fflag) < 0) {
warn("%s", mntpt);
return (1);
1993-03-21 12:45:37 +03:00
}
if (!strncmp(type, MOUNT_NFS, MFSNAMELEN) &&
(hp != NULL) && !(fflag & MNT_FORCE)) {
1993-03-21 12:45:37 +03:00
*delimp = '\0';
memset(&saddr, 0, sizeof(saddr));
1993-03-21 12:45:37 +03:00
saddr.sin_family = AF_INET;
saddr.sin_port = 0;
memmove(&saddr.sin_addr, hp->h_addr, hp->h_length);
1993-03-21 12:45:37 +03:00
pertry.tv_sec = 3;
pertry.tv_usec = 0;
so = RPC_ANYSOCK;
if ((clp = clntudp_create(&saddr,
RPCPROG_MNT, RPCMNT_VER1, pertry, &so)) == NULL) {
1993-03-21 12:45:37 +03:00
clnt_pcreateerror("Cannot MNT PRC");
return (1);
}
clp->cl_auth = authunix_create_default();
try.tv_sec = 20;
try.tv_usec = 0;
clnt_stat = clnt_call(clp,
RPCMNT_UMOUNT, xdr_dir, name, xdr_void, (caddr_t)0, try);
1993-03-21 12:45:37 +03:00
if (clnt_stat != RPC_SUCCESS) {
clnt_perror(clp, "Bad MNT RPC");
return (1);
}
auth_destroy(clp->cl_auth);
clnt_destroy(clp);
}
return (0);
1993-03-21 12:45:37 +03:00
}
char *
getmntname(name, what, type)
char *name;
mntwhat what;
1997-09-16 16:24:05 +04:00
char **type;
1993-03-21 12:45:37 +03:00
{
1997-09-16 16:24:05 +04:00
static struct statfs *mntbuf;
static int mntsize;
int i;
1993-03-21 12:45:37 +03:00
1997-09-16 16:24:05 +04:00
if (mntbuf == NULL &&
(mntsize = getmntinfo(&mntbuf, MNT_NOWAIT)) == 0) {
warn("getmntinfo");
return (NULL);
1993-03-21 12:45:37 +03:00
}
for (i = 0; i < mntsize; i++) {
if ((what == MNTON) && !strcmp(mntbuf[i].f_mntfromname, name)) {
if (type)
1997-09-16 16:24:05 +04:00
*type = mntbuf[i].f_fstypename;
1993-03-21 12:45:37 +03:00
return (mntbuf[i].f_mntonname);
}
if ((what == MNTFROM) && !strcmp(mntbuf[i].f_mntonname, name)) {
if (type)
1997-09-16 16:24:05 +04:00
*type = mntbuf[i].f_fstypename;
1993-03-21 12:45:37 +03:00
return (mntbuf[i].f_mntfromname);
}
}
return (NULL);
1993-03-21 12:45:37 +03:00
}
1994-04-14 07:25:14 +04:00
int
namematch(hp)
1993-03-21 12:45:37 +03:00
struct hostent *hp;
{
char *cp, **np;
if ((hp == NULL) || (nfshost == NULL))
return (1);
1993-03-21 12:45:37 +03:00
if (strcasecmp(nfshost, hp->h_name) == 0)
return (1);
1994-04-14 07:25:14 +04:00
if ((cp = strchr(hp->h_name, '.')) != NULL) {
1993-03-21 12:45:37 +03:00
*cp = '\0';
if (strcasecmp(nfshost, hp->h_name) == 0)
return (1);
1993-03-21 12:45:37 +03:00
}
for (np = hp->h_aliases; *np; np++) {
if (strcasecmp(nfshost, *np) == 0)
return (1);
1994-04-14 07:25:14 +04:00
if ((cp = strchr(*np, '.')) != NULL) {
1993-03-21 12:45:37 +03:00
*cp = '\0';
if (strcasecmp(nfshost, *np) == 0)
return (1);
1993-03-21 12:45:37 +03:00
}
}
return (0);
1993-03-21 12:45:37 +03:00
}
/*
* xdr routines for mount rpc's
*/
1994-04-14 07:25:14 +04:00
int
1993-03-21 12:45:37 +03:00
xdr_dir(xdrsp, dirp)
XDR *xdrsp;
char *dirp;
{
return (xdr_string(xdrsp, &dirp, RPCMNT_PATHLEN));
}
void
usage()
{
(void)fprintf(stderr,
"usage: %s\n %s\n",
"umount [-fv] [-t fstypelist] special | node",
"umount -a[fv] [-h host] [-t fstypelist]");
exit(1);
}