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