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