Fix getcwd() warning
[zfs.git] / cmd / mount_zfs / mount_zfs.c
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21
22 /*
23  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
24  * Copyright (c) 2011 Lawrence Livermore National Security, LLC.
25  */
26
27 #include <libintl.h>
28 #include <unistd.h>
29 #include <sys/file.h>
30 #include <sys/mount.h>
31 #include <sys/stat.h>
32 #include <libzfs.h>
33 #ifdef HAVE_LIBSELINUX
34 #include <selinux/selinux.h>
35 #endif /* HAVE_LIBSELINUX */
36
37 libzfs_handle_t *g_zfs;
38
39 typedef struct option_map {
40         const char *name;
41         unsigned long mntmask;
42         unsigned long zfsmask;
43 } option_map_t;
44
45 static const option_map_t option_map[] = {
46         /* Canonicalized filesystem independent options from mount(8) */
47         { MNTOPT_NOAUTO,        MS_COMMENT,     ZS_COMMENT      },
48         { MNTOPT_DEFAULTS,      MS_COMMENT,     ZS_COMMENT      },
49         { MNTOPT_NODEVICES,     MS_NODEV,       ZS_COMMENT      },
50         { MNTOPT_DIRSYNC,       MS_DIRSYNC,     ZS_COMMENT      },
51         { MNTOPT_NOEXEC,        MS_NOEXEC,      ZS_COMMENT      },
52         { MNTOPT_GROUP,         MS_GROUP,       ZS_COMMENT      },
53         { MNTOPT_NETDEV,        MS_COMMENT,     ZS_COMMENT      },
54         { MNTOPT_NOFAIL,        MS_COMMENT,     ZS_COMMENT      },
55         { MNTOPT_NOSUID,        MS_NOSUID,      ZS_COMMENT      },
56         { MNTOPT_OWNER,         MS_OWNER,       ZS_COMMENT      },
57         { MNTOPT_REMOUNT,       MS_REMOUNT,     ZS_COMMENT      },
58         { MNTOPT_RO,            MS_RDONLY,      ZS_COMMENT      },
59         { MNTOPT_RW,            MS_COMMENT,     ZS_COMMENT      },
60         { MNTOPT_SYNC,          MS_SYNCHRONOUS, ZS_COMMENT      },
61         { MNTOPT_USER,          MS_USERS,       ZS_COMMENT      },
62         { MNTOPT_USERS,         MS_USERS,       ZS_COMMENT      },
63 #ifdef MS_NOATIME
64         { MNTOPT_NOATIME,       MS_NOATIME,     ZS_COMMENT      },
65 #endif
66 #ifdef MS_NODIRATIME
67         { MNTOPT_NODIRATIME,    MS_NODIRATIME,  ZS_COMMENT      },
68 #endif
69 #ifdef MS_RELATIME
70         { MNTOPT_RELATIME,      MS_RELATIME,    ZS_COMMENT      },
71 #endif
72 #ifdef MS_STRICTATIME
73         { MNTOPT_DFRATIME,      MS_STRICTATIME, ZS_COMMENT      },
74 #endif
75 #ifdef HAVE_SELINUX
76         { MNTOPT_CONTEXT,       MS_COMMENT,     ZS_NOCONTEXT    },
77         { MNTOPT_NOCONTEXT,     MS_COMMENT,     ZS_NOCONTEXT    },
78         { MNTOPT_FSCONTEXT,     MS_COMMENT,     ZS_NOCONTEXT    },
79         { MNTOPT_DEFCONTEXT,    MS_COMMENT,     ZS_NOCONTEXT    },
80         { MNTOPT_ROOTCONTEXT,   MS_COMMENT,     ZS_NOCONTEXT    },
81 #endif
82 #ifdef MS_I_VERSION
83         { MNTOPT_IVERSION,      MS_I_VERSION,   ZS_COMMENT      },
84 #endif
85 #ifdef MS_MANDLOCK
86         { MNTOPT_NBMAND,        MS_MANDLOCK,    ZS_COMMENT      },
87 #endif
88         /* Valid options not found in mount(8) */
89         { MNTOPT_BIND,          MS_BIND,        ZS_COMMENT      },
90 #ifdef MS_REC
91         { MNTOPT_RBIND,         MS_BIND|MS_REC, ZS_COMMENT      },
92 #endif
93         { MNTOPT_COMMENT,       MS_COMMENT,     ZS_COMMENT      },
94 #ifdef MS_NOSUB
95         { MNTOPT_NOSUB,         MS_NOSUB,       ZS_COMMENT      },
96 #endif
97 #ifdef MS_SILENT
98         { MNTOPT_QUIET,         MS_SILENT,      ZS_COMMENT      },
99 #endif
100         /* Custom zfs options */
101         { MNTOPT_NOXATTR,       MS_COMMENT,     ZS_COMMENT      },
102         { MNTOPT_ZFSUTIL,       MS_COMMENT,     ZS_ZFSUTIL      },
103         { NULL,                 0,              0               } };
104
105 /*
106  * Break the mount option in to a name/value pair.  The name is
107  * validated against the option map and mount flags set accordingly.
108  */
109 static int
110 parse_option(char *mntopt, unsigned long *mntflags,
111     unsigned long *zfsflags, int sloppy)
112 {
113         const option_map_t *opt;
114         char *ptr, *name, *value = NULL;
115         int error = 0;
116
117         name = strdup(mntopt);
118         if (name == NULL)
119                 return (ENOMEM);
120
121         for (ptr = name; ptr && *ptr; ptr++) {
122                 if (*ptr == '=') {
123                         *ptr = '\0';
124                         value = ptr+1;
125                         break;
126                 }
127         }
128
129         for (opt = option_map; opt->name != NULL; opt++) {
130                 if (strncmp(name, opt->name, strlen(name)) == 0) {
131                         *mntflags |= opt->mntmask;
132                         *zfsflags |= opt->zfsmask;
133
134                         /* MS_USERS implies default user options */
135                         if (opt->mntmask & (MS_USERS))
136                                 *mntflags |= (MS_NOEXEC|MS_NOSUID|MS_NODEV);
137
138                         /* MS_OWNER|MS_GROUP imply default owner options */
139                         if (opt->mntmask & (MS_OWNER | MS_GROUP))
140                                 *mntflags |= (MS_NOSUID|MS_NODEV);
141
142                         error = 0;
143                         goto out;
144                 }
145         }
146
147         if (!sloppy)
148                 error = ENOENT;
149 out:
150         /* If required further process on the value may be done here */
151         free(name);
152         return (error);
153 }
154
155 /*
156  * Translate the mount option string in to MS_* mount flags for the
157  * kernel vfs.  When sloppy is non-zero unknown options will be ignored
158  * otherwise they are considered fatal are copied in to badopt.
159  */
160 static int
161 parse_options(char *mntopts, unsigned long *mntflags,
162     unsigned long *zfsflags, int sloppy, char *badopt)
163 {
164         int error = 0, quote = 0, flag = 0;
165         char *ptr, *opt, *opts;
166
167         opts = strdup(mntopts);
168         if (opts == NULL)
169                 return (ENOMEM);
170
171         *mntflags = 0;
172         opt = NULL;
173
174         /*
175          * Scan through all mount options which must be comma delimited.
176          * We must be careful to notice regions which are double quoted
177          * and skip commas in these regions.  Each option is then checked
178          * to determine if it is a known option.
179          */
180         for (ptr = opts; ptr && !flag; ptr++) {
181                 if (opt == NULL)
182                         opt = ptr;
183
184                 if (*ptr == '"')
185                         quote = !quote;
186
187                 if (quote)
188                         continue;
189
190                 if (*ptr == '\0')
191                         flag = 1;
192
193                 if ((*ptr == ',') || (*ptr == '\0')) {
194                         *ptr = '\0';
195
196                         error = parse_option(opt, mntflags, zfsflags, sloppy);
197                         if (error) {
198                                 strcpy(badopt, opt);
199                                 goto out;
200                         }
201
202                         opt = NULL;
203                 }
204         }
205
206 out:
207         free(opts);
208         return (error);
209 }
210
211 /*
212  * If a file or directory in your current working directory is named
213  * 'dataset' then mount(8) will prepend your current working directory
214  * to dataset.  The is no way to prevent this behavior so we simply
215  * check for it and strip the prepended patch when it is added.
216  */
217 static char *
218 parse_dataset(char *dataset)
219 {
220         char cwd[PATH_MAX];
221         int len;
222
223         if (getcwd(cwd, PATH_MAX) == NULL)
224                 return (dataset);
225
226         len = strlen(cwd);
227
228         /* Do not add one when cwd already ends in a trailing '/' */
229         if (!strncmp(cwd, dataset, len))
230                 return (dataset + len + (cwd[len-1] != '/'));
231
232         return (dataset);
233 }
234
235 /*
236  * Update the mtab_* code to use the libmount library when it is commonly
237  * available otherwise fallback to legacy mode.  The mount(8) utility will
238  * manage the lock file for us to prevent racing updates to /etc/mtab.
239  */
240 static int
241 mtab_is_writeable(void)
242 {
243         struct stat st;
244         int error, fd;
245
246         error = stat(MNTTAB, &st);
247         if (error || S_ISLNK(st.st_mode))
248                 return (0);
249
250         fd = open(MNTTAB, O_RDWR | O_CREAT, 0644);
251         if (fd < 0)
252                 return (0);
253
254         close(fd);
255         return (1);
256 }
257
258 static int
259 mtab_update(char *dataset, char *mntpoint, char *type, char *mntopts)
260 {
261         struct mntent mnt;
262         FILE *fp;
263         int error;
264
265         mnt.mnt_fsname = dataset;
266         mnt.mnt_dir = mntpoint;
267         mnt.mnt_type = type;
268         mnt.mnt_opts = mntopts ? mntopts : "";
269         mnt.mnt_freq = 0;
270         mnt.mnt_passno = 0;
271
272         fp = setmntent(MNTTAB, "a+");
273         if (!fp) {
274                 (void) fprintf(stderr, gettext(
275                     "filesystem '%s' was mounted, but %s "
276                     "could not be opened due to error %d\n"),
277                     dataset, MNTTAB, errno);
278                 return (MOUNT_FILEIO);
279         }
280
281         error = addmntent(fp, &mnt);
282         if (error) {
283                 (void) fprintf(stderr, gettext(
284                     "filesystem '%s' was mounted, but %s "
285                     "could not be updated due to error %d\n"),
286                     dataset, MNTTAB, errno);
287                 return (MOUNT_FILEIO);
288         }
289
290         (void) endmntent(fp);
291
292         return (MOUNT_SUCCESS);
293 }
294
295 int
296 main(int argc, char **argv)
297 {
298         zfs_handle_t *zhp;
299         char legacy[ZFS_MAXPROPLEN];
300         char mntopts[MNT_LINE_MAX] = { '\0' };
301         char badopt[MNT_LINE_MAX] = { '\0' };
302         char *dataset, *mntpoint;
303         unsigned long mntflags = 0, zfsflags = 0;
304         int sloppy = 0, fake = 0, verbose = 0, nomtab = 0, zfsutil = 0;
305         int error, c;
306
307         (void) setlocale(LC_ALL, "");
308         (void) textdomain(TEXT_DOMAIN);
309
310         opterr = 0;
311
312         /* check options */
313         while ((c = getopt(argc, argv, "sfnvo:h?")) != -1) {
314                 switch (c) {
315                 case 's':
316                         sloppy = 1;
317                         break;
318                 case 'f':
319                         fake = 1;
320                         break;
321                 case 'n':
322                         nomtab = 1;
323                         break;
324                 case 'v':
325                         verbose++;
326                         break;
327                 case 'o':
328                         (void) strlcpy(mntopts, optarg, sizeof (mntopts));
329                         break;
330                 case 'h':
331                 case '?':
332                         (void) fprintf(stderr, gettext("Invalid option '%c'\n"),
333                             optopt);
334                         (void) fprintf(stderr, gettext("Usage: mount.zfs "
335                             "[-sfnv] [-o options] <dataset> <mountpoint>\n"));
336                         return (MOUNT_USAGE);
337                 }
338         }
339
340         argc -= optind;
341         argv += optind;
342
343         /* check that we only have two arguments */
344         if (argc != 2) {
345                 if (argc == 0)
346                         (void) fprintf(stderr, gettext("missing dataset "
347                             "argument\n"));
348                 else if (argc == 1)
349                         (void) fprintf(stderr,
350                             gettext("missing mountpoint argument\n"));
351                 else
352                         (void) fprintf(stderr, gettext("too many arguments\n"));
353                 (void) fprintf(stderr, "usage: mount <dataset> <mountpoint>\n");
354                 return (MOUNT_USAGE);
355         }
356
357         dataset = parse_dataset(argv[0]);
358         mntpoint = argv[1];
359
360         /* validate mount options and set mntflags */
361         error = parse_options(mntopts, &mntflags, &zfsflags, sloppy, badopt);
362         if (error) {
363                 switch (error) {
364                 case ENOMEM:
365                         (void) fprintf(stderr, gettext("filesystem '%s' "
366                             "cannot be mounted due to a memory allocation "
367                             "failure\n"), dataset);
368                         return (MOUNT_SYSERR);
369                 case EINVAL:
370                         (void) fprintf(stderr, gettext("filesystem '%s' "
371                             "cannot be mounted of due to the invalid option "
372                             "'%s'\n"), dataset, badopt);
373                         (void) fprintf(stderr, gettext("Use the '-s' option "
374                             "to ignore the bad mount option.\n"));
375                         return (MOUNT_USAGE);
376                 default:
377                         (void) fprintf(stderr, gettext("filesystem '%s' "
378                             "cannot be mounted due to internal error %d\n"),
379                             dataset, error);
380                         return (MOUNT_SOFTWARE);
381                 }
382         }
383
384 #ifdef HAVE_LIBSELINUX
385         /*
386          * Automatically add the default zfs context when selinux is enabled
387          * and the caller has not specified their own context.  This must be
388          * done until zfs is added to the default selinux policy configuration
389          * as a known filesystem type which supports xattrs.
390          */
391         if (is_selinux_enabled() && !(zfsflags & ZS_NOCONTEXT))
392                 (void) strlcat(mntopts, ",context=\"system_u:"
393                     "object_r:file_t:s0\"", sizeof (mntopts));
394 #endif /* HAVE_LIBSELINUX */
395
396
397         if (verbose)
398                 (void) fprintf(stdout, gettext("mount.zfs:\n"
399                     "  dataset:    \"%s\"\n  mountpoint: \"%s\"\n"
400                     "  mountflags: 0x%lx\n  zfsflags:   0x%lx\n"
401                     "  mountopts:  \"%s\"\n\n"),
402                     dataset, mntpoint, mntflags, zfsflags, mntopts);
403
404         if (mntflags & MS_REMOUNT)
405                 nomtab = 1;
406
407         if (zfsflags * ZS_ZFSUTIL)
408                 zfsutil = 1;
409
410         if ((g_zfs = libzfs_init()) == NULL)
411                 return (MOUNT_SYSERR);
412
413         /* try to open the dataset to access the mount point */
414         if ((zhp = zfs_open(g_zfs, dataset, ZFS_TYPE_FILESYSTEM)) == NULL) {
415                 (void) fprintf(stderr, gettext("filesystem '%s' cannot be "
416                     "mounted, unable to open the dataset\n"), dataset);
417                 libzfs_fini(g_zfs);
418                 return (MOUNT_USAGE);
419         }
420
421         (void) zfs_prop_get(zhp, ZFS_PROP_MOUNTPOINT, legacy,
422             sizeof (legacy), NULL, NULL, 0, B_FALSE);
423
424         zfs_close(zhp);
425         libzfs_fini(g_zfs);
426
427         /*
428          * Legacy mount points may only be mounted using 'mount', never using
429          * 'zfs mount'.  However, since 'zfs mount' actually invokes 'mount'
430          * we differentiate the two cases using the 'zfsutil' mount option.
431          * This mount option should only be supplied by the 'zfs mount' util.
432          */
433         if (zfsutil && !strcmp(legacy, ZFS_MOUNTPOINT_LEGACY)) {
434                 (void) fprintf(stderr, gettext(
435                     "filesystem '%s' cannot be mounted using 'zfs mount'.\n"
436                     "Use 'zfs set mountpoint=%s' or 'mount -t zfs %s %s'.\n"
437                     "See zfs(8) for more information.\n"),
438                    dataset, mntpoint, dataset, mntpoint);
439                 return (MOUNT_USAGE);
440         }
441
442         if (!zfsutil && strcmp(legacy, ZFS_MOUNTPOINT_LEGACY)) {
443                 (void) fprintf(stderr, gettext(
444                     "filesystem '%s' cannot be mounted using 'mount'.\n"
445                     "Use 'zfs set mountpoint=%s' or 'zfs mount %s'.\n"
446                     "See zfs(8) for more information.\n"),
447                     dataset, "legacy", dataset);
448                 return (MOUNT_USAGE);
449         }
450
451         if (!fake) {
452                 error = mount(dataset, mntpoint, MNTTYPE_ZFS,
453                     mntflags, mntopts);
454                 if (error) {
455                         switch (errno) {
456                         case EBUSY:
457                                 (void) fprintf(stderr, gettext("filesystem "
458                                     "'%s' is already mounted\n"), dataset);
459                                 return (MOUNT_SYSERR);
460                         default:
461                                 (void) fprintf(stderr, gettext("filesystem "
462                                     "'%s' can not be mounted due to error "
463                                     "%d\n"), dataset, errno);
464                                 return (MOUNT_USAGE);
465                         }
466                 }
467         }
468
469         if (!nomtab && mtab_is_writeable()) {
470                 error = mtab_update(dataset, mntpoint, MNTTYPE_ZFS, mntopts);
471                 if (error)
472                         return (error);
473         }
474
475         return (MOUNT_SUCCESS);
476 }