]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/nfsumount.c
If portmap is not listening on UDP (as apparently happens with
[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
33 #include "mount_constants.h"
34 #include "mount.h"
35 #include "error.h"
36 #include "network.h"
37 #include "parse_dev.h"
38
39 #if !defined(MNT_FORCE)
40 /* dare not try to include <linux/mount.h> -- lots of errors */
41 #define MNT_FORCE 1
42 #endif
43
44 #if !defined(MNT_DETACH)
45 #define MNT_DETACH 2
46 #endif
47
48 extern char *progname;
49 extern int nomtab;
50 extern int verbose;
51 int force;
52 int lazy;
53 int remount;
54
55
56 static int try_remount(const char *spec, const char *node)
57 {
58         int res;
59
60         res = mount(spec, node, NULL,
61                     MS_MGC_VAL | MS_REMOUNT | MS_RDONLY, NULL);
62         if (res == 0) {
63                 struct mntent remnt;
64                 nfs_error(_("%s: %s busy - remounted read-only"),
65                                 progname, spec);
66                 remnt.mnt_type = remnt.mnt_fsname = NULL;
67                 remnt.mnt_dir = xstrdup(node);
68                 remnt.mnt_opts = xstrdup("ro");
69                 if (!nomtab)
70                         update_mtab(node, &remnt);
71         } else if (errno != EBUSY) {    /* hmm ... */
72                 perror(_("remount"));
73                 nfs_error(_("%s: could not remount %s read-only"),
74                                 progname, spec);
75         }
76         return res;
77 }
78
79 static int del_mtab(const char *spec, const char *node)
80 {
81         int umnt_err, res;
82
83         umnt_err = 0;
84         if (lazy) {
85                 res = umount2 (node, MNT_DETACH);
86                 if (res < 0)
87                         umnt_err = errno;
88                 goto writemtab;
89         }
90
91         if (force) {
92                 res = umount2 (node, MNT_FORCE);
93                 if (res == -1) {
94                         int errsv = errno;
95                         perror(_("umount2"));
96                         errno = errsv;
97                         if (errno == ENOSYS) {
98                                 if (verbose)
99                                         printf(_("no umount2, trying umount...\n"));
100                                 res = umount (node);
101                         }
102                 }
103         } else
104                 res = umount (node);
105
106         if (res < 0) {
107                 if (remount && errno == EBUSY && spec) {
108                         res = try_remount(spec, node);
109                         if (res)
110                                 goto writemtab;
111                         return 0;
112                 } else
113                         umnt_err = errno;
114         }
115
116         if (res >= 0) {
117                 /* Umount succeeded */
118                 if (verbose)
119                         printf(_("%s umounted\n"), spec ? spec : node);
120         }
121
122  writemtab:
123         if (!nomtab &&
124             (umnt_err == 0 || umnt_err == EINVAL || umnt_err == ENOENT)) {
125                 update_mtab(node, NULL);
126         }
127
128         if (res >= 0)
129                 return 0;
130
131         if (umnt_err)
132                 umount_error(umnt_err, node);
133         return EX_FILEIO;
134 }
135
136 /*
137  * Pick up certain mount options used during the original mount
138  * from /etc/mtab.  The basics include the server's IP address and
139  * the server pathname of the share to unregister.
140  *
141  * These options might also describe the mount port, mount protocol
142  * version, and transport protocol used to punch through a firewall.
143  * We will need this information to get through the firewall again
144  * to do the umount.
145  */
146 static int do_nfs_umount23(const char *spec, char *opts)
147 {
148         char *hostname;
149         char *dirname;
150         clnt_addr_t mnt_server = { &hostname, };
151         struct mntent mnt = { .mnt_opts = opts };
152         struct pmap *pmap = &mnt_server.pmap;
153         char *p;
154         int result = EX_USAGE;
155
156         if (!nfs_parse_devname(spec, &hostname, &dirname))
157                 return result;
158
159 #ifdef NFS_MOUNT_DEBUG
160         printf(_("host: %s, directory: %s\n"), hostname, dirname);
161 #endif
162
163         if (opts && (p = strstr(opts, "addr="))) {
164                 char *q;
165
166                 free(hostname);
167                 p += 5;
168                 q = p;
169                 while (*q && *q != ',') q++;
170                 hostname = xstrndup(p,q-p);
171         }
172
173         if (opts && (p = strstr(opts, "mounthost="))) {
174                 char *q;
175
176                 free(hostname);
177                 p += 10;
178                 q = p;
179                 while (*q && *q != ',') q++;
180                 hostname = xstrndup(p,q-p);
181         }
182
183         pmap->pm_prog = MOUNTPROG;
184         pmap->pm_vers = 0; /* unknown */
185         if (opts && (p = strstr(opts, "mountprog=")) && isdigit(*(p+10)))
186                 pmap->pm_prog = atoi(p+10);
187         if (opts && (p = strstr(opts, "mountport=")) && isdigit(*(p+10)))
188                 pmap->pm_port = atoi(p+10);
189         if (opts && hasmntopt(&mnt, "v2"))
190                 pmap->pm_vers = nfsvers_to_mnt(2);
191         if (opts && hasmntopt(&mnt, "v3"))
192                 pmap->pm_vers = nfsvers_to_mnt(3);
193         if (opts && (p = strstr(opts, "vers=")) && isdigit(*(p+5)))
194                 pmap->pm_vers = nfsvers_to_mnt(atoi(p+5));
195         if (opts && (p = strstr(opts, "mountvers=")) && isdigit(*(p+10)))
196                 pmap->pm_vers = atoi(p+10);
197         if (opts && (hasmntopt(&mnt, "udp")
198                      || hasmntopt(&mnt, "proto=udp")
199                      || hasmntopt(&mnt, "mountproto=udp")
200                     ))
201                 pmap->pm_prot = IPPROTO_UDP;
202         if (opts && (hasmntopt(&mnt, "tcp")
203                      || hasmntopt(&mnt, "proto=tcp")
204                      || hasmntopt(&mnt, "mountproto=tcp")
205                     ))
206                 pmap->pm_prot = IPPROTO_TCP;
207
208         if (!nfs_gethostbyname(hostname, &mnt_server.saddr)) {
209                 nfs_error(_("%s: DNS resolution of '%s' failed"),
210                                 progname, hostname);
211                 goto out;
212         }
213
214         if (!nfs_call_umount(&mnt_server, &dirname)) {
215                 nfs_error(_("%s: Server failed to unmount '%s'"),
216                                 progname, spec);
217                 result = EX_FAIL;
218                 goto out;
219         }
220
221         result = EX_SUCCESS;
222
223 out:
224         free(hostname);
225         free(dirname);
226         return result;
227 }
228
229 static struct option umount_longopts[] =
230 {
231   { "force", 0, 0, 'f' },
232   { "help", 0, 0, 'h' },
233   { "no-mtab", 0, 0, 'n' },
234   { "verbose", 0, 0, 'v' },
235   { "read-only", 0, 0, 'r' },
236   { NULL, 0, 0, 0 }
237 };
238
239 static void umount_usage(void)
240 {
241         printf(_("usage: %s dir [-fvnrlh]\n"), progname);
242         printf(_("options:\n\t-f\t\tforce unmount\n"));
243         printf(_("\t-v\tverbose\n"));
244         printf(_("\t-n\tDo not update /etc/mtab\n"));
245         printf(_("\t-r\tremount\n"));
246         printf(_("\t-l\tlazy unmount\n"));
247         printf(_("\t-h\tprint this help\n\n"));
248 }
249
250 int nfsumount(int argc, char *argv[])
251 {
252         int c, ret;
253         char *spec;
254         struct mntentchn *mc;
255
256         if (argc < 2) {
257                 umount_usage();
258                 return EX_USAGE;
259         }
260
261         spec = argv[1];
262
263         argv += 1;
264         argc -= 1;
265
266         argv[0] = argv[-1]; /* So that getopt error messages are correct */
267         while ((c = getopt_long (argc, argv, "fvnrlh",
268                                 umount_longopts, NULL)) != -1) {
269
270                 switch (c) {
271                 case 'f':
272                         ++force;
273                         break;
274                 case 'v':
275                         ++verbose;
276                         break;
277                 case 'n':
278                         ++nomtab;
279                         break;
280                 case 'r':
281                         ++remount;
282                         break;
283                 case 'l':
284                         ++lazy;
285                         break;
286                 case 'h':
287                 default:
288                         umount_usage();
289                         return EX_USAGE;
290                 }
291         }
292         if (optind != argc) {
293                 umount_usage();
294                 return EX_USAGE;
295         }
296         
297         if (spec == NULL || (*spec != '/' && strchr(spec,':') == NULL)) {
298                 nfs_error(_("%s: %s: not found\n"), progname, spec);
299                 return EX_USAGE;
300         }
301
302         if (*spec == '/')
303                 mc = getmntdirbackward(spec, NULL);
304         else
305                 mc = getmntdevbackward(spec, NULL);
306         if (!mc && verbose)
307                 printf(_("Could not find %s in mtab\n"), spec);
308
309         if (mc && strcmp(mc->m.mnt_type, "nfs") != 0 &&
310             strcmp(mc->m.mnt_type, "nfs4") != 0) {
311                 nfs_error(_("%s: %s on %s is not an NFS filesystem"),
312                                 progname, mc->m.mnt_fsname, mc->m.mnt_dir);
313                 return EX_USAGE;
314         }
315
316         if (getuid() != 0) {
317                 /* only permitted if "user=" or "users" is in mount options */
318                 if (!mc) {
319                         /* umount might call us twice.  The second time there will
320                          * be no entry in mtab and we should just exit quietly
321                          */
322                         return EX_SUCCESS;
323
324                 only_root:
325                         nfs_error(_("%s: You are not permitted to unmount %s"),
326                                         progname, spec);
327                         return EX_USAGE;
328                 }
329                 if (hasmntopt(&mc->m, "users") == NULL) {
330                         char *opt = hasmntopt(&mc->m, "user");
331                         struct passwd *pw;
332                         char *comma;
333                         int len;
334                         if (!opt)
335                                 goto only_root;
336                         if (opt[4] != '=')
337                                 goto only_root;
338                         comma = strchr(opt, ',');
339                         if (comma)
340                                 len = comma - (opt + 5);
341                         else
342                                 len = strlen(opt+5);
343                         pw = getpwuid(getuid());
344                         if (pw == NULL || strlen(pw->pw_name) != len
345                             || strncmp(pw->pw_name, opt+5, len) != 0)
346                                 goto only_root;
347                 }
348         }
349
350         ret = 0;
351         if (mc) {
352                 if (!lazy && strcmp(mc->m.mnt_type, "nfs4") != 0)
353                         /* We ignore the error from do_nfs_umount23.
354                          * If the actual umount succeeds (in del_mtab),
355                          * we don't want to signal an error, as that
356                          * could cause /sbin/mount to retry!
357                          */
358                         do_nfs_umount23(mc->m.mnt_fsname, mc->m.mnt_opts);
359                 ret = del_mtab(mc->m.mnt_fsname, mc->m.mnt_dir);
360         } else if (*spec != '/') {
361                 if (!lazy)
362                         ret = do_nfs_umount23(spec, "tcp,v3");
363         } else
364                 ret = del_mtab(NULL, spec);
365
366         return ret;
367 }