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