umount.c revision 1.28 1 1.28 fvdl /* $NetBSD: umount.c,v 1.28 2000/06/20 00:45:24 fvdl Exp $ */
2 1.13 cgd
3 1.1 cgd /*-
4 1.7 mycroft * Copyright (c) 1980, 1989, 1993
5 1.7 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by the University of
18 1.1 cgd * California, Berkeley and its contributors.
19 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
20 1.1 cgd * may be used to endorse or promote products derived from this software
21 1.1 cgd * without specific prior written permission.
22 1.1 cgd *
23 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 cgd * SUCH DAMAGE.
34 1.1 cgd */
35 1.1 cgd
36 1.19 lukem #include <sys/cdefs.h>
37 1.1 cgd #ifndef lint
38 1.19 lukem __COPYRIGHT("@(#) Copyright (c) 1980, 1989, 1993\n\
39 1.19 lukem The Regents of the University of California. All rights reserved.\n");
40 1.1 cgd #endif /* not lint */
41 1.1 cgd
42 1.1 cgd #ifndef lint
43 1.13 cgd #if 0
44 1.20 lukem static char sccsid[] = "@(#)umount.c 8.8 (Berkeley) 5/8/95";
45 1.13 cgd #else
46 1.28 fvdl __RCSID("$NetBSD: umount.c,v 1.28 2000/06/20 00:45:24 fvdl Exp $");
47 1.13 cgd #endif
48 1.1 cgd #endif /* not lint */
49 1.1 cgd
50 1.1 cgd #include <sys/param.h>
51 1.1 cgd #include <sys/stat.h>
52 1.1 cgd #include <sys/mount.h>
53 1.1 cgd #include <sys/time.h>
54 1.1 cgd #include <sys/socket.h>
55 1.7 mycroft
56 1.1 cgd #include <netdb.h>
57 1.1 cgd #include <rpc/rpc.h>
58 1.1 cgd #include <rpc/pmap_clnt.h>
59 1.1 cgd #include <rpc/pmap_prot.h>
60 1.1 cgd #include <nfs/rpcv2.h>
61 1.1 cgd
62 1.6 cgd #include <err.h>
63 1.1 cgd #include <fstab.h>
64 1.1 cgd #include <stdio.h>
65 1.7 mycroft #include <stdlib.h>
66 1.1 cgd #include <string.h>
67 1.6 cgd #include <unistd.h>
68 1.1 cgd
69 1.18 pk typedef enum { MNTANY, MNTON, MNTFROM } mntwhat;
70 1.7 mycroft
71 1.24 fair int fake, fflag, verbose, raw;
72 1.7 mycroft char *nfshost;
73 1.28 fvdl struct addrinfo *nfshost_ai = NULL;
74 1.7 mycroft
75 1.20 lukem int checkvfsname __P((const char *, char **));
76 1.20 lukem char *getmntname __P((char *, mntwhat, char **));
77 1.20 lukem char **makevfslist __P((char *));
78 1.19 lukem int main __P((int, char *[]));
79 1.28 fvdl int namematch __P((struct addrinfo *));
80 1.28 fvdl int sacmp __P((struct sockaddr *, struct sockaddr *));
81 1.20 lukem int selected __P((int));
82 1.20 lukem int umountfs __P((char *, char **));
83 1.7 mycroft void usage __P((void));
84 1.7 mycroft int xdr_dir __P((XDR *, char *));
85 1.6 cgd
86 1.6 cgd int
87 1.1 cgd main(argc, argv)
88 1.1 cgd int argc;
89 1.7 mycroft char *argv[];
90 1.1 cgd {
91 1.20 lukem int all, ch, errs, mnts;
92 1.20 lukem char **typelist = NULL;
93 1.20 lukem struct statfs *mntbuf;
94 1.28 fvdl struct addrinfo hints;
95 1.1 cgd
96 1.7 mycroft /* Start disks transferring immediately. */
97 1.1 cgd sync();
98 1.7 mycroft
99 1.7 mycroft all = 0;
100 1.24 fair while ((ch = getopt(argc, argv, "AaFfRh:t:v")) != -1)
101 1.7 mycroft switch (ch) {
102 1.20 lukem case 'A':
103 1.7 mycroft case 'a':
104 1.7 mycroft all = 1;
105 1.7 mycroft break;
106 1.7 mycroft case 'F':
107 1.7 mycroft fake = 1;
108 1.1 cgd break;
109 1.1 cgd case 'f':
110 1.1 cgd fflag = MNT_FORCE;
111 1.1 cgd break;
112 1.20 lukem case 'h': /* -h implies -A. */
113 1.27 chs all = 1;
114 1.7 mycroft nfshost = optarg;
115 1.1 cgd break;
116 1.24 fair case 'R':
117 1.24 fair raw = 1;
118 1.24 fair break;
119 1.1 cgd case 't':
120 1.12 mycroft if (typelist != NULL)
121 1.12 mycroft errx(1, "only one -t option may be specified.");
122 1.20 lukem typelist = makevfslist(optarg);
123 1.1 cgd break;
124 1.7 mycroft case 'v':
125 1.12 mycroft verbose = 1;
126 1.1 cgd break;
127 1.1 cgd default:
128 1.1 cgd usage();
129 1.1 cgd /* NOTREACHED */
130 1.1 cgd }
131 1.1 cgd argc -= optind;
132 1.1 cgd argv += optind;
133 1.1 cgd
134 1.24 fair if ((argc == 0 && !all) || (argc != 0 && all) || (all && raw))
135 1.1 cgd usage();
136 1.7 mycroft
137 1.7 mycroft /* -h implies "-t nfs" if no -t flag. */
138 1.7 mycroft if ((nfshost != NULL) && (typelist == NULL))
139 1.20 lukem typelist = makevfslist("nfs");
140 1.28 fvdl
141 1.28 fvdl if (nfshost != NULL) {
142 1.28 fvdl memset(&hints, 0, sizeof hints);
143 1.28 fvdl getaddrinfo(nfshost, NULL, &hints, &nfshost_ai);
144 1.28 fvdl }
145 1.7 mycroft
146 1.20 lukem errs = 0;
147 1.27 chs if (all) {
148 1.20 lukem if ((mnts = getmntinfo(&mntbuf, MNT_NOWAIT)) == 0) {
149 1.20 lukem warn("getmntinfo");
150 1.20 lukem errs = 1;
151 1.20 lukem }
152 1.20 lukem for (errs = 0, mnts--; mnts > 0; mnts--) {
153 1.20 lukem if (checkvfsname(mntbuf[mnts].f_fstypename, typelist))
154 1.20 lukem continue;
155 1.20 lukem if (umountfs(mntbuf[mnts].f_mntonname, typelist) != 0)
156 1.20 lukem errs = 1;
157 1.20 lukem }
158 1.27 chs } else {
159 1.7 mycroft for (errs = 0; *argv != NULL; ++argv)
160 1.20 lukem if (umountfs(*argv, typelist) != 0)
161 1.7 mycroft errs = 1;
162 1.20 lukem }
163 1.1 cgd exit(errs);
164 1.1 cgd }
165 1.1 cgd
166 1.6 cgd int
167 1.20 lukem umountfs(name, typelist)
168 1.1 cgd char *name;
169 1.20 lukem char **typelist;
170 1.1 cgd {
171 1.7 mycroft enum clnt_stat clnt_stat;
172 1.7 mycroft struct stat sb;
173 1.28 fvdl struct timeval try;
174 1.7 mycroft CLIENT *clp;
175 1.20 lukem char *type, *delimp, *hostp, *mntpt, rname[MAXPATHLEN];
176 1.18 pk mntwhat what;
177 1.28 fvdl struct addrinfo *ai, hints;
178 1.7 mycroft
179 1.19 lukem delimp = NULL;
180 1.7 mycroft
181 1.24 fair if (raw) {
182 1.24 fair mntpt = name;
183 1.24 fair } else {
184 1.7 mycroft
185 1.24 fair if (realpath(name, rname) == NULL) {
186 1.24 fair warn("%s", rname);
187 1.18 pk return (1);
188 1.18 pk }
189 1.24 fair
190 1.24 fair what = MNTANY;
191 1.24 fair mntpt = name = rname;
192 1.24 fair
193 1.24 fair if (stat(name, &sb) == 0) {
194 1.24 fair if (S_ISBLK(sb.st_mode))
195 1.24 fair what = MNTON;
196 1.24 fair else if (S_ISDIR(sb.st_mode))
197 1.24 fair what = MNTFROM;
198 1.17 pk }
199 1.24 fair
200 1.24 fair switch (what) {
201 1.24 fair case MNTON:
202 1.20 lukem if ((mntpt = getmntname(name, MNTON, &type)) == NULL) {
203 1.15 mycroft warnx("%s: not currently mounted", name);
204 1.15 mycroft return (1);
205 1.15 mycroft }
206 1.24 fair break;
207 1.24 fair case MNTFROM:
208 1.24 fair if ((name = getmntname(mntpt, MNTFROM, &type)) == NULL) {
209 1.24 fair warnx("%s: not currently mounted", mntpt);
210 1.24 fair return (1);
211 1.24 fair }
212 1.24 fair break;
213 1.24 fair default:
214 1.24 fair if ((name = getmntname(mntpt, MNTFROM, &type)) == NULL) {
215 1.24 fair name = rname;
216 1.24 fair if ((mntpt = getmntname(name, MNTON, &type)) == NULL) {
217 1.24 fair warnx("%s: not currently mounted", name);
218 1.24 fair return (1);
219 1.24 fair }
220 1.24 fair }
221 1.1 cgd }
222 1.7 mycroft
223 1.24 fair if (checkvfsname(type, typelist))
224 1.24 fair return (1);
225 1.1 cgd
226 1.28 fvdl memset(&hints, 0, sizeof hints);
227 1.28 fvdl ai = NULL;
228 1.24 fair if (!strncmp(type, MOUNT_NFS, MFSNAMELEN)) {
229 1.24 fair if ((delimp = strchr(name, '@')) != NULL) {
230 1.24 fair hostp = delimp + 1;
231 1.24 fair *delimp = '\0';
232 1.28 fvdl getaddrinfo(hostp, NULL, &hints, &ai);
233 1.24 fair *delimp = '@';
234 1.28 fvdl } else if ((delimp = strrchr(name, ':')) != NULL) {
235 1.24 fair *delimp = '\0';
236 1.24 fair hostp = name;
237 1.28 fvdl getaddrinfo(hostp, NULL, &hints, &ai);
238 1.24 fair name = delimp + 1;
239 1.24 fair *delimp = ':';
240 1.24 fair }
241 1.20 lukem }
242 1.24 fair
243 1.28 fvdl if (!namematch(ai))
244 1.24 fair return (1);
245 1.10 mycroft }
246 1.7 mycroft
247 1.12 mycroft if (verbose)
248 1.7 mycroft (void)printf("%s: unmount from %s\n", name, mntpt);
249 1.7 mycroft if (fake)
250 1.7 mycroft return (0);
251 1.1 cgd
252 1.7 mycroft if (unmount(mntpt, fflag) < 0) {
253 1.6 cgd warn("%s", mntpt);
254 1.7 mycroft return (1);
255 1.1 cgd }
256 1.1 cgd
257 1.25 sommerfe if (!raw && !strncmp(type, MOUNT_NFS, MFSNAMELEN) &&
258 1.28 fvdl (ai != NULL) && !(fflag & MNT_FORCE)) {
259 1.1 cgd *delimp = '\0';
260 1.28 fvdl clp = clnt_create(hostp, RPCPROG_MNT, RPCMNT_VER1, "udp");
261 1.28 fvdl if (clp == NULL) {
262 1.1 cgd clnt_pcreateerror("Cannot MNT PRC");
263 1.1 cgd return (1);
264 1.1 cgd }
265 1.28 fvdl clp->cl_auth = authsys_create_default();
266 1.1 cgd try.tv_sec = 20;
267 1.1 cgd try.tv_usec = 0;
268 1.7 mycroft clnt_stat = clnt_call(clp,
269 1.7 mycroft RPCMNT_UMOUNT, xdr_dir, name, xdr_void, (caddr_t)0, try);
270 1.1 cgd if (clnt_stat != RPC_SUCCESS) {
271 1.1 cgd clnt_perror(clp, "Bad MNT RPC");
272 1.1 cgd return (1);
273 1.1 cgd }
274 1.1 cgd auth_destroy(clp->cl_auth);
275 1.1 cgd clnt_destroy(clp);
276 1.1 cgd }
277 1.7 mycroft return (0);
278 1.1 cgd }
279 1.1 cgd
280 1.1 cgd char *
281 1.1 cgd getmntname(name, what, type)
282 1.1 cgd char *name;
283 1.7 mycroft mntwhat what;
284 1.20 lukem char **type;
285 1.1 cgd {
286 1.20 lukem static struct statfs *mntbuf;
287 1.20 lukem static int mntsize;
288 1.20 lukem int i;
289 1.1 cgd
290 1.20 lukem if (mntbuf == NULL &&
291 1.20 lukem (mntsize = getmntinfo(&mntbuf, MNT_NOWAIT)) == 0) {
292 1.7 mycroft warn("getmntinfo");
293 1.7 mycroft return (NULL);
294 1.1 cgd }
295 1.21 drochner for (i = mntsize - 1; i >= 0; i--) {
296 1.7 mycroft if ((what == MNTON) && !strcmp(mntbuf[i].f_mntfromname, name)) {
297 1.7 mycroft if (type)
298 1.20 lukem *type = mntbuf[i].f_fstypename;
299 1.1 cgd return (mntbuf[i].f_mntonname);
300 1.1 cgd }
301 1.7 mycroft if ((what == MNTFROM) && !strcmp(mntbuf[i].f_mntonname, name)) {
302 1.7 mycroft if (type)
303 1.20 lukem *type = mntbuf[i].f_fstypename;
304 1.1 cgd return (mntbuf[i].f_mntfromname);
305 1.1 cgd }
306 1.1 cgd }
307 1.7 mycroft return (NULL);
308 1.1 cgd }
309 1.1 cgd
310 1.6 cgd int
311 1.28 fvdl sacmp(struct sockaddr *sa1, struct sockaddr *sa2)
312 1.1 cgd {
313 1.28 fvdl void *p1, *p2;
314 1.28 fvdl int len;
315 1.28 fvdl
316 1.28 fvdl if (sa1->sa_family != sa2->sa_family)
317 1.28 fvdl return 1;
318 1.28 fvdl
319 1.28 fvdl switch (sa1->sa_family) {
320 1.28 fvdl case AF_INET:
321 1.28 fvdl p1 = &((struct sockaddr_in *)sa1)->sin_addr;
322 1.28 fvdl p2 = &((struct sockaddr_in *)sa2)->sin_addr;
323 1.28 fvdl len = 4;
324 1.28 fvdl break;
325 1.28 fvdl case AF_INET6:
326 1.28 fvdl p1 = &((struct sockaddr_in6 *)sa1)->sin6_addr;
327 1.28 fvdl p2 = &((struct sockaddr_in6 *)sa2)->sin6_addr;
328 1.28 fvdl len = 16;
329 1.28 fvdl if (((struct sockaddr_in6 *)sa1)->sin6_scope_id !=
330 1.28 fvdl ((struct sockaddr_in6 *)sa2)->sin6_scope_id)
331 1.28 fvdl return 1;
332 1.28 fvdl break;
333 1.28 fvdl default:
334 1.28 fvdl return 1;
335 1.28 fvdl }
336 1.28 fvdl
337 1.28 fvdl return memcmp(p1, p2, len);
338 1.28 fvdl }
339 1.7 mycroft
340 1.28 fvdl int
341 1.28 fvdl namematch(ai)
342 1.28 fvdl struct addrinfo *ai;
343 1.28 fvdl {
344 1.28 fvdl struct addrinfo *aip;
345 1.1 cgd
346 1.28 fvdl if (nfshost == NULL || nfshost_ai == NULL)
347 1.7 mycroft return (1);
348 1.7 mycroft
349 1.28 fvdl while (ai != NULL) {
350 1.28 fvdl aip = nfshost_ai;
351 1.28 fvdl while (aip != NULL) {
352 1.28 fvdl if (sacmp(ai->ai_addr, aip->ai_addr) == 0)
353 1.28 fvdl return 1;
354 1.28 fvdl aip = aip->ai_next;
355 1.1 cgd }
356 1.28 fvdl ai = ai->ai_next;
357 1.1 cgd }
358 1.28 fvdl
359 1.28 fvdl return 0;
360 1.1 cgd }
361 1.1 cgd
362 1.1 cgd /*
363 1.1 cgd * xdr routines for mount rpc's
364 1.1 cgd */
365 1.6 cgd int
366 1.1 cgd xdr_dir(xdrsp, dirp)
367 1.1 cgd XDR *xdrsp;
368 1.1 cgd char *dirp;
369 1.1 cgd {
370 1.1 cgd return (xdr_string(xdrsp, &dirp, RPCMNT_PATHLEN));
371 1.1 cgd }
372 1.7 mycroft
373 1.7 mycroft void
374 1.7 mycroft usage()
375 1.7 mycroft {
376 1.7 mycroft (void)fprintf(stderr,
377 1.7 mycroft "usage: %s\n %s\n",
378 1.24 fair "umount [-fvFR] [-t fstypelist] special | node",
379 1.22 mikel "umount -a[fvF] [-h host] [-t fstypelist]");
380 1.7 mycroft exit(1);
381 1.7 mycroft }
382