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