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