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