]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - cddl/contrib/opensolaris/lib/libzfs/common/libzfs_compat.c
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / cddl / contrib / opensolaris / lib / libzfs / common / libzfs_compat.c
1 /*
2  * CDDL HEADER SART
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) 2013 Martin Matuska <mm@FreeBSD.org>. All rights reserved.
24  */
25
26 #include "libzfs_compat.h"
27
28 int zfs_ioctl_version = ZFS_IOCVER_UNDEF;
29 static int zfs_spa_version = -1;
30
31 /*
32  * Get zfs_ioctl_version
33  */
34 int
35 get_zfs_ioctl_version(void)
36 {
37         size_t ver_size;
38         int ver = ZFS_IOCVER_NONE;
39
40         ver_size = sizeof(ver);
41         sysctlbyname("vfs.zfs.version.ioctl", &ver, &ver_size, NULL, 0);
42
43         return (ver);
44 }
45
46 /*
47  * Get the SPA version
48  */
49 static int
50 get_zfs_spa_version(void)
51 {
52         size_t ver_size;
53         int ver = 0;
54
55         ver_size = sizeof(ver);
56         sysctlbyname("vfs.zfs.version.spa", &ver, &ver_size, NULL, 0);
57
58         return (ver);
59 }
60
61 /*
62  * This is FreeBSD version of ioctl, because Solaris' ioctl() updates
63  * zc_nvlist_dst_size even if an error is returned, on FreeBSD if an
64  * error is returned zc_nvlist_dst_size won't be updated.
65  */
66 int
67 zcmd_ioctl(int fd, int request, zfs_cmd_t *zc)
68 {
69         size_t oldsize;
70         int ret, cflag = ZFS_CMD_COMPAT_NONE;
71
72         if (zfs_ioctl_version == ZFS_IOCVER_UNDEF)
73                 zfs_ioctl_version = get_zfs_ioctl_version();
74
75         if (zfs_ioctl_version == ZFS_IOCVER_LZC)
76                 cflag = ZFS_CMD_COMPAT_LZC;
77         else if (zfs_ioctl_version == ZFS_IOCVER_DEADMAN)
78                 cflag = ZFS_CMD_COMPAT_DEADMAN;
79
80         /*
81          * If vfs.zfs.version.ioctl is not defined, assume we have v28
82          * compatible binaries and use vfs.zfs.version.spa to test for v15
83          */
84         if (zfs_ioctl_version < ZFS_IOCVER_DEADMAN) {
85                 cflag = ZFS_CMD_COMPAT_V28;
86
87                 if (zfs_spa_version < 0)
88                         zfs_spa_version = get_zfs_spa_version();
89
90                 if (zfs_spa_version == SPA_VERSION_15 ||
91                     zfs_spa_version == SPA_VERSION_14 ||
92                     zfs_spa_version == SPA_VERSION_13)
93                         cflag = ZFS_CMD_COMPAT_V15;
94         }
95
96         oldsize = zc->zc_nvlist_dst_size;
97         ret = zcmd_ioctl_compat(fd, request, zc, cflag);
98
99         if (ret == 0 && oldsize < zc->zc_nvlist_dst_size) {
100                 ret = -1;
101                 errno = ENOMEM;
102         }
103
104         return (ret);
105 }