]> git.decadent.org.uk Git - nfs-utils.git/blob - utils/mount/mount.c
mount.nfs: Simplify generation of progname
[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;
388         uid_t uid = getuid();
389
390         progname = basename(argv[0]);
391
392         if(!strncmp(progname, "umount", strlen("umount"))) {
393                 if(argc < 2) {
394                         umount_usage();
395                         exit(1);
396                 }
397                 exit(nfsumount(argc, argv));
398         }
399
400         if(argv[1] && argv[1][0] == '-') {
401                 if(argv[1][1] == 'V')
402                         printf("%s ("PACKAGE_STRING")\n", progname);
403                 else
404                         mount_usage();
405                 return 0;
406         }
407
408         if ((argc < 3)) {
409                 mount_usage();
410                 exit(1);
411         }
412
413         spec = argv[1];
414         mount_point = argv[2];
415
416         argv[2] = argv[0]; /* so that getopt error messages are correct */
417         while ((c = getopt_long (argc - 2, argv + 2, "rt:vVwfno:hs",
418                                 longopts, NULL)) != -1) {
419                 switch (c) {
420                 case 'r':
421                         flags |= MS_RDONLY;
422                         break;
423                 case 't':
424                         if (strcmp(optarg, "nfs4") == 0)
425                                 nfs_mount_vers = 4;
426                         else if (strcmp(optarg, "nfs") == 0)
427                                 nfs_mount_vers = 0;
428                         else {
429                                 fprintf(stderr, "%s: unknown filesystem type: %s\n",
430                                         progname, optarg);
431                                 exit(1);
432                         }
433                         break;
434                 case 'v':
435                         ++verbose;
436                         break;
437                 case 'V':
438                         printf("%s: ("PACKAGE_STRING")\n", progname);
439                         return 0;
440                 case 'w':
441                         flags &= ~MS_RDONLY;
442                         break;
443                 case 'f':
444                         ++fake;
445                         break;
446                 case 'n':
447                         ++nomtab;
448                         break;
449                 case 'o':              /* specify mount options */
450                         if (mount_opts)
451                                 mount_opts = xstrconcat3(mount_opts, ",", optarg);
452                         else
453                                 mount_opts = xstrdup(optarg);
454                         break;
455                 case 's':
456                         ++sloppy;
457                         break;
458                 case 128: /* bind */
459                         mounttype = MS_BIND;
460                         break;
461                 case 129: /* replace */
462                         mounttype = MS_REPLACE;
463                         break;
464                 case 130: /* after */
465                         mounttype = MS_AFTER;
466                         break;
467                 case 131: /* before */
468                         mounttype = MS_BEFORE;
469                         break;
470                 case 132: /* over */
471                         mounttype = MS_OVER;
472                         break;
473                 case 133: /* move */
474                         mounttype = MS_MOVE;
475                         break;
476                 case 135: /* rbind */
477                         mounttype = MS_BIND | MS_REC;
478                         break;
479                 case 'h':
480                 default:
481                         mount_usage();
482                         exit(1);
483                 }
484         }
485         if (optind != argc-2) {
486                 /* Extra non-option words at the end... */
487                 mount_usage();
488                 exit(1);
489         }
490
491         if (strcmp(progname, "mount.nfs4") == 0)
492                 nfs_mount_vers = 4;
493
494         if (uid != 0) {
495                 /* don't even think about it unless options exactly
496                  * match fstab
497                  */
498                 struct mntentchn *mc;
499
500                 if ((mc = getfsfile(mount_point)) == NULL ||
501                     strcmp(mc->m.mnt_fsname, spec) != 0 ||
502                     strcmp(mc->m.mnt_type, (nfs_mount_vers == 4 ? "nfs4":"nfs")) != 0
503                     ) {
504                         fprintf(stderr, "%s: permission died - no match for fstab\n",
505                                 progname);
506                         exit(1);
507                 }
508                 /* 'mount' munges the options from fstab before passing them
509                  * to us, so it is non-trivial to test that we have the correct
510                  * set of options and we don't want to trust what the user
511                  * gave us, so just take whatever is in fstab
512                  */
513                 mount_opts = strdup(mc->m.mnt_opts);
514                 mounttype = 0;
515         }
516
517         mount_point = canonicalize(mount_point);
518         if (mount_point == NULL ||
519             mount_point[0] != '/') {
520                 fprintf(stderr, "%s: unknown mount point %s\n",
521                         progname, mount_point ? : "");
522                 exit(1);
523         }
524         
525         parse_opts(mount_opts, &flags, &extra_opts);
526
527         if (uid != 0) {
528             if (! (flags & (MS_USERS | MS_USER))) {
529                     fprintf(stderr, "%s: permission denied\n", progname);
530                     exit(1);
531             }
532         }
533
534         if (chk_mountpoint(mount_point))
535                 exit(EX_FAIL);
536
537         if (nfs_mount_vers == 4)
538                 mnt_err = nfs4mount(spec, mount_point, &flags, &extra_opts, &mount_opts, 0);
539         else {
540                 int need_statd = 0;
541                 mnt_err = nfsmount(spec, mount_point, &flags,
542                                    &extra_opts, &mount_opts,
543                                    0, &need_statd);
544                 if (!mnt_err && !fake && need_statd) {
545                         if (!start_statd()) {
546                                 fprintf(stderr,
547                                         "%s: rpc.statd is not running but is "
548                                         "required for remote locking\n"
549                                         "   Either use \"-o nolocks\" to keep "
550                                         "locks local, or start statd.\n",
551                                         progname);
552                                 exit(1);
553                         }
554                 }
555         }
556
557         if (mnt_err)
558                 exit(EX_FAIL);
559
560         if (!fake) {
561                 mnt_err = do_mount_syscall(spec, mount_point,
562                                            nfs_mount_vers == 4 ? "nfs4" : "nfs",
563                                            flags & ~(MS_USER|MS_USERS) ,
564                                            mount_opts);
565
566                 if (mnt_err) {
567                         mount_error(mount_point, spec);
568                         exit(EX_FAIL);
569                 }
570         }
571
572         if (!nomtab)
573                 add_mtab(spec, mount_point,
574                          nfs_mount_vers == 4 ? "nfs4" : "nfs",
575                          flags, extra_opts, 0, 0);
576
577         return 0;
578 }
579