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