]> git.proxmox.com Git - mirror_zfs.git/blame - module/zfs/zfs_ioctl.c
zfs initialize performance enhancements
[mirror_zfs.git] / module / zfs / zfs_ioctl.c
CommitLineData
34dc7c2f
BB
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 */
9ae529ec 21
34dc7c2f 22/*
428870ff 23 * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
b129c659 24 * Portions Copyright 2011 Martin Matuska
671c9354 25 * Copyright 2015, OmniTI Computer Consulting, Inc. All rights reserved.
0cee2406 26 * Portions Copyright 2012 Pawel Jakub Dawidek <pawel@dawidek.net>
005e27e3 27 * Copyright (c) 2014, 2016 Joyent, Inc. All rights reserved.
1b87e0f5 28 * Copyright 2016 Nexenta Systems, Inc. All rights reserved.
788eb90c 29 * Copyright (c) 2014, Joyent, Inc. All rights reserved.
b83a0e2d 30 * Copyright (c) 2011, 2018 by Delphix. All rights reserved.
9759c60f 31 * Copyright (c) 2013 by Saso Kiselkov. All rights reserved.
95fd54a1 32 * Copyright (c) 2013 Steven Hartland. All rights reserved.
e550644f
BB
33 * Copyright (c) 2014 Integros [integros.com]
34 * Copyright 2016 Toomas Soome <tsoome@me.com>
a0bd735a 35 * Copyright (c) 2016 Actifio, Inc. All rights reserved.
a3eeab2d 36 * Copyright (c) 2017, loli10K <ezomori.nozomu@gmail.com>. All rights reserved.
b5256303 37 * Copyright (c) 2017 Datto Inc. All rights reserved.
d12f91fd 38 * Copyright 2017 RackTop Systems.
d3f2cd7e 39 * Copyright (c) 2017 Open-E, Inc. All Rights Reserved.
6f1ffb06
MA
40 */
41
42/*
43 * ZFS ioctls.
44 *
45 * This file handles the ioctls to /dev/zfs, used for configuring ZFS storage
46 * pools and filesystems, e.g. with /sbin/zfs and /sbin/zpool.
47 *
48 * There are two ways that we handle ioctls: the legacy way where almost
49 * all of the logic is in the ioctl callback, and the new way where most
50 * of the marshalling is handled in the common entry point, zfsdev_ioctl().
51 *
52 * Non-legacy ioctls should be registered by calling
53 * zfs_ioctl_register() from zfs_ioctl_init(). The ioctl is invoked
54 * from userland by lzc_ioctl().
55 *
56 * The registration arguments are as follows:
57 *
58 * const char *name
59 * The name of the ioctl. This is used for history logging. If the
60 * ioctl returns successfully (the callback returns 0), and allow_log
61 * is true, then a history log entry will be recorded with the input &
62 * output nvlists. The log entry can be printed with "zpool history -i".
63 *
64 * zfs_ioc_t ioc
65 * The ioctl request number, which userland will pass to ioctl(2).
b83a0e2d
DB
66 * We want newer versions of libzfs and libzfs_core to run against
67 * existing zfs kernel modules (i.e. a deferred reboot after an update).
68 * Therefore the ioctl numbers cannot change from release to release.
6f1ffb06
MA
69 *
70 * zfs_secpolicy_func_t *secpolicy
71 * This function will be called before the zfs_ioc_func_t, to
72 * determine if this operation is permitted. It should return EPERM
73 * on failure, and 0 on success. Checks include determining if the
74 * dataset is visible in this zone, and if the user has either all
75 * zfs privileges in the zone (SYS_MOUNT), or has been granted permission
76 * to do this operation on this dataset with "zfs allow".
77 *
78 * zfs_ioc_namecheck_t namecheck
79 * This specifies what to expect in the zfs_cmd_t:zc_name -- a pool
80 * name, a dataset name, or nothing. If the name is not well-formed,
81 * the ioctl will fail and the callback will not be called.
82 * Therefore, the callback can assume that the name is well-formed
83 * (e.g. is null-terminated, doesn't have more than one '@' character,
84 * doesn't have invalid characters).
85 *
86 * zfs_ioc_poolcheck_t pool_check
87 * This specifies requirements on the pool state. If the pool does
88 * not meet them (is suspended or is readonly), the ioctl will fail
89 * and the callback will not be called. If any checks are specified
90 * (i.e. it is not POOL_CHECK_NONE), namecheck must not be NO_NAME.
91 * Multiple checks can be or-ed together (e.g. POOL_CHECK_SUSPENDED |
92 * POOL_CHECK_READONLY).
93 *
b83a0e2d
DB
94 * zfs_ioc_key_t *nvl_keys
95 * The list of expected/allowable innvl input keys. This list is used
96 * to validate the nvlist input to the ioctl.
97 *
6f1ffb06
MA
98 * boolean_t smush_outnvlist
99 * If smush_outnvlist is true, then the output is presumed to be a
100 * list of errors, and it will be "smushed" down to fit into the
101 * caller's buffer, by removing some entries and replacing them with a
102 * single "N_MORE_ERRORS" entry indicating how many were removed. See
103 * nvlist_smush() for details. If smush_outnvlist is false, and the
104 * outnvlist does not fit into the userland-provided buffer, then the
105 * ioctl will fail with ENOMEM.
106 *
107 * zfs_ioc_func_t *func
108 * The callback function that will perform the operation.
109 *
110 * The callback should return 0 on success, or an error number on
111 * failure. If the function fails, the userland ioctl will return -1,
112 * and errno will be set to the callback's return value. The callback
113 * will be called with the following arguments:
114 *
115 * const char *name
116 * The name of the pool or dataset to operate on, from
117 * zfs_cmd_t:zc_name. The 'namecheck' argument specifies the
118 * expected type (pool, dataset, or none).
119 *
120 * nvlist_t *innvl
121 * The input nvlist, deserialized from zfs_cmd_t:zc_nvlist_src. Or
122 * NULL if no input nvlist was provided. Changes to this nvlist are
123 * ignored. If the input nvlist could not be deserialized, the
124 * ioctl will fail and the callback will not be called.
125 *
126 * nvlist_t *outnvl
127 * The output nvlist, initially empty. The callback can fill it in,
128 * and it will be returned to userland by serializing it into
129 * zfs_cmd_t:zc_nvlist_dst. If it is non-empty, and serialization
130 * fails (e.g. because the caller didn't supply a large enough
131 * buffer), then the overall ioctl will fail. See the
132 * 'smush_nvlist' argument above for additional behaviors.
133 *
134 * There are two typical uses of the output nvlist:
135 * - To return state, e.g. property values. In this case,
136 * smush_outnvlist should be false. If the buffer was not large
137 * enough, the caller will reallocate a larger buffer and try
138 * the ioctl again.
139 *
140 * - To return multiple errors from an ioctl which makes on-disk
141 * changes. In this case, smush_outnvlist should be true.
142 * Ioctls which make on-disk modifications should generally not
143 * use the outnvl if they succeed, because the caller can not
144 * distinguish between the operation failing, and
145 * deserialization failing.
b83a0e2d
DB
146 *
147 * IOCTL Interface Errors
148 *
149 * The following ioctl input errors can be returned:
150 * ZFS_ERR_IOC_CMD_UNAVAIL the ioctl number is not supported by kernel
151 * ZFS_ERR_IOC_ARG_UNAVAIL an input argument is not supported by kernel
152 * ZFS_ERR_IOC_ARG_REQUIRED a required input argument is missing
153 * ZFS_ERR_IOC_ARG_BADTYPE an input argument has an invalid type
3541dc6d 154 */
34dc7c2f 155
34dc7c2f
BB
156#include <sys/types.h>
157#include <sys/param.h>
158#include <sys/errno.h>
159#include <sys/uio.h>
34dc7c2f
BB
160#include <sys/file.h>
161#include <sys/kmem.h>
34dc7c2f
BB
162#include <sys/cmn_err.h>
163#include <sys/stat.h>
164#include <sys/zfs_ioctl.h>
428870ff 165#include <sys/zfs_vfsops.h>
34dc7c2f
BB
166#include <sys/zfs_znode.h>
167#include <sys/zap.h>
168#include <sys/spa.h>
169#include <sys/spa_impl.h>
170#include <sys/vdev.h>
4a283c7f 171#include <sys/vdev_impl.h>
34dc7c2f
BB
172#include <sys/dmu.h>
173#include <sys/dsl_dir.h>
174#include <sys/dsl_dataset.h>
175#include <sys/dsl_prop.h>
176#include <sys/dsl_deleg.h>
177#include <sys/dmu_objset.h>
37abac6d 178#include <sys/dmu_impl.h>
13fe0198 179#include <sys/dmu_tx.h>
34dc7c2f 180#include <sys/sunddi.h>
34dc7c2f
BB
181#include <sys/policy.h>
182#include <sys/zone.h>
183#include <sys/nvpair.h>
184#include <sys/pathname.h>
34dc7c2f
BB
185#include <sys/sdt.h>
186#include <sys/fs/zfs.h>
ebe7e575 187#include <sys/zfs_ctldir.h>
34dc7c2f 188#include <sys/zfs_dir.h>
572e2857 189#include <sys/zfs_onexit.h>
34dc7c2f 190#include <sys/zvol.h>
428870ff 191#include <sys/dsl_scan.h>
325f0235 192#include <sys/fm/util.h>
b5256303 193#include <sys/dsl_crypt.h>
325f0235 194
03916905 195#include <sys/dmu_recv.h>
13fe0198
MA
196#include <sys/dmu_send.h>
197#include <sys/dsl_destroy.h>
da536844 198#include <sys/dsl_bookmark.h>
13fe0198 199#include <sys/dsl_userhold.h>
9759c60f 200#include <sys/zfeature.h>
d99a0153 201#include <sys/zcp.h>
3c67d83a 202#include <sys/zio_checksum.h>
a1d477c2 203#include <sys/vdev_removal.h>
e8bcb693 204#include <sys/zfs_sysfs.h>
619f0976
GW
205#include <sys/vdev_impl.h>
206#include <sys/vdev_initialize.h>
9759c60f 207
325f0235 208#include <linux/miscdevice.h>
f74b821a 209#include <linux/slab.h>
34dc7c2f
BB
210
211#include "zfs_namecheck.h"
212#include "zfs_prop.h"
213#include "zfs_deleg.h"
428870ff 214#include "zfs_comutil.h"
34dc7c2f 215
d99a0153
CW
216#include <sys/lua/lua.h>
217#include <sys/lua/lauxlib.h>
218
f74b821a
BB
219/*
220 * Limit maximum nvlist size. We don't want users passing in insane values
221 * for zc->zc_nvlist_src_size, since we will need to allocate that much memory.
222 */
223#define MAX_NVLIST_SRC_SIZE KMALLOC_MAX_SIZE
224
325f0235 225kmutex_t zfsdev_state_lock;
3937ab20 226zfsdev_state_t *zfsdev_state_list;
34dc7c2f
BB
227
228extern void zfs_init(void);
229extern void zfs_fini(void);
230
6f1ffb06
MA
231uint_t zfs_fsyncer_key;
232extern uint_t rrw_tsd_key;
233static uint_t zfs_allow_log_key;
234
235typedef int zfs_ioc_legacy_func_t(zfs_cmd_t *);
236typedef int zfs_ioc_func_t(const char *, nvlist_t *, nvlist_t *);
237typedef int zfs_secpolicy_func_t(zfs_cmd_t *, nvlist_t *, cred_t *);
34dc7c2f 238
b83a0e2d
DB
239/*
240 * IOC Keys are used to document and validate user->kernel interface inputs.
241 * See zfs_keys_recv_new for an example declaration. Any key name that is not
242 * listed will be rejected as input.
243 *
244 * The keyname 'optional' is always allowed, and must be an nvlist if present.
245 * Arguments which older kernels can safely ignore can be placed under the
246 * "optional" key.
247 *
248 * When adding new keys to an existing ioc for new functionality, consider:
249 * - adding an entry into zfs_sysfs.c zfs_features[] list
250 * - updating the libzfs_input_check.c test utility
251 *
252 * Note: in the ZK_WILDCARDLIST case, the name serves as documentation
253 * for the expected name (bookmark, snapshot, property, etc) but there
254 * is no validation in the preflight zfs_check_input_nvpairs() check.
255 */
256typedef enum {
257 ZK_OPTIONAL = 1 << 0, /* pair is optional */
258 ZK_WILDCARDLIST = 1 << 1, /* one or more unspecified key names */
259} ioc_key_flag_t;
260
261/* DATA_TYPE_ANY is used when zkey_type can vary. */
262#define DATA_TYPE_ANY DATA_TYPE_UNKNOWN
263
264typedef struct zfs_ioc_key {
265 const char *zkey_name;
266 data_type_t zkey_type;
267 ioc_key_flag_t zkey_flags;
268} zfs_ioc_key_t;
269
9babb374
BB
270typedef enum {
271 NO_NAME,
272 POOL_NAME,
273 DATASET_NAME
274} zfs_ioc_namecheck_t;
275
572e2857
BB
276typedef enum {
277 POOL_CHECK_NONE = 1 << 0,
278 POOL_CHECK_SUSPENDED = 1 << 1,
6f1ffb06 279 POOL_CHECK_READONLY = 1 << 2,
572e2857
BB
280} zfs_ioc_poolcheck_t;
281
34dc7c2f 282typedef struct zfs_ioc_vec {
6f1ffb06 283 zfs_ioc_legacy_func_t *zvec_legacy_func;
34dc7c2f
BB
284 zfs_ioc_func_t *zvec_func;
285 zfs_secpolicy_func_t *zvec_secpolicy;
9babb374 286 zfs_ioc_namecheck_t zvec_namecheck;
6f1ffb06 287 boolean_t zvec_allow_log;
572e2857 288 zfs_ioc_poolcheck_t zvec_pool_check;
6f1ffb06
MA
289 boolean_t zvec_smush_outnvlist;
290 const char *zvec_name;
b83a0e2d
DB
291 const zfs_ioc_key_t *zvec_nvl_keys;
292 size_t zvec_nvl_key_count;
34dc7c2f
BB
293} zfs_ioc_vec_t;
294
9babb374
BB
295/* This array is indexed by zfs_userquota_prop_t */
296static const char *userquota_perms[] = {
297 ZFS_DELEG_PERM_USERUSED,
298 ZFS_DELEG_PERM_USERQUOTA,
299 ZFS_DELEG_PERM_GROUPUSED,
300 ZFS_DELEG_PERM_GROUPQUOTA,
1de321e6
JX
301 ZFS_DELEG_PERM_USEROBJUSED,
302 ZFS_DELEG_PERM_USEROBJQUOTA,
303 ZFS_DELEG_PERM_GROUPOBJUSED,
304 ZFS_DELEG_PERM_GROUPOBJQUOTA,
9c5167d1
NF
305 ZFS_DELEG_PERM_PROJECTUSED,
306 ZFS_DELEG_PERM_PROJECTQUOTA,
307 ZFS_DELEG_PERM_PROJECTOBJUSED,
308 ZFS_DELEG_PERM_PROJECTOBJQUOTA,
9babb374
BB
309};
310
311static int zfs_ioc_userspace_upgrade(zfs_cmd_t *zc);
9c5167d1 312static int zfs_ioc_id_quota_upgrade(zfs_cmd_t *zc);
428870ff
BB
313static int zfs_check_settable(const char *name, nvpair_t *property,
314 cred_t *cr);
315static int zfs_check_clearable(char *dataset, nvlist_t *props,
316 nvlist_t **errors);
b128c09f
BB
317static int zfs_fill_zplprops_root(uint64_t, nvlist_t *, nvlist_t *,
318 boolean_t *);
6f1ffb06
MA
319int zfs_set_prop_nvlist(const char *, zprop_source_t, nvlist_t *, nvlist_t *);
320static int get_nvlist(uint64_t nvl, uint64_t size, int iflag, nvlist_t **nvp);
b128c09f 321
34dc7c2f
BB
322static void
323history_str_free(char *buf)
324{
325 kmem_free(buf, HIS_MAX_RECORD_LEN);
326}
327
328static char *
329history_str_get(zfs_cmd_t *zc)
330{
331 char *buf;
332
b8864a23 333 if (zc->zc_history == 0)
34dc7c2f
BB
334 return (NULL);
335
efcd79a8 336 buf = kmem_alloc(HIS_MAX_RECORD_LEN, KM_SLEEP);
34dc7c2f
BB
337 if (copyinstr((void *)(uintptr_t)zc->zc_history,
338 buf, HIS_MAX_RECORD_LEN, NULL) != 0) {
339 history_str_free(buf);
340 return (NULL);
341 }
342
343 buf[HIS_MAX_RECORD_LEN -1] = '\0';
344
345 return (buf);
346}
347
348/*
b128c09f
BB
349 * Check to see if the named dataset is currently defined as bootable
350 */
351static boolean_t
352zfs_is_bootfs(const char *name)
353{
428870ff 354 objset_t *os;
b128c09f 355
428870ff
BB
356 if (dmu_objset_hold(name, FTAG, &os) == 0) {
357 boolean_t ret;
358 ret = (dmu_objset_id(os) == spa_bootfs(dmu_objset_spa(os)));
359 dmu_objset_rele(os, FTAG);
360 return (ret);
b128c09f 361 }
428870ff 362 return (B_FALSE);
b128c09f
BB
363}
364
365/*
d3cc8b15 366 * Return non-zero if the spa version is less than requested version.
34dc7c2f
BB
367 */
368static int
b128c09f 369zfs_earlier_version(const char *name, int version)
34dc7c2f 370{
34dc7c2f
BB
371 spa_t *spa;
372
373 if (spa_open(name, &spa, FTAG) == 0) {
374 if (spa_version(spa) < version) {
375 spa_close(spa, FTAG);
376 return (1);
377 }
378 spa_close(spa, FTAG);
379 }
380 return (0);
381}
382
383/*
b128c09f 384 * Return TRUE if the ZPL version is less than requested version.
34dc7c2f 385 */
b128c09f
BB
386static boolean_t
387zpl_earlier_version(const char *name, int version)
34dc7c2f
BB
388{
389 objset_t *os;
b128c09f 390 boolean_t rc = B_TRUE;
34dc7c2f 391
428870ff 392 if (dmu_objset_hold(name, FTAG, &os) == 0) {
b128c09f 393 uint64_t zplversion;
34dc7c2f 394
428870ff
BB
395 if (dmu_objset_type(os) != DMU_OST_ZFS) {
396 dmu_objset_rele(os, FTAG);
397 return (B_TRUE);
398 }
399 /* XXX reading from non-owned objset */
b128c09f
BB
400 if (zfs_get_zplprop(os, ZFS_PROP_VERSION, &zplversion) == 0)
401 rc = zplversion < version;
428870ff 402 dmu_objset_rele(os, FTAG);
34dc7c2f
BB
403 }
404 return (rc);
405}
406
407static void
408zfs_log_history(zfs_cmd_t *zc)
409{
410 spa_t *spa;
411 char *buf;
412
413 if ((buf = history_str_get(zc)) == NULL)
414 return;
415
416 if (spa_open(zc->zc_name, &spa, FTAG) == 0) {
417 if (spa_version(spa) >= SPA_VERSION_ZPOOL_HISTORY)
6f1ffb06 418 (void) spa_history_log(spa, buf);
34dc7c2f
BB
419 spa_close(spa, FTAG);
420 }
421 history_str_free(buf);
422}
423
424/*
425 * Policy for top-level read operations (list pools). Requires no privileges,
426 * and can be used in the local zone, as there is no associated dataset.
427 */
428/* ARGSUSED */
429static int
6f1ffb06 430zfs_secpolicy_none(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
34dc7c2f
BB
431{
432 return (0);
433}
434
435/*
436 * Policy for dataset read operations (list children, get statistics). Requires
437 * no privileges, but must be visible in the local zone.
438 */
439/* ARGSUSED */
440static int
6f1ffb06 441zfs_secpolicy_read(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
34dc7c2f
BB
442{
443 if (INGLOBALZONE(curproc) ||
444 zone_dataset_visible(zc->zc_name, NULL))
445 return (0);
446
2e528b49 447 return (SET_ERROR(ENOENT));
34dc7c2f
BB
448}
449
450static int
572e2857 451zfs_dozonecheck_impl(const char *dataset, uint64_t zoned, cred_t *cr)
34dc7c2f 452{
34dc7c2f
BB
453 int writable = 1;
454
455 /*
456 * The dataset must be visible by this zone -- check this first
457 * so they don't see EPERM on something they shouldn't know about.
458 */
459 if (!INGLOBALZONE(curproc) &&
460 !zone_dataset_visible(dataset, &writable))
2e528b49 461 return (SET_ERROR(ENOENT));
34dc7c2f 462
34dc7c2f
BB
463 if (INGLOBALZONE(curproc)) {
464 /*
465 * If the fs is zoned, only root can access it from the
466 * global zone.
467 */
468 if (secpolicy_zfs(cr) && zoned)
2e528b49 469 return (SET_ERROR(EPERM));
34dc7c2f
BB
470 } else {
471 /*
472 * If we are in a local zone, the 'zoned' property must be set.
473 */
474 if (!zoned)
2e528b49 475 return (SET_ERROR(EPERM));
34dc7c2f
BB
476
477 /* must be writable by this zone */
478 if (!writable)
2e528b49 479 return (SET_ERROR(EPERM));
34dc7c2f
BB
480 }
481 return (0);
482}
483
572e2857
BB
484static int
485zfs_dozonecheck(const char *dataset, cred_t *cr)
486{
487 uint64_t zoned;
488
489 if (dsl_prop_get_integer(dataset, "zoned", &zoned, NULL))
2e528b49 490 return (SET_ERROR(ENOENT));
572e2857
BB
491
492 return (zfs_dozonecheck_impl(dataset, zoned, cr));
493}
494
495static int
496zfs_dozonecheck_ds(const char *dataset, dsl_dataset_t *ds, cred_t *cr)
497{
498 uint64_t zoned;
499
13fe0198 500 if (dsl_prop_get_int_ds(ds, "zoned", &zoned))
2e528b49 501 return (SET_ERROR(ENOENT));
572e2857
BB
502
503 return (zfs_dozonecheck_impl(dataset, zoned, cr));
504}
505
6f1ffb06 506static int
13fe0198
MA
507zfs_secpolicy_write_perms_ds(const char *name, dsl_dataset_t *ds,
508 const char *perm, cred_t *cr)
34dc7c2f
BB
509{
510 int error;
511
330d06f9 512 error = zfs_dozonecheck_ds(name, ds, cr);
34dc7c2f
BB
513 if (error == 0) {
514 error = secpolicy_zfs(cr);
13fe0198 515 if (error != 0)
6f1ffb06 516 error = dsl_deleg_access_impl(ds, perm, cr);
34dc7c2f
BB
517 }
518 return (error);
519}
520
6f1ffb06 521static int
13fe0198 522zfs_secpolicy_write_perms(const char *name, const char *perm, cred_t *cr)
572e2857
BB
523{
524 int error;
13fe0198
MA
525 dsl_dataset_t *ds;
526 dsl_pool_t *dp;
572e2857 527
e88551d5
GM
528 /*
529 * First do a quick check for root in the global zone, which
530 * is allowed to do all write_perms. This ensures that zfs_ioc_*
531 * will get to handle nonexistent datasets.
532 */
533 if (INGLOBALZONE(curproc) && secpolicy_zfs(cr) == 0)
534 return (0);
535
13fe0198
MA
536 error = dsl_pool_hold(name, FTAG, &dp);
537 if (error != 0)
538 return (error);
539
540 error = dsl_dataset_hold(dp, name, FTAG, &ds);
541 if (error != 0) {
542 dsl_pool_rele(dp, FTAG);
543 return (error);
572e2857 544 }
13fe0198
MA
545
546 error = zfs_secpolicy_write_perms_ds(name, ds, perm, cr);
547
548 dsl_dataset_rele(ds, FTAG);
549 dsl_pool_rele(dp, FTAG);
572e2857
BB
550 return (error);
551}
552
428870ff
BB
553/*
554 * Policy for setting the security label property.
555 *
556 * Returns 0 for success, non-zero for access and other errors.
557 */
34dc7c2f 558static int
428870ff 559zfs_set_slabel_policy(const char *name, char *strval, cred_t *cr)
34dc7c2f 560{
d2c15e84 561#ifdef HAVE_MLSLABEL
428870ff
BB
562 char ds_hexsl[MAXNAMELEN];
563 bslabel_t ds_sl, new_sl;
564 boolean_t new_default = FALSE;
565 uint64_t zoned;
566 int needed_priv = -1;
567 int error;
568
569 /* First get the existing dataset label. */
570 error = dsl_prop_get(name, zfs_prop_to_name(ZFS_PROP_MLSLABEL),
571 1, sizeof (ds_hexsl), &ds_hexsl, NULL);
13fe0198 572 if (error != 0)
2e528b49 573 return (SET_ERROR(EPERM));
428870ff
BB
574
575 if (strcasecmp(strval, ZFS_MLSLABEL_DEFAULT) == 0)
576 new_default = TRUE;
577
578 /* The label must be translatable */
579 if (!new_default && (hexstr_to_label(strval, &new_sl) != 0))
2e528b49 580 return (SET_ERROR(EINVAL));
428870ff
BB
581
582 /*
583 * In a non-global zone, disallow attempts to set a label that
584 * doesn't match that of the zone; otherwise no other checks
585 * are needed.
586 */
587 if (!INGLOBALZONE(curproc)) {
588 if (new_default || !blequal(&new_sl, CR_SL(CRED())))
2e528b49 589 return (SET_ERROR(EPERM));
428870ff
BB
590 return (0);
591 }
592
593 /*
594 * For global-zone datasets (i.e., those whose zoned property is
595 * "off", verify that the specified new label is valid for the
596 * global zone.
597 */
598 if (dsl_prop_get_integer(name,
599 zfs_prop_to_name(ZFS_PROP_ZONED), &zoned, NULL))
2e528b49 600 return (SET_ERROR(EPERM));
428870ff
BB
601 if (!zoned) {
602 if (zfs_check_global_label(name, strval) != 0)
2e528b49 603 return (SET_ERROR(EPERM));
428870ff
BB
604 }
605
606 /*
607 * If the existing dataset label is nondefault, check if the
608 * dataset is mounted (label cannot be changed while mounted).
0037b49e 609 * Get the zfsvfs_t; if there isn't one, then the dataset isn't
428870ff
BB
610 * mounted (or isn't a dataset, doesn't exist, ...).
611 */
612 if (strcasecmp(ds_hexsl, ZFS_MLSLABEL_DEFAULT) != 0) {
613 objset_t *os;
614 static char *setsl_tag = "setsl_tag";
615
616 /*
617 * Try to own the dataset; abort if there is any error,
618 * (e.g., already mounted, in use, or other error).
619 */
b5256303 620 error = dmu_objset_own(name, DMU_OST_ZFS, B_TRUE, B_TRUE,
428870ff 621 setsl_tag, &os);
13fe0198 622 if (error != 0)
2e528b49 623 return (SET_ERROR(EPERM));
428870ff 624
b5256303 625 dmu_objset_disown(os, B_TRUE, setsl_tag);
428870ff
BB
626
627 if (new_default) {
628 needed_priv = PRIV_FILE_DOWNGRADE_SL;
629 goto out_check;
630 }
631
632 if (hexstr_to_label(strval, &new_sl) != 0)
2e528b49 633 return (SET_ERROR(EPERM));
428870ff
BB
634
635 if (blstrictdom(&ds_sl, &new_sl))
636 needed_priv = PRIV_FILE_DOWNGRADE_SL;
637 else if (blstrictdom(&new_sl, &ds_sl))
638 needed_priv = PRIV_FILE_UPGRADE_SL;
639 } else {
640 /* dataset currently has a default label */
641 if (!new_default)
642 needed_priv = PRIV_FILE_UPGRADE_SL;
643 }
644
645out_check:
646 if (needed_priv != -1)
647 return (PRIV_POLICY(cr, needed_priv, B_FALSE, EPERM, NULL));
648 return (0);
d2c15e84 649#else
ecb2b7dc 650 return (SET_ERROR(ENOTSUP));
d2c15e84 651#endif /* HAVE_MLSLABEL */
428870ff
BB
652}
653
654static int
655zfs_secpolicy_setprop(const char *dsname, zfs_prop_t prop, nvpair_t *propval,
656 cred_t *cr)
657{
658 char *strval;
659
34dc7c2f
BB
660 /*
661 * Check permissions for special properties.
662 */
663 switch (prop) {
e75c13c3
BB
664 default:
665 break;
34dc7c2f
BB
666 case ZFS_PROP_ZONED:
667 /*
668 * Disallow setting of 'zoned' from within a local zone.
669 */
670 if (!INGLOBALZONE(curproc))
2e528b49 671 return (SET_ERROR(EPERM));
34dc7c2f
BB
672 break;
673
674 case ZFS_PROP_QUOTA:
788eb90c
JJ
675 case ZFS_PROP_FILESYSTEM_LIMIT:
676 case ZFS_PROP_SNAPSHOT_LIMIT:
34dc7c2f
BB
677 if (!INGLOBALZONE(curproc)) {
678 uint64_t zoned;
eca7b760 679 char setpoint[ZFS_MAX_DATASET_NAME_LEN];
34dc7c2f
BB
680 /*
681 * Unprivileged users are allowed to modify the
788eb90c 682 * limit on things *under* (ie. contained by)
34dc7c2f
BB
683 * the thing they own.
684 */
428870ff 685 if (dsl_prop_get_integer(dsname, "zoned", &zoned,
34dc7c2f 686 setpoint))
2e528b49 687 return (SET_ERROR(EPERM));
428870ff 688 if (!zoned || strlen(dsname) <= strlen(setpoint))
2e528b49 689 return (SET_ERROR(EPERM));
34dc7c2f
BB
690 }
691 break;
428870ff
BB
692
693 case ZFS_PROP_MLSLABEL:
694 if (!is_system_labeled())
2e528b49 695 return (SET_ERROR(EPERM));
428870ff
BB
696
697 if (nvpair_value_string(propval, &strval) == 0) {
698 int err;
699
700 err = zfs_set_slabel_policy(dsname, strval, CRED());
701 if (err != 0)
702 return (err);
703 }
704 break;
34dc7c2f
BB
705 }
706
428870ff 707 return (zfs_secpolicy_write_perms(dsname, zfs_prop_to_name(prop), cr));
34dc7c2f
BB
708}
709
6f1ffb06
MA
710/* ARGSUSED */
711static int
712zfs_secpolicy_set_fsacl(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
34dc7c2f
BB
713{
714 int error;
715
716 error = zfs_dozonecheck(zc->zc_name, cr);
13fe0198 717 if (error != 0)
34dc7c2f
BB
718 return (error);
719
720 /*
721 * permission to set permissions will be evaluated later in
722 * dsl_deleg_can_allow()
723 */
724 return (0);
725}
726
6f1ffb06
MA
727/* ARGSUSED */
728static int
729zfs_secpolicy_rollback(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
34dc7c2f 730{
428870ff
BB
731 return (zfs_secpolicy_write_perms(zc->zc_name,
732 ZFS_DELEG_PERM_ROLLBACK, cr));
34dc7c2f
BB
733}
734
6f1ffb06
MA
735/* ARGSUSED */
736static int
737zfs_secpolicy_send(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
34dc7c2f 738{
572e2857
BB
739 dsl_pool_t *dp;
740 dsl_dataset_t *ds;
741 char *cp;
742 int error;
743
744 /*
745 * Generate the current snapshot name from the given objsetid, then
746 * use that name for the secpolicy/zone checks.
747 */
748 cp = strchr(zc->zc_name, '@');
749 if (cp == NULL)
2e528b49 750 return (SET_ERROR(EINVAL));
13fe0198
MA
751 error = dsl_pool_hold(zc->zc_name, FTAG, &dp);
752 if (error != 0)
572e2857
BB
753 return (error);
754
572e2857 755 error = dsl_dataset_hold_obj(dp, zc->zc_sendobj, FTAG, &ds);
13fe0198
MA
756 if (error != 0) {
757 dsl_pool_rele(dp, FTAG);
572e2857 758 return (error);
13fe0198 759 }
572e2857
BB
760
761 dsl_dataset_name(ds, zc->zc_name);
762
763 error = zfs_secpolicy_write_perms_ds(zc->zc_name, ds,
764 ZFS_DELEG_PERM_SEND, cr);
765 dsl_dataset_rele(ds, FTAG);
13fe0198 766 dsl_pool_rele(dp, FTAG);
572e2857
BB
767
768 return (error);
34dc7c2f
BB
769}
770
6f1ffb06
MA
771/* ARGSUSED */
772static int
773zfs_secpolicy_send_new(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
774{
775 return (zfs_secpolicy_write_perms(zc->zc_name,
776 ZFS_DELEG_PERM_SEND, cr));
777}
778
34dc7c2f 779int
6f1ffb06 780zfs_secpolicy_share(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
34dc7c2f 781{
2e528b49 782 return (SET_ERROR(ENOTSUP));
9babb374 783}
34dc7c2f 784
9babb374 785int
6f1ffb06 786zfs_secpolicy_smb_acl(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
9babb374 787{
2e528b49 788 return (SET_ERROR(ENOTSUP));
34dc7c2f
BB
789}
790
791static int
792zfs_get_parent(const char *datasetname, char *parent, int parentsize)
793{
794 char *cp;
795
796 /*
797 * Remove the @bla or /bla from the end of the name to get the parent.
798 */
799 (void) strncpy(parent, datasetname, parentsize);
800 cp = strrchr(parent, '@');
801 if (cp != NULL) {
802 cp[0] = '\0';
803 } else {
804 cp = strrchr(parent, '/');
805 if (cp == NULL)
2e528b49 806 return (SET_ERROR(ENOENT));
34dc7c2f
BB
807 cp[0] = '\0';
808 }
809
810 return (0);
811}
812
813int
814zfs_secpolicy_destroy_perms(const char *name, cred_t *cr)
815{
816 int error;
817
818 if ((error = zfs_secpolicy_write_perms(name,
819 ZFS_DELEG_PERM_MOUNT, cr)) != 0)
820 return (error);
821
822 return (zfs_secpolicy_write_perms(name, ZFS_DELEG_PERM_DESTROY, cr));
823}
824
6f1ffb06 825/* ARGSUSED */
34dc7c2f 826static int
6f1ffb06 827zfs_secpolicy_destroy(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
34dc7c2f
BB
828{
829 return (zfs_secpolicy_destroy_perms(zc->zc_name, cr));
830}
831
832/*
428870ff 833 * Destroying snapshots with delegated permissions requires
6f1ffb06 834 * descendant mount and destroy permissions.
34dc7c2f 835 */
6f1ffb06 836/* ARGSUSED */
34dc7c2f 837static int
6f1ffb06 838zfs_secpolicy_destroy_snaps(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
34dc7c2f 839{
6f1ffb06
MA
840 nvlist_t *snaps;
841 nvpair_t *pair, *nextpair;
842 int error = 0;
428870ff 843
b83a0e2d
DB
844 snaps = fnvlist_lookup_nvlist(innvl, "snaps");
845
6f1ffb06
MA
846 for (pair = nvlist_next_nvpair(snaps, NULL); pair != NULL;
847 pair = nextpair) {
6f1ffb06 848 nextpair = nvlist_next_nvpair(snaps, pair);
da536844
MA
849 error = zfs_secpolicy_destroy_perms(nvpair_name(pair), cr);
850 if (error == ENOENT) {
6f1ffb06
MA
851 /*
852 * Ignore any snapshots that don't exist (we consider
853 * them "already destroyed"). Remove the name from the
854 * nvl here in case the snapshot is created between
855 * now and when we try to destroy it (in which case
856 * we don't want to destroy it since we haven't
857 * checked for permission).
858 */
859 fnvlist_remove_nvpair(snaps, pair);
860 error = 0;
6f1ffb06 861 }
6f1ffb06
MA
862 if (error != 0)
863 break;
864 }
428870ff 865
428870ff 866 return (error);
34dc7c2f
BB
867}
868
869int
870zfs_secpolicy_rename_perms(const char *from, const char *to, cred_t *cr)
871{
eca7b760 872 char parentname[ZFS_MAX_DATASET_NAME_LEN];
34dc7c2f
BB
873 int error;
874
875 if ((error = zfs_secpolicy_write_perms(from,
876 ZFS_DELEG_PERM_RENAME, cr)) != 0)
877 return (error);
878
879 if ((error = zfs_secpolicy_write_perms(from,
880 ZFS_DELEG_PERM_MOUNT, cr)) != 0)
881 return (error);
882
883 if ((error = zfs_get_parent(to, parentname,
884 sizeof (parentname))) != 0)
885 return (error);
886
887 if ((error = zfs_secpolicy_write_perms(parentname,
888 ZFS_DELEG_PERM_CREATE, cr)) != 0)
889 return (error);
890
891 if ((error = zfs_secpolicy_write_perms(parentname,
892 ZFS_DELEG_PERM_MOUNT, cr)) != 0)
893 return (error);
894
895 return (error);
896}
897
6f1ffb06 898/* ARGSUSED */
34dc7c2f 899static int
6f1ffb06 900zfs_secpolicy_rename(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
34dc7c2f
BB
901{
902 return (zfs_secpolicy_rename_perms(zc->zc_name, zc->zc_value, cr));
903}
904
6f1ffb06 905/* ARGSUSED */
34dc7c2f 906static int
6f1ffb06 907zfs_secpolicy_promote(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
34dc7c2f 908{
13fe0198
MA
909 dsl_pool_t *dp;
910 dsl_dataset_t *clone;
34dc7c2f
BB
911 int error;
912
913 error = zfs_secpolicy_write_perms(zc->zc_name,
914 ZFS_DELEG_PERM_PROMOTE, cr);
13fe0198
MA
915 if (error != 0)
916 return (error);
917
918 error = dsl_pool_hold(zc->zc_name, FTAG, &dp);
919 if (error != 0)
34dc7c2f
BB
920 return (error);
921
13fe0198 922 error = dsl_dataset_hold(dp, zc->zc_name, FTAG, &clone);
34dc7c2f
BB
923
924 if (error == 0) {
eca7b760 925 char parentname[ZFS_MAX_DATASET_NAME_LEN];
13fe0198 926 dsl_dataset_t *origin = NULL;
34dc7c2f 927 dsl_dir_t *dd;
13fe0198 928 dd = clone->ds_dir;
34dc7c2f 929
b128c09f 930 error = dsl_dataset_hold_obj(dd->dd_pool,
d683ddbb 931 dsl_dir_phys(dd)->dd_origin_obj, FTAG, &origin);
13fe0198
MA
932 if (error != 0) {
933 dsl_dataset_rele(clone, FTAG);
934 dsl_pool_rele(dp, FTAG);
34dc7c2f
BB
935 return (error);
936 }
937
13fe0198 938 error = zfs_secpolicy_write_perms_ds(zc->zc_name, clone,
34dc7c2f
BB
939 ZFS_DELEG_PERM_MOUNT, cr);
940
13fe0198
MA
941 dsl_dataset_name(origin, parentname);
942 if (error == 0) {
943 error = zfs_secpolicy_write_perms_ds(parentname, origin,
34dc7c2f 944 ZFS_DELEG_PERM_PROMOTE, cr);
13fe0198
MA
945 }
946 dsl_dataset_rele(clone, FTAG);
947 dsl_dataset_rele(origin, FTAG);
34dc7c2f 948 }
13fe0198 949 dsl_pool_rele(dp, FTAG);
34dc7c2f
BB
950 return (error);
951}
952
6f1ffb06 953/* ARGSUSED */
34dc7c2f 954static int
6f1ffb06 955zfs_secpolicy_recv(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
34dc7c2f
BB
956{
957 int error;
958
959 if ((error = zfs_secpolicy_write_perms(zc->zc_name,
960 ZFS_DELEG_PERM_RECEIVE, cr)) != 0)
961 return (error);
962
963 if ((error = zfs_secpolicy_write_perms(zc->zc_name,
964 ZFS_DELEG_PERM_MOUNT, cr)) != 0)
965 return (error);
966
967 return (zfs_secpolicy_write_perms(zc->zc_name,
968 ZFS_DELEG_PERM_CREATE, cr));
969}
970
43e52edd
BB
971/* ARGSUSED */
972static int
973zfs_secpolicy_recv_new(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
974{
975 return (zfs_secpolicy_recv(zc, innvl, cr));
976}
977
34dc7c2f
BB
978int
979zfs_secpolicy_snapshot_perms(const char *name, cred_t *cr)
980{
428870ff
BB
981 return (zfs_secpolicy_write_perms(name,
982 ZFS_DELEG_PERM_SNAPSHOT, cr));
34dc7c2f
BB
983}
984
6f1ffb06
MA
985/*
986 * Check for permission to create each snapshot in the nvlist.
987 */
988/* ARGSUSED */
34dc7c2f 989static int
6f1ffb06 990zfs_secpolicy_snapshot(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
34dc7c2f 991{
6f1ffb06
MA
992 nvlist_t *snaps;
993 int error = 0;
994 nvpair_t *pair;
995
b83a0e2d
DB
996 snaps = fnvlist_lookup_nvlist(innvl, "snaps");
997
6f1ffb06
MA
998 for (pair = nvlist_next_nvpair(snaps, NULL); pair != NULL;
999 pair = nvlist_next_nvpair(snaps, pair)) {
1000 char *name = nvpair_name(pair);
1001 char *atp = strchr(name, '@');
34dc7c2f 1002
6f1ffb06 1003 if (atp == NULL) {
2e528b49 1004 error = SET_ERROR(EINVAL);
6f1ffb06
MA
1005 break;
1006 }
1007 *atp = '\0';
1008 error = zfs_secpolicy_snapshot_perms(name, cr);
1009 *atp = '@';
1010 if (error != 0)
1011 break;
1012 }
1013 return (error);
1014}
1015
da536844 1016/*
b83a0e2d 1017 * Check for permission to create each bookmark in the nvlist.
da536844
MA
1018 */
1019/* ARGSUSED */
1020static int
1021zfs_secpolicy_bookmark(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
1022{
1023 int error = 0;
da536844 1024
1c27024e 1025 for (nvpair_t *pair = nvlist_next_nvpair(innvl, NULL);
da536844
MA
1026 pair != NULL; pair = nvlist_next_nvpair(innvl, pair)) {
1027 char *name = nvpair_name(pair);
1028 char *hashp = strchr(name, '#');
1029
1030 if (hashp == NULL) {
1031 error = SET_ERROR(EINVAL);
1032 break;
1033 }
1034 *hashp = '\0';
1035 error = zfs_secpolicy_write_perms(name,
1036 ZFS_DELEG_PERM_BOOKMARK, cr);
1037 *hashp = '#';
1038 if (error != 0)
1039 break;
1040 }
1041 return (error);
1042}
1043
a1d477c2
MA
1044/* ARGSUSED */
1045static int
1046zfs_secpolicy_remap(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
1047{
1048 return (zfs_secpolicy_write_perms(zc->zc_name,
1049 ZFS_DELEG_PERM_REMAP, cr));
1050}
1051
da536844
MA
1052/* ARGSUSED */
1053static int
1054zfs_secpolicy_destroy_bookmarks(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
1055{
1056 nvpair_t *pair, *nextpair;
1057 int error = 0;
1058
1059 for (pair = nvlist_next_nvpair(innvl, NULL); pair != NULL;
1060 pair = nextpair) {
1061 char *name = nvpair_name(pair);
1062 char *hashp = strchr(name, '#');
1063 nextpair = nvlist_next_nvpair(innvl, pair);
1064
1065 if (hashp == NULL) {
1066 error = SET_ERROR(EINVAL);
1067 break;
1068 }
1069
1070 *hashp = '\0';
1071 error = zfs_secpolicy_write_perms(name,
1072 ZFS_DELEG_PERM_DESTROY, cr);
1073 *hashp = '#';
1074 if (error == ENOENT) {
1075 /*
1076 * Ignore any filesystems that don't exist (we consider
1077 * their bookmarks "already destroyed"). Remove
1078 * the name from the nvl here in case the filesystem
1079 * is created between now and when we try to destroy
1080 * the bookmark (in which case we don't want to
1081 * destroy it since we haven't checked for permission).
1082 */
1083 fnvlist_remove_nvpair(innvl, pair);
1084 error = 0;
1085 }
1086 if (error != 0)
1087 break;
1088 }
1089
1090 return (error);
1091}
1092
6f1ffb06
MA
1093/* ARGSUSED */
1094static int
1095zfs_secpolicy_log_history(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
1096{
1097 /*
1098 * Even root must have a proper TSD so that we know what pool
1099 * to log to.
1100 */
1101 if (tsd_get(zfs_allow_log_key) == NULL)
2e528b49 1102 return (SET_ERROR(EPERM));
6f1ffb06 1103 return (0);
34dc7c2f
BB
1104}
1105
1106static int
6f1ffb06 1107zfs_secpolicy_create_clone(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
34dc7c2f 1108{
eca7b760 1109 char parentname[ZFS_MAX_DATASET_NAME_LEN];
428870ff 1110 int error;
6f1ffb06 1111 char *origin;
34dc7c2f
BB
1112
1113 if ((error = zfs_get_parent(zc->zc_name, parentname,
1114 sizeof (parentname))) != 0)
1115 return (error);
1116
6f1ffb06
MA
1117 if (nvlist_lookup_string(innvl, "origin", &origin) == 0 &&
1118 (error = zfs_secpolicy_write_perms(origin,
1119 ZFS_DELEG_PERM_CLONE, cr)) != 0)
1120 return (error);
34dc7c2f
BB
1121
1122 if ((error = zfs_secpolicy_write_perms(parentname,
1123 ZFS_DELEG_PERM_CREATE, cr)) != 0)
1124 return (error);
1125
6f1ffb06
MA
1126 return (zfs_secpolicy_write_perms(parentname,
1127 ZFS_DELEG_PERM_MOUNT, cr));
34dc7c2f
BB
1128}
1129
34dc7c2f
BB
1130/*
1131 * Policy for pool operations - create/destroy pools, add vdevs, etc. Requires
1132 * SYS_CONFIG privilege, which is not available in a local zone.
1133 */
1134/* ARGSUSED */
1135static int
6f1ffb06 1136zfs_secpolicy_config(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
34dc7c2f
BB
1137{
1138 if (secpolicy_sys_config(cr, B_FALSE) != 0)
2e528b49 1139 return (SET_ERROR(EPERM));
34dc7c2f
BB
1140
1141 return (0);
1142}
1143
572e2857
BB
1144/*
1145 * Policy for object to name lookups.
1146 */
1147/* ARGSUSED */
1148static int
6f1ffb06 1149zfs_secpolicy_diff(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
572e2857
BB
1150{
1151 int error;
1152
1153 if ((error = secpolicy_sys_config(cr, B_FALSE)) == 0)
1154 return (0);
1155
1156 error = zfs_secpolicy_write_perms(zc->zc_name, ZFS_DELEG_PERM_DIFF, cr);
1157 return (error);
1158}
1159
34dc7c2f
BB
1160/*
1161 * Policy for fault injection. Requires all privileges.
1162 */
1163/* ARGSUSED */
1164static int
6f1ffb06 1165zfs_secpolicy_inject(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
34dc7c2f
BB
1166{
1167 return (secpolicy_zinject(cr));
1168}
1169
6f1ffb06 1170/* ARGSUSED */
34dc7c2f 1171static int
6f1ffb06 1172zfs_secpolicy_inherit_prop(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
34dc7c2f
BB
1173{
1174 zfs_prop_t prop = zfs_name_to_prop(zc->zc_value);
1175
1176 if (prop == ZPROP_INVAL) {
1177 if (!zfs_prop_user(zc->zc_value))
2e528b49 1178 return (SET_ERROR(EINVAL));
34dc7c2f
BB
1179 return (zfs_secpolicy_write_perms(zc->zc_name,
1180 ZFS_DELEG_PERM_USERPROP, cr));
1181 } else {
428870ff
BB
1182 return (zfs_secpolicy_setprop(zc->zc_name, prop,
1183 NULL, cr));
34dc7c2f
BB
1184 }
1185}
1186
9babb374 1187static int
6f1ffb06 1188zfs_secpolicy_userspace_one(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
9babb374 1189{
6f1ffb06 1190 int err = zfs_secpolicy_read(zc, innvl, cr);
9babb374
BB
1191 if (err)
1192 return (err);
1193
1194 if (zc->zc_objset_type >= ZFS_NUM_USERQUOTA_PROPS)
2e528b49 1195 return (SET_ERROR(EINVAL));
9babb374
BB
1196
1197 if (zc->zc_value[0] == 0) {
1198 /*
1199 * They are asking about a posix uid/gid. If it's
1200 * themself, allow it.
1201 */
1202 if (zc->zc_objset_type == ZFS_PROP_USERUSED ||
1de321e6
JX
1203 zc->zc_objset_type == ZFS_PROP_USERQUOTA ||
1204 zc->zc_objset_type == ZFS_PROP_USEROBJUSED ||
1205 zc->zc_objset_type == ZFS_PROP_USEROBJQUOTA) {
9babb374
BB
1206 if (zc->zc_guid == crgetuid(cr))
1207 return (0);
9c5167d1
NF
1208 } else if (zc->zc_objset_type == ZFS_PROP_GROUPUSED ||
1209 zc->zc_objset_type == ZFS_PROP_GROUPQUOTA ||
1210 zc->zc_objset_type == ZFS_PROP_GROUPOBJUSED ||
1211 zc->zc_objset_type == ZFS_PROP_GROUPOBJQUOTA) {
9babb374
BB
1212 if (groupmember(zc->zc_guid, cr))
1213 return (0);
1214 }
9c5167d1 1215 /* else is for project quota/used */
9babb374
BB
1216 }
1217
1218 return (zfs_secpolicy_write_perms(zc->zc_name,
1219 userquota_perms[zc->zc_objset_type], cr));
1220}
1221
1222static int
6f1ffb06 1223zfs_secpolicy_userspace_many(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
9babb374 1224{
6f1ffb06 1225 int err = zfs_secpolicy_read(zc, innvl, cr);
9babb374
BB
1226 if (err)
1227 return (err);
1228
1229 if (zc->zc_objset_type >= ZFS_NUM_USERQUOTA_PROPS)
2e528b49 1230 return (SET_ERROR(EINVAL));
9babb374
BB
1231
1232 return (zfs_secpolicy_write_perms(zc->zc_name,
1233 userquota_perms[zc->zc_objset_type], cr));
1234}
1235
6f1ffb06 1236/* ARGSUSED */
9babb374 1237static int
6f1ffb06 1238zfs_secpolicy_userspace_upgrade(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
9babb374 1239{
428870ff
BB
1240 return (zfs_secpolicy_setprop(zc->zc_name, ZFS_PROP_VERSION,
1241 NULL, cr));
9babb374
BB
1242}
1243
6f1ffb06 1244/* ARGSUSED */
45d1cae3 1245static int
6f1ffb06 1246zfs_secpolicy_hold(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
45d1cae3 1247{
13fe0198
MA
1248 nvpair_t *pair;
1249 nvlist_t *holds;
1250 int error;
1251
b83a0e2d 1252 holds = fnvlist_lookup_nvlist(innvl, "holds");
13fe0198
MA
1253
1254 for (pair = nvlist_next_nvpair(holds, NULL); pair != NULL;
1255 pair = nvlist_next_nvpair(holds, pair)) {
eca7b760 1256 char fsname[ZFS_MAX_DATASET_NAME_LEN];
13fe0198
MA
1257 error = dmu_fsname(nvpair_name(pair), fsname);
1258 if (error != 0)
1259 return (error);
1260 error = zfs_secpolicy_write_perms(fsname,
1261 ZFS_DELEG_PERM_HOLD, cr);
1262 if (error != 0)
1263 return (error);
1264 }
1265 return (0);
45d1cae3
BB
1266}
1267
6f1ffb06 1268/* ARGSUSED */
45d1cae3 1269static int
6f1ffb06 1270zfs_secpolicy_release(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
45d1cae3 1271{
13fe0198
MA
1272 nvpair_t *pair;
1273 int error;
1274
1275 for (pair = nvlist_next_nvpair(innvl, NULL); pair != NULL;
1276 pair = nvlist_next_nvpair(innvl, pair)) {
eca7b760 1277 char fsname[ZFS_MAX_DATASET_NAME_LEN];
13fe0198
MA
1278 error = dmu_fsname(nvpair_name(pair), fsname);
1279 if (error != 0)
1280 return (error);
1281 error = zfs_secpolicy_write_perms(fsname,
1282 ZFS_DELEG_PERM_RELEASE, cr);
1283 if (error != 0)
1284 return (error);
1285 }
1286 return (0);
45d1cae3
BB
1287}
1288
572e2857
BB
1289/*
1290 * Policy for allowing temporary snapshots to be taken or released
1291 */
1292static int
6f1ffb06 1293zfs_secpolicy_tmp_snapshot(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
572e2857
BB
1294{
1295 /*
1296 * A temporary snapshot is the same as a snapshot,
1297 * hold, destroy and release all rolled into one.
1298 * Delegated diff alone is sufficient that we allow this.
1299 */
1300 int error;
1301
1302 if ((error = zfs_secpolicy_write_perms(zc->zc_name,
1303 ZFS_DELEG_PERM_DIFF, cr)) == 0)
1304 return (0);
1305
6f1ffb06 1306 error = zfs_secpolicy_snapshot_perms(zc->zc_name, cr);
b83a0e2d
DB
1307
1308 if (innvl != NULL) {
1309 if (error == 0)
1310 error = zfs_secpolicy_hold(zc, innvl, cr);
1311 if (error == 0)
1312 error = zfs_secpolicy_release(zc, innvl, cr);
1313 if (error == 0)
1314 error = zfs_secpolicy_destroy(zc, innvl, cr);
1315 }
572e2857
BB
1316 return (error);
1317}
1318
b5256303
TC
1319static int
1320zfs_secpolicy_load_key(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
1321{
1322 return (zfs_secpolicy_write_perms(zc->zc_name,
1323 ZFS_DELEG_PERM_LOAD_KEY, cr));
1324}
1325
1326static int
1327zfs_secpolicy_change_key(zfs_cmd_t *zc, nvlist_t *innvl, cred_t *cr)
1328{
1329 return (zfs_secpolicy_write_perms(zc->zc_name,
1330 ZFS_DELEG_PERM_CHANGE_KEY, cr));
1331}
1332
34dc7c2f
BB
1333/*
1334 * Returns the nvlist as specified by the user in the zfs_cmd_t.
1335 */
1336static int
9babb374 1337get_nvlist(uint64_t nvl, uint64_t size, int iflag, nvlist_t **nvp)
34dc7c2f
BB
1338{
1339 char *packed;
1340 int error;
1341 nvlist_t *list = NULL;
1342
1343 /*
1344 * Read in and unpack the user-supplied nvlist.
1345 */
1346 if (size == 0)
2e528b49 1347 return (SET_ERROR(EINVAL));
34dc7c2f 1348
77aef6f6 1349 packed = vmem_alloc(size, KM_SLEEP);
34dc7c2f 1350
9babb374
BB
1351 if ((error = ddi_copyin((void *)(uintptr_t)nvl, packed, size,
1352 iflag)) != 0) {
77aef6f6 1353 vmem_free(packed, size);
0de7c552 1354 return (SET_ERROR(EFAULT));
34dc7c2f
BB
1355 }
1356
1357 if ((error = nvlist_unpack(packed, size, &list, 0)) != 0) {
77aef6f6 1358 vmem_free(packed, size);
34dc7c2f
BB
1359 return (error);
1360 }
1361
77aef6f6 1362 vmem_free(packed, size);
34dc7c2f
BB
1363
1364 *nvp = list;
1365 return (0);
1366}
1367
6f1ffb06
MA
1368/*
1369 * Reduce the size of this nvlist until it can be serialized in 'max' bytes.
1370 * Entries will be removed from the end of the nvlist, and one int32 entry
1371 * named "N_MORE_ERRORS" will be added indicating how many entries were
1372 * removed.
1373 */
428870ff 1374static int
6f1ffb06 1375nvlist_smush(nvlist_t *errors, size_t max)
428870ff
BB
1376{
1377 size_t size;
1378
6f1ffb06 1379 size = fnvlist_size(errors);
428870ff 1380
6f1ffb06 1381 if (size > max) {
428870ff
BB
1382 nvpair_t *more_errors;
1383 int n = 0;
1384
6f1ffb06 1385 if (max < 1024)
2e528b49 1386 return (SET_ERROR(ENOMEM));
428870ff 1387
6f1ffb06
MA
1388 fnvlist_add_int32(errors, ZPROP_N_MORE_ERRORS, 0);
1389 more_errors = nvlist_prev_nvpair(errors, NULL);
428870ff
BB
1390
1391 do {
6f1ffb06 1392 nvpair_t *pair = nvlist_prev_nvpair(errors,
428870ff 1393 more_errors);
6f1ffb06 1394 fnvlist_remove_nvpair(errors, pair);
428870ff 1395 n++;
6f1ffb06
MA
1396 size = fnvlist_size(errors);
1397 } while (size > max);
428870ff 1398
6f1ffb06
MA
1399 fnvlist_remove_nvpair(errors, more_errors);
1400 fnvlist_add_int32(errors, ZPROP_N_MORE_ERRORS, n);
1401 ASSERT3U(fnvlist_size(errors), <=, max);
428870ff
BB
1402 }
1403
1404 return (0);
1405}
1406
34dc7c2f
BB
1407static int
1408put_nvlist(zfs_cmd_t *zc, nvlist_t *nvl)
1409{
1410 char *packed = NULL;
428870ff 1411 int error = 0;
34dc7c2f 1412 size_t size;
34dc7c2f 1413
6f1ffb06 1414 size = fnvlist_size(nvl);
34dc7c2f
BB
1415
1416 if (size > zc->zc_nvlist_dst_size) {
2e528b49 1417 error = SET_ERROR(ENOMEM);
34dc7c2f 1418 } else {
6f1ffb06 1419 packed = fnvlist_pack(nvl, &size);
428870ff
BB
1420 if (ddi_copyout(packed, (void *)(uintptr_t)zc->zc_nvlist_dst,
1421 size, zc->zc_iflags) != 0)
2e528b49 1422 error = SET_ERROR(EFAULT);
6f1ffb06 1423 fnvlist_pack_free(packed, size);
34dc7c2f
BB
1424 }
1425
1426 zc->zc_nvlist_dst_size = size;
6f1ffb06 1427 zc->zc_nvlist_dst_filled = B_TRUE;
34dc7c2f
BB
1428 return (error);
1429}
1430
d99a0153
CW
1431int
1432getzfsvfs_impl(objset_t *os, zfsvfs_t **zfvp)
9babb374 1433{
d99a0153 1434 int error = 0;
428870ff 1435 if (dmu_objset_type(os) != DMU_OST_ZFS) {
2e528b49 1436 return (SET_ERROR(EINVAL));
428870ff 1437 }
9babb374 1438
428870ff 1439 mutex_enter(&os->os_user_ptr_lock);
0037b49e 1440 *zfvp = dmu_objset_get_user(os);
061460df 1441 /* bump s_active only when non-zero to prevent umount race */
0037b49e
BB
1442 if (*zfvp == NULL || (*zfvp)->z_sb == NULL ||
1443 !atomic_inc_not_zero(&((*zfvp)->z_sb->s_active))) {
2e528b49 1444 error = SET_ERROR(ESRCH);
9babb374 1445 }
428870ff 1446 mutex_exit(&os->os_user_ptr_lock);
d99a0153
CW
1447 return (error);
1448}
1449
8d103d88 1450int
d99a0153
CW
1451getzfsvfs(const char *dsname, zfsvfs_t **zfvp)
1452{
1453 objset_t *os;
1454 int error;
1455
1456 error = dmu_objset_hold(dsname, FTAG, &os);
1457 if (error != 0)
1458 return (error);
1459
1460 error = getzfsvfs_impl(os, zfvp);
428870ff 1461 dmu_objset_rele(os, FTAG);
9babb374
BB
1462 return (error);
1463}
1464
1465/*
0037b49e 1466 * Find a zfsvfs_t for a mounted filesystem, or create our own, in which
2cf7f52b 1467 * case its z_sb will be NULL, and it will be opened as the owner.
9ae529ec
CS
1468 * If 'writer' is set, the z_teardown_lock will be held for RW_WRITER,
1469 * which prevents all inode ops from running.
9babb374
BB
1470 */
1471static int
f298b24d 1472zfsvfs_hold(const char *name, void *tag, zfsvfs_t **zfvp, boolean_t writer)
9babb374
BB
1473{
1474 int error = 0;
9babb374 1475
f298b24d 1476 if (getzfsvfs(name, zfvp) != 0)
163a8c28 1477 error = zfsvfs_create(name, B_FALSE, zfvp);
9babb374 1478 if (error == 0) {
0037b49e 1479 rrm_enter(&(*zfvp)->z_teardown_lock, (writer) ? RW_WRITER :
572e2857 1480 RW_READER, tag);
0037b49e 1481 if ((*zfvp)->z_unmounted) {
9babb374
BB
1482 /*
1483 * XXX we could probably try again, since the unmounting
1484 * thread should be just about to disassociate the
0037b49e 1485 * objset from the zfsvfs.
9babb374 1486 */
0037b49e 1487 rrm_exit(&(*zfvp)->z_teardown_lock, tag);
2e528b49 1488 return (SET_ERROR(EBUSY));
9babb374
BB
1489 }
1490 }
1491 return (error);
1492}
1493
1494static void
f298b24d 1495zfsvfs_rele(zfsvfs_t *zfsvfs, void *tag)
9babb374 1496{
0037b49e 1497 rrm_exit(&zfsvfs->z_teardown_lock, tag);
9babb374 1498
0037b49e
BB
1499 if (zfsvfs->z_sb) {
1500 deactivate_super(zfsvfs->z_sb);
9babb374 1501 } else {
b5256303 1502 dmu_objset_disown(zfsvfs->z_os, B_TRUE, zfsvfs);
f298b24d 1503 zfsvfs_free(zfsvfs);
9babb374
BB
1504 }
1505}
1506
34dc7c2f
BB
1507static int
1508zfs_ioc_pool_create(zfs_cmd_t *zc)
1509{
1510 int error;
1511 nvlist_t *config, *props = NULL;
b128c09f
BB
1512 nvlist_t *rootprops = NULL;
1513 nvlist_t *zplprops = NULL;
b5256303 1514 dsl_crypto_params_t *dcp = NULL;
4ceb8dd6 1515 char *spa_name = zc->zc_name;
34dc7c2f 1516
c65aa5b2
BB
1517 if ((error = get_nvlist(zc->zc_nvlist_conf, zc->zc_nvlist_conf_size,
1518 zc->zc_iflags, &config)))
34dc7c2f
BB
1519 return (error);
1520
1521 if (zc->zc_nvlist_src_size != 0 && (error =
9babb374
BB
1522 get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
1523 zc->zc_iflags, &props))) {
34dc7c2f
BB
1524 nvlist_free(config);
1525 return (error);
1526 }
1527
b128c09f
BB
1528 if (props) {
1529 nvlist_t *nvl = NULL;
b5256303 1530 nvlist_t *hidden_args = NULL;
b128c09f 1531 uint64_t version = SPA_VERSION;
4ceb8dd6 1532 char *tname;
b128c09f
BB
1533
1534 (void) nvlist_lookup_uint64(props,
1535 zpool_prop_to_name(ZPOOL_PROP_VERSION), &version);
9ae529ec 1536 if (!SPA_VERSION_IS_SUPPORTED(version)) {
2e528b49 1537 error = SET_ERROR(EINVAL);
b128c09f
BB
1538 goto pool_props_bad;
1539 }
1540 (void) nvlist_lookup_nvlist(props, ZPOOL_ROOTFS_PROPS, &nvl);
1541 if (nvl) {
1542 error = nvlist_dup(nvl, &rootprops, KM_SLEEP);
1543 if (error != 0) {
1544 nvlist_free(config);
1545 nvlist_free(props);
1546 return (error);
1547 }
1548 (void) nvlist_remove_all(props, ZPOOL_ROOTFS_PROPS);
1549 }
b5256303
TC
1550
1551 (void) nvlist_lookup_nvlist(props, ZPOOL_HIDDEN_ARGS,
1552 &hidden_args);
1553 error = dsl_crypto_params_create_nvlist(DCP_CMD_NONE,
1554 rootprops, hidden_args, &dcp);
1555 if (error != 0) {
1556 nvlist_free(config);
1557 nvlist_free(props);
1558 return (error);
1559 }
1560 (void) nvlist_remove_all(props, ZPOOL_HIDDEN_ARGS);
1561
b128c09f
BB
1562 VERIFY(nvlist_alloc(&zplprops, NV_UNIQUE_NAME, KM_SLEEP) == 0);
1563 error = zfs_fill_zplprops_root(version, rootprops,
1564 zplprops, NULL);
13fe0198 1565 if (error != 0)
b128c09f 1566 goto pool_props_bad;
4ceb8dd6 1567
1568 if (nvlist_lookup_string(props,
1569 zpool_prop_to_name(ZPOOL_PROP_TNAME), &tname) == 0)
1570 spa_name = tname;
b128c09f
BB
1571 }
1572
b5256303 1573 error = spa_create(zc->zc_name, config, props, zplprops, dcp);
b128c09f
BB
1574
1575 /*
1576 * Set the remaining root properties
1577 */
4ceb8dd6 1578 if (!error && (error = zfs_set_prop_nvlist(spa_name,
428870ff 1579 ZPROP_SRC_LOCAL, rootprops, NULL)) != 0)
4ceb8dd6 1580 (void) spa_destroy(spa_name);
34dc7c2f 1581
b128c09f
BB
1582pool_props_bad:
1583 nvlist_free(rootprops);
1584 nvlist_free(zplprops);
34dc7c2f 1585 nvlist_free(config);
b128c09f 1586 nvlist_free(props);
b5256303 1587 dsl_crypto_params_free(dcp, !!error);
34dc7c2f
BB
1588
1589 return (error);
1590}
1591
1592static int
1593zfs_ioc_pool_destroy(zfs_cmd_t *zc)
1594{
1595 int error;
1596 zfs_log_history(zc);
1597 error = spa_destroy(zc->zc_name);
a0bd735a 1598
34dc7c2f
BB
1599 return (error);
1600}
1601
1602static int
1603zfs_ioc_pool_import(zfs_cmd_t *zc)
1604{
34dc7c2f
BB
1605 nvlist_t *config, *props = NULL;
1606 uint64_t guid;
428870ff 1607 int error;
34dc7c2f
BB
1608
1609 if ((error = get_nvlist(zc->zc_nvlist_conf, zc->zc_nvlist_conf_size,
9babb374 1610 zc->zc_iflags, &config)) != 0)
34dc7c2f
BB
1611 return (error);
1612
1613 if (zc->zc_nvlist_src_size != 0 && (error =
9babb374
BB
1614 get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
1615 zc->zc_iflags, &props))) {
34dc7c2f
BB
1616 nvlist_free(config);
1617 return (error);
1618 }
1619
1620 if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_GUID, &guid) != 0 ||
1621 guid != zc->zc_guid)
2e528b49 1622 error = SET_ERROR(EINVAL);
34dc7c2f 1623 else
572e2857 1624 error = spa_import(zc->zc_name, config, props, zc->zc_cookie);
34dc7c2f 1625
572e2857
BB
1626 if (zc->zc_nvlist_dst != 0) {
1627 int err;
1628
1629 if ((err = put_nvlist(zc, config)) != 0)
1630 error = err;
1631 }
428870ff 1632
34dc7c2f 1633 nvlist_free(config);
8a5fc748 1634 nvlist_free(props);
34dc7c2f
BB
1635
1636 return (error);
1637}
1638
1639static int
1640zfs_ioc_pool_export(zfs_cmd_t *zc)
1641{
1642 int error;
b128c09f 1643 boolean_t force = (boolean_t)zc->zc_cookie;
fb5f0bc8 1644 boolean_t hardforce = (boolean_t)zc->zc_guid;
b128c09f 1645
34dc7c2f 1646 zfs_log_history(zc);
fb5f0bc8 1647 error = spa_export(zc->zc_name, NULL, force, hardforce);
a0bd735a 1648
34dc7c2f
BB
1649 return (error);
1650}
1651
1652static int
1653zfs_ioc_pool_configs(zfs_cmd_t *zc)
1654{
1655 nvlist_t *configs;
1656 int error;
1657
1658 if ((configs = spa_all_configs(&zc->zc_cookie)) == NULL)
2e528b49 1659 return (SET_ERROR(EEXIST));
34dc7c2f
BB
1660
1661 error = put_nvlist(zc, configs);
1662
1663 nvlist_free(configs);
1664
1665 return (error);
1666}
1667
9ae529ec
CS
1668/*
1669 * inputs:
1670 * zc_name name of the pool
1671 *
1672 * outputs:
1673 * zc_cookie real errno
1674 * zc_nvlist_dst config nvlist
1675 * zc_nvlist_dst_size size of config nvlist
1676 */
34dc7c2f
BB
1677static int
1678zfs_ioc_pool_stats(zfs_cmd_t *zc)
1679{
1680 nvlist_t *config;
1681 int error;
1682 int ret = 0;
1683
1684 error = spa_get_stats(zc->zc_name, &config, zc->zc_value,
1685 sizeof (zc->zc_value));
1686
1687 if (config != NULL) {
1688 ret = put_nvlist(zc, config);
1689 nvlist_free(config);
1690
1691 /*
1692 * The config may be present even if 'error' is non-zero.
1693 * In this case we return success, and preserve the real errno
1694 * in 'zc_cookie'.
1695 */
1696 zc->zc_cookie = error;
1697 } else {
1698 ret = error;
1699 }
1700
1701 return (ret);
1702}
1703
1704/*
1705 * Try to import the given pool, returning pool stats as appropriate so that
1706 * user land knows which devices are available and overall pool health.
1707 */
1708static int
1709zfs_ioc_pool_tryimport(zfs_cmd_t *zc)
1710{
379ca9cf 1711 nvlist_t *tryconfig, *config = NULL;
34dc7c2f
BB
1712 int error;
1713
1714 if ((error = get_nvlist(zc->zc_nvlist_conf, zc->zc_nvlist_conf_size,
9babb374 1715 zc->zc_iflags, &tryconfig)) != 0)
34dc7c2f
BB
1716 return (error);
1717
1718 config = spa_tryimport(tryconfig);
1719
1720 nvlist_free(tryconfig);
1721
1722 if (config == NULL)
2e528b49 1723 return (SET_ERROR(EINVAL));
34dc7c2f
BB
1724
1725 error = put_nvlist(zc, config);
1726 nvlist_free(config);
1727
1728 return (error);
1729}
1730
428870ff
BB
1731/*
1732 * inputs:
1733 * zc_name name of the pool
1734 * zc_cookie scan func (pool_scan_func_t)
0ea05c64 1735 * zc_flags scrub pause/resume flag (pool_scrub_cmd_t)
428870ff 1736 */
34dc7c2f 1737static int
428870ff 1738zfs_ioc_pool_scan(zfs_cmd_t *zc)
34dc7c2f
BB
1739{
1740 spa_t *spa;
1741 int error;
1742
0ea05c64
AP
1743 if (zc->zc_flags >= POOL_SCRUB_FLAGS_END)
1744 return (SET_ERROR(EINVAL));
1745
1724eb62 1746 if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0)
1747 return (error);
1748
0ea05c64
AP
1749 if (zc->zc_flags == POOL_SCRUB_PAUSE)
1750 error = spa_scrub_pause_resume(spa, POOL_SCRUB_PAUSE);
1751 else if (zc->zc_cookie == POOL_SCAN_NONE)
428870ff
BB
1752 error = spa_scan_stop(spa);
1753 else
1754 error = spa_scan(spa, zc->zc_cookie);
34dc7c2f
BB
1755
1756 spa_close(spa, FTAG);
1757
1758 return (error);
1759}
1760
1761static int
1762zfs_ioc_pool_freeze(zfs_cmd_t *zc)
1763{
1764 spa_t *spa;
1765 int error;
1766
1767 error = spa_open(zc->zc_name, &spa, FTAG);
1768 if (error == 0) {
1769 spa_freeze(spa);
1770 spa_close(spa, FTAG);
1771 }
1772 return (error);
1773}
1774
1775static int
1776zfs_ioc_pool_upgrade(zfs_cmd_t *zc)
1777{
1778 spa_t *spa;
1779 int error;
1780
1781 if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0)
1782 return (error);
1783
9ae529ec
CS
1784 if (zc->zc_cookie < spa_version(spa) ||
1785 !SPA_VERSION_IS_SUPPORTED(zc->zc_cookie)) {
34dc7c2f 1786 spa_close(spa, FTAG);
2e528b49 1787 return (SET_ERROR(EINVAL));
34dc7c2f
BB
1788 }
1789
1790 spa_upgrade(spa, zc->zc_cookie);
1791 spa_close(spa, FTAG);
1792
1793 return (error);
1794}
1795
1796static int
1797zfs_ioc_pool_get_history(zfs_cmd_t *zc)
1798{
1799 spa_t *spa;
1800 char *hist_buf;
1801 uint64_t size;
1802 int error;
1803
1804 if ((size = zc->zc_history_len) == 0)
2e528b49 1805 return (SET_ERROR(EINVAL));
34dc7c2f
BB
1806
1807 if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0)
1808 return (error);
1809
1810 if (spa_version(spa) < SPA_VERSION_ZPOOL_HISTORY) {
1811 spa_close(spa, FTAG);
2e528b49 1812 return (SET_ERROR(ENOTSUP));
34dc7c2f
BB
1813 }
1814
34b84cb8 1815 hist_buf = vmem_alloc(size, KM_SLEEP);
34dc7c2f
BB
1816 if ((error = spa_history_get(spa, &zc->zc_history_offset,
1817 &zc->zc_history_len, hist_buf)) == 0) {
9babb374
BB
1818 error = ddi_copyout(hist_buf,
1819 (void *)(uintptr_t)zc->zc_history,
1820 zc->zc_history_len, zc->zc_iflags);
34dc7c2f
BB
1821 }
1822
1823 spa_close(spa, FTAG);
34b84cb8 1824 vmem_free(hist_buf, size);
34dc7c2f
BB
1825 return (error);
1826}
1827
3541dc6d
GA
1828static int
1829zfs_ioc_pool_reguid(zfs_cmd_t *zc)
1830{
1831 spa_t *spa;
1832 int error;
1833
1834 error = spa_open(zc->zc_name, &spa, FTAG);
1835 if (error == 0) {
1836 error = spa_change_guid(spa);
1837 spa_close(spa, FTAG);
1838 }
1839 return (error);
1840}
1841
34dc7c2f
BB
1842static int
1843zfs_ioc_dsobj_to_dsname(zfs_cmd_t *zc)
1844{
13fe0198 1845 return (dsl_dsobj_to_dsname(zc->zc_name, zc->zc_obj, zc->zc_value));
34dc7c2f
BB
1846}
1847
428870ff
BB
1848/*
1849 * inputs:
1850 * zc_name name of filesystem
1851 * zc_obj object to find
1852 *
1853 * outputs:
1854 * zc_value name of object
1855 */
34dc7c2f
BB
1856static int
1857zfs_ioc_obj_to_path(zfs_cmd_t *zc)
1858{
428870ff 1859 objset_t *os;
34dc7c2f
BB
1860 int error;
1861
428870ff 1862 /* XXX reading from objset not owned */
b5256303
TC
1863 if ((error = dmu_objset_hold_flags(zc->zc_name, B_TRUE,
1864 FTAG, &os)) != 0)
34dc7c2f 1865 return (error);
428870ff 1866 if (dmu_objset_type(os) != DMU_OST_ZFS) {
b5256303 1867 dmu_objset_rele_flags(os, B_TRUE, FTAG);
2e528b49 1868 return (SET_ERROR(EINVAL));
428870ff
BB
1869 }
1870 error = zfs_obj_to_path(os, zc->zc_obj, zc->zc_value,
34dc7c2f 1871 sizeof (zc->zc_value));
b5256303 1872 dmu_objset_rele_flags(os, B_TRUE, FTAG);
34dc7c2f
BB
1873
1874 return (error);
1875}
1876
572e2857
BB
1877/*
1878 * inputs:
1879 * zc_name name of filesystem
1880 * zc_obj object to find
1881 *
1882 * outputs:
1883 * zc_stat stats on object
1884 * zc_value path to object
1885 */
1886static int
1887zfs_ioc_obj_to_stats(zfs_cmd_t *zc)
1888{
1889 objset_t *os;
1890 int error;
1891
1892 /* XXX reading from objset not owned */
b5256303
TC
1893 if ((error = dmu_objset_hold_flags(zc->zc_name, B_TRUE,
1894 FTAG, &os)) != 0)
572e2857
BB
1895 return (error);
1896 if (dmu_objset_type(os) != DMU_OST_ZFS) {
b5256303 1897 dmu_objset_rele_flags(os, B_TRUE, FTAG);
2e528b49 1898 return (SET_ERROR(EINVAL));
572e2857
BB
1899 }
1900 error = zfs_obj_to_stats(os, zc->zc_obj, &zc->zc_stat, zc->zc_value,
1901 sizeof (zc->zc_value));
b5256303 1902 dmu_objset_rele_flags(os, B_TRUE, FTAG);
572e2857
BB
1903
1904 return (error);
1905}
1906
34dc7c2f
BB
1907static int
1908zfs_ioc_vdev_add(zfs_cmd_t *zc)
1909{
1910 spa_t *spa;
1911 int error;
64ad2b26 1912 nvlist_t *config;
34dc7c2f
BB
1913
1914 error = spa_open(zc->zc_name, &spa, FTAG);
1915 if (error != 0)
1916 return (error);
1917
1918 error = get_nvlist(zc->zc_nvlist_conf, zc->zc_nvlist_conf_size,
9babb374 1919 zc->zc_iflags, &config);
34dc7c2f
BB
1920 if (error == 0) {
1921 error = spa_vdev_add(spa, config);
1922 nvlist_free(config);
1923 }
1924 spa_close(spa, FTAG);
1925 return (error);
1926}
1927
428870ff
BB
1928/*
1929 * inputs:
1930 * zc_name name of the pool
a1d477c2
MA
1931 * zc_guid guid of vdev to remove
1932 * zc_cookie cancel removal
428870ff 1933 */
34dc7c2f
BB
1934static int
1935zfs_ioc_vdev_remove(zfs_cmd_t *zc)
1936{
1937 spa_t *spa;
1938 int error;
1939
1940 error = spa_open(zc->zc_name, &spa, FTAG);
1941 if (error != 0)
1942 return (error);
a1d477c2
MA
1943 if (zc->zc_cookie != 0) {
1944 error = spa_vdev_remove_cancel(spa);
1945 } else {
1946 error = spa_vdev_remove(spa, zc->zc_guid, B_FALSE);
1947 }
34dc7c2f
BB
1948 spa_close(spa, FTAG);
1949 return (error);
1950}
1951
1952static int
1953zfs_ioc_vdev_set_state(zfs_cmd_t *zc)
1954{
1955 spa_t *spa;
1956 int error;
1957 vdev_state_t newstate = VDEV_STATE_UNKNOWN;
1958
1959 if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0)
1960 return (error);
1961 switch (zc->zc_cookie) {
1962 case VDEV_STATE_ONLINE:
1963 error = vdev_online(spa, zc->zc_guid, zc->zc_obj, &newstate);
1964 break;
1965
1966 case VDEV_STATE_OFFLINE:
1967 error = vdev_offline(spa, zc->zc_guid, zc->zc_obj);
1968 break;
1969
1970 case VDEV_STATE_FAULTED:
428870ff 1971 if (zc->zc_obj != VDEV_AUX_ERR_EXCEEDED &&
4a283c7f
TH
1972 zc->zc_obj != VDEV_AUX_EXTERNAL &&
1973 zc->zc_obj != VDEV_AUX_EXTERNAL_PERSIST)
428870ff
BB
1974 zc->zc_obj = VDEV_AUX_ERR_EXCEEDED;
1975
1976 error = vdev_fault(spa, zc->zc_guid, zc->zc_obj);
34dc7c2f
BB
1977 break;
1978
1979 case VDEV_STATE_DEGRADED:
428870ff
BB
1980 if (zc->zc_obj != VDEV_AUX_ERR_EXCEEDED &&
1981 zc->zc_obj != VDEV_AUX_EXTERNAL)
1982 zc->zc_obj = VDEV_AUX_ERR_EXCEEDED;
1983
1984 error = vdev_degrade(spa, zc->zc_guid, zc->zc_obj);
34dc7c2f
BB
1985 break;
1986
1987 default:
2e528b49 1988 error = SET_ERROR(EINVAL);
34dc7c2f
BB
1989 }
1990 zc->zc_cookie = newstate;
1991 spa_close(spa, FTAG);
1992 return (error);
1993}
1994
1995static int
1996zfs_ioc_vdev_attach(zfs_cmd_t *zc)
1997{
1998 spa_t *spa;
1999 int replacing = zc->zc_cookie;
2000 nvlist_t *config;
2001 int error;
2002
2003 if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0)
2004 return (error);
2005
2006 if ((error = get_nvlist(zc->zc_nvlist_conf, zc->zc_nvlist_conf_size,
9babb374 2007 zc->zc_iflags, &config)) == 0) {
34dc7c2f
BB
2008 error = spa_vdev_attach(spa, zc->zc_guid, config, replacing);
2009 nvlist_free(config);
2010 }
2011
2012 spa_close(spa, FTAG);
2013 return (error);
2014}
2015
2016static int
2017zfs_ioc_vdev_detach(zfs_cmd_t *zc)
2018{
2019 spa_t *spa;
2020 int error;
2021
2022 if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0)
2023 return (error);
2024
fb5f0bc8 2025 error = spa_vdev_detach(spa, zc->zc_guid, 0, B_FALSE);
34dc7c2f
BB
2026
2027 spa_close(spa, FTAG);
2028 return (error);
2029}
2030
428870ff
BB
2031static int
2032zfs_ioc_vdev_split(zfs_cmd_t *zc)
2033{
2034 spa_t *spa;
2035 nvlist_t *config, *props = NULL;
2036 int error;
2037 boolean_t exp = !!(zc->zc_cookie & ZPOOL_EXPORT_AFTER_SPLIT);
2038
2039 if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0)
2040 return (error);
2041
c65aa5b2
BB
2042 if ((error = get_nvlist(zc->zc_nvlist_conf, zc->zc_nvlist_conf_size,
2043 zc->zc_iflags, &config))) {
428870ff
BB
2044 spa_close(spa, FTAG);
2045 return (error);
2046 }
2047
2048 if (zc->zc_nvlist_src_size != 0 && (error =
2049 get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
2050 zc->zc_iflags, &props))) {
2051 spa_close(spa, FTAG);
2052 nvlist_free(config);
2053 return (error);
2054 }
2055
2056 error = spa_vdev_split_mirror(spa, zc->zc_string, config, props, exp);
2057
2058 spa_close(spa, FTAG);
2059
2060 nvlist_free(config);
2061 nvlist_free(props);
2062
2063 return (error);
2064}
2065
34dc7c2f
BB
2066static int
2067zfs_ioc_vdev_setpath(zfs_cmd_t *zc)
2068{
2069 spa_t *spa;
2070 char *path = zc->zc_value;
2071 uint64_t guid = zc->zc_guid;
2072 int error;
2073
2074 error = spa_open(zc->zc_name, &spa, FTAG);
2075 if (error != 0)
2076 return (error);
2077
2078 error = spa_vdev_setpath(spa, guid, path);
2079 spa_close(spa, FTAG);
2080 return (error);
2081}
2082
9babb374
BB
2083static int
2084zfs_ioc_vdev_setfru(zfs_cmd_t *zc)
2085{
2086 spa_t *spa;
2087 char *fru = zc->zc_value;
2088 uint64_t guid = zc->zc_guid;
2089 int error;
2090
2091 error = spa_open(zc->zc_name, &spa, FTAG);
2092 if (error != 0)
2093 return (error);
2094
2095 error = spa_vdev_setfru(spa, guid, fru);
2096 spa_close(spa, FTAG);
2097 return (error);
2098}
2099
34dc7c2f 2100static int
572e2857 2101zfs_ioc_objset_stats_impl(zfs_cmd_t *zc, objset_t *os)
34dc7c2f 2102{
572e2857 2103 int error = 0;
34dc7c2f
BB
2104 nvlist_t *nv;
2105
34dc7c2f
BB
2106 dmu_objset_fast_stat(os, &zc->zc_objset_stats);
2107
2108 if (zc->zc_nvlist_dst != 0 &&
428870ff 2109 (error = dsl_prop_get_all(os, &nv)) == 0) {
34dc7c2f
BB
2110 dmu_objset_stats(os, nv);
2111 /*
2112 * NB: zvol_get_stats() will read the objset contents,
2113 * which we aren't supposed to do with a
b128c09f 2114 * DS_MODE_USER hold, because it could be
34dc7c2f 2115 * inconsistent. So this is a bit of a workaround...
428870ff 2116 * XXX reading with out owning
34dc7c2f 2117 */
330d06f9
MA
2118 if (!zc->zc_objset_stats.dds_inconsistent &&
2119 dmu_objset_type(os) == DMU_OST_ZVOL) {
2120 error = zvol_get_stats(os, nv);
6d421005
B
2121 if (error == EIO) {
2122 nvlist_free(nv);
330d06f9 2123 return (error);
6d421005 2124 }
c99c9001 2125 VERIFY0(error);
34dc7c2f 2126 }
8a8f5c6b
BB
2127 if (error == 0)
2128 error = put_nvlist(zc, nv);
34dc7c2f
BB
2129 nvlist_free(nv);
2130 }
2131
572e2857
BB
2132 return (error);
2133}
2134
2135/*
2136 * inputs:
2137 * zc_name name of filesystem
2138 * zc_nvlist_dst_size size of buffer for property nvlist
2139 *
2140 * outputs:
2141 * zc_objset_stats stats
2142 * zc_nvlist_dst property nvlist
2143 * zc_nvlist_dst_size size of property nvlist
2144 */
2145static int
2146zfs_ioc_objset_stats(zfs_cmd_t *zc)
2147{
13fe0198 2148 objset_t *os;
572e2857
BB
2149 int error;
2150
13fe0198
MA
2151 error = dmu_objset_hold(zc->zc_name, FTAG, &os);
2152 if (error == 0) {
2153 error = zfs_ioc_objset_stats_impl(zc, os);
2154 dmu_objset_rele(os, FTAG);
2155 }
572e2857 2156
428870ff
BB
2157 return (error);
2158}
2159
2160/*
2161 * inputs:
2162 * zc_name name of filesystem
2163 * zc_nvlist_dst_size size of buffer for property nvlist
2164 *
2165 * outputs:
2166 * zc_nvlist_dst received property nvlist
2167 * zc_nvlist_dst_size size of received property nvlist
2168 *
2169 * Gets received properties (distinct from local properties on or after
2170 * SPA_VERSION_RECVD_PROPS) for callers who want to differentiate received from
2171 * local property values.
2172 */
2173static int
26685276 2174zfs_ioc_objset_recvd_props(zfs_cmd_t *zc)
428870ff 2175{
13fe0198 2176 int error = 0;
428870ff
BB
2177 nvlist_t *nv;
2178
428870ff
BB
2179 /*
2180 * Without this check, we would return local property values if the
2181 * caller has not already received properties on or after
2182 * SPA_VERSION_RECVD_PROPS.
2183 */
13fe0198 2184 if (!dsl_prop_get_hasrecvd(zc->zc_name))
2e528b49 2185 return (SET_ERROR(ENOTSUP));
428870ff
BB
2186
2187 if (zc->zc_nvlist_dst != 0 &&
13fe0198 2188 (error = dsl_prop_get_received(zc->zc_name, &nv)) == 0) {
428870ff
BB
2189 error = put_nvlist(zc, nv);
2190 nvlist_free(nv);
2191 }
2192
34dc7c2f
BB
2193 return (error);
2194}
2195
2196static int
2197nvl_add_zplprop(objset_t *os, nvlist_t *props, zfs_prop_t prop)
2198{
2199 uint64_t value;
2200 int error;
2201
2202 /*
2203 * zfs_get_zplprop() will either find a value or give us
2204 * the default value (if there is one).
2205 */
2206 if ((error = zfs_get_zplprop(os, prop, &value)) != 0)
2207 return (error);
2208 VERIFY(nvlist_add_uint64(props, zfs_prop_to_name(prop), value) == 0);
2209 return (0);
2210}
2211
2212/*
2213 * inputs:
2214 * zc_name name of filesystem
2215 * zc_nvlist_dst_size size of buffer for zpl property nvlist
2216 *
2217 * outputs:
2218 * zc_nvlist_dst zpl property nvlist
2219 * zc_nvlist_dst_size size of zpl property nvlist
2220 */
2221static int
2222zfs_ioc_objset_zplprops(zfs_cmd_t *zc)
2223{
2224 objset_t *os;
2225 int err;
2226
428870ff 2227 /* XXX reading without owning */
c65aa5b2 2228 if ((err = dmu_objset_hold(zc->zc_name, FTAG, &os)))
34dc7c2f
BB
2229 return (err);
2230
2231 dmu_objset_fast_stat(os, &zc->zc_objset_stats);
2232
2233 /*
2234 * NB: nvl_add_zplprop() will read the objset contents,
b128c09f
BB
2235 * which we aren't supposed to do with a DS_MODE_USER
2236 * hold, because it could be inconsistent.
34dc7c2f 2237 */
b8864a23 2238 if (zc->zc_nvlist_dst != 0 &&
34dc7c2f
BB
2239 !zc->zc_objset_stats.dds_inconsistent &&
2240 dmu_objset_type(os) == DMU_OST_ZFS) {
2241 nvlist_t *nv;
2242
2243 VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0);
2244 if ((err = nvl_add_zplprop(os, nv, ZFS_PROP_VERSION)) == 0 &&
2245 (err = nvl_add_zplprop(os, nv, ZFS_PROP_NORMALIZE)) == 0 &&
2246 (err = nvl_add_zplprop(os, nv, ZFS_PROP_UTF8ONLY)) == 0 &&
2247 (err = nvl_add_zplprop(os, nv, ZFS_PROP_CASE)) == 0)
2248 err = put_nvlist(zc, nv);
2249 nvlist_free(nv);
2250 } else {
2e528b49 2251 err = SET_ERROR(ENOENT);
34dc7c2f 2252 }
428870ff 2253 dmu_objset_rele(os, FTAG);
34dc7c2f
BB
2254 return (err);
2255}
2256
2257/*
2258 * inputs:
2259 * zc_name name of filesystem
2260 * zc_cookie zap cursor
2261 * zc_nvlist_dst_size size of buffer for property nvlist
2262 *
2263 * outputs:
2264 * zc_name name of next filesystem
9babb374 2265 * zc_cookie zap cursor
34dc7c2f
BB
2266 * zc_objset_stats stats
2267 * zc_nvlist_dst property nvlist
2268 * zc_nvlist_dst_size size of property nvlist
34dc7c2f
BB
2269 */
2270static int
2271zfs_ioc_dataset_list_next(zfs_cmd_t *zc)
2272{
2273 objset_t *os;
2274 int error;
2275 char *p;
428870ff 2276 size_t orig_len = strlen(zc->zc_name);
34dc7c2f 2277
428870ff 2278top:
c65aa5b2 2279 if ((error = dmu_objset_hold(zc->zc_name, FTAG, &os))) {
34dc7c2f 2280 if (error == ENOENT)
2e528b49 2281 error = SET_ERROR(ESRCH);
34dc7c2f
BB
2282 return (error);
2283 }
2284
2285 p = strrchr(zc->zc_name, '/');
2286 if (p == NULL || p[1] != '\0')
2287 (void) strlcat(zc->zc_name, "/", sizeof (zc->zc_name));
2288 p = zc->zc_name + strlen(zc->zc_name);
2289
2290 do {
2291 error = dmu_dir_list_next(os,
2292 sizeof (zc->zc_name) - (p - zc->zc_name), p,
2293 NULL, &zc->zc_cookie);
2294 if (error == ENOENT)
2e528b49 2295 error = SET_ERROR(ESRCH);
2e5dc449 2296 } while (error == 0 && zfs_dataset_name_hidden(zc->zc_name));
428870ff 2297 dmu_objset_rele(os, FTAG);
34dc7c2f 2298
428870ff
BB
2299 /*
2300 * If it's an internal dataset (ie. with a '$' in its name),
2301 * don't try to get stats for it, otherwise we'll return ENOENT.
2302 */
2303 if (error == 0 && strchr(zc->zc_name, '$') == NULL) {
34dc7c2f 2304 error = zfs_ioc_objset_stats(zc); /* fill in the stats */
428870ff
BB
2305 if (error == ENOENT) {
2306 /* We lost a race with destroy, get the next one. */
2307 zc->zc_name[orig_len] = '\0';
2308 goto top;
2309 }
2310 }
34dc7c2f
BB
2311 return (error);
2312}
2313
2314/*
2315 * inputs:
2316 * zc_name name of filesystem
2317 * zc_cookie zap cursor
2318 * zc_nvlist_dst_size size of buffer for property nvlist
2319 *
2320 * outputs:
2321 * zc_name name of next snapshot
2322 * zc_objset_stats stats
2323 * zc_nvlist_dst property nvlist
2324 * zc_nvlist_dst_size size of property nvlist
34dc7c2f
BB
2325 */
2326static int
2327zfs_ioc_snapshot_list_next(zfs_cmd_t *zc)
2328{
2329 objset_t *os;
2330 int error;
2331
428870ff 2332 error = dmu_objset_hold(zc->zc_name, FTAG, &os);
13fe0198 2333 if (error != 0) {
b128c09f 2334 return (error == ENOENT ? ESRCH : error);
13fe0198 2335 }
34dc7c2f
BB
2336
2337 /*
2338 * A dataset name of maximum length cannot have any snapshots,
2339 * so exit immediately.
2340 */
eca7b760
IK
2341 if (strlcat(zc->zc_name, "@", sizeof (zc->zc_name)) >=
2342 ZFS_MAX_DATASET_NAME_LEN) {
428870ff 2343 dmu_objset_rele(os, FTAG);
2e528b49 2344 return (SET_ERROR(ESRCH));
34dc7c2f
BB
2345 }
2346
2347 error = dmu_snapshot_list_next(os,
2348 sizeof (zc->zc_name) - strlen(zc->zc_name),
572e2857
BB
2349 zc->zc_name + strlen(zc->zc_name), &zc->zc_obj, &zc->zc_cookie,
2350 NULL);
2351
0cee2406 2352 if (error == 0 && !zc->zc_simple) {
572e2857
BB
2353 dsl_dataset_t *ds;
2354 dsl_pool_t *dp = os->os_dsl_dataset->ds_dir->dd_pool;
2355
572e2857 2356 error = dsl_dataset_hold_obj(dp, zc->zc_obj, FTAG, &ds);
13fe0198 2357 if (error == 0) {
572e2857
BB
2358 objset_t *ossnap;
2359
2360 error = dmu_objset_from_ds(ds, &ossnap);
2361 if (error == 0)
2362 error = zfs_ioc_objset_stats_impl(zc, ossnap);
2363 dsl_dataset_rele(ds, FTAG);
428870ff
BB
2364 }
2365 } else if (error == ENOENT) {
2e528b49 2366 error = SET_ERROR(ESRCH);
428870ff 2367 }
34dc7c2f 2368
572e2857 2369 dmu_objset_rele(os, FTAG);
34dc7c2f 2370 /* if we failed, undo the @ that we tacked on to zc_name */
13fe0198 2371 if (error != 0)
34dc7c2f 2372 *strchr(zc->zc_name, '@') = '\0';
34dc7c2f
BB
2373 return (error);
2374}
2375
428870ff
BB
2376static int
2377zfs_prop_set_userquota(const char *dsname, nvpair_t *pair)
34dc7c2f 2378{
428870ff
BB
2379 const char *propname = nvpair_name(pair);
2380 uint64_t *valary;
2381 unsigned int vallen;
2382 const char *domain;
2383 char *dash;
2384 zfs_userquota_prop_t type;
2385 uint64_t rid;
2386 uint64_t quota;
0037b49e 2387 zfsvfs_t *zfsvfs;
428870ff
BB
2388 int err;
2389
2390 if (nvpair_type(pair) == DATA_TYPE_NVLIST) {
2391 nvlist_t *attrs;
2392 VERIFY(nvpair_value_nvlist(pair, &attrs) == 0);
2393 if (nvlist_lookup_nvpair(attrs, ZPROP_VALUE,
2394 &pair) != 0)
2e528b49 2395 return (SET_ERROR(EINVAL));
428870ff 2396 }
34dc7c2f
BB
2397
2398 /*
428870ff
BB
2399 * A correctly constructed propname is encoded as
2400 * userquota@<rid>-<domain>.
34dc7c2f 2401 */
428870ff
BB
2402 if ((dash = strchr(propname, '-')) == NULL ||
2403 nvpair_value_uint64_array(pair, &valary, &vallen) != 0 ||
2404 vallen != 3)
2e528b49 2405 return (SET_ERROR(EINVAL));
34dc7c2f 2406
428870ff
BB
2407 domain = dash + 1;
2408 type = valary[0];
2409 rid = valary[1];
2410 quota = valary[2];
34dc7c2f 2411
f298b24d 2412 err = zfsvfs_hold(dsname, FTAG, &zfsvfs, B_FALSE);
428870ff 2413 if (err == 0) {
0037b49e 2414 err = zfs_set_userquota(zfsvfs, type, domain, rid, quota);
f298b24d 2415 zfsvfs_rele(zfsvfs, FTAG);
428870ff 2416 }
9babb374 2417
428870ff
BB
2418 return (err);
2419}
34dc7c2f 2420
428870ff
BB
2421/*
2422 * If the named property is one that has a special function to set its value,
2423 * return 0 on success and a positive error code on failure; otherwise if it is
2424 * not one of the special properties handled by this function, return -1.
2425 *
2426 * XXX: It would be better for callers of the property interface if we handled
2427 * these special cases in dsl_prop.c (in the dsl layer).
2428 */
2429static int
2430zfs_prop_set_special(const char *dsname, zprop_source_t source,
2431 nvpair_t *pair)
2432{
2433 const char *propname = nvpair_name(pair);
2434 zfs_prop_t prop = zfs_name_to_prop(propname);
b5256303
TC
2435 uint64_t intval = 0;
2436 char *strval = NULL;
f1512ee6 2437 int err = -1;
9babb374 2438
428870ff
BB
2439 if (prop == ZPROP_INVAL) {
2440 if (zfs_prop_userquota(propname))
2441 return (zfs_prop_set_userquota(dsname, pair));
2442 return (-1);
2443 }
34dc7c2f 2444
428870ff
BB
2445 if (nvpair_type(pair) == DATA_TYPE_NVLIST) {
2446 nvlist_t *attrs;
2447 VERIFY(nvpair_value_nvlist(pair, &attrs) == 0);
2448 VERIFY(nvlist_lookup_nvpair(attrs, ZPROP_VALUE,
2449 &pair) == 0);
2450 }
b128c09f 2451
b5256303
TC
2452 /* all special properties are numeric except for keylocation */
2453 if (zfs_prop_get_type(prop) == PROP_TYPE_STRING) {
2454 strval = fnvpair_value_string(pair);
2455 } else {
2456 intval = fnvpair_value_uint64(pair);
2457 }
34dc7c2f 2458
428870ff
BB
2459 switch (prop) {
2460 case ZFS_PROP_QUOTA:
2461 err = dsl_dir_set_quota(dsname, source, intval);
2462 break;
2463 case ZFS_PROP_REFQUOTA:
13fe0198 2464 err = dsl_dataset_set_refquota(dsname, source, intval);
428870ff 2465 break;
788eb90c
JJ
2466 case ZFS_PROP_FILESYSTEM_LIMIT:
2467 case ZFS_PROP_SNAPSHOT_LIMIT:
2468 if (intval == UINT64_MAX) {
2469 /* clearing the limit, just do it */
2470 err = 0;
2471 } else {
2472 err = dsl_dir_activate_fs_ss_limit(dsname);
2473 }
b5256303
TC
2474 /*
2475 * Set err to -1 to force the zfs_set_prop_nvlist code down the
2476 * default path to set the value in the nvlist.
2477 */
2478 if (err == 0)
2479 err = -1;
2480 break;
2481 case ZFS_PROP_KEYLOCATION:
2482 err = dsl_crypto_can_set_keylocation(dsname, strval);
2483
788eb90c
JJ
2484 /*
2485 * Set err to -1 to force the zfs_set_prop_nvlist code down the
2486 * default path to set the value in the nvlist.
2487 */
2488 if (err == 0)
2489 err = -1;
2490 break;
428870ff
BB
2491 case ZFS_PROP_RESERVATION:
2492 err = dsl_dir_set_reservation(dsname, source, intval);
2493 break;
2494 case ZFS_PROP_REFRESERVATION:
13fe0198 2495 err = dsl_dataset_set_refreservation(dsname, source, intval);
428870ff
BB
2496 break;
2497 case ZFS_PROP_VOLSIZE:
60101509 2498 err = zvol_set_volsize(dsname, intval);
428870ff 2499 break;
0b4d1b58 2500 case ZFS_PROP_SNAPDEV:
a0bd735a 2501 err = zvol_set_snapdev(dsname, source, intval);
0b4d1b58 2502 break;
cf8738d8 2503 case ZFS_PROP_VOLMODE:
2504 err = zvol_set_volmode(dsname, source, intval);
2505 break;
428870ff
BB
2506 case ZFS_PROP_VERSION:
2507 {
0037b49e 2508 zfsvfs_t *zfsvfs;
428870ff 2509
f298b24d 2510 if ((err = zfsvfs_hold(dsname, FTAG, &zfsvfs, B_TRUE)) != 0)
34dc7c2f 2511 break;
b128c09f 2512
0037b49e 2513 err = zfs_set_version(zfsvfs, intval);
f298b24d 2514 zfsvfs_rele(zfsvfs, FTAG);
34dc7c2f 2515
428870ff
BB
2516 if (err == 0 && intval >= ZPL_VERSION_USERSPACE) {
2517 zfs_cmd_t *zc;
34dc7c2f 2518
efcd79a8 2519 zc = kmem_zalloc(sizeof (zfs_cmd_t), KM_SLEEP);
428870ff
BB
2520 (void) strcpy(zc->zc_name, dsname);
2521 (void) zfs_ioc_userspace_upgrade(zc);
9c5167d1 2522 (void) zfs_ioc_id_quota_upgrade(zc);
428870ff 2523 kmem_free(zc, sizeof (zfs_cmd_t));
34dc7c2f 2524 }
428870ff
BB
2525 break;
2526 }
428870ff
BB
2527 default:
2528 err = -1;
2529 }
34dc7c2f 2530
428870ff
BB
2531 return (err);
2532}
34dc7c2f 2533
428870ff
BB
2534/*
2535 * This function is best effort. If it fails to set any of the given properties,
6f1ffb06
MA
2536 * it continues to set as many as it can and returns the last error
2537 * encountered. If the caller provides a non-NULL errlist, it will be filled in
2538 * with the list of names of all the properties that failed along with the
2539 * corresponding error numbers.
428870ff 2540 *
6f1ffb06
MA
2541 * If every property is set successfully, zero is returned and errlist is not
2542 * modified.
428870ff
BB
2543 */
2544int
2545zfs_set_prop_nvlist(const char *dsname, zprop_source_t source, nvlist_t *nvl,
6f1ffb06 2546 nvlist_t *errlist)
428870ff
BB
2547{
2548 nvpair_t *pair;
2549 nvpair_t *propval;
2550 int rv = 0;
2551 uint64_t intval;
2552 char *strval;
34dc7c2f 2553
6f1ffb06
MA
2554 nvlist_t *genericnvl = fnvlist_alloc();
2555 nvlist_t *retrynvl = fnvlist_alloc();
428870ff
BB
2556retry:
2557 pair = NULL;
2558 while ((pair = nvlist_next_nvpair(nvl, pair)) != NULL) {
2559 const char *propname = nvpair_name(pair);
2560 zfs_prop_t prop = zfs_name_to_prop(propname);
2561 int err = 0;
2562
2563 /* decode the property value */
2564 propval = pair;
2565 if (nvpair_type(pair) == DATA_TYPE_NVLIST) {
2566 nvlist_t *attrs;
6f1ffb06 2567 attrs = fnvpair_value_nvlist(pair);
428870ff
BB
2568 if (nvlist_lookup_nvpair(attrs, ZPROP_VALUE,
2569 &propval) != 0)
2e528b49 2570 err = SET_ERROR(EINVAL);
9babb374 2571 }
34dc7c2f 2572
428870ff 2573 /* Validate value type */
a3eeab2d 2574 if (err == 0 && source == ZPROP_SRC_INHERITED) {
2575 /* inherited properties are expected to be booleans */
2576 if (nvpair_type(propval) != DATA_TYPE_BOOLEAN)
2577 err = SET_ERROR(EINVAL);
2578 } else if (err == 0 && prop == ZPROP_INVAL) {
428870ff
BB
2579 if (zfs_prop_user(propname)) {
2580 if (nvpair_type(propval) != DATA_TYPE_STRING)
2e528b49 2581 err = SET_ERROR(EINVAL);
428870ff
BB
2582 } else if (zfs_prop_userquota(propname)) {
2583 if (nvpair_type(propval) !=
2584 DATA_TYPE_UINT64_ARRAY)
2e528b49 2585 err = SET_ERROR(EINVAL);
330d06f9 2586 } else {
2e528b49 2587 err = SET_ERROR(EINVAL);
428870ff
BB
2588 }
2589 } else if (err == 0) {
2590 if (nvpair_type(propval) == DATA_TYPE_STRING) {
2591 if (zfs_prop_get_type(prop) != PROP_TYPE_STRING)
2e528b49 2592 err = SET_ERROR(EINVAL);
428870ff 2593 } else if (nvpair_type(propval) == DATA_TYPE_UINT64) {
34dc7c2f
BB
2594 const char *unused;
2595
6f1ffb06 2596 intval = fnvpair_value_uint64(propval);
34dc7c2f
BB
2597
2598 switch (zfs_prop_get_type(prop)) {
2599 case PROP_TYPE_NUMBER:
2600 break;
2601 case PROP_TYPE_STRING:
2e528b49 2602 err = SET_ERROR(EINVAL);
428870ff 2603 break;
34dc7c2f
BB
2604 case PROP_TYPE_INDEX:
2605 if (zfs_prop_index_to_string(prop,
428870ff 2606 intval, &unused) != 0)
2e528b49 2607 err = SET_ERROR(EINVAL);
34dc7c2f
BB
2608 break;
2609 default:
2610 cmn_err(CE_PANIC,
2611 "unknown property type");
34dc7c2f 2612 }
34dc7c2f 2613 } else {
2e528b49 2614 err = SET_ERROR(EINVAL);
34dc7c2f 2615 }
34dc7c2f 2616 }
428870ff
BB
2617
2618 /* Validate permissions */
2619 if (err == 0)
2620 err = zfs_check_settable(dsname, pair, CRED());
2621
2622 if (err == 0) {
a3eeab2d 2623 if (source == ZPROP_SRC_INHERITED)
2624 err = -1; /* does not need special handling */
2625 else
2626 err = zfs_prop_set_special(dsname, source,
2627 pair);
428870ff
BB
2628 if (err == -1) {
2629 /*
2630 * For better performance we build up a list of
2631 * properties to set in a single transaction.
2632 */
2633 err = nvlist_add_nvpair(genericnvl, pair);
2634 } else if (err != 0 && nvl != retrynvl) {
2635 /*
2636 * This may be a spurious error caused by
2637 * receiving quota and reservation out of order.
2638 * Try again in a second pass.
2639 */
2640 err = nvlist_add_nvpair(retrynvl, pair);
2641 }
2642 }
2643
6f1ffb06
MA
2644 if (err != 0) {
2645 if (errlist != NULL)
2646 fnvlist_add_int32(errlist, propname, err);
2647 rv = err;
2648 }
34dc7c2f
BB
2649 }
2650
428870ff
BB
2651 if (nvl != retrynvl && !nvlist_empty(retrynvl)) {
2652 nvl = retrynvl;
2653 goto retry;
2654 }
2655
2656 if (!nvlist_empty(genericnvl) &&
2657 dsl_props_set(dsname, source, genericnvl) != 0) {
2658 /*
2659 * If this fails, we still want to set as many properties as we
2660 * can, so try setting them individually.
2661 */
2662 pair = NULL;
2663 while ((pair = nvlist_next_nvpair(genericnvl, pair)) != NULL) {
2664 const char *propname = nvpair_name(pair);
2665 int err = 0;
2666
2667 propval = pair;
2668 if (nvpair_type(pair) == DATA_TYPE_NVLIST) {
2669 nvlist_t *attrs;
6f1ffb06
MA
2670 attrs = fnvpair_value_nvlist(pair);
2671 propval = fnvlist_lookup_nvpair(attrs,
2672 ZPROP_VALUE);
428870ff
BB
2673 }
2674
2675 if (nvpair_type(propval) == DATA_TYPE_STRING) {
6f1ffb06 2676 strval = fnvpair_value_string(propval);
13fe0198
MA
2677 err = dsl_prop_set_string(dsname, propname,
2678 source, strval);
a3eeab2d 2679 } else if (nvpair_type(propval) == DATA_TYPE_BOOLEAN) {
2680 err = dsl_prop_inherit(dsname, propname,
2681 source);
428870ff 2682 } else {
6f1ffb06 2683 intval = fnvpair_value_uint64(propval);
13fe0198
MA
2684 err = dsl_prop_set_int(dsname, propname, source,
2685 intval);
428870ff
BB
2686 }
2687
2688 if (err != 0) {
6f1ffb06
MA
2689 if (errlist != NULL) {
2690 fnvlist_add_int32(errlist, propname,
2691 err);
2692 }
2693 rv = err;
428870ff
BB
2694 }
2695 }
9babb374 2696 }
9babb374 2697 nvlist_free(genericnvl);
428870ff
BB
2698 nvlist_free(retrynvl);
2699
428870ff 2700 return (rv);
9babb374
BB
2701}
2702
2703/*
2704 * Check that all the properties are valid user properties.
2705 */
2706static int
6f1ffb06 2707zfs_check_userprops(const char *fsname, nvlist_t *nvl)
9babb374 2708{
428870ff 2709 nvpair_t *pair = NULL;
9babb374
BB
2710 int error = 0;
2711
428870ff
BB
2712 while ((pair = nvlist_next_nvpair(nvl, pair)) != NULL) {
2713 const char *propname = nvpair_name(pair);
9babb374
BB
2714
2715 if (!zfs_prop_user(propname) ||
428870ff 2716 nvpair_type(pair) != DATA_TYPE_STRING)
2e528b49 2717 return (SET_ERROR(EINVAL));
9babb374 2718
c65aa5b2
BB
2719 if ((error = zfs_secpolicy_write_perms(fsname,
2720 ZFS_DELEG_PERM_USERPROP, CRED())))
9babb374
BB
2721 return (error);
2722
2723 if (strlen(propname) >= ZAP_MAXNAMELEN)
2e528b49 2724 return (SET_ERROR(ENAMETOOLONG));
9babb374 2725
da536844 2726 if (strlen(fnvpair_value_string(pair)) >= ZAP_MAXVALUELEN)
2e528b49 2727 return (SET_ERROR(E2BIG));
9babb374 2728 }
34dc7c2f
BB
2729 return (0);
2730}
2731
428870ff
BB
2732static void
2733props_skip(nvlist_t *props, nvlist_t *skipped, nvlist_t **newprops)
2734{
2735 nvpair_t *pair;
2736
2737 VERIFY(nvlist_alloc(newprops, NV_UNIQUE_NAME, KM_SLEEP) == 0);
2738
2739 pair = NULL;
2740 while ((pair = nvlist_next_nvpair(props, pair)) != NULL) {
2741 if (nvlist_exists(skipped, nvpair_name(pair)))
2742 continue;
2743
2744 VERIFY(nvlist_add_nvpair(*newprops, pair) == 0);
2745 }
2746}
2747
2748static int
13fe0198 2749clear_received_props(const char *dsname, nvlist_t *props,
428870ff
BB
2750 nvlist_t *skipped)
2751{
2752 int err = 0;
2753 nvlist_t *cleared_props = NULL;
2754 props_skip(props, skipped, &cleared_props);
2755 if (!nvlist_empty(cleared_props)) {
2756 /*
2757 * Acts on local properties until the dataset has received
2758 * properties at least once on or after SPA_VERSION_RECVD_PROPS.
2759 */
2760 zprop_source_t flags = (ZPROP_SRC_NONE |
13fe0198
MA
2761 (dsl_prop_get_hasrecvd(dsname) ? ZPROP_SRC_RECEIVED : 0));
2762 err = zfs_set_prop_nvlist(dsname, flags, cleared_props, NULL);
428870ff
BB
2763 }
2764 nvlist_free(cleared_props);
2765 return (err);
2766}
2767
34dc7c2f
BB
2768/*
2769 * inputs:
2770 * zc_name name of filesystem
9babb374 2771 * zc_value name of property to set
34dc7c2f 2772 * zc_nvlist_src{_size} nvlist of properties to apply
428870ff 2773 * zc_cookie received properties flag
34dc7c2f 2774 *
428870ff
BB
2775 * outputs:
2776 * zc_nvlist_dst{_size} error for each unapplied received property
34dc7c2f
BB
2777 */
2778static int
2779zfs_ioc_set_prop(zfs_cmd_t *zc)
2780{
2781 nvlist_t *nvl;
428870ff
BB
2782 boolean_t received = zc->zc_cookie;
2783 zprop_source_t source = (received ? ZPROP_SRC_RECEIVED :
2784 ZPROP_SRC_LOCAL);
6f1ffb06 2785 nvlist_t *errors;
34dc7c2f
BB
2786 int error;
2787
2788 if ((error = get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
9babb374 2789 zc->zc_iflags, &nvl)) != 0)
34dc7c2f
BB
2790 return (error);
2791
428870ff 2792 if (received) {
b128c09f 2793 nvlist_t *origprops;
b128c09f 2794
13fe0198
MA
2795 if (dsl_prop_get_received(zc->zc_name, &origprops) == 0) {
2796 (void) clear_received_props(zc->zc_name,
2797 origprops, nvl);
2798 nvlist_free(origprops);
428870ff 2799 }
13fe0198
MA
2800
2801 error = dsl_prop_set_hasrecvd(zc->zc_name);
b128c09f
BB
2802 }
2803
6f1ffb06 2804 errors = fnvlist_alloc();
13fe0198
MA
2805 if (error == 0)
2806 error = zfs_set_prop_nvlist(zc->zc_name, source, nvl, errors);
34dc7c2f 2807
b8864a23 2808 if (zc->zc_nvlist_dst != 0 && errors != NULL) {
428870ff
BB
2809 (void) put_nvlist(zc, errors);
2810 }
2811
2812 nvlist_free(errors);
34dc7c2f
BB
2813 nvlist_free(nvl);
2814 return (error);
2815}
2816
2817/*
2818 * inputs:
2819 * zc_name name of filesystem
2820 * zc_value name of property to inherit
428870ff 2821 * zc_cookie revert to received value if TRUE
34dc7c2f
BB
2822 *
2823 * outputs: none
2824 */
2825static int
2826zfs_ioc_inherit_prop(zfs_cmd_t *zc)
2827{
428870ff
BB
2828 const char *propname = zc->zc_value;
2829 zfs_prop_t prop = zfs_name_to_prop(propname);
2830 boolean_t received = zc->zc_cookie;
2831 zprop_source_t source = (received
2832 ? ZPROP_SRC_NONE /* revert to received value, if any */
2833 : ZPROP_SRC_INHERITED); /* explicitly inherit */
92aceb2a 2834 nvlist_t *dummy;
2835 nvpair_t *pair;
2836 zprop_type_t type;
2837 int err;
428870ff 2838
92aceb2a 2839 if (!received) {
261c013f
BB
2840 /*
2841 * Only check this in the non-received case. We want to allow
2842 * 'inherit -S' to revert non-inheritable properties like quota
2843 * and reservation to the received or default values even though
2844 * they are not considered inheritable.
2845 */
2846 if (prop != ZPROP_INVAL && !zfs_prop_inheritable(prop))
2847 return (SET_ERROR(EINVAL));
959f56b9 2848 }
2849
92aceb2a 2850 if (prop == ZPROP_INVAL) {
2851 if (!zfs_prop_user(propname))
2852 return (SET_ERROR(EINVAL));
2853
2854 type = PROP_TYPE_STRING;
2855 } else if (prop == ZFS_PROP_VOLSIZE || prop == ZFS_PROP_VERSION) {
2856 return (SET_ERROR(EINVAL));
2857 } else {
2858 type = zfs_prop_get_type(prop);
2859 }
2860
2861 /*
2862 * zfs_prop_set_special() expects properties in the form of an
2863 * nvpair with type info.
2864 */
2865 dummy = fnvlist_alloc();
2866
2867 switch (type) {
2868 case PROP_TYPE_STRING:
2869 VERIFY(0 == nvlist_add_string(dummy, propname, ""));
2870 break;
2871 case PROP_TYPE_NUMBER:
2872 case PROP_TYPE_INDEX:
2873 VERIFY(0 == nvlist_add_uint64(dummy, propname, 0));
2874 break;
2875 default:
2876 err = SET_ERROR(EINVAL);
2877 goto errout;
2878 }
2879
2880 pair = nvlist_next_nvpair(dummy, NULL);
2881 if (pair == NULL) {
2882 err = SET_ERROR(EINVAL);
2883 } else {
2884 err = zfs_prop_set_special(zc->zc_name, source, pair);
2885 if (err == -1) /* property is not "special", needs handling */
2886 err = dsl_prop_inherit(zc->zc_name, zc->zc_value,
2887 source);
2888 }
2889
2890errout:
2891 nvlist_free(dummy);
2892 return (err);
34dc7c2f
BB
2893}
2894
2895static int
2896zfs_ioc_pool_set_props(zfs_cmd_t *zc)
2897{
2898 nvlist_t *props;
2899 spa_t *spa;
2900 int error;
428870ff 2901 nvpair_t *pair;
34dc7c2f 2902
c65aa5b2
BB
2903 if ((error = get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
2904 zc->zc_iflags, &props)))
34dc7c2f
BB
2905 return (error);
2906
d164b209
BB
2907 /*
2908 * If the only property is the configfile, then just do a spa_lookup()
2909 * to handle the faulted case.
2910 */
428870ff
BB
2911 pair = nvlist_next_nvpair(props, NULL);
2912 if (pair != NULL && strcmp(nvpair_name(pair),
d164b209 2913 zpool_prop_to_name(ZPOOL_PROP_CACHEFILE)) == 0 &&
428870ff 2914 nvlist_next_nvpair(props, pair) == NULL) {
d164b209
BB
2915 mutex_enter(&spa_namespace_lock);
2916 if ((spa = spa_lookup(zc->zc_name)) != NULL) {
2917 spa_configfile_set(spa, props, B_FALSE);
a1d477c2 2918 spa_write_cachefile(spa, B_FALSE, B_TRUE);
d164b209
BB
2919 }
2920 mutex_exit(&spa_namespace_lock);
428870ff
BB
2921 if (spa != NULL) {
2922 nvlist_free(props);
d164b209 2923 return (0);
428870ff 2924 }
d164b209
BB
2925 }
2926
34dc7c2f
BB
2927 if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0) {
2928 nvlist_free(props);
2929 return (error);
2930 }
2931
2932 error = spa_prop_set(spa, props);
2933
2934 nvlist_free(props);
2935 spa_close(spa, FTAG);
2936
2937 return (error);
2938}
2939
2940static int
2941zfs_ioc_pool_get_props(zfs_cmd_t *zc)
2942{
2943 spa_t *spa;
2944 int error;
2945 nvlist_t *nvp = NULL;
2946
d164b209
BB
2947 if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0) {
2948 /*
2949 * If the pool is faulted, there may be properties we can still
2950 * get (such as altroot and cachefile), so attempt to get them
2951 * anyway.
2952 */
2953 mutex_enter(&spa_namespace_lock);
2954 if ((spa = spa_lookup(zc->zc_name)) != NULL)
2955 error = spa_prop_get(spa, &nvp);
2956 mutex_exit(&spa_namespace_lock);
2957 } else {
2958 error = spa_prop_get(spa, &nvp);
2959 spa_close(spa, FTAG);
2960 }
34dc7c2f 2961
b8864a23 2962 if (error == 0 && zc->zc_nvlist_dst != 0)
34dc7c2f
BB
2963 error = put_nvlist(zc, nvp);
2964 else
2e528b49 2965 error = SET_ERROR(EFAULT);
34dc7c2f 2966
d164b209 2967 nvlist_free(nvp);
34dc7c2f
BB
2968 return (error);
2969}
2970
34dc7c2f
BB
2971/*
2972 * inputs:
2973 * zc_name name of filesystem
2974 * zc_nvlist_src{_size} nvlist of delegated permissions
2975 * zc_perm_action allow/unallow flag
2976 *
2977 * outputs: none
2978 */
2979static int
2980zfs_ioc_set_fsacl(zfs_cmd_t *zc)
2981{
2982 int error;
2983 nvlist_t *fsaclnv = NULL;
2984
2985 if ((error = get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
9babb374 2986 zc->zc_iflags, &fsaclnv)) != 0)
34dc7c2f
BB
2987 return (error);
2988
2989 /*
2990 * Verify nvlist is constructed correctly
2991 */
2992 if ((error = zfs_deleg_verify_nvlist(fsaclnv)) != 0) {
2993 nvlist_free(fsaclnv);
2e528b49 2994 return (SET_ERROR(EINVAL));
34dc7c2f
BB
2995 }
2996
2997 /*
2998 * If we don't have PRIV_SYS_MOUNT, then validate
2999 * that user is allowed to hand out each permission in
3000 * the nvlist(s)
3001 */
3002
3003 error = secpolicy_zfs(CRED());
13fe0198 3004 if (error != 0) {
34dc7c2f
BB
3005 if (zc->zc_perm_action == B_FALSE) {
3006 error = dsl_deleg_can_allow(zc->zc_name,
3007 fsaclnv, CRED());
3008 } else {
3009 error = dsl_deleg_can_unallow(zc->zc_name,
3010 fsaclnv, CRED());
3011 }
3012 }
3013
3014 if (error == 0)
3015 error = dsl_deleg_set(zc->zc_name, fsaclnv, zc->zc_perm_action);
3016
3017 nvlist_free(fsaclnv);
3018 return (error);
3019}
3020
3021/*
3022 * inputs:
3023 * zc_name name of filesystem
3024 *
3025 * outputs:
3026 * zc_nvlist_src{_size} nvlist of delegated permissions
3027 */
3028static int
3029zfs_ioc_get_fsacl(zfs_cmd_t *zc)
3030{
3031 nvlist_t *nvp;
3032 int error;
3033
3034 if ((error = dsl_deleg_get(zc->zc_name, &nvp)) == 0) {
3035 error = put_nvlist(zc, nvp);
3036 nvlist_free(nvp);
3037 }
3038
3039 return (error);
3040}
3041
34dc7c2f
BB
3042/* ARGSUSED */
3043static void
3044zfs_create_cb(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx)
3045{
3046 zfs_creat_t *zct = arg;
3047
3048 zfs_create_fs(os, cr, zct->zct_zplprops, tx);
3049}
3050
3051#define ZFS_PROP_UNDEFINED ((uint64_t)-1)
3052
3053/*
3054 * inputs:
b128c09f 3055 * os parent objset pointer (NULL if root fs)
d3cc8b15
WA
3056 * fuids_ok fuids allowed in this version of the spa?
3057 * sa_ok SAs allowed in this version of the spa?
3058 * createprops list of properties requested by creator
34dc7c2f
BB
3059 *
3060 * outputs:
3061 * zplprops values for the zplprops we attach to the master node object
b128c09f 3062 * is_ci true if requested file system will be purely case-insensitive
34dc7c2f
BB
3063 *
3064 * Determine the settings for utf8only, normalization and
3065 * casesensitivity. Specific values may have been requested by the
3066 * creator and/or we can inherit values from the parent dataset. If
3067 * the file system is of too early a vintage, a creator can not
3068 * request settings for these properties, even if the requested
3069 * setting is the default value. We don't actually want to create dsl
3070 * properties for these, so remove them from the source nvlist after
3071 * processing.
3072 */
3073static int
9babb374 3074zfs_fill_zplprops_impl(objset_t *os, uint64_t zplver,
428870ff
BB
3075 boolean_t fuids_ok, boolean_t sa_ok, nvlist_t *createprops,
3076 nvlist_t *zplprops, boolean_t *is_ci)
34dc7c2f 3077{
34dc7c2f
BB
3078 uint64_t sense = ZFS_PROP_UNDEFINED;
3079 uint64_t norm = ZFS_PROP_UNDEFINED;
3080 uint64_t u8 = ZFS_PROP_UNDEFINED;
b129c659 3081 int error;
34dc7c2f
BB
3082
3083 ASSERT(zplprops != NULL);
3084
87a275d9
AG
3085 if (os != NULL && os->os_phys->os_type != DMU_OST_ZFS)
3086 return (SET_ERROR(EINVAL));
3087
34dc7c2f
BB
3088 /*
3089 * Pull out creator prop choices, if any.
3090 */
3091 if (createprops) {
b128c09f
BB
3092 (void) nvlist_lookup_uint64(createprops,
3093 zfs_prop_to_name(ZFS_PROP_VERSION), &zplver);
34dc7c2f
BB
3094 (void) nvlist_lookup_uint64(createprops,
3095 zfs_prop_to_name(ZFS_PROP_NORMALIZE), &norm);
3096 (void) nvlist_remove_all(createprops,
3097 zfs_prop_to_name(ZFS_PROP_NORMALIZE));
3098 (void) nvlist_lookup_uint64(createprops,
3099 zfs_prop_to_name(ZFS_PROP_UTF8ONLY), &u8);
3100 (void) nvlist_remove_all(createprops,
3101 zfs_prop_to_name(ZFS_PROP_UTF8ONLY));
3102 (void) nvlist_lookup_uint64(createprops,
3103 zfs_prop_to_name(ZFS_PROP_CASE), &sense);
3104 (void) nvlist_remove_all(createprops,
3105 zfs_prop_to_name(ZFS_PROP_CASE));
3106 }
3107
3108 /*
b128c09f
BB
3109 * If the zpl version requested is whacky or the file system
3110 * or pool is version is too "young" to support normalization
3111 * and the creator tried to set a value for one of the props,
3112 * error out.
34dc7c2f 3113 */
b128c09f
BB
3114 if ((zplver < ZPL_VERSION_INITIAL || zplver > ZPL_VERSION) ||
3115 (zplver >= ZPL_VERSION_FUID && !fuids_ok) ||
428870ff 3116 (zplver >= ZPL_VERSION_SA && !sa_ok) ||
b128c09f 3117 (zplver < ZPL_VERSION_NORMALIZATION &&
34dc7c2f 3118 (norm != ZFS_PROP_UNDEFINED || u8 != ZFS_PROP_UNDEFINED ||
b128c09f 3119 sense != ZFS_PROP_UNDEFINED)))
2e528b49 3120 return (SET_ERROR(ENOTSUP));
34dc7c2f
BB
3121
3122 /*
3123 * Put the version in the zplprops
3124 */
3125 VERIFY(nvlist_add_uint64(zplprops,
3126 zfs_prop_to_name(ZFS_PROP_VERSION), zplver) == 0);
3127
b129c659
MM
3128 if (norm == ZFS_PROP_UNDEFINED &&
3129 (error = zfs_get_zplprop(os, ZFS_PROP_NORMALIZE, &norm)) != 0)
3130 return (error);
34dc7c2f
BB
3131 VERIFY(nvlist_add_uint64(zplprops,
3132 zfs_prop_to_name(ZFS_PROP_NORMALIZE), norm) == 0);
3133
3134 /*
3135 * If we're normalizing, names must always be valid UTF-8 strings.
3136 */
3137 if (norm)
3138 u8 = 1;
b129c659
MM
3139 if (u8 == ZFS_PROP_UNDEFINED &&
3140 (error = zfs_get_zplprop(os, ZFS_PROP_UTF8ONLY, &u8)) != 0)
3141 return (error);
34dc7c2f
BB
3142 VERIFY(nvlist_add_uint64(zplprops,
3143 zfs_prop_to_name(ZFS_PROP_UTF8ONLY), u8) == 0);
3144
b129c659
MM
3145 if (sense == ZFS_PROP_UNDEFINED &&
3146 (error = zfs_get_zplprop(os, ZFS_PROP_CASE, &sense)) != 0)
3147 return (error);
34dc7c2f
BB
3148 VERIFY(nvlist_add_uint64(zplprops,
3149 zfs_prop_to_name(ZFS_PROP_CASE), sense) == 0);
3150
3151 if (is_ci)
3152 *is_ci = (sense == ZFS_CASE_INSENSITIVE);
3153
34dc7c2f
BB
3154 return (0);
3155}
3156
b128c09f
BB
3157static int
3158zfs_fill_zplprops(const char *dataset, nvlist_t *createprops,
3159 nvlist_t *zplprops, boolean_t *is_ci)
3160{
428870ff 3161 boolean_t fuids_ok, sa_ok;
b128c09f
BB
3162 uint64_t zplver = ZPL_VERSION;
3163 objset_t *os = NULL;
eca7b760 3164 char parentname[ZFS_MAX_DATASET_NAME_LEN];
b128c09f 3165 char *cp;
428870ff
BB
3166 spa_t *spa;
3167 uint64_t spa_vers;
b128c09f
BB
3168 int error;
3169
3170 (void) strlcpy(parentname, dataset, sizeof (parentname));
3171 cp = strrchr(parentname, '/');
3172 ASSERT(cp != NULL);
3173 cp[0] = '\0';
3174
428870ff
BB
3175 if ((error = spa_open(dataset, &spa, FTAG)) != 0)
3176 return (error);
3177
3178 spa_vers = spa_version(spa);
3179 spa_close(spa, FTAG);
3180
3181 zplver = zfs_zpl_version_map(spa_vers);
3182 fuids_ok = (zplver >= ZPL_VERSION_FUID);
3183 sa_ok = (zplver >= ZPL_VERSION_SA);
b128c09f
BB
3184
3185 /*
3186 * Open parent object set so we can inherit zplprop values.
3187 */
428870ff 3188 if ((error = dmu_objset_hold(parentname, FTAG, &os)) != 0)
b128c09f
BB
3189 return (error);
3190
428870ff 3191 error = zfs_fill_zplprops_impl(os, zplver, fuids_ok, sa_ok, createprops,
b128c09f 3192 zplprops, is_ci);
428870ff 3193 dmu_objset_rele(os, FTAG);
b128c09f
BB
3194 return (error);
3195}
3196
3197static int
3198zfs_fill_zplprops_root(uint64_t spa_vers, nvlist_t *createprops,
3199 nvlist_t *zplprops, boolean_t *is_ci)
3200{
428870ff
BB
3201 boolean_t fuids_ok;
3202 boolean_t sa_ok;
b128c09f
BB
3203 uint64_t zplver = ZPL_VERSION;
3204 int error;
3205
428870ff
BB
3206 zplver = zfs_zpl_version_map(spa_vers);
3207 fuids_ok = (zplver >= ZPL_VERSION_FUID);
3208 sa_ok = (zplver >= ZPL_VERSION_SA);
b128c09f 3209
428870ff
BB
3210 error = zfs_fill_zplprops_impl(NULL, zplver, fuids_ok, sa_ok,
3211 createprops, zplprops, is_ci);
b128c09f
BB
3212 return (error);
3213}
3214
34dc7c2f 3215/*
6f1ffb06
MA
3216 * innvl: {
3217 * "type" -> dmu_objset_type_t (int32)
3218 * (optional) "props" -> { prop -> value }
b5256303
TC
3219 * (optional) "hidden_args" -> { "wkeydata" -> value }
3220 * raw uint8_t array of encryption wrapping key data (32 bytes)
6f1ffb06 3221 * }
34dc7c2f 3222 *
6f1ffb06 3223 * outnvl: propname -> error code (int32)
34dc7c2f 3224 */
b83a0e2d
DB
3225
3226static const zfs_ioc_key_t zfs_keys_create[] = {
3227 {"type", DATA_TYPE_INT32, 0},
3228 {"props", DATA_TYPE_NVLIST, ZK_OPTIONAL},
3229 {"hidden_args", DATA_TYPE_NVLIST, ZK_OPTIONAL},
3230};
3231
34dc7c2f 3232static int
6f1ffb06 3233zfs_ioc_create(const char *fsname, nvlist_t *innvl, nvlist_t *outnvl)
34dc7c2f 3234{
34dc7c2f 3235 int error = 0;
6f1ffb06 3236 zfs_creat_t zct = { 0 };
34dc7c2f 3237 nvlist_t *nvprops = NULL;
b5256303 3238 nvlist_t *hidden_args = NULL;
34dc7c2f 3239 void (*cbfunc)(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx);
6f1ffb06
MA
3240 dmu_objset_type_t type;
3241 boolean_t is_insensitive = B_FALSE;
b5256303 3242 dsl_crypto_params_t *dcp = NULL;
34dc7c2f 3243
b83a0e2d 3244 type = (dmu_objset_type_t)fnvlist_lookup_int32(innvl, "type");
6f1ffb06 3245 (void) nvlist_lookup_nvlist(innvl, "props", &nvprops);
b5256303 3246 (void) nvlist_lookup_nvlist(innvl, ZPOOL_HIDDEN_ARGS, &hidden_args);
34dc7c2f 3247
6f1ffb06 3248 switch (type) {
34dc7c2f
BB
3249 case DMU_OST_ZFS:
3250 cbfunc = zfs_create_cb;
3251 break;
3252
3253 case DMU_OST_ZVOL:
3254 cbfunc = zvol_create_cb;
3255 break;
3256
3257 default:
3258 cbfunc = NULL;
3259 break;
3260 }
6f1ffb06
MA
3261 if (strchr(fsname, '@') ||
3262 strchr(fsname, '%'))
2e528b49 3263 return (SET_ERROR(EINVAL));
34dc7c2f 3264
34dc7c2f
BB
3265 zct.zct_props = nvprops;
3266
6f1ffb06 3267 if (cbfunc == NULL)
2e528b49 3268 return (SET_ERROR(EINVAL));
34dc7c2f 3269
6f1ffb06
MA
3270 if (type == DMU_OST_ZVOL) {
3271 uint64_t volsize, volblocksize;
34dc7c2f 3272
6f1ffb06 3273 if (nvprops == NULL)
2e528b49 3274 return (SET_ERROR(EINVAL));
6f1ffb06
MA
3275 if (nvlist_lookup_uint64(nvprops,
3276 zfs_prop_to_name(ZFS_PROP_VOLSIZE), &volsize) != 0)
2e528b49 3277 return (SET_ERROR(EINVAL));
34dc7c2f 3278
6f1ffb06
MA
3279 if ((error = nvlist_lookup_uint64(nvprops,
3280 zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE),
3281 &volblocksize)) != 0 && error != ENOENT)
2e528b49 3282 return (SET_ERROR(EINVAL));
34dc7c2f 3283
6f1ffb06
MA
3284 if (error != 0)
3285 volblocksize = zfs_prop_default_numeric(
3286 ZFS_PROP_VOLBLOCKSIZE);
34dc7c2f 3287
4cb7b9c5 3288 if ((error = zvol_check_volblocksize(fsname,
6f1ffb06
MA
3289 volblocksize)) != 0 ||
3290 (error = zvol_check_volsize(volsize,
3291 volblocksize)) != 0)
3292 return (error);
3293 } else if (type == DMU_OST_ZFS) {
3294 int error;
34dc7c2f 3295
6f1ffb06
MA
3296 /*
3297 * We have to have normalization and
3298 * case-folding flags correct when we do the
3299 * file system creation, so go figure them out
3300 * now.
3301 */
3302 VERIFY(nvlist_alloc(&zct.zct_zplprops,
3303 NV_UNIQUE_NAME, KM_SLEEP) == 0);
3304 error = zfs_fill_zplprops(fsname, nvprops,
3305 zct.zct_zplprops, &is_insensitive);
3306 if (error != 0) {
3307 nvlist_free(zct.zct_zplprops);
3308 return (error);
34dc7c2f 3309 }
34dc7c2f
BB
3310 }
3311
b5256303
TC
3312 error = dsl_crypto_params_create_nvlist(DCP_CMD_NONE, nvprops,
3313 hidden_args, &dcp);
3314 if (error != 0) {
3315 nvlist_free(zct.zct_zplprops);
3316 return (error);
3317 }
3318
6f1ffb06 3319 error = dmu_objset_create(fsname, type,
b5256303
TC
3320 is_insensitive ? DS_FLAG_CI_DATASET : 0, dcp, cbfunc, &zct);
3321
6f1ffb06 3322 nvlist_free(zct.zct_zplprops);
b5256303 3323 dsl_crypto_params_free(dcp, !!error);
6f1ffb06 3324
34dc7c2f
BB
3325 /*
3326 * It would be nice to do this atomically.
3327 */
3328 if (error == 0) {
6f1ffb06
MA
3329 error = zfs_set_prop_nvlist(fsname, ZPROP_SRC_LOCAL,
3330 nvprops, outnvl);
f74b821a
BB
3331 if (error != 0) {
3332 spa_t *spa;
3333 int error2;
3334
3335 /*
3336 * Volumes will return EBUSY and cannot be destroyed
3337 * until all asynchronous minor handling has completed.
3338 * Wait for the spa_zvol_taskq to drain then retry.
3339 */
3340 error2 = dsl_destroy_head(fsname);
3341 while ((error2 == EBUSY) && (type == DMU_OST_ZVOL)) {
3342 error2 = spa_open(fsname, &spa, FTAG);
3343 if (error2 == 0) {
3344 taskq_wait(spa->spa_zvol_taskq);
3345 spa_close(spa, FTAG);
3346 }
3347 error2 = dsl_destroy_head(fsname);
3348 }
3349 }
34dc7c2f 3350 }
34dc7c2f
BB
3351 return (error);
3352}
3353
3354/*
6f1ffb06
MA
3355 * innvl: {
3356 * "origin" -> name of origin snapshot
3357 * (optional) "props" -> { prop -> value }
b5256303
TC
3358 * (optional) "hidden_args" -> { "wkeydata" -> value }
3359 * raw uint8_t array of encryption wrapping key data (32 bytes)
6f1ffb06 3360 * }
34dc7c2f 3361 *
428870ff 3362 * outputs:
6f1ffb06 3363 * outnvl: propname -> error code (int32)
34dc7c2f 3364 */
b83a0e2d
DB
3365static const zfs_ioc_key_t zfs_keys_clone[] = {
3366 {"origin", DATA_TYPE_STRING, 0},
3367 {"props", DATA_TYPE_NVLIST, ZK_OPTIONAL},
3368 {"hidden_args", DATA_TYPE_NVLIST, ZK_OPTIONAL},
3369};
3370
34dc7c2f 3371static int
6f1ffb06 3372zfs_ioc_clone(const char *fsname, nvlist_t *innvl, nvlist_t *outnvl)
34dc7c2f 3373{
6f1ffb06 3374 int error = 0;
b128c09f 3375 nvlist_t *nvprops = NULL;
6f1ffb06 3376 char *origin_name;
b128c09f 3377
b83a0e2d 3378 origin_name = fnvlist_lookup_string(innvl, "origin");
6f1ffb06 3379 (void) nvlist_lookup_nvlist(innvl, "props", &nvprops);
b128c09f 3380
6f1ffb06
MA
3381 if (strchr(fsname, '@') ||
3382 strchr(fsname, '%'))
2e528b49 3383 return (SET_ERROR(EINVAL));
6f1ffb06
MA
3384
3385 if (dataset_namecheck(origin_name, NULL, NULL) != 0)
2e528b49 3386 return (SET_ERROR(EINVAL));
b5256303 3387
13fe0198 3388 error = dmu_objset_clone(fsname, origin_name);
b128c09f 3389
6f1ffb06
MA
3390 /*
3391 * It would be nice to do this atomically.
3392 */
3393 if (error == 0) {
3394 error = zfs_set_prop_nvlist(fsname, ZPROP_SRC_LOCAL,
3395 nvprops, outnvl);
3396 if (error != 0)
13fe0198 3397 (void) dsl_destroy_head(fsname);
b128c09f 3398 }
6f1ffb06
MA
3399 return (error);
3400}
9babb374 3401
b83a0e2d
DB
3402static const zfs_ioc_key_t zfs_keys_remap[] = {
3403 /* no nvl keys */
3404};
3405
a1d477c2
MA
3406/* ARGSUSED */
3407static int
3408zfs_ioc_remap(const char *fsname, nvlist_t *innvl, nvlist_t *outnvl)
3409{
3410 if (strchr(fsname, '@') ||
3411 strchr(fsname, '%'))
3412 return (SET_ERROR(EINVAL));
3413
3414 return (dmu_objset_remap_indirects(fsname));
3415}
3416
6f1ffb06
MA
3417/*
3418 * innvl: {
3419 * "snaps" -> { snapshot1, snapshot2 }
3420 * (optional) "props" -> { prop -> value (string) }
3421 * }
3422 *
3423 * outnvl: snapshot -> error code (int32)
6f1ffb06 3424 */
b83a0e2d
DB
3425static const zfs_ioc_key_t zfs_keys_snapshot[] = {
3426 {"snaps", DATA_TYPE_NVLIST, 0},
3427 {"props", DATA_TYPE_NVLIST, ZK_OPTIONAL},
3428};
3429
6f1ffb06
MA
3430static int
3431zfs_ioc_snapshot(const char *poolname, nvlist_t *innvl, nvlist_t *outnvl)
3432{
3433 nvlist_t *snaps;
3434 nvlist_t *props = NULL;
3435 int error, poollen;
1c27024e 3436 nvpair_t *pair;
9babb374 3437
6f1ffb06
MA
3438 (void) nvlist_lookup_nvlist(innvl, "props", &props);
3439 if ((error = zfs_check_userprops(poolname, props)) != 0)
3440 return (error);
3441
3442 if (!nvlist_empty(props) &&
3443 zfs_earlier_version(poolname, SPA_VERSION_SNAP_PROPS))
2e528b49 3444 return (SET_ERROR(ENOTSUP));
6f1ffb06 3445
b83a0e2d 3446 snaps = fnvlist_lookup_nvlist(innvl, "snaps");
6f1ffb06
MA
3447 poollen = strlen(poolname);
3448 for (pair = nvlist_next_nvpair(snaps, NULL); pair != NULL;
3449 pair = nvlist_next_nvpair(snaps, pair)) {
3450 const char *name = nvpair_name(pair);
3451 const char *cp = strchr(name, '@');
3452
3453 /*
3454 * The snap name must contain an @, and the part after it must
3455 * contain only valid characters.
3456 */
da536844
MA
3457 if (cp == NULL ||
3458 zfs_component_namecheck(cp + 1, NULL, NULL) != 0)
2e528b49 3459 return (SET_ERROR(EINVAL));
6f1ffb06
MA
3460
3461 /*
3462 * The snap must be in the specified pool.
3463 */
3464 if (strncmp(name, poolname, poollen) != 0 ||
3465 (name[poollen] != '/' && name[poollen] != '@'))
2e528b49 3466 return (SET_ERROR(EXDEV));
6f1ffb06
MA
3467
3468 /* This must be the only snap of this fs. */
1c27024e 3469 for (nvpair_t *pair2 = nvlist_next_nvpair(snaps, pair);
6f1ffb06
MA
3470 pair2 != NULL; pair2 = nvlist_next_nvpair(snaps, pair2)) {
3471 if (strncmp(name, nvpair_name(pair2), cp - name + 1)
3472 == 0) {
2e528b49 3473 return (SET_ERROR(EXDEV));
6f1ffb06
MA
3474 }
3475 }
3476 }
3477
13fe0198 3478 error = dsl_dataset_snapshot(snaps, props, outnvl);
ba6a2402 3479
6f1ffb06
MA
3480 return (error);
3481}
3482
3483/*
3484 * innvl: "message" -> string
3485 */
b83a0e2d
DB
3486static const zfs_ioc_key_t zfs_keys_log_history[] = {
3487 {"message", DATA_TYPE_STRING, 0},
3488};
3489
6f1ffb06
MA
3490/* ARGSUSED */
3491static int
3492zfs_ioc_log_history(const char *unused, nvlist_t *innvl, nvlist_t *outnvl)
3493{
3494 char *message;
3495 spa_t *spa;
3496 int error;
3497 char *poolname;
3498
3499 /*
3500 * The poolname in the ioctl is not set, we get it from the TSD,
3501 * which was set at the end of the last successful ioctl that allows
3502 * logging. The secpolicy func already checked that it is set.
3503 * Only one log ioctl is allowed after each successful ioctl, so
3504 * we clear the TSD here.
3505 */
3506 poolname = tsd_get(zfs_allow_log_key);
9f3d1407 3507 if (poolname == NULL)
3508 return (SET_ERROR(EINVAL));
6f1ffb06
MA
3509 (void) tsd_set(zfs_allow_log_key, NULL);
3510 error = spa_open(poolname, &spa, FTAG);
3511 strfree(poolname);
3512 if (error != 0)
3513 return (error);
3514
b83a0e2d 3515 message = fnvlist_lookup_string(innvl, "message");
6f1ffb06
MA
3516
3517 if (spa_version(spa) < SPA_VERSION_ZPOOL_HISTORY) {
3518 spa_close(spa, FTAG);
2e528b49 3519 return (SET_ERROR(ENOTSUP));
6f1ffb06
MA
3520 }
3521
3522 error = spa_history_log(spa, message);
3523 spa_close(spa, FTAG);
b128c09f 3524 return (error);
34dc7c2f
BB
3525}
3526
ebe7e575 3527/*
13fe0198
MA
3528 * The dp_config_rwlock must not be held when calling this, because the
3529 * unmount may need to write out data.
3530 *
3531 * This function is best-effort. Callers must deal gracefully if it
3532 * remains mounted (or is remounted after this call).
d09f25dc 3533 *
278bee93
BB
3534 * Returns 0 if the argument is not a snapshot, or it is not currently a
3535 * filesystem, or we were able to unmount it. Returns error code otherwise.
ebe7e575 3536 */
8d103d88 3537void
13fe0198 3538zfs_unmount_snap(const char *snapname)
34dc7c2f 3539{
278bee93 3540 if (strchr(snapname, '@') == NULL)
8d103d88 3541 return;
ebe7e575 3542
8d103d88 3543 (void) zfsctl_snapshot_unmount((char *)snapname, MNT_FORCE);
13fe0198
MA
3544}
3545
3546/* ARGSUSED */
3547static int
3548zfs_unmount_snap_cb(const char *snapname, void *arg)
3549{
8d103d88
SD
3550 zfs_unmount_snap(snapname);
3551 return (0);
13fe0198
MA
3552}
3553
3554/*
3555 * When a clone is destroyed, its origin may also need to be destroyed,
3556 * in which case it must be unmounted. This routine will do that unmount
3557 * if necessary.
3558 */
3559void
3560zfs_destroy_unmount_origin(const char *fsname)
3561{
3562 int error;
3563 objset_t *os;
3564 dsl_dataset_t *ds;
3565
3566 error = dmu_objset_hold(fsname, FTAG, &os);
3567 if (error != 0)
3568 return;
3569 ds = dmu_objset_ds(os);
3570 if (dsl_dir_is_clone(ds->ds_dir) && DS_IS_DEFER_DESTROY(ds->ds_prev)) {
eca7b760 3571 char originname[ZFS_MAX_DATASET_NAME_LEN];
13fe0198
MA
3572 dsl_dataset_name(ds->ds_prev, originname);
3573 dmu_objset_rele(os, FTAG);
8d103d88 3574 zfs_unmount_snap(originname);
13fe0198
MA
3575 } else {
3576 dmu_objset_rele(os, FTAG);
3577 }
34dc7c2f
BB
3578}
3579
3580/*
6f1ffb06
MA
3581 * innvl: {
3582 * "snaps" -> { snapshot1, snapshot2 }
3583 * (optional boolean) "defer"
3584 * }
34dc7c2f 3585 *
6f1ffb06 3586 * outnvl: snapshot -> error code (int32)
34dc7c2f 3587 */
b83a0e2d
DB
3588static const zfs_ioc_key_t zfs_keys_destroy_snaps[] = {
3589 {"snaps", DATA_TYPE_NVLIST, 0},
3590 {"defer", DATA_TYPE_BOOLEAN, ZK_OPTIONAL},
3591};
3592
da536844 3593/* ARGSUSED */
34dc7c2f 3594static int
6f1ffb06 3595zfs_ioc_destroy_snaps(const char *poolname, nvlist_t *innvl, nvlist_t *outnvl)
34dc7c2f 3596{
6f1ffb06 3597 nvlist_t *snaps;
330d06f9 3598 nvpair_t *pair;
6f1ffb06 3599 boolean_t defer;
34dc7c2f 3600
b83a0e2d 3601 snaps = fnvlist_lookup_nvlist(innvl, "snaps");
6f1ffb06 3602 defer = nvlist_exists(innvl, "defer");
330d06f9 3603
6f1ffb06
MA
3604 for (pair = nvlist_next_nvpair(snaps, NULL); pair != NULL;
3605 pair = nvlist_next_nvpair(snaps, pair)) {
8d103d88 3606 zfs_unmount_snap(nvpair_name(pair));
da536844
MA
3607 }
3608
3609 return (dsl_destroy_snapshots_nvl(snaps, defer, outnvl));
3610}
3611
3612/*
3613 * Create bookmarks. Bookmark names are of the form <fs>#<bmark>.
3614 * All bookmarks must be in the same pool.
3615 *
3616 * innvl: {
3617 * bookmark1 -> snapshot1, bookmark2 -> snapshot2
3618 * }
3619 *
3620 * outnvl: bookmark -> error code (int32)
3621 *
3622 */
b83a0e2d
DB
3623static const zfs_ioc_key_t zfs_keys_bookmark[] = {
3624 {"<bookmark>...", DATA_TYPE_STRING, ZK_WILDCARDLIST},
3625};
3626
da536844
MA
3627/* ARGSUSED */
3628static int
3629zfs_ioc_bookmark(const char *poolname, nvlist_t *innvl, nvlist_t *outnvl)
3630{
1c27024e 3631 for (nvpair_t *pair = nvlist_next_nvpair(innvl, NULL);
da536844
MA
3632 pair != NULL; pair = nvlist_next_nvpair(innvl, pair)) {
3633 char *snap_name;
3634
3635 /*
3636 * Verify the snapshot argument.
3637 */
3638 if (nvpair_value_string(pair, &snap_name) != 0)
3639 return (SET_ERROR(EINVAL));
3640
3641
3642 /* Verify that the keys (bookmarks) are unique */
1c27024e 3643 for (nvpair_t *pair2 = nvlist_next_nvpair(innvl, pair);
da536844
MA
3644 pair2 != NULL; pair2 = nvlist_next_nvpair(innvl, pair2)) {
3645 if (strcmp(nvpair_name(pair), nvpair_name(pair2)) == 0)
3646 return (SET_ERROR(EINVAL));
3647 }
3648 }
3649
3650 return (dsl_bookmark_create(innvl, outnvl));
3651}
3652
3653/*
3654 * innvl: {
3655 * property 1, property 2, ...
3656 * }
3657 *
3658 * outnvl: {
3659 * bookmark name 1 -> { property 1, property 2, ... },
3660 * bookmark name 2 -> { property 1, property 2, ... }
3661 * }
3662 *
3663 */
b83a0e2d
DB
3664static const zfs_ioc_key_t zfs_keys_get_bookmarks[] = {
3665 {"<property>...", DATA_TYPE_BOOLEAN, ZK_WILDCARDLIST | ZK_OPTIONAL},
3666};
3667
da536844
MA
3668static int
3669zfs_ioc_get_bookmarks(const char *fsname, nvlist_t *innvl, nvlist_t *outnvl)
3670{
3671 return (dsl_get_bookmarks(fsname, innvl, outnvl));
3672}
3673
3674/*
3675 * innvl: {
3676 * bookmark name 1, bookmark name 2
3677 * }
3678 *
3679 * outnvl: bookmark -> error code (int32)
3680 *
3681 */
b83a0e2d
DB
3682static const zfs_ioc_key_t zfs_keys_destroy_bookmarks[] = {
3683 {"<bookmark>...", DATA_TYPE_BOOLEAN, ZK_WILDCARDLIST},
3684};
3685
da536844
MA
3686static int
3687zfs_ioc_destroy_bookmarks(const char *poolname, nvlist_t *innvl,
3688 nvlist_t *outnvl)
3689{
3690 int error, poollen;
da536844
MA
3691
3692 poollen = strlen(poolname);
1c27024e 3693 for (nvpair_t *pair = nvlist_next_nvpair(innvl, NULL);
da536844 3694 pair != NULL; pair = nvlist_next_nvpair(innvl, pair)) {
330d06f9 3695 const char *name = nvpair_name(pair);
da536844 3696 const char *cp = strchr(name, '#');
6f1ffb06 3697
330d06f9 3698 /*
da536844
MA
3699 * The bookmark name must contain an #, and the part after it
3700 * must contain only valid characters.
3701 */
3702 if (cp == NULL ||
3703 zfs_component_namecheck(cp + 1, NULL, NULL) != 0)
3704 return (SET_ERROR(EINVAL));
3705
3706 /*
3707 * The bookmark must be in the specified pool.
330d06f9 3708 */
6f1ffb06 3709 if (strncmp(name, poolname, poollen) != 0 ||
da536844 3710 (name[poollen] != '/' && name[poollen] != '#'))
2e528b49 3711 return (SET_ERROR(EXDEV));
330d06f9
MA
3712 }
3713
da536844
MA
3714 error = dsl_bookmark_destroy(innvl, outnvl);
3715 return (error);
34dc7c2f
BB
3716}
3717
b83a0e2d
DB
3718static const zfs_ioc_key_t zfs_keys_channel_program[] = {
3719 {"program", DATA_TYPE_STRING, 0},
3720 {"arg", DATA_TYPE_ANY, 0},
3721 {"sync", DATA_TYPE_BOOLEAN_VALUE, ZK_OPTIONAL},
3722 {"instrlimit", DATA_TYPE_UINT64, ZK_OPTIONAL},
3723 {"memlimit", DATA_TYPE_UINT64, ZK_OPTIONAL},
3724};
3725
d99a0153
CW
3726static int
3727zfs_ioc_channel_program(const char *poolname, nvlist_t *innvl,
3728 nvlist_t *outnvl)
3729{
3730 char *program;
3731 uint64_t instrlimit, memlimit;
5b72a38d 3732 boolean_t sync_flag;
d99a0153
CW
3733 nvpair_t *nvarg = NULL;
3734
b83a0e2d 3735 program = fnvlist_lookup_string(innvl, ZCP_ARG_PROGRAM);
5b72a38d
SD
3736 if (0 != nvlist_lookup_boolean_value(innvl, ZCP_ARG_SYNC, &sync_flag)) {
3737 sync_flag = B_TRUE;
3738 }
d99a0153
CW
3739 if (0 != nvlist_lookup_uint64(innvl, ZCP_ARG_INSTRLIMIT, &instrlimit)) {
3740 instrlimit = ZCP_DEFAULT_INSTRLIMIT;
3741 }
3742 if (0 != nvlist_lookup_uint64(innvl, ZCP_ARG_MEMLIMIT, &memlimit)) {
3743 memlimit = ZCP_DEFAULT_MEMLIMIT;
3744 }
b83a0e2d 3745 nvarg = fnvlist_lookup_nvpair(innvl, ZCP_ARG_ARGLIST);
d99a0153
CW
3746
3747 if (instrlimit == 0 || instrlimit > zfs_lua_max_instrlimit)
3748 return (EINVAL);
234c91c5 3749 if (memlimit == 0 || memlimit > zfs_lua_max_memlimit)
d99a0153
CW
3750 return (EINVAL);
3751
5b72a38d 3752 return (zcp_eval(poolname, program, sync_flag, instrlimit, memlimit,
d99a0153
CW
3753 nvarg, outnvl));
3754}
3755
d2734cce
SD
3756/*
3757 * innvl: unused
3758 * outnvl: empty
3759 */
b83a0e2d
DB
3760static const zfs_ioc_key_t zfs_keys_pool_checkpoint[] = {
3761 /* no nvl keys */
3762};
3763
d2734cce
SD
3764/* ARGSUSED */
3765static int
3766zfs_ioc_pool_checkpoint(const char *poolname, nvlist_t *innvl, nvlist_t *outnvl)
3767{
3768 return (spa_checkpoint(poolname));
3769}
3770
3771/*
3772 * innvl: unused
3773 * outnvl: empty
3774 */
b83a0e2d
DB
3775static const zfs_ioc_key_t zfs_keys_pool_discard_checkpoint[] = {
3776 /* no nvl keys */
3777};
3778
d2734cce
SD
3779/* ARGSUSED */
3780static int
3781zfs_ioc_pool_discard_checkpoint(const char *poolname, nvlist_t *innvl,
3782 nvlist_t *outnvl)
3783{
3784 return (spa_checkpoint_discard(poolname));
3785}
3786
34dc7c2f
BB
3787/*
3788 * inputs:
3789 * zc_name name of dataset to destroy
45d1cae3 3790 * zc_defer_destroy mark for deferred destroy
34dc7c2f
BB
3791 *
3792 * outputs: none
3793 */
3794static int
3795zfs_ioc_destroy(zfs_cmd_t *zc)
3796{
dc1c630b
AG
3797 objset_t *os;
3798 dmu_objset_type_t ost;
428870ff 3799 int err;
d09f25dc 3800
dc1c630b
AG
3801 err = dmu_objset_hold(zc->zc_name, FTAG, &os);
3802 if (err != 0)
3803 return (err);
3804 ost = dmu_objset_type(os);
3805 dmu_objset_rele(os, FTAG);
3806
3807 if (ost == DMU_OST_ZFS)
8d103d88 3808 zfs_unmount_snap(zc->zc_name);
34dc7c2f 3809
1b87e0f5 3810 if (strchr(zc->zc_name, '@')) {
13fe0198 3811 err = dsl_destroy_snapshot(zc->zc_name, zc->zc_defer_destroy);
1b87e0f5 3812 } else {
13fe0198 3813 err = dsl_destroy_head(zc->zc_name);
1b87e0f5
RS
3814 if (err == EEXIST) {
3815 /*
3816 * It is possible that the given DS may have
3817 * hidden child (%recv) datasets - "leftovers"
3818 * resulting from the previously interrupted
3819 * 'zfs receive'.
3820 *
3821 * 6 extra bytes for /%recv
3822 */
3823 char namebuf[ZFS_MAX_DATASET_NAME_LEN + 6];
3824
682ce104
TH
3825 if (snprintf(namebuf, sizeof (namebuf), "%s/%s",
3826 zc->zc_name, recv_clone_name) >=
3827 sizeof (namebuf))
3828 return (SET_ERROR(EINVAL));
1b87e0f5
RS
3829
3830 /*
3831 * Try to remove the hidden child (%recv) and after
3832 * that try to remove the target dataset.
3833 * If the hidden child (%recv) does not exist
3834 * the original error (EEXIST) will be returned
3835 */
3836 err = dsl_destroy_head(namebuf);
3837 if (err == 0)
3838 err = dsl_destroy_head(zc->zc_name);
3839 else if (err == ENOENT)
ecb2b7dc 3840 err = SET_ERROR(EEXIST);
1b87e0f5
RS
3841 }
3842 }
a0bd735a 3843
428870ff 3844 return (err);
34dc7c2f
BB
3845}
3846
619f0976
GW
3847/*
3848 * innvl: {
c10d37dd
GW
3849 * "initialize_command" -> POOL_INITIALIZE_{CANCEL|DO|SUSPEND} (uint64)
3850 * "initialize_vdevs": { -> guids to initialize (nvlist)
3851 * "vdev_path_1": vdev_guid_1, (uint64),
3852 * "vdev_path_2": vdev_guid_2, (uint64),
3853 * ...
619f0976 3854 * },
619f0976
GW
3855 * }
3856 *
3857 * outnvl: {
c10d37dd
GW
3858 * "initialize_vdevs": { -> initialization errors (nvlist)
3859 * "vdev_path_1": errno, see function body for possible errnos (uint64)
3860 * "vdev_path_2": errno, ... (uint64)
619f0976 3861 * ...
c10d37dd 3862 * }
619f0976
GW
3863 * }
3864 *
c10d37dd
GW
3865 * EINVAL is returned for an unknown commands or if any of the provided vdev
3866 * guids have be specified with a type other than uint64.
619f0976
GW
3867 */
3868static const zfs_ioc_key_t zfs_keys_pool_initialize[] = {
c10d37dd 3869 {ZPOOL_INITIALIZE_COMMAND, DATA_TYPE_UINT64, 0},
619f0976
GW
3870 {ZPOOL_INITIALIZE_VDEVS, DATA_TYPE_NVLIST, 0}
3871};
3872
3873static int
3874zfs_ioc_pool_initialize(const char *poolname, nvlist_t *innvl, nvlist_t *outnvl)
3875{
619f0976
GW
3876 uint64_t cmd_type;
3877 if (nvlist_lookup_uint64(innvl, ZPOOL_INITIALIZE_COMMAND,
3878 &cmd_type) != 0) {
619f0976
GW
3879 return (SET_ERROR(EINVAL));
3880 }
c10d37dd 3881
619f0976
GW
3882 if (!(cmd_type == POOL_INITIALIZE_CANCEL ||
3883 cmd_type == POOL_INITIALIZE_DO ||
3884 cmd_type == POOL_INITIALIZE_SUSPEND)) {
619f0976
GW
3885 return (SET_ERROR(EINVAL));
3886 }
3887
3888 nvlist_t *vdev_guids;
3889 if (nvlist_lookup_nvlist(innvl, ZPOOL_INITIALIZE_VDEVS,
3890 &vdev_guids) != 0) {
619f0976
GW
3891 return (SET_ERROR(EINVAL));
3892 }
3893
619f0976
GW
3894 for (nvpair_t *pair = nvlist_next_nvpair(vdev_guids, NULL);
3895 pair != NULL; pair = nvlist_next_nvpair(vdev_guids, pair)) {
c10d37dd
GW
3896 uint64_t vdev_guid;
3897 if (nvpair_value_uint64(pair, &vdev_guid) != 0) {
3898 return (SET_ERROR(EINVAL));
619f0976
GW
3899 }
3900 }
c10d37dd
GW
3901
3902 spa_t *spa;
3903 int error = spa_open(poolname, &spa, FTAG);
3904 if (error != 0)
3905 return (error);
3906
3907 nvlist_t *vdev_errlist = fnvlist_alloc();
3908 int total_errors = spa_vdev_initialize(spa, vdev_guids, cmd_type,
3909 vdev_errlist);
3910
619f0976
GW
3911 if (fnvlist_size(vdev_errlist) > 0) {
3912 fnvlist_add_nvlist(outnvl, ZPOOL_INITIALIZE_VDEVS,
3913 vdev_errlist);
3914 }
3915 fnvlist_free(vdev_errlist);
3916
3917 spa_close(spa, FTAG);
3918 return (total_errors > 0 ? EINVAL : 0);
3919}
3920
34dc7c2f 3921/*
46ba1e59 3922 * fsname is name of dataset to rollback (to most recent snapshot)
34dc7c2f 3923 *
8ca78ab0 3924 * innvl may contain name of expected target snapshot
46ba1e59
MA
3925 *
3926 * outnvl: "target" -> name of most recent snapshot
3927 * }
34dc7c2f 3928 */
b83a0e2d
DB
3929static const zfs_ioc_key_t zfs_keys_rollback[] = {
3930 {"target", DATA_TYPE_STRING, ZK_OPTIONAL},
3931};
3932
46ba1e59 3933/* ARGSUSED */
34dc7c2f 3934static int
8ca78ab0 3935zfs_ioc_rollback(const char *fsname, nvlist_t *innvl, nvlist_t *outnvl)
34dc7c2f 3936{
0037b49e 3937 zfsvfs_t *zfsvfs;
040dab99 3938 zvol_state_t *zv;
8ca78ab0 3939 char *target = NULL;
13fe0198 3940 int error;
34dc7c2f 3941
8ca78ab0
AG
3942 (void) nvlist_lookup_string(innvl, "target", &target);
3943 if (target != NULL) {
13342832 3944 const char *cp = strchr(target, '@');
8ca78ab0 3945
13342832
AG
3946 /*
3947 * The snap name must contain an @, and the part after it must
3948 * contain only valid characters.
3949 */
3950 if (cp == NULL ||
3951 zfs_component_namecheck(cp + 1, NULL, NULL) != 0)
8ca78ab0
AG
3952 return (SET_ERROR(EINVAL));
3953 }
3954
f298b24d 3955 if (getzfsvfs(fsname, &zfsvfs) == 0) {
ec923db2
GM
3956 dsl_dataset_t *ds;
3957
0037b49e
BB
3958 ds = dmu_objset_ds(zfsvfs->z_os);
3959 error = zfs_suspend_fs(zfsvfs);
34dc7c2f
BB
3960 if (error == 0) {
3961 int resume_err;
3962
8ca78ab0
AG
3963 error = dsl_dataset_rollback(fsname, target, zfsvfs,
3964 outnvl);
0037b49e 3965 resume_err = zfs_resume_fs(zfsvfs, ds);
34dc7c2f 3966 error = error ? error : resume_err;
34dc7c2f 3967 }
0037b49e 3968 deactivate_super(zfsvfs->z_sb);
040dab99 3969 } else if ((zv = zvol_suspend(fsname)) != NULL) {
8ca78ab0
AG
3970 error = dsl_dataset_rollback(fsname, target, zvol_tag(zv),
3971 outnvl);
040dab99 3972 zvol_resume(zv);
34dc7c2f 3973 } else {
8ca78ab0 3974 error = dsl_dataset_rollback(fsname, target, NULL, outnvl);
34dc7c2f 3975 }
13fe0198
MA
3976 return (error);
3977}
34dc7c2f 3978
13fe0198
MA
3979static int
3980recursive_unmount(const char *fsname, void *arg)
3981{
3982 const char *snapname = arg;
3983 char *fullname;
428870ff 3984
13fe0198 3985 fullname = kmem_asprintf("%s@%s", fsname, snapname);
8d103d88 3986 zfs_unmount_snap(fullname);
13fe0198 3987 strfree(fullname);
00fcdee1 3988
8d103d88 3989 return (0);
34dc7c2f
BB
3990}
3991
3992/*
3993 * inputs:
3994 * zc_name old name of dataset
3995 * zc_value new name of dataset
3996 * zc_cookie recursive flag (only valid for snapshots)
3997 *
3998 * outputs: none
3999 */
4000static int
4001zfs_ioc_rename(zfs_cmd_t *zc)
4002{
dc1c630b
AG
4003 objset_t *os;
4004 dmu_objset_type_t ost;
34dc7c2f 4005 boolean_t recursive = zc->zc_cookie & 1;
13fe0198 4006 char *at;
dc1c630b 4007 int err;
34dc7c2f 4008
650258d7 4009 /* "zfs rename" from and to ...%recv datasets should both fail */
4010 zc->zc_name[sizeof (zc->zc_name) - 1] = '\0';
34dc7c2f 4011 zc->zc_value[sizeof (zc->zc_value) - 1] = '\0';
650258d7 4012 if (dataset_namecheck(zc->zc_name, NULL, NULL) != 0 ||
4013 dataset_namecheck(zc->zc_value, NULL, NULL) != 0 ||
4014 strchr(zc->zc_name, '%') || strchr(zc->zc_value, '%'))
2e528b49 4015 return (SET_ERROR(EINVAL));
34dc7c2f 4016
dc1c630b
AG
4017 err = dmu_objset_hold(zc->zc_name, FTAG, &os);
4018 if (err != 0)
4019 return (err);
4020 ost = dmu_objset_type(os);
4021 dmu_objset_rele(os, FTAG);
4022
13fe0198
MA
4023 at = strchr(zc->zc_name, '@');
4024 if (at != NULL) {
4025 /* snaps must be in same fs */
9554185d
SH
4026 int error;
4027
13fe0198 4028 if (strncmp(zc->zc_name, zc->zc_value, at - zc->zc_name + 1))
2e528b49 4029 return (SET_ERROR(EXDEV));
13fe0198 4030 *at = '\0';
dc1c630b 4031 if (ost == DMU_OST_ZFS) {
9554185d 4032 error = dmu_objset_find(zc->zc_name,
13fe0198
MA
4033 recursive_unmount, at + 1,
4034 recursive ? DS_FIND_CHILDREN : 0);
9554185d
SH
4035 if (error != 0) {
4036 *at = '@';
13fe0198 4037 return (error);
9554185d 4038 }
13fe0198 4039 }
9554185d
SH
4040 error = dsl_dataset_rename_snapshot(zc->zc_name,
4041 at + 1, strchr(zc->zc_value, '@') + 1, recursive);
4042 *at = '@';
4043
4044 return (error);
13fe0198 4045 } else {
ba6a2402 4046 return (dsl_dir_rename(zc->zc_name, zc->zc_value));
95c73795 4047 }
34dc7c2f
BB
4048}
4049
428870ff
BB
4050static int
4051zfs_check_settable(const char *dsname, nvpair_t *pair, cred_t *cr)
4052{
4053 const char *propname = nvpair_name(pair);
4054 boolean_t issnap = (strchr(dsname, '@') != NULL);
4055 zfs_prop_t prop = zfs_name_to_prop(propname);
4056 uint64_t intval;
4057 int err;
4058
4059 if (prop == ZPROP_INVAL) {
4060 if (zfs_prop_user(propname)) {
c65aa5b2
BB
4061 if ((err = zfs_secpolicy_write_perms(dsname,
4062 ZFS_DELEG_PERM_USERPROP, cr)))
428870ff
BB
4063 return (err);
4064 return (0);
4065 }
4066
4067 if (!issnap && zfs_prop_userquota(propname)) {
4068 const char *perm = NULL;
4069 const char *uq_prefix =
4070 zfs_userquota_prop_prefixes[ZFS_PROP_USERQUOTA];
4071 const char *gq_prefix =
4072 zfs_userquota_prop_prefixes[ZFS_PROP_GROUPQUOTA];
1de321e6
JX
4073 const char *uiq_prefix =
4074 zfs_userquota_prop_prefixes[ZFS_PROP_USEROBJQUOTA];
4075 const char *giq_prefix =
4076 zfs_userquota_prop_prefixes[ZFS_PROP_GROUPOBJQUOTA];
9c5167d1
NF
4077 const char *pq_prefix =
4078 zfs_userquota_prop_prefixes[ZFS_PROP_PROJECTQUOTA];
4079 const char *piq_prefix = zfs_userquota_prop_prefixes[\
4080 ZFS_PROP_PROJECTOBJQUOTA];
428870ff
BB
4081
4082 if (strncmp(propname, uq_prefix,
4083 strlen(uq_prefix)) == 0) {
4084 perm = ZFS_DELEG_PERM_USERQUOTA;
1de321e6
JX
4085 } else if (strncmp(propname, uiq_prefix,
4086 strlen(uiq_prefix)) == 0) {
4087 perm = ZFS_DELEG_PERM_USEROBJQUOTA;
428870ff
BB
4088 } else if (strncmp(propname, gq_prefix,
4089 strlen(gq_prefix)) == 0) {
4090 perm = ZFS_DELEG_PERM_GROUPQUOTA;
1de321e6
JX
4091 } else if (strncmp(propname, giq_prefix,
4092 strlen(giq_prefix)) == 0) {
4093 perm = ZFS_DELEG_PERM_GROUPOBJQUOTA;
9c5167d1
NF
4094 } else if (strncmp(propname, pq_prefix,
4095 strlen(pq_prefix)) == 0) {
4096 perm = ZFS_DELEG_PERM_PROJECTQUOTA;
4097 } else if (strncmp(propname, piq_prefix,
4098 strlen(piq_prefix)) == 0) {
4099 perm = ZFS_DELEG_PERM_PROJECTOBJQUOTA;
428870ff 4100 } else {
9c5167d1 4101 /* {USER|GROUP|PROJECT}USED are read-only */
2e528b49 4102 return (SET_ERROR(EINVAL));
428870ff
BB
4103 }
4104
c65aa5b2 4105 if ((err = zfs_secpolicy_write_perms(dsname, perm, cr)))
428870ff
BB
4106 return (err);
4107 return (0);
4108 }
4109
2e528b49 4110 return (SET_ERROR(EINVAL));
428870ff
BB
4111 }
4112
4113 if (issnap)
2e528b49 4114 return (SET_ERROR(EINVAL));
428870ff
BB
4115
4116 if (nvpair_type(pair) == DATA_TYPE_NVLIST) {
4117 /*
4118 * dsl_prop_get_all_impl() returns properties in this
4119 * format.
4120 */
4121 nvlist_t *attrs;
4122 VERIFY(nvpair_value_nvlist(pair, &attrs) == 0);
4123 VERIFY(nvlist_lookup_nvpair(attrs, ZPROP_VALUE,
4124 &pair) == 0);
4125 }
4126
4127 /*
4128 * Check that this value is valid for this pool version
4129 */
4130 switch (prop) {
4131 case ZFS_PROP_COMPRESSION:
4132 /*
4133 * If the user specified gzip compression, make sure
4134 * the SPA supports it. We ignore any errors here since
4135 * we'll catch them later.
4136 */
f1512ee6 4137 if (nvpair_value_uint64(pair, &intval) == 0) {
428870ff
BB
4138 if (intval >= ZIO_COMPRESS_GZIP_1 &&
4139 intval <= ZIO_COMPRESS_GZIP_9 &&
4140 zfs_earlier_version(dsname,
4141 SPA_VERSION_GZIP_COMPRESSION)) {
2e528b49 4142 return (SET_ERROR(ENOTSUP));
428870ff
BB
4143 }
4144
4145 if (intval == ZIO_COMPRESS_ZLE &&
4146 zfs_earlier_version(dsname,
4147 SPA_VERSION_ZLE_COMPRESSION))
2e528b49 4148 return (SET_ERROR(ENOTSUP));
428870ff 4149
9759c60f 4150 if (intval == ZIO_COMPRESS_LZ4) {
9759c60f
ED
4151 spa_t *spa;
4152
4153 if ((err = spa_open(dsname, &spa, FTAG)) != 0)
4154 return (err);
4155
fa86b5db
MA
4156 if (!spa_feature_is_enabled(spa,
4157 SPA_FEATURE_LZ4_COMPRESS)) {
9759c60f 4158 spa_close(spa, FTAG);
2e528b49 4159 return (SET_ERROR(ENOTSUP));
9759c60f
ED
4160 }
4161 spa_close(spa, FTAG);
4162 }
4163
428870ff
BB
4164 /*
4165 * If this is a bootable dataset then
4166 * verify that the compression algorithm
4167 * is supported for booting. We must return
4168 * something other than ENOTSUP since it
4169 * implies a downrev pool version.
4170 */
4171 if (zfs_is_bootfs(dsname) &&
4172 !BOOTFS_COMPRESS_VALID(intval)) {
2e528b49 4173 return (SET_ERROR(ERANGE));
428870ff
BB
4174 }
4175 }
4176 break;
4177
4178 case ZFS_PROP_COPIES:
4179 if (zfs_earlier_version(dsname, SPA_VERSION_DITTO_BLOCKS))
2e528b49 4180 return (SET_ERROR(ENOTSUP));
428870ff
BB
4181 break;
4182
4cb7b9c5 4183 case ZFS_PROP_VOLBLOCKSIZE:
f1512ee6
MA
4184 case ZFS_PROP_RECORDSIZE:
4185 /* Record sizes above 128k need the feature to be enabled */
4186 if (nvpair_value_uint64(pair, &intval) == 0 &&
4187 intval > SPA_OLD_MAXBLOCKSIZE) {
4188 spa_t *spa;
4189
f1512ee6
MA
4190 /*
4191 * We don't allow setting the property above 1MB,
4192 * unless the tunable has been changed.
4193 */
4194 if (intval > zfs_max_recordsize ||
4195 intval > SPA_MAXBLOCKSIZE)
4b2a3e0c 4196 return (SET_ERROR(ERANGE));
f1512ee6
MA
4197
4198 if ((err = spa_open(dsname, &spa, FTAG)) != 0)
4199 return (err);
4200
4201 if (!spa_feature_is_enabled(spa,
4202 SPA_FEATURE_LARGE_BLOCKS)) {
4203 spa_close(spa, FTAG);
4204 return (SET_ERROR(ENOTSUP));
4205 }
4206 spa_close(spa, FTAG);
4207 }
4208 break;
4209
50c957f7
NB
4210 case ZFS_PROP_DNODESIZE:
4211 /* Dnode sizes above 512 need the feature to be enabled */
4212 if (nvpair_value_uint64(pair, &intval) == 0 &&
4213 intval != ZFS_DNSIZE_LEGACY) {
4214 spa_t *spa;
4215
4216 /*
4217 * If this is a bootable dataset then
4218 * we don't allow large (>512B) dnodes,
4219 * because GRUB doesn't support them.
4220 */
4221 if (zfs_is_bootfs(dsname) &&
02730c33 4222 intval != ZFS_DNSIZE_LEGACY) {
50c957f7
NB
4223 return (SET_ERROR(EDOM));
4224 }
4225
4226 if ((err = spa_open(dsname, &spa, FTAG)) != 0)
4227 return (err);
4228
4229 if (!spa_feature_is_enabled(spa,
4230 SPA_FEATURE_LARGE_DNODE)) {
4231 spa_close(spa, FTAG);
4232 return (SET_ERROR(ENOTSUP));
4233 }
4234 spa_close(spa, FTAG);
4235 }
4236 break;
4237
cc99f275
DB
4238 case ZFS_PROP_SPECIAL_SMALL_BLOCKS:
4239 /*
4240 * This property could require the allocation classes
4241 * feature to be active for setting, however we allow
4242 * it so that tests of settable properties succeed.
4243 * The CLI will issue a warning in this case.
4244 */
4245 break;
4246
428870ff
BB
4247 case ZFS_PROP_SHARESMB:
4248 if (zpl_earlier_version(dsname, ZPL_VERSION_FUID))
2e528b49 4249 return (SET_ERROR(ENOTSUP));
428870ff
BB
4250 break;
4251
4252 case ZFS_PROP_ACLINHERIT:
4253 if (nvpair_type(pair) == DATA_TYPE_UINT64 &&
4254 nvpair_value_uint64(pair, &intval) == 0) {
4255 if (intval == ZFS_ACL_PASSTHROUGH_X &&
4256 zfs_earlier_version(dsname,
4257 SPA_VERSION_PASSTHROUGH_X))
2e528b49 4258 return (SET_ERROR(ENOTSUP));
428870ff
BB
4259 }
4260 break;
3c67d83a
TH
4261 case ZFS_PROP_CHECKSUM:
4262 case ZFS_PROP_DEDUP:
4263 {
4264 spa_feature_t feature;
4265 spa_t *spa;
3c67d83a
TH
4266 int err;
4267
4268 /* dedup feature version checks */
4269 if (prop == ZFS_PROP_DEDUP &&
4270 zfs_earlier_version(dsname, SPA_VERSION_DEDUP))
4271 return (SET_ERROR(ENOTSUP));
4272
c8c30836 4273 if (nvpair_type(pair) == DATA_TYPE_UINT64 &&
4274 nvpair_value_uint64(pair, &intval) == 0) {
4275 /* check prop value is enabled in features */
4276 feature = zio_checksum_to_feature(
4277 intval & ZIO_CHECKSUM_MASK);
4278 if (feature == SPA_FEATURE_NONE)
4279 break;
3c67d83a 4280
c8c30836 4281 if ((err = spa_open(dsname, &spa, FTAG)) != 0)
4282 return (err);
5fadb7fb 4283
c8c30836 4284 if (!spa_feature_is_enabled(spa, feature)) {
4285 spa_close(spa, FTAG);
4286 return (SET_ERROR(ENOTSUP));
4287 }
3c67d83a 4288 spa_close(spa, FTAG);
3c67d83a 4289 }
3c67d83a
TH
4290 break;
4291 }
4292
e75c13c3
BB
4293 default:
4294 break;
428870ff
BB
4295 }
4296
4297 return (zfs_secpolicy_setprop(dsname, prop, pair, CRED()));
4298}
4299
4300/*
4301 * Removes properties from the given props list that fail permission checks
4302 * needed to clear them and to restore them in case of a receive error. For each
4303 * property, make sure we have both set and inherit permissions.
4304 *
4305 * Returns the first error encountered if any permission checks fail. If the
4306 * caller provides a non-NULL errlist, it also gives the complete list of names
4307 * of all the properties that failed a permission check along with the
4308 * corresponding error numbers. The caller is responsible for freeing the
4309 * returned errlist.
4310 *
4311 * If every property checks out successfully, zero is returned and the list
4312 * pointed at by errlist is NULL.
4313 */
4314static int
4315zfs_check_clearable(char *dataset, nvlist_t *props, nvlist_t **errlist)
b128c09f
BB
4316{
4317 zfs_cmd_t *zc;
428870ff
BB
4318 nvpair_t *pair, *next_pair;
4319 nvlist_t *errors;
4320 int err, rv = 0;
b128c09f
BB
4321
4322 if (props == NULL)
428870ff
BB
4323 return (0);
4324
4325 VERIFY(nvlist_alloc(&errors, NV_UNIQUE_NAME, KM_SLEEP) == 0);
4326
efcd79a8 4327 zc = kmem_alloc(sizeof (zfs_cmd_t), KM_SLEEP);
680eada9 4328 (void) strlcpy(zc->zc_name, dataset, sizeof (zc->zc_name));
428870ff
BB
4329 pair = nvlist_next_nvpair(props, NULL);
4330 while (pair != NULL) {
4331 next_pair = nvlist_next_nvpair(props, pair);
4332
680eada9 4333 (void) strlcpy(zc->zc_value, nvpair_name(pair),
4334 sizeof (zc->zc_value));
428870ff 4335 if ((err = zfs_check_settable(dataset, pair, CRED())) != 0 ||
6f1ffb06 4336 (err = zfs_secpolicy_inherit_prop(zc, NULL, CRED())) != 0) {
428870ff
BB
4337 VERIFY(nvlist_remove_nvpair(props, pair) == 0);
4338 VERIFY(nvlist_add_int32(errors,
4339 zc->zc_value, err) == 0);
4340 }
4341 pair = next_pair;
b128c09f
BB
4342 }
4343 kmem_free(zc, sizeof (zfs_cmd_t));
428870ff
BB
4344
4345 if ((pair = nvlist_next_nvpair(errors, NULL)) == NULL) {
4346 nvlist_free(errors);
4347 errors = NULL;
4348 } else {
4349 VERIFY(nvpair_value_int32(pair, &rv) == 0);
4350 }
4351
4352 if (errlist == NULL)
4353 nvlist_free(errors);
4354 else
4355 *errlist = errors;
4356
4357 return (rv);
4358}
4359
4360static boolean_t
4361propval_equals(nvpair_t *p1, nvpair_t *p2)
4362{
4363 if (nvpair_type(p1) == DATA_TYPE_NVLIST) {
4364 /* dsl_prop_get_all_impl() format */
4365 nvlist_t *attrs;
4366 VERIFY(nvpair_value_nvlist(p1, &attrs) == 0);
4367 VERIFY(nvlist_lookup_nvpair(attrs, ZPROP_VALUE,
4368 &p1) == 0);
4369 }
4370
4371 if (nvpair_type(p2) == DATA_TYPE_NVLIST) {
4372 nvlist_t *attrs;
4373 VERIFY(nvpair_value_nvlist(p2, &attrs) == 0);
4374 VERIFY(nvlist_lookup_nvpair(attrs, ZPROP_VALUE,
4375 &p2) == 0);
4376 }
4377
4378 if (nvpair_type(p1) != nvpair_type(p2))
4379 return (B_FALSE);
4380
4381 if (nvpair_type(p1) == DATA_TYPE_STRING) {
4382 char *valstr1, *valstr2;
4383
4384 VERIFY(nvpair_value_string(p1, (char **)&valstr1) == 0);
4385 VERIFY(nvpair_value_string(p2, (char **)&valstr2) == 0);
4386 return (strcmp(valstr1, valstr2) == 0);
4387 } else {
4388 uint64_t intval1, intval2;
4389
4390 VERIFY(nvpair_value_uint64(p1, &intval1) == 0);
4391 VERIFY(nvpair_value_uint64(p2, &intval2) == 0);
4392 return (intval1 == intval2);
4393 }
b128c09f
BB
4394}
4395
428870ff
BB
4396/*
4397 * Remove properties from props if they are not going to change (as determined
4398 * by comparison with origprops). Remove them from origprops as well, since we
4399 * do not need to clear or restore properties that won't change.
4400 */
4401static void
4402props_reduce(nvlist_t *props, nvlist_t *origprops)
4403{
4404 nvpair_t *pair, *next_pair;
4405
4406 if (origprops == NULL)
4407 return; /* all props need to be received */
4408
4409 pair = nvlist_next_nvpair(props, NULL);
4410 while (pair != NULL) {
4411 const char *propname = nvpair_name(pair);
4412 nvpair_t *match;
4413
4414 next_pair = nvlist_next_nvpair(props, pair);
4415
4416 if ((nvlist_lookup_nvpair(origprops, propname,
4417 &match) != 0) || !propval_equals(pair, match))
4418 goto next; /* need to set received value */
4419
4420 /* don't clear the existing received value */
4421 (void) nvlist_remove_nvpair(origprops, match);
4422 /* don't bother receiving the property */
4423 (void) nvlist_remove_nvpair(props, pair);
4424next:
4425 pair = next_pair;
4426 }
4427}
4428
671c9354
DM
4429/*
4430 * Extract properties that cannot be set PRIOR to the receipt of a dataset.
4431 * For example, refquota cannot be set until after the receipt of a dataset,
4432 * because in replication streams, an older/earlier snapshot may exceed the
4433 * refquota. We want to receive the older/earlier snapshot, but setting
4434 * refquota pre-receipt will set the dsl's ACTUAL quota, which will prevent
4435 * the older/earlier snapshot from being received (with EDQUOT).
4436 *
4437 * The ZFS test "zfs_receive_011_pos" demonstrates such a scenario.
4438 *
4439 * libzfs will need to be judicious handling errors encountered by props
4440 * extracted by this function.
4441 */
4442static nvlist_t *
4443extract_delay_props(nvlist_t *props)
4444{
4445 nvlist_t *delayprops;
4446 nvpair_t *nvp, *tmp;
b5256303
TC
4447 static const zfs_prop_t delayable[] = {
4448 ZFS_PROP_REFQUOTA,
4449 ZFS_PROP_KEYLOCATION,
4450 0
4451 };
671c9354
DM
4452 int i;
4453
4454 VERIFY(nvlist_alloc(&delayprops, NV_UNIQUE_NAME, KM_SLEEP) == 0);
4455
4456 for (nvp = nvlist_next_nvpair(props, NULL); nvp != NULL;
4457 nvp = nvlist_next_nvpair(props, nvp)) {
4458 /*
4459 * strcmp() is safe because zfs_prop_to_name() always returns
4460 * a bounded string.
4461 */
4462 for (i = 0; delayable[i] != 0; i++) {
4463 if (strcmp(zfs_prop_to_name(delayable[i]),
4464 nvpair_name(nvp)) == 0) {
4465 break;
4466 }
4467 }
4468 if (delayable[i] != 0) {
4469 tmp = nvlist_prev_nvpair(props, nvp);
4470 VERIFY(nvlist_add_nvpair(delayprops, nvp) == 0);
4471 VERIFY(nvlist_remove_nvpair(props, nvp) == 0);
4472 nvp = tmp;
4473 }
4474 }
4475
4476 if (nvlist_empty(delayprops)) {
4477 nvlist_free(delayprops);
4478 delayprops = NULL;
4479 }
4480 return (delayprops);
4481}
4482
428870ff
BB
4483#ifdef DEBUG
4484static boolean_t zfs_ioc_recv_inject_err;
4485#endif
4486
34dc7c2f 4487/*
1bf3bf0e
GN
4488 * nvlist 'errors' is always allocated. It will contain descriptions of
4489 * encountered errors, if any. It's the callers responsibility to free.
34dc7c2f
BB
4490 */
4491static int
a3eeab2d 4492zfs_ioc_recv_impl(char *tofs, char *tosnap, char *origin, nvlist_t *recvprops,
d9c460a0
TC
4493 nvlist_t *localprops, nvlist_t *hidden_args, boolean_t force,
4494 boolean_t resumable, int input_fd, dmu_replay_record_t *begin_record,
4495 int cleanup_fd, uint64_t *read_bytes, uint64_t *errflags,
4496 uint64_t *action_handle, nvlist_t **errors)
34dc7c2f 4497{
34dc7c2f 4498 dmu_recv_cookie_t drc;
428870ff
BB
4499 int error = 0;
4500 int props_error = 0;
34dc7c2f 4501 offset_t off;
d9c460a0
TC
4502 nvlist_t *local_delayprops = NULL;
4503 nvlist_t *recv_delayprops = NULL;
43e52edd 4504 nvlist_t *origprops = NULL; /* existing properties */
a3eeab2d 4505 nvlist_t *origrecvd = NULL; /* existing received properties */
428870ff 4506 boolean_t first_recvd_props = B_FALSE;
43e52edd 4507 file_t *input_fp;
34dc7c2f 4508
1bf3bf0e
GN
4509 *read_bytes = 0;
4510 *errflags = 0;
4511 *errors = fnvlist_alloc();
4512
43e52edd
BB
4513 input_fp = getf(input_fd);
4514 if (input_fp == NULL)
2e528b49 4515 return (SET_ERROR(EBADF));
13fe0198 4516
d9c460a0
TC
4517 error = dmu_recv_begin(tofs, tosnap, begin_record, force,
4518 resumable, localprops, hidden_args, origin, &drc);
13fe0198
MA
4519 if (error != 0)
4520 goto out;
4521
4522 /*
4523 * Set properties before we receive the stream so that they are applied
4524 * to the new data. Note that we must call dmu_recv_stream() if
4525 * dmu_recv_begin() succeeds.
4526 */
a3eeab2d 4527 if (recvprops != NULL && !drc.drc_newfs) {
13fe0198
MA
4528 if (spa_version(dsl_dataset_get_spa(drc.drc_ds)) >=
4529 SPA_VERSION_RECVD_PROPS &&
4530 !dsl_prop_get_hasrecvd(tofs))
428870ff 4531 first_recvd_props = B_TRUE;
428870ff 4532
b128c09f 4533 /*
428870ff 4534 * If new received properties are supplied, they are to
d9c460a0
TC
4535 * completely replace the existing received properties,
4536 * so stash away the existing ones.
b128c09f 4537 */
a3eeab2d 4538 if (dsl_prop_get_received(tofs, &origrecvd) == 0) {
428870ff
BB
4539 nvlist_t *errlist = NULL;
4540 /*
4541 * Don't bother writing a property if its value won't
4542 * change (and avoid the unnecessary security checks).
4543 *
4544 * The first receive after SPA_VERSION_RECVD_PROPS is a
4545 * special case where we blow away all local properties
4546 * regardless.
4547 */
4548 if (!first_recvd_props)
a3eeab2d 4549 props_reduce(recvprops, origrecvd);
4550 if (zfs_check_clearable(tofs, origrecvd, &errlist) != 0)
43e52edd 4551 (void) nvlist_merge(*errors, errlist, 0);
428870ff 4552 nvlist_free(errlist);
b128c09f 4553
a3eeab2d 4554 if (clear_received_props(tofs, origrecvd,
4555 first_recvd_props ? NULL : recvprops) != 0)
4556 *errflags |= ZPROP_ERR_NOCLEAR;
4557 } else {
4558 *errflags |= ZPROP_ERR_NOCLEAR;
4559 }
4560 }
4561
4562 /*
4563 * Stash away existing properties so we can restore them on error unless
4564 * we're doing the first receive after SPA_VERSION_RECVD_PROPS, in which
4565 * case "origrecvd" will take care of that.
4566 */
4567 if (localprops != NULL && !drc.drc_newfs && !first_recvd_props) {
4568 objset_t *os;
4569 if (dmu_objset_hold(tofs, FTAG, &os) == 0) {
4570 if (dsl_prop_get_all(os, &origprops) != 0) {
43e52edd 4571 *errflags |= ZPROP_ERR_NOCLEAR;
a3eeab2d 4572 }
4573 dmu_objset_rele(os, FTAG);
13fe0198 4574 } else {
43e52edd 4575 *errflags |= ZPROP_ERR_NOCLEAR;
428870ff 4576 }
13fe0198
MA
4577 }
4578
a3eeab2d 4579 if (recvprops != NULL) {
13fe0198 4580 props_error = dsl_prop_set_hasrecvd(tofs);
428870ff 4581
13fe0198 4582 if (props_error == 0) {
d9c460a0 4583 recv_delayprops = extract_delay_props(recvprops);
13fe0198 4584 (void) zfs_set_prop_nvlist(tofs, ZPROP_SRC_RECEIVED,
a3eeab2d 4585 recvprops, *errors);
13fe0198 4586 }
428870ff
BB
4587 }
4588
a3eeab2d 4589 if (localprops != NULL) {
4590 nvlist_t *oprops = fnvlist_alloc();
4591 nvlist_t *xprops = fnvlist_alloc();
4592 nvpair_t *nvp = NULL;
4593
4594 while ((nvp = nvlist_next_nvpair(localprops, nvp)) != NULL) {
4595 if (nvpair_type(nvp) == DATA_TYPE_BOOLEAN) {
4596 /* -x property */
4597 const char *name = nvpair_name(nvp);
4598 zfs_prop_t prop = zfs_name_to_prop(name);
4599 if (prop != ZPROP_INVAL) {
4600 if (!zfs_prop_inheritable(prop))
4601 continue;
4602 } else if (!zfs_prop_user(name))
4603 continue;
4604 fnvlist_add_boolean(xprops, name);
4605 } else {
4606 /* -o property=value */
4607 fnvlist_add_nvpair(oprops, nvp);
4608 }
4609 }
d9c460a0
TC
4610
4611 local_delayprops = extract_delay_props(oprops);
a3eeab2d 4612 (void) zfs_set_prop_nvlist(tofs, ZPROP_SRC_LOCAL,
4613 oprops, *errors);
4614 (void) zfs_set_prop_nvlist(tofs, ZPROP_SRC_INHERITED,
4615 xprops, *errors);
4616
4617 nvlist_free(oprops);
4618 nvlist_free(xprops);
4619 }
4620
43e52edd
BB
4621 off = input_fp->f_offset;
4622 error = dmu_recv_stream(&drc, input_fp->f_vnode, &off, cleanup_fd,
4623 action_handle);
34dc7c2f 4624
45d1cae3 4625 if (error == 0) {
0037b49e 4626 zfsvfs_t *zfsvfs = NULL;
040dab99 4627 zvol_state_t *zv = NULL;
b128c09f 4628
f298b24d 4629 if (getzfsvfs(tofs, &zfsvfs) == 0) {
45d1cae3 4630 /* online recv */
ec923db2 4631 dsl_dataset_t *ds;
45d1cae3 4632 int end_err;
b128c09f 4633
0037b49e
BB
4634 ds = dmu_objset_ds(zfsvfs->z_os);
4635 error = zfs_suspend_fs(zfsvfs);
45d1cae3
BB
4636 /*
4637 * If the suspend fails, then the recv_end will
4638 * likely also fail, and clean up after itself.
4639 */
0037b49e 4640 end_err = dmu_recv_end(&drc, zfsvfs);
428870ff 4641 if (error == 0)
0037b49e 4642 error = zfs_resume_fs(zfsvfs, ds);
45d1cae3 4643 error = error ? error : end_err;
0037b49e 4644 deactivate_super(zfsvfs->z_sb);
040dab99
CC
4645 } else if ((zv = zvol_suspend(tofs)) != NULL) {
4646 error = dmu_recv_end(&drc, zvol_tag(zv));
4647 zvol_resume(zv);
b128c09f 4648 } else {
831baf06 4649 error = dmu_recv_end(&drc, NULL);
34dc7c2f 4650 }
671c9354
DM
4651
4652 /* Set delayed properties now, after we're done receiving. */
d9c460a0 4653 if (recv_delayprops != NULL && error == 0) {
671c9354 4654 (void) zfs_set_prop_nvlist(tofs, ZPROP_SRC_RECEIVED,
d9c460a0
TC
4655 recv_delayprops, *errors);
4656 }
4657 if (local_delayprops != NULL && error == 0) {
4658 (void) zfs_set_prop_nvlist(tofs, ZPROP_SRC_LOCAL,
4659 local_delayprops, *errors);
671c9354
DM
4660 }
4661 }
4662
d9c460a0
TC
4663 /*
4664 * Merge delayed props back in with initial props, in case
4665 * we're DEBUG and zfs_ioc_recv_inject_err is set (which means
4666 * we have to make sure clear_received_props() includes
4667 * the delayed properties).
4668 *
4669 * Since zfs_ioc_recv_inject_err is only in DEBUG kernels,
4670 * using ASSERT() will be just like a VERIFY.
4671 */
4672 if (recv_delayprops != NULL) {
4673 ASSERT(nvlist_merge(recvprops, recv_delayprops, 0) == 0);
4674 nvlist_free(recv_delayprops);
4675 }
4676 if (local_delayprops != NULL) {
4677 ASSERT(nvlist_merge(localprops, local_delayprops, 0) == 0);
4678 nvlist_free(local_delayprops);
671c9354 4679 }
34dc7c2f 4680
43e52edd
BB
4681 *read_bytes = off - input_fp->f_offset;
4682 if (VOP_SEEK(input_fp->f_vnode, input_fp->f_offset, &off, NULL) == 0)
02730c33 4683 input_fp->f_offset = off;
34dc7c2f 4684
428870ff
BB
4685#ifdef DEBUG
4686 if (zfs_ioc_recv_inject_err) {
4687 zfs_ioc_recv_inject_err = B_FALSE;
4688 error = 1;
4689 }
4690#endif
ba6a2402 4691
b128c09f
BB
4692 /*
4693 * On error, restore the original props.
4694 */
a3eeab2d 4695 if (error != 0 && recvprops != NULL && !drc.drc_newfs) {
4696 if (clear_received_props(tofs, recvprops, NULL) != 0) {
13fe0198
MA
4697 /*
4698 * We failed to clear the received properties.
4699 * Since we may have left a $recvd value on the
4700 * system, we can't clear the $hasrecvd flag.
4701 */
43e52edd 4702 *errflags |= ZPROP_ERR_NORESTORE;
13fe0198
MA
4703 } else if (first_recvd_props) {
4704 dsl_prop_unset_hasrecvd(tofs);
428870ff
BB
4705 }
4706
a3eeab2d 4707 if (origrecvd == NULL && !drc.drc_newfs) {
428870ff 4708 /* We failed to stash the original properties. */
43e52edd 4709 *errflags |= ZPROP_ERR_NORESTORE;
428870ff
BB
4710 }
4711
4712 /*
4713 * dsl_props_set() will not convert RECEIVED to LOCAL on or
4714 * after SPA_VERSION_RECVD_PROPS, so we need to specify LOCAL
4e33ba4c 4715 * explicitly if we're restoring local properties cleared in the
428870ff
BB
4716 * first new-style receive.
4717 */
a3eeab2d 4718 if (origrecvd != NULL &&
428870ff
BB
4719 zfs_set_prop_nvlist(tofs, (first_recvd_props ?
4720 ZPROP_SRC_LOCAL : ZPROP_SRC_RECEIVED),
a3eeab2d 4721 origrecvd, NULL) != 0) {
428870ff
BB
4722 /*
4723 * We stashed the original properties but failed to
4724 * restore them.
4725 */
43e52edd 4726 *errflags |= ZPROP_ERR_NORESTORE;
428870ff 4727 }
b128c09f 4728 }
a3eeab2d 4729 if (error != 0 && localprops != NULL && !drc.drc_newfs &&
4730 !first_recvd_props) {
4731 nvlist_t *setprops;
4732 nvlist_t *inheritprops;
4733 nvpair_t *nvp;
4734
4735 if (origprops == NULL) {
4736 /* We failed to stash the original properties. */
4737 *errflags |= ZPROP_ERR_NORESTORE;
4738 goto out;
4739 }
4740
4741 /* Restore original props */
4742 setprops = fnvlist_alloc();
4743 inheritprops = fnvlist_alloc();
4744 nvp = NULL;
4745 while ((nvp = nvlist_next_nvpair(localprops, nvp)) != NULL) {
4746 const char *name = nvpair_name(nvp);
4747 const char *source;
4748 nvlist_t *attrs;
4749
4750 if (!nvlist_exists(origprops, name)) {
4751 /*
4752 * Property was not present or was explicitly
4753 * inherited before the receive, restore this.
4754 */
4755 fnvlist_add_boolean(inheritprops, name);
4756 continue;
4757 }
4758 attrs = fnvlist_lookup_nvlist(origprops, name);
4759 source = fnvlist_lookup_string(attrs, ZPROP_SOURCE);
4760
4761 /* Skip received properties */
4762 if (strcmp(source, ZPROP_SOURCE_VAL_RECVD) == 0)
4763 continue;
4764
4765 if (strcmp(source, tofs) == 0) {
4766 /* Property was locally set */
4767 fnvlist_add_nvlist(setprops, name, attrs);
4768 } else {
4769 /* Property was implicitly inherited */
4770 fnvlist_add_boolean(inheritprops, name);
4771 }
4772 }
4773
4774 if (zfs_set_prop_nvlist(tofs, ZPROP_SRC_LOCAL, setprops,
4775 NULL) != 0)
4776 *errflags |= ZPROP_ERR_NORESTORE;
4777 if (zfs_set_prop_nvlist(tofs, ZPROP_SRC_INHERITED, inheritprops,
4778 NULL) != 0)
4779 *errflags |= ZPROP_ERR_NORESTORE;
4780
4781 nvlist_free(setprops);
4782 nvlist_free(inheritprops);
4783 }
b128c09f 4784out:
43e52edd 4785 releasef(input_fd);
a3eeab2d 4786 nvlist_free(origrecvd);
b128c09f 4787 nvlist_free(origprops);
428870ff
BB
4788
4789 if (error == 0)
4790 error = props_error;
4791
34dc7c2f
BB
4792 return (error);
4793}
4794
43e52edd
BB
4795/*
4796 * inputs:
4797 * zc_name name of containing filesystem (unused)
4798 * zc_nvlist_src{_size} nvlist of properties to apply
a3eeab2d 4799 * zc_nvlist_conf{_size} nvlist of properties to exclude
4800 * (DATA_TYPE_BOOLEAN) and override (everything else)
43e52edd
BB
4801 * zc_value name of snapshot to create
4802 * zc_string name of clone origin (if DRR_FLAG_CLONE)
4803 * zc_cookie file descriptor to recv from
4804 * zc_begin_record the BEGIN record of the stream (not byteswapped)
4805 * zc_guid force flag
4806 * zc_cleanup_fd cleanup-on-exit file descriptor
4807 * zc_action_handle handle for this guid/ds mapping (or zero on first call)
4808 *
4809 * outputs:
4810 * zc_cookie number of bytes read
4811 * zc_obj zprop_errflags_t
4812 * zc_action_handle handle for this guid/ds mapping
4813 * zc_nvlist_dst{_size} error for each unapplied received property
4814 */
4815static int
4816zfs_ioc_recv(zfs_cmd_t *zc)
4817{
4818 dmu_replay_record_t begin_record;
4819 nvlist_t *errors = NULL;
a3eeab2d 4820 nvlist_t *recvdprops = NULL;
4821 nvlist_t *localprops = NULL;
43e52edd
BB
4822 char *origin = NULL;
4823 char *tosnap;
eca7b760 4824 char tofs[ZFS_MAX_DATASET_NAME_LEN];
43e52edd
BB
4825 int error = 0;
4826
4827 if (dataset_namecheck(zc->zc_value, NULL, NULL) != 0 ||
4828 strchr(zc->zc_value, '@') == NULL ||
4829 strchr(zc->zc_value, '%'))
4830 return (SET_ERROR(EINVAL));
4831
30f3f2e1 4832 (void) strlcpy(tofs, zc->zc_value, sizeof (tofs));
43e52edd
BB
4833 tosnap = strchr(tofs, '@');
4834 *tosnap++ = '\0';
4835
4836 if (zc->zc_nvlist_src != 0 &&
4837 (error = get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
a3eeab2d 4838 zc->zc_iflags, &recvdprops)) != 0)
4839 return (error);
4840
4841 if (zc->zc_nvlist_conf != 0 &&
4842 (error = get_nvlist(zc->zc_nvlist_conf, zc->zc_nvlist_conf_size,
4843 zc->zc_iflags, &localprops)) != 0)
43e52edd
BB
4844 return (error);
4845
4846 if (zc->zc_string[0])
4847 origin = zc->zc_string;
4848
4849 begin_record.drr_type = DRR_BEGIN;
4850 begin_record.drr_payloadlen = 0;
4851 begin_record.drr_u.drr_begin = zc->zc_begin_record;
4852
a3eeab2d 4853 error = zfs_ioc_recv_impl(tofs, tosnap, origin, recvdprops, localprops,
d9c460a0 4854 NULL, zc->zc_guid, B_FALSE, zc->zc_cookie, &begin_record,
a3eeab2d 4855 zc->zc_cleanup_fd, &zc->zc_cookie, &zc->zc_obj,
4856 &zc->zc_action_handle, &errors);
4857 nvlist_free(recvdprops);
4858 nvlist_free(localprops);
43e52edd
BB
4859
4860 /*
4861 * Now that all props, initial and delayed, are set, report the prop
4862 * errors to the caller.
4863 */
4864 if (zc->zc_nvlist_dst_size != 0 && errors != NULL &&
4865 (nvlist_smush(errors, zc->zc_nvlist_dst_size) != 0 ||
4866 put_nvlist(zc, errors) != 0)) {
4867 /*
4868 * Caller made zc->zc_nvlist_dst less than the minimum expected
4869 * size or supplied an invalid address.
4870 */
4871 error = SET_ERROR(EINVAL);
4872 }
4873
4874 nvlist_free(errors);
4875
4876 return (error);
4877}
4878
4879/*
4880 * innvl: {
4881 * "snapname" -> full name of the snapshot to create
a3eeab2d 4882 * (optional) "props" -> received properties to set (nvlist)
4883 * (optional) "localprops" -> override and exclude properties (nvlist)
43e52edd
BB
4884 * (optional) "origin" -> name of clone origin (DRR_FLAG_CLONE)
4885 * "begin_record" -> non-byteswapped dmu_replay_record_t
4886 * "input_fd" -> file descriptor to read stream from (int32)
4887 * (optional) "force" -> force flag (value ignored)
4888 * (optional) "resumable" -> resumable flag (value ignored)
4889 * (optional) "cleanup_fd" -> cleanup-on-exit file descriptor
4890 * (optional) "action_handle" -> handle for this guid/ds mapping
b83a0e2d 4891 * (optional) "hidden_args" -> { "wkeydata" -> value }
43e52edd
BB
4892 * }
4893 *
4894 * outnvl: {
4895 * "read_bytes" -> number of bytes read
4896 * "error_flags" -> zprop_errflags_t
4897 * "action_handle" -> handle for this guid/ds mapping
4898 * "errors" -> error for each unapplied received property (nvlist)
4899 * }
4900 */
b83a0e2d
DB
4901static const zfs_ioc_key_t zfs_keys_recv_new[] = {
4902 {"snapname", DATA_TYPE_STRING, 0},
4903 {"props", DATA_TYPE_NVLIST, ZK_OPTIONAL},
4904 {"localprops", DATA_TYPE_NVLIST, ZK_OPTIONAL},
4905 {"origin", DATA_TYPE_STRING, ZK_OPTIONAL},
4906 {"begin_record", DATA_TYPE_BYTE_ARRAY, 0},
4907 {"input_fd", DATA_TYPE_INT32, 0},
4908 {"force", DATA_TYPE_BOOLEAN, ZK_OPTIONAL},
4909 {"resumable", DATA_TYPE_BOOLEAN, ZK_OPTIONAL},
4910 {"cleanup_fd", DATA_TYPE_INT32, ZK_OPTIONAL},
4911 {"action_handle", DATA_TYPE_UINT64, ZK_OPTIONAL},
4912 {"hidden_args", DATA_TYPE_NVLIST, ZK_OPTIONAL},
4913};
4914
43e52edd
BB
4915static int
4916zfs_ioc_recv_new(const char *fsname, nvlist_t *innvl, nvlist_t *outnvl)
4917{
4918 dmu_replay_record_t *begin_record;
4919 uint_t begin_record_size;
4920 nvlist_t *errors = NULL;
a3eeab2d 4921 nvlist_t *recvprops = NULL;
4922 nvlist_t *localprops = NULL;
d9c460a0 4923 nvlist_t *hidden_args = NULL;
b83a0e2d 4924 char *snapname;
43e52edd
BB
4925 char *origin = NULL;
4926 char *tosnap;
eca7b760 4927 char tofs[ZFS_MAX_DATASET_NAME_LEN];
43e52edd
BB
4928 boolean_t force;
4929 boolean_t resumable;
4930 uint64_t action_handle = 0;
4931 uint64_t read_bytes = 0;
4932 uint64_t errflags = 0;
4933 int input_fd = -1;
4934 int cleanup_fd = -1;
4935 int error;
4936
b83a0e2d 4937 snapname = fnvlist_lookup_string(innvl, "snapname");
43e52edd
BB
4938
4939 if (dataset_namecheck(snapname, NULL, NULL) != 0 ||
4940 strchr(snapname, '@') == NULL ||
4941 strchr(snapname, '%'))
4942 return (SET_ERROR(EINVAL));
4943
4944 (void) strcpy(tofs, snapname);
4945 tosnap = strchr(tofs, '@');
4946 *tosnap++ = '\0';
4947
4948 error = nvlist_lookup_string(innvl, "origin", &origin);
4949 if (error && error != ENOENT)
4950 return (error);
4951
4952 error = nvlist_lookup_byte_array(innvl, "begin_record",
02730c33 4953 (uchar_t **)&begin_record, &begin_record_size);
43e52edd
BB
4954 if (error != 0 || begin_record_size != sizeof (*begin_record))
4955 return (SET_ERROR(EINVAL));
4956
b83a0e2d 4957 input_fd = fnvlist_lookup_int32(innvl, "input_fd");
43e52edd
BB
4958
4959 force = nvlist_exists(innvl, "force");
4960 resumable = nvlist_exists(innvl, "resumable");
4961
4962 error = nvlist_lookup_int32(innvl, "cleanup_fd", &cleanup_fd);
4963 if (error && error != ENOENT)
4964 return (error);
4965
4966 error = nvlist_lookup_uint64(innvl, "action_handle", &action_handle);
4967 if (error && error != ENOENT)
4968 return (error);
4969
a3eeab2d 4970 /* we still use "props" here for backwards compatibility */
4971 error = nvlist_lookup_nvlist(innvl, "props", &recvprops);
43e52edd
BB
4972 if (error && error != ENOENT)
4973 return (error);
4974
a3eeab2d 4975 error = nvlist_lookup_nvlist(innvl, "localprops", &localprops);
4976 if (error && error != ENOENT)
4977 return (error);
4978
d9c460a0
TC
4979 error = nvlist_lookup_nvlist(innvl, ZPOOL_HIDDEN_ARGS, &hidden_args);
4980 if (error && error != ENOENT)
4981 return (error);
4982
a3eeab2d 4983 error = zfs_ioc_recv_impl(tofs, tosnap, origin, recvprops, localprops,
d9c460a0
TC
4984 hidden_args, force, resumable, input_fd, begin_record, cleanup_fd,
4985 &read_bytes, &errflags, &action_handle, &errors);
43e52edd
BB
4986
4987 fnvlist_add_uint64(outnvl, "read_bytes", read_bytes);
4988 fnvlist_add_uint64(outnvl, "error_flags", errflags);
4989 fnvlist_add_uint64(outnvl, "action_handle", action_handle);
4990 fnvlist_add_nvlist(outnvl, "errors", errors);
4991
4992 nvlist_free(errors);
a3eeab2d 4993 nvlist_free(recvprops);
4994 nvlist_free(localprops);
43e52edd
BB
4995
4996 return (error);
4997}
4998
34dc7c2f
BB
4999/*
5000 * inputs:
5001 * zc_name name of snapshot to send
34dc7c2f 5002 * zc_cookie file descriptor to send stream to
572e2857
BB
5003 * zc_obj fromorigin flag (mutually exclusive with zc_fromobj)
5004 * zc_sendobj objsetid of snapshot to send
5005 * zc_fromobj objsetid of incremental fromsnap (may be zero)
330d06f9
MA
5006 * zc_guid if set, estimate size of stream only. zc_cookie is ignored.
5007 * output size in zc_objset_type.
f1512ee6 5008 * zc_flags lzc_send_flags
34dc7c2f 5009 *
da536844
MA
5010 * outputs:
5011 * zc_objset_type estimated size, if zc_guid is set
cf7684bc 5012 *
5013 * NOTE: This is no longer the preferred interface, any new functionality
5014 * should be added to zfs_ioc_send_new() instead.
34dc7c2f
BB
5015 */
5016static int
5017zfs_ioc_send(zfs_cmd_t *zc)
5018{
34dc7c2f
BB
5019 int error;
5020 offset_t off;
330d06f9 5021 boolean_t estimate = (zc->zc_guid != 0);
9b67f605 5022 boolean_t embedok = (zc->zc_flags & 0x1);
f1512ee6 5023 boolean_t large_block_ok = (zc->zc_flags & 0x2);
2aa34383 5024 boolean_t compressok = (zc->zc_flags & 0x4);
b5256303 5025 boolean_t rawok = (zc->zc_flags & 0x8);
34dc7c2f 5026
13fe0198
MA
5027 if (zc->zc_obj != 0) {
5028 dsl_pool_t *dp;
5029 dsl_dataset_t *tosnap;
34dc7c2f 5030
13fe0198
MA
5031 error = dsl_pool_hold(zc->zc_name, FTAG, &dp);
5032 if (error != 0)
572e2857 5033 return (error);
13fe0198
MA
5034
5035 error = dsl_dataset_hold_obj(dp, zc->zc_sendobj, FTAG, &tosnap);
5036 if (error != 0) {
5037 dsl_pool_rele(dp, FTAG);
34dc7c2f
BB
5038 return (error);
5039 }
13fe0198
MA
5040
5041 if (dsl_dir_is_clone(tosnap->ds_dir))
d683ddbb
JG
5042 zc->zc_fromobj =
5043 dsl_dir_phys(tosnap->ds_dir)->dd_origin_obj;
13fe0198
MA
5044 dsl_dataset_rele(tosnap, FTAG);
5045 dsl_pool_rele(dp, FTAG);
6f1ffb06
MA
5046 }
5047
13fe0198
MA
5048 if (estimate) {
5049 dsl_pool_t *dp;
5050 dsl_dataset_t *tosnap;
5051 dsl_dataset_t *fromsnap = NULL;
5052
5053 error = dsl_pool_hold(zc->zc_name, FTAG, &dp);
5054 if (error != 0)
5055 return (error);
6f1ffb06 5056
b5256303
TC
5057 error = dsl_dataset_hold_obj(dp, zc->zc_sendobj,
5058 FTAG, &tosnap);
13fe0198
MA
5059 if (error != 0) {
5060 dsl_pool_rele(dp, FTAG);
5061 return (error);
6f1ffb06
MA
5062 }
5063
13fe0198
MA
5064 if (zc->zc_fromobj != 0) {
5065 error = dsl_dataset_hold_obj(dp, zc->zc_fromobj,
5066 FTAG, &fromsnap);
5067 if (error != 0) {
5068 dsl_dataset_rele(tosnap, FTAG);
5069 dsl_pool_rele(dp, FTAG);
6f1ffb06
MA
5070 return (error);
5071 }
5072 }
34dc7c2f 5073
b5256303 5074 error = dmu_send_estimate(tosnap, fromsnap, compressok || rawok,
330d06f9 5075 &zc->zc_objset_type);
13fe0198
MA
5076
5077 if (fromsnap != NULL)
5078 dsl_dataset_rele(fromsnap, FTAG);
5079 dsl_dataset_rele(tosnap, FTAG);
5080 dsl_pool_rele(dp, FTAG);
330d06f9
MA
5081 } else {
5082 file_t *fp = getf(zc->zc_cookie);
13fe0198 5083 if (fp == NULL)
2e528b49 5084 return (SET_ERROR(EBADF));
34dc7c2f 5085
330d06f9 5086 off = fp->f_offset;
13fe0198 5087 error = dmu_send_obj(zc->zc_name, zc->zc_sendobj,
b5256303 5088 zc->zc_fromobj, embedok, large_block_ok, compressok, rawok,
f1512ee6 5089 zc->zc_cookie, fp->f_vnode, &off);
34dc7c2f 5090
330d06f9
MA
5091 if (VOP_SEEK(fp->f_vnode, fp->f_offset, &off, NULL) == 0)
5092 fp->f_offset = off;
5093 releasef(zc->zc_cookie);
5094 }
34dc7c2f
BB
5095 return (error);
5096}
5097
37abac6d
BP
5098/*
5099 * inputs:
5100 * zc_name name of snapshot on which to report progress
5101 * zc_cookie file descriptor of send stream
5102 *
5103 * outputs:
5104 * zc_cookie number of bytes written in send stream thus far
5105 */
5106static int
5107zfs_ioc_send_progress(zfs_cmd_t *zc)
5108{
13fe0198 5109 dsl_pool_t *dp;
37abac6d
BP
5110 dsl_dataset_t *ds;
5111 dmu_sendarg_t *dsp = NULL;
5112 int error;
5113
13fe0198
MA
5114 error = dsl_pool_hold(zc->zc_name, FTAG, &dp);
5115 if (error != 0)
37abac6d
BP
5116 return (error);
5117
13fe0198
MA
5118 error = dsl_dataset_hold(dp, zc->zc_name, FTAG, &ds);
5119 if (error != 0) {
5120 dsl_pool_rele(dp, FTAG);
5121 return (error);
5122 }
5123
37abac6d
BP
5124 mutex_enter(&ds->ds_sendstream_lock);
5125
5126 /*
5127 * Iterate over all the send streams currently active on this dataset.
5128 * If there's one which matches the specified file descriptor _and_ the
5129 * stream was started by the current process, return the progress of
5130 * that stream.
5131 */
5132
5133 for (dsp = list_head(&ds->ds_sendstreams); dsp != NULL;
5134 dsp = list_next(&ds->ds_sendstreams, dsp)) {
5135 if (dsp->dsa_outfd == zc->zc_cookie &&
5136 dsp->dsa_proc->group_leader == curproc->group_leader)
5137 break;
5138 }
5139
5140 if (dsp != NULL)
5141 zc->zc_cookie = *(dsp->dsa_off);
5142 else
2e528b49 5143 error = SET_ERROR(ENOENT);
37abac6d
BP
5144
5145 mutex_exit(&ds->ds_sendstream_lock);
5146 dsl_dataset_rele(ds, FTAG);
13fe0198 5147 dsl_pool_rele(dp, FTAG);
37abac6d
BP
5148 return (error);
5149}
5150
34dc7c2f
BB
5151static int
5152zfs_ioc_inject_fault(zfs_cmd_t *zc)
5153{
5154 int id, error;
5155
5156 error = zio_inject_fault(zc->zc_name, (int)zc->zc_guid, &id,
5157 &zc->zc_inject_record);
5158
5159 if (error == 0)
5160 zc->zc_guid = (uint64_t)id;
5161
5162 return (error);
5163}
5164
5165static int
5166zfs_ioc_clear_fault(zfs_cmd_t *zc)
5167{
5168 return (zio_clear_fault((int)zc->zc_guid));
5169}
5170
5171static int
5172zfs_ioc_inject_list_next(zfs_cmd_t *zc)
5173{
5174 int id = (int)zc->zc_guid;
5175 int error;
5176
5177 error = zio_inject_list_next(&id, zc->zc_name, sizeof (zc->zc_name),
5178 &zc->zc_inject_record);
5179
5180 zc->zc_guid = id;
5181
5182 return (error);
5183}
5184
5185static int
5186zfs_ioc_error_log(zfs_cmd_t *zc)
5187{
5188 spa_t *spa;
5189 int error;
5190 size_t count = (size_t)zc->zc_nvlist_dst_size;
5191
5192 if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0)
5193 return (error);
5194
5195 error = spa_get_errlog(spa, (void *)(uintptr_t)zc->zc_nvlist_dst,
5196 &count);
5197 if (error == 0)
5198 zc->zc_nvlist_dst_size = count;
5199 else
5200 zc->zc_nvlist_dst_size = spa_get_errlog_size(spa);
5201
5202 spa_close(spa, FTAG);
5203
5204 return (error);
5205}
5206
5207static int
5208zfs_ioc_clear(zfs_cmd_t *zc)
5209{
5210 spa_t *spa;
5211 vdev_t *vd;
34dc7c2f
BB
5212 int error;
5213
34dc7c2f 5214 /*
b128c09f 5215 * On zpool clear we also fix up missing slogs
34dc7c2f 5216 */
b128c09f
BB
5217 mutex_enter(&spa_namespace_lock);
5218 spa = spa_lookup(zc->zc_name);
5219 if (spa == NULL) {
5220 mutex_exit(&spa_namespace_lock);
2e528b49 5221 return (SET_ERROR(EIO));
b128c09f 5222 }
428870ff 5223 if (spa_get_log_state(spa) == SPA_LOG_MISSING) {
b128c09f 5224 /* we need to let spa_open/spa_load clear the chains */
428870ff 5225 spa_set_log_state(spa, SPA_LOG_CLEAR);
34dc7c2f 5226 }
428870ff 5227 spa->spa_last_open_failed = 0;
b128c09f 5228 mutex_exit(&spa_namespace_lock);
34dc7c2f 5229
428870ff
BB
5230 if (zc->zc_cookie & ZPOOL_NO_REWIND) {
5231 error = spa_open(zc->zc_name, &spa, FTAG);
5232 } else {
5233 nvlist_t *policy;
5234 nvlist_t *config = NULL;
5235
b8864a23 5236 if (zc->zc_nvlist_src == 0)
2e528b49 5237 return (SET_ERROR(EINVAL));
428870ff
BB
5238
5239 if ((error = get_nvlist(zc->zc_nvlist_src,
5240 zc->zc_nvlist_src_size, zc->zc_iflags, &policy)) == 0) {
5241 error = spa_open_rewind(zc->zc_name, &spa, FTAG,
5242 policy, &config);
5243 if (config != NULL) {
572e2857
BB
5244 int err;
5245
5246 if ((err = put_nvlist(zc, config)) != 0)
5247 error = err;
428870ff
BB
5248 nvlist_free(config);
5249 }
5250 nvlist_free(policy);
5251 }
5252 }
5253
13fe0198 5254 if (error != 0)
b128c09f
BB
5255 return (error);
5256
428870ff 5257 spa_vdev_state_enter(spa, SCL_NONE);
34dc7c2f
BB
5258
5259 if (zc->zc_guid == 0) {
5260 vd = NULL;
b128c09f
BB
5261 } else {
5262 vd = spa_lookup_by_guid(spa, zc->zc_guid, B_TRUE);
34dc7c2f 5263 if (vd == NULL) {
b128c09f 5264 (void) spa_vdev_state_exit(spa, NULL, ENODEV);
34dc7c2f 5265 spa_close(spa, FTAG);
2e528b49 5266 return (SET_ERROR(ENODEV));
34dc7c2f
BB
5267 }
5268 }
5269
b128c09f
BB
5270 vdev_clear(spa, vd);
5271
3f759c0c
BB
5272 (void) spa_vdev_state_exit(spa, spa_suspended(spa) ?
5273 NULL : spa->spa_root_vdev, 0);
34dc7c2f 5274
b128c09f
BB
5275 /*
5276 * Resume any suspended I/Os.
5277 */
9babb374 5278 if (zio_resume(spa) != 0)
2e528b49 5279 error = SET_ERROR(EIO);
34dc7c2f
BB
5280
5281 spa_close(spa, FTAG);
5282
9babb374 5283 return (error);
34dc7c2f
BB
5284}
5285
d3f2cd7e
AB
5286/*
5287 * Reopen all the vdevs associated with the pool.
5288 *
5289 * innvl: {
5290 * "scrub_restart" -> when true and scrub is running, allow to restart
5291 * scrub as the side effect of the reopen (boolean).
5292 * }
5293 *
5294 * outnvl is unused
5295 */
b83a0e2d
DB
5296static const zfs_ioc_key_t zfs_keys_pool_reopen[] = {
5297 {"scrub_restart", DATA_TYPE_BOOLEAN_VALUE, 0},
5298};
5299
d3f2cd7e 5300/* ARGSUSED */
1bd201e7 5301static int
d3f2cd7e 5302zfs_ioc_pool_reopen(const char *pool, nvlist_t *innvl, nvlist_t *outnvl)
1bd201e7
CS
5303{
5304 spa_t *spa;
5305 int error;
d3f2cd7e 5306 boolean_t scrub_restart = B_TRUE;
1bd201e7 5307
d3f2cd7e 5308 if (innvl) {
b83a0e2d
DB
5309 scrub_restart = fnvlist_lookup_boolean_value(innvl,
5310 "scrub_restart");
d3f2cd7e
AB
5311 }
5312
5313 error = spa_open(pool, &spa, FTAG);
13fe0198 5314 if (error != 0)
1bd201e7
CS
5315 return (error);
5316
5317 spa_vdev_state_enter(spa, SCL_NONE);
65947351
GW
5318
5319 /*
d3f2cd7e
AB
5320 * If the scrub_restart flag is B_FALSE and a scrub is already
5321 * in progress then set spa_scrub_reopen flag to B_TRUE so that
5322 * we don't restart the scrub as a side effect of the reopen.
5323 * Otherwise, let vdev_open() decided if a resilver is required.
65947351 5324 */
d3f2cd7e
AB
5325
5326 spa->spa_scrub_reopen = (!scrub_restart &&
5327 dsl_scan_scrubbing(spa->spa_dsl_pool));
1bd201e7 5328 vdev_reopen(spa->spa_root_vdev);
65947351
GW
5329 spa->spa_scrub_reopen = B_FALSE;
5330
1bd201e7
CS
5331 (void) spa_vdev_state_exit(spa, NULL, 0);
5332 spa_close(spa, FTAG);
5333 return (0);
5334}
d3f2cd7e 5335
34dc7c2f
BB
5336/*
5337 * inputs:
5338 * zc_name name of filesystem
34dc7c2f 5339 *
428870ff
BB
5340 * outputs:
5341 * zc_string name of conflicting snapshot, if there is one
34dc7c2f
BB
5342 */
5343static int
5344zfs_ioc_promote(zfs_cmd_t *zc)
5345{
d12f91fd
GDN
5346 dsl_pool_t *dp;
5347 dsl_dataset_t *ds, *ods;
5348 char origin[ZFS_MAX_DATASET_NAME_LEN];
34dc7c2f 5349 char *cp;
d12f91fd
GDN
5350 int error;
5351
650258d7 5352 zc->zc_name[sizeof (zc->zc_name) - 1] = '\0';
5353 if (dataset_namecheck(zc->zc_name, NULL, NULL) != 0 ||
5354 strchr(zc->zc_name, '%'))
5355 return (SET_ERROR(EINVAL));
5356
d12f91fd
GDN
5357 error = dsl_pool_hold(zc->zc_name, FTAG, &dp);
5358 if (error != 0)
5359 return (error);
5360
5361 error = dsl_dataset_hold(dp, zc->zc_name, FTAG, &ds);
5362 if (error != 0) {
5363 dsl_pool_rele(dp, FTAG);
5364 return (error);
5365 }
5366
5367 if (!dsl_dir_is_clone(ds->ds_dir)) {
5368 dsl_dataset_rele(ds, FTAG);
5369 dsl_pool_rele(dp, FTAG);
5370 return (SET_ERROR(EINVAL));
5371 }
5372
5373 error = dsl_dataset_hold_obj(dp,
5374 dsl_dir_phys(ds->ds_dir)->dd_origin_obj, FTAG, &ods);
5375 if (error != 0) {
5376 dsl_dataset_rele(ds, FTAG);
5377 dsl_pool_rele(dp, FTAG);
5378 return (error);
5379 }
5380
5381 dsl_dataset_name(ods, origin);
5382 dsl_dataset_rele(ods, FTAG);
5383 dsl_dataset_rele(ds, FTAG);
5384 dsl_pool_rele(dp, FTAG);
34dc7c2f
BB
5385
5386 /*
5387 * We don't need to unmount *all* the origin fs's snapshots, but
5388 * it's easier.
5389 */
d12f91fd 5390 cp = strchr(origin, '@');
34dc7c2f
BB
5391 if (cp)
5392 *cp = '\0';
d12f91fd 5393 (void) dmu_objset_find(origin,
13fe0198 5394 zfs_unmount_snap_cb, NULL, DS_FIND_SNAPSHOTS);
428870ff 5395 return (dsl_dataset_promote(zc->zc_name, zc->zc_string));
34dc7c2f
BB
5396}
5397
9babb374 5398/*
9c5167d1 5399 * Retrieve a single {user|group|project}{used|quota}@... property.
9babb374
BB
5400 *
5401 * inputs:
5402 * zc_name name of filesystem
5403 * zc_objset_type zfs_userquota_prop_t
5404 * zc_value domain name (eg. "S-1-234-567-89")
5405 * zc_guid RID/UID/GID
5406 *
5407 * outputs:
5408 * zc_cookie property value
5409 */
5410static int
5411zfs_ioc_userspace_one(zfs_cmd_t *zc)
5412{
0037b49e 5413 zfsvfs_t *zfsvfs;
9babb374
BB
5414 int error;
5415
5416 if (zc->zc_objset_type >= ZFS_NUM_USERQUOTA_PROPS)
2e528b49 5417 return (SET_ERROR(EINVAL));
9babb374 5418
f298b24d 5419 error = zfsvfs_hold(zc->zc_name, FTAG, &zfsvfs, B_FALSE);
13fe0198 5420 if (error != 0)
9babb374
BB
5421 return (error);
5422
0037b49e 5423 error = zfs_userspace_one(zfsvfs,
9babb374 5424 zc->zc_objset_type, zc->zc_value, zc->zc_guid, &zc->zc_cookie);
f298b24d 5425 zfsvfs_rele(zfsvfs, FTAG);
9babb374
BB
5426
5427 return (error);
5428}
5429
5430/*
5431 * inputs:
5432 * zc_name name of filesystem
5433 * zc_cookie zap cursor
5434 * zc_objset_type zfs_userquota_prop_t
5435 * zc_nvlist_dst[_size] buffer to fill (not really an nvlist)
5436 *
5437 * outputs:
5438 * zc_nvlist_dst[_size] data buffer (array of zfs_useracct_t)
5439 * zc_cookie zap cursor
5440 */
5441static int
5442zfs_ioc_userspace_many(zfs_cmd_t *zc)
5443{
0037b49e 5444 zfsvfs_t *zfsvfs;
428870ff
BB
5445 int bufsize = zc->zc_nvlist_dst_size;
5446
5447 if (bufsize <= 0)
2e528b49 5448 return (SET_ERROR(ENOMEM));
9babb374 5449
1c27024e 5450 int error = zfsvfs_hold(zc->zc_name, FTAG, &zfsvfs, B_FALSE);
13fe0198 5451 if (error != 0)
9babb374
BB
5452 return (error);
5453
1c27024e 5454 void *buf = vmem_alloc(bufsize, KM_SLEEP);
9babb374 5455
0037b49e 5456 error = zfs_userspace_many(zfsvfs, zc->zc_objset_type, &zc->zc_cookie,
9babb374
BB
5457 buf, &zc->zc_nvlist_dst_size);
5458
5459 if (error == 0) {
5460 error = xcopyout(buf,
5461 (void *)(uintptr_t)zc->zc_nvlist_dst,
5462 zc->zc_nvlist_dst_size);
5463 }
2b8cad61 5464 vmem_free(buf, bufsize);
f298b24d 5465 zfsvfs_rele(zfsvfs, FTAG);
9babb374
BB
5466
5467 return (error);
5468}
5469
5470/*
5471 * inputs:
5472 * zc_name name of filesystem
5473 *
5474 * outputs:
5475 * none
5476 */
5477static int
5478zfs_ioc_userspace_upgrade(zfs_cmd_t *zc)
5479{
5480 objset_t *os;
428870ff 5481 int error = 0;
0037b49e 5482 zfsvfs_t *zfsvfs;
9babb374 5483
f298b24d 5484 if (getzfsvfs(zc->zc_name, &zfsvfs) == 0) {
0037b49e 5485 if (!dmu_objset_userused_enabled(zfsvfs->z_os)) {
9babb374
BB
5486 /*
5487 * If userused is not enabled, it may be because the
5488 * objset needs to be closed & reopened (to grow the
5489 * objset_phys_t). Suspend/resume the fs will do that.
5490 */
5e00213e 5491 dsl_dataset_t *ds, *newds;
ec923db2 5492
0037b49e
BB
5493 ds = dmu_objset_ds(zfsvfs->z_os);
5494 error = zfs_suspend_fs(zfsvfs);
831baf06 5495 if (error == 0) {
5e00213e 5496 dmu_objset_refresh_ownership(ds, &newds,
b5256303 5497 B_TRUE, zfsvfs);
5e00213e 5498 error = zfs_resume_fs(zfsvfs, newds);
831baf06 5499 }
9babb374
BB
5500 }
5501 if (error == 0)
0037b49e
BB
5502 error = dmu_objset_userspace_upgrade(zfsvfs->z_os);
5503 deactivate_super(zfsvfs->z_sb);
9babb374 5504 } else {
428870ff 5505 /* XXX kind of reading contents without owning */
b5256303 5506 error = dmu_objset_hold_flags(zc->zc_name, B_TRUE, FTAG, &os);
13fe0198 5507 if (error != 0)
9babb374
BB
5508 return (error);
5509
5510 error = dmu_objset_userspace_upgrade(os);
b5256303 5511 dmu_objset_rele_flags(os, B_TRUE, FTAG);
9babb374
BB
5512 }
5513
5514 return (error);
5515}
5516
1de321e6
JX
5517/*
5518 * inputs:
5519 * zc_name name of filesystem
5520 *
5521 * outputs:
5522 * none
5523 */
5524static int
9c5167d1 5525zfs_ioc_id_quota_upgrade(zfs_cmd_t *zc)
1de321e6
JX
5526{
5527 objset_t *os;
5528 int error;
5529
b5256303 5530 error = dmu_objset_hold_flags(zc->zc_name, B_TRUE, FTAG, &os);
1de321e6
JX
5531 if (error != 0)
5532 return (error);
5533
9c5167d1
NF
5534 if (dmu_objset_userobjspace_upgradable(os) ||
5535 dmu_objset_projectquota_upgradable(os)) {
1de321e6
JX
5536 mutex_enter(&os->os_upgrade_lock);
5537 if (os->os_upgrade_id == 0) {
5538 /* clear potential error code and retry */
5539 os->os_upgrade_status = 0;
5540 mutex_exit(&os->os_upgrade_lock);
5541
9c5167d1 5542 dmu_objset_id_quota_upgrade(os);
1de321e6
JX
5543 } else {
5544 mutex_exit(&os->os_upgrade_lock);
5545 }
5546
c0daec32
AB
5547 dsl_pool_rele(dmu_objset_pool(os), FTAG);
5548
1de321e6
JX
5549 taskq_wait_id(os->os_spa->spa_upgrade_taskq, os->os_upgrade_id);
5550 error = os->os_upgrade_status;
c0daec32
AB
5551 } else {
5552 dsl_pool_rele(dmu_objset_pool(os), FTAG);
1de321e6
JX
5553 }
5554
b5256303 5555 dsl_dataset_rele_flags(dmu_objset_ds(os), DS_HOLD_FLAG_DECRYPT, FTAG);
1de321e6
JX
5556
5557 return (error);
5558}
5559
34dc7c2f
BB
5560static int
5561zfs_ioc_share(zfs_cmd_t *zc)
5562{
2e528b49 5563 return (SET_ERROR(ENOSYS));
34dc7c2f
BB
5564}
5565
9babb374
BB
5566ace_t full_access[] = {
5567 {(uid_t)-1, ACE_ALL_PERMS, ACE_EVERYONE, 0}
5568};
5569
572e2857
BB
5570/*
5571 * inputs:
5572 * zc_name name of containing filesystem
5573 * zc_obj object # beyond which we want next in-use object #
5574 *
5575 * outputs:
5576 * zc_obj next in-use object #
5577 */
5578static int
5579zfs_ioc_next_obj(zfs_cmd_t *zc)
5580{
5581 objset_t *os = NULL;
5582 int error;
5583
5584 error = dmu_objset_hold(zc->zc_name, FTAG, &os);
13fe0198 5585 if (error != 0)
572e2857
BB
5586 return (error);
5587
7290cd3c 5588 error = dmu_object_next(os, &zc->zc_obj, B_FALSE, 0);
572e2857
BB
5589
5590 dmu_objset_rele(os, FTAG);
5591 return (error);
5592}
5593
5594/*
5595 * inputs:
5596 * zc_name name of filesystem
5597 * zc_value prefix name for snapshot
5598 * zc_cleanup_fd cleanup-on-exit file descriptor for calling process
5599 *
5600 * outputs:
6f1ffb06 5601 * zc_value short name of new snapshot
572e2857
BB
5602 */
5603static int
5604zfs_ioc_tmp_snapshot(zfs_cmd_t *zc)
5605{
5606 char *snap_name;
13fe0198 5607 char *hold_name;
572e2857 5608 int error;
13fe0198 5609 minor_t minor;
572e2857 5610
13fe0198
MA
5611 error = zfs_onexit_fd_hold(zc->zc_cleanup_fd, &minor);
5612 if (error != 0)
572e2857 5613 return (error);
572e2857 5614
13fe0198
MA
5615 snap_name = kmem_asprintf("%s-%016llx", zc->zc_value,
5616 (u_longlong_t)ddi_get_lbolt64());
5617 hold_name = kmem_asprintf("%%%s", zc->zc_value);
5618
5619 error = dsl_dataset_snapshot_tmp(zc->zc_name, snap_name, minor,
5620 hold_name);
5621 if (error == 0)
680eada9 5622 (void) strlcpy(zc->zc_value, snap_name,
5623 sizeof (zc->zc_value));
572e2857 5624 strfree(snap_name);
13fe0198
MA
5625 strfree(hold_name);
5626 zfs_onexit_fd_rele(zc->zc_cleanup_fd);
5627 return (error);
572e2857
BB
5628}
5629
5630/*
5631 * inputs:
5632 * zc_name name of "to" snapshot
5633 * zc_value name of "from" snapshot
5634 * zc_cookie file descriptor to write diff data on
5635 *
5636 * outputs:
5637 * dmu_diff_record_t's to the file descriptor
5638 */
5639static int
5640zfs_ioc_diff(zfs_cmd_t *zc)
5641{
572e2857
BB
5642 file_t *fp;
5643 offset_t off;
5644 int error;
5645
572e2857 5646 fp = getf(zc->zc_cookie);
13fe0198 5647 if (fp == NULL)
2e528b49 5648 return (SET_ERROR(EBADF));
572e2857
BB
5649
5650 off = fp->f_offset;
5651
13fe0198 5652 error = dmu_diff(zc->zc_name, zc->zc_value, fp->f_vnode, &off);
572e2857
BB
5653
5654 if (VOP_SEEK(fp->f_vnode, fp->f_offset, &off, NULL) == 0)
5655 fp->f_offset = off;
5656 releasef(zc->zc_cookie);
5657
572e2857
BB
5658 return (error);
5659}
5660
9babb374
BB
5661static int
5662zfs_ioc_smb_acl(zfs_cmd_t *zc)
5663{
2e528b49 5664 return (SET_ERROR(ENOTSUP));
9babb374
BB
5665}
5666
45d1cae3 5667/*
13fe0198
MA
5668 * innvl: {
5669 * "holds" -> { snapname -> holdname (string), ... }
5670 * (optional) "cleanup_fd" -> fd (int32)
5671 * }
45d1cae3 5672 *
13fe0198
MA
5673 * outnvl: {
5674 * snapname -> error value (int32)
5675 * ...
5676 * }
45d1cae3 5677 */
b83a0e2d
DB
5678static const zfs_ioc_key_t zfs_keys_hold[] = {
5679 {"holds", DATA_TYPE_NVLIST, 0},
5680 {"cleanup_fd", DATA_TYPE_INT32, ZK_OPTIONAL},
5681};
5682
13fe0198 5683/* ARGSUSED */
45d1cae3 5684static int
13fe0198 5685zfs_ioc_hold(const char *pool, nvlist_t *args, nvlist_t *errlist)
45d1cae3 5686{
fc581e05 5687 nvpair_t *pair;
13fe0198
MA
5688 nvlist_t *holds;
5689 int cleanup_fd = -1;
572e2857
BB
5690 int error;
5691 minor_t minor = 0;
45d1cae3 5692
b83a0e2d 5693 holds = fnvlist_lookup_nvlist(args, "holds");
572e2857 5694
fc581e05
JJS
5695 /* make sure the user didn't pass us any invalid (empty) tags */
5696 for (pair = nvlist_next_nvpair(holds, NULL); pair != NULL;
5697 pair = nvlist_next_nvpair(holds, pair)) {
5698 char *htag;
5699
5700 error = nvpair_value_string(pair, &htag);
5701 if (error != 0)
5702 return (SET_ERROR(error));
5703
5704 if (strlen(htag) == 0)
5705 return (SET_ERROR(EINVAL));
5706 }
5707
13fe0198
MA
5708 if (nvlist_lookup_int32(args, "cleanup_fd", &cleanup_fd) == 0) {
5709 error = zfs_onexit_fd_hold(cleanup_fd, &minor);
5710 if (error != 0)
572e2857 5711 return (error);
572e2857 5712 }
572e2857 5713
13fe0198
MA
5714 error = dsl_dataset_user_hold(holds, minor, errlist);
5715 if (minor != 0)
5716 zfs_onexit_fd_rele(cleanup_fd);
572e2857 5717 return (error);
45d1cae3
BB
5718}
5719
5720/*
13fe0198 5721 * innvl is not used.
45d1cae3 5722 *
13fe0198
MA
5723 * outnvl: {
5724 * holdname -> time added (uint64 seconds since epoch)
5725 * ...
5726 * }
45d1cae3 5727 */
b83a0e2d
DB
5728static const zfs_ioc_key_t zfs_keys_get_holds[] = {
5729 /* no nvl keys */
5730};
5731
13fe0198 5732/* ARGSUSED */
45d1cae3 5733static int
13fe0198 5734zfs_ioc_get_holds(const char *snapname, nvlist_t *args, nvlist_t *outnvl)
45d1cae3 5735{
13fe0198 5736 return (dsl_dataset_get_holds(snapname, outnvl));
45d1cae3
BB
5737}
5738
5739/*
13fe0198
MA
5740 * innvl: {
5741 * snapname -> { holdname, ... }
5742 * ...
5743 * }
45d1cae3 5744 *
13fe0198
MA
5745 * outnvl: {
5746 * snapname -> error value (int32)
5747 * ...
5748 * }
45d1cae3 5749 */
b83a0e2d
DB
5750static const zfs_ioc_key_t zfs_keys_release[] = {
5751 {"<snapname>...", DATA_TYPE_NVLIST, ZK_WILDCARDLIST},
5752};
5753
13fe0198 5754/* ARGSUSED */
45d1cae3 5755static int
13fe0198 5756zfs_ioc_release(const char *pool, nvlist_t *holds, nvlist_t *errlist)
45d1cae3 5757{
13fe0198 5758 return (dsl_dataset_user_release(holds, errlist));
45d1cae3
BB
5759}
5760
26685276
BB
5761/*
5762 * inputs:
5763 * zc_guid flags (ZEVENT_NONBLOCK)
9b101a73 5764 * zc_cleanup_fd zevent file descriptor
26685276
BB
5765 *
5766 * outputs:
5767 * zc_nvlist_dst next nvlist event
5768 * zc_cookie dropped events since last get
26685276
BB
5769 */
5770static int
5771zfs_ioc_events_next(zfs_cmd_t *zc)
5772{
5773 zfs_zevent_t *ze;
5774 nvlist_t *event = NULL;
5775 minor_t minor;
5776 uint64_t dropped = 0;
5777 int error;
5778
5779 error = zfs_zevent_fd_hold(zc->zc_cleanup_fd, &minor, &ze);
5780 if (error != 0)
5781 return (error);
5782
5783 do {
baa40d45 5784 error = zfs_zevent_next(ze, &event,
02730c33 5785 &zc->zc_nvlist_dst_size, &dropped);
26685276
BB
5786 if (event != NULL) {
5787 zc->zc_cookie = dropped;
5788 error = put_nvlist(zc, event);
baa40d45 5789 nvlist_free(event);
26685276
BB
5790 }
5791
5792 if (zc->zc_guid & ZEVENT_NONBLOCK)
5793 break;
5794
5795 if ((error == 0) || (error != ENOENT))
5796 break;
5797
5798 error = zfs_zevent_wait(ze);
13fe0198 5799 if (error != 0)
26685276
BB
5800 break;
5801 } while (1);
5802
5803 zfs_zevent_fd_rele(zc->zc_cleanup_fd);
5804
5805 return (error);
5806}
5807
5808/*
5809 * outputs:
5810 * zc_cookie cleared events count
5811 */
5812static int
5813zfs_ioc_events_clear(zfs_cmd_t *zc)
5814{
5815 int count;
5816
5817 zfs_zevent_drain_all(&count);
5818 zc->zc_cookie = count;
5819
d1d7e268 5820 return (0);
26685276
BB
5821}
5822
75e3ff58
BB
5823/*
5824 * inputs:
5825 * zc_guid eid | ZEVENT_SEEK_START | ZEVENT_SEEK_END
5826 * zc_cleanup zevent file descriptor
5827 */
5828static int
5829zfs_ioc_events_seek(zfs_cmd_t *zc)
5830{
5831 zfs_zevent_t *ze;
5832 minor_t minor;
5833 int error;
5834
5835 error = zfs_zevent_fd_hold(zc->zc_cleanup_fd, &minor, &ze);
5836 if (error != 0)
5837 return (error);
5838
5839 error = zfs_zevent_seek(ze, zc->zc_guid);
5840 zfs_zevent_fd_rele(zc->zc_cleanup_fd);
5841
5842 return (error);
5843}
5844
330d06f9
MA
5845/*
5846 * inputs:
5847 * zc_name name of new filesystem or snapshot
5848 * zc_value full name of old snapshot
5849 *
5850 * outputs:
5851 * zc_cookie space in bytes
5852 * zc_objset_type compressed space in bytes
5853 * zc_perm_action uncompressed space in bytes
5854 */
5855static int
5856zfs_ioc_space_written(zfs_cmd_t *zc)
5857{
5858 int error;
13fe0198 5859 dsl_pool_t *dp;
330d06f9
MA
5860 dsl_dataset_t *new, *old;
5861
13fe0198 5862 error = dsl_pool_hold(zc->zc_name, FTAG, &dp);
330d06f9
MA
5863 if (error != 0)
5864 return (error);
13fe0198
MA
5865 error = dsl_dataset_hold(dp, zc->zc_name, FTAG, &new);
5866 if (error != 0) {
5867 dsl_pool_rele(dp, FTAG);
5868 return (error);
5869 }
5870 error = dsl_dataset_hold(dp, zc->zc_value, FTAG, &old);
330d06f9
MA
5871 if (error != 0) {
5872 dsl_dataset_rele(new, FTAG);
13fe0198 5873 dsl_pool_rele(dp, FTAG);
330d06f9
MA
5874 return (error);
5875 }
5876
5877 error = dsl_dataset_space_written(old, new, &zc->zc_cookie,
5878 &zc->zc_objset_type, &zc->zc_perm_action);
5879 dsl_dataset_rele(old, FTAG);
5880 dsl_dataset_rele(new, FTAG);
13fe0198 5881 dsl_pool_rele(dp, FTAG);
330d06f9
MA
5882 return (error);
5883}
5884
5885/*
6f1ffb06
MA
5886 * innvl: {
5887 * "firstsnap" -> snapshot name
5888 * }
330d06f9 5889 *
6f1ffb06
MA
5890 * outnvl: {
5891 * "used" -> space in bytes
5892 * "compressed" -> compressed space in bytes
5893 * "uncompressed" -> uncompressed space in bytes
5894 * }
330d06f9 5895 */
b83a0e2d
DB
5896static const zfs_ioc_key_t zfs_keys_space_snaps[] = {
5897 {"firstsnap", DATA_TYPE_STRING, 0},
5898};
5899
330d06f9 5900static int
6f1ffb06 5901zfs_ioc_space_snaps(const char *lastsnap, nvlist_t *innvl, nvlist_t *outnvl)
330d06f9
MA
5902{
5903 int error;
13fe0198 5904 dsl_pool_t *dp;
330d06f9 5905 dsl_dataset_t *new, *old;
6f1ffb06
MA
5906 char *firstsnap;
5907 uint64_t used, comp, uncomp;
330d06f9 5908
b83a0e2d 5909 firstsnap = fnvlist_lookup_string(innvl, "firstsnap");
6f1ffb06 5910
13fe0198 5911 error = dsl_pool_hold(lastsnap, FTAG, &dp);
330d06f9
MA
5912 if (error != 0)
5913 return (error);
13fe0198
MA
5914
5915 error = dsl_dataset_hold(dp, lastsnap, FTAG, &new);
71e2fe41
AG
5916 if (error == 0 && !new->ds_is_snapshot) {
5917 dsl_dataset_rele(new, FTAG);
5918 error = SET_ERROR(EINVAL);
5919 }
13fe0198
MA
5920 if (error != 0) {
5921 dsl_pool_rele(dp, FTAG);
5922 return (error);
5923 }
5924 error = dsl_dataset_hold(dp, firstsnap, FTAG, &old);
71e2fe41
AG
5925 if (error == 0 && !old->ds_is_snapshot) {
5926 dsl_dataset_rele(old, FTAG);
5927 error = SET_ERROR(EINVAL);
5928 }
330d06f9
MA
5929 if (error != 0) {
5930 dsl_dataset_rele(new, FTAG);
13fe0198 5931 dsl_pool_rele(dp, FTAG);
330d06f9
MA
5932 return (error);
5933 }
5934
6f1ffb06 5935 error = dsl_dataset_space_wouldfree(old, new, &used, &comp, &uncomp);
330d06f9
MA
5936 dsl_dataset_rele(old, FTAG);
5937 dsl_dataset_rele(new, FTAG);
13fe0198 5938 dsl_pool_rele(dp, FTAG);
6f1ffb06
MA
5939 fnvlist_add_uint64(outnvl, "used", used);
5940 fnvlist_add_uint64(outnvl, "compressed", comp);
5941 fnvlist_add_uint64(outnvl, "uncompressed", uncomp);
330d06f9
MA
5942 return (error);
5943}
5944
34dc7c2f 5945/*
6f1ffb06
MA
5946 * innvl: {
5947 * "fd" -> file descriptor to write stream to (int32)
5948 * (optional) "fromsnap" -> full snap name to send an incremental from
f1512ee6
MA
5949 * (optional) "largeblockok" -> (value ignored)
5950 * indicates that blocks > 128KB are permitted
9b67f605
MA
5951 * (optional) "embedok" -> (value ignored)
5952 * presence indicates DRR_WRITE_EMBEDDED records are permitted
2aa34383
DK
5953 * (optional) "compressok" -> (value ignored)
5954 * presence indicates compressed DRR_WRITE records are permitted
b5256303
TC
5955 * (optional) "rawok" -> (value ignored)
5956 * presence indicates raw encrypted records should be used.
47dfff3b
MA
5957 * (optional) "resume_object" and "resume_offset" -> (uint64)
5958 * if present, resume send stream from specified object and offset.
6f1ffb06
MA
5959 * }
5960 *
5961 * outnvl is unused
34dc7c2f 5962 */
b83a0e2d
DB
5963static const zfs_ioc_key_t zfs_keys_send_new[] = {
5964 {"fd", DATA_TYPE_INT32, 0},
5965 {"fromsnap", DATA_TYPE_STRING, ZK_OPTIONAL},
5966 {"largeblockok", DATA_TYPE_BOOLEAN, ZK_OPTIONAL},
5967 {"embedok", DATA_TYPE_BOOLEAN, ZK_OPTIONAL},
5968 {"compressok", DATA_TYPE_BOOLEAN, ZK_OPTIONAL},
5969 {"rawok", DATA_TYPE_BOOLEAN, ZK_OPTIONAL},
5970 {"resume_object", DATA_TYPE_UINT64, ZK_OPTIONAL},
5971 {"resume_offset", DATA_TYPE_UINT64, ZK_OPTIONAL},
5972};
5973
6f1ffb06
MA
5974/* ARGSUSED */
5975static int
5976zfs_ioc_send_new(const char *snapname, nvlist_t *innvl, nvlist_t *outnvl)
5977{
6f1ffb06
MA
5978 int error;
5979 offset_t off;
13fe0198 5980 char *fromname = NULL;
6f1ffb06 5981 int fd;
13fe0198 5982 file_t *fp;
f1512ee6 5983 boolean_t largeblockok;
9b67f605 5984 boolean_t embedok;
2aa34383 5985 boolean_t compressok;
b5256303 5986 boolean_t rawok;
47dfff3b
MA
5987 uint64_t resumeobj = 0;
5988 uint64_t resumeoff = 0;
6f1ffb06 5989
b83a0e2d 5990 fd = fnvlist_lookup_int32(innvl, "fd");
6f1ffb06 5991
13fe0198 5992 (void) nvlist_lookup_string(innvl, "fromsnap", &fromname);
6f1ffb06 5993
f1512ee6 5994 largeblockok = nvlist_exists(innvl, "largeblockok");
9b67f605 5995 embedok = nvlist_exists(innvl, "embedok");
2aa34383 5996 compressok = nvlist_exists(innvl, "compressok");
b5256303 5997 rawok = nvlist_exists(innvl, "rawok");
9b67f605 5998
47dfff3b
MA
5999 (void) nvlist_lookup_uint64(innvl, "resume_object", &resumeobj);
6000 (void) nvlist_lookup_uint64(innvl, "resume_offset", &resumeoff);
6001
13fe0198 6002 if ((fp = getf(fd)) == NULL)
2e528b49 6003 return (SET_ERROR(EBADF));
6f1ffb06
MA
6004
6005 off = fp->f_offset;
2aa34383 6006 error = dmu_send(snapname, fromname, embedok, largeblockok, compressok,
b5256303 6007 rawok, fd, resumeobj, resumeoff, fp->f_vnode, &off);
6f1ffb06
MA
6008
6009 if (VOP_SEEK(fp->f_vnode, fp->f_offset, &off, NULL) == 0)
6010 fp->f_offset = off;
13fe0198 6011
6f1ffb06 6012 releasef(fd);
6f1ffb06
MA
6013 return (error);
6014}
6015
6016/*
6017 * Determine approximately how large a zfs send stream will be -- the number
6018 * of bytes that will be written to the fd supplied to zfs_ioc_send_new().
6019 *
6020 * innvl: {
5dc8b736
MG
6021 * (optional) "from" -> full snap or bookmark name to send an incremental
6022 * from
2aa34383
DK
6023 * (optional) "largeblockok" -> (value ignored)
6024 * indicates that blocks > 128KB are permitted
6025 * (optional) "embedok" -> (value ignored)
6026 * presence indicates DRR_WRITE_EMBEDDED records are permitted
6027 * (optional) "compressok" -> (value ignored)
6028 * presence indicates compressed DRR_WRITE records are permitted
cf7684bc 6029 * (optional) "rawok" -> (value ignored)
6030 * presence indicates raw encrypted records should be used.
6f1ffb06
MA
6031 * }
6032 *
6033 * outnvl: {
6034 * "space" -> bytes of space (uint64)
6035 * }
6036 */
b83a0e2d
DB
6037static const zfs_ioc_key_t zfs_keys_send_space[] = {
6038 {"from", DATA_TYPE_STRING, ZK_OPTIONAL},
6039 {"fromsnap", DATA_TYPE_STRING, ZK_OPTIONAL},
6040 {"largeblockok", DATA_TYPE_BOOLEAN, ZK_OPTIONAL},
6041 {"embedok", DATA_TYPE_BOOLEAN, ZK_OPTIONAL},
6042 {"compressok", DATA_TYPE_BOOLEAN, ZK_OPTIONAL},
6043 {"rawok", DATA_TYPE_BOOLEAN, ZK_OPTIONAL},
6044};
6045
6f1ffb06
MA
6046static int
6047zfs_ioc_send_space(const char *snapname, nvlist_t *innvl, nvlist_t *outnvl)
6048{
13fe0198 6049 dsl_pool_t *dp;
13fe0198 6050 dsl_dataset_t *tosnap;
6f1ffb06
MA
6051 int error;
6052 char *fromname;
2aa34383 6053 boolean_t compressok;
b5256303 6054 boolean_t rawok;
6f1ffb06
MA
6055 uint64_t space;
6056
13fe0198
MA
6057 error = dsl_pool_hold(snapname, FTAG, &dp);
6058 if (error != 0)
6f1ffb06
MA
6059 return (error);
6060
13fe0198
MA
6061 error = dsl_dataset_hold(dp, snapname, FTAG, &tosnap);
6062 if (error != 0) {
6063 dsl_pool_rele(dp, FTAG);
6064 return (error);
6065 }
6066
2aa34383 6067 compressok = nvlist_exists(innvl, "compressok");
b5256303 6068 rawok = nvlist_exists(innvl, "rawok");
2aa34383 6069
5dc8b736 6070 error = nvlist_lookup_string(innvl, "from", &fromname);
6f1ffb06 6071 if (error == 0) {
5dc8b736
MG
6072 if (strchr(fromname, '@') != NULL) {
6073 /*
6074 * If from is a snapshot, hold it and use the more
6075 * efficient dmu_send_estimate to estimate send space
6076 * size using deadlists.
6077 */
6078 dsl_dataset_t *fromsnap;
6079 error = dsl_dataset_hold(dp, fromname, FTAG, &fromsnap);
6080 if (error != 0)
6081 goto out;
b5256303
TC
6082 error = dmu_send_estimate(tosnap, fromsnap,
6083 compressok || rawok, &space);
5dc8b736
MG
6084 dsl_dataset_rele(fromsnap, FTAG);
6085 } else if (strchr(fromname, '#') != NULL) {
6086 /*
6087 * If from is a bookmark, fetch the creation TXG of the
6088 * snapshot it was created from and use that to find
6089 * blocks that were born after it.
6090 */
6091 zfs_bookmark_phys_t frombm;
6092
6093 error = dsl_bookmark_lookup(dp, fromname, tosnap,
6094 &frombm);
6095 if (error != 0)
6096 goto out;
6097 error = dmu_send_estimate_from_txg(tosnap,
b5256303
TC
6098 frombm.zbm_creation_txg, compressok || rawok,
6099 &space);
5dc8b736
MG
6100 } else {
6101 /*
6102 * from is not properly formatted as a snapshot or
6103 * bookmark
6104 */
6105 error = SET_ERROR(EINVAL);
6106 goto out;
6f1ffb06 6107 }
5dc8b736 6108 } else {
d8fdfc2d
BB
6109 /*
6110 * If estimating the size of a full send, use dmu_send_estimate.
6111 */
b5256303
TC
6112 error = dmu_send_estimate(tosnap, NULL, compressok || rawok,
6113 &space);
6f1ffb06
MA
6114 }
6115
6f1ffb06
MA
6116 fnvlist_add_uint64(outnvl, "space", space);
6117
5dc8b736 6118out:
13fe0198
MA
6119 dsl_dataset_rele(tosnap, FTAG);
6120 dsl_pool_rele(dp, FTAG);
6f1ffb06
MA
6121 return (error);
6122}
6123
bec1067d
AP
6124/*
6125 * Sync the currently open TXG to disk for the specified pool.
6126 * This is somewhat similar to 'zfs_sync()'.
6127 * For cases that do not result in error this ioctl will wait for
6128 * the currently open TXG to commit before returning back to the caller.
6129 *
6130 * innvl: {
6131 * "force" -> when true, force uberblock update even if there is no dirty data.
6132 * In addition this will cause the vdev configuration to be written
6133 * out including updating the zpool cache file. (boolean_t)
6134 * }
6135 *
6136 * onvl is unused
6137 */
b83a0e2d
DB
6138static const zfs_ioc_key_t zfs_keys_pool_sync[] = {
6139 {"force", DATA_TYPE_BOOLEAN_VALUE, 0},
6140};
6141
bec1067d
AP
6142/* ARGSUSED */
6143static int
6144zfs_ioc_pool_sync(const char *pool, nvlist_t *innvl, nvlist_t *onvl)
6145{
6146 int err;
05f85a6a 6147 boolean_t force = B_FALSE;
bec1067d
AP
6148 spa_t *spa;
6149
6150 if ((err = spa_open(pool, &spa, FTAG)) != 0)
6151 return (err);
6152
b83a0e2d
DB
6153 if (innvl)
6154 force = fnvlist_lookup_boolean_value(innvl, "force");
05f85a6a 6155
bec1067d
AP
6156 if (force) {
6157 spa_config_enter(spa, SCL_CONFIG, FTAG, RW_WRITER);
6158 vdev_config_dirty(spa->spa_root_vdev);
6159 spa_config_exit(spa, SCL_CONFIG, FTAG);
6160 }
6161 txg_wait_synced(spa_get_dsl(spa), 0);
b83a0e2d 6162
bec1067d
AP
6163 spa_close(spa, FTAG);
6164
6165 return (err);
6166}
6167
b5256303
TC
6168/*
6169 * Load a user's wrapping key into the kernel.
6170 * innvl: {
6171 * "hidden_args" -> { "wkeydata" -> value }
6172 * raw uint8_t array of encryption wrapping key data (32 bytes)
6173 * (optional) "noop" -> (value ignored)
6174 * presence indicated key should only be verified, not loaded
6175 * }
6176 */
b83a0e2d
DB
6177static const zfs_ioc_key_t zfs_keys_load_key[] = {
6178 {"hidden_args", DATA_TYPE_NVLIST, 0},
6179 {"noop", DATA_TYPE_BOOLEAN, ZK_OPTIONAL},
6180};
6181
b5256303
TC
6182/* ARGSUSED */
6183static int
6184zfs_ioc_load_key(const char *dsname, nvlist_t *innvl, nvlist_t *outnvl)
6185{
6186 int ret;
6187 dsl_crypto_params_t *dcp = NULL;
6188 nvlist_t *hidden_args;
6189 boolean_t noop = nvlist_exists(innvl, "noop");
6190
6191 if (strchr(dsname, '@') != NULL || strchr(dsname, '%') != NULL) {
6192 ret = SET_ERROR(EINVAL);
6193 goto error;
6194 }
6195
b83a0e2d 6196 hidden_args = fnvlist_lookup_nvlist(innvl, ZPOOL_HIDDEN_ARGS);
b5256303
TC
6197
6198 ret = dsl_crypto_params_create_nvlist(DCP_CMD_NONE, NULL,
6199 hidden_args, &dcp);
6200 if (ret != 0)
6201 goto error;
6202
6203 ret = spa_keystore_load_wkey(dsname, dcp, noop);
6204 if (ret != 0)
6205 goto error;
6206
6207 dsl_crypto_params_free(dcp, noop);
6208
6209 return (0);
6210
6211error:
6212 dsl_crypto_params_free(dcp, B_TRUE);
6213 return (ret);
6214}
6215
6216/*
6217 * Unload a user's wrapping key from the kernel.
6218 * Both innvl and outnvl are unused.
6219 */
b83a0e2d
DB
6220static const zfs_ioc_key_t zfs_keys_unload_key[] = {
6221 /* no nvl keys */
6222};
6223
b5256303
TC
6224/* ARGSUSED */
6225static int
6226zfs_ioc_unload_key(const char *dsname, nvlist_t *innvl, nvlist_t *outnvl)
6227{
6228 int ret = 0;
6229
6230 if (strchr(dsname, '@') != NULL || strchr(dsname, '%') != NULL) {
6231 ret = (SET_ERROR(EINVAL));
6232 goto out;
6233 }
6234
6235 ret = spa_keystore_unload_wkey(dsname);
6236 if (ret != 0)
6237 goto out;
6238
6239out:
6240 return (ret);
6241}
6242
6243/*
6244 * Changes a user's wrapping key used to decrypt a dataset. The keyformat,
6245 * keylocation, pbkdf2salt, and pbkdf2iters properties can also be specified
6246 * here to change how the key is derived in userspace.
6247 *
6248 * innvl: {
6249 * "hidden_args" (optional) -> { "wkeydata" -> value }
6250 * raw uint8_t array of new encryption wrapping key data (32 bytes)
6251 * "props" (optional) -> { prop -> value }
6252 * }
6253 *
6254 * outnvl is unused
6255 */
b83a0e2d
DB
6256static const zfs_ioc_key_t zfs_keys_change_key[] = {
6257 {"crypt_cmd", DATA_TYPE_UINT64, ZK_OPTIONAL},
6258 {"hidden_args", DATA_TYPE_NVLIST, ZK_OPTIONAL},
6259 {"props", DATA_TYPE_NVLIST, ZK_OPTIONAL},
6260};
6261
b5256303
TC
6262/* ARGSUSED */
6263static int
6264zfs_ioc_change_key(const char *dsname, nvlist_t *innvl, nvlist_t *outnvl)
6265{
6266 int ret;
6267 uint64_t cmd = DCP_CMD_NONE;
6268 dsl_crypto_params_t *dcp = NULL;
6269 nvlist_t *args = NULL, *hidden_args = NULL;
6270
6271 if (strchr(dsname, '@') != NULL || strchr(dsname, '%') != NULL) {
6272 ret = (SET_ERROR(EINVAL));
6273 goto error;
6274 }
6275
6276 (void) nvlist_lookup_uint64(innvl, "crypt_cmd", &cmd);
6277 (void) nvlist_lookup_nvlist(innvl, "props", &args);
6278 (void) nvlist_lookup_nvlist(innvl, ZPOOL_HIDDEN_ARGS, &hidden_args);
6279
6280 ret = dsl_crypto_params_create_nvlist(cmd, args, hidden_args, &dcp);
6281 if (ret != 0)
6282 goto error;
6283
6284 ret = spa_keystore_change_key(dsname, dcp);
6285 if (ret != 0)
6286 goto error;
6287
6288 dsl_crypto_params_free(dcp, B_FALSE);
6289
6290 return (0);
6291
6292error:
6293 dsl_crypto_params_free(dcp, B_TRUE);
6294 return (ret);
6295}
6296
6f1ffb06
MA
6297static zfs_ioc_vec_t zfs_ioc_vec[ZFS_IOC_LAST - ZFS_IOC_FIRST];
6298
6299static void
6300zfs_ioctl_register_legacy(zfs_ioc_t ioc, zfs_ioc_legacy_func_t *func,
6301 zfs_secpolicy_func_t *secpolicy, zfs_ioc_namecheck_t namecheck,
6302 boolean_t log_history, zfs_ioc_poolcheck_t pool_check)
6303{
6304 zfs_ioc_vec_t *vec = &zfs_ioc_vec[ioc - ZFS_IOC_FIRST];
6305
6306 ASSERT3U(ioc, >=, ZFS_IOC_FIRST);
6307 ASSERT3U(ioc, <, ZFS_IOC_LAST);
6308 ASSERT3P(vec->zvec_legacy_func, ==, NULL);
6309 ASSERT3P(vec->zvec_func, ==, NULL);
6310
6311 vec->zvec_legacy_func = func;
6312 vec->zvec_secpolicy = secpolicy;
6313 vec->zvec_namecheck = namecheck;
6314 vec->zvec_allow_log = log_history;
6315 vec->zvec_pool_check = pool_check;
6316}
6317
6318/*
6319 * See the block comment at the beginning of this file for details on
6320 * each argument to this function.
6321 */
6322static void
6323zfs_ioctl_register(const char *name, zfs_ioc_t ioc, zfs_ioc_func_t *func,
6324 zfs_secpolicy_func_t *secpolicy, zfs_ioc_namecheck_t namecheck,
6325 zfs_ioc_poolcheck_t pool_check, boolean_t smush_outnvlist,
b83a0e2d 6326 boolean_t allow_log, const zfs_ioc_key_t *nvl_keys, size_t num_keys)
6f1ffb06
MA
6327{
6328 zfs_ioc_vec_t *vec = &zfs_ioc_vec[ioc - ZFS_IOC_FIRST];
6329
6330 ASSERT3U(ioc, >=, ZFS_IOC_FIRST);
6331 ASSERT3U(ioc, <, ZFS_IOC_LAST);
6332 ASSERT3P(vec->zvec_legacy_func, ==, NULL);
6333 ASSERT3P(vec->zvec_func, ==, NULL);
6334
6335 /* if we are logging, the name must be valid */
6336 ASSERT(!allow_log || namecheck != NO_NAME);
6337
6338 vec->zvec_name = name;
6339 vec->zvec_func = func;
6340 vec->zvec_secpolicy = secpolicy;
6341 vec->zvec_namecheck = namecheck;
6342 vec->zvec_pool_check = pool_check;
6343 vec->zvec_smush_outnvlist = smush_outnvlist;
6344 vec->zvec_allow_log = allow_log;
b83a0e2d
DB
6345 vec->zvec_nvl_keys = nvl_keys;
6346 vec->zvec_nvl_key_count = num_keys;
6f1ffb06
MA
6347}
6348
6349static void
6350zfs_ioctl_register_pool(zfs_ioc_t ioc, zfs_ioc_legacy_func_t *func,
6351 zfs_secpolicy_func_t *secpolicy, boolean_t log_history,
6352 zfs_ioc_poolcheck_t pool_check)
6353{
6354 zfs_ioctl_register_legacy(ioc, func, secpolicy,
6355 POOL_NAME, log_history, pool_check);
6356}
6357
6358static void
6359zfs_ioctl_register_dataset_nolog(zfs_ioc_t ioc, zfs_ioc_legacy_func_t *func,
6360 zfs_secpolicy_func_t *secpolicy, zfs_ioc_poolcheck_t pool_check)
6361{
6362 zfs_ioctl_register_legacy(ioc, func, secpolicy,
6363 DATASET_NAME, B_FALSE, pool_check);
6364}
6365
6366static void
6367zfs_ioctl_register_pool_modify(zfs_ioc_t ioc, zfs_ioc_legacy_func_t *func)
6368{
6369 zfs_ioctl_register_legacy(ioc, func, zfs_secpolicy_config,
6370 POOL_NAME, B_TRUE, POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY);
6371}
6372
6373static void
6374zfs_ioctl_register_pool_meta(zfs_ioc_t ioc, zfs_ioc_legacy_func_t *func,
6375 zfs_secpolicy_func_t *secpolicy)
6376{
6377 zfs_ioctl_register_legacy(ioc, func, secpolicy,
6378 NO_NAME, B_FALSE, POOL_CHECK_NONE);
6379}
6380
6381static void
6382zfs_ioctl_register_dataset_read_secpolicy(zfs_ioc_t ioc,
6383 zfs_ioc_legacy_func_t *func, zfs_secpolicy_func_t *secpolicy)
6384{
6385 zfs_ioctl_register_legacy(ioc, func, secpolicy,
6386 DATASET_NAME, B_FALSE, POOL_CHECK_SUSPENDED);
6387}
6388
6389static void
6390zfs_ioctl_register_dataset_read(zfs_ioc_t ioc, zfs_ioc_legacy_func_t *func)
6391{
6392 zfs_ioctl_register_dataset_read_secpolicy(ioc, func,
6393 zfs_secpolicy_read);
6394}
6395
6396static void
6397zfs_ioctl_register_dataset_modify(zfs_ioc_t ioc, zfs_ioc_legacy_func_t *func,
e9aa730c 6398 zfs_secpolicy_func_t *secpolicy)
6f1ffb06
MA
6399{
6400 zfs_ioctl_register_legacy(ioc, func, secpolicy,
6401 DATASET_NAME, B_TRUE, POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY);
6402}
6403
6404static void
6405zfs_ioctl_init(void)
6406{
6407 zfs_ioctl_register("snapshot", ZFS_IOC_SNAPSHOT,
6408 zfs_ioc_snapshot, zfs_secpolicy_snapshot, POOL_NAME,
b83a0e2d
DB
6409 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_TRUE, B_TRUE,
6410 zfs_keys_snapshot, ARRAY_SIZE(zfs_keys_snapshot));
6f1ffb06
MA
6411
6412 zfs_ioctl_register("log_history", ZFS_IOC_LOG_HISTORY,
6413 zfs_ioc_log_history, zfs_secpolicy_log_history, NO_NAME,
b83a0e2d
DB
6414 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_FALSE, B_FALSE,
6415 zfs_keys_log_history, ARRAY_SIZE(zfs_keys_log_history));
6f1ffb06
MA
6416
6417 zfs_ioctl_register("space_snaps", ZFS_IOC_SPACE_SNAPS,
6418 zfs_ioc_space_snaps, zfs_secpolicy_read, DATASET_NAME,
b83a0e2d
DB
6419 POOL_CHECK_SUSPENDED, B_FALSE, B_FALSE,
6420 zfs_keys_space_snaps, ARRAY_SIZE(zfs_keys_space_snaps));
6f1ffb06
MA
6421
6422 zfs_ioctl_register("send", ZFS_IOC_SEND_NEW,
6423 zfs_ioc_send_new, zfs_secpolicy_send_new, DATASET_NAME,
b83a0e2d
DB
6424 POOL_CHECK_SUSPENDED, B_FALSE, B_FALSE,
6425 zfs_keys_send_new, ARRAY_SIZE(zfs_keys_send_new));
6f1ffb06
MA
6426
6427 zfs_ioctl_register("send_space", ZFS_IOC_SEND_SPACE,
6428 zfs_ioc_send_space, zfs_secpolicy_read, DATASET_NAME,
b83a0e2d
DB
6429 POOL_CHECK_SUSPENDED, B_FALSE, B_FALSE,
6430 zfs_keys_send_space, ARRAY_SIZE(zfs_keys_send_space));
6f1ffb06
MA
6431
6432 zfs_ioctl_register("create", ZFS_IOC_CREATE,
6433 zfs_ioc_create, zfs_secpolicy_create_clone, DATASET_NAME,
b83a0e2d
DB
6434 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_TRUE, B_TRUE,
6435 zfs_keys_create, ARRAY_SIZE(zfs_keys_create));
6f1ffb06
MA
6436
6437 zfs_ioctl_register("clone", ZFS_IOC_CLONE,
6438 zfs_ioc_clone, zfs_secpolicy_create_clone, DATASET_NAME,
b83a0e2d
DB
6439 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_TRUE, B_TRUE,
6440 zfs_keys_clone, ARRAY_SIZE(zfs_keys_clone));
6f1ffb06 6441
a1d477c2
MA
6442 zfs_ioctl_register("remap", ZFS_IOC_REMAP,
6443 zfs_ioc_remap, zfs_secpolicy_remap, DATASET_NAME,
b83a0e2d
DB
6444 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_FALSE, B_TRUE,
6445 zfs_keys_remap, ARRAY_SIZE(zfs_keys_remap));
a1d477c2 6446
6f1ffb06
MA
6447 zfs_ioctl_register("destroy_snaps", ZFS_IOC_DESTROY_SNAPS,
6448 zfs_ioc_destroy_snaps, zfs_secpolicy_destroy_snaps, POOL_NAME,
b83a0e2d
DB
6449 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_TRUE, B_TRUE,
6450 zfs_keys_destroy_snaps, ARRAY_SIZE(zfs_keys_destroy_snaps));
6f1ffb06 6451
13fe0198
MA
6452 zfs_ioctl_register("hold", ZFS_IOC_HOLD,
6453 zfs_ioc_hold, zfs_secpolicy_hold, POOL_NAME,
b83a0e2d
DB
6454 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_TRUE, B_TRUE,
6455 zfs_keys_hold, ARRAY_SIZE(zfs_keys_hold));
13fe0198
MA
6456 zfs_ioctl_register("release", ZFS_IOC_RELEASE,
6457 zfs_ioc_release, zfs_secpolicy_release, POOL_NAME,
b83a0e2d
DB
6458 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_TRUE, B_TRUE,
6459 zfs_keys_release, ARRAY_SIZE(zfs_keys_release));
13fe0198
MA
6460
6461 zfs_ioctl_register("get_holds", ZFS_IOC_GET_HOLDS,
6462 zfs_ioc_get_holds, zfs_secpolicy_read, DATASET_NAME,
b83a0e2d
DB
6463 POOL_CHECK_SUSPENDED, B_FALSE, B_FALSE,
6464 zfs_keys_get_holds, ARRAY_SIZE(zfs_keys_get_holds));
13fe0198 6465
46ba1e59
MA
6466 zfs_ioctl_register("rollback", ZFS_IOC_ROLLBACK,
6467 zfs_ioc_rollback, zfs_secpolicy_rollback, DATASET_NAME,
b83a0e2d
DB
6468 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_FALSE, B_TRUE,
6469 zfs_keys_rollback, ARRAY_SIZE(zfs_keys_rollback));
46ba1e59 6470
da536844
MA
6471 zfs_ioctl_register("bookmark", ZFS_IOC_BOOKMARK,
6472 zfs_ioc_bookmark, zfs_secpolicy_bookmark, POOL_NAME,
b83a0e2d
DB
6473 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_TRUE, B_TRUE,
6474 zfs_keys_bookmark, ARRAY_SIZE(zfs_keys_bookmark));
da536844
MA
6475
6476 zfs_ioctl_register("get_bookmarks", ZFS_IOC_GET_BOOKMARKS,
6477 zfs_ioc_get_bookmarks, zfs_secpolicy_read, DATASET_NAME,
b83a0e2d
DB
6478 POOL_CHECK_SUSPENDED, B_FALSE, B_FALSE,
6479 zfs_keys_get_bookmarks, ARRAY_SIZE(zfs_keys_get_bookmarks));
da536844
MA
6480
6481 zfs_ioctl_register("destroy_bookmarks", ZFS_IOC_DESTROY_BOOKMARKS,
6482 zfs_ioc_destroy_bookmarks, zfs_secpolicy_destroy_bookmarks,
6483 POOL_NAME,
b83a0e2d
DB
6484 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_TRUE, B_TRUE,
6485 zfs_keys_destroy_bookmarks,
6486 ARRAY_SIZE(zfs_keys_destroy_bookmarks));
da536844 6487
43e52edd
BB
6488 zfs_ioctl_register("receive", ZFS_IOC_RECV_NEW,
6489 zfs_ioc_recv_new, zfs_secpolicy_recv_new, DATASET_NAME,
b83a0e2d
DB
6490 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_TRUE, B_TRUE,
6491 zfs_keys_recv_new, ARRAY_SIZE(zfs_keys_recv_new));
b5256303
TC
6492 zfs_ioctl_register("load-key", ZFS_IOC_LOAD_KEY,
6493 zfs_ioc_load_key, zfs_secpolicy_load_key,
b83a0e2d
DB
6494 DATASET_NAME, POOL_CHECK_SUSPENDED, B_TRUE, B_TRUE,
6495 zfs_keys_load_key, ARRAY_SIZE(zfs_keys_load_key));
b5256303
TC
6496 zfs_ioctl_register("unload-key", ZFS_IOC_UNLOAD_KEY,
6497 zfs_ioc_unload_key, zfs_secpolicy_load_key,
b83a0e2d
DB
6498 DATASET_NAME, POOL_CHECK_SUSPENDED, B_TRUE, B_TRUE,
6499 zfs_keys_unload_key, ARRAY_SIZE(zfs_keys_unload_key));
b5256303
TC
6500 zfs_ioctl_register("change-key", ZFS_IOC_CHANGE_KEY,
6501 zfs_ioc_change_key, zfs_secpolicy_change_key,
6502 DATASET_NAME, POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY,
b83a0e2d
DB
6503 B_TRUE, B_TRUE, zfs_keys_change_key,
6504 ARRAY_SIZE(zfs_keys_change_key));
43e52edd 6505
bec1067d
AP
6506 zfs_ioctl_register("sync", ZFS_IOC_POOL_SYNC,
6507 zfs_ioc_pool_sync, zfs_secpolicy_none, POOL_NAME,
b83a0e2d
DB
6508 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_FALSE, B_FALSE,
6509 zfs_keys_pool_sync, ARRAY_SIZE(zfs_keys_pool_sync));
d3f2cd7e
AB
6510 zfs_ioctl_register("reopen", ZFS_IOC_POOL_REOPEN, zfs_ioc_pool_reopen,
6511 zfs_secpolicy_config, POOL_NAME, POOL_CHECK_SUSPENDED, B_TRUE,
b83a0e2d 6512 B_TRUE, zfs_keys_pool_reopen, ARRAY_SIZE(zfs_keys_pool_reopen));
bec1067d 6513
d99a0153
CW
6514 zfs_ioctl_register("channel_program", ZFS_IOC_CHANNEL_PROGRAM,
6515 zfs_ioc_channel_program, zfs_secpolicy_config,
6516 POOL_NAME, POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_TRUE,
b83a0e2d
DB
6517 B_TRUE, zfs_keys_channel_program,
6518 ARRAY_SIZE(zfs_keys_channel_program));
d99a0153 6519
d2734cce
SD
6520 zfs_ioctl_register("zpool_checkpoint", ZFS_IOC_POOL_CHECKPOINT,
6521 zfs_ioc_pool_checkpoint, zfs_secpolicy_config, POOL_NAME,
b83a0e2d
DB
6522 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_TRUE, B_TRUE,
6523 zfs_keys_pool_checkpoint, ARRAY_SIZE(zfs_keys_pool_checkpoint));
d2734cce
SD
6524
6525 zfs_ioctl_register("zpool_discard_checkpoint",
6526 ZFS_IOC_POOL_DISCARD_CHECKPOINT, zfs_ioc_pool_discard_checkpoint,
6527 zfs_secpolicy_config, POOL_NAME,
b83a0e2d
DB
6528 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_TRUE, B_TRUE,
6529 zfs_keys_pool_discard_checkpoint,
6530 ARRAY_SIZE(zfs_keys_pool_discard_checkpoint));
d2734cce 6531
619f0976
GW
6532 zfs_ioctl_register("initialize", ZFS_IOC_POOL_INITIALIZE,
6533 zfs_ioc_pool_initialize, zfs_secpolicy_config, POOL_NAME,
6534 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY, B_TRUE, B_TRUE,
6535 zfs_keys_pool_initialize, ARRAY_SIZE(zfs_keys_pool_initialize));
6536
6f1ffb06
MA
6537 /* IOCTLS that use the legacy function signature */
6538
6539 zfs_ioctl_register_legacy(ZFS_IOC_POOL_FREEZE, zfs_ioc_pool_freeze,
6540 zfs_secpolicy_config, NO_NAME, B_FALSE, POOL_CHECK_READONLY);
6541
6542 zfs_ioctl_register_pool(ZFS_IOC_POOL_CREATE, zfs_ioc_pool_create,
6543 zfs_secpolicy_config, B_TRUE, POOL_CHECK_NONE);
6544 zfs_ioctl_register_pool_modify(ZFS_IOC_POOL_SCAN,
6545 zfs_ioc_pool_scan);
6546 zfs_ioctl_register_pool_modify(ZFS_IOC_POOL_UPGRADE,
6547 zfs_ioc_pool_upgrade);
6548 zfs_ioctl_register_pool_modify(ZFS_IOC_VDEV_ADD,
6549 zfs_ioc_vdev_add);
6550 zfs_ioctl_register_pool_modify(ZFS_IOC_VDEV_REMOVE,
6551 zfs_ioc_vdev_remove);
6552 zfs_ioctl_register_pool_modify(ZFS_IOC_VDEV_SET_STATE,
6553 zfs_ioc_vdev_set_state);
6554 zfs_ioctl_register_pool_modify(ZFS_IOC_VDEV_ATTACH,
6555 zfs_ioc_vdev_attach);
6556 zfs_ioctl_register_pool_modify(ZFS_IOC_VDEV_DETACH,
6557 zfs_ioc_vdev_detach);
6558 zfs_ioctl_register_pool_modify(ZFS_IOC_VDEV_SETPATH,
6559 zfs_ioc_vdev_setpath);
6560 zfs_ioctl_register_pool_modify(ZFS_IOC_VDEV_SETFRU,
6561 zfs_ioc_vdev_setfru);
6562 zfs_ioctl_register_pool_modify(ZFS_IOC_POOL_SET_PROPS,
6563 zfs_ioc_pool_set_props);
6564 zfs_ioctl_register_pool_modify(ZFS_IOC_VDEV_SPLIT,
6565 zfs_ioc_vdev_split);
6566 zfs_ioctl_register_pool_modify(ZFS_IOC_POOL_REGUID,
6567 zfs_ioc_pool_reguid);
6568
6569 zfs_ioctl_register_pool_meta(ZFS_IOC_POOL_CONFIGS,
6570 zfs_ioc_pool_configs, zfs_secpolicy_none);
6571 zfs_ioctl_register_pool_meta(ZFS_IOC_POOL_TRYIMPORT,
6572 zfs_ioc_pool_tryimport, zfs_secpolicy_config);
6573 zfs_ioctl_register_pool_meta(ZFS_IOC_INJECT_FAULT,
6574 zfs_ioc_inject_fault, zfs_secpolicy_inject);
6575 zfs_ioctl_register_pool_meta(ZFS_IOC_CLEAR_FAULT,
6576 zfs_ioc_clear_fault, zfs_secpolicy_inject);
6577 zfs_ioctl_register_pool_meta(ZFS_IOC_INJECT_LIST_NEXT,
6578 zfs_ioc_inject_list_next, zfs_secpolicy_inject);
6579
6580 /*
6581 * pool destroy, and export don't log the history as part of
6582 * zfsdev_ioctl, but rather zfs_ioc_pool_export
6583 * does the logging of those commands.
6584 */
6585 zfs_ioctl_register_pool(ZFS_IOC_POOL_DESTROY, zfs_ioc_pool_destroy,
87a63dd7 6586 zfs_secpolicy_config, B_FALSE, POOL_CHECK_SUSPENDED);
6f1ffb06 6587 zfs_ioctl_register_pool(ZFS_IOC_POOL_EXPORT, zfs_ioc_pool_export,
87a63dd7 6588 zfs_secpolicy_config, B_FALSE, POOL_CHECK_SUSPENDED);
6f1ffb06
MA
6589
6590 zfs_ioctl_register_pool(ZFS_IOC_POOL_STATS, zfs_ioc_pool_stats,
6591 zfs_secpolicy_read, B_FALSE, POOL_CHECK_NONE);
6592 zfs_ioctl_register_pool(ZFS_IOC_POOL_GET_PROPS, zfs_ioc_pool_get_props,
6593 zfs_secpolicy_read, B_FALSE, POOL_CHECK_NONE);
6594
6595 zfs_ioctl_register_pool(ZFS_IOC_ERROR_LOG, zfs_ioc_error_log,
6596 zfs_secpolicy_inject, B_FALSE, POOL_CHECK_SUSPENDED);
6597 zfs_ioctl_register_pool(ZFS_IOC_DSOBJ_TO_DSNAME,
6598 zfs_ioc_dsobj_to_dsname,
6599 zfs_secpolicy_diff, B_FALSE, POOL_CHECK_SUSPENDED);
6600 zfs_ioctl_register_pool(ZFS_IOC_POOL_GET_HISTORY,
6601 zfs_ioc_pool_get_history,
6602 zfs_secpolicy_config, B_FALSE, POOL_CHECK_SUSPENDED);
6603
6604 zfs_ioctl_register_pool(ZFS_IOC_POOL_IMPORT, zfs_ioc_pool_import,
6605 zfs_secpolicy_config, B_TRUE, POOL_CHECK_NONE);
6606
6607 zfs_ioctl_register_pool(ZFS_IOC_CLEAR, zfs_ioc_clear,
92e43c17 6608 zfs_secpolicy_config, B_TRUE, POOL_CHECK_READONLY);
6f1ffb06
MA
6609
6610 zfs_ioctl_register_dataset_read(ZFS_IOC_SPACE_WRITTEN,
6611 zfs_ioc_space_written);
6f1ffb06
MA
6612 zfs_ioctl_register_dataset_read(ZFS_IOC_OBJSET_RECVD_PROPS,
6613 zfs_ioc_objset_recvd_props);
6614 zfs_ioctl_register_dataset_read(ZFS_IOC_NEXT_OBJ,
6615 zfs_ioc_next_obj);
6616 zfs_ioctl_register_dataset_read(ZFS_IOC_GET_FSACL,
6617 zfs_ioc_get_fsacl);
6618 zfs_ioctl_register_dataset_read(ZFS_IOC_OBJSET_STATS,
6619 zfs_ioc_objset_stats);
6620 zfs_ioctl_register_dataset_read(ZFS_IOC_OBJSET_ZPLPROPS,
6621 zfs_ioc_objset_zplprops);
6622 zfs_ioctl_register_dataset_read(ZFS_IOC_DATASET_LIST_NEXT,
6623 zfs_ioc_dataset_list_next);
6624 zfs_ioctl_register_dataset_read(ZFS_IOC_SNAPSHOT_LIST_NEXT,
6625 zfs_ioc_snapshot_list_next);
6626 zfs_ioctl_register_dataset_read(ZFS_IOC_SEND_PROGRESS,
6627 zfs_ioc_send_progress);
6628
6629 zfs_ioctl_register_dataset_read_secpolicy(ZFS_IOC_DIFF,
6630 zfs_ioc_diff, zfs_secpolicy_diff);
6631 zfs_ioctl_register_dataset_read_secpolicy(ZFS_IOC_OBJ_TO_STATS,
6632 zfs_ioc_obj_to_stats, zfs_secpolicy_diff);
6633 zfs_ioctl_register_dataset_read_secpolicy(ZFS_IOC_OBJ_TO_PATH,
6634 zfs_ioc_obj_to_path, zfs_secpolicy_diff);
6635 zfs_ioctl_register_dataset_read_secpolicy(ZFS_IOC_USERSPACE_ONE,
6636 zfs_ioc_userspace_one, zfs_secpolicy_userspace_one);
6637 zfs_ioctl_register_dataset_read_secpolicy(ZFS_IOC_USERSPACE_MANY,
6638 zfs_ioc_userspace_many, zfs_secpolicy_userspace_many);
6639 zfs_ioctl_register_dataset_read_secpolicy(ZFS_IOC_SEND,
6640 zfs_ioc_send, zfs_secpolicy_send);
6641
6642 zfs_ioctl_register_dataset_modify(ZFS_IOC_SET_PROP, zfs_ioc_set_prop,
6643 zfs_secpolicy_none);
6644 zfs_ioctl_register_dataset_modify(ZFS_IOC_DESTROY, zfs_ioc_destroy,
6645 zfs_secpolicy_destroy);
6f1ffb06
MA
6646 zfs_ioctl_register_dataset_modify(ZFS_IOC_RENAME, zfs_ioc_rename,
6647 zfs_secpolicy_rename);
6648 zfs_ioctl_register_dataset_modify(ZFS_IOC_RECV, zfs_ioc_recv,
6649 zfs_secpolicy_recv);
6650 zfs_ioctl_register_dataset_modify(ZFS_IOC_PROMOTE, zfs_ioc_promote,
6651 zfs_secpolicy_promote);
6f1ffb06
MA
6652 zfs_ioctl_register_dataset_modify(ZFS_IOC_INHERIT_PROP,
6653 zfs_ioc_inherit_prop, zfs_secpolicy_inherit_prop);
6654 zfs_ioctl_register_dataset_modify(ZFS_IOC_SET_FSACL, zfs_ioc_set_fsacl,
6655 zfs_secpolicy_set_fsacl);
6656
6657 zfs_ioctl_register_dataset_nolog(ZFS_IOC_SHARE, zfs_ioc_share,
6658 zfs_secpolicy_share, POOL_CHECK_NONE);
6659 zfs_ioctl_register_dataset_nolog(ZFS_IOC_SMB_ACL, zfs_ioc_smb_acl,
6660 zfs_secpolicy_smb_acl, POOL_CHECK_NONE);
6661 zfs_ioctl_register_dataset_nolog(ZFS_IOC_USERSPACE_UPGRADE,
6662 zfs_ioc_userspace_upgrade, zfs_secpolicy_userspace_upgrade,
6663 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY);
6664 zfs_ioctl_register_dataset_nolog(ZFS_IOC_TMP_SNAPSHOT,
6665 zfs_ioc_tmp_snapshot, zfs_secpolicy_tmp_snapshot,
6666 POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY);
6667
6668 /*
ba6a2402 6669 * ZoL functions
6f1ffb06 6670 */
6f1ffb06
MA
6671 zfs_ioctl_register_legacy(ZFS_IOC_EVENTS_NEXT, zfs_ioc_events_next,
6672 zfs_secpolicy_config, NO_NAME, B_FALSE, POOL_CHECK_NONE);
6673 zfs_ioctl_register_legacy(ZFS_IOC_EVENTS_CLEAR, zfs_ioc_events_clear,
6674 zfs_secpolicy_config, NO_NAME, B_FALSE, POOL_CHECK_NONE);
75e3ff58
BB
6675 zfs_ioctl_register_legacy(ZFS_IOC_EVENTS_SEEK, zfs_ioc_events_seek,
6676 zfs_secpolicy_config, NO_NAME, B_FALSE, POOL_CHECK_NONE);
6f1ffb06 6677}
34dc7c2f 6678
b83a0e2d
DB
6679/*
6680 * Verify that for non-legacy ioctls the input nvlist
6681 * pairs match against the expected input.
6682 *
6683 * Possible errors are:
6684 * ZFS_ERR_IOC_ARG_UNAVAIL An unrecognized nvpair was encountered
6685 * ZFS_ERR_IOC_ARG_REQUIRED A required nvpair is missing
6686 * ZFS_ERR_IOC_ARG_BADTYPE Invalid type for nvpair
6687 */
6688static int
6689zfs_check_input_nvpairs(nvlist_t *innvl, const zfs_ioc_vec_t *vec)
6690{
6691 const zfs_ioc_key_t *nvl_keys = vec->zvec_nvl_keys;
6692 boolean_t required_keys_found = B_FALSE;
6693
6694 /*
6695 * examine each input pair
6696 */
6697 for (nvpair_t *pair = nvlist_next_nvpair(innvl, NULL);
6698 pair != NULL; pair = nvlist_next_nvpair(innvl, pair)) {
6699 char *name = nvpair_name(pair);
6700 data_type_t type = nvpair_type(pair);
6701 boolean_t identified = B_FALSE;
6702
6703 /*
6704 * check pair against the documented names and type
6705 */
6706 for (int k = 0; k < vec->zvec_nvl_key_count; k++) {
6707 /* if not a wild card name, check for an exact match */
6708 if ((nvl_keys[k].zkey_flags & ZK_WILDCARDLIST) == 0 &&
6709 strcmp(nvl_keys[k].zkey_name, name) != 0)
6710 continue;
6711
6712 identified = B_TRUE;
6713
6714 if (nvl_keys[k].zkey_type != DATA_TYPE_ANY &&
6715 nvl_keys[k].zkey_type != type) {
6716 return (SET_ERROR(ZFS_ERR_IOC_ARG_BADTYPE));
6717 }
6718
6719 if (nvl_keys[k].zkey_flags & ZK_OPTIONAL)
6720 continue;
6721
6722 required_keys_found = B_TRUE;
6723 break;
6724 }
6725
6726 /* allow an 'optional' key, everything else is invalid */
6727 if (!identified &&
6728 (strcmp(name, "optional") != 0 ||
6729 type != DATA_TYPE_NVLIST)) {
6730 return (SET_ERROR(ZFS_ERR_IOC_ARG_UNAVAIL));
6731 }
6732 }
6733
6734 /* verify that all required keys were found */
6735 for (int k = 0; k < vec->zvec_nvl_key_count; k++) {
6736 if (nvl_keys[k].zkey_flags & ZK_OPTIONAL)
6737 continue;
6738
6739 if (nvl_keys[k].zkey_flags & ZK_WILDCARDLIST) {
6740 /* at least one non-optionial key is expected here */
6741 if (!required_keys_found)
6742 return (SET_ERROR(ZFS_ERR_IOC_ARG_REQUIRED));
6743 continue;
6744 }
6745
6746 if (!nvlist_exists(innvl, nvl_keys[k].zkey_name))
6747 return (SET_ERROR(ZFS_ERR_IOC_ARG_REQUIRED));
6748 }
6749
6750 return (0);
6751}
6752
9babb374 6753int
572e2857
BB
6754pool_status_check(const char *name, zfs_ioc_namecheck_t type,
6755 zfs_ioc_poolcheck_t check)
9babb374
BB
6756{
6757 spa_t *spa;
6758 int error;
6759
6760 ASSERT(type == POOL_NAME || type == DATASET_NAME);
6761
572e2857
BB
6762 if (check & POOL_CHECK_NONE)
6763 return (0);
6764
9babb374
BB
6765 error = spa_open(name, &spa, FTAG);
6766 if (error == 0) {
572e2857 6767 if ((check & POOL_CHECK_SUSPENDED) && spa_suspended(spa))
2e528b49 6768 error = SET_ERROR(EAGAIN);
572e2857 6769 else if ((check & POOL_CHECK_READONLY) && !spa_writeable(spa))
2e528b49 6770 error = SET_ERROR(EROFS);
9babb374
BB
6771 spa_close(spa, FTAG);
6772 }
6773 return (error);
6774}
6775
325f0235
BB
6776static void *
6777zfsdev_get_state_impl(minor_t minor, enum zfsdev_state_type which)
6778{
6779 zfsdev_state_t *zs;
6780
3937ab20 6781 for (zs = zfsdev_state_list; zs != NULL; zs = zs->zs_next) {
325f0235 6782 if (zs->zs_minor == minor) {
3937ab20 6783 smp_rmb();
325f0235 6784 switch (which) {
d1d7e268
MK
6785 case ZST_ONEXIT:
6786 return (zs->zs_onexit);
6787 case ZST_ZEVENT:
6788 return (zs->zs_zevent);
6789 case ZST_ALL:
6790 return (zs);
325f0235
BB
6791 }
6792 }
6793 }
6794
d1d7e268 6795 return (NULL);
325f0235
BB
6796}
6797
6798void *
6799zfsdev_get_state(minor_t minor, enum zfsdev_state_type which)
6800{
6801 void *ptr;
6802
325f0235 6803 ptr = zfsdev_get_state_impl(minor, which);
325f0235 6804
d1d7e268 6805 return (ptr);
325f0235
BB
6806}
6807
72540ea3
RY
6808int
6809zfsdev_getminor(struct file *filp, minor_t *minorp)
325f0235 6810{
72540ea3
RY
6811 zfsdev_state_t *zs, *fpd;
6812
325f0235 6813 ASSERT(filp != NULL);
72540ea3
RY
6814 ASSERT(!MUTEX_HELD(&zfsdev_state_lock));
6815
6816 fpd = filp->private_data;
6817 if (fpd == NULL)
ecb2b7dc 6818 return (SET_ERROR(EBADF));
72540ea3
RY
6819
6820 mutex_enter(&zfsdev_state_lock);
6821
6822 for (zs = zfsdev_state_list; zs != NULL; zs = zs->zs_next) {
6823
6824 if (zs->zs_minor == -1)
6825 continue;
6826
6827 if (fpd == zs) {
6828 *minorp = fpd->zs_minor;
6829 mutex_exit(&zfsdev_state_lock);
6830 return (0);
6831 }
6832 }
6833
6834 mutex_exit(&zfsdev_state_lock);
325f0235 6835
ecb2b7dc 6836 return (SET_ERROR(EBADF));
325f0235
BB
6837}
6838
572e2857 6839/*
325f0235
BB
6840 * Find a free minor number. The zfsdev_state_list is expected to
6841 * be short since it is only a list of currently open file handles.
572e2857
BB
6842 */
6843minor_t
6844zfsdev_minor_alloc(void)
6845{
325f0235 6846 static minor_t last_minor = 0;
572e2857
BB
6847 minor_t m;
6848
6849 ASSERT(MUTEX_HELD(&zfsdev_state_lock));
6850
6851 for (m = last_minor + 1; m != last_minor; m++) {
6852 if (m > ZFSDEV_MAX_MINOR)
6853 m = 1;
325f0235 6854 if (zfsdev_get_state_impl(m, ZST_ALL) == NULL) {
572e2857
BB
6855 last_minor = m;
6856 return (m);
6857 }
6858 }
6859
6860 return (0);
6861}
6862
6863static int
325f0235 6864zfsdev_state_init(struct file *filp)
572e2857 6865{
3937ab20 6866 zfsdev_state_t *zs, *zsprev = NULL;
572e2857 6867 minor_t minor;
3937ab20 6868 boolean_t newzs = B_FALSE;
572e2857
BB
6869
6870 ASSERT(MUTEX_HELD(&zfsdev_state_lock));
572e2857 6871
d1d7e268
MK
6872 minor = zfsdev_minor_alloc();
6873 if (minor == 0)
6874 return (SET_ERROR(ENXIO));
325f0235 6875
3937ab20
TC
6876 for (zs = zfsdev_state_list; zs != NULL; zs = zs->zs_next) {
6877 if (zs->zs_minor == -1)
6878 break;
6879 zsprev = zs;
6880 }
6881
6882 if (!zs) {
6883 zs = kmem_zalloc(sizeof (zfsdev_state_t), KM_SLEEP);
6884 newzs = B_TRUE;
6885 }
572e2857 6886
325f0235 6887 zs->zs_file = filp;
325f0235 6888 filp->private_data = zs;
572e2857 6889
325f0235
BB
6890 zfs_onexit_init((zfs_onexit_t **)&zs->zs_onexit);
6891 zfs_zevent_init((zfs_zevent_t **)&zs->zs_zevent);
572e2857 6892
3937ab20
TC
6893
6894 /*
6895 * In order to provide for lock-free concurrent read access
6896 * to the minor list in zfsdev_get_state_impl(), new entries
6897 * must be completely written before linking them into the
6898 * list whereas existing entries are already linked; the last
6899 * operation must be updating zs_minor (from -1 to the new
6900 * value).
6901 */
6902 if (newzs) {
6903 zs->zs_minor = minor;
6904 smp_wmb();
6905 zsprev->zs_next = zs;
6906 } else {
6907 smp_wmb();
6908 zs->zs_minor = minor;
6909 }
572e2857
BB
6910
6911 return (0);
6912}
6913
325f0235
BB
6914static int
6915zfsdev_state_destroy(struct file *filp)
572e2857 6916{
325f0235 6917 zfsdev_state_t *zs;
572e2857 6918
325f0235
BB
6919 ASSERT(MUTEX_HELD(&zfsdev_state_lock));
6920 ASSERT(filp->private_data != NULL);
572e2857 6921
325f0235 6922 zs = filp->private_data;
3937ab20 6923 zs->zs_minor = -1;
325f0235
BB
6924 zfs_onexit_destroy(zs->zs_onexit);
6925 zfs_zevent_destroy(zs->zs_zevent);
572e2857 6926
d1d7e268 6927 return (0);
572e2857
BB
6928}
6929
6930static int
325f0235 6931zfsdev_open(struct inode *ino, struct file *filp)
572e2857 6932{
325f0235 6933 int error;
572e2857 6934
325f0235
BB
6935 mutex_enter(&zfsdev_state_lock);
6936 error = zfsdev_state_init(filp);
6937 mutex_exit(&zfsdev_state_lock);
572e2857 6938
325f0235 6939 return (-error);
572e2857
BB
6940}
6941
6942static int
325f0235 6943zfsdev_release(struct inode *ino, struct file *filp)
572e2857 6944{
325f0235 6945 int error;
572e2857
BB
6946
6947 mutex_enter(&zfsdev_state_lock);
325f0235 6948 error = zfsdev_state_destroy(filp);
572e2857
BB
6949 mutex_exit(&zfsdev_state_lock);
6950
325f0235 6951 return (-error);
572e2857
BB
6952}
6953
325f0235
BB
6954static long
6955zfsdev_ioctl(struct file *filp, unsigned cmd, unsigned long arg)
34dc7c2f
BB
6956{
6957 zfs_cmd_t *zc;
6f1ffb06 6958 uint_t vecnum;
4fd762f8 6959 int error, rc, flag = 0;
6f1ffb06 6960 const zfs_ioc_vec_t *vec;
fb8e608d 6961 char *saved_poolname = NULL;
6f1ffb06 6962 nvlist_t *innvl = NULL;
40d06e3c 6963 fstrans_cookie_t cookie;
6f1ffb06
MA
6964
6965 vecnum = cmd - ZFS_IOC_FIRST;
6966 if (vecnum >= sizeof (zfs_ioc_vec) / sizeof (zfs_ioc_vec[0]))
b83a0e2d 6967 return (-SET_ERROR(ZFS_ERR_IOC_CMD_UNAVAIL));
6f1ffb06 6968 vec = &zfs_ioc_vec[vecnum];
34dc7c2f 6969
2e0358cb
BB
6970 /*
6971 * The registered ioctl list may be sparse, verify that either
6972 * a normal or legacy handler are registered.
6973 */
6974 if (vec->zvec_func == NULL && vec->zvec_legacy_func == NULL)
b83a0e2d 6975 return (-SET_ERROR(ZFS_ERR_IOC_CMD_UNAVAIL));
2e0358cb 6976
efcd79a8 6977 zc = kmem_zalloc(sizeof (zfs_cmd_t), KM_SLEEP);
34dc7c2f 6978
9babb374 6979 error = ddi_copyin((void *)arg, zc, sizeof (zfs_cmd_t), flag);
6f1ffb06 6980 if (error != 0) {
2e528b49 6981 error = SET_ERROR(EFAULT);
6f1ffb06
MA
6982 goto out;
6983 }
34dc7c2f 6984
6f1ffb06 6985 zc->zc_iflags = flag & FKIOCTL;
f74b821a
BB
6986 if (zc->zc_nvlist_src_size > MAX_NVLIST_SRC_SIZE) {
6987 /*
6988 * Make sure the user doesn't pass in an insane value for
6989 * zc_nvlist_src_size. We have to check, since we will end
6990 * up allocating that much memory inside of get_nvlist(). This
6991 * prevents a nefarious user from allocating tons of kernel
6992 * memory.
6993 *
6994 * Also, we return EINVAL instead of ENOMEM here. The reason
6995 * being that returning ENOMEM from an ioctl() has a special
6996 * connotation; that the user's size value is too small and
6997 * needs to be expanded to hold the nvlist. See
6998 * zcmd_expand_dst_nvlist() for details.
6999 */
7000 error = SET_ERROR(EINVAL); /* User's size too big */
7001
7002 } else if (zc->zc_nvlist_src_size != 0) {
6f1ffb06
MA
7003 error = get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
7004 zc->zc_iflags, &innvl);
7005 if (error != 0)
7006 goto out;
7007 }
34dc7c2f
BB
7008
7009 /*
7010 * Ensure that all pool/dataset names are valid before we pass down to
7011 * the lower layers.
7012 */
6f1ffb06
MA
7013 zc->zc_name[sizeof (zc->zc_name) - 1] = '\0';
7014 switch (vec->zvec_namecheck) {
7015 case POOL_NAME:
7016 if (pool_namecheck(zc->zc_name, NULL, NULL) != 0)
2e528b49 7017 error = SET_ERROR(EINVAL);
6f1ffb06 7018 else
572e2857 7019 error = pool_status_check(zc->zc_name,
6f1ffb06
MA
7020 vec->zvec_namecheck, vec->zvec_pool_check);
7021 break;
34dc7c2f 7022
6f1ffb06
MA
7023 case DATASET_NAME:
7024 if (dataset_namecheck(zc->zc_name, NULL, NULL) != 0)
2e528b49 7025 error = SET_ERROR(EINVAL);
6f1ffb06 7026 else
572e2857 7027 error = pool_status_check(zc->zc_name,
6f1ffb06
MA
7028 vec->zvec_namecheck, vec->zvec_pool_check);
7029 break;
34dc7c2f 7030
6f1ffb06
MA
7031 case NO_NAME:
7032 break;
34dc7c2f
BB
7033 }
7034
b83a0e2d
DB
7035 /*
7036 * Ensure that all input pairs are valid before we pass them down
7037 * to the lower layers.
7038 *
7039 * The vectored functions can use fnvlist_lookup_{type} for any
7040 * required pairs since zfs_check_input_nvpairs() confirmed that
7041 * they exist and are of the correct type.
7042 */
7043 if (error == 0 && vec->zvec_func != NULL) {
7044 error = zfs_check_input_nvpairs(innvl, vec);
7045 if (error != 0)
7046 goto out;
7047 }
34dc7c2f 7048
005e27e3 7049 if (error == 0) {
ddab862d 7050 cookie = spl_fstrans_mark();
6f1ffb06 7051 error = vec->zvec_secpolicy(zc, innvl, CRED());
ddab862d
TC
7052 spl_fstrans_unmark(cookie);
7053 }
6f1ffb06
MA
7054
7055 if (error != 0)
7056 goto out;
7057
7058 /* legacy ioctls can modify zc_name */
4fd762f8
BB
7059 saved_poolname = strdup(zc->zc_name);
7060 if (saved_poolname == NULL) {
7061 error = SET_ERROR(ENOMEM);
7062 goto out;
7063 } else {
7064 saved_poolname[strcspn(saved_poolname, "/@#")] = '\0';
7065 }
6f1ffb06
MA
7066
7067 if (vec->zvec_func != NULL) {
7068 nvlist_t *outnvl;
7069 int puterror = 0;
7070 spa_t *spa;
7071 nvlist_t *lognv = NULL;
7072
7073 ASSERT(vec->zvec_legacy_func == NULL);
7074
7075 /*
7076 * Add the innvl to the lognv before calling the func,
7077 * in case the func changes the innvl.
7078 */
7079 if (vec->zvec_allow_log) {
7080 lognv = fnvlist_alloc();
7081 fnvlist_add_string(lognv, ZPOOL_HIST_IOCTL,
7082 vec->zvec_name);
7083 if (!nvlist_empty(innvl)) {
7084 fnvlist_add_nvlist(lognv, ZPOOL_HIST_INPUT_NVL,
7085 innvl);
7086 }
7087 }
7088
79c76d5b 7089 outnvl = fnvlist_alloc();
40d06e3c 7090 cookie = spl_fstrans_mark();
6f1ffb06 7091 error = vec->zvec_func(zc->zc_name, innvl, outnvl);
40d06e3c 7092 spl_fstrans_unmark(cookie);
6f1ffb06 7093
d99a0153
CW
7094 /*
7095 * Some commands can partially execute, modify state, and still
7096 * return an error. In these cases, attempt to record what
7097 * was modified.
7098 */
7099 if ((error == 0 ||
7100 (cmd == ZFS_IOC_CHANNEL_PROGRAM && error != EINVAL)) &&
7101 vec->zvec_allow_log &&
6f1ffb06
MA
7102 spa_open(zc->zc_name, &spa, FTAG) == 0) {
7103 if (!nvlist_empty(outnvl)) {
7104 fnvlist_add_nvlist(lognv, ZPOOL_HIST_OUTPUT_NVL,
7105 outnvl);
7106 }
d99a0153
CW
7107 if (error != 0) {
7108 fnvlist_add_int64(lognv, ZPOOL_HIST_ERRNO,
7109 error);
7110 }
6f1ffb06
MA
7111 (void) spa_history_log_nvl(spa, lognv);
7112 spa_close(spa, FTAG);
7113 }
7114 fnvlist_free(lognv);
7115
7116 if (!nvlist_empty(outnvl) || zc->zc_nvlist_dst_size != 0) {
7117 int smusherror = 0;
7118 if (vec->zvec_smush_outnvlist) {
7119 smusherror = nvlist_smush(outnvl,
7120 zc->zc_nvlist_dst_size);
7121 }
7122 if (smusherror == 0)
7123 puterror = put_nvlist(zc, outnvl);
7124 }
7125
7126 if (puterror != 0)
7127 error = puterror;
7128
7129 nvlist_free(outnvl);
7130 } else {
40d06e3c 7131 cookie = spl_fstrans_mark();
6f1ffb06 7132 error = vec->zvec_legacy_func(zc);
40d06e3c 7133 spl_fstrans_unmark(cookie);
6f1ffb06
MA
7134 }
7135
7136out:
7137 nvlist_free(innvl);
9babb374 7138 rc = ddi_copyout(zc, (void *)arg, sizeof (zfs_cmd_t), flag);
6f1ffb06 7139 if (error == 0 && rc != 0)
2e528b49 7140 error = SET_ERROR(EFAULT);
6f1ffb06
MA
7141 if (error == 0 && vec->zvec_allow_log) {
7142 char *s = tsd_get(zfs_allow_log_key);
7143 if (s != NULL)
7144 strfree(s);
fb8e608d
TC
7145 (void) tsd_set(zfs_allow_log_key, saved_poolname);
7146 } else {
7147 if (saved_poolname != NULL)
4fd762f8 7148 strfree(saved_poolname);
34dc7c2f
BB
7149 }
7150
7151 kmem_free(zc, sizeof (zfs_cmd_t));
325f0235 7152 return (-error);
34dc7c2f
BB
7153}
7154
325f0235
BB
7155#ifdef CONFIG_COMPAT
7156static long
7157zfsdev_compat_ioctl(struct file *filp, unsigned cmd, unsigned long arg)
34dc7c2f 7158{
d1d7e268 7159 return (zfsdev_ioctl(filp, cmd, arg));
325f0235
BB
7160}
7161#else
d1d7e268 7162#define zfsdev_compat_ioctl NULL
325f0235 7163#endif
34dc7c2f 7164
325f0235 7165static const struct file_operations zfsdev_fops = {
d1d7e268
MK
7166 .open = zfsdev_open,
7167 .release = zfsdev_release,
7168 .unlocked_ioctl = zfsdev_ioctl,
7169 .compat_ioctl = zfsdev_compat_ioctl,
7170 .owner = THIS_MODULE,
325f0235 7171};
34dc7c2f 7172
325f0235 7173static struct miscdevice zfs_misc = {
fa61e723 7174 .minor = ZFS_DEVICE_MINOR,
d1d7e268
MK
7175 .name = ZFS_DRIVER,
7176 .fops = &zfsdev_fops,
325f0235 7177};
34dc7c2f 7178
fa61e723 7179MODULE_ALIAS_MISCDEV(ZFS_DEVICE_MINOR);
a6cc9756
BB
7180MODULE_ALIAS("devname:zfs");
7181
34dc7c2f 7182static int
325f0235 7183zfs_attach(void)
34dc7c2f 7184{
325f0235 7185 int error;
34dc7c2f 7186
325f0235 7187 mutex_init(&zfsdev_state_lock, NULL, MUTEX_DEFAULT, NULL);
3937ab20
TC
7188 zfsdev_state_list = kmem_zalloc(sizeof (zfsdev_state_t), KM_SLEEP);
7189 zfsdev_state_list->zs_minor = -1;
34dc7c2f 7190
325f0235 7191 error = misc_register(&zfs_misc);
a6cc9756
BB
7192 if (error == -EBUSY) {
7193 /*
7194 * Fallback to dynamic minor allocation in the event of a
7195 * collision with a reserved minor in linux/miscdevice.h.
7196 * In this case the kernel modules must be manually loaded.
7197 */
7198 printk(KERN_INFO "ZFS: misc_register() with static minor %d "
7199 "failed %d, retrying with MISC_DYNAMIC_MINOR\n",
fa61e723 7200 ZFS_DEVICE_MINOR, error);
a6cc9756
BB
7201
7202 zfs_misc.minor = MISC_DYNAMIC_MINOR;
7203 error = misc_register(&zfs_misc);
325f0235 7204 }
34dc7c2f 7205
a6cc9756
BB
7206 if (error)
7207 printk(KERN_INFO "ZFS: misc_register() failed %d\n", error);
7208
7209 return (error);
34dc7c2f
BB
7210}
7211
325f0235
BB
7212static void
7213zfs_detach(void)
34dc7c2f 7214{
3937ab20 7215 zfsdev_state_t *zs, *zsprev = NULL;
34dc7c2f 7216
324dcd37 7217 misc_deregister(&zfs_misc);
325f0235 7218 mutex_destroy(&zfsdev_state_lock);
3937ab20
TC
7219
7220 for (zs = zfsdev_state_list; zs != NULL; zs = zs->zs_next) {
7221 if (zsprev)
7222 kmem_free(zsprev, sizeof (zfsdev_state_t));
7223 zsprev = zs;
7224 }
7225 if (zsprev)
7226 kmem_free(zsprev, sizeof (zfsdev_state_t));
34dc7c2f
BB
7227}
7228
6f1ffb06
MA
7229static void
7230zfs_allow_log_destroy(void *arg)
7231{
7232 char *poolname = arg;
9f3d1407 7233
7234 if (poolname != NULL)
7235 strfree(poolname);
6f1ffb06 7236}
325f0235
BB
7237
7238#ifdef DEBUG
d1d7e268 7239#define ZFS_DEBUG_STR " (DEBUG mode)"
325f0235 7240#else
d1d7e268 7241#define ZFS_DEBUG_STR ""
325f0235 7242#endif
34dc7c2f 7243
b4f3666a 7244static int __init
34dc7c2f
BB
7245_init(void)
7246{
7247 int error;
7248
3d8d245f 7249 error = -vn_set_pwd("/");
b4f3666a
BB
7250 if (error) {
7251 printk(KERN_NOTICE
7252 "ZFS: Warning unable to set pwd to '/': %d\n", error);
7253 return (error);
7254 }
7255
a0bd735a
BP
7256 if ((error = -zvol_init()) != 0)
7257 return (error);
7258
34dc7c2f
BB
7259 spa_init(FREAD | FWRITE);
7260 zfs_init();
34dc7c2f 7261
6f1ffb06 7262 zfs_ioctl_init();
e8bcb693 7263 zfs_sysfs_init();
6f1ffb06 7264
325f0235 7265 if ((error = zfs_attach()) != 0)
a0bd735a 7266 goto out;
34dc7c2f 7267
d5446cfc 7268 tsd_create(&zfs_fsyncer_key, NULL);
6f1ffb06
MA
7269 tsd_create(&rrw_tsd_key, rrw_tsd_destroy);
7270 tsd_create(&zfs_allow_log_key, zfs_allow_log_destroy);
34dc7c2f 7271
4b5d425f 7272 printk(KERN_NOTICE "ZFS: Loaded module v%s-%s%s, "
d1d7e268
MK
7273 "ZFS pool version %s, ZFS filesystem version %s\n",
7274 ZFS_META_VERSION, ZFS_META_RELEASE, ZFS_DEBUG_STR,
7275 SPA_VERSION_STRING, ZPL_VERSION_STRING);
b695c34e
MM
7276#ifndef CONFIG_FS_POSIX_ACL
7277 printk(KERN_NOTICE "ZFS: Posix ACLs disabled by kernel\n");
7278#endif /* CONFIG_FS_POSIX_ACL */
34dc7c2f
BB
7279
7280 return (0);
325f0235 7281
a0bd735a 7282out:
e8bcb693 7283 zfs_sysfs_fini();
325f0235
BB
7284 zfs_fini();
7285 spa_fini();
a0bd735a 7286 (void) zvol_fini();
4b5d425f 7287 printk(KERN_NOTICE "ZFS: Failed to Load ZFS Filesystem v%s-%s%s"
d1d7e268
MK
7288 ", rc = %d\n", ZFS_META_VERSION, ZFS_META_RELEASE,
7289 ZFS_DEBUG_STR, error);
325f0235
BB
7290
7291 return (error);
34dc7c2f
BB
7292}
7293
b4f3666a 7294static void __exit
34dc7c2f
BB
7295_fini(void)
7296{
325f0235 7297 zfs_detach();
e8bcb693 7298 zfs_sysfs_fini();
34dc7c2f
BB
7299 zfs_fini();
7300 spa_fini();
a0bd735a 7301 zvol_fini();
46e18b3f 7302
d5446cfc 7303 tsd_destroy(&zfs_fsyncer_key);
3fc050aa 7304 tsd_destroy(&rrw_tsd_key);
6f1ffb06 7305 tsd_destroy(&zfs_allow_log_key);
34dc7c2f 7306
4b5d425f 7307 printk(KERN_NOTICE "ZFS: Unloaded module v%s-%s%s\n",
d1d7e268 7308 ZFS_META_VERSION, ZFS_META_RELEASE, ZFS_DEBUG_STR);
34dc7c2f 7309}
325f0235 7310
93ce2b4c 7311#if defined(_KERNEL)
b4f3666a
BB
7312module_init(_init);
7313module_exit(_fini);
325f0235
BB
7314
7315MODULE_DESCRIPTION("ZFS");
7316MODULE_AUTHOR(ZFS_META_AUTHOR);
7317MODULE_LICENSE(ZFS_META_LICENSE);
99e349db 7318MODULE_VERSION(ZFS_META_VERSION "-" ZFS_META_RELEASE);
93ce2b4c 7319#endif