]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/nfsumount.c
mount.nfs: Error handling clean-up
[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                         fprintf(stderr,
127                                 _("umount: %s busy - remounted read-only\n"),
128                                 spec);
129                         remnt.mnt_type = remnt.mnt_fsname = NULL;
130                         remnt.mnt_dir = xstrdup(node);
131                         remnt.mnt_opts = xstrdup("ro");
132                         if (!nomtab)
133                                 update_mtab(node, &remnt);
134                         return 0;
135                 } else if (errno != EBUSY) {    /* hmm ... */
136                         perror("remount");
137                         fprintf(stderr,
138                                 _("umount: could not remount %s read-only\n"),
139                                 spec);
140                 }
141         }
142
143         if (res >= 0) {
144                 /* Umount succeeded */
145                 if (verbose)
146                         printf (_("%s umounted\n"), spec ? spec : node);
147         }
148
149  writemtab:
150         if (!nomtab &&
151             (umnt_err == 0 || umnt_err == EINVAL || umnt_err == ENOENT)) {
152                update_mtab(node, NULL);
153         }
154
155         if (res >= 0)
156                 return 0;
157
158         if (umnt_err)
159                 umount_error(umnt_err, node);
160         return EX_FILEIO;
161 }
162
163 /*
164  * Returns 1 if everything went well, else 0.
165  */
166 int _nfsumount(const char *spec, char *opts)
167 {
168         char *hostname;
169         char *dirname;
170         clnt_addr_t mnt_server = { &hostname, };
171         struct mntent mnt = { .mnt_opts = opts };
172         struct pmap *pmap = &mnt_server.pmap;
173         char *p;
174
175         if (spec == NULL || (p = strchr(spec,':')) == NULL)
176                 goto out_bad;
177         hostname = xstrndup(spec, p-spec);
178         dirname = xstrdup(p+1);
179 #ifdef NFS_MOUNT_DEBUG
180         printf(_("host: %s, directory: %s\n"), hostname, dirname);
181 #endif
182
183         if (opts && (p = strstr(opts, "addr="))) {
184                 char *q;
185
186                 free(hostname);
187                 p += 5;
188                 q = p;
189                 while (*q && *q != ',') q++;
190                 hostname = xstrndup(p,q-p);
191         }
192
193         if (opts && (p = strstr(opts, "mounthost="))) {
194                 char *q;
195
196                 free(hostname);
197                 p += 10;
198                 q = p;
199                 while (*q && *q != ',') q++;
200                 hostname = xstrndup(p,q-p);
201         }
202
203         pmap->pm_prog = MOUNTPROG;
204         pmap->pm_vers = MOUNTVERS_NFSV3;
205         pmap->pm_prot = IPPROTO_TCP;
206         if (opts && (p = strstr(opts, "mountprog=")) && isdigit(*(p+10)))
207                 pmap->pm_prog = atoi(p+10);
208         if (opts && (p = strstr(opts, "mountport=")) && isdigit(*(p+10)))
209                 pmap->pm_port = atoi(p+10);
210         if (opts && hasmntopt(&mnt, "v2"))
211                 pmap->pm_vers = nfsvers_to_mnt(2);
212         if (opts && hasmntopt(&mnt, "v3"))
213                 pmap->pm_vers = nfsvers_to_mnt(3);
214         if (opts && hasmntopt(&mnt, "v4"))
215                 pmap->pm_vers = nfsvers_to_mnt(4);
216         if (opts && (p = strstr(opts, "vers=")) && isdigit(*(p+5)))
217                 pmap->pm_vers = nfsvers_to_mnt(atoi(p+5));
218         if (opts && (p = strstr(opts, "mountvers=")) && isdigit(*(p+10)))
219                 pmap->pm_vers = atoi(p+10);
220         if (opts && (hasmntopt(&mnt, "udp") || hasmntopt(&mnt, "proto=udp")))
221                 pmap->pm_prot = IPPROTO_UDP;
222
223         if (!nfs_gethostbyname(hostname, &mnt_server.saddr))
224                 goto out_bad;
225         return nfs_call_umount(&mnt_server, &dirname);
226  out_bad:
227         fprintf(stderr, "%s: %s: not found or not mounted\n", progname, spec);
228         return 0;
229 }
230
231 static struct option umount_longopts[] =
232 {
233   { "force", 0, 0, 'f' },
234   { "help", 0, 0, 'h' },
235   { "no-mtab", 0, 0, 'n' },
236   { "verbose", 0, 0, 'v' },
237   { "read-only", 0, 0, 'r' },
238   { NULL, 0, 0, 0 }
239 };
240
241 void umount_usage()
242 {
243         printf("usage: %s dir [-fvnrlh]\n", progname);
244         printf("options:\n\t-f\t\tforce unmount\n");
245         printf("\t-v\t\tverbose\n");
246         printf("\t-n\t\tDo not update /etc/mtab\n");
247         printf("\t-r\t\tremount\n");
248         printf("\t-l\t\tlazy unmount\n");
249         printf("\t-h\t\tprint this help\n\n");
250 }
251
252 int nfsumount(int argc, char *argv[])
253 {
254         int c, ret;
255         char *spec;
256         struct mntentchn *mc;
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 0;
287                 }
288         }
289         if (optind != argc) {
290                 umount_usage();
291                 return 0;
292         }
293         
294         if (spec == NULL || (*spec != '/' && strchr(spec,':') == NULL)) {
295                 printf(_("umount: %s: not found\n"), spec);
296                 return 0;
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                 fprintf(stderr, "umount.nfs: %s on %s it not an nfs filesystem\n",
309                         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 0;
320
321                 only_root:
322                         fprintf(stderr,"%s: You are not permitted to unmount %s\n",
323                                 progname, spec);
324                         return 0;
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)
350                         _nfsumount(mc->m.mnt_fsname, mc->m.mnt_opts);
351                 ret = del_mtab(mc->m.mnt_fsname, mc->m.mnt_dir);
352         } else if (*spec != '/') {
353                 if (!lazy)
354                         _nfsumount(spec, "tcp,v3");
355         } else
356                 ret = del_mtab(NULL, spec);
357
358         return ret;
359 }
360