mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 10:21:01 +03:00
75 lines
2.0 KiB
C
75 lines
2.0 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
|
||
|
*/
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/param.h>
|
||
|
#include <sys/zfs_ioctl.h>
|
||
|
#include <os/freebsd/zfs/sys/zfs_ioctl_compat.h>
|
||
|
#include <libzutil.h>
|
||
|
|
||
|
static int
|
||
|
zcmd_ioctl_compat(int fd, int request, zfs_cmd_t *zc, const int cflag)
|
||
|
{
|
||
|
int ret;
|
||
|
void *zc_c;
|
||
|
unsigned long ncmd;
|
||
|
zfs_iocparm_t zp;
|
||
|
|
||
|
switch (cflag) {
|
||
|
case ZFS_CMD_COMPAT_NONE:
|
||
|
ncmd = _IOWR('Z', request, zfs_iocparm_t);
|
||
|
zp.zfs_cmd = (uint64_t)zc;
|
||
|
zp.zfs_cmd_size = sizeof (zfs_cmd_t);
|
||
|
zp.zfs_ioctl_version = ZFS_IOCVER_ZOF;
|
||
|
return (ioctl(fd, ncmd, &zp));
|
||
|
default:
|
||
|
abort();
|
||
|
return (EINVAL);
|
||
|
}
|
||
|
|
||
|
ret = ioctl(fd, ncmd, zc_c);
|
||
|
zfs_cmd_compat_get(zc, (caddr_t)zc_c, cflag);
|
||
|
free(zc_c);
|
||
|
|
||
|
return (ret);
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
* This is FreeBSD version of ioctl, because Solaris' ioctl() updates
|
||
|
* zc_nvlist_dst_size even if an error is returned, on FreeBSD if an
|
||
|
* error is returned zc_nvlist_dst_size won't be updated.
|
||
|
*/
|
||
|
int
|
||
|
zfs_ioctl_fd(int fd, unsigned long request, zfs_cmd_t *zc)
|
||
|
{
|
||
|
size_t oldsize;
|
||
|
int ret, cflag = ZFS_CMD_COMPAT_NONE;
|
||
|
|
||
|
oldsize = zc->zc_nvlist_dst_size;
|
||
|
ret = zcmd_ioctl_compat(fd, request, zc, cflag);
|
||
|
|
||
|
if (ret == 0 && oldsize < zc->zc_nvlist_dst_size) {
|
||
|
ret = -1;
|
||
|
errno = ENOMEM;
|
||
|
}
|
||
|
|
||
|
return (ret);
|
||
|
}
|