2019-10-03 20:33:16 +03:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2022-04-15 00:30:41 +03:00
|
|
|
#include <alloca.h>
|
2019-10-03 20:33:16 +03:00
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <libintl.h>
|
2022-04-15 00:30:41 +03:00
|
|
|
#include <math.h>
|
|
|
|
#include <poll.h>
|
2019-10-03 20:33:16 +03:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <strings.h>
|
2022-04-15 00:30:41 +03:00
|
|
|
#include <sys/inotify.h>
|
2019-10-03 20:33:16 +03:00
|
|
|
#include <sys/mntent.h>
|
2022-04-15 00:30:41 +03:00
|
|
|
#include <sys/mnttab.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/timerfd.h>
|
2019-10-03 20:33:16 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
2022-04-15 00:30:41 +03:00
|
|
|
#include <unistd.h>
|
2019-10-03 20:33:16 +03:00
|
|
|
|
|
|
|
#include <libzfs.h>
|
|
|
|
#include <libzfs_core.h>
|
|
|
|
|
2021-05-15 14:00:05 +03:00
|
|
|
#include "../../libzfs_impl.h"
|
2019-10-03 20:33:16 +03:00
|
|
|
#include "zfs_prop.h"
|
|
|
|
#include <libzutil.h>
|
2020-02-13 00:00:19 +03:00
|
|
|
#include <sys/zfs_sysfs.h>
|
2019-10-03 20:33:16 +03:00
|
|
|
|
|
|
|
#define ZDIFF_SHARESDIR "/.zfs/shares/"
|
|
|
|
|
|
|
|
int
|
|
|
|
zfs_ioctl(libzfs_handle_t *hdl, int request, zfs_cmd_t *zc)
|
|
|
|
{
|
|
|
|
return (ioctl(hdl->libzfs_fd, request, zc));
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
libzfs_error_init(int error)
|
|
|
|
{
|
|
|
|
switch (error) {
|
|
|
|
case ENXIO:
|
|
|
|
return (dgettext(TEXT_DOMAIN, "The ZFS modules are not "
|
2022-04-15 00:30:41 +03:00
|
|
|
"loaded.\nTry running 'modprobe zfs' as root "
|
2019-10-03 20:33:16 +03:00
|
|
|
"to load them."));
|
|
|
|
case ENOENT:
|
|
|
|
return (dgettext(TEXT_DOMAIN, "/dev/zfs and /proc/self/mounts "
|
|
|
|
"are required.\nTry running 'udevadm trigger' and 'mount "
|
|
|
|
"-t proc proc /proc' as root."));
|
|
|
|
case ENOEXEC:
|
|
|
|
return (dgettext(TEXT_DOMAIN, "The ZFS modules cannot be "
|
2022-04-15 00:30:41 +03:00
|
|
|
"auto-loaded.\nTry running 'modprobe zfs' as "
|
2019-10-03 20:33:16 +03:00
|
|
|
"root to manually load them."));
|
|
|
|
case EACCES:
|
|
|
|
return (dgettext(TEXT_DOMAIN, "Permission denied the "
|
|
|
|
"ZFS utilities must be run as root."));
|
|
|
|
default:
|
|
|
|
return (dgettext(TEXT_DOMAIN, "Failed to initialize the "
|
|
|
|
"libzfs library."));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2022-04-15 00:30:41 +03:00
|
|
|
* zfs(4) is loaded by udev if there's a fstype=zfs device present,
|
|
|
|
* but if there isn't, load them automatically;
|
|
|
|
* always wait for ZFS_DEV to appear via udev.
|
2019-10-03 20:33:16 +03:00
|
|
|
*
|
|
|
|
* Environment variables:
|
2022-04-15 00:30:41 +03:00
|
|
|
* - ZFS_MODULE_TIMEOUT="<seconds>" - Seconds to wait for ZFS_DEV,
|
|
|
|
* defaults to 10, max. 10 min.
|
2019-10-03 20:33:16 +03:00
|
|
|
*/
|
2022-04-15 00:30:41 +03:00
|
|
|
int
|
|
|
|
libzfs_load_module(void)
|
2019-10-03 20:33:16 +03:00
|
|
|
{
|
2022-04-15 00:30:41 +03:00
|
|
|
if (access(ZFS_DEV, F_OK) == 0)
|
|
|
|
return (0);
|
2019-10-03 20:33:16 +03:00
|
|
|
|
2022-04-15 00:30:41 +03:00
|
|
|
if (access(ZFS_SYSFS_DIR, F_OK) != 0) {
|
|
|
|
char *argv[] = {"modprobe", "zfs", NULL};
|
|
|
|
if (libzfs_run_process("modprobe", argv, 0))
|
|
|
|
return (ENOEXEC);
|
2019-10-03 20:33:16 +03:00
|
|
|
|
2022-04-15 00:30:41 +03:00
|
|
|
if (access(ZFS_SYSFS_DIR, F_OK) != 0)
|
2019-10-03 20:33:16 +03:00
|
|
|
return (ENXIO);
|
|
|
|
}
|
|
|
|
|
2022-04-15 00:30:41 +03:00
|
|
|
const char *timeout_str = getenv("ZFS_MODULE_TIMEOUT");
|
|
|
|
int seconds = 10;
|
|
|
|
if (timeout_str)
|
|
|
|
seconds = MIN(strtol(timeout_str, NULL, 0), 600);
|
|
|
|
struct itimerspec timeout = {.it_value.tv_sec = MAX(seconds, 0)};
|
|
|
|
|
|
|
|
int ino = inotify_init1(IN_CLOEXEC);
|
|
|
|
if (ino == -1)
|
|
|
|
return (ENOENT);
|
|
|
|
inotify_add_watch(ino, ZFS_DEVDIR, IN_CREATE);
|
|
|
|
|
|
|
|
if (access(ZFS_DEV, F_OK) == 0) {
|
|
|
|
close(ino);
|
|
|
|
return (0);
|
|
|
|
} else if (seconds == 0) {
|
|
|
|
close(ino);
|
|
|
|
return (ENOENT);
|
2019-10-03 20:33:16 +03:00
|
|
|
}
|
|
|
|
|
2022-04-15 00:30:41 +03:00
|
|
|
size_t evsz = sizeof (struct inotify_event) + NAME_MAX + 1;
|
|
|
|
struct inotify_event *ev = alloca(evsz);
|
2019-10-03 20:33:16 +03:00
|
|
|
|
2022-04-15 00:30:41 +03:00
|
|
|
int tout = timerfd_create(CLOCK_MONOTONIC, TFD_CLOEXEC);
|
|
|
|
if (tout == -1) {
|
|
|
|
close(ino);
|
|
|
|
return (ENOENT);
|
|
|
|
}
|
|
|
|
timerfd_settime(tout, 0, &timeout, NULL);
|
|
|
|
|
|
|
|
int ret = ENOENT;
|
|
|
|
struct pollfd pfds[] = {
|
|
|
|
{.fd = ino, .events = POLLIN},
|
|
|
|
{.fd = tout, .events = POLLIN},
|
|
|
|
};
|
|
|
|
while (poll(pfds, ARRAY_SIZE(pfds), -1) != -1) {
|
|
|
|
if (pfds[0].revents & POLLIN) {
|
|
|
|
verify(read(ino, ev, evsz) >
|
|
|
|
sizeof (struct inotify_event));
|
|
|
|
if (strcmp(ev->name, &ZFS_DEV[sizeof (ZFS_DEVDIR)])
|
|
|
|
== 0) {
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pfds[1].revents & POLLIN)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
close(tout);
|
|
|
|
close(ino);
|
|
|
|
return (ret);
|
2019-10-03 20:33:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
find_shares_object(differ_info_t *di)
|
|
|
|
{
|
|
|
|
char fullpath[MAXPATHLEN];
|
|
|
|
struct stat64 sb = { 0 };
|
|
|
|
|
|
|
|
(void) strlcpy(fullpath, di->dsmnt, MAXPATHLEN);
|
|
|
|
(void) strlcat(fullpath, ZDIFF_SHARESDIR, MAXPATHLEN);
|
|
|
|
|
|
|
|
if (stat64(fullpath, &sb) != 0) {
|
|
|
|
(void) snprintf(di->errbuf, sizeof (di->errbuf),
|
|
|
|
dgettext(TEXT_DOMAIN, "Cannot stat %s"), fullpath);
|
|
|
|
return (zfs_error(di->zhp->zfs_hdl, EZFS_DIFF, di->errbuf));
|
|
|
|
}
|
|
|
|
|
|
|
|
di->shares = (uint64_t)sb.st_ino;
|
|
|
|
return (0);
|
|
|
|
}
|
2020-02-13 00:00:19 +03:00
|
|
|
|
2021-09-20 18:29:59 +03:00
|
|
|
int
|
|
|
|
zfs_destroy_snaps_nvl_os(libzfs_handle_t *hdl, nvlist_t *snaps)
|
|
|
|
{
|
2021-12-12 17:38:17 +03:00
|
|
|
(void) hdl, (void) snaps;
|
2021-09-20 18:29:59 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2020-02-13 00:00:19 +03:00
|
|
|
/*
|
|
|
|
* Fill given version buffer with zfs kernel version read from ZFS_SYSFS_DIR
|
|
|
|
* Returns 0 on success, and -1 on error (with errno set)
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
zfs_version_kernel(char *version, int len)
|
|
|
|
{
|
|
|
|
int _errno;
|
|
|
|
int fd;
|
|
|
|
int rlen;
|
|
|
|
|
2021-04-08 23:17:38 +03:00
|
|
|
if ((fd = open(ZFS_SYSFS_DIR "/version", O_RDONLY | O_CLOEXEC)) == -1)
|
2020-02-13 00:00:19 +03:00
|
|
|
return (-1);
|
|
|
|
|
|
|
|
if ((rlen = read(fd, version, len)) == -1) {
|
|
|
|
version[0] = '\0';
|
|
|
|
_errno = errno;
|
|
|
|
(void) close(fd);
|
|
|
|
errno = _errno;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
version[rlen-1] = '\0'; /* discard '\n' */
|
|
|
|
|
|
|
|
if (close(fd) == -1)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|