]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/nfsumount.c
umount.nfs: make umount.nfs use UDP by default
[nfs-utils.git] / utils / mount / nfsumount.c
1 /*
2  * nfsumount.c -- Linux NFS umount
3  * Copyright (C) 2006 Amit Gud <agud@redhat.com>
4  *
5  * - Basic code and wrapper around NFS umount code originally
6  *   in util-linux/mount/nfsmount.c
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2, or (at your option)
11  * any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  */
19
20 #include <unistd.h>
21 #include <stdio.h>
22 #include <errno.h>
23 #include <getopt.h>
24 #include <mntent.h>
25 #include <sys/mount.h>
26 #include <ctype.h>
27 #include <pwd.h>
28
29 #include "xcommon.h"
30 #include "fstab.h"
31 #include "nls.h"
32 #include "conn.h"
33
34 #include "mount_constants.h"
35 #include "mount.h"
36 #include "nfsumount.h"
37 #include "error.h"
38 #include "network.h"
39
40 #if !defined(MNT_FORCE)
41 /* dare not try to include <linux/mount.h> -- lots of errors */
42 #define MNT_FORCE 1
43 #endif
44
45 #if !defined(MNT_DETACH)
46 #define MNT_DETACH 2
47 #endif
48
49 extern char *progname;
50 extern int nomtab;
51 extern int verbose;
52 int force;
53 int lazy;
54 int remount;
55
56 static inline enum clnt_stat
57 nfs_umount(dirpath *argp, CLIENT *clnt)
58 {
59         return clnt_call(clnt, MOUNTPROC_UMNT,
60                          (xdrproc_t) xdr_dirpath, (caddr_t)argp,
61                          (xdrproc_t) xdr_void, NULL,
62                          TIMEOUT);
63 }
64
65 int nfs_call_umount(clnt_addr_t *mnt_server, dirpath *argp)
66 {
67         CLIENT *clnt;
68         enum clnt_stat res = 0;
69         int msock;
70
71         switch (mnt_server->pmap.pm_vers) {
72         case 3:
73         case 2:
74         case 1:
75                 if (!probe_mntport(mnt_server))
76                         goto out_bad;
77                 clnt = mnt_openclnt(mnt_server, &msock);
78                 if (!clnt)
79                         goto out_bad;
80                 res = nfs_umount(argp, clnt);
81                 mnt_closeclnt(clnt, msock);
82                 if (res == RPC_SUCCESS)
83                         return 1;
84                 break;
85         default:
86                 res = 1;
87                 break;
88         }
89  out_bad:
90         return res;
91 }
92
93 int del_mtab(const char *spec, const char *node)
94 {
95         int umnt_err, res;
96
97         umnt_err = 0;
98         if (lazy) {
99                 res = umount2 (node, MNT_DETACH);
100                 if (res < 0)
101                         umnt_err = errno;
102                 goto writemtab;
103         }
104
105         if (force) {
106                 res = umount2 (node, MNT_FORCE);
107                 if (res == -1) {
108                         int errsv = errno;
109                         perror("umount2");
110                         errno = errsv;
111                         if (errno == ENOSYS) {
112                                 if (verbose)
113                                         printf(_("no umount2, trying umount...\n"));
114                                 res = umount (node);
115                         }
116                 }
117         } else
118                 res = umount (node);
119
120         if (res < 0 && remount && errno == EBUSY && spec) {
121                 /* Umount failed - let us try a remount */
122                 res = mount(spec, node, NULL,
123                             MS_MGC_VAL | MS_REMOUNT | MS_RDONLY, NULL);
124                 if (res == 0) {
125                         struct mntent remnt;
126                         nfs_error(_("%s: %s busy - remounted read-only"),
127                                         progname, spec);
128                         remnt.mnt_type = remnt.mnt_fsname = NULL;
129                         remnt.mnt_dir = xstrdup(node);
130                         remnt.mnt_opts = xstrdup("ro");
131                         if (!nomtab)
132                                 update_mtab(node, &remnt);
133                         return 0;
134                 } else if (errno != EBUSY) {    /* hmm ... */
135                         perror("remount");
136                         nfs_error(_("%s: could not remount %s read-only"),
137                                         progname, spec);
138                 }
139         }
140
141         if (res >= 0) {
142                 /* Umount succeeded */
143                 if (verbose)
144                         printf (_("%s umounted\n"), spec ? spec : node);
145         }
146
147  writemtab:
148         if (!nomtab &&
149             (umnt_err == 0 || umnt_err == EINVAL || umnt_err == ENOENT)) {
150                update_mtab(node, NULL);
151         }
152
153         if (res >= 0)
154                 return 0;
155
156         if (umnt_err)
157                 umount_error(umnt_err, node);
158         return EX_FILEIO;
159 }
160
161 /*
162  * Returns 1 if everything went well, else 0.
163  */
164 int _nfsumount(const char *spec, char *opts)
165 {
166         char *hostname;
167         char *dirname;
168         clnt_addr_t mnt_server = { &hostname, };
169         struct mntent mnt = { .mnt_opts = opts };
170         struct pmap *pmap = &mnt_server.pmap;
171         char *p;
172
173         if (spec == NULL || (p = strchr(spec,':')) == NULL)
174                 goto out_bad;
175         hostname = xstrndup(spec, p-spec);
176         dirname = xstrdup(p+1);
177 #ifdef NFS_MOUNT_DEBUG
178         printf(_("host: %s, directory: %s\n"), hostname, dirname);
179 #endif
180
181         if (opts && (p = strstr(opts, "addr="))) {
182                 char *q;
183
184                 free(hostname);
185                 p += 5;
186                 q = p;
187                 while (*q && *q != ',') q++;
188                 hostname = xstrndup(p,q-p);
189         }
190
191         if (opts && (p = strstr(opts, "mounthost="))) {
192                 char *q;
193
194                 free(hostname);
195                 p += 10;
196                 q = p;
197                 while (*q && *q != ',') q++;
198                 hostname = xstrndup(p,q-p);
199         }
200
201         pmap->pm_prog = MOUNTPROG;
202         pmap->pm_vers = MOUNTVERS_NFSV3;
203         if (opts && (p = strstr(opts, "mountprog=")) && isdigit(*(p+10)))
204                 pmap->pm_prog = atoi(p+10);
205         if (opts && (p = strstr(opts, "mountport=")) && isdigit(*(p+10)))
206                 pmap->pm_port = atoi(p+10);
207         if (opts && hasmntopt(&mnt, "v2"))
208                 pmap->pm_vers = nfsvers_to_mnt(2);
209         if (opts && hasmntopt(&mnt, "v3"))
210                 pmap->pm_vers = nfsvers_to_mnt(3);
211         if (opts && hasmntopt(&mnt, "v4"))
212                 pmap->pm_vers = nfsvers_to_mnt(4);
213         if (opts && (p = strstr(opts, "vers=")) && isdigit(*(p+5)))
214                 pmap->pm_vers = nfsvers_to_mnt(atoi(p+5));
215         if (opts && (p = strstr(opts, "mountvers=")) && isdigit(*(p+10)))
216                 pmap->pm_vers = atoi(p+10);
217         if (opts && (hasmntopt(&mnt, "udp") || hasmntopt(&mnt, "proto=udp")))
218                 pmap->pm_prot = IPPROTO_UDP;
219
220         if (!nfs_gethostbyname(hostname, &mnt_server.saddr))
221                 goto out_bad;
222         return nfs_call_umount(&mnt_server, &dirname);
223  out_bad:
224         nfs_error(_("%s: %s: not found or not mounted"), progname, spec);
225         return 0;
226 }
227
228 static struct option umount_longopts[] =
229 {
230   { "force", 0, 0, 'f' },
231   { "help", 0, 0, 'h' },
232   { "no-mtab", 0, 0, 'n' },
233   { "verbose", 0, 0, 'v' },
234   { "read-only", 0, 0, 'r' },
235   { NULL, 0, 0, 0 }
236 };
237
238 void umount_usage(void)
239 {
240         printf("usage: %s dir [-fvnrlh]\n", progname);
241         printf("options:\n\t-f\t\tforce unmount\n");
242         printf("\t-v\t\tverbose\n");
243         printf("\t-n\t\tDo not update /etc/mtab\n");
244         printf("\t-r\t\tremount\n");
245         printf("\t-l\t\tlazy unmount\n");
246         printf("\t-h\t\tprint this help\n\n");
247 }
248
249 int nfsumount(int argc, char *argv[])
250 {
251         int c, ret;
252         char *spec;
253         struct mntentchn *mc;
254
255         spec = argv[1];
256
257         argv += 1;
258         argc -= 1;
259
260         argv[0] = argv[-1]; /* So that getopt error messages are correct */
261         while ((c = getopt_long (argc, argv, "fvnrlh",
262                                 umount_longopts, NULL)) != -1) {
263
264                 switch (c) {
265                 case 'f':
266                         ++force;
267                         break;
268                 case 'v':
269                         ++verbose;
270                         break;
271                 case 'n':
272                         ++nomtab;
273                         break;
274                 case 'r':
275                         ++remount;
276                         break;
277                 case 'l':
278                         ++lazy;
279                         break;
280                 case 'h':
281                 default:
282                         umount_usage();
283                         return EX_USAGE;
284                 }
285         }
286         if (optind != argc) {
287                 umount_usage();
288                 return EX_USAGE;
289         }
290         
291         if (spec == NULL || (*spec != '/' && strchr(spec,':') == NULL)) {
292                 nfs_error(_("%s: %s: not found\n"), progname, spec);
293                 return EX_USAGE;
294         }
295
296         if (*spec == '/')
297                 mc = getmntdirbackward(spec, NULL);
298         else
299                 mc = getmntdevbackward(spec, NULL);
300         if (!mc && verbose)
301                 printf(_("Could not find %s in mtab\n"), spec);
302
303         if (mc && strcmp(mc->m.mnt_type, "nfs") != 0 &&
304             strcmp(mc->m.mnt_type, "nfs4") != 0) {
305                 nfs_error(_("%s: %s on %s it not an nfs filesystem"),
306                                 progname, mc->m.mnt_fsname, mc->m.mnt_dir);
307                 return EX_USAGE;
308         }
309
310         if (getuid() != 0) {
311                 /* only permitted if "user=" or "users" is in mount options */
312                 if (!mc) {
313                         /* umount might call us twice.  The second time there will
314                          * be no entry in mtab and we should just exit quietly
315                          */
316                         return 0;
317
318                 only_root:
319                         nfs_error(_("%s: You are not permitted to unmount %s"),
320                                         progname, spec);
321                         return EX_USAGE;
322                 }
323                 if (hasmntopt(&mc->m, "users") == NULL) {
324                         char *opt = hasmntopt(&mc->m, "user");
325                         struct passwd *pw;
326                         char *comma;
327                         int len;
328                         if (!opt)
329                                 goto only_root;
330                         if (opt[4] != '=')
331                                 goto only_root;
332                         comma = strchr(opt, ',');
333                         if (comma)
334                                 len = comma - (opt + 5);
335                         else
336                                 len = strlen(opt+5);
337                         pw = getpwuid(getuid());
338                         if (pw == NULL || strlen(pw->pw_name) != len
339                             || strncmp(pw->pw_name, opt+5, len) != 0)
340                                 goto only_root;
341                 }
342         }
343
344         ret = 0;
345         if (mc) {
346                 if (!lazy)
347                         _nfsumount(mc->m.mnt_fsname, mc->m.mnt_opts);
348                 ret = del_mtab(mc->m.mnt_fsname, mc->m.mnt_dir);
349         } else if (*spec != '/') {
350                 if (!lazy)
351                         _nfsumount(spec, "tcp,v3");
352         } else
353                 ret = del_mtab(NULL, spec);
354
355         return ret;
356 }