]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/mount.c
17c79e452e9f30ce9315be8ea9868c00c6b7486c
[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 <getopt.h>
30 #include <mntent.h>
31 #include <pwd.h>
32
33 #include "fstab.h"
34 #include "xcommon.h"
35 #include "mount_constants.h"
36 #include "nfs_paths.h"
37
38 #include "nfs_mount.h"
39 #include "nfs4_mount.h"
40 #include "nfsumount.h"
41 #include "mount.h"
42
43 char *progname;
44 int nomtab;
45 int verbose;
46 int mounttype;
47 int sloppy;
48
49 static struct option longopts[] = {
50   { "fake", 0, 0, 'f' },
51   { "help", 0, 0, 'h' },
52   { "no-mtab", 0, 0, 'n' },
53   { "read-only", 0, 0, 'r' },
54   { "ro", 0, 0, 'r' },
55   { "verbose", 0, 0, 'v' },
56   { "version", 0, 0, 'V' },
57   { "read-write", 0, 0, 'w' },
58   { "rw", 0, 0, 'w' },
59   { "options", 1, 0, 'o' },
60   { "nfsvers", 1, 0, 't' },
61   { "bind", 0, 0, 128 },
62   { "replace", 0, 0, 129 },
63   { "after", 0, 0, 130 },
64   { "before", 0, 0, 131 },
65   { "over", 0, 0, 132 },
66   { "move", 0, 0, 133 },
67   { "rbind", 0, 0, 135 },
68   { NULL, 0, 0, 0 }
69 };
70
71 /* Map from -o and fstab option strings to the flag argument to mount(2).  */
72 struct opt_map {
73   const char *opt;              /* option name */
74   int  skip;                    /* skip in mtab option string */
75   int  inv;                     /* true if flag value should be inverted */
76   int  mask;                    /* flag mask value */
77 };
78
79 /* Custom mount options for our own purposes.  */
80 #define MS_DUMMY        0x00000000
81 #define MS_USERS        0x40000000
82 #define MS_USER         0x80000000
83
84 static const struct opt_map opt_map[] = {
85   { "defaults", 0, 0, 0         },      /* default options */
86   { "ro",       1, 0, MS_RDONLY },      /* read-only */
87   { "rw",       1, 1, MS_RDONLY },      /* read-write */
88   { "exec",     0, 1, MS_NOEXEC },      /* permit execution of binaries */
89   { "noexec",   0, 0, MS_NOEXEC },      /* don't execute binaries */
90   { "suid",     0, 1, MS_NOSUID },      /* honor suid executables */
91   { "nosuid",   0, 0, MS_NOSUID },      /* don't honor suid executables */
92   { "dev",      0, 1, MS_NODEV  },      /* interpret device files  */
93   { "nodev",    0, 0, MS_NODEV  },      /* don't interpret devices */
94   { "sync",     0, 0, MS_SYNCHRONOUS},  /* synchronous I/O */
95   { "async",    0, 1, MS_SYNCHRONOUS},  /* asynchronous I/O */
96   { "dirsync",  0, 0, MS_DIRSYNC},      /* synchronous directory modifications */
97   { "remount",  0, 0, MS_REMOUNT},      /* Alter flags of mounted FS */
98   { "bind",     0, 0, MS_BIND   },      /* Remount part of tree elsewhere */
99   { "rbind",    0, 0, MS_BIND|MS_REC }, /* Idem, plus mounted subtrees */
100   { "auto",     0, 0, MS_DUMMY },       /* Can be mounted using -a */
101   { "noauto",   0, 0, MS_DUMMY },       /* Can  only be mounted explicitly */
102   { "users",    1, 0, MS_USERS },       /* Allow ordinary user to mount */
103   { "nousers",  0, 1, MS_DUMMY  },      /* Forbid ordinary user to mount */
104   { "user",     1, 0, MS_USER  },       /* Allow ordinary user to mount */
105   { "nouser",   0, 1, MS_DUMMY   },     /* Forbid ordinary user to mount */
106   { "owner",    0, 0, MS_DUMMY  },      /* Let the owner of the device mount */
107   { "noowner",  0, 0, MS_DUMMY  },      /* Device owner has no special privs */
108   { "group",    0, 0, MS_DUMMY  },      /* Let the group of the device mount */
109   { "nogroup",  0, 0, MS_DUMMY  },      /* Device group has no special privs */
110   { "_netdev",  0, 0, MS_DUMMY},        /* Device requires network */
111   { "comment",  0, 0, MS_DUMMY},        /* fstab comment only (kudzu,_netdev)*/
112
113   /* add new options here */
114 #ifdef MS_NOSUB
115   { "sub",      0, 1, MS_NOSUB  },      /* allow submounts */
116   { "nosub",    0, 0, MS_NOSUB  },      /* don't allow submounts */
117 #endif
118 #ifdef MS_SILENT
119   { "quiet",    0, 0, MS_SILENT    },   /* be quiet  */
120   { "loud",     0, 1, MS_SILENT    },   /* print out messages. */
121 #endif
122 #ifdef MS_MANDLOCK
123   { "mand",     0, 0, MS_MANDLOCK },    /* Allow mandatory locks on this FS */
124   { "nomand",   0, 1, MS_MANDLOCK },    /* Forbid mandatory locks on this FS */
125 #endif
126   { "loop",     1, 0, MS_DUMMY   },      /* use a loop device */
127 #ifdef MS_NOATIME
128   { "atime",    0, 1, MS_NOATIME },     /* Update access time */
129   { "noatime",  0, 0, MS_NOATIME },     /* Do not update access time */
130 #endif
131 #ifdef MS_NODIRATIME
132   { "diratime", 0, 1, MS_NODIRATIME },  /* Update dir access times */
133   { "nodiratime", 0, 0, MS_NODIRATIME },/* Do not update dir access times */
134 #endif
135   { NULL,       0, 0, 0         }
136 };
137
138 /* Try to build a canonical options string.  */
139 static char * fix_opts_string (int flags, const char *extra_opts) {
140         const struct opt_map *om;
141         char *new_opts;
142
143         new_opts = xstrdup((flags & MS_RDONLY) ? "ro" : "rw");
144         if (flags & MS_USER) {
145                 /* record who mounted this so they can unmount */
146                 struct passwd *pw = getpwuid(getuid());
147                 if(pw)
148                         new_opts = xstrconcat3(new_opts, ",user=", pw->pw_name);
149         }
150         if (flags & MS_USERS)
151                 new_opts = xstrconcat3(new_opts, ",users", "");
152         
153         for (om = opt_map; om->opt != NULL; om++) {
154                 if (om->skip)
155                         continue;
156                 if (om->inv || !om->mask || (flags & om->mask) != om->mask)
157                         continue;
158                 new_opts = xstrconcat3(new_opts, ",", om->opt);
159                 flags &= ~om->mask;
160         }
161         if (extra_opts && *extra_opts) {
162                 new_opts = xstrconcat3(new_opts, ",", extra_opts);
163         }
164         return new_opts;
165 }
166
167
168 int add_mtab(char *fsname, char *mount_point, char *fstype, int flags, char *opts, int freq, int passno)
169 {
170         struct mntent ment;
171         FILE *mtab;
172
173         ment.mnt_fsname = fsname;
174         ment.mnt_dir = mount_point;
175         ment.mnt_type = fstype;
176         ment.mnt_opts = fix_opts_string(flags, opts);
177         ment.mnt_freq = 0;
178         ment.mnt_passno= 0;
179
180         if(flags & MS_REMOUNT) {
181                 update_mtab(ment.mnt_dir, &ment);
182                 return 0;
183         }
184
185         lock_mtab();
186
187         if ((mtab = setmntent(MOUNTED, "a+")) == NULL) {
188                 unlock_mtab();
189                 fprintf(stderr, "Can't open " MOUNTED);
190                 return 1;
191         }
192
193         if (addmntent(mtab, &ment) == 1) {
194                 endmntent(mtab);
195                 unlock_mtab();
196                 fprintf(stderr, "Can't write mount entry");
197                 return 1;
198         }
199
200         if (fchmod(fileno(mtab), 0644) == -1) {
201                 endmntent(mtab);
202                 unlock_mtab();
203                 fprintf(stderr, "Can't set perms on " MOUNTED);
204                 return 1;
205         }
206
207         endmntent(mtab);
208
209         unlock_mtab();
210
211         return 0;
212 }
213
214 int do_mount_syscall(char *spec, char *node, char *type, int flags, void *data)
215 {
216         return mount(spec, node, type, flags, data);
217 }
218
219 void mount_usage()
220 {
221         printf("usage: %s remotetarget dir [-rvVwfnh] [-t version] [-o nfsoptions]\n", progname);
222         printf("options:\n\t-r\t\tMount file system readonly\n");
223         printf("\t-v\t\tVerbose\n");
224         printf("\t-V\t\tPrint version\n");
225         printf("\t-w\t\tMount file system read-write\n");
226         printf("\t-f\t\tFake mount, don't actually mount\n");
227         printf("\t-n\t\tDo not update /etc/mtab\n");
228         printf("\t-s\t\tTolerate sloppy mount options rather than failing.\n");
229         printf("\t-h\t\tPrint this help\n");
230         printf("\tversion\t\tnfs4 - NFS version 4, nfs - older NFS version supported\n");
231         printf("\tnfsoptions\tRefer mount.nfs(8) or nfs(5)\n\n");
232 }
233
234 static inline void
235 parse_opt(const char *opt, int *mask, char *extra_opts, int len) {
236         const struct opt_map *om;
237
238         for (om = opt_map; om->opt != NULL; om++) {
239                 if (!strcmp (opt, om->opt)) {
240                         if (om->inv)
241                                 *mask &= ~om->mask;
242                         else
243                                 *mask |= om->mask;
244                         return;
245                 }
246         }
247
248         len -= strlen(extra_opts);
249
250         if (*extra_opts && --len > 0)
251                 strcat(extra_opts, ",");
252
253         if ((len -= strlen(opt)) > 0)
254                 strcat(extra_opts, opt);
255 }
256
257 /* Take -o options list and compute 4th and 5th args to mount(2).  flags
258    gets the standard options (indicated by bits) and extra_opts all the rest */
259 static void parse_opts (const char *options, int *flags, char **extra_opts)
260 {
261         if (options != NULL) {
262                 char *opts = xstrdup(options);
263                 char *opt, *p;
264                 int len = strlen(opts) + 1;             /* include room for a null */
265                 int open_quote = 0;
266
267                 *extra_opts = xmalloc(len);
268                 **extra_opts = '\0';
269
270                 for (p=opts, opt=NULL; p && *p; p++) {
271                         if (!opt)
272                                 opt = p;                /* begin of the option item */
273                         if (*p == '"')
274                                 open_quote ^= 1;        /* reverse the status */
275                         if (open_quote)
276                                 continue;               /* still in a quoted block */
277                         if (*p == ',')
278                                 *p = '\0';              /* terminate the option item */
279                         /* end of option item or last item */
280                         if (*p == '\0' || *(p+1) == '\0') {
281                                 parse_opt(opt, flags, *extra_opts, len);
282                                 opt = NULL;
283                         }
284                 }
285                 free(opts);
286         }
287 }
288
289 static void mount_error(char *mntpnt, char *node)
290 {
291         switch(errno) {
292                 case ENOTDIR:
293                         fprintf(stderr, "%s: mount point %s is not a directory\n", 
294                                 progname, mntpnt);
295                         break;
296                 case EBUSY:
297                         fprintf(stderr, "%s: %s is already mounted or busy\n", 
298                                 progname, mntpnt);
299                         break;
300                 case ENOENT:
301                         if (node) {
302                                 fprintf(stderr, "%s: %s failed, reason given by server: %s\n",
303                                         progname, node, strerror(errno));
304                         } else
305                                 fprintf(stderr, "%s: mount point %s does not exist\n", 
306                                         progname, mntpnt);
307                         break;
308                 default:
309                         fprintf(stderr, "%s: %s\n", progname, strerror(errno));
310         }
311 }
312 static int chk_mountpoint(char *mount_point)
313 {
314         struct stat sb;
315
316         if (stat(mount_point, &sb) < 0){
317                 mount_error(mount_point, NULL);
318                 return 1;
319         }
320         if (S_ISDIR(sb.st_mode) == 0){
321                 errno = ENOTDIR;
322                 mount_error(mount_point, NULL);
323                 return 1;
324         }
325         if (access(mount_point, X_OK) < 0) {
326                 mount_error(mount_point, NULL);
327                 return 1;
328         }
329
330         return 0;
331 }
332
333 extern u_short getport(
334         struct sockaddr_in *saddr,
335         u_long prog,
336         u_long vers,
337         u_int prot);
338
339 static int probe_statd()
340 {
341         struct sockaddr_in addr;
342         u_short port;
343
344         memset(&addr, 0, sizeof(addr));
345         addr.sin_family = AF_INET;
346         addr.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
347         port = getport(&addr, 100024, 1, IPPROTO_UDP);
348
349         if (port == 0)
350                 return 0;
351         addr.sin_port = htons(port);
352
353         if (clnt_ping(&addr, 100024, 1, IPPROTO_UDP, NULL) <= 0)
354                 return 0;
355
356         return 1;
357 }
358
359 static int start_statd()
360 {
361         /* If /var/run/rpc.statd.pid exists and is non-empty,
362          * assume statd already running.
363          * If START_STATD not defined, or defined to a non-existent file,
364          * don't bother,
365          * else run that file (typically a shell script)
366          */
367         struct stat stb;
368
369         if (probe_statd())
370                 return 1;
371 #ifdef START_STATD
372         if (stat(START_STATD, &stb) ==0 &&
373             S_ISREG(stb.st_mode) &&
374             (stb.st_mode & S_IXUSR)) {
375                 system(START_STATD);
376                 if (probe_statd())
377                         return 1;
378         }
379 #endif
380         return 0;
381 }
382
383 int main(int argc, char *argv[])
384 {
385         int c, flags = 0, nfs_mount_vers = 0, mnt_err = 1, fake = 0;
386         char *spec, *mount_point, *extra_opts = NULL;
387         char *mount_opts = NULL, *p;
388         uid_t uid = getuid();
389
390         progname = argv[0];
391         if (!progname)
392                 exit(2);
393
394         if ((p = strrchr(progname, '/')) != NULL)
395                 progname = p+1;
396
397         if(!strncmp(progname, "umount", strlen("umount"))) {
398                 if(argc < 2) {
399                         umount_usage();
400                         exit(1);
401                 }
402                 exit(nfsumount(argc, argv));
403         }
404
405         if(argv[1] && argv[1][0] == '-') {
406                 if(argv[1][1] == 'V')
407                         printf("%s ("PACKAGE_STRING")\n", progname);
408                 else
409                         mount_usage();
410                 return 0;
411         }
412
413         if ((argc < 3)) {
414                 mount_usage();
415                 exit(1);
416         }
417
418         spec = argv[1];
419         mount_point = argv[2];
420
421         argv[2] = argv[0]; /* so that getopt error messages are correct */
422         while ((c = getopt_long (argc - 2, argv + 2, "rt:vVwfno:hs",
423                                 longopts, NULL)) != -1) {
424                 switch (c) {
425                 case 'r':
426                         flags |= MS_RDONLY;
427                         break;
428                 case 't':
429                         if (strcmp(optarg, "nfs4") == 0)
430                                 nfs_mount_vers = 4;
431                         else if (strcmp(optarg, "nfs") == 0)
432                                 nfs_mount_vers = 0;
433                         else {
434                                 fprintf(stderr, "%s: unknown filesystem type: %s\n",
435                                         progname, optarg);
436                                 exit(1);
437                         }
438                         break;
439                 case 'v':
440                         ++verbose;
441                         break;
442                 case 'V':
443                         printf("%s: ("PACKAGE_STRING")\n", progname);
444                         return 0;
445                 case 'w':
446                         flags &= ~MS_RDONLY;
447                         break;
448                 case 'f':
449                         ++fake;
450                         break;
451                 case 'n':
452                         ++nomtab;
453                         break;
454                 case 'o':              /* specify mount options */
455                         if (mount_opts)
456                                 mount_opts = xstrconcat3(mount_opts, ",", optarg);
457                         else
458                                 mount_opts = xstrdup(optarg);
459                         break;
460                 case 's':
461                         ++sloppy;
462                         break;
463                 case 128: /* bind */
464                         mounttype = MS_BIND;
465                         break;
466                 case 129: /* replace */
467                         mounttype = MS_REPLACE;
468                         break;
469                 case 130: /* after */
470                         mounttype = MS_AFTER;
471                         break;
472                 case 131: /* before */
473                         mounttype = MS_BEFORE;
474                         break;
475                 case 132: /* over */
476                         mounttype = MS_OVER;
477                         break;
478                 case 133: /* move */
479                         mounttype = MS_MOVE;
480                         break;
481                 case 135: /* rbind */
482                         mounttype = MS_BIND | MS_REC;
483                         break;
484                 case 'h':
485                 default:
486                         mount_usage();
487                         exit(1);
488                 }
489         }
490         if (optind != argc-2) {
491                 /* Extra non-option words at the end... */
492                 mount_usage();
493                 exit(1);
494         }
495
496         if (strcmp(progname, "mount.nfs4") == 0)
497                 nfs_mount_vers = 4;
498
499         if (uid != 0) {
500                 /* don't even think about it unless options exactly
501                  * match fstab
502                  */
503                 struct mntentchn *mc;
504
505                 if ((mc = getfsfile(mount_point)) == NULL ||
506                     strcmp(mc->m.mnt_fsname, spec) != 0 ||
507                     strcmp(mc->m.mnt_type, (nfs_mount_vers == 4 ? "nfs4":"nfs")) != 0
508                     ) {
509                         fprintf(stderr, "%s: permission died - no match for fstab\n",
510                                 progname);
511                         exit(1);
512                 }
513                 /* 'mount' munges the options from fstab before passing them
514                  * to us, so it is non-trivial to test that we have the correct
515                  * set of options and we don't want to trust what the user
516                  * gave us, so just take whatever is in fstab
517                  */
518                 mount_opts = strdup(mc->m.mnt_opts);
519                 mounttype = 0;
520         }
521
522         mount_point = canonicalize(mount_point);
523         if (mount_point == NULL ||
524             mount_point[0] != '/') {
525                 fprintf(stderr, "%s: unknown mount point %s\n",
526                         progname, mount_point ? : "");
527                 exit(1);
528         }
529         
530         parse_opts(mount_opts, &flags, &extra_opts);
531
532         if (uid != 0) {
533             if (! (flags & (MS_USERS | MS_USER))) {
534                     fprintf(stderr, "%s: permission denied\n", progname);
535                     exit(1);
536             }
537         }
538
539         if (chk_mountpoint(mount_point))
540                 exit(EX_FAIL);
541
542         if (nfs_mount_vers == 4)
543                 mnt_err = nfs4mount(spec, mount_point, &flags, &extra_opts, &mount_opts, 0);
544         else {
545                 int need_statd = 0;
546                 mnt_err = nfsmount(spec, mount_point, &flags,
547                                    &extra_opts, &mount_opts,
548                                    0, &need_statd);
549                 if (!mnt_err && !fake && need_statd) {
550                         if (!start_statd()) {
551                                 fprintf(stderr,
552                                         "%s: rpc.statd is not running but is "
553                                         "required for remote locking\n"
554                                         "   Either use \"-o nolocks\" to keep "
555                                         "locks local, or start statd.\n",
556                                         progname);
557                                 exit(1);
558                         }
559                 }
560         }
561
562         if (mnt_err)
563                 exit(EX_FAIL);
564
565         if (!fake) {
566                 mnt_err = do_mount_syscall(spec, mount_point,
567                                            nfs_mount_vers == 4 ? "nfs4" : "nfs",
568                                            flags & ~(MS_USER|MS_USERS) ,
569                                            mount_opts);
570
571                 if (mnt_err) {
572                         mount_error(mount_point, spec);
573                         exit(EX_FAIL);
574                 }
575         }
576
577         if (!nomtab)
578                 add_mtab(spec, mount_point,
579                          nfs_mount_vers == 4 ? "nfs4" : "nfs",
580                          flags, extra_opts, 0, 0);
581
582         return 0;
583 }
584