]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/mount.c
mount.nfs: Move MS_DUMMY and friends to header file
[nfs-utils.git] / utils / mount / mount.c
1 /*
2  * mount.c -- Linux NFS mount
3  *
4  * Copyright (C) 2006 Amit Gud <agud@redhat.com>
5  *
6  * - Basic code and wrapper around mount and umount code of NFS.
7  *   Based on util-linux/mount/mount.c.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2, or (at your option)
12  * any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  */
20
21 #include "config.h"
22 #include <unistd.h>
23 #include <sys/types.h>
24 #include <stdio.h>
25 #include <string.h>
26 #include <errno.h>
27 #include <fcntl.h>
28 #include <sys/mount.h>
29 #include <sys/utsname.h>
30 #include <getopt.h>
31 #include <mntent.h>
32 #include <pwd.h>
33
34 #include "fstab.h"
35 #include "xcommon.h"
36 #include "nls.h"
37 #include "mount_constants.h"
38 #include "nfs_paths.h"
39
40 #include "nfs_mount.h"
41 #include "nfs4_mount.h"
42 #include "nfsumount.h"
43 #include "mount.h"
44 #include "error.h"
45 #include "network.h"
46
47 char *progname;
48 int nfs_mount_data_version;
49 int nomtab;
50 int verbose;
51 int sloppy;
52
53 static struct option longopts[] = {
54   { "fake", 0, 0, 'f' },
55   { "help", 0, 0, 'h' },
56   { "no-mtab", 0, 0, 'n' },
57   { "read-only", 0, 0, 'r' },
58   { "ro", 0, 0, 'r' },
59   { "verbose", 0, 0, 'v' },
60   { "version", 0, 0, 'V' },
61   { "read-write", 0, 0, 'w' },
62   { "rw", 0, 0, 'w' },
63   { "options", 1, 0, 'o' },
64   { NULL, 0, 0, 0 }
65 };
66
67 /* Map from -o and fstab option strings to the flag argument to mount(2).  */
68 struct opt_map {
69   const char *opt;              /* option name */
70   int  skip;                    /* skip in mtab option string */
71   int  inv;                     /* true if flag value should be inverted */
72   int  mask;                    /* flag mask value */
73 };
74
75 static const struct opt_map opt_map[] = {
76   { "defaults", 0, 0, 0         },      /* default options */
77   { "ro",       1, 0, MS_RDONLY },      /* read-only */
78   { "rw",       1, 1, MS_RDONLY },      /* read-write */
79   { "exec",     0, 1, MS_NOEXEC },      /* permit execution of binaries */
80   { "noexec",   0, 0, MS_NOEXEC },      /* don't execute binaries */
81   { "suid",     0, 1, MS_NOSUID },      /* honor suid executables */
82   { "nosuid",   0, 0, MS_NOSUID },      /* don't honor suid executables */
83   { "dev",      0, 1, MS_NODEV  },      /* interpret device files  */
84   { "nodev",    0, 0, MS_NODEV  },      /* don't interpret devices */
85   { "sync",     0, 0, MS_SYNCHRONOUS},  /* synchronous I/O */
86   { "async",    0, 1, MS_SYNCHRONOUS},  /* asynchronous I/O */
87   { "dirsync",  0, 0, MS_DIRSYNC},      /* synchronous directory modifications */
88   { "remount",  0, 0, MS_REMOUNT},      /* Alter flags of mounted FS */
89   { "bind",     0, 0, MS_BIND   },      /* Remount part of tree elsewhere */
90   { "rbind",    0, 0, MS_BIND|MS_REC }, /* Idem, plus mounted subtrees */
91   { "auto",     0, 0, MS_DUMMY },       /* Can be mounted using -a */
92   { "noauto",   0, 0, MS_DUMMY },       /* Can  only be mounted explicitly */
93   { "users",    1, 0, MS_USERS },       /* Allow ordinary user to mount */
94   { "nousers",  0, 1, MS_DUMMY  },      /* Forbid ordinary user to mount */
95   { "user",     1, 0, MS_USER  },       /* Allow ordinary user to mount */
96   { "nouser",   0, 1, MS_DUMMY   },     /* Forbid ordinary user to mount */
97   { "owner",    0, 0, MS_DUMMY  },      /* Let the owner of the device mount */
98   { "noowner",  0, 0, MS_DUMMY  },      /* Device owner has no special privs */
99   { "group",    0, 0, MS_DUMMY  },      /* Let the group of the device mount */
100   { "nogroup",  0, 0, MS_DUMMY  },      /* Device group has no special privs */
101   { "_netdev",  0, 0, MS_DUMMY},        /* Device requires network */
102   { "comment",  0, 0, MS_DUMMY},        /* fstab comment only (kudzu,_netdev)*/
103
104   /* add new options here */
105 #ifdef MS_NOSUB
106   { "sub",      0, 1, MS_NOSUB  },      /* allow submounts */
107   { "nosub",    0, 0, MS_NOSUB  },      /* don't allow submounts */
108 #endif
109 #ifdef MS_SILENT
110   { "quiet",    0, 0, MS_SILENT    },   /* be quiet  */
111   { "loud",     0, 1, MS_SILENT    },   /* print out messages. */
112 #endif
113 #ifdef MS_MANDLOCK
114   { "mand",     0, 0, MS_MANDLOCK },    /* Allow mandatory locks on this FS */
115   { "nomand",   0, 1, MS_MANDLOCK },    /* Forbid mandatory locks on this FS */
116 #endif
117   { "loop",     1, 0, MS_DUMMY   },      /* use a loop device */
118 #ifdef MS_NOATIME
119   { "atime",    0, 1, MS_NOATIME },     /* Update access time */
120   { "noatime",  0, 0, MS_NOATIME },     /* Do not update access time */
121 #endif
122 #ifdef MS_NODIRATIME
123   { "diratime", 0, 1, MS_NODIRATIME },  /* Update dir access times */
124   { "nodiratime", 0, 0, MS_NODIRATIME },/* Do not update dir access times */
125 #endif
126   { NULL,       0, 0, 0         }
127 };
128
129 #define MAKE_VERSION(p,q,r)     (65536 * (p) + 256 * (q) + (r))
130
131 int linux_version_code(void)
132 {
133         struct utsname my_utsname;
134         int p, q, r;
135
136         if (uname(&my_utsname) == 0) {
137                 p = atoi(strtok(my_utsname.release, "."));
138                 q = atoi(strtok(NULL, "."));
139                 r = atoi(strtok(NULL, "."));
140                 return MAKE_VERSION(p,q,r);
141         }
142         return 0;
143 }
144
145 /*
146  * Choose the version of the nfs_mount_data structure that is appropriate
147  * for the kernel that is doing the mount.
148  *
149  * NFS_MOUNT_VERSION:           maximum version supported by these sources
150  * nfs_mount_data_version:      maximum version supported by the running kernel
151  */
152 static void discover_nfs_mount_data_version(void)
153 {
154         int kernel_version = linux_version_code();
155
156         if (kernel_version) {
157                 if (kernel_version < MAKE_VERSION(2, 1, 32))
158                         nfs_mount_data_version = 1;
159                 else if (kernel_version < MAKE_VERSION(2, 2, 18))
160                         nfs_mount_data_version = 3;
161                 else if (kernel_version < MAKE_VERSION(2, 3, 0))
162                         nfs_mount_data_version = 4;
163                 else if (kernel_version < MAKE_VERSION(2, 3, 99))
164                         nfs_mount_data_version = 3;
165                 else if (kernel_version < MAKE_VERSION(2, 6, 3))
166                         nfs_mount_data_version = 4;
167                 else
168                         nfs_mount_data_version = 6;
169         }
170         if (nfs_mount_data_version > NFS_MOUNT_VERSION)
171                 nfs_mount_data_version = NFS_MOUNT_VERSION;
172 }
173
174 /* Try to build a canonical options string.  */
175 static char * fix_opts_string (int flags, const char *extra_opts) {
176         const struct opt_map *om;
177         char *new_opts;
178
179         new_opts = xstrdup((flags & MS_RDONLY) ? "ro" : "rw");
180         if (flags & MS_USER) {
181                 /* record who mounted this so they can unmount */
182                 struct passwd *pw = getpwuid(getuid());
183                 if(pw)
184                         new_opts = xstrconcat3(new_opts, ",user=", pw->pw_name);
185         }
186         if (flags & MS_USERS)
187                 new_opts = xstrconcat3(new_opts, ",users", "");
188         
189         for (om = opt_map; om->opt != NULL; om++) {
190                 if (om->skip)
191                         continue;
192                 if (om->inv || !om->mask || (flags & om->mask) != om->mask)
193                         continue;
194                 new_opts = xstrconcat3(new_opts, ",", om->opt);
195                 flags &= ~om->mask;
196         }
197         if (extra_opts && *extra_opts) {
198                 new_opts = xstrconcat3(new_opts, ",", extra_opts);
199         }
200         return new_opts;
201 }
202
203 static int add_mtab(char *spec, char *mount_point, char *fstype,
204                         int flags, char *opts, int freq, int pass)
205 {
206         struct mntent ment;
207         FILE *mtab;
208         int result = EX_FILEIO;
209
210         ment.mnt_fsname = spec;
211         ment.mnt_dir = mount_point;
212         ment.mnt_type = fstype;
213         ment.mnt_opts = fix_opts_string(flags, opts);
214         ment.mnt_freq = freq;
215         ment.mnt_passno = pass;
216
217         if (flags & MS_REMOUNT) {
218                 update_mtab(ment.mnt_dir, &ment);
219                 return 0;
220         }
221
222         lock_mtab();
223
224         if ((mtab = setmntent(MOUNTED, "a+")) == NULL) {
225                 unlock_mtab();
226                 nfs_error(_("Can't open mtab: %s"),
227                                 strerror(errno));
228                 goto fail_unlock;
229         }
230
231         if (addmntent(mtab, &ment) == 1) {
232                 nfs_error(_("Can't write mount entry to mtab: %s"),
233                                 strerror(errno));
234                 goto fail_close;
235         }
236
237         if (fchmod(fileno(mtab), 0644) == -1) {
238                 nfs_error(_("Can't set permissions on mtab: %s"),
239                                 strerror(errno));
240                 goto fail_close;
241         }
242
243         result = 0;
244
245 fail_close:
246         endmntent(mtab);
247 fail_unlock:
248         unlock_mtab();
249
250         return result;
251 }
252
253 int do_mount_syscall(char *spec, char *node, char *type, int flags, void *data)
254 {
255         return mount(spec, node, type, flags, data);
256 }
257
258 void mount_usage()
259 {
260         printf("usage: %s remotetarget dir [-rvVwfnh] [-o nfsoptions]\n",
261                 progname);
262         printf("options:\n");
263         printf("\t-r\t\tMount file system readonly\n");
264         printf("\t-v\t\tVerbose\n");
265         printf("\t-V\t\tPrint version\n");
266         printf("\t-w\t\tMount file system read-write\n");
267         printf("\t-f\t\tFake mount, do not actually mount\n");
268         printf("\t-n\t\tDo not update /etc/mtab\n");
269         printf("\t-s\t\tTolerate sloppy mount options rather than failing.\n");
270         printf("\t-h\t\tPrint this help\n");
271         printf("\tnfsoptions\tRefer to mount.nfs(8) or nfs(5)\n\n");
272 }
273
274 static inline void
275 parse_opt(const char *opt, int *mask, char *extra_opts, int len) {
276         const struct opt_map *om;
277
278         for (om = opt_map; om->opt != NULL; om++) {
279                 if (!strcmp (opt, om->opt)) {
280                         if (om->inv)
281                                 *mask &= ~om->mask;
282                         else
283                                 *mask |= om->mask;
284                         return;
285                 }
286         }
287
288         len -= strlen(extra_opts);
289
290         if (*extra_opts && --len > 0)
291                 strcat(extra_opts, ",");
292
293         if ((len -= strlen(opt)) > 0)
294                 strcat(extra_opts, opt);
295 }
296
297 /* Take -o options list and compute 4th and 5th args to mount(2).  flags
298    gets the standard options (indicated by bits) and extra_opts all the rest */
299 static void parse_opts (const char *options, int *flags, char **extra_opts)
300 {
301         if (options != NULL) {
302                 char *opts = xstrdup(options);
303                 char *opt, *p;
304                 int len = strlen(opts) + 1;             /* include room for a null */
305                 int open_quote = 0;
306
307                 *extra_opts = xmalloc(len);
308                 **extra_opts = '\0';
309
310                 for (p=opts, opt=NULL; p && *p; p++) {
311                         if (!opt)
312                                 opt = p;                /* begin of the option item */
313                         if (*p == '"')
314                                 open_quote ^= 1;        /* reverse the status */
315                         if (open_quote)
316                                 continue;               /* still in a quoted block */
317                         if (*p == ',')
318                                 *p = '\0';              /* terminate the option item */
319                         /* end of option item or last item */
320                         if (*p == '\0' || *(p+1) == '\0') {
321                                 parse_opt(opt, flags, *extra_opts, len);
322                                 opt = NULL;
323                         }
324                 }
325                 free(opts);
326         }
327 }
328
329 static int chk_mountpoint(char *mount_point)
330 {
331         struct stat sb;
332
333         if (stat(mount_point, &sb) < 0){
334                 mount_error(NULL, mount_point, errno);
335                 return 1;
336         }
337         if (S_ISDIR(sb.st_mode) == 0){
338                 mount_error(NULL, mount_point, ENOTDIR);
339                 return 1;
340         }
341         if (access(mount_point, X_OK) < 0) {
342                 mount_error(NULL, mount_point, errno);
343                 return 1;
344         }
345
346         return 0;
347 }
348
349 int main(int argc, char *argv[])
350 {
351         int c, flags = 0, mnt_err = 1, fake = 0;
352         char *spec, *mount_point, *fs_type = "nfs";
353         char *extra_opts = NULL, *mount_opts = NULL;
354         uid_t uid = getuid();
355
356         progname = basename(argv[0]);
357
358         discover_nfs_mount_data_version();
359
360         if(!strncmp(progname, "umount", strlen("umount"))) {
361                 if(argc < 2) {
362                         umount_usage();
363                         exit(1);
364                 }
365                 exit(nfsumount(argc, argv));
366         }
367
368         if(argv[1] && argv[1][0] == '-') {
369                 if(argv[1][1] == 'V')
370                         printf("%s ("PACKAGE_STRING")\n", progname);
371                 else
372                         mount_usage();
373                 return 0;
374         }
375
376         if ((argc < 3)) {
377                 mount_usage();
378                 exit(1);
379         }
380
381         spec = argv[1];
382         mount_point = argv[2];
383
384         argv[2] = argv[0]; /* so that getopt error messages are correct */
385         while ((c = getopt_long(argc - 2, argv + 2, "rvVwfno:hs",
386                                 longopts, NULL)) != -1) {
387                 switch (c) {
388                 case 'r':
389                         flags |= MS_RDONLY;
390                         break;
391                 case 'v':
392                         ++verbose;
393                         break;
394                 case 'V':
395                         printf("%s: ("PACKAGE_STRING")\n", progname);
396                         return 0;
397                 case 'w':
398                         flags &= ~MS_RDONLY;
399                         break;
400                 case 'f':
401                         ++fake;
402                         break;
403                 case 'n':
404                         ++nomtab;
405                         break;
406                 case 'o':              /* specify mount options */
407                         if (mount_opts)
408                                 mount_opts = xstrconcat3(mount_opts, ",", optarg);
409                         else
410                                 mount_opts = xstrdup(optarg);
411                         break;
412                 case 's':
413                         ++sloppy;
414                         break;
415                 case 'h':
416                 default:
417                         mount_usage();
418                         exit(1);
419                 }
420         }
421         if (optind != argc-2) {
422                 /* Extra non-option words at the end... */
423                 mount_usage();
424                 exit(1);
425         }
426
427         if (strcmp(progname, "mount.nfs4") == 0)
428                 fs_type = "nfs4";
429
430         /*
431          * If a non-root user is attempting to mount, make sure the
432          * user's requested options match the options specified in
433          * /etc/fstab; otherwise, don't allow the mount.
434          */
435         if (uid != 0) {
436                 struct mntentchn *mc;
437
438                 if ((mc = getfsfile(mount_point)) == NULL ||
439                     strcmp(mc->m.mnt_fsname, spec) != 0 ||
440                     strcmp(mc->m.mnt_type, fs_type) != 0) {
441                         fprintf(stderr, "%s: permission denied: no match for %s "
442                                 "found in /etc/fstab\n", progname, mount_point);
443                         exit(1);
444                 }
445
446                 /*
447                  * 'mount' munges the options from fstab before passing them
448                  * to us, so it is non-trivial to test that we have the correct
449                  * set of options and we don't want to trust what the user
450                  * gave us, so just take whatever is in /etc/fstab.
451                  */
452                 mount_opts = strdup(mc->m.mnt_opts);
453         }
454
455         mount_point = canonicalize(mount_point);
456         if (mount_point == NULL ||
457             mount_point[0] != '/') {
458                 fprintf(stderr, "%s: unknown mount point %s\n",
459                         progname, mount_point ? : "");
460                 exit(1);
461         }
462         
463         parse_opts(mount_opts, &flags, &extra_opts);
464
465         if (uid != 0) {
466             if (! (flags & (MS_USERS | MS_USER))) {
467                     fprintf(stderr, "%s: permission denied\n", progname);
468                     exit(1);
469             }
470         }
471
472         if (chk_mountpoint(mount_point))
473                 exit(EX_FAIL);
474
475         if (strcmp(fs_type, "nfs4") == 0)
476                 mnt_err = nfs4mount(spec, mount_point, &flags, &extra_opts, &mount_opts, 0);
477         else
478                 mnt_err = nfsmount(spec, mount_point, &flags,
479                                    &extra_opts, &mount_opts,
480                                    0, fake);
481
482         if (mnt_err)
483                 exit(EX_FAIL);
484
485         if (!fake) {
486                 mnt_err = do_mount_syscall(spec, mount_point, fs_type,
487                                            flags & ~(MS_USER|MS_USERS) ,
488                                            mount_opts);
489
490                 if (mnt_err) {
491                         mount_error(spec, mount_point, errno);
492                         exit(EX_FAIL);
493                 }
494         }
495
496         if (!nomtab)
497                 mnt_err = add_mtab(spec, mount_point, fs_type, flags, extra_opts,
498                                 0, 0 /* these are always zero for NFS */ );
499
500         exit(mnt_err);
501 }
502