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