mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
501a1511ae
Allow zfs datasets to be mounted on Linux without relying on the invocation of an external processes. This is the same behavior which is implemented for FreeBSD. Use of the libmount library was originally considered because it provides functionality to properly lock and update the /etc/mtab file. However, these days /etc/mtab is typically a symlink to /proc/self/mounts so there's nothing to updated. Therefore, we call mount(2) directly and avoid any additional dependencies. If required the legacy behavior can be enabled by setting the ZFS_MOUNT_HELPER environment variable. This may be needed in environments where SELinux in enabled and the zfs binary does not have mount permission. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Felix Dörre <felix@dogcraft.de> #10294
643 lines
18 KiB
C
643 lines
18 KiB
C
/*
|
|
* CDDL HEADER START
|
|
*
|
|
* The contents of this file are subject to the terms of the
|
|
* Common Development and Distribution License (the "License").
|
|
* You may not use this file except in compliance with the License.
|
|
*
|
|
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
|
|
* or http://www.opensolaris.org/os/licensing.
|
|
* See the License for the specific language governing permissions
|
|
* and limitations under the License.
|
|
*
|
|
* When distributing Covered Code, include this CDDL HEADER in each
|
|
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
|
|
* If applicable, add the following below this CDDL HEADER, with the
|
|
* fields enclosed by brackets "[]" replaced with your own identifying
|
|
* information: Portions Copyright [yyyy] [name of copyright owner]
|
|
*
|
|
* CDDL HEADER END
|
|
*/
|
|
|
|
/*
|
|
* Copyright 2015 Nexenta Systems, Inc. All rights reserved.
|
|
* Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
|
|
* Copyright (c) 2014, 2019 by Delphix. All rights reserved.
|
|
* Copyright 2016 Igor Kozhukhov <ikozhukhov@gmail.com>
|
|
* Copyright 2017 RackTop Systems.
|
|
* Copyright (c) 2018 Datto Inc.
|
|
* Copyright 2018 OmniOS Community Edition (OmniOSce) Association.
|
|
*/
|
|
|
|
#include <dirent.h>
|
|
#include <dlfcn.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <libgen.h>
|
|
#include <libintl.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <strings.h>
|
|
#include <unistd.h>
|
|
#include <zone.h>
|
|
#include <sys/mntent.h>
|
|
#include <sys/mount.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/vfs.h>
|
|
#include <sys/dsl_crypt.h>
|
|
#include <libzfs.h>
|
|
|
|
#include "libzfs_impl.h"
|
|
#include <thread_pool.h>
|
|
|
|
/*
|
|
* zfs_init_libshare(zhandle, service)
|
|
*
|
|
* Initialize the libshare API if it hasn't already been initialized.
|
|
* In all cases it returns 0 if it succeeded and an error if not. The
|
|
* service value is which part(s) of the API to initialize and is a
|
|
* direct map to the libshare sa_init(service) interface.
|
|
*/
|
|
int
|
|
zfs_init_libshare(libzfs_handle_t *zhandle, int service)
|
|
{
|
|
int ret = SA_OK;
|
|
|
|
if (ret == SA_OK && zhandle->libzfs_shareflags & ZFSSHARE_MISS) {
|
|
/*
|
|
* We had a cache miss. Most likely it is a new ZFS
|
|
* dataset that was just created. We want to make sure
|
|
* so check timestamps to see if a different process
|
|
* has updated any of the configuration. If there was
|
|
* some non-ZFS change, we need to re-initialize the
|
|
* internal cache.
|
|
*/
|
|
zhandle->libzfs_shareflags &= ~ZFSSHARE_MISS;
|
|
if (sa_needs_refresh(zhandle->libzfs_sharehdl)) {
|
|
zfs_uninit_libshare(zhandle);
|
|
zhandle->libzfs_sharehdl = sa_init(service);
|
|
}
|
|
}
|
|
|
|
if (ret == SA_OK && zhandle && zhandle->libzfs_sharehdl == NULL)
|
|
zhandle->libzfs_sharehdl = sa_init(service);
|
|
|
|
if (ret == SA_OK && zhandle->libzfs_sharehdl == NULL)
|
|
ret = SA_NO_MEMORY;
|
|
return (ret);
|
|
}
|
|
|
|
|
|
/*
|
|
* Share the given filesystem according to the options in the specified
|
|
* protocol specific properties (sharenfs, sharesmb). We rely
|
|
* on "libshare" to do the dirty work for us.
|
|
*/
|
|
int
|
|
zfs_share_proto(zfs_handle_t *zhp, zfs_share_proto_t *proto)
|
|
{
|
|
char mountpoint[ZFS_MAXPROPLEN];
|
|
char shareopts[ZFS_MAXPROPLEN];
|
|
char sourcestr[ZFS_MAXPROPLEN];
|
|
libzfs_handle_t *hdl = zhp->zfs_hdl;
|
|
sa_share_t share;
|
|
zfs_share_proto_t *curr_proto;
|
|
zprop_source_t sourcetype;
|
|
int err, ret;
|
|
|
|
if (!zfs_is_mountable(zhp, mountpoint, sizeof (mountpoint), NULL, 0))
|
|
return (0);
|
|
|
|
for (curr_proto = proto; *curr_proto != PROTO_END; curr_proto++) {
|
|
/*
|
|
* Return success if there are no share options.
|
|
*/
|
|
if (zfs_prop_get(zhp, proto_table[*curr_proto].p_prop,
|
|
shareopts, sizeof (shareopts), &sourcetype, sourcestr,
|
|
ZFS_MAXPROPLEN, B_FALSE) != 0 ||
|
|
strcmp(shareopts, "off") == 0)
|
|
continue;
|
|
|
|
ret = zfs_init_libshare(hdl, SA_INIT_SHARE_API);
|
|
if (ret != SA_OK) {
|
|
(void) zfs_error_fmt(hdl, EZFS_SHARENFSFAILED,
|
|
dgettext(TEXT_DOMAIN, "cannot share '%s': %s"),
|
|
zfs_get_name(zhp), sa_errorstr(ret));
|
|
return (-1);
|
|
}
|
|
|
|
/*
|
|
* If the 'zoned' property is set, then zfs_is_mountable()
|
|
* will have already bailed out if we are in the global zone.
|
|
* But local zones cannot be NFS servers, so we ignore it for
|
|
* local zones as well.
|
|
*/
|
|
if (zfs_prop_get_int(zhp, ZFS_PROP_ZONED))
|
|
continue;
|
|
|
|
share = sa_find_share(hdl->libzfs_sharehdl, mountpoint);
|
|
if (share == NULL) {
|
|
/*
|
|
* This may be a new file system that was just
|
|
* created so isn't in the internal cache
|
|
* (second time through). Rather than
|
|
* reloading the entire configuration, we can
|
|
* assume ZFS has done the checking and it is
|
|
* safe to add this to the internal
|
|
* configuration.
|
|
*/
|
|
if (sa_zfs_process_share(hdl->libzfs_sharehdl,
|
|
NULL, NULL, mountpoint,
|
|
proto_table[*curr_proto].p_name, sourcetype,
|
|
shareopts, sourcestr, zhp->zfs_name) != SA_OK) {
|
|
(void) zfs_error_fmt(hdl,
|
|
proto_table[*curr_proto].p_share_err,
|
|
dgettext(TEXT_DOMAIN, "cannot share '%s'"),
|
|
zfs_get_name(zhp));
|
|
return (-1);
|
|
}
|
|
hdl->libzfs_shareflags |= ZFSSHARE_MISS;
|
|
share = sa_find_share(hdl->libzfs_sharehdl,
|
|
mountpoint);
|
|
}
|
|
if (share != NULL) {
|
|
err = sa_enable_share(share,
|
|
proto_table[*curr_proto].p_name);
|
|
if (err != SA_OK) {
|
|
(void) zfs_error_fmt(hdl,
|
|
proto_table[*curr_proto].p_share_err,
|
|
dgettext(TEXT_DOMAIN, "cannot share '%s'"),
|
|
zfs_get_name(zhp));
|
|
return (-1);
|
|
}
|
|
} else {
|
|
(void) zfs_error_fmt(hdl,
|
|
proto_table[*curr_proto].p_share_err,
|
|
dgettext(TEXT_DOMAIN, "cannot share '%s'"),
|
|
zfs_get_name(zhp));
|
|
return (-1);
|
|
}
|
|
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
/*
|
|
* Unshare a filesystem by mountpoint.
|
|
*/
|
|
int
|
|
unshare_one(libzfs_handle_t *hdl, const char *name, const char *mountpoint,
|
|
zfs_share_proto_t proto)
|
|
{
|
|
sa_share_t share;
|
|
int err;
|
|
char *mntpt;
|
|
/*
|
|
* Mountpoint could get trashed if libshare calls getmntany
|
|
* which it does during API initialization, so strdup the
|
|
* value.
|
|
*/
|
|
mntpt = zfs_strdup(hdl, mountpoint);
|
|
|
|
/* make sure libshare initialized */
|
|
if ((err = zfs_init_libshare(hdl, SA_INIT_SHARE_API)) != SA_OK) {
|
|
free(mntpt); /* don't need the copy anymore */
|
|
return (zfs_error_fmt(hdl, proto_table[proto].p_unshare_err,
|
|
dgettext(TEXT_DOMAIN, "cannot unshare '%s': %s"),
|
|
name, sa_errorstr(err)));
|
|
}
|
|
|
|
share = sa_find_share(hdl->libzfs_sharehdl, mntpt);
|
|
free(mntpt); /* don't need the copy anymore */
|
|
|
|
if (share != NULL) {
|
|
err = sa_disable_share(share, proto_table[proto].p_name);
|
|
if (err != SA_OK) {
|
|
return (zfs_error_fmt(hdl,
|
|
proto_table[proto].p_unshare_err,
|
|
dgettext(TEXT_DOMAIN, "cannot unshare '%s': %s"),
|
|
name, sa_errorstr(err)));
|
|
}
|
|
} else {
|
|
return (zfs_error_fmt(hdl, proto_table[proto].p_unshare_err,
|
|
dgettext(TEXT_DOMAIN, "cannot unshare '%s': not found"),
|
|
name));
|
|
}
|
|
return (0);
|
|
}
|
|
|
|
/*
|
|
* Search the sharetab for the given mountpoint and protocol, returning
|
|
* a zfs_share_type_t value.
|
|
*/
|
|
zfs_share_type_t
|
|
is_shared_impl(libzfs_handle_t *hdl, const char *mountpoint,
|
|
zfs_share_proto_t proto)
|
|
{
|
|
char buf[MAXPATHLEN], *tab;
|
|
char *ptr;
|
|
|
|
if (hdl->libzfs_sharetab == NULL)
|
|
return (SHARED_NOT_SHARED);
|
|
|
|
/* Reopen ZFS_SHARETAB to prevent reading stale data from open file */
|
|
if (freopen(ZFS_SHARETAB, "r", hdl->libzfs_sharetab) == NULL)
|
|
return (SHARED_NOT_SHARED);
|
|
|
|
(void) fseek(hdl->libzfs_sharetab, 0, SEEK_SET);
|
|
|
|
while (fgets(buf, sizeof (buf), hdl->libzfs_sharetab) != NULL) {
|
|
|
|
/* the mountpoint is the first entry on each line */
|
|
if ((tab = strchr(buf, '\t')) == NULL)
|
|
continue;
|
|
|
|
*tab = '\0';
|
|
if (strcmp(buf, mountpoint) == 0) {
|
|
/*
|
|
* the protocol field is the third field
|
|
* skip over second field
|
|
*/
|
|
ptr = ++tab;
|
|
if ((tab = strchr(ptr, '\t')) == NULL)
|
|
continue;
|
|
ptr = ++tab;
|
|
if ((tab = strchr(ptr, '\t')) == NULL)
|
|
continue;
|
|
*tab = '\0';
|
|
if (strcmp(ptr,
|
|
proto_table[proto].p_name) == 0) {
|
|
switch (proto) {
|
|
case PROTO_NFS:
|
|
return (SHARED_NFS);
|
|
case PROTO_SMB:
|
|
return (SHARED_SMB);
|
|
default:
|
|
return (0);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
return (SHARED_NOT_SHARED);
|
|
}
|
|
|
|
|
|
#define ZS_COMMENT 0x00000000 /* comment */
|
|
#define ZS_ZFSUTIL 0x00000001 /* caller is zfs(8) */
|
|
|
|
typedef struct option_map {
|
|
const char *name;
|
|
unsigned long mntmask;
|
|
unsigned long zfsmask;
|
|
} option_map_t;
|
|
|
|
static const option_map_t option_map[] = {
|
|
/* Canonicalized filesystem independent options from mount(8) */
|
|
{ MNTOPT_NOAUTO, MS_COMMENT, ZS_COMMENT },
|
|
{ MNTOPT_DEFAULTS, MS_COMMENT, ZS_COMMENT },
|
|
{ MNTOPT_NODEVICES, MS_NODEV, ZS_COMMENT },
|
|
{ MNTOPT_DEVICES, MS_COMMENT, ZS_COMMENT },
|
|
{ MNTOPT_DIRSYNC, MS_DIRSYNC, ZS_COMMENT },
|
|
{ MNTOPT_NOEXEC, MS_NOEXEC, ZS_COMMENT },
|
|
{ MNTOPT_EXEC, MS_COMMENT, ZS_COMMENT },
|
|
{ MNTOPT_GROUP, MS_GROUP, ZS_COMMENT },
|
|
{ MNTOPT_NETDEV, MS_COMMENT, ZS_COMMENT },
|
|
{ MNTOPT_NOFAIL, MS_COMMENT, ZS_COMMENT },
|
|
{ MNTOPT_NOSUID, MS_NOSUID, ZS_COMMENT },
|
|
{ MNTOPT_SUID, MS_COMMENT, ZS_COMMENT },
|
|
{ MNTOPT_OWNER, MS_OWNER, ZS_COMMENT },
|
|
{ MNTOPT_REMOUNT, MS_REMOUNT, ZS_COMMENT },
|
|
{ MNTOPT_RO, MS_RDONLY, ZS_COMMENT },
|
|
{ MNTOPT_RW, MS_COMMENT, ZS_COMMENT },
|
|
{ MNTOPT_SYNC, MS_SYNCHRONOUS, ZS_COMMENT },
|
|
{ MNTOPT_USER, MS_USERS, ZS_COMMENT },
|
|
{ MNTOPT_USERS, MS_USERS, ZS_COMMENT },
|
|
/* acl flags passed with util-linux-2.24 mount command */
|
|
{ MNTOPT_ACL, MS_POSIXACL, ZS_COMMENT },
|
|
{ MNTOPT_NOACL, MS_COMMENT, ZS_COMMENT },
|
|
{ MNTOPT_POSIXACL, MS_POSIXACL, ZS_COMMENT },
|
|
#ifdef MS_NOATIME
|
|
{ MNTOPT_NOATIME, MS_NOATIME, ZS_COMMENT },
|
|
{ MNTOPT_ATIME, MS_COMMENT, ZS_COMMENT },
|
|
#endif
|
|
#ifdef MS_NODIRATIME
|
|
{ MNTOPT_NODIRATIME, MS_NODIRATIME, ZS_COMMENT },
|
|
{ MNTOPT_DIRATIME, MS_COMMENT, ZS_COMMENT },
|
|
#endif
|
|
#ifdef MS_RELATIME
|
|
{ MNTOPT_RELATIME, MS_RELATIME, ZS_COMMENT },
|
|
{ MNTOPT_NORELATIME, MS_COMMENT, ZS_COMMENT },
|
|
#endif
|
|
#ifdef MS_STRICTATIME
|
|
{ MNTOPT_STRICTATIME, MS_STRICTATIME, ZS_COMMENT },
|
|
{ MNTOPT_NOSTRICTATIME, MS_COMMENT, ZS_COMMENT },
|
|
#endif
|
|
#ifdef MS_LAZYTIME
|
|
{ MNTOPT_LAZYTIME, MS_LAZYTIME, ZS_COMMENT },
|
|
#endif
|
|
{ MNTOPT_CONTEXT, MS_COMMENT, ZS_COMMENT },
|
|
{ MNTOPT_FSCONTEXT, MS_COMMENT, ZS_COMMENT },
|
|
{ MNTOPT_DEFCONTEXT, MS_COMMENT, ZS_COMMENT },
|
|
{ MNTOPT_ROOTCONTEXT, MS_COMMENT, ZS_COMMENT },
|
|
#ifdef MS_I_VERSION
|
|
{ MNTOPT_IVERSION, MS_I_VERSION, ZS_COMMENT },
|
|
#endif
|
|
#ifdef MS_MANDLOCK
|
|
{ MNTOPT_NBMAND, MS_MANDLOCK, ZS_COMMENT },
|
|
{ MNTOPT_NONBMAND, MS_COMMENT, ZS_COMMENT },
|
|
#endif
|
|
/* Valid options not found in mount(8) */
|
|
{ MNTOPT_BIND, MS_BIND, ZS_COMMENT },
|
|
#ifdef MS_REC
|
|
{ MNTOPT_RBIND, MS_BIND|MS_REC, ZS_COMMENT },
|
|
#endif
|
|
{ MNTOPT_COMMENT, MS_COMMENT, ZS_COMMENT },
|
|
#ifdef MS_NOSUB
|
|
{ MNTOPT_NOSUB, MS_NOSUB, ZS_COMMENT },
|
|
#endif
|
|
#ifdef MS_SILENT
|
|
{ MNTOPT_QUIET, MS_SILENT, ZS_COMMENT },
|
|
#endif
|
|
/* Custom zfs options */
|
|
{ MNTOPT_XATTR, MS_COMMENT, ZS_COMMENT },
|
|
{ MNTOPT_NOXATTR, MS_COMMENT, ZS_COMMENT },
|
|
{ MNTOPT_ZFSUTIL, MS_COMMENT, ZS_ZFSUTIL },
|
|
{ NULL, 0, 0 } };
|
|
|
|
/*
|
|
* Break the mount option in to a name/value pair. The name is
|
|
* validated against the option map and mount flags set accordingly.
|
|
*/
|
|
static int
|
|
parse_option(char *mntopt, unsigned long *mntflags,
|
|
unsigned long *zfsflags, int sloppy)
|
|
{
|
|
const option_map_t *opt;
|
|
char *ptr, *name, *value = NULL;
|
|
int error = 0;
|
|
|
|
name = strdup(mntopt);
|
|
if (name == NULL)
|
|
return (ENOMEM);
|
|
|
|
for (ptr = name; ptr && *ptr; ptr++) {
|
|
if (*ptr == '=') {
|
|
*ptr = '\0';
|
|
value = ptr+1;
|
|
VERIFY3P(value, !=, NULL);
|
|
break;
|
|
}
|
|
}
|
|
|
|
for (opt = option_map; opt->name != NULL; opt++) {
|
|
if (strncmp(name, opt->name, strlen(name)) == 0) {
|
|
*mntflags |= opt->mntmask;
|
|
*zfsflags |= opt->zfsmask;
|
|
error = 0;
|
|
goto out;
|
|
}
|
|
}
|
|
|
|
if (!sloppy)
|
|
error = ENOENT;
|
|
out:
|
|
/* If required further process on the value may be done here */
|
|
free(name);
|
|
return (error);
|
|
}
|
|
|
|
/*
|
|
* Translate the mount option string in to MS_* mount flags for the
|
|
* kernel vfs. When sloppy is non-zero unknown options will be ignored
|
|
* otherwise they are considered fatal are copied in to badopt.
|
|
*/
|
|
int
|
|
zfs_parse_mount_options(char *mntopts, unsigned long *mntflags,
|
|
unsigned long *zfsflags, int sloppy, char *badopt, char *mtabopt)
|
|
{
|
|
int error = 0, quote = 0, flag = 0, count = 0;
|
|
char *ptr, *opt, *opts;
|
|
|
|
opts = strdup(mntopts);
|
|
if (opts == NULL)
|
|
return (ENOMEM);
|
|
|
|
*mntflags = 0;
|
|
opt = NULL;
|
|
|
|
/*
|
|
* Scan through all mount options which must be comma delimited.
|
|
* We must be careful to notice regions which are double quoted
|
|
* and skip commas in these regions. Each option is then checked
|
|
* to determine if it is a known option.
|
|
*/
|
|
for (ptr = opts; ptr && !flag; ptr++) {
|
|
if (opt == NULL)
|
|
opt = ptr;
|
|
|
|
if (*ptr == '"')
|
|
quote = !quote;
|
|
|
|
if (quote)
|
|
continue;
|
|
|
|
if (*ptr == '\0')
|
|
flag = 1;
|
|
|
|
if ((*ptr == ',') || (*ptr == '\0')) {
|
|
*ptr = '\0';
|
|
|
|
error = parse_option(opt, mntflags, zfsflags, sloppy);
|
|
if (error) {
|
|
strcpy(badopt, opt);
|
|
goto out;
|
|
|
|
}
|
|
|
|
if (!(*mntflags & MS_REMOUNT) &&
|
|
!(*zfsflags & ZS_ZFSUTIL) &&
|
|
mtabopt != NULL) {
|
|
if (count > 0)
|
|
strlcat(mtabopt, ",", MNT_LINE_MAX);
|
|
|
|
strlcat(mtabopt, opt, MNT_LINE_MAX);
|
|
count++;
|
|
}
|
|
|
|
opt = NULL;
|
|
}
|
|
}
|
|
|
|
out:
|
|
free(opts);
|
|
return (error);
|
|
}
|
|
|
|
static void
|
|
append_mntopt(const char *name, const char *val, char *mntopts,
|
|
char *mtabopt, boolean_t quote)
|
|
{
|
|
char tmp[MNT_LINE_MAX];
|
|
|
|
snprintf(tmp, MNT_LINE_MAX, quote ? ",%s=\"%s\"" : ",%s=%s", name, val);
|
|
|
|
if (mntopts)
|
|
strlcat(mntopts, tmp, MNT_LINE_MAX);
|
|
|
|
if (mtabopt)
|
|
strlcat(mtabopt, tmp, MNT_LINE_MAX);
|
|
}
|
|
|
|
static void
|
|
zfs_selinux_setcontext(zfs_handle_t *zhp, zfs_prop_t zpt, const char *name,
|
|
char *mntopts, char *mtabopt)
|
|
{
|
|
char context[ZFS_MAXPROPLEN];
|
|
|
|
if (zfs_prop_get(zhp, zpt, context, sizeof (context),
|
|
NULL, NULL, 0, B_FALSE) == 0) {
|
|
if (strcmp(context, "none") != 0)
|
|
append_mntopt(name, context, mntopts, mtabopt, B_TRUE);
|
|
}
|
|
}
|
|
|
|
void
|
|
zfs_adjust_mount_options(zfs_handle_t *zhp, const char *mntpoint,
|
|
char *mntopts, char *mtabopt)
|
|
{
|
|
char prop[ZFS_MAXPROPLEN];
|
|
|
|
/*
|
|
* Checks to see if the ZFS_PROP_SELINUX_CONTEXT exists
|
|
* if it does, create a tmp variable in case it's needed
|
|
* checks to see if the selinux context is set to the default
|
|
* if it is, allow the setting of the other context properties
|
|
* this is needed because the 'context' property overrides others
|
|
* if it is not the default, set the 'context' property
|
|
*/
|
|
if (zfs_prop_get(zhp, ZFS_PROP_SELINUX_CONTEXT, prop, sizeof (prop),
|
|
NULL, NULL, 0, B_FALSE) == 0) {
|
|
if (strcmp(prop, "none") == 0) {
|
|
zfs_selinux_setcontext(zhp, ZFS_PROP_SELINUX_FSCONTEXT,
|
|
MNTOPT_FSCONTEXT, mntopts, mtabopt);
|
|
zfs_selinux_setcontext(zhp, ZFS_PROP_SELINUX_DEFCONTEXT,
|
|
MNTOPT_DEFCONTEXT, mntopts, mtabopt);
|
|
zfs_selinux_setcontext(zhp,
|
|
ZFS_PROP_SELINUX_ROOTCONTEXT, MNTOPT_ROOTCONTEXT,
|
|
mntopts, mtabopt);
|
|
} else {
|
|
append_mntopt(MNTOPT_CONTEXT, prop,
|
|
mntopts, mtabopt, B_TRUE);
|
|
}
|
|
}
|
|
|
|
/* A hint used to determine an auto-mounted snapshot mount point */
|
|
append_mntopt(MNTOPT_MNTPOINT, mntpoint, mntopts, NULL, B_FALSE);
|
|
}
|
|
|
|
/*
|
|
* By default the filesystem by preparing the mount options (i.e. parsing
|
|
* some flags from the "opts" parameter into the "flags" parameter) and then
|
|
* directly calling the system call mount(2). We don't need the mount utility
|
|
* or update /etc/mtab, because this is a symlink on all modern systems.
|
|
*
|
|
* If the environment variable ZFS_MOUNT_HELPER is set, we fall back to the
|
|
* previous behavior:
|
|
* The filesystem is mounted by invoking the system mount utility rather
|
|
* than by the system call mount(2). This ensures that the /etc/mtab
|
|
* file is correctly locked for the update. Performing our own locking
|
|
* and /etc/mtab update requires making an unsafe assumption about how
|
|
* the mount utility performs its locking. Unfortunately, this also means
|
|
* in the case of a mount failure we do not have the exact errno. We must
|
|
* make due with return value from the mount process.
|
|
*/
|
|
int
|
|
do_mount(zfs_handle_t *zhp, const char *mntpt, char *opts, int flags)
|
|
{
|
|
const char *src = zfs_get_name(zhp);
|
|
int error = 0;
|
|
|
|
if (!libzfs_envvar_is_set("ZFS_MOUNT_HELPER")) {
|
|
char badopt[MNT_LINE_MAX] = {0};
|
|
unsigned long mntflags = flags, zfsflags;
|
|
char myopts[MNT_LINE_MAX] = {0};
|
|
|
|
if (zfs_parse_mount_options(opts, &mntflags,
|
|
&zfsflags, 0, badopt, NULL)) {
|
|
return (EINVAL);
|
|
}
|
|
strlcat(myopts, opts, MNT_LINE_MAX);
|
|
zfs_adjust_mount_options(zhp, mntpt, myopts, NULL);
|
|
error = mount(src, mntpt, MNTTYPE_ZFS, mntflags, myopts);
|
|
} else {
|
|
char *argv[9] = {
|
|
"/bin/mount",
|
|
"--no-canonicalize",
|
|
"-t", MNTTYPE_ZFS,
|
|
"-o", opts,
|
|
(char *)src,
|
|
(char *)mntpt,
|
|
(char *)NULL };
|
|
|
|
/* Return only the most critical mount error */
|
|
error = libzfs_run_process(argv[0], argv,
|
|
STDOUT_VERBOSE|STDERR_VERBOSE);
|
|
if (error) {
|
|
if (error & MOUNT_FILEIO) {
|
|
error = EIO;
|
|
} else if (error & MOUNT_USER) {
|
|
error = EINTR;
|
|
} else if (error & MOUNT_SOFTWARE) {
|
|
error = EPIPE;
|
|
} else if (error & MOUNT_BUSY) {
|
|
error = EBUSY;
|
|
} else if (error & MOUNT_SYSERR) {
|
|
error = EAGAIN;
|
|
} else if (error & MOUNT_USAGE) {
|
|
error = EINVAL;
|
|
} else
|
|
error = ENXIO; /* Generic error */
|
|
}
|
|
}
|
|
|
|
return (error);
|
|
}
|
|
|
|
int
|
|
do_unmount(const char *mntpt, int flags)
|
|
{
|
|
if (!libzfs_envvar_is_set("ZFS_MOUNT_HELPER")) {
|
|
return (umount2(mntpt, flags));
|
|
}
|
|
|
|
char force_opt[] = "-f";
|
|
char lazy_opt[] = "-l";
|
|
char *argv[7] = {
|
|
"/bin/umount",
|
|
"-t", MNTTYPE_ZFS,
|
|
NULL, NULL, NULL, NULL };
|
|
int rc, count = 3;
|
|
|
|
if (flags & MS_FORCE) {
|
|
argv[count] = force_opt;
|
|
count++;
|
|
}
|
|
|
|
if (flags & MS_DETACH) {
|
|
argv[count] = lazy_opt;
|
|
count++;
|
|
}
|
|
|
|
argv[count] = (char *)mntpt;
|
|
rc = libzfs_run_process(argv[0], argv, STDOUT_VERBOSE|STDERR_VERBOSE);
|
|
|
|
return (rc ? EINVAL : 0);
|
|
}
|
|
|
|
int
|
|
zfs_mount_delegation_check(void)
|
|
{
|
|
return ((geteuid() != 0) ? EACCES : 0);
|
|
}
|