Fix zfs_ioc_objset_stats
[zfs.git] / module / zfs / zfs_ioctl.c
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License (the "License").
6  * You may not use this file except in compliance with the License.
7  *
8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9  * or http://www.opensolaris.org/os/licensing.
10  * See the License for the specific language governing permissions
11  * and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL HEADER in each
14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15  * If applicable, add the following below this CDDL HEADER, with the
16  * fields enclosed by brackets "[]" replaced with your own identifying
17  * information: Portions Copyright [yyyy] [name of copyright owner]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
23  */
24
25 #include <sys/types.h>
26 #include <sys/param.h>
27 #include <sys/errno.h>
28 #include <sys/uio.h>
29 #include <sys/buf.h>
30 #include <sys/modctl.h>
31 #include <sys/open.h>
32 #include <sys/file.h>
33 #include <sys/kmem.h>
34 #include <sys/conf.h>
35 #include <sys/cmn_err.h>
36 #include <sys/stat.h>
37 #include <sys/zfs_ioctl.h>
38 #include <sys/zfs_vfsops.h>
39 #include <sys/zfs_znode.h>
40 #include <sys/zap.h>
41 #include <sys/spa.h>
42 #include <sys/spa_impl.h>
43 #include <sys/vdev.h>
44 #include <sys/priv_impl.h>
45 #include <sys/dmu.h>
46 #include <sys/dsl_dir.h>
47 #include <sys/dsl_dataset.h>
48 #include <sys/dsl_prop.h>
49 #include <sys/dsl_deleg.h>
50 #include <sys/dmu_objset.h>
51 #include <sys/ddi.h>
52 #include <sys/sunddi.h>
53 #include <sys/sunldi.h>
54 #include <sys/policy.h>
55 #include <sys/zone.h>
56 #include <sys/nvpair.h>
57 #include <sys/pathname.h>
58 #include <sys/mount.h>
59 #include <sys/sdt.h>
60 #include <sys/fs/zfs.h>
61 #include <sys/zfs_ctldir.h>
62 #include <sys/zfs_dir.h>
63 #include <sys/zfs_onexit.h>
64 #include <sys/zvol.h>
65 #include <sys/dsl_scan.h>
66 #include <sharefs/share.h>
67 #include <sys/dmu_objset.h>
68
69 #include "zfs_namecheck.h"
70 #include "zfs_prop.h"
71 #include "zfs_deleg.h"
72 #include "zfs_comutil.h"
73
74 extern struct modlfs zfs_modlfs;
75
76 extern void zfs_init(void);
77 extern void zfs_fini(void);
78
79 ldi_ident_t zfs_li = NULL;
80 dev_info_t *zfs_dip;
81
82 typedef int zfs_ioc_func_t(zfs_cmd_t *);
83 typedef int zfs_secpolicy_func_t(zfs_cmd_t *, cred_t *);
84
85 typedef enum {
86         NO_NAME,
87         POOL_NAME,
88         DATASET_NAME
89 } zfs_ioc_namecheck_t;
90
91 typedef enum {
92         POOL_CHECK_NONE         = 1 << 0,
93         POOL_CHECK_SUSPENDED    = 1 << 1,
94         POOL_CHECK_READONLY     = 1 << 2
95 } zfs_ioc_poolcheck_t;
96
97 typedef struct zfs_ioc_vec {
98         zfs_ioc_func_t          *zvec_func;
99         zfs_secpolicy_func_t    *zvec_secpolicy;
100         zfs_ioc_namecheck_t     zvec_namecheck;
101         boolean_t               zvec_his_log;
102         zfs_ioc_poolcheck_t     zvec_pool_check;
103 } zfs_ioc_vec_t;
104
105 /* This array is indexed by zfs_userquota_prop_t */
106 static const char *userquota_perms[] = {
107         ZFS_DELEG_PERM_USERUSED,
108         ZFS_DELEG_PERM_USERQUOTA,
109         ZFS_DELEG_PERM_GROUPUSED,
110         ZFS_DELEG_PERM_GROUPQUOTA,
111 };
112
113 static int zfs_ioc_userspace_upgrade(zfs_cmd_t *zc);
114 static int zfs_check_settable(const char *name, nvpair_t *property,
115     cred_t *cr);
116 static int zfs_check_clearable(char *dataset, nvlist_t *props,
117     nvlist_t **errors);
118 static int zfs_fill_zplprops_root(uint64_t, nvlist_t *, nvlist_t *,
119     boolean_t *);
120 int zfs_set_prop_nvlist(const char *, zprop_source_t, nvlist_t *, nvlist_t **);
121
122 /* _NOTE(PRINTFLIKE(4)) - this is printf-like, but lint is too whiney */
123 void
124 __dprintf(const char *file, const char *func, int line, const char *fmt, ...)
125 {
126         const char *newfile;
127         char buf[512];
128         va_list adx;
129
130         /*
131          * Get rid of annoying "../common/" prefix to filename.
132          */
133         newfile = strrchr(file, '/');
134         if (newfile != NULL) {
135                 newfile = newfile + 1; /* Get rid of leading / */
136         } else {
137                 newfile = file;
138         }
139
140         va_start(adx, fmt);
141         (void) vsnprintf(buf, sizeof (buf), fmt, adx);
142         va_end(adx);
143
144         /*
145          * To get this data, use the zfs-dprintf probe as so:
146          * dtrace -q -n 'zfs-dprintf \
147          *      /stringof(arg0) == "dbuf.c"/ \
148          *      {printf("%s: %s", stringof(arg1), stringof(arg3))}'
149          * arg0 = file name
150          * arg1 = function name
151          * arg2 = line number
152          * arg3 = message
153          */
154         DTRACE_PROBE4(zfs__dprintf,
155             char *, newfile, char *, func, int, line, char *, buf);
156 }
157
158 static void
159 history_str_free(char *buf)
160 {
161         kmem_free(buf, HIS_MAX_RECORD_LEN);
162 }
163
164 static char *
165 history_str_get(zfs_cmd_t *zc)
166 {
167         char *buf;
168
169         if (zc->zc_history == 0)
170                 return (NULL);
171
172         buf = kmem_alloc(HIS_MAX_RECORD_LEN, KM_SLEEP);
173         if (copyinstr((void *)(uintptr_t)zc->zc_history,
174             buf, HIS_MAX_RECORD_LEN, NULL) != 0) {
175                 history_str_free(buf);
176                 return (NULL);
177         }
178
179         buf[HIS_MAX_RECORD_LEN -1] = '\0';
180
181         return (buf);
182 }
183
184 /*
185  * Check to see if the named dataset is currently defined as bootable
186  */
187 static boolean_t
188 zfs_is_bootfs(const char *name)
189 {
190         objset_t *os;
191
192         if (dmu_objset_hold(name, FTAG, &os) == 0) {
193                 boolean_t ret;
194                 ret = (dmu_objset_id(os) == spa_bootfs(dmu_objset_spa(os)));
195                 dmu_objset_rele(os, FTAG);
196                 return (ret);
197         }
198         return (B_FALSE);
199 }
200
201 /*
202  * zfs_earlier_version
203  *
204  *      Return non-zero if the spa version is less than requested version.
205  */
206 static int
207 zfs_earlier_version(const char *name, int version)
208 {
209         spa_t *spa;
210
211         if (spa_open(name, &spa, FTAG) == 0) {
212                 if (spa_version(spa) < version) {
213                         spa_close(spa, FTAG);
214                         return (1);
215                 }
216                 spa_close(spa, FTAG);
217         }
218         return (0);
219 }
220
221 /*
222  * zpl_earlier_version
223  *
224  * Return TRUE if the ZPL version is less than requested version.
225  */
226 static boolean_t
227 zpl_earlier_version(const char *name, int version)
228 {
229         objset_t *os;
230         boolean_t rc = B_TRUE;
231
232         if (dmu_objset_hold(name, FTAG, &os) == 0) {
233                 uint64_t zplversion;
234
235                 if (dmu_objset_type(os) != DMU_OST_ZFS) {
236                         dmu_objset_rele(os, FTAG);
237                         return (B_TRUE);
238                 }
239                 /* XXX reading from non-owned objset */
240                 if (zfs_get_zplprop(os, ZFS_PROP_VERSION, &zplversion) == 0)
241                         rc = zplversion < version;
242                 dmu_objset_rele(os, FTAG);
243         }
244         return (rc);
245 }
246
247 static void
248 zfs_log_history(zfs_cmd_t *zc)
249 {
250         spa_t *spa;
251         char *buf;
252
253         if ((buf = history_str_get(zc)) == NULL)
254                 return;
255
256         if (spa_open(zc->zc_name, &spa, FTAG) == 0) {
257                 if (spa_version(spa) >= SPA_VERSION_ZPOOL_HISTORY)
258                         (void) spa_history_log(spa, buf, LOG_CMD_NORMAL);
259                 spa_close(spa, FTAG);
260         }
261         history_str_free(buf);
262 }
263
264 /*
265  * Policy for top-level read operations (list pools).  Requires no privileges,
266  * and can be used in the local zone, as there is no associated dataset.
267  */
268 /* ARGSUSED */
269 static int
270 zfs_secpolicy_none(zfs_cmd_t *zc, cred_t *cr)
271 {
272         return (0);
273 }
274
275 /*
276  * Policy for dataset read operations (list children, get statistics).  Requires
277  * no privileges, but must be visible in the local zone.
278  */
279 /* ARGSUSED */
280 static int
281 zfs_secpolicy_read(zfs_cmd_t *zc, cred_t *cr)
282 {
283         if (INGLOBALZONE(curproc) ||
284             zone_dataset_visible(zc->zc_name, NULL))
285                 return (0);
286
287         return (ENOENT);
288 }
289
290 static int
291 zfs_dozonecheck_impl(const char *dataset, uint64_t zoned, cred_t *cr)
292 {
293         int writable = 1;
294
295         /*
296          * The dataset must be visible by this zone -- check this first
297          * so they don't see EPERM on something they shouldn't know about.
298          */
299         if (!INGLOBALZONE(curproc) &&
300             !zone_dataset_visible(dataset, &writable))
301                 return (ENOENT);
302
303         if (INGLOBALZONE(curproc)) {
304                 /*
305                  * If the fs is zoned, only root can access it from the
306                  * global zone.
307                  */
308                 if (secpolicy_zfs(cr) && zoned)
309                         return (EPERM);
310         } else {
311                 /*
312                  * If we are in a local zone, the 'zoned' property must be set.
313                  */
314                 if (!zoned)
315                         return (EPERM);
316
317                 /* must be writable by this zone */
318                 if (!writable)
319                         return (EPERM);
320         }
321         return (0);
322 }
323
324 static int
325 zfs_dozonecheck(const char *dataset, cred_t *cr)
326 {
327         uint64_t zoned;
328
329         if (dsl_prop_get_integer(dataset, "zoned", &zoned, NULL))
330                 return (ENOENT);
331
332         return (zfs_dozonecheck_impl(dataset, zoned, cr));
333 }
334
335 static int
336 zfs_dozonecheck_ds(const char *dataset, dsl_dataset_t *ds, cred_t *cr)
337 {
338         uint64_t zoned;
339
340         rw_enter(&ds->ds_dir->dd_pool->dp_config_rwlock, RW_READER);
341         if (dsl_prop_get_ds(ds, "zoned", 8, 1, &zoned, NULL)) {
342                 rw_exit(&ds->ds_dir->dd_pool->dp_config_rwlock);
343                 return (ENOENT);
344         }
345         rw_exit(&ds->ds_dir->dd_pool->dp_config_rwlock);
346
347         return (zfs_dozonecheck_impl(dataset, zoned, cr));
348 }
349
350 int
351 zfs_secpolicy_write_perms(const char *name, const char *perm, cred_t *cr)
352 {
353         int error;
354
355         error = zfs_dozonecheck(name, cr);
356         if (error == 0) {
357                 error = secpolicy_zfs(cr);
358                 if (error)
359                         error = dsl_deleg_access(name, perm, cr);
360         }
361         return (error);
362 }
363
364 int
365 zfs_secpolicy_write_perms_ds(const char *name, dsl_dataset_t *ds,
366     const char *perm, cred_t *cr)
367 {
368         int error;
369
370         error = zfs_dozonecheck_ds(name, ds, cr);
371         if (error == 0) {
372                 error = secpolicy_zfs(cr);
373                 if (error)
374                         error = dsl_deleg_access_impl(ds, perm, cr);
375         }
376         return (error);
377 }
378
379 /*
380  * Policy for setting the security label property.
381  *
382  * Returns 0 for success, non-zero for access and other errors.
383  */
384 static int
385 zfs_set_slabel_policy(const char *name, char *strval, cred_t *cr)
386 {
387         char            ds_hexsl[MAXNAMELEN];
388         bslabel_t       ds_sl, new_sl;
389         boolean_t       new_default = FALSE;
390         uint64_t        zoned;
391         int             needed_priv = -1;
392         int             error;
393
394         /* First get the existing dataset label. */
395         error = dsl_prop_get(name, zfs_prop_to_name(ZFS_PROP_MLSLABEL),
396             1, sizeof (ds_hexsl), &ds_hexsl, NULL);
397         if (error)
398                 return (EPERM);
399
400         if (strcasecmp(strval, ZFS_MLSLABEL_DEFAULT) == 0)
401                 new_default = TRUE;
402
403         /* The label must be translatable */
404         if (!new_default && (hexstr_to_label(strval, &new_sl) != 0))
405                 return (EINVAL);
406
407         /*
408          * In a non-global zone, disallow attempts to set a label that
409          * doesn't match that of the zone; otherwise no other checks
410          * are needed.
411          */
412         if (!INGLOBALZONE(curproc)) {
413                 if (new_default || !blequal(&new_sl, CR_SL(CRED())))
414                         return (EPERM);
415                 return (0);
416         }
417
418         /*
419          * For global-zone datasets (i.e., those whose zoned property is
420          * "off", verify that the specified new label is valid for the
421          * global zone.
422          */
423         if (dsl_prop_get_integer(name,
424             zfs_prop_to_name(ZFS_PROP_ZONED), &zoned, NULL))
425                 return (EPERM);
426         if (!zoned) {
427                 if (zfs_check_global_label(name, strval) != 0)
428                         return (EPERM);
429         }
430
431         /*
432          * If the existing dataset label is nondefault, check if the
433          * dataset is mounted (label cannot be changed while mounted).
434          * Get the zfsvfs; if there isn't one, then the dataset isn't
435          * mounted (or isn't a dataset, doesn't exist, ...).
436          */
437         if (strcasecmp(ds_hexsl, ZFS_MLSLABEL_DEFAULT) != 0) {
438                 objset_t *os;
439                 static char *setsl_tag = "setsl_tag";
440
441                 /*
442                  * Try to own the dataset; abort if there is any error,
443                  * (e.g., already mounted, in use, or other error).
444                  */
445                 error = dmu_objset_own(name, DMU_OST_ZFS, B_TRUE,
446                     setsl_tag, &os);
447                 if (error)
448                         return (EPERM);
449
450                 dmu_objset_disown(os, setsl_tag);
451
452                 if (new_default) {
453                         needed_priv = PRIV_FILE_DOWNGRADE_SL;
454                         goto out_check;
455                 }
456
457                 if (hexstr_to_label(strval, &new_sl) != 0)
458                         return (EPERM);
459
460                 if (blstrictdom(&ds_sl, &new_sl))
461                         needed_priv = PRIV_FILE_DOWNGRADE_SL;
462                 else if (blstrictdom(&new_sl, &ds_sl))
463                         needed_priv = PRIV_FILE_UPGRADE_SL;
464         } else {
465                 /* dataset currently has a default label */
466                 if (!new_default)
467                         needed_priv = PRIV_FILE_UPGRADE_SL;
468         }
469
470 out_check:
471         if (needed_priv != -1)
472                 return (PRIV_POLICY(cr, needed_priv, B_FALSE, EPERM, NULL));
473         return (0);
474 }
475
476 static int
477 zfs_secpolicy_setprop(const char *dsname, zfs_prop_t prop, nvpair_t *propval,
478     cred_t *cr)
479 {
480         char *strval;
481
482         /*
483          * Check permissions for special properties.
484          */
485         switch (prop) {
486         default:
487                 break;
488         case ZFS_PROP_ZONED:
489                 /*
490                  * Disallow setting of 'zoned' from within a local zone.
491                  */
492                 if (!INGLOBALZONE(curproc))
493                         return (EPERM);
494                 break;
495
496         case ZFS_PROP_QUOTA:
497                 if (!INGLOBALZONE(curproc)) {
498                         uint64_t zoned;
499                         char setpoint[MAXNAMELEN];
500                         /*
501                          * Unprivileged users are allowed to modify the
502                          * quota on things *under* (ie. contained by)
503                          * the thing they own.
504                          */
505                         if (dsl_prop_get_integer(dsname, "zoned", &zoned,
506                             setpoint))
507                                 return (EPERM);
508                         if (!zoned || strlen(dsname) <= strlen(setpoint))
509                                 return (EPERM);
510                 }
511                 break;
512
513         case ZFS_PROP_MLSLABEL:
514                 if (!is_system_labeled())
515                         return (EPERM);
516
517                 if (nvpair_value_string(propval, &strval) == 0) {
518                         int err;
519
520                         err = zfs_set_slabel_policy(dsname, strval, CRED());
521                         if (err != 0)
522                                 return (err);
523                 }
524                 break;
525         }
526
527         return (zfs_secpolicy_write_perms(dsname, zfs_prop_to_name(prop), cr));
528 }
529
530 int
531 zfs_secpolicy_fsacl(zfs_cmd_t *zc, cred_t *cr)
532 {
533         int error;
534
535         error = zfs_dozonecheck(zc->zc_name, cr);
536         if (error)
537                 return (error);
538
539         /*
540          * permission to set permissions will be evaluated later in
541          * dsl_deleg_can_allow()
542          */
543         return (0);
544 }
545
546 int
547 zfs_secpolicy_rollback(zfs_cmd_t *zc, cred_t *cr)
548 {
549         return (zfs_secpolicy_write_perms(zc->zc_name,
550             ZFS_DELEG_PERM_ROLLBACK, cr));
551 }
552
553 int
554 zfs_secpolicy_send(zfs_cmd_t *zc, cred_t *cr)
555 {
556         spa_t *spa;
557         dsl_pool_t *dp;
558         dsl_dataset_t *ds;
559         char *cp;
560         int error;
561
562         /*
563          * Generate the current snapshot name from the given objsetid, then
564          * use that name for the secpolicy/zone checks.
565          */
566         cp = strchr(zc->zc_name, '@');
567         if (cp == NULL)
568                 return (EINVAL);
569         error = spa_open(zc->zc_name, &spa, FTAG);
570         if (error)
571                 return (error);
572
573         dp = spa_get_dsl(spa);
574         rw_enter(&dp->dp_config_rwlock, RW_READER);
575         error = dsl_dataset_hold_obj(dp, zc->zc_sendobj, FTAG, &ds);
576         rw_exit(&dp->dp_config_rwlock);
577         spa_close(spa, FTAG);
578         if (error)
579                 return (error);
580
581         dsl_dataset_name(ds, zc->zc_name);
582
583         error = zfs_secpolicy_write_perms_ds(zc->zc_name, ds,
584             ZFS_DELEG_PERM_SEND, cr);
585         dsl_dataset_rele(ds, FTAG);
586
587         return (error);
588 }
589
590 static int
591 zfs_secpolicy_deleg_share(zfs_cmd_t *zc, cred_t *cr)
592 {
593         vnode_t *vp;
594         int error;
595
596         if ((error = lookupname(zc->zc_value, UIO_SYSSPACE,
597             NO_FOLLOW, NULL, &vp)) != 0)
598                 return (error);
599
600         /* Now make sure mntpnt and dataset are ZFS */
601
602         if (vp->v_vfsp->vfs_fstype != zfsfstype ||
603             (strcmp((char *)refstr_value(vp->v_vfsp->vfs_resource),
604             zc->zc_name) != 0)) {
605                 VN_RELE(vp);
606                 return (EPERM);
607         }
608
609         VN_RELE(vp);
610         return (dsl_deleg_access(zc->zc_name,
611             ZFS_DELEG_PERM_SHARE, cr));
612 }
613
614 int
615 zfs_secpolicy_share(zfs_cmd_t *zc, cred_t *cr)
616 {
617         if (!INGLOBALZONE(curproc))
618                 return (EPERM);
619
620         if (secpolicy_nfs(cr) == 0) {
621                 return (0);
622         } else {
623                 return (zfs_secpolicy_deleg_share(zc, cr));
624         }
625 }
626
627 int
628 zfs_secpolicy_smb_acl(zfs_cmd_t *zc, cred_t *cr)
629 {
630         if (!INGLOBALZONE(curproc))
631                 return (EPERM);
632
633         if (secpolicy_smb(cr) == 0) {
634                 return (0);
635         } else {
636                 return (zfs_secpolicy_deleg_share(zc, cr));
637         }
638 }
639
640 static int
641 zfs_get_parent(const char *datasetname, char *parent, int parentsize)
642 {
643         char *cp;
644
645         /*
646          * Remove the @bla or /bla from the end of the name to get the parent.
647          */
648         (void) strncpy(parent, datasetname, parentsize);
649         cp = strrchr(parent, '@');
650         if (cp != NULL) {
651                 cp[0] = '\0';
652         } else {
653                 cp = strrchr(parent, '/');
654                 if (cp == NULL)
655                         return (ENOENT);
656                 cp[0] = '\0';
657         }
658
659         return (0);
660 }
661
662 int
663 zfs_secpolicy_destroy_perms(const char *name, cred_t *cr)
664 {
665         int error;
666
667         if ((error = zfs_secpolicy_write_perms(name,
668             ZFS_DELEG_PERM_MOUNT, cr)) != 0)
669                 return (error);
670
671         return (zfs_secpolicy_write_perms(name, ZFS_DELEG_PERM_DESTROY, cr));
672 }
673
674 static int
675 zfs_secpolicy_destroy(zfs_cmd_t *zc, cred_t *cr)
676 {
677         return (zfs_secpolicy_destroy_perms(zc->zc_name, cr));
678 }
679
680 /*
681  * Destroying snapshots with delegated permissions requires
682  * descendent mount and destroy permissions.
683  * Reassemble the full filesystem@snap name so dsl_deleg_access()
684  * can do the correct permission check.
685  *
686  * Since this routine is used when doing a recursive destroy of snapshots
687  * and destroying snapshots requires descendent permissions, a successfull
688  * check of the top level snapshot applies to snapshots of all descendent
689  * datasets as well.
690  */
691 static int
692 zfs_secpolicy_destroy_snaps(zfs_cmd_t *zc, cred_t *cr)
693 {
694         int error;
695         char *dsname;
696
697         dsname = kmem_asprintf("%s@%s", zc->zc_name, zc->zc_value);
698
699         error = zfs_secpolicy_destroy_perms(dsname, cr);
700
701         strfree(dsname);
702         return (error);
703 }
704
705 int
706 zfs_secpolicy_rename_perms(const char *from, const char *to, cred_t *cr)
707 {
708         char    parentname[MAXNAMELEN];
709         int     error;
710
711         if ((error = zfs_secpolicy_write_perms(from,
712             ZFS_DELEG_PERM_RENAME, cr)) != 0)
713                 return (error);
714
715         if ((error = zfs_secpolicy_write_perms(from,
716             ZFS_DELEG_PERM_MOUNT, cr)) != 0)
717                 return (error);
718
719         if ((error = zfs_get_parent(to, parentname,
720             sizeof (parentname))) != 0)
721                 return (error);
722
723         if ((error = zfs_secpolicy_write_perms(parentname,
724             ZFS_DELEG_PERM_CREATE, cr)) != 0)
725                 return (error);
726
727         if ((error = zfs_secpolicy_write_perms(parentname,
728             ZFS_DELEG_PERM_MOUNT, cr)) != 0)
729                 return (error);
730
731         return (error);
732 }
733
734 static int
735 zfs_secpolicy_rename(zfs_cmd_t *zc, cred_t *cr)
736 {
737         return (zfs_secpolicy_rename_perms(zc->zc_name, zc->zc_value, cr));
738 }
739
740 static int
741 zfs_secpolicy_promote(zfs_cmd_t *zc, cred_t *cr)
742 {
743         char    parentname[MAXNAMELEN];
744         objset_t *clone;
745         int error;
746
747         error = zfs_secpolicy_write_perms(zc->zc_name,
748             ZFS_DELEG_PERM_PROMOTE, cr);
749         if (error)
750                 return (error);
751
752         error = dmu_objset_hold(zc->zc_name, FTAG, &clone);
753
754         if (error == 0) {
755                 dsl_dataset_t *pclone = NULL;
756                 dsl_dir_t *dd;
757                 dd = clone->os_dsl_dataset->ds_dir;
758
759                 rw_enter(&dd->dd_pool->dp_config_rwlock, RW_READER);
760                 error = dsl_dataset_hold_obj(dd->dd_pool,
761                     dd->dd_phys->dd_origin_obj, FTAG, &pclone);
762                 rw_exit(&dd->dd_pool->dp_config_rwlock);
763                 if (error) {
764                         dmu_objset_rele(clone, FTAG);
765                         return (error);
766                 }
767
768                 error = zfs_secpolicy_write_perms(zc->zc_name,
769                     ZFS_DELEG_PERM_MOUNT, cr);
770
771                 dsl_dataset_name(pclone, parentname);
772                 dmu_objset_rele(clone, FTAG);
773                 dsl_dataset_rele(pclone, FTAG);
774                 if (error == 0)
775                         error = zfs_secpolicy_write_perms(parentname,
776                             ZFS_DELEG_PERM_PROMOTE, cr);
777         }
778         return (error);
779 }
780
781 static int
782 zfs_secpolicy_receive(zfs_cmd_t *zc, cred_t *cr)
783 {
784         int error;
785
786         if ((error = zfs_secpolicy_write_perms(zc->zc_name,
787             ZFS_DELEG_PERM_RECEIVE, cr)) != 0)
788                 return (error);
789
790         if ((error = zfs_secpolicy_write_perms(zc->zc_name,
791             ZFS_DELEG_PERM_MOUNT, cr)) != 0)
792                 return (error);
793
794         return (zfs_secpolicy_write_perms(zc->zc_name,
795             ZFS_DELEG_PERM_CREATE, cr));
796 }
797
798 int
799 zfs_secpolicy_snapshot_perms(const char *name, cred_t *cr)
800 {
801         return (zfs_secpolicy_write_perms(name,
802             ZFS_DELEG_PERM_SNAPSHOT, cr));
803 }
804
805 static int
806 zfs_secpolicy_snapshot(zfs_cmd_t *zc, cred_t *cr)
807 {
808
809         return (zfs_secpolicy_snapshot_perms(zc->zc_name, cr));
810 }
811
812 static int
813 zfs_secpolicy_create(zfs_cmd_t *zc, cred_t *cr)
814 {
815         char    parentname[MAXNAMELEN];
816         int     error;
817
818         if ((error = zfs_get_parent(zc->zc_name, parentname,
819             sizeof (parentname))) != 0)
820                 return (error);
821
822         if (zc->zc_value[0] != '\0') {
823                 if ((error = zfs_secpolicy_write_perms(zc->zc_value,
824                     ZFS_DELEG_PERM_CLONE, cr)) != 0)
825                         return (error);
826         }
827
828         if ((error = zfs_secpolicy_write_perms(parentname,
829             ZFS_DELEG_PERM_CREATE, cr)) != 0)
830                 return (error);
831
832         error = zfs_secpolicy_write_perms(parentname,
833             ZFS_DELEG_PERM_MOUNT, cr);
834
835         return (error);
836 }
837
838 static int
839 zfs_secpolicy_umount(zfs_cmd_t *zc, cred_t *cr)
840 {
841         int error;
842
843         error = secpolicy_fs_unmount(cr, NULL);
844         if (error) {
845                 error = dsl_deleg_access(zc->zc_name, ZFS_DELEG_PERM_MOUNT, cr);
846         }
847         return (error);
848 }
849
850 /*
851  * Policy for pool operations - create/destroy pools, add vdevs, etc.  Requires
852  * SYS_CONFIG privilege, which is not available in a local zone.
853  */
854 /* ARGSUSED */
855 static int
856 zfs_secpolicy_config(zfs_cmd_t *zc, cred_t *cr)
857 {
858         if (secpolicy_sys_config(cr, B_FALSE) != 0)
859                 return (EPERM);
860
861         return (0);
862 }
863
864 /*
865  * Policy for object to name lookups.
866  */
867 /* ARGSUSED */
868 static int
869 zfs_secpolicy_diff(zfs_cmd_t *zc, cred_t *cr)
870 {
871         int error;
872
873         if ((error = secpolicy_sys_config(cr, B_FALSE)) == 0)
874                 return (0);
875
876         error = zfs_secpolicy_write_perms(zc->zc_name, ZFS_DELEG_PERM_DIFF, cr);
877         return (error);
878 }
879
880 /*
881  * Policy for fault injection.  Requires all privileges.
882  */
883 /* ARGSUSED */
884 static int
885 zfs_secpolicy_inject(zfs_cmd_t *zc, cred_t *cr)
886 {
887         return (secpolicy_zinject(cr));
888 }
889
890 static int
891 zfs_secpolicy_inherit(zfs_cmd_t *zc, cred_t *cr)
892 {
893         zfs_prop_t prop = zfs_name_to_prop(zc->zc_value);
894
895         if (prop == ZPROP_INVAL) {
896                 if (!zfs_prop_user(zc->zc_value))
897                         return (EINVAL);
898                 return (zfs_secpolicy_write_perms(zc->zc_name,
899                     ZFS_DELEG_PERM_USERPROP, cr));
900         } else {
901                 return (zfs_secpolicy_setprop(zc->zc_name, prop,
902                     NULL, cr));
903         }
904 }
905
906 static int
907 zfs_secpolicy_userspace_one(zfs_cmd_t *zc, cred_t *cr)
908 {
909         int err = zfs_secpolicy_read(zc, cr);
910         if (err)
911                 return (err);
912
913         if (zc->zc_objset_type >= ZFS_NUM_USERQUOTA_PROPS)
914                 return (EINVAL);
915
916         if (zc->zc_value[0] == 0) {
917                 /*
918                  * They are asking about a posix uid/gid.  If it's
919                  * themself, allow it.
920                  */
921                 if (zc->zc_objset_type == ZFS_PROP_USERUSED ||
922                     zc->zc_objset_type == ZFS_PROP_USERQUOTA) {
923                         if (zc->zc_guid == crgetuid(cr))
924                                 return (0);
925                 } else {
926                         if (groupmember(zc->zc_guid, cr))
927                                 return (0);
928                 }
929         }
930
931         return (zfs_secpolicy_write_perms(zc->zc_name,
932             userquota_perms[zc->zc_objset_type], cr));
933 }
934
935 static int
936 zfs_secpolicy_userspace_many(zfs_cmd_t *zc, cred_t *cr)
937 {
938         int err = zfs_secpolicy_read(zc, cr);
939         if (err)
940                 return (err);
941
942         if (zc->zc_objset_type >= ZFS_NUM_USERQUOTA_PROPS)
943                 return (EINVAL);
944
945         return (zfs_secpolicy_write_perms(zc->zc_name,
946             userquota_perms[zc->zc_objset_type], cr));
947 }
948
949 static int
950 zfs_secpolicy_userspace_upgrade(zfs_cmd_t *zc, cred_t *cr)
951 {
952         return (zfs_secpolicy_setprop(zc->zc_name, ZFS_PROP_VERSION,
953             NULL, cr));
954 }
955
956 static int
957 zfs_secpolicy_hold(zfs_cmd_t *zc, cred_t *cr)
958 {
959         return (zfs_secpolicy_write_perms(zc->zc_name,
960             ZFS_DELEG_PERM_HOLD, cr));
961 }
962
963 static int
964 zfs_secpolicy_release(zfs_cmd_t *zc, cred_t *cr)
965 {
966         return (zfs_secpolicy_write_perms(zc->zc_name,
967             ZFS_DELEG_PERM_RELEASE, cr));
968 }
969
970 /*
971  * Policy for allowing temporary snapshots to be taken or released
972  */
973 static int
974 zfs_secpolicy_tmp_snapshot(zfs_cmd_t *zc, cred_t *cr)
975 {
976         /*
977          * A temporary snapshot is the same as a snapshot,
978          * hold, destroy and release all rolled into one.
979          * Delegated diff alone is sufficient that we allow this.
980          */
981         int error;
982
983         if ((error = zfs_secpolicy_write_perms(zc->zc_name,
984             ZFS_DELEG_PERM_DIFF, cr)) == 0)
985                 return (0);
986
987         error = zfs_secpolicy_snapshot(zc, cr);
988         if (!error)
989                 error = zfs_secpolicy_hold(zc, cr);
990         if (!error)
991                 error = zfs_secpolicy_release(zc, cr);
992         if (!error)
993                 error = zfs_secpolicy_destroy(zc, cr);
994         return (error);
995 }
996
997 /*
998  * Returns the nvlist as specified by the user in the zfs_cmd_t.
999  */
1000 static int
1001 get_nvlist(uint64_t nvl, uint64_t size, int iflag, nvlist_t **nvp)
1002 {
1003         char *packed;
1004         int error;
1005         nvlist_t *list = NULL;
1006
1007         /*
1008          * Read in and unpack the user-supplied nvlist.
1009          */
1010         if (size == 0)
1011                 return (EINVAL);
1012
1013         packed = kmem_alloc(size, KM_SLEEP);
1014
1015         if ((error = ddi_copyin((void *)(uintptr_t)nvl, packed, size,
1016             iflag)) != 0) {
1017                 kmem_free(packed, size);
1018                 return (error);
1019         }
1020
1021         if ((error = nvlist_unpack(packed, size, &list, 0)) != 0) {
1022                 kmem_free(packed, size);
1023                 return (error);
1024         }
1025
1026         kmem_free(packed, size);
1027
1028         *nvp = list;
1029         return (0);
1030 }
1031
1032 static int
1033 fit_error_list(zfs_cmd_t *zc, nvlist_t **errors)
1034 {
1035         size_t size;
1036
1037         VERIFY(nvlist_size(*errors, &size, NV_ENCODE_NATIVE) == 0);
1038
1039         if (size > zc->zc_nvlist_dst_size) {
1040                 nvpair_t *more_errors;
1041                 int n = 0;
1042
1043                 if (zc->zc_nvlist_dst_size < 1024)
1044                         return (ENOMEM);
1045
1046                 VERIFY(nvlist_add_int32(*errors, ZPROP_N_MORE_ERRORS, 0) == 0);
1047                 more_errors = nvlist_prev_nvpair(*errors, NULL);
1048
1049                 do {
1050                         nvpair_t *pair = nvlist_prev_nvpair(*errors,
1051                             more_errors);
1052                         VERIFY(nvlist_remove_nvpair(*errors, pair) == 0);
1053                         n++;
1054                         VERIFY(nvlist_size(*errors, &size,
1055                             NV_ENCODE_NATIVE) == 0);
1056                 } while (size > zc->zc_nvlist_dst_size);
1057
1058                 VERIFY(nvlist_remove_nvpair(*errors, more_errors) == 0);
1059                 VERIFY(nvlist_add_int32(*errors, ZPROP_N_MORE_ERRORS, n) == 0);
1060                 ASSERT(nvlist_size(*errors, &size, NV_ENCODE_NATIVE) == 0);
1061                 ASSERT(size <= zc->zc_nvlist_dst_size);
1062         }
1063
1064         return (0);
1065 }
1066
1067 static int
1068 put_nvlist(zfs_cmd_t *zc, nvlist_t *nvl)
1069 {
1070         char *packed = NULL;
1071         int error = 0;
1072         size_t size;
1073
1074         VERIFY(nvlist_size(nvl, &size, NV_ENCODE_NATIVE) == 0);
1075
1076         if (size > zc->zc_nvlist_dst_size) {
1077                 error = ENOMEM;
1078         } else {
1079                 packed = kmem_alloc(size, KM_SLEEP);
1080                 VERIFY(nvlist_pack(nvl, &packed, &size, NV_ENCODE_NATIVE,
1081                     KM_SLEEP) == 0);
1082                 if (ddi_copyout(packed, (void *)(uintptr_t)zc->zc_nvlist_dst,
1083                     size, zc->zc_iflags) != 0)
1084                         error = EFAULT;
1085                 kmem_free(packed, size);
1086         }
1087
1088         zc->zc_nvlist_dst_size = size;
1089         return (error);
1090 }
1091
1092 static int
1093 getzfsvfs(const char *dsname, zfsvfs_t **zfvp)
1094 {
1095         objset_t *os;
1096         int error;
1097
1098         error = dmu_objset_hold(dsname, FTAG, &os);
1099         if (error)
1100                 return (error);
1101         if (dmu_objset_type(os) != DMU_OST_ZFS) {
1102                 dmu_objset_rele(os, FTAG);
1103                 return (EINVAL);
1104         }
1105
1106         mutex_enter(&os->os_user_ptr_lock);
1107         *zfvp = dmu_objset_get_user(os);
1108         if (*zfvp) {
1109                 VFS_HOLD((*zfvp)->z_vfs);
1110         } else {
1111                 error = ESRCH;
1112         }
1113         mutex_exit(&os->os_user_ptr_lock);
1114         dmu_objset_rele(os, FTAG);
1115         return (error);
1116 }
1117
1118 /*
1119  * Find a zfsvfs_t for a mounted filesystem, or create our own, in which
1120  * case its z_vfs will be NULL, and it will be opened as the owner.
1121  */
1122 static int
1123 zfsvfs_hold(const char *name, void *tag, zfsvfs_t **zfvp, boolean_t writer)
1124 {
1125         int error = 0;
1126
1127         if (getzfsvfs(name, zfvp) != 0)
1128                 error = zfsvfs_create(name, zfvp);
1129         if (error == 0) {
1130                 rrw_enter(&(*zfvp)->z_teardown_lock, (writer) ? RW_WRITER :
1131                     RW_READER, tag);
1132                 if ((*zfvp)->z_unmounted) {
1133                         /*
1134                          * XXX we could probably try again, since the unmounting
1135                          * thread should be just about to disassociate the
1136                          * objset from the zfsvfs.
1137                          */
1138                         rrw_exit(&(*zfvp)->z_teardown_lock, tag);
1139                         return (EBUSY);
1140                 }
1141         }
1142         return (error);
1143 }
1144
1145 static void
1146 zfsvfs_rele(zfsvfs_t *zfsvfs, void *tag)
1147 {
1148         rrw_exit(&zfsvfs->z_teardown_lock, tag);
1149
1150         if (zfsvfs->z_vfs) {
1151                 VFS_RELE(zfsvfs->z_vfs);
1152         } else {
1153                 dmu_objset_disown(zfsvfs->z_os, zfsvfs);
1154                 zfsvfs_free(zfsvfs);
1155         }
1156 }
1157
1158 static int
1159 zfs_ioc_pool_create(zfs_cmd_t *zc)
1160 {
1161         int error;
1162         nvlist_t *config, *props = NULL;
1163         nvlist_t *rootprops = NULL;
1164         nvlist_t *zplprops = NULL;
1165         char *buf;
1166
1167         if ((error = get_nvlist(zc->zc_nvlist_conf, zc->zc_nvlist_conf_size,
1168             zc->zc_iflags, &config)))
1169                 return (error);
1170
1171         if (zc->zc_nvlist_src_size != 0 && (error =
1172             get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
1173             zc->zc_iflags, &props))) {
1174                 nvlist_free(config);
1175                 return (error);
1176         }
1177
1178         if (props) {
1179                 nvlist_t *nvl = NULL;
1180                 uint64_t version = SPA_VERSION;
1181
1182                 (void) nvlist_lookup_uint64(props,
1183                     zpool_prop_to_name(ZPOOL_PROP_VERSION), &version);
1184                 if (version < SPA_VERSION_INITIAL || version > SPA_VERSION) {
1185                         error = EINVAL;
1186                         goto pool_props_bad;
1187                 }
1188                 (void) nvlist_lookup_nvlist(props, ZPOOL_ROOTFS_PROPS, &nvl);
1189                 if (nvl) {
1190                         error = nvlist_dup(nvl, &rootprops, KM_SLEEP);
1191                         if (error != 0) {
1192                                 nvlist_free(config);
1193                                 nvlist_free(props);
1194                                 return (error);
1195                         }
1196                         (void) nvlist_remove_all(props, ZPOOL_ROOTFS_PROPS);
1197                 }
1198                 VERIFY(nvlist_alloc(&zplprops, NV_UNIQUE_NAME, KM_SLEEP) == 0);
1199                 error = zfs_fill_zplprops_root(version, rootprops,
1200                     zplprops, NULL);
1201                 if (error)
1202                         goto pool_props_bad;
1203         }
1204
1205         buf = history_str_get(zc);
1206
1207         error = spa_create(zc->zc_name, config, props, buf, zplprops);
1208
1209         /*
1210          * Set the remaining root properties
1211          */
1212         if (!error && (error = zfs_set_prop_nvlist(zc->zc_name,
1213             ZPROP_SRC_LOCAL, rootprops, NULL)) != 0)
1214                 (void) spa_destroy(zc->zc_name);
1215
1216         if (buf != NULL)
1217                 history_str_free(buf);
1218
1219 pool_props_bad:
1220         nvlist_free(rootprops);
1221         nvlist_free(zplprops);
1222         nvlist_free(config);
1223         nvlist_free(props);
1224
1225         return (error);
1226 }
1227
1228 static int
1229 zfs_ioc_pool_destroy(zfs_cmd_t *zc)
1230 {
1231         int error;
1232         zfs_log_history(zc);
1233         error = spa_destroy(zc->zc_name);
1234         if (error == 0)
1235                 zvol_remove_minors(zc->zc_name);
1236         return (error);
1237 }
1238
1239 static int
1240 zfs_ioc_pool_import(zfs_cmd_t *zc)
1241 {
1242         nvlist_t *config, *props = NULL;
1243         uint64_t guid;
1244         int error;
1245
1246         if ((error = get_nvlist(zc->zc_nvlist_conf, zc->zc_nvlist_conf_size,
1247             zc->zc_iflags, &config)) != 0)
1248                 return (error);
1249
1250         if (zc->zc_nvlist_src_size != 0 && (error =
1251             get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
1252             zc->zc_iflags, &props))) {
1253                 nvlist_free(config);
1254                 return (error);
1255         }
1256
1257         if (nvlist_lookup_uint64(config, ZPOOL_CONFIG_POOL_GUID, &guid) != 0 ||
1258             guid != zc->zc_guid)
1259                 error = EINVAL;
1260         else
1261                 error = spa_import(zc->zc_name, config, props, zc->zc_cookie);
1262
1263         if (zc->zc_nvlist_dst != 0) {
1264                 int err;
1265
1266                 if ((err = put_nvlist(zc, config)) != 0)
1267                         error = err;
1268         }
1269
1270         nvlist_free(config);
1271
1272         if (props)
1273                 nvlist_free(props);
1274
1275         return (error);
1276 }
1277
1278 static int
1279 zfs_ioc_pool_export(zfs_cmd_t *zc)
1280 {
1281         int error;
1282         boolean_t force = (boolean_t)zc->zc_cookie;
1283         boolean_t hardforce = (boolean_t)zc->zc_guid;
1284
1285         zfs_log_history(zc);
1286         error = spa_export(zc->zc_name, NULL, force, hardforce);
1287         if (error == 0)
1288                 zvol_remove_minors(zc->zc_name);
1289         return (error);
1290 }
1291
1292 static int
1293 zfs_ioc_pool_configs(zfs_cmd_t *zc)
1294 {
1295         nvlist_t *configs;
1296         int error;
1297
1298         if ((configs = spa_all_configs(&zc->zc_cookie)) == NULL)
1299                 return (EEXIST);
1300
1301         error = put_nvlist(zc, configs);
1302
1303         nvlist_free(configs);
1304
1305         return (error);
1306 }
1307
1308 static int
1309 zfs_ioc_pool_stats(zfs_cmd_t *zc)
1310 {
1311         nvlist_t *config;
1312         int error;
1313         int ret = 0;
1314
1315         error = spa_get_stats(zc->zc_name, &config, zc->zc_value,
1316             sizeof (zc->zc_value));
1317
1318         if (config != NULL) {
1319                 ret = put_nvlist(zc, config);
1320                 nvlist_free(config);
1321
1322                 /*
1323                  * The config may be present even if 'error' is non-zero.
1324                  * In this case we return success, and preserve the real errno
1325                  * in 'zc_cookie'.
1326                  */
1327                 zc->zc_cookie = error;
1328         } else {
1329                 ret = error;
1330         }
1331
1332         return (ret);
1333 }
1334
1335 /*
1336  * Try to import the given pool, returning pool stats as appropriate so that
1337  * user land knows which devices are available and overall pool health.
1338  */
1339 static int
1340 zfs_ioc_pool_tryimport(zfs_cmd_t *zc)
1341 {
1342         nvlist_t *tryconfig, *config;
1343         int error;
1344
1345         if ((error = get_nvlist(zc->zc_nvlist_conf, zc->zc_nvlist_conf_size,
1346             zc->zc_iflags, &tryconfig)) != 0)
1347                 return (error);
1348
1349         config = spa_tryimport(tryconfig);
1350
1351         nvlist_free(tryconfig);
1352
1353         if (config == NULL)
1354                 return (EINVAL);
1355
1356         error = put_nvlist(zc, config);
1357         nvlist_free(config);
1358
1359         return (error);
1360 }
1361
1362 /*
1363  * inputs:
1364  * zc_name              name of the pool
1365  * zc_cookie            scan func (pool_scan_func_t)
1366  */
1367 static int
1368 zfs_ioc_pool_scan(zfs_cmd_t *zc)
1369 {
1370         spa_t *spa;
1371         int error;
1372
1373         if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0)
1374                 return (error);
1375
1376         if (zc->zc_cookie == POOL_SCAN_NONE)
1377                 error = spa_scan_stop(spa);
1378         else
1379                 error = spa_scan(spa, zc->zc_cookie);
1380
1381         spa_close(spa, FTAG);
1382
1383         return (error);
1384 }
1385
1386 static int
1387 zfs_ioc_pool_freeze(zfs_cmd_t *zc)
1388 {
1389         spa_t *spa;
1390         int error;
1391
1392         error = spa_open(zc->zc_name, &spa, FTAG);
1393         if (error == 0) {
1394                 spa_freeze(spa);
1395                 spa_close(spa, FTAG);
1396         }
1397         return (error);
1398 }
1399
1400 static int
1401 zfs_ioc_pool_upgrade(zfs_cmd_t *zc)
1402 {
1403         spa_t *spa;
1404         int error;
1405
1406         if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0)
1407                 return (error);
1408
1409         if (zc->zc_cookie < spa_version(spa) || zc->zc_cookie > SPA_VERSION) {
1410                 spa_close(spa, FTAG);
1411                 return (EINVAL);
1412         }
1413
1414         spa_upgrade(spa, zc->zc_cookie);
1415         spa_close(spa, FTAG);
1416
1417         return (error);
1418 }
1419
1420 static int
1421 zfs_ioc_pool_get_history(zfs_cmd_t *zc)
1422 {
1423         spa_t *spa;
1424         char *hist_buf;
1425         uint64_t size;
1426         int error;
1427
1428         if ((size = zc->zc_history_len) == 0)
1429                 return (EINVAL);
1430
1431         if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0)
1432                 return (error);
1433
1434         if (spa_version(spa) < SPA_VERSION_ZPOOL_HISTORY) {
1435                 spa_close(spa, FTAG);
1436                 return (ENOTSUP);
1437         }
1438
1439         hist_buf = kmem_alloc(size, KM_SLEEP);
1440         if ((error = spa_history_get(spa, &zc->zc_history_offset,
1441             &zc->zc_history_len, hist_buf)) == 0) {
1442                 error = ddi_copyout(hist_buf,
1443                     (void *)(uintptr_t)zc->zc_history,
1444                     zc->zc_history_len, zc->zc_iflags);
1445         }
1446
1447         spa_close(spa, FTAG);
1448         kmem_free(hist_buf, size);
1449         return (error);
1450 }
1451
1452 static int
1453 zfs_ioc_dsobj_to_dsname(zfs_cmd_t *zc)
1454 {
1455         int error;
1456
1457         if ((error = dsl_dsobj_to_dsname(zc->zc_name,zc->zc_obj,zc->zc_value)))
1458                 return (error);
1459
1460         return (0);
1461 }
1462
1463 /*
1464  * inputs:
1465  * zc_name              name of filesystem
1466  * zc_obj               object to find
1467  *
1468  * outputs:
1469  * zc_value             name of object
1470  */
1471 static int
1472 zfs_ioc_obj_to_path(zfs_cmd_t *zc)
1473 {
1474         objset_t *os;
1475         int error;
1476
1477         /* XXX reading from objset not owned */
1478         if ((error = dmu_objset_hold(zc->zc_name, FTAG, &os)) != 0)
1479                 return (error);
1480         if (dmu_objset_type(os) != DMU_OST_ZFS) {
1481                 dmu_objset_rele(os, FTAG);
1482                 return (EINVAL);
1483         }
1484         error = zfs_obj_to_path(os, zc->zc_obj, zc->zc_value,
1485             sizeof (zc->zc_value));
1486         dmu_objset_rele(os, FTAG);
1487
1488         return (error);
1489 }
1490
1491 /*
1492  * inputs:
1493  * zc_name              name of filesystem
1494  * zc_obj               object to find
1495  *
1496  * outputs:
1497  * zc_stat              stats on object
1498  * zc_value             path to object
1499  */
1500 static int
1501 zfs_ioc_obj_to_stats(zfs_cmd_t *zc)
1502 {
1503         objset_t *os;
1504         int error;
1505
1506         /* XXX reading from objset not owned */
1507         if ((error = dmu_objset_hold(zc->zc_name, FTAG, &os)) != 0)
1508                 return (error);
1509         if (dmu_objset_type(os) != DMU_OST_ZFS) {
1510                 dmu_objset_rele(os, FTAG);
1511                 return (EINVAL);
1512         }
1513         error = zfs_obj_to_stats(os, zc->zc_obj, &zc->zc_stat, zc->zc_value,
1514             sizeof (zc->zc_value));
1515         dmu_objset_rele(os, FTAG);
1516
1517         return (error);
1518 }
1519
1520 static int
1521 zfs_ioc_vdev_add(zfs_cmd_t *zc)
1522 {
1523         spa_t *spa;
1524         int error;
1525         nvlist_t *config, **l2cache, **spares;
1526         uint_t nl2cache = 0, nspares = 0;
1527
1528         error = spa_open(zc->zc_name, &spa, FTAG);
1529         if (error != 0)
1530                 return (error);
1531
1532         error = get_nvlist(zc->zc_nvlist_conf, zc->zc_nvlist_conf_size,
1533             zc->zc_iflags, &config);
1534         (void) nvlist_lookup_nvlist_array(config, ZPOOL_CONFIG_L2CACHE,
1535             &l2cache, &nl2cache);
1536
1537         (void) nvlist_lookup_nvlist_array(config, ZPOOL_CONFIG_SPARES,
1538             &spares, &nspares);
1539
1540         /*
1541          * A root pool with concatenated devices is not supported.
1542          * Thus, can not add a device to a root pool.
1543          *
1544          * Intent log device can not be added to a rootpool because
1545          * during mountroot, zil is replayed, a seperated log device
1546          * can not be accessed during the mountroot time.
1547          *
1548          * l2cache and spare devices are ok to be added to a rootpool.
1549          */
1550         if (spa_bootfs(spa) != 0 && nl2cache == 0 && nspares == 0) {
1551                 nvlist_free(config);
1552                 spa_close(spa, FTAG);
1553                 return (EDOM);
1554         }
1555
1556         if (error == 0) {
1557                 error = spa_vdev_add(spa, config);
1558                 nvlist_free(config);
1559         }
1560         spa_close(spa, FTAG);
1561         return (error);
1562 }
1563
1564 /*
1565  * inputs:
1566  * zc_name              name of the pool
1567  * zc_nvlist_conf       nvlist of devices to remove
1568  * zc_cookie            to stop the remove?
1569  */
1570 static int
1571 zfs_ioc_vdev_remove(zfs_cmd_t *zc)
1572 {
1573         spa_t *spa;
1574         int error;
1575
1576         error = spa_open(zc->zc_name, &spa, FTAG);
1577         if (error != 0)
1578                 return (error);
1579         error = spa_vdev_remove(spa, zc->zc_guid, B_FALSE);
1580         spa_close(spa, FTAG);
1581         return (error);
1582 }
1583
1584 static int
1585 zfs_ioc_vdev_set_state(zfs_cmd_t *zc)
1586 {
1587         spa_t *spa;
1588         int error;
1589         vdev_state_t newstate = VDEV_STATE_UNKNOWN;
1590
1591         if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0)
1592                 return (error);
1593         switch (zc->zc_cookie) {
1594         case VDEV_STATE_ONLINE:
1595                 error = vdev_online(spa, zc->zc_guid, zc->zc_obj, &newstate);
1596                 break;
1597
1598         case VDEV_STATE_OFFLINE:
1599                 error = vdev_offline(spa, zc->zc_guid, zc->zc_obj);
1600                 break;
1601
1602         case VDEV_STATE_FAULTED:
1603                 if (zc->zc_obj != VDEV_AUX_ERR_EXCEEDED &&
1604                     zc->zc_obj != VDEV_AUX_EXTERNAL)
1605                         zc->zc_obj = VDEV_AUX_ERR_EXCEEDED;
1606
1607                 error = vdev_fault(spa, zc->zc_guid, zc->zc_obj);
1608                 break;
1609
1610         case VDEV_STATE_DEGRADED:
1611                 if (zc->zc_obj != VDEV_AUX_ERR_EXCEEDED &&
1612                     zc->zc_obj != VDEV_AUX_EXTERNAL)
1613                         zc->zc_obj = VDEV_AUX_ERR_EXCEEDED;
1614
1615                 error = vdev_degrade(spa, zc->zc_guid, zc->zc_obj);
1616                 break;
1617
1618         default:
1619                 error = EINVAL;
1620         }
1621         zc->zc_cookie = newstate;
1622         spa_close(spa, FTAG);
1623         return (error);
1624 }
1625
1626 static int
1627 zfs_ioc_vdev_attach(zfs_cmd_t *zc)
1628 {
1629         spa_t *spa;
1630         int replacing = zc->zc_cookie;
1631         nvlist_t *config;
1632         int error;
1633
1634         if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0)
1635                 return (error);
1636
1637         if ((error = get_nvlist(zc->zc_nvlist_conf, zc->zc_nvlist_conf_size,
1638             zc->zc_iflags, &config)) == 0) {
1639                 error = spa_vdev_attach(spa, zc->zc_guid, config, replacing);
1640                 nvlist_free(config);
1641         }
1642
1643         spa_close(spa, FTAG);
1644         return (error);
1645 }
1646
1647 static int
1648 zfs_ioc_vdev_detach(zfs_cmd_t *zc)
1649 {
1650         spa_t *spa;
1651         int error;
1652
1653         if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0)
1654                 return (error);
1655
1656         error = spa_vdev_detach(spa, zc->zc_guid, 0, B_FALSE);
1657
1658         spa_close(spa, FTAG);
1659         return (error);
1660 }
1661
1662 static int
1663 zfs_ioc_vdev_split(zfs_cmd_t *zc)
1664 {
1665         spa_t *spa;
1666         nvlist_t *config, *props = NULL;
1667         int error;
1668         boolean_t exp = !!(zc->zc_cookie & ZPOOL_EXPORT_AFTER_SPLIT);
1669
1670         if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0)
1671                 return (error);
1672
1673         if ((error = get_nvlist(zc->zc_nvlist_conf, zc->zc_nvlist_conf_size,
1674             zc->zc_iflags, &config))) {
1675                 spa_close(spa, FTAG);
1676                 return (error);
1677         }
1678
1679         if (zc->zc_nvlist_src_size != 0 && (error =
1680             get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
1681             zc->zc_iflags, &props))) {
1682                 spa_close(spa, FTAG);
1683                 nvlist_free(config);
1684                 return (error);
1685         }
1686
1687         error = spa_vdev_split_mirror(spa, zc->zc_string, config, props, exp);
1688
1689         spa_close(spa, FTAG);
1690
1691         nvlist_free(config);
1692         nvlist_free(props);
1693
1694         return (error);
1695 }
1696
1697 static int
1698 zfs_ioc_vdev_setpath(zfs_cmd_t *zc)
1699 {
1700         spa_t *spa;
1701         char *path = zc->zc_value;
1702         uint64_t guid = zc->zc_guid;
1703         int error;
1704
1705         error = spa_open(zc->zc_name, &spa, FTAG);
1706         if (error != 0)
1707                 return (error);
1708
1709         error = spa_vdev_setpath(spa, guid, path);
1710         spa_close(spa, FTAG);
1711         return (error);
1712 }
1713
1714 static int
1715 zfs_ioc_vdev_setfru(zfs_cmd_t *zc)
1716 {
1717         spa_t *spa;
1718         char *fru = zc->zc_value;
1719         uint64_t guid = zc->zc_guid;
1720         int error;
1721
1722         error = spa_open(zc->zc_name, &spa, FTAG);
1723         if (error != 0)
1724                 return (error);
1725
1726         error = spa_vdev_setfru(spa, guid, fru);
1727         spa_close(spa, FTAG);
1728         return (error);
1729 }
1730
1731 static int
1732 zfs_ioc_objset_stats_impl(zfs_cmd_t *zc, objset_t *os)
1733 {
1734         int error = 0;
1735         nvlist_t *nv;
1736
1737         dmu_objset_fast_stat(os, &zc->zc_objset_stats);
1738
1739         if (zc->zc_nvlist_dst != 0 &&
1740             (error = dsl_prop_get_all(os, &nv)) == 0) {
1741                 dmu_objset_stats(os, nv);
1742                 /*
1743                  * NB: zvol_get_stats() will read the objset contents,
1744                  * which we aren't supposed to do with a
1745                  * DS_MODE_USER hold, because it could be
1746                  * inconsistent.  So this is a bit of a workaround...
1747                  * XXX reading with out owning
1748                  */
1749                 if (!zc->zc_objset_stats.dds_inconsistent) {
1750                         if (dmu_objset_type(os) == DMU_OST_ZVOL)
1751                                 error = zvol_get_stats(os, nv);
1752                 }
1753                 if (error == 0)
1754                         error = put_nvlist(zc, nv);
1755                 nvlist_free(nv);
1756         }
1757
1758         return (error);
1759 }
1760
1761 /*
1762  * inputs:
1763  * zc_name              name of filesystem
1764  * zc_nvlist_dst_size   size of buffer for property nvlist
1765  *
1766  * outputs:
1767  * zc_objset_stats      stats
1768  * zc_nvlist_dst        property nvlist
1769  * zc_nvlist_dst_size   size of property nvlist
1770  */
1771 static int
1772 zfs_ioc_objset_stats(zfs_cmd_t *zc)
1773 {
1774         objset_t *os = NULL;
1775         int error;
1776
1777         if ((error = dmu_objset_hold(zc->zc_name, FTAG, &os)))
1778                 return (error);
1779
1780         error = zfs_ioc_objset_stats_impl(zc, os);
1781
1782         dmu_objset_rele(os, FTAG);
1783
1784         return (error);
1785 }
1786
1787 /*
1788  * inputs:
1789  * zc_name              name of filesystem
1790  * zc_nvlist_dst_size   size of buffer for property nvlist
1791  *
1792  * outputs:
1793  * zc_nvlist_dst        received property nvlist
1794  * zc_nvlist_dst_size   size of received property nvlist
1795  *
1796  * Gets received properties (distinct from local properties on or after
1797  * SPA_VERSION_RECVD_PROPS) for callers who want to differentiate received from
1798  * local property values.
1799  */
1800 static int
1801 zfs_ioc_objset_recvd_props(struct file *filp, zfs_cmd_t *zc)
1802 {
1803         objset_t *os = NULL;
1804         int error;
1805         nvlist_t *nv;
1806
1807         if ((error = dmu_objset_hold(zc->zc_name, FTAG, &os)))
1808                 return (error);
1809
1810         /*
1811          * Without this check, we would return local property values if the
1812          * caller has not already received properties on or after
1813          * SPA_VERSION_RECVD_PROPS.
1814          */
1815         if (!dsl_prop_get_hasrecvd(os)) {
1816                 dmu_objset_rele(os, FTAG);
1817                 return (ENOTSUP);
1818         }
1819
1820         if (zc->zc_nvlist_dst != 0 &&
1821             (error = dsl_prop_get_received(os, &nv)) == 0) {
1822                 error = put_nvlist(zc, nv);
1823                 nvlist_free(nv);
1824         }
1825
1826         dmu_objset_rele(os, FTAG);
1827         return (error);
1828 }
1829
1830 static int
1831 nvl_add_zplprop(objset_t *os, nvlist_t *props, zfs_prop_t prop)
1832 {
1833         uint64_t value;
1834         int error;
1835
1836         /*
1837          * zfs_get_zplprop() will either find a value or give us
1838          * the default value (if there is one).
1839          */
1840         if ((error = zfs_get_zplprop(os, prop, &value)) != 0)
1841                 return (error);
1842         VERIFY(nvlist_add_uint64(props, zfs_prop_to_name(prop), value) == 0);
1843         return (0);
1844 }
1845
1846 /*
1847  * inputs:
1848  * zc_name              name of filesystem
1849  * zc_nvlist_dst_size   size of buffer for zpl property nvlist
1850  *
1851  * outputs:
1852  * zc_nvlist_dst        zpl property nvlist
1853  * zc_nvlist_dst_size   size of zpl property nvlist
1854  */
1855 static int
1856 zfs_ioc_objset_zplprops(zfs_cmd_t *zc)
1857 {
1858         objset_t *os;
1859         int err;
1860
1861         /* XXX reading without owning */
1862         if ((err = dmu_objset_hold(zc->zc_name, FTAG, &os)))
1863                 return (err);
1864
1865         dmu_objset_fast_stat(os, &zc->zc_objset_stats);
1866
1867         /*
1868          * NB: nvl_add_zplprop() will read the objset contents,
1869          * which we aren't supposed to do with a DS_MODE_USER
1870          * hold, because it could be inconsistent.
1871          */
1872         if (zc->zc_nvlist_dst != 0 &&
1873             !zc->zc_objset_stats.dds_inconsistent &&
1874             dmu_objset_type(os) == DMU_OST_ZFS) {
1875                 nvlist_t *nv;
1876
1877                 VERIFY(nvlist_alloc(&nv, NV_UNIQUE_NAME, KM_SLEEP) == 0);
1878                 if ((err = nvl_add_zplprop(os, nv, ZFS_PROP_VERSION)) == 0 &&
1879                     (err = nvl_add_zplprop(os, nv, ZFS_PROP_NORMALIZE)) == 0 &&
1880                     (err = nvl_add_zplprop(os, nv, ZFS_PROP_UTF8ONLY)) == 0 &&
1881                     (err = nvl_add_zplprop(os, nv, ZFS_PROP_CASE)) == 0)
1882                         err = put_nvlist(zc, nv);
1883                 nvlist_free(nv);
1884         } else {
1885                 err = ENOENT;
1886         }
1887         dmu_objset_rele(os, FTAG);
1888         return (err);
1889 }
1890
1891 static boolean_t
1892 dataset_name_hidden(const char *name)
1893 {
1894         /*
1895          * Skip over datasets that are not visible in this zone,
1896          * internal datasets (which have a $ in their name), and
1897          * temporary datasets (which have a % in their name).
1898          */
1899         if (strchr(name, '$') != NULL)
1900                 return (B_TRUE);
1901         if (strchr(name, '%') != NULL)
1902                 return (B_TRUE);
1903         if (!INGLOBALZONE(curproc) && !zone_dataset_visible(name, NULL))
1904                 return (B_TRUE);
1905         return (B_FALSE);
1906 }
1907
1908 /*
1909  * inputs:
1910  * zc_name              name of filesystem
1911  * zc_cookie            zap cursor
1912  * zc_nvlist_dst_size   size of buffer for property nvlist
1913  *
1914  * outputs:
1915  * zc_name              name of next filesystem
1916  * zc_cookie            zap cursor
1917  * zc_objset_stats      stats
1918  * zc_nvlist_dst        property nvlist
1919  * zc_nvlist_dst_size   size of property nvlist
1920  */
1921 static int
1922 zfs_ioc_dataset_list_next(zfs_cmd_t *zc)
1923 {
1924         objset_t *os;
1925         int error;
1926         char *p;
1927         size_t orig_len = strlen(zc->zc_name);
1928
1929 top:
1930         if ((error = dmu_objset_hold(zc->zc_name, FTAG, &os))) {
1931                 if (error == ENOENT)
1932                         error = ESRCH;
1933                 return (error);
1934         }
1935
1936         p = strrchr(zc->zc_name, '/');
1937         if (p == NULL || p[1] != '\0')
1938                 (void) strlcat(zc->zc_name, "/", sizeof (zc->zc_name));
1939         p = zc->zc_name + strlen(zc->zc_name);
1940
1941         /*
1942          * Pre-fetch the datasets.  dmu_objset_prefetch() always returns 0
1943          * but is not declared void because its called by dmu_objset_find().
1944          */
1945         if (zc->zc_cookie == 0) {
1946                 uint64_t cookie = 0;
1947                 int len = sizeof (zc->zc_name) - (p - zc->zc_name);
1948
1949                 while (dmu_dir_list_next(os, len, p, NULL, &cookie) == 0)
1950                         (void) dmu_objset_prefetch(p, NULL);
1951         }
1952
1953         do {
1954                 error = dmu_dir_list_next(os,
1955                     sizeof (zc->zc_name) - (p - zc->zc_name), p,
1956                     NULL, &zc->zc_cookie);
1957                 if (error == ENOENT)
1958                         error = ESRCH;
1959         } while (error == 0 && dataset_name_hidden(zc->zc_name) &&
1960             !(zc->zc_iflags & FKIOCTL));
1961         dmu_objset_rele(os, FTAG);
1962
1963         /*
1964          * If it's an internal dataset (ie. with a '$' in its name),
1965          * don't try to get stats for it, otherwise we'll return ENOENT.
1966          */
1967         if (error == 0 && strchr(zc->zc_name, '$') == NULL) {
1968                 error = zfs_ioc_objset_stats(zc); /* fill in the stats */
1969                 if (error == ENOENT) {
1970                         /* We lost a race with destroy, get the next one. */
1971                         zc->zc_name[orig_len] = '\0';
1972                         goto top;
1973                 }
1974         }
1975         return (error);
1976 }
1977
1978 /*
1979  * inputs:
1980  * zc_name              name of filesystem
1981  * zc_cookie            zap cursor
1982  * zc_nvlist_dst_size   size of buffer for property nvlist
1983  *
1984  * outputs:
1985  * zc_name              name of next snapshot
1986  * zc_objset_stats      stats
1987  * zc_nvlist_dst        property nvlist
1988  * zc_nvlist_dst_size   size of property nvlist
1989  */
1990 static int
1991 zfs_ioc_snapshot_list_next(zfs_cmd_t *zc)
1992 {
1993         objset_t *os;
1994         int error;
1995
1996 top:
1997         if (zc->zc_cookie == 0)
1998                 (void) dmu_objset_find(zc->zc_name, dmu_objset_prefetch,
1999                     NULL, DS_FIND_SNAPSHOTS);
2000
2001         error = dmu_objset_hold(zc->zc_name, FTAG, &os);
2002         if (error)
2003                 return (error == ENOENT ? ESRCH : error);
2004
2005         /*
2006          * A dataset name of maximum length cannot have any snapshots,
2007          * so exit immediately.
2008          */
2009         if (strlcat(zc->zc_name, "@", sizeof (zc->zc_name)) >= MAXNAMELEN) {
2010                 dmu_objset_rele(os, FTAG);
2011                 return (ESRCH);
2012         }
2013
2014         error = dmu_snapshot_list_next(os,
2015             sizeof (zc->zc_name) - strlen(zc->zc_name),
2016             zc->zc_name + strlen(zc->zc_name), &zc->zc_obj, &zc->zc_cookie,
2017             NULL);
2018
2019         if (error == 0) {
2020                 dsl_dataset_t *ds;
2021                 dsl_pool_t *dp = os->os_dsl_dataset->ds_dir->dd_pool;
2022
2023                 /*
2024                  * Since we probably don't have a hold on this snapshot,
2025                  * it's possible that the objsetid could have been destroyed
2026                  * and reused for a new objset. It's OK if this happens during
2027                  * a zfs send operation, since the new createtxg will be
2028                  * beyond the range we're interested in.
2029                  */
2030                 rw_enter(&dp->dp_config_rwlock, RW_READER);
2031                 error = dsl_dataset_hold_obj(dp, zc->zc_obj, FTAG, &ds);
2032                 rw_exit(&dp->dp_config_rwlock);
2033                 if (error) {
2034                         if (error == ENOENT) {
2035                                 /* Racing with destroy, get the next one. */
2036                                 *strchr(zc->zc_name, '@') = '\0';
2037                                 dmu_objset_rele(os, FTAG);
2038                                 goto top;
2039                         }
2040                 } else {
2041                         objset_t *ossnap;
2042
2043                         error = dmu_objset_from_ds(ds, &ossnap);
2044                         if (error == 0)
2045                                 error = zfs_ioc_objset_stats_impl(zc, ossnap);
2046                         dsl_dataset_rele(ds, FTAG);
2047                 }
2048         } else if (error == ENOENT) {
2049                 error = ESRCH;
2050         }
2051
2052         dmu_objset_rele(os, FTAG);
2053         /* if we failed, undo the @ that we tacked on to zc_name */
2054         if (error)
2055                 *strchr(zc->zc_name, '@') = '\0';
2056         return (error);
2057 }
2058
2059 static int
2060 zfs_prop_set_userquota(const char *dsname, nvpair_t *pair)
2061 {
2062         const char *propname = nvpair_name(pair);
2063         uint64_t *valary;
2064         unsigned int vallen;
2065         const char *domain;
2066         char *dash;
2067         zfs_userquota_prop_t type;
2068         uint64_t rid;
2069         uint64_t quota;
2070         zfsvfs_t *zfsvfs;
2071         int err;
2072
2073         if (nvpair_type(pair) == DATA_TYPE_NVLIST) {
2074                 nvlist_t *attrs;
2075                 VERIFY(nvpair_value_nvlist(pair, &attrs) == 0);
2076                 if (nvlist_lookup_nvpair(attrs, ZPROP_VALUE,
2077                     &pair) != 0)
2078                         return (EINVAL);
2079         }
2080
2081         /*
2082          * A correctly constructed propname is encoded as
2083          * userquota@<rid>-<domain>.
2084          */
2085         if ((dash = strchr(propname, '-')) == NULL ||
2086             nvpair_value_uint64_array(pair, &valary, &vallen) != 0 ||
2087             vallen != 3)
2088                 return (EINVAL);
2089
2090         domain = dash + 1;
2091         type = valary[0];
2092         rid = valary[1];
2093         quota = valary[2];
2094
2095         err = zfsvfs_hold(dsname, FTAG, &zfsvfs, B_FALSE);
2096         if (err == 0) {
2097                 err = zfs_set_userquota(zfsvfs, type, domain, rid, quota);
2098                 zfsvfs_rele(zfsvfs, FTAG);
2099         }
2100
2101         return (err);
2102 }
2103
2104 /*
2105  * If the named property is one that has a special function to set its value,
2106  * return 0 on success and a positive error code on failure; otherwise if it is
2107  * not one of the special properties handled by this function, return -1.
2108  *
2109  * XXX: It would be better for callers of the property interface if we handled
2110  * these special cases in dsl_prop.c (in the dsl layer).
2111  */
2112 static int
2113 zfs_prop_set_special(const char *dsname, zprop_source_t source,
2114     nvpair_t *pair)
2115 {
2116         const char *propname = nvpair_name(pair);
2117         zfs_prop_t prop = zfs_name_to_prop(propname);
2118         uint64_t intval;
2119         int err;
2120
2121         if (prop == ZPROP_INVAL) {
2122                 if (zfs_prop_userquota(propname))
2123                         return (zfs_prop_set_userquota(dsname, pair));
2124                 return (-1);
2125         }
2126
2127         if (nvpair_type(pair) == DATA_TYPE_NVLIST) {
2128                 nvlist_t *attrs;
2129                 VERIFY(nvpair_value_nvlist(pair, &attrs) == 0);
2130                 VERIFY(nvlist_lookup_nvpair(attrs, ZPROP_VALUE,
2131                     &pair) == 0);
2132         }
2133
2134         if (zfs_prop_get_type(prop) == PROP_TYPE_STRING)
2135                 return (-1);
2136
2137         VERIFY(0 == nvpair_value_uint64(pair, &intval));
2138
2139         switch (prop) {
2140         case ZFS_PROP_QUOTA:
2141                 err = dsl_dir_set_quota(dsname, source, intval);
2142                 break;
2143         case ZFS_PROP_REFQUOTA:
2144                 err = dsl_dataset_set_quota(dsname, source, intval);
2145                 break;
2146         case ZFS_PROP_RESERVATION:
2147                 err = dsl_dir_set_reservation(dsname, source, intval);
2148                 break;
2149         case ZFS_PROP_REFRESERVATION:
2150                 err = dsl_dataset_set_reservation(dsname, source, intval);
2151                 break;
2152         case ZFS_PROP_VOLSIZE:
2153                 err = zvol_set_volsize(dsname, ddi_driver_major(zfs_dip),
2154                     intval);
2155                 break;
2156         case ZFS_PROP_VERSION:
2157         {
2158                 zfsvfs_t *zfsvfs;
2159
2160                 if ((err = zfsvfs_hold(dsname, FTAG, &zfsvfs, B_TRUE)) != 0)
2161                         break;
2162
2163                 err = zfs_set_version(zfsvfs, intval);
2164                 zfsvfs_rele(zfsvfs, FTAG);
2165
2166                 if (err == 0 && intval >= ZPL_VERSION_USERSPACE) {
2167                         zfs_cmd_t *zc;
2168
2169                         zc = kmem_zalloc(sizeof (zfs_cmd_t), KM_SLEEP);
2170                         (void) strcpy(zc->zc_name, dsname);
2171                         (void) zfs_ioc_userspace_upgrade(zc);
2172                         kmem_free(zc, sizeof (zfs_cmd_t));
2173                 }
2174                 break;
2175         }
2176
2177         default:
2178                 err = -1;
2179         }
2180
2181         return (err);
2182 }
2183
2184 /*
2185  * This function is best effort. If it fails to set any of the given properties,
2186  * it continues to set as many as it can and returns the first error
2187  * encountered. If the caller provides a non-NULL errlist, it also gives the
2188  * complete list of names of all the properties it failed to set along with the
2189  * corresponding error numbers. The caller is responsible for freeing the
2190  * returned errlist.
2191  *
2192  * If every property is set successfully, zero is returned and the list pointed
2193  * at by errlist is NULL.
2194  */
2195 int
2196 zfs_set_prop_nvlist(const char *dsname, zprop_source_t source, nvlist_t *nvl,
2197     nvlist_t **errlist)
2198 {
2199         nvpair_t *pair;
2200         nvpair_t *propval;
2201         int rv = 0;
2202         uint64_t intval;
2203         char *strval;
2204         nvlist_t *genericnvl;
2205         nvlist_t *errors;
2206         nvlist_t *retrynvl;
2207
2208         VERIFY(nvlist_alloc(&genericnvl, NV_UNIQUE_NAME, KM_SLEEP) == 0);
2209         VERIFY(nvlist_alloc(&errors, NV_UNIQUE_NAME, KM_SLEEP) == 0);
2210         VERIFY(nvlist_alloc(&retrynvl, NV_UNIQUE_NAME, KM_SLEEP) == 0);
2211
2212 retry:
2213         pair = NULL;
2214         while ((pair = nvlist_next_nvpair(nvl, pair)) != NULL) {
2215                 const char *propname = nvpair_name(pair);
2216                 zfs_prop_t prop = zfs_name_to_prop(propname);
2217                 int err = 0;
2218
2219                 /* decode the property value */
2220                 propval = pair;
2221                 if (nvpair_type(pair) == DATA_TYPE_NVLIST) {
2222                         nvlist_t *attrs;
2223                         VERIFY(nvpair_value_nvlist(pair, &attrs) == 0);
2224                         if (nvlist_lookup_nvpair(attrs, ZPROP_VALUE,
2225                             &propval) != 0)
2226                                 err = EINVAL;
2227                 }
2228
2229                 /* Validate value type */
2230                 if (err == 0 && prop == ZPROP_INVAL) {
2231                         if (zfs_prop_user(propname)) {
2232                                 if (nvpair_type(propval) != DATA_TYPE_STRING)
2233                                         err = EINVAL;
2234                         } else if (zfs_prop_userquota(propname)) {
2235                                 if (nvpair_type(propval) !=
2236                                     DATA_TYPE_UINT64_ARRAY)
2237                                         err = EINVAL;
2238                         }
2239                 } else if (err == 0) {
2240                         if (nvpair_type(propval) == DATA_TYPE_STRING) {
2241                                 if (zfs_prop_get_type(prop) != PROP_TYPE_STRING)
2242                                         err = EINVAL;
2243                         } else if (nvpair_type(propval) == DATA_TYPE_UINT64) {
2244                                 const char *unused;
2245
2246                                 VERIFY(nvpair_value_uint64(propval,
2247                                     &intval) == 0);
2248
2249                                 switch (zfs_prop_get_type(prop)) {
2250                                 case PROP_TYPE_NUMBER:
2251                                         break;
2252                                 case PROP_TYPE_STRING:
2253                                         err = EINVAL;
2254                                         break;
2255                                 case PROP_TYPE_INDEX:
2256                                         if (zfs_prop_index_to_string(prop,
2257                                             intval, &unused) != 0)
2258                                                 err = EINVAL;
2259                                         break;
2260                                 default:
2261                                         cmn_err(CE_PANIC,
2262                                             "unknown property type");
2263                                 }
2264                         } else {
2265                                 err = EINVAL;
2266                         }
2267                 }
2268
2269                 /* Validate permissions */
2270                 if (err == 0)
2271                         err = zfs_check_settable(dsname, pair, CRED());
2272
2273                 if (err == 0) {
2274                         err = zfs_prop_set_special(dsname, source, pair);
2275                         if (err == -1) {
2276                                 /*
2277                                  * For better performance we build up a list of
2278                                  * properties to set in a single transaction.
2279                                  */
2280                                 err = nvlist_add_nvpair(genericnvl, pair);
2281                         } else if (err != 0 && nvl != retrynvl) {
2282                                 /*
2283                                  * This may be a spurious error caused by
2284                                  * receiving quota and reservation out of order.
2285                                  * Try again in a second pass.
2286                                  */
2287                                 err = nvlist_add_nvpair(retrynvl, pair);
2288                         }
2289                 }
2290
2291                 if (err != 0)
2292                         VERIFY(nvlist_add_int32(errors, propname, err) == 0);
2293         }
2294
2295         if (nvl != retrynvl && !nvlist_empty(retrynvl)) {
2296                 nvl = retrynvl;
2297                 goto retry;
2298         }
2299
2300         if (!nvlist_empty(genericnvl) &&
2301             dsl_props_set(dsname, source, genericnvl) != 0) {
2302                 /*
2303                  * If this fails, we still want to set as many properties as we
2304                  * can, so try setting them individually.
2305                  */
2306                 pair = NULL;
2307                 while ((pair = nvlist_next_nvpair(genericnvl, pair)) != NULL) {
2308                         const char *propname = nvpair_name(pair);
2309                         int err = 0;
2310
2311                         propval = pair;
2312                         if (nvpair_type(pair) == DATA_TYPE_NVLIST) {
2313                                 nvlist_t *attrs;
2314                                 VERIFY(nvpair_value_nvlist(pair, &attrs) == 0);
2315                                 VERIFY(nvlist_lookup_nvpair(attrs, ZPROP_VALUE,
2316                                     &propval) == 0);
2317                         }
2318
2319                         if (nvpair_type(propval) == DATA_TYPE_STRING) {
2320                                 VERIFY(nvpair_value_string(propval,
2321                                     &strval) == 0);
2322                                 err = dsl_prop_set(dsname, propname, source, 1,
2323                                     strlen(strval) + 1, strval);
2324                         } else {
2325                                 VERIFY(nvpair_value_uint64(propval,
2326                                     &intval) == 0);
2327                                 err = dsl_prop_set(dsname, propname, source, 8,
2328                                     1, &intval);
2329                         }
2330
2331                         if (err != 0) {
2332                                 VERIFY(nvlist_add_int32(errors, propname,
2333                                     err) == 0);
2334                         }
2335                 }
2336         }
2337         nvlist_free(genericnvl);
2338         nvlist_free(retrynvl);
2339
2340         if ((pair = nvlist_next_nvpair(errors, NULL)) == NULL) {
2341                 nvlist_free(errors);
2342                 errors = NULL;
2343         } else {
2344                 VERIFY(nvpair_value_int32(pair, &rv) == 0);
2345         }
2346
2347         if (errlist == NULL)
2348                 nvlist_free(errors);
2349         else
2350                 *errlist = errors;
2351
2352         return (rv);
2353 }
2354
2355 /*
2356  * Check that all the properties are valid user properties.
2357  */
2358 static int
2359 zfs_check_userprops(char *fsname, nvlist_t *nvl)
2360 {
2361         nvpair_t *pair = NULL;
2362         int error = 0;
2363
2364         while ((pair = nvlist_next_nvpair(nvl, pair)) != NULL) {
2365                 const char *propname = nvpair_name(pair);
2366                 char *valstr;
2367
2368                 if (!zfs_prop_user(propname) ||
2369                     nvpair_type(pair) != DATA_TYPE_STRING)
2370                         return (EINVAL);
2371
2372                 if ((error = zfs_secpolicy_write_perms(fsname,
2373                     ZFS_DELEG_PERM_USERPROP, CRED())))
2374                         return (error);
2375
2376                 if (strlen(propname) >= ZAP_MAXNAMELEN)
2377                         return (ENAMETOOLONG);
2378
2379                 VERIFY(nvpair_value_string(pair, &valstr) == 0);
2380                 if (strlen(valstr) >= ZAP_MAXVALUELEN)
2381                         return (E2BIG);
2382         }
2383         return (0);
2384 }
2385
2386 static void
2387 props_skip(nvlist_t *props, nvlist_t *skipped, nvlist_t **newprops)
2388 {
2389         nvpair_t *pair;
2390
2391         VERIFY(nvlist_alloc(newprops, NV_UNIQUE_NAME, KM_SLEEP) == 0);
2392
2393         pair = NULL;
2394         while ((pair = nvlist_next_nvpair(props, pair)) != NULL) {
2395                 if (nvlist_exists(skipped, nvpair_name(pair)))
2396                         continue;
2397
2398                 VERIFY(nvlist_add_nvpair(*newprops, pair) == 0);
2399         }
2400 }
2401
2402 static int
2403 clear_received_props(objset_t *os, const char *fs, nvlist_t *props,
2404     nvlist_t *skipped)
2405 {
2406         int err = 0;
2407         nvlist_t *cleared_props = NULL;
2408         props_skip(props, skipped, &cleared_props);
2409         if (!nvlist_empty(cleared_props)) {
2410                 /*
2411                  * Acts on local properties until the dataset has received
2412                  * properties at least once on or after SPA_VERSION_RECVD_PROPS.
2413                  */
2414                 zprop_source_t flags = (ZPROP_SRC_NONE |
2415                     (dsl_prop_get_hasrecvd(os) ? ZPROP_SRC_RECEIVED : 0));
2416                 err = zfs_set_prop_nvlist(fs, flags, cleared_props, NULL);
2417         }
2418         nvlist_free(cleared_props);
2419         return (err);
2420 }
2421
2422 /*
2423  * inputs:
2424  * zc_name              name of filesystem
2425  * zc_value             name of property to set
2426  * zc_nvlist_src{_size} nvlist of properties to apply
2427  * zc_cookie            received properties flag
2428  *
2429  * outputs:
2430  * zc_nvlist_dst{_size} error for each unapplied received property
2431  */
2432 static int
2433 zfs_ioc_set_prop(zfs_cmd_t *zc)
2434 {
2435         nvlist_t *nvl;
2436         boolean_t received = zc->zc_cookie;
2437         zprop_source_t source = (received ? ZPROP_SRC_RECEIVED :
2438             ZPROP_SRC_LOCAL);
2439         nvlist_t *errors = NULL;
2440         int error;
2441
2442         if ((error = get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
2443             zc->zc_iflags, &nvl)) != 0)
2444                 return (error);
2445
2446         if (received) {
2447                 nvlist_t *origprops;
2448                 objset_t *os;
2449
2450                 if (dmu_objset_hold(zc->zc_name, FTAG, &os) == 0) {
2451                         if (dsl_prop_get_received(os, &origprops) == 0) {
2452                                 (void) clear_received_props(os,
2453                                     zc->zc_name, origprops, nvl);
2454                                 nvlist_free(origprops);
2455                         }
2456
2457                         dsl_prop_set_hasrecvd(os);
2458                         dmu_objset_rele(os, FTAG);
2459                 }
2460         }
2461
2462         error = zfs_set_prop_nvlist(zc->zc_name, source, nvl, &errors);
2463
2464         if (zc->zc_nvlist_dst != 0 && errors != NULL) {
2465                 (void) put_nvlist(zc, errors);
2466         }
2467
2468         nvlist_free(errors);
2469         nvlist_free(nvl);
2470         return (error);
2471 }
2472
2473 /*
2474  * inputs:
2475  * zc_name              name of filesystem
2476  * zc_value             name of property to inherit
2477  * zc_cookie            revert to received value if TRUE
2478  *
2479  * outputs:             none
2480  */
2481 static int
2482 zfs_ioc_inherit_prop(zfs_cmd_t *zc)
2483 {
2484         const char *propname = zc->zc_value;
2485         zfs_prop_t prop = zfs_name_to_prop(propname);
2486         boolean_t received = zc->zc_cookie;
2487         zprop_source_t source = (received
2488             ? ZPROP_SRC_NONE            /* revert to received value, if any */
2489             : ZPROP_SRC_INHERITED);     /* explicitly inherit */
2490
2491         if (received) {
2492                 nvlist_t *dummy;
2493                 nvpair_t *pair;
2494                 zprop_type_t type;
2495                 int err;
2496
2497                 /*
2498                  * zfs_prop_set_special() expects properties in the form of an
2499                  * nvpair with type info.
2500                  */
2501                 if (prop == ZPROP_INVAL) {
2502                         if (!zfs_prop_user(propname))
2503                                 return (EINVAL);
2504
2505                         type = PROP_TYPE_STRING;
2506                 } else if (prop == ZFS_PROP_VOLSIZE ||
2507                     prop == ZFS_PROP_VERSION) {
2508                         return (EINVAL);
2509                 } else {
2510                         type = zfs_prop_get_type(prop);
2511                 }
2512
2513                 VERIFY(nvlist_alloc(&dummy, NV_UNIQUE_NAME, KM_SLEEP) == 0);
2514
2515                 switch (type) {
2516                 case PROP_TYPE_STRING:
2517                         VERIFY(0 == nvlist_add_string(dummy, propname, ""));
2518                         break;
2519                 case PROP_TYPE_NUMBER:
2520                 case PROP_TYPE_INDEX:
2521                         VERIFY(0 == nvlist_add_uint64(dummy, propname, 0));
2522                         break;
2523                 default:
2524                         nvlist_free(dummy);
2525                         return (EINVAL);
2526                 }
2527
2528                 pair = nvlist_next_nvpair(dummy, NULL);
2529                 err = zfs_prop_set_special(zc->zc_name, source, pair);
2530                 nvlist_free(dummy);
2531                 if (err != -1)
2532                         return (err); /* special property already handled */
2533         } else {
2534                 /*
2535                  * Only check this in the non-received case. We want to allow
2536                  * 'inherit -S' to revert non-inheritable properties like quota
2537                  * and reservation to the received or default values even though
2538                  * they are not considered inheritable.
2539                  */
2540                 if (prop != ZPROP_INVAL && !zfs_prop_inheritable(prop))
2541                         return (EINVAL);
2542         }
2543
2544         /* the property name has been validated by zfs_secpolicy_inherit() */
2545         return (dsl_prop_set(zc->zc_name, zc->zc_value, source, 0, 0, NULL));
2546 }
2547
2548 static int
2549 zfs_ioc_pool_set_props(zfs_cmd_t *zc)
2550 {
2551         nvlist_t *props;
2552         spa_t *spa;
2553         int error;
2554         nvpair_t *pair;
2555
2556         if ((error = get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
2557             zc->zc_iflags, &props)))
2558                 return (error);
2559
2560         /*
2561          * If the only property is the configfile, then just do a spa_lookup()
2562          * to handle the faulted case.
2563          */
2564         pair = nvlist_next_nvpair(props, NULL);
2565         if (pair != NULL && strcmp(nvpair_name(pair),
2566             zpool_prop_to_name(ZPOOL_PROP_CACHEFILE)) == 0 &&
2567             nvlist_next_nvpair(props, pair) == NULL) {
2568                 mutex_enter(&spa_namespace_lock);
2569                 if ((spa = spa_lookup(zc->zc_name)) != NULL) {
2570                         spa_configfile_set(spa, props, B_FALSE);
2571                         spa_config_sync(spa, B_FALSE, B_TRUE);
2572                 }
2573                 mutex_exit(&spa_namespace_lock);
2574                 if (spa != NULL) {
2575                         nvlist_free(props);
2576                         return (0);
2577                 }
2578         }
2579
2580         if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0) {
2581                 nvlist_free(props);
2582                 return (error);
2583         }
2584
2585         error = spa_prop_set(spa, props);
2586
2587         nvlist_free(props);
2588         spa_close(spa, FTAG);
2589
2590         return (error);
2591 }
2592
2593 static int
2594 zfs_ioc_pool_get_props(zfs_cmd_t *zc)
2595 {
2596         spa_t *spa;
2597         int error;
2598         nvlist_t *nvp = NULL;
2599
2600         if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0) {
2601                 /*
2602                  * If the pool is faulted, there may be properties we can still
2603                  * get (such as altroot and cachefile), so attempt to get them
2604                  * anyway.
2605                  */
2606                 mutex_enter(&spa_namespace_lock);
2607                 if ((spa = spa_lookup(zc->zc_name)) != NULL)
2608                         error = spa_prop_get(spa, &nvp);
2609                 mutex_exit(&spa_namespace_lock);
2610         } else {
2611                 error = spa_prop_get(spa, &nvp);
2612                 spa_close(spa, FTAG);
2613         }
2614
2615         if (error == 0 && zc->zc_nvlist_dst != 0)
2616                 error = put_nvlist(zc, nvp);
2617         else
2618                 error = EFAULT;
2619
2620         nvlist_free(nvp);
2621         return (error);
2622 }
2623
2624 /*
2625  * inputs:
2626  * zc_name              name of filesystem
2627  * zc_nvlist_src{_size} nvlist of delegated permissions
2628  * zc_perm_action       allow/unallow flag
2629  *
2630  * outputs:             none
2631  */
2632 static int
2633 zfs_ioc_set_fsacl(zfs_cmd_t *zc)
2634 {
2635         int error;
2636         nvlist_t *fsaclnv = NULL;
2637
2638         if ((error = get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
2639             zc->zc_iflags, &fsaclnv)) != 0)
2640                 return (error);
2641
2642         /*
2643          * Verify nvlist is constructed correctly
2644          */
2645         if ((error = zfs_deleg_verify_nvlist(fsaclnv)) != 0) {
2646                 nvlist_free(fsaclnv);
2647                 return (EINVAL);
2648         }
2649
2650         /*
2651          * If we don't have PRIV_SYS_MOUNT, then validate
2652          * that user is allowed to hand out each permission in
2653          * the nvlist(s)
2654          */
2655
2656         error = secpolicy_zfs(CRED());
2657         if (error) {
2658                 if (zc->zc_perm_action == B_FALSE) {
2659                         error = dsl_deleg_can_allow(zc->zc_name,
2660                             fsaclnv, CRED());
2661                 } else {
2662                         error = dsl_deleg_can_unallow(zc->zc_name,
2663                             fsaclnv, CRED());
2664                 }
2665         }
2666
2667         if (error == 0)
2668                 error = dsl_deleg_set(zc->zc_name, fsaclnv, zc->zc_perm_action);
2669
2670         nvlist_free(fsaclnv);
2671         return (error);
2672 }
2673
2674 /*
2675  * inputs:
2676  * zc_name              name of filesystem
2677  *
2678  * outputs:
2679  * zc_nvlist_src{_size} nvlist of delegated permissions
2680  */
2681 static int
2682 zfs_ioc_get_fsacl(zfs_cmd_t *zc)
2683 {
2684         nvlist_t *nvp;
2685         int error;
2686
2687         if ((error = dsl_deleg_get(zc->zc_name, &nvp)) == 0) {
2688                 error = put_nvlist(zc, nvp);
2689                 nvlist_free(nvp);
2690         }
2691
2692         return (error);
2693 }
2694
2695 /*
2696  * Search the vfs list for a specified resource.  Returns a pointer to it
2697  * or NULL if no suitable entry is found. The caller of this routine
2698  * is responsible for releasing the returned vfs pointer.
2699  */
2700 static vfs_t *
2701 zfs_get_vfs(const char *resource)
2702 {
2703         struct vfs *vfsp;
2704         struct vfs *vfs_found = NULL;
2705
2706         vfs_list_read_lock();
2707         vfsp = rootvfs;
2708         do {
2709                 if (strcmp(refstr_value(vfsp->vfs_resource), resource) == 0) {
2710                         VFS_HOLD(vfsp);
2711                         vfs_found = vfsp;
2712                         break;
2713                 }
2714                 vfsp = vfsp->vfs_next;
2715         } while (vfsp != rootvfs);
2716         vfs_list_unlock();
2717         return (vfs_found);
2718 }
2719
2720 /* ARGSUSED */
2721 static void
2722 zfs_create_cb(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx)
2723 {
2724         zfs_creat_t *zct = arg;
2725
2726         zfs_create_fs(os, cr, zct->zct_zplprops, tx);
2727 }
2728
2729 #define ZFS_PROP_UNDEFINED      ((uint64_t)-1)
2730
2731 /*
2732  * inputs:
2733  * createprops          list of properties requested by creator
2734  * default_zplver       zpl version to use if unspecified in createprops
2735  * fuids_ok             fuids allowed in this version of the spa?
2736  * os                   parent objset pointer (NULL if root fs)
2737  *
2738  * outputs:
2739  * zplprops     values for the zplprops we attach to the master node object
2740  * is_ci        true if requested file system will be purely case-insensitive
2741  *
2742  * Determine the settings for utf8only, normalization and
2743  * casesensitivity.  Specific values may have been requested by the
2744  * creator and/or we can inherit values from the parent dataset.  If
2745  * the file system is of too early a vintage, a creator can not
2746  * request settings for these properties, even if the requested
2747  * setting is the default value.  We don't actually want to create dsl
2748  * properties for these, so remove them from the source nvlist after
2749  * processing.
2750  */
2751 static int
2752 zfs_fill_zplprops_impl(objset_t *os, uint64_t zplver,
2753     boolean_t fuids_ok, boolean_t sa_ok, nvlist_t *createprops,
2754     nvlist_t *zplprops, boolean_t *is_ci)
2755 {
2756         uint64_t sense = ZFS_PROP_UNDEFINED;
2757         uint64_t norm = ZFS_PROP_UNDEFINED;
2758         uint64_t u8 = ZFS_PROP_UNDEFINED;
2759
2760         ASSERT(zplprops != NULL);
2761
2762         /*
2763          * Pull out creator prop choices, if any.
2764          */
2765         if (createprops) {
2766                 (void) nvlist_lookup_uint64(createprops,
2767                     zfs_prop_to_name(ZFS_PROP_VERSION), &zplver);
2768                 (void) nvlist_lookup_uint64(createprops,
2769                     zfs_prop_to_name(ZFS_PROP_NORMALIZE), &norm);
2770                 (void) nvlist_remove_all(createprops,
2771                     zfs_prop_to_name(ZFS_PROP_NORMALIZE));
2772                 (void) nvlist_lookup_uint64(createprops,
2773                     zfs_prop_to_name(ZFS_PROP_UTF8ONLY), &u8);
2774                 (void) nvlist_remove_all(createprops,
2775                     zfs_prop_to_name(ZFS_PROP_UTF8ONLY));
2776                 (void) nvlist_lookup_uint64(createprops,
2777                     zfs_prop_to_name(ZFS_PROP_CASE), &sense);
2778                 (void) nvlist_remove_all(createprops,
2779                     zfs_prop_to_name(ZFS_PROP_CASE));
2780         }
2781
2782         /*
2783          * If the zpl version requested is whacky or the file system
2784          * or pool is version is too "young" to support normalization
2785          * and the creator tried to set a value for one of the props,
2786          * error out.
2787          */
2788         if ((zplver < ZPL_VERSION_INITIAL || zplver > ZPL_VERSION) ||
2789             (zplver >= ZPL_VERSION_FUID && !fuids_ok) ||
2790             (zplver >= ZPL_VERSION_SA && !sa_ok) ||
2791             (zplver < ZPL_VERSION_NORMALIZATION &&
2792             (norm != ZFS_PROP_UNDEFINED || u8 != ZFS_PROP_UNDEFINED ||
2793             sense != ZFS_PROP_UNDEFINED)))
2794                 return (ENOTSUP);
2795
2796         /*
2797          * Put the version in the zplprops
2798          */
2799         VERIFY(nvlist_add_uint64(zplprops,
2800             zfs_prop_to_name(ZFS_PROP_VERSION), zplver) == 0);
2801
2802         if (norm == ZFS_PROP_UNDEFINED)
2803                 VERIFY(zfs_get_zplprop(os, ZFS_PROP_NORMALIZE, &norm) == 0);
2804         VERIFY(nvlist_add_uint64(zplprops,
2805             zfs_prop_to_name(ZFS_PROP_NORMALIZE), norm) == 0);
2806
2807         /*
2808          * If we're normalizing, names must always be valid UTF-8 strings.
2809          */
2810         if (norm)
2811                 u8 = 1;
2812         if (u8 == ZFS_PROP_UNDEFINED)
2813                 VERIFY(zfs_get_zplprop(os, ZFS_PROP_UTF8ONLY, &u8) == 0);
2814         VERIFY(nvlist_add_uint64(zplprops,
2815             zfs_prop_to_name(ZFS_PROP_UTF8ONLY), u8) == 0);
2816
2817         if (sense == ZFS_PROP_UNDEFINED)
2818                 VERIFY(zfs_get_zplprop(os, ZFS_PROP_CASE, &sense) == 0);
2819         VERIFY(nvlist_add_uint64(zplprops,
2820             zfs_prop_to_name(ZFS_PROP_CASE), sense) == 0);
2821
2822         if (is_ci)
2823                 *is_ci = (sense == ZFS_CASE_INSENSITIVE);
2824
2825         return (0);
2826 }
2827
2828 static int
2829 zfs_fill_zplprops(const char *dataset, nvlist_t *createprops,
2830     nvlist_t *zplprops, boolean_t *is_ci)
2831 {
2832         boolean_t fuids_ok, sa_ok;
2833         uint64_t zplver = ZPL_VERSION;
2834         objset_t *os = NULL;
2835         char parentname[MAXNAMELEN];
2836         char *cp;
2837         spa_t *spa;
2838         uint64_t spa_vers;
2839         int error;
2840
2841         (void) strlcpy(parentname, dataset, sizeof (parentname));
2842         cp = strrchr(parentname, '/');
2843         ASSERT(cp != NULL);
2844         cp[0] = '\0';
2845
2846         if ((error = spa_open(dataset, &spa, FTAG)) != 0)
2847                 return (error);
2848
2849         spa_vers = spa_version(spa);
2850         spa_close(spa, FTAG);
2851
2852         zplver = zfs_zpl_version_map(spa_vers);
2853         fuids_ok = (zplver >= ZPL_VERSION_FUID);
2854         sa_ok = (zplver >= ZPL_VERSION_SA);
2855
2856         /*
2857          * Open parent object set so we can inherit zplprop values.
2858          */
2859         if ((error = dmu_objset_hold(parentname, FTAG, &os)) != 0)
2860                 return (error);
2861
2862         error = zfs_fill_zplprops_impl(os, zplver, fuids_ok, sa_ok, createprops,
2863             zplprops, is_ci);
2864         dmu_objset_rele(os, FTAG);
2865         return (error);
2866 }
2867
2868 static int
2869 zfs_fill_zplprops_root(uint64_t spa_vers, nvlist_t *createprops,
2870     nvlist_t *zplprops, boolean_t *is_ci)
2871 {
2872         boolean_t fuids_ok;
2873         boolean_t sa_ok;
2874         uint64_t zplver = ZPL_VERSION;
2875         int error;
2876
2877         zplver = zfs_zpl_version_map(spa_vers);
2878         fuids_ok = (zplver >= ZPL_VERSION_FUID);
2879         sa_ok = (zplver >= ZPL_VERSION_SA);
2880
2881         error = zfs_fill_zplprops_impl(NULL, zplver, fuids_ok, sa_ok,
2882             createprops, zplprops, is_ci);
2883         return (error);
2884 }
2885
2886 /*
2887  * inputs:
2888  * zc_objset_type       type of objset to create (fs vs zvol)
2889  * zc_name              name of new objset
2890  * zc_value             name of snapshot to clone from (may be empty)
2891  * zc_nvlist_src{_size} nvlist of properties to apply
2892  *
2893  * outputs: none
2894  */
2895 static int
2896 zfs_ioc_create(zfs_cmd_t *zc)
2897 {
2898         objset_t *clone;
2899         int error = 0;
2900         zfs_creat_t zct;
2901         nvlist_t *nvprops = NULL;
2902         void (*cbfunc)(objset_t *os, void *arg, cred_t *cr, dmu_tx_t *tx);
2903         dmu_objset_type_t type = zc->zc_objset_type;
2904
2905         switch (type) {
2906
2907         case DMU_OST_ZFS:
2908                 cbfunc = zfs_create_cb;
2909                 break;
2910
2911         case DMU_OST_ZVOL:
2912                 cbfunc = zvol_create_cb;
2913                 break;
2914
2915         default:
2916                 cbfunc = NULL;
2917                 break;
2918         }
2919         if (strchr(zc->zc_name, '@') ||
2920             strchr(zc->zc_name, '%'))
2921                 return (EINVAL);
2922
2923         if (zc->zc_nvlist_src != 0 &&
2924             (error = get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
2925             zc->zc_iflags, &nvprops)) != 0)
2926                 return (error);
2927
2928         zct.zct_zplprops = NULL;
2929         zct.zct_props = nvprops;
2930
2931         if (zc->zc_value[0] != '\0') {
2932                 /*
2933                  * We're creating a clone of an existing snapshot.
2934                  */
2935                 zc->zc_value[sizeof (zc->zc_value) - 1] = '\0';
2936                 if (dataset_namecheck(zc->zc_value, NULL, NULL) != 0) {
2937                         nvlist_free(nvprops);
2938                         return (EINVAL);
2939                 }
2940
2941                 error = dmu_objset_hold(zc->zc_value, FTAG, &clone);
2942                 if (error) {
2943                         nvlist_free(nvprops);
2944                         return (error);
2945                 }
2946
2947                 error = dmu_objset_clone(zc->zc_name, dmu_objset_ds(clone), 0);
2948                 dmu_objset_rele(clone, FTAG);
2949                 if (error) {
2950                         nvlist_free(nvprops);
2951                         return (error);
2952                 }
2953         } else {
2954                 boolean_t is_insensitive = B_FALSE;
2955
2956                 if (cbfunc == NULL) {
2957                         nvlist_free(nvprops);
2958                         return (EINVAL);
2959                 }
2960
2961                 if (type == DMU_OST_ZVOL) {
2962                         uint64_t volsize, volblocksize;
2963
2964                         if (nvprops == NULL ||
2965                             nvlist_lookup_uint64(nvprops,
2966                             zfs_prop_to_name(ZFS_PROP_VOLSIZE),
2967                             &volsize) != 0) {
2968                                 nvlist_free(nvprops);
2969                                 return (EINVAL);
2970                         }
2971
2972                         if ((error = nvlist_lookup_uint64(nvprops,
2973                             zfs_prop_to_name(ZFS_PROP_VOLBLOCKSIZE),
2974                             &volblocksize)) != 0 && error != ENOENT) {
2975                                 nvlist_free(nvprops);
2976                                 return (EINVAL);
2977                         }
2978
2979                         if (error != 0)
2980                                 volblocksize = zfs_prop_default_numeric(
2981                                     ZFS_PROP_VOLBLOCKSIZE);
2982
2983                         if ((error = zvol_check_volblocksize(
2984                             volblocksize)) != 0 ||
2985                             (error = zvol_check_volsize(volsize,
2986                             volblocksize)) != 0) {
2987                                 nvlist_free(nvprops);
2988                                 return (error);
2989                         }
2990                 } else if (type == DMU_OST_ZFS) {
2991                         int error;
2992
2993                         /*
2994                          * We have to have normalization and
2995                          * case-folding flags correct when we do the
2996                          * file system creation, so go figure them out
2997                          * now.
2998                          */
2999                         VERIFY(nvlist_alloc(&zct.zct_zplprops,
3000                             NV_UNIQUE_NAME, KM_SLEEP) == 0);
3001                         error = zfs_fill_zplprops(zc->zc_name, nvprops,
3002                             zct.zct_zplprops, &is_insensitive);
3003                         if (error != 0) {
3004                                 nvlist_free(nvprops);
3005                                 nvlist_free(zct.zct_zplprops);
3006                                 return (error);
3007                         }
3008                 }
3009                 error = dmu_objset_create(zc->zc_name, type,
3010                     is_insensitive ? DS_FLAG_CI_DATASET : 0, cbfunc, &zct);
3011                 nvlist_free(zct.zct_zplprops);
3012         }
3013
3014         /*
3015          * It would be nice to do this atomically.
3016          */
3017         if (error == 0) {
3018                 error = zfs_set_prop_nvlist(zc->zc_name, ZPROP_SRC_LOCAL,
3019                     nvprops, NULL);
3020                 if (error != 0)
3021                         (void) dmu_objset_destroy(zc->zc_name, B_FALSE);
3022         }
3023         nvlist_free(nvprops);
3024         return (error);
3025 }
3026
3027 /*
3028  * inputs:
3029  * zc_name      name of filesystem
3030  * zc_value     short name of snapshot
3031  * zc_cookie    recursive flag
3032  * zc_nvlist_src[_size] property list
3033  *
3034  * outputs:
3035  * zc_value     short snapname (i.e. part after the '@')
3036  */
3037 static int
3038 zfs_ioc_snapshot(zfs_cmd_t *zc)
3039 {
3040         nvlist_t *nvprops = NULL;
3041         int error;
3042         boolean_t recursive = zc->zc_cookie;
3043
3044         if (snapshot_namecheck(zc->zc_value, NULL, NULL) != 0)
3045                 return (EINVAL);
3046
3047         if (zc->zc_nvlist_src != 0 &&
3048             (error = get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
3049             zc->zc_iflags, &nvprops)) != 0)
3050                 return (error);
3051
3052         error = zfs_check_userprops(zc->zc_name, nvprops);
3053         if (error)
3054                 goto out;
3055
3056         if (!nvlist_empty(nvprops) &&
3057             zfs_earlier_version(zc->zc_name, SPA_VERSION_SNAP_PROPS)) {
3058                 error = ENOTSUP;
3059                 goto out;
3060         }
3061
3062         error = dmu_objset_snapshot(zc->zc_name, zc->zc_value, NULL,
3063             nvprops, recursive, B_FALSE, -1);
3064
3065 out:
3066         nvlist_free(nvprops);
3067         return (error);
3068 }
3069
3070 int
3071 zfs_unmount_snap(const char *name, void *arg)
3072 {
3073         vfs_t *vfsp = NULL;
3074
3075         if (arg) {
3076                 char *snapname = arg;
3077                 char *fullname = kmem_asprintf("%s@%s", name, snapname);
3078                 vfsp = zfs_get_vfs(fullname);
3079                 strfree(fullname);
3080         } else if (strchr(name, '@')) {
3081                 vfsp = zfs_get_vfs(name);
3082         }
3083
3084         if (vfsp) {
3085                 /*
3086                  * Always force the unmount for snapshots.
3087                  */
3088                 int flag = MS_FORCE;
3089                 int err;
3090
3091                 if ((err = vn_vfswlock(vfsp->vfs_vnodecovered)) != 0) {
3092                         VFS_RELE(vfsp);
3093                         return (err);
3094                 }
3095                 VFS_RELE(vfsp);
3096                 if ((err = dounmount(vfsp, flag, kcred)) != 0)
3097                         return (err);
3098         }
3099         return (0);
3100 }
3101
3102 /*
3103  * inputs:
3104  * zc_name              name of filesystem
3105  * zc_value             short name of snapshot
3106  * zc_defer_destroy     mark for deferred destroy
3107  *
3108  * outputs:     none
3109  */
3110 static int
3111 zfs_ioc_destroy_snaps(zfs_cmd_t *zc)
3112 {
3113         int err;
3114
3115         if (snapshot_namecheck(zc->zc_value, NULL, NULL) != 0)
3116                 return (EINVAL);
3117         err = dmu_objset_find(zc->zc_name,
3118             zfs_unmount_snap, zc->zc_value, DS_FIND_CHILDREN);
3119         if (err)
3120                 return (err);
3121         return (dmu_snapshots_destroy(zc->zc_name, zc->zc_value,
3122             zc->zc_defer_destroy));
3123 }
3124
3125 /*
3126  * inputs:
3127  * zc_name              name of dataset to destroy
3128  * zc_objset_type       type of objset
3129  * zc_defer_destroy     mark for deferred destroy
3130  *
3131  * outputs:             none
3132  */
3133 static int
3134 zfs_ioc_destroy(zfs_cmd_t *zc)
3135 {
3136         int err;
3137         if (strchr(zc->zc_name, '@') && zc->zc_objset_type == DMU_OST_ZFS) {
3138                 err = zfs_unmount_snap(zc->zc_name, NULL);
3139                 if (err)
3140                         return (err);
3141         }
3142
3143         err = dmu_objset_destroy(zc->zc_name, zc->zc_defer_destroy);
3144         if (zc->zc_objset_type == DMU_OST_ZVOL && err == 0)
3145                 (void) zvol_remove_minor(zc->zc_name);
3146         return (err);
3147 }
3148
3149 /*
3150  * inputs:
3151  * zc_name      name of dataset to rollback (to most recent snapshot)
3152  *
3153  * outputs:     none
3154  */
3155 static int
3156 zfs_ioc_rollback(zfs_cmd_t *zc)
3157 {
3158         dsl_dataset_t *ds, *clone;
3159         int error;
3160         zfsvfs_t *zfsvfs;
3161         char *clone_name;
3162
3163         error = dsl_dataset_hold(zc->zc_name, FTAG, &ds);
3164         if (error)
3165                 return (error);
3166
3167         /* must not be a snapshot */
3168         if (dsl_dataset_is_snapshot(ds)) {
3169                 dsl_dataset_rele(ds, FTAG);
3170                 return (EINVAL);
3171         }
3172
3173         /* must have a most recent snapshot */
3174         if (ds->ds_phys->ds_prev_snap_txg < TXG_INITIAL) {
3175                 dsl_dataset_rele(ds, FTAG);
3176                 return (EINVAL);
3177         }
3178
3179         /*
3180          * Create clone of most recent snapshot.
3181          */
3182         clone_name = kmem_asprintf("%s/%%rollback", zc->zc_name);
3183         error = dmu_objset_clone(clone_name, ds->ds_prev, DS_FLAG_INCONSISTENT);
3184         if (error)
3185                 goto out;
3186
3187         error = dsl_dataset_own(clone_name, B_TRUE, FTAG, &clone);
3188         if (error)
3189                 goto out;
3190
3191         /*
3192          * Do clone swap.
3193          */
3194         if (getzfsvfs(zc->zc_name, &zfsvfs) == 0) {
3195                 error = zfs_suspend_fs(zfsvfs);
3196                 if (error == 0) {
3197                         int resume_err;
3198
3199                         if (dsl_dataset_tryown(ds, B_FALSE, FTAG)) {
3200                                 error = dsl_dataset_clone_swap(clone, ds,
3201                                     B_TRUE);
3202                                 dsl_dataset_disown(ds, FTAG);
3203                                 ds = NULL;
3204                         } else {
3205                                 error = EBUSY;
3206                         }
3207                         resume_err = zfs_resume_fs(zfsvfs, zc->zc_name);
3208                         error = error ? error : resume_err;
3209                 }
3210                 VFS_RELE(zfsvfs->z_vfs);
3211         } else {
3212                 if (dsl_dataset_tryown(ds, B_FALSE, FTAG)) {
3213                         error = dsl_dataset_clone_swap(clone, ds, B_TRUE);
3214                         dsl_dataset_disown(ds, FTAG);
3215                         ds = NULL;
3216                 } else {
3217                         error = EBUSY;
3218                 }
3219         }
3220
3221         /*
3222          * Destroy clone (which also closes it).
3223          */
3224         (void) dsl_dataset_destroy(clone, FTAG, B_FALSE);
3225
3226 out:
3227         strfree(clone_name);
3228         if (ds)
3229                 dsl_dataset_rele(ds, FTAG);
3230         return (error);
3231 }
3232
3233 /*
3234  * inputs:
3235  * zc_name      old name of dataset
3236  * zc_value     new name of dataset
3237  * zc_cookie    recursive flag (only valid for snapshots)
3238  *
3239  * outputs:     none
3240  */
3241 static int
3242 zfs_ioc_rename(zfs_cmd_t *zc)
3243 {
3244         boolean_t recursive = zc->zc_cookie & 1;
3245
3246         zc->zc_value[sizeof (zc->zc_value) - 1] = '\0';
3247         if (dataset_namecheck(zc->zc_value, NULL, NULL) != 0 ||
3248             strchr(zc->zc_value, '%'))
3249                 return (EINVAL);
3250
3251         /*
3252          * Unmount snapshot unless we're doing a recursive rename,
3253          * in which case the dataset code figures out which snapshots
3254          * to unmount.
3255          */
3256         if (!recursive && strchr(zc->zc_name, '@') != NULL &&
3257             zc->zc_objset_type == DMU_OST_ZFS) {
3258                 int err = zfs_unmount_snap(zc->zc_name, NULL);
3259                 if (err)
3260                         return (err);
3261         }
3262         if (zc->zc_objset_type == DMU_OST_ZVOL)
3263                 (void) zvol_remove_minor(zc->zc_name);
3264         return (dmu_objset_rename(zc->zc_name, zc->zc_value, recursive));
3265 }
3266
3267 static int
3268 zfs_check_settable(const char *dsname, nvpair_t *pair, cred_t *cr)
3269 {
3270         const char *propname = nvpair_name(pair);
3271         boolean_t issnap = (strchr(dsname, '@') != NULL);
3272         zfs_prop_t prop = zfs_name_to_prop(propname);
3273         uint64_t intval;
3274         int err;
3275
3276         if (prop == ZPROP_INVAL) {
3277                 if (zfs_prop_user(propname)) {
3278                         if ((err = zfs_secpolicy_write_perms(dsname,
3279                             ZFS_DELEG_PERM_USERPROP, cr)))
3280                                 return (err);
3281                         return (0);
3282                 }
3283
3284                 if (!issnap && zfs_prop_userquota(propname)) {
3285                         const char *perm = NULL;
3286                         const char *uq_prefix =
3287                             zfs_userquota_prop_prefixes[ZFS_PROP_USERQUOTA];
3288                         const char *gq_prefix =
3289                             zfs_userquota_prop_prefixes[ZFS_PROP_GROUPQUOTA];
3290
3291                         if (strncmp(propname, uq_prefix,
3292                             strlen(uq_prefix)) == 0) {
3293                                 perm = ZFS_DELEG_PERM_USERQUOTA;
3294                         } else if (strncmp(propname, gq_prefix,
3295                             strlen(gq_prefix)) == 0) {
3296                                 perm = ZFS_DELEG_PERM_GROUPQUOTA;
3297                         } else {
3298                                 /* USERUSED and GROUPUSED are read-only */
3299                                 return (EINVAL);
3300                         }
3301
3302                         if ((err = zfs_secpolicy_write_perms(dsname, perm, cr)))
3303                                 return (err);
3304                         return (0);
3305                 }
3306
3307                 return (EINVAL);
3308         }
3309
3310         if (issnap)
3311                 return (EINVAL);
3312
3313         if (nvpair_type(pair) == DATA_TYPE_NVLIST) {
3314                 /*
3315                  * dsl_prop_get_all_impl() returns properties in this
3316                  * format.
3317                  */
3318                 nvlist_t *attrs;
3319                 VERIFY(nvpair_value_nvlist(pair, &attrs) == 0);
3320                 VERIFY(nvlist_lookup_nvpair(attrs, ZPROP_VALUE,
3321                     &pair) == 0);
3322         }
3323
3324         /*
3325          * Check that this value is valid for this pool version
3326          */
3327         switch (prop) {
3328         case ZFS_PROP_COMPRESSION:
3329                 /*
3330                  * If the user specified gzip compression, make sure
3331                  * the SPA supports it. We ignore any errors here since
3332                  * we'll catch them later.
3333                  */
3334                 if (nvpair_type(pair) == DATA_TYPE_UINT64 &&
3335                     nvpair_value_uint64(pair, &intval) == 0) {
3336                         if (intval >= ZIO_COMPRESS_GZIP_1 &&
3337                             intval <= ZIO_COMPRESS_GZIP_9 &&
3338                             zfs_earlier_version(dsname,
3339                             SPA_VERSION_GZIP_COMPRESSION)) {
3340                                 return (ENOTSUP);
3341                         }
3342
3343                         if (intval == ZIO_COMPRESS_ZLE &&
3344                             zfs_earlier_version(dsname,
3345                             SPA_VERSION_ZLE_COMPRESSION))
3346                                 return (ENOTSUP);
3347
3348                         /*
3349                          * If this is a bootable dataset then
3350                          * verify that the compression algorithm
3351                          * is supported for booting. We must return
3352                          * something other than ENOTSUP since it
3353                          * implies a downrev pool version.
3354                          */
3355                         if (zfs_is_bootfs(dsname) &&
3356                             !BOOTFS_COMPRESS_VALID(intval)) {
3357                                 return (ERANGE);
3358                         }
3359                 }
3360                 break;
3361
3362         case ZFS_PROP_COPIES:
3363                 if (zfs_earlier_version(dsname, SPA_VERSION_DITTO_BLOCKS))
3364                         return (ENOTSUP);
3365                 break;
3366
3367         case ZFS_PROP_DEDUP:
3368                 if (zfs_earlier_version(dsname, SPA_VERSION_DEDUP))
3369                         return (ENOTSUP);
3370                 break;
3371
3372         case ZFS_PROP_SHARESMB:
3373                 if (zpl_earlier_version(dsname, ZPL_VERSION_FUID))
3374                         return (ENOTSUP);
3375                 break;
3376
3377         case ZFS_PROP_ACLINHERIT:
3378                 if (nvpair_type(pair) == DATA_TYPE_UINT64 &&
3379                     nvpair_value_uint64(pair, &intval) == 0) {
3380                         if (intval == ZFS_ACL_PASSTHROUGH_X &&
3381                             zfs_earlier_version(dsname,
3382                             SPA_VERSION_PASSTHROUGH_X))
3383                                 return (ENOTSUP);
3384                 }
3385                 break;
3386         default:
3387                 break;
3388         }
3389
3390         return (zfs_secpolicy_setprop(dsname, prop, pair, CRED()));
3391 }
3392
3393 /*
3394  * Removes properties from the given props list that fail permission checks
3395  * needed to clear them and to restore them in case of a receive error. For each
3396  * property, make sure we have both set and inherit permissions.
3397  *
3398  * Returns the first error encountered if any permission checks fail. If the
3399  * caller provides a non-NULL errlist, it also gives the complete list of names
3400  * of all the properties that failed a permission check along with the
3401  * corresponding error numbers. The caller is responsible for freeing the
3402  * returned errlist.
3403  *
3404  * If every property checks out successfully, zero is returned and the list
3405  * pointed at by errlist is NULL.
3406  */
3407 static int
3408 zfs_check_clearable(char *dataset, nvlist_t *props, nvlist_t **errlist)
3409 {
3410         zfs_cmd_t *zc;
3411         nvpair_t *pair, *next_pair;
3412         nvlist_t *errors;
3413         int err, rv = 0;
3414
3415         if (props == NULL)
3416                 return (0);
3417
3418         VERIFY(nvlist_alloc(&errors, NV_UNIQUE_NAME, KM_SLEEP) == 0);
3419
3420         zc = kmem_alloc(sizeof (zfs_cmd_t), KM_SLEEP);
3421         (void) strcpy(zc->zc_name, dataset);
3422         pair = nvlist_next_nvpair(props, NULL);
3423         while (pair != NULL) {
3424                 next_pair = nvlist_next_nvpair(props, pair);
3425
3426                 (void) strcpy(zc->zc_value, nvpair_name(pair));
3427                 if ((err = zfs_check_settable(dataset, pair, CRED())) != 0 ||
3428                     (err = zfs_secpolicy_inherit(zc, CRED())) != 0) {
3429                         VERIFY(nvlist_remove_nvpair(props, pair) == 0);
3430                         VERIFY(nvlist_add_int32(errors,
3431                             zc->zc_value, err) == 0);
3432                 }
3433                 pair = next_pair;
3434         }
3435         kmem_free(zc, sizeof (zfs_cmd_t));
3436
3437         if ((pair = nvlist_next_nvpair(errors, NULL)) == NULL) {
3438                 nvlist_free(errors);
3439                 errors = NULL;
3440         } else {
3441                 VERIFY(nvpair_value_int32(pair, &rv) == 0);
3442         }
3443
3444         if (errlist == NULL)
3445                 nvlist_free(errors);
3446         else
3447                 *errlist = errors;
3448
3449         return (rv);
3450 }
3451
3452 static boolean_t
3453 propval_equals(nvpair_t *p1, nvpair_t *p2)
3454 {
3455         if (nvpair_type(p1) == DATA_TYPE_NVLIST) {
3456                 /* dsl_prop_get_all_impl() format */
3457                 nvlist_t *attrs;
3458                 VERIFY(nvpair_value_nvlist(p1, &attrs) == 0);
3459                 VERIFY(nvlist_lookup_nvpair(attrs, ZPROP_VALUE,
3460                     &p1) == 0);
3461         }
3462
3463         if (nvpair_type(p2) == DATA_TYPE_NVLIST) {
3464                 nvlist_t *attrs;
3465                 VERIFY(nvpair_value_nvlist(p2, &attrs) == 0);
3466                 VERIFY(nvlist_lookup_nvpair(attrs, ZPROP_VALUE,
3467                     &p2) == 0);
3468         }
3469
3470         if (nvpair_type(p1) != nvpair_type(p2))
3471                 return (B_FALSE);
3472
3473         if (nvpair_type(p1) == DATA_TYPE_STRING) {
3474                 char *valstr1, *valstr2;
3475
3476                 VERIFY(nvpair_value_string(p1, (char **)&valstr1) == 0);
3477                 VERIFY(nvpair_value_string(p2, (char **)&valstr2) == 0);
3478                 return (strcmp(valstr1, valstr2) == 0);
3479         } else {
3480                 uint64_t intval1, intval2;
3481
3482                 VERIFY(nvpair_value_uint64(p1, &intval1) == 0);
3483                 VERIFY(nvpair_value_uint64(p2, &intval2) == 0);
3484                 return (intval1 == intval2);
3485         }
3486 }
3487
3488 /*
3489  * Remove properties from props if they are not going to change (as determined
3490  * by comparison with origprops). Remove them from origprops as well, since we
3491  * do not need to clear or restore properties that won't change.
3492  */
3493 static void
3494 props_reduce(nvlist_t *props, nvlist_t *origprops)
3495 {
3496         nvpair_t *pair, *next_pair;
3497
3498         if (origprops == NULL)
3499                 return; /* all props need to be received */
3500
3501         pair = nvlist_next_nvpair(props, NULL);
3502         while (pair != NULL) {
3503                 const char *propname = nvpair_name(pair);
3504                 nvpair_t *match;
3505
3506                 next_pair = nvlist_next_nvpair(props, pair);
3507
3508                 if ((nvlist_lookup_nvpair(origprops, propname,
3509                     &match) != 0) || !propval_equals(pair, match))
3510                         goto next; /* need to set received value */
3511
3512                 /* don't clear the existing received value */
3513                 (void) nvlist_remove_nvpair(origprops, match);
3514                 /* don't bother receiving the property */
3515                 (void) nvlist_remove_nvpair(props, pair);
3516 next:
3517                 pair = next_pair;
3518         }
3519 }
3520
3521 #ifdef  DEBUG
3522 static boolean_t zfs_ioc_recv_inject_err;
3523 #endif
3524
3525 /*
3526  * inputs:
3527  * zc_name              name of containing filesystem
3528  * zc_nvlist_src{_size} nvlist of properties to apply
3529  * zc_value             name of snapshot to create
3530  * zc_string            name of clone origin (if DRR_FLAG_CLONE)
3531  * zc_cookie            file descriptor to recv from
3532  * zc_begin_record      the BEGIN record of the stream (not byteswapped)
3533  * zc_guid              force flag
3534  * zc_cleanup_fd        cleanup-on-exit file descriptor
3535  * zc_action_handle     handle for this guid/ds mapping (or zero on first call)
3536  *
3537  * outputs:
3538  * zc_cookie            number of bytes read
3539  * zc_nvlist_dst{_size} error for each unapplied received property
3540  * zc_obj               zprop_errflags_t
3541  * zc_action_handle     handle for this guid/ds mapping
3542  */
3543 static int
3544 zfs_ioc_recv(zfs_cmd_t *zc)
3545 {
3546         file_t *fp;
3547         objset_t *os;
3548         dmu_recv_cookie_t drc;
3549         boolean_t force = (boolean_t)zc->zc_guid;
3550         int fd;
3551         int error = 0;
3552         int props_error = 0;
3553         nvlist_t *errors;
3554         offset_t off;
3555         nvlist_t *props = NULL; /* sent properties */
3556         nvlist_t *origprops = NULL; /* existing properties */
3557         objset_t *origin = NULL;
3558         char *tosnap;
3559         char tofs[ZFS_MAXNAMELEN];
3560         boolean_t first_recvd_props = B_FALSE;
3561
3562         if (dataset_namecheck(zc->zc_value, NULL, NULL) != 0 ||
3563             strchr(zc->zc_value, '@') == NULL ||
3564             strchr(zc->zc_value, '%'))
3565                 return (EINVAL);
3566
3567         (void) strcpy(tofs, zc->zc_value);
3568         tosnap = strchr(tofs, '@');
3569         *tosnap++ = '\0';
3570
3571         if (zc->zc_nvlist_src != 0 &&
3572             (error = get_nvlist(zc->zc_nvlist_src, zc->zc_nvlist_src_size,
3573             zc->zc_iflags, &props)) != 0)
3574                 return (error);
3575
3576         fd = zc->zc_cookie;
3577         fp = getf(fd);
3578         if (fp == NULL) {
3579                 nvlist_free(props);
3580                 return (EBADF);
3581         }
3582
3583         VERIFY(nvlist_alloc(&errors, NV_UNIQUE_NAME, KM_SLEEP) == 0);
3584
3585         if (props && dmu_objset_hold(tofs, FTAG, &os) == 0) {
3586                 if ((spa_version(os->os_spa) >= SPA_VERSION_RECVD_PROPS) &&
3587                     !dsl_prop_get_hasrecvd(os)) {
3588                         first_recvd_props = B_TRUE;
3589                 }
3590
3591                 /*
3592                  * If new received properties are supplied, they are to
3593                  * completely replace the existing received properties, so stash
3594                  * away the existing ones.
3595                  */
3596                 if (dsl_prop_get_received(os, &origprops) == 0) {
3597                         nvlist_t *errlist = NULL;
3598                         /*
3599                          * Don't bother writing a property if its value won't
3600                          * change (and avoid the unnecessary security checks).
3601                          *
3602                          * The first receive after SPA_VERSION_RECVD_PROPS is a
3603                          * special case where we blow away all local properties
3604                          * regardless.
3605                          */
3606                         if (!first_recvd_props)
3607                                 props_reduce(props, origprops);
3608                         if (zfs_check_clearable(tofs, origprops,
3609                             &errlist) != 0)
3610                                 (void) nvlist_merge(errors, errlist, 0);
3611                         nvlist_free(errlist);
3612                 }
3613
3614                 dmu_objset_rele(os, FTAG);
3615         }
3616
3617         if (zc->zc_string[0]) {
3618                 error = dmu_objset_hold(zc->zc_string, FTAG, &origin);
3619                 if (error)
3620                         goto out;
3621         }
3622
3623         error = dmu_recv_begin(tofs, tosnap, zc->zc_top_ds,
3624             &zc->zc_begin_record, force, origin, &drc);
3625         if (origin)
3626                 dmu_objset_rele(origin, FTAG);
3627         if (error)
3628                 goto out;
3629
3630         /*
3631          * Set properties before we receive the stream so that they are applied
3632          * to the new data. Note that we must call dmu_recv_stream() if
3633          * dmu_recv_begin() succeeds.
3634          */
3635         if (props) {
3636                 nvlist_t *errlist;
3637
3638                 if (dmu_objset_from_ds(drc.drc_logical_ds, &os) == 0) {
3639                         if (drc.drc_newfs) {
3640                                 if (spa_version(os->os_spa) >=
3641                                     SPA_VERSION_RECVD_PROPS)
3642                                         first_recvd_props = B_TRUE;
3643                         } else if (origprops != NULL) {
3644                                 if (clear_received_props(os, tofs, origprops,
3645                                     first_recvd_props ? NULL : props) != 0)
3646                                         zc->zc_obj |= ZPROP_ERR_NOCLEAR;
3647                         } else {
3648                                 zc->zc_obj |= ZPROP_ERR_NOCLEAR;
3649                         }
3650                         dsl_prop_set_hasrecvd(os);
3651                 } else if (!drc.drc_newfs) {
3652                         zc->zc_obj |= ZPROP_ERR_NOCLEAR;
3653                 }
3654
3655                 (void) zfs_set_prop_nvlist(tofs, ZPROP_SRC_RECEIVED,
3656                     props, &errlist);
3657                 (void) nvlist_merge(errors, errlist, 0);
3658                 nvlist_free(errlist);
3659         }
3660
3661         if (fit_error_list(zc, &errors) != 0 || put_nvlist(zc, errors) != 0) {
3662                 /*
3663                  * Caller made zc->zc_nvlist_dst less than the minimum expected
3664                  * size or supplied an invalid address.
3665                  */
3666                 props_error = EINVAL;
3667         }
3668
3669         off = fp->f_offset;
3670         error = dmu_recv_stream(&drc, fp->f_vnode, &off, zc->zc_cleanup_fd,
3671             &zc->zc_action_handle);
3672
3673         if (error == 0) {
3674                 zfsvfs_t *zfsvfs = NULL;
3675
3676                 if (getzfsvfs(tofs, &zfsvfs) == 0) {
3677                         /* online recv */
3678                         int end_err;
3679
3680                         error = zfs_suspend_fs(zfsvfs);
3681                         /*
3682                          * If the suspend fails, then the recv_end will
3683                          * likely also fail, and clean up after itself.
3684                          */
3685                         end_err = dmu_recv_end(&drc);
3686                         if (error == 0)
3687                                 error = zfs_resume_fs(zfsvfs, tofs);
3688                         error = error ? error : end_err;
3689                         VFS_RELE(zfsvfs->z_vfs);
3690                 } else {
3691                         error = dmu_recv_end(&drc);
3692                 }
3693         }
3694
3695         zc->zc_cookie = off - fp->f_offset;
3696         if (VOP_SEEK(fp->f_vnode, fp->f_offset, &off, NULL) == 0)
3697                 fp->f_offset = off;
3698
3699 #ifdef  DEBUG
3700         if (zfs_ioc_recv_inject_err) {
3701                 zfs_ioc_recv_inject_err = B_FALSE;
3702                 error = 1;
3703         }
3704 #endif
3705         /*
3706          * On error, restore the original props.
3707          */
3708         if (error && props) {
3709                 if (dmu_objset_hold(tofs, FTAG, &os) == 0) {
3710                         if (clear_received_props(os, tofs, props, NULL) != 0) {
3711                                 /*
3712                                  * We failed to clear the received properties.
3713                                  * Since we may have left a $recvd value on the
3714                                  * system, we can't clear the $hasrecvd flag.
3715                                  */
3716                                 zc->zc_obj |= ZPROP_ERR_NORESTORE;
3717                         } else if (first_recvd_props) {
3718                                 dsl_prop_unset_hasrecvd(os);
3719                         }
3720                         dmu_objset_rele(os, FTAG);
3721                 } else if (!drc.drc_newfs) {
3722                         /* We failed to clear the received properties. */
3723                         zc->zc_obj |= ZPROP_ERR_NORESTORE;
3724                 }
3725
3726                 if (origprops == NULL && !drc.drc_newfs) {
3727                         /* We failed to stash the original properties. */
3728                         zc->zc_obj |= ZPROP_ERR_NORESTORE;
3729                 }
3730
3731                 /*
3732                  * dsl_props_set() will not convert RECEIVED to LOCAL on or
3733                  * after SPA_VERSION_RECVD_PROPS, so we need to specify LOCAL
3734                  * explictly if we're restoring local properties cleared in the
3735                  * first new-style receive.
3736                  */
3737                 if (origprops != NULL &&
3738                     zfs_set_prop_nvlist(tofs, (first_recvd_props ?
3739                     ZPROP_SRC_LOCAL : ZPROP_SRC_RECEIVED),
3740                     origprops, NULL) != 0) {
3741                         /*
3742                          * We stashed the original properties but failed to
3743                          * restore them.
3744                          */
3745                         zc->zc_obj |= ZPROP_ERR_NORESTORE;
3746                 }
3747         }
3748 out:
3749         nvlist_free(props);
3750         nvlist_free(origprops);
3751         nvlist_free(errors);
3752         releasef(fd);
3753
3754         if (error == 0)
3755                 error = props_error;
3756
3757         return (error);
3758 }
3759
3760 /*
3761  * inputs:
3762  * zc_name      name of snapshot to send
3763  * zc_cookie    file descriptor to send stream to
3764  * zc_obj       fromorigin flag (mutually exclusive with zc_fromobj)
3765  * zc_sendobj   objsetid of snapshot to send
3766  * zc_fromobj   objsetid of incremental fromsnap (may be zero)
3767  *
3768  * outputs: none
3769  */
3770 static int
3771 zfs_ioc_send(zfs_cmd_t *zc)
3772 {
3773         objset_t *fromsnap = NULL;
3774         objset_t *tosnap;
3775         file_t *fp;
3776         int error;
3777         offset_t off;
3778         dsl_dataset_t *ds;
3779         dsl_dataset_t *dsfrom = NULL;
3780         spa_t *spa;
3781         dsl_pool_t *dp;
3782
3783         error = spa_open(zc->zc_name, &spa, FTAG);
3784         if (error)
3785                 return (error);
3786
3787         dp = spa_get_dsl(spa);
3788         rw_enter(&dp->dp_config_rwlock, RW_READER);
3789         error = dsl_dataset_hold_obj(dp, zc->zc_sendobj, FTAG, &ds);
3790         rw_exit(&dp->dp_config_rwlock);
3791         if (error) {
3792                 spa_close(spa, FTAG);
3793                 return (error);
3794         }
3795
3796         error = dmu_objset_from_ds(ds, &tosnap);
3797         if (error) {
3798                 dsl_dataset_rele(ds, FTAG);
3799                 spa_close(spa, FTAG);
3800                 return (error);
3801         }
3802
3803         if (zc->zc_fromobj != 0) {
3804                 rw_enter(&dp->dp_config_rwlock, RW_READER);
3805                 error = dsl_dataset_hold_obj(dp, zc->zc_fromobj, FTAG, &dsfrom);
3806                 rw_exit(&dp->dp_config_rwlock);
3807                 spa_close(spa, FTAG);
3808                 if (error) {
3809                         dsl_dataset_rele(ds, FTAG);
3810                         return (error);
3811                 }
3812                 error = dmu_objset_from_ds(dsfrom, &fromsnap);
3813                 if (error) {
3814                         dsl_dataset_rele(dsfrom, FTAG);
3815                         dsl_dataset_rele(ds, FTAG);
3816                         return (error);
3817                 }
3818         } else {
3819                 spa_close(spa, FTAG);
3820         }
3821
3822         fp = getf(zc->zc_cookie);
3823         if (fp == NULL) {
3824                 dsl_dataset_rele(ds, FTAG);
3825                 if (dsfrom)
3826                         dsl_dataset_rele(dsfrom, FTAG);
3827                 return (EBADF);
3828         }
3829
3830         off = fp->f_offset;
3831         error = dmu_sendbackup(tosnap, fromsnap, zc->zc_obj, fp->f_vnode, &off);
3832
3833         if (VOP_SEEK(fp->f_vnode, fp->f_offset, &off, NULL) == 0)
3834                 fp->f_offset = off;
3835         releasef(zc->zc_cookie);
3836         if (dsfrom)
3837                 dsl_dataset_rele(dsfrom, FTAG);
3838         dsl_dataset_rele(ds, FTAG);
3839         return (error);
3840 }
3841
3842 static int
3843 zfs_ioc_inject_fault(zfs_cmd_t *zc)
3844 {
3845         int id, error;
3846
3847         error = zio_inject_fault(zc->zc_name, (int)zc->zc_guid, &id,
3848             &zc->zc_inject_record);
3849
3850         if (error == 0)
3851                 zc->zc_guid = (uint64_t)id;
3852
3853         return (error);
3854 }
3855
3856 static int
3857 zfs_ioc_clear_fault(zfs_cmd_t *zc)
3858 {
3859         return (zio_clear_fault((int)zc->zc_guid));
3860 }
3861
3862 static int
3863 zfs_ioc_inject_list_next(zfs_cmd_t *zc)
3864 {
3865         int id = (int)zc->zc_guid;
3866         int error;
3867
3868         error = zio_inject_list_next(&id, zc->zc_name, sizeof (zc->zc_name),
3869             &zc->zc_inject_record);
3870
3871         zc->zc_guid = id;
3872
3873         return (error);
3874 }
3875
3876 static int
3877 zfs_ioc_error_log(zfs_cmd_t *zc)
3878 {
3879         spa_t *spa;
3880         int error;
3881         size_t count = (size_t)zc->zc_nvlist_dst_size;
3882
3883         if ((error = spa_open(zc->zc_name, &spa, FTAG)) != 0)
3884                 return (error);
3885
3886         error = spa_get_errlog(spa, (void *)(uintptr_t)zc->zc_nvlist_dst,
3887             &count);
3888         if (error == 0)
3889                 zc->zc_nvlist_dst_size = count;
3890         else
3891                 zc->zc_nvlist_dst_size = spa_get_errlog_size(spa);
3892
3893         spa_close(spa, FTAG);
3894
3895         return (error);
3896 }
3897
3898 static int
3899 zfs_ioc_clear(zfs_cmd_t *zc)
3900 {
3901         spa_t *spa;
3902         vdev_t *vd;
3903         int error;
3904
3905         /*
3906          * On zpool clear we also fix up missing slogs
3907          */
3908         mutex_enter(&spa_namespace_lock);
3909         spa = spa_lookup(zc->zc_name);
3910         if (spa == NULL) {
3911                 mutex_exit(&spa_namespace_lock);
3912                 return (EIO);
3913         }
3914         if (spa_get_log_state(spa) == SPA_LOG_MISSING) {
3915                 /* we need to let spa_open/spa_load clear the chains */
3916                 spa_set_log_state(spa, SPA_LOG_CLEAR);
3917         }
3918         spa->spa_last_open_failed = 0;
3919         mutex_exit(&spa_namespace_lock);
3920
3921         if (zc->zc_cookie & ZPOOL_NO_REWIND) {
3922                 error = spa_open(zc->zc_name, &spa, FTAG);
3923         } else {
3924                 nvlist_t *policy;
3925                 nvlist_t *config = NULL;
3926
3927                 if (zc->zc_nvlist_src == 0)
3928                         return (EINVAL);
3929
3930                 if ((error = get_nvlist(zc->zc_nvlist_src,
3931                     zc->zc_nvlist_src_size, zc->zc_iflags, &policy)) == 0) {
3932                         error = spa_open_rewind(zc->zc_name, &spa, FTAG,
3933                             policy, &config);
3934                         if (config != NULL) {
3935                                 int err;
3936
3937                                 if ((err = put_nvlist(zc, config)) != 0)
3938                                         error = err;
3939                                 nvlist_free(config);
3940                         }
3941                         nvlist_free(policy);
3942                 }
3943         }
3944
3945         if (error)
3946                 return (error);
3947
3948         spa_vdev_state_enter(spa, SCL_NONE);
3949
3950         if (zc->zc_guid == 0) {
3951                 vd = NULL;
3952         } else {
3953                 vd = spa_lookup_by_guid(spa, zc->zc_guid, B_TRUE);
3954                 if (vd == NULL) {
3955                         (void) spa_vdev_state_exit(spa, NULL, ENODEV);
3956                         spa_close(spa, FTAG);
3957                         return (ENODEV);
3958                 }
3959         }
3960
3961         vdev_clear(spa, vd);
3962
3963         (void) spa_vdev_state_exit(spa, NULL, 0);
3964
3965         /*
3966          * Resume any suspended I/Os.
3967          */
3968         if (zio_resume(spa) != 0)
3969                 error = EIO;
3970
3971         spa_close(spa, FTAG);
3972
3973         return (error);
3974 }
3975
3976 /*
3977  * inputs:
3978  * zc_name      name of filesystem
3979  * zc_value     name of origin snapshot
3980  *
3981  * outputs:
3982  * zc_string    name of conflicting snapshot, if there is one
3983  */
3984 static int
3985 zfs_ioc_promote(zfs_cmd_t *zc)
3986 {
3987         char *cp;
3988
3989         /*
3990          * We don't need to unmount *all* the origin fs's snapshots, but
3991          * it's easier.
3992          */
3993         cp = strchr(zc->zc_value, '@');
3994         if (cp)
3995                 *cp = '\0';
3996         (void) dmu_objset_find(zc->zc_value,
3997             zfs_unmount_snap, NULL, DS_FIND_SNAPSHOTS);
3998         return (dsl_dataset_promote(zc->zc_name, zc->zc_string));
3999 }
4000
4001 /*
4002  * Retrieve a single {user|group}{used|quota}@... property.
4003  *
4004  * inputs:
4005  * zc_name      name of filesystem
4006  * zc_objset_type zfs_userquota_prop_t
4007  * zc_value     domain name (eg. "S-1-234-567-89")
4008  * zc_guid      RID/UID/GID
4009  *
4010  * outputs:
4011  * zc_cookie    property value
4012  */
4013 static int
4014 zfs_ioc_userspace_one(zfs_cmd_t *zc)
4015 {
4016         zfsvfs_t *zfsvfs;
4017         int error;
4018
4019         if (zc->zc_objset_type >= ZFS_NUM_USERQUOTA_PROPS)
4020                 return (EINVAL);
4021
4022         error = zfsvfs_hold(zc->zc_name, FTAG, &zfsvfs, B_FALSE);
4023         if (error)
4024                 return (error);
4025
4026         error = zfs_userspace_one(zfsvfs,
4027             zc->zc_objset_type, zc->zc_value, zc->zc_guid, &zc->zc_cookie);
4028         zfsvfs_rele(zfsvfs, FTAG);
4029
4030         return (error);
4031 }
4032
4033 /*
4034  * inputs:
4035  * zc_name              name of filesystem
4036  * zc_cookie            zap cursor
4037  * zc_objset_type       zfs_userquota_prop_t
4038  * zc_nvlist_dst[_size] buffer to fill (not really an nvlist)
4039  *
4040  * outputs:
4041  * zc_nvlist_dst[_size] data buffer (array of zfs_useracct_t)
4042  * zc_cookie    zap cursor
4043  */
4044 static int
4045 zfs_ioc_userspace_many(zfs_cmd_t *zc)
4046 {
4047         zfsvfs_t *zfsvfs;
4048         int bufsize = zc->zc_nvlist_dst_size;
4049
4050         if (bufsize <= 0)
4051                 return (ENOMEM);
4052
4053         int error = zfsvfs_hold(zc->zc_name, FTAG, &zfsvfs, B_FALSE);
4054         if (error)
4055                 return (error);
4056
4057         void *buf = kmem_alloc(bufsize, KM_SLEEP);
4058
4059         error = zfs_userspace_many(zfsvfs, zc->zc_objset_type, &zc->zc_cookie,
4060             buf, &zc->zc_nvlist_dst_size);
4061
4062         if (error == 0) {
4063                 error = xcopyout(buf,
4064                     (void *)(uintptr_t)zc->zc_nvlist_dst,
4065                     zc->zc_nvlist_dst_size);
4066         }
4067         kmem_free(buf, bufsize);
4068         zfsvfs_rele(zfsvfs, FTAG);
4069
4070         return (error);
4071 }
4072
4073 /*
4074  * inputs:
4075  * zc_name              name of filesystem
4076  *
4077  * outputs:
4078  * none
4079  */
4080 static int
4081 zfs_ioc_userspace_upgrade(zfs_cmd_t *zc)
4082 {
4083         objset_t *os;
4084         int error = 0;
4085         zfsvfs_t *zfsvfs;
4086
4087         if (getzfsvfs(zc->zc_name, &zfsvfs) == 0) {
4088                 if (!dmu_objset_userused_enabled(zfsvfs->z_os)) {
4089                         /*
4090                          * If userused is not enabled, it may be because the
4091                          * objset needs to be closed & reopened (to grow the
4092                          * objset_phys_t).  Suspend/resume the fs will do that.
4093                          */
4094                         error = zfs_suspend_fs(zfsvfs);
4095                         if (error == 0)
4096                                 error = zfs_resume_fs(zfsvfs, zc->zc_name);
4097                 }
4098                 if (error == 0)
4099                         error = dmu_objset_userspace_upgrade(zfsvfs->z_os);
4100                 VFS_RELE(zfsvfs->z_vfs);
4101         } else {
4102                 /* XXX kind of reading contents without owning */
4103                 error = dmu_objset_hold(zc->zc_name, FTAG, &os);
4104                 if (error)
4105                         return (error);
4106
4107                 error = dmu_objset_userspace_upgrade(os);
4108                 dmu_objset_rele(os, FTAG);
4109         }
4110
4111         return (error);
4112 }
4113
4114 /*
4115  * We don't want to have a hard dependency
4116  * against some special symbols in sharefs
4117  * nfs, and smbsrv.  Determine them if needed when
4118  * the first file system is shared.
4119  * Neither sharefs, nfs or smbsrv are unloadable modules.
4120  */
4121 int (*znfsexport_fs)(void *arg);
4122 int (*zshare_fs)(enum sharefs_sys_op, share_t *, uint32_t);
4123 int (*zsmbexport_fs)(void *arg, boolean_t add_share);
4124
4125 int zfs_nfsshare_inited;
4126 int zfs_smbshare_inited;
4127
4128 ddi_modhandle_t nfs_mod;
4129 ddi_modhandle_t sharefs_mod;
4130 ddi_modhandle_t smbsrv_mod;
4131 kmutex_t zfs_share_lock;
4132
4133 static int
4134 zfs_init_sharefs()
4135 {
4136         int error;
4137
4138         ASSERT(MUTEX_HELD(&zfs_share_lock));
4139         /* Both NFS and SMB shares also require sharetab support. */
4140         if (sharefs_mod == NULL && ((sharefs_mod =
4141             ddi_modopen("fs/sharefs",
4142             KRTLD_MODE_FIRST, &error)) == NULL)) {
4143                 return (ENOSYS);
4144         }
4145         if (zshare_fs == NULL && ((zshare_fs =
4146             (int (*)(enum sharefs_sys_op, share_t *, uint32_t))
4147             ddi_modsym(sharefs_mod, "sharefs_impl", &error)) == NULL)) {
4148                 return (ENOSYS);
4149         }
4150         return (0);
4151 }
4152
4153 static int
4154 zfs_ioc_share(zfs_cmd_t *zc)
4155 {
4156         int error;
4157         int opcode;
4158
4159         switch (zc->zc_share.z_sharetype) {
4160         case ZFS_SHARE_NFS:
4161         case ZFS_UNSHARE_NFS:
4162                 if (zfs_nfsshare_inited == 0) {
4163                         mutex_enter(&zfs_share_lock);
4164                         if (nfs_mod == NULL && ((nfs_mod = ddi_modopen("fs/nfs",
4165                             KRTLD_MODE_FIRST, &error)) == NULL)) {
4166                                 mutex_exit(&zfs_share_lock);
4167                                 return (ENOSYS);
4168                         }
4169                         if (znfsexport_fs == NULL &&
4170                             ((znfsexport_fs = (int (*)(void *))
4171                             ddi_modsym(nfs_mod,
4172                             "nfs_export", &error)) == NULL)) {
4173                                 mutex_exit(&zfs_share_lock);
4174                                 return (ENOSYS);
4175                         }
4176                         error = zfs_init_sharefs();
4177                         if (error) {
4178                                 mutex_exit(&zfs_share_lock);
4179                                 return (ENOSYS);
4180                         }
4181                         zfs_nfsshare_inited = 1;
4182                         mutex_exit(&zfs_share_lock);
4183                 }
4184                 break;
4185         case ZFS_SHARE_SMB:
4186         case ZFS_UNSHARE_SMB:
4187                 if (zfs_smbshare_inited == 0) {
4188                         mutex_enter(&zfs_share_lock);
4189                         if (smbsrv_mod == NULL && ((smbsrv_mod =
4190                             ddi_modopen("drv/smbsrv",
4191                             KRTLD_MODE_FIRST, &error)) == NULL)) {
4192                                 mutex_exit(&zfs_share_lock);
4193                                 return (ENOSYS);
4194                         }
4195                         if (zsmbexport_fs == NULL && ((zsmbexport_fs =
4196                             (int (*)(void *, boolean_t))ddi_modsym(smbsrv_mod,
4197                             "smb_server_share", &error)) == NULL)) {
4198                                 mutex_exit(&zfs_share_lock);
4199                                 return (ENOSYS);
4200                         }
4201                         error = zfs_init_sharefs();
4202                         if (error) {
4203                                 mutex_exit(&zfs_share_lock);
4204                                 return (ENOSYS);
4205                         }
4206                         zfs_smbshare_inited = 1;
4207                         mutex_exit(&zfs_share_lock);
4208                 }
4209                 break;
4210         default:
4211                 return (EINVAL);
4212         }
4213
4214         switch (zc->zc_share.z_sharetype) {
4215         case ZFS_SHARE_NFS:
4216         case ZFS_UNSHARE_NFS:
4217                 if (error =
4218                     znfsexport_fs((void *)
4219                     (uintptr_t)zc->zc_share.z_exportdata))
4220                         return (error);
4221                 break;
4222         case ZFS_SHARE_SMB:
4223         case ZFS_UNSHARE_SMB:
4224                 if (error = zsmbexport_fs((void *)
4225                     (uintptr_t)zc->zc_share.z_exportdata,
4226                     zc->zc_share.z_sharetype == ZFS_SHARE_SMB ?
4227                     B_TRUE: B_FALSE)) {
4228                         return (error);
4229                 }
4230                 break;
4231         }
4232
4233         opcode = (zc->zc_share.z_sharetype == ZFS_SHARE_NFS ||
4234             zc->zc_share.z_sharetype == ZFS_SHARE_SMB) ?
4235             SHAREFS_ADD : SHAREFS_REMOVE;
4236
4237         /*
4238          * Add or remove share from sharetab
4239          */
4240         error = zshare_fs(opcode,
4241             (void *)(uintptr_t)zc->zc_share.z_sharedata,
4242             zc->zc_share.z_sharemax);
4243
4244         return (error);
4245
4246 }
4247
4248 ace_t full_access[] = {
4249         {(uid_t)-1, ACE_ALL_PERMS, ACE_EVERYONE, 0}
4250 };
4251
4252 /*
4253  * inputs:
4254  * zc_name              name of containing filesystem
4255  * zc_obj               object # beyond which we want next in-use object #
4256  *
4257  * outputs:
4258  * zc_obj               next in-use object #
4259  */
4260 static int
4261 zfs_ioc_next_obj(zfs_cmd_t *zc)
4262 {
4263         objset_t *os = NULL;
4264         int error;
4265
4266         error = dmu_objset_hold(zc->zc_name, FTAG, &os);
4267         if (error)
4268                 return (error);
4269
4270         error = dmu_object_next(os, &zc->zc_obj, B_FALSE,
4271             os->os_dsl_dataset->ds_phys->ds_prev_snap_txg);
4272
4273         dmu_objset_rele(os, FTAG);
4274         return (error);
4275 }
4276
4277 /*
4278  * inputs:
4279  * zc_name              name of filesystem
4280  * zc_value             prefix name for snapshot
4281  * zc_cleanup_fd        cleanup-on-exit file descriptor for calling process
4282  *
4283  * outputs:
4284  */
4285 static int
4286 zfs_ioc_tmp_snapshot(zfs_cmd_t *zc)
4287 {
4288         char *snap_name;
4289         int error;
4290
4291         snap_name = kmem_asprintf("%s-%016llx", zc->zc_value,
4292             (u_longlong_t)ddi_get_lbolt64());
4293
4294         if (strlen(snap_name) >= MAXNAMELEN) {
4295                 strfree(snap_name);
4296                 return (E2BIG);
4297         }
4298
4299         error = dmu_objset_snapshot(zc->zc_name, snap_name, snap_name,
4300             NULL, B_FALSE, B_TRUE, zc->zc_cleanup_fd);
4301         if (error != 0) {
4302                 strfree(snap_name);
4303                 return (error);
4304         }
4305
4306         (void) strcpy(zc->zc_value, snap_name);
4307         strfree(snap_name);
4308         return (0);
4309 }
4310
4311 /*
4312  * inputs:
4313  * zc_name              name of "to" snapshot
4314  * zc_value             name of "from" snapshot
4315  * zc_cookie            file descriptor to write diff data on
4316  *
4317  * outputs:
4318  * dmu_diff_record_t's to the file descriptor
4319  */
4320 static int
4321 zfs_ioc_diff(zfs_cmd_t *zc)
4322 {
4323         objset_t *fromsnap;
4324         objset_t *tosnap;
4325         file_t *fp;
4326         offset_t off;
4327         int error;
4328
4329         error = dmu_objset_hold(zc->zc_name, FTAG, &tosnap);
4330         if (error)
4331                 return (error);
4332
4333         error = dmu_objset_hold(zc->zc_value, FTAG, &fromsnap);
4334         if (error) {
4335                 dmu_objset_rele(tosnap, FTAG);
4336                 return (error);
4337         }
4338
4339         fp = getf(zc->zc_cookie);
4340         if (fp == NULL) {
4341                 dmu_objset_rele(fromsnap, FTAG);
4342                 dmu_objset_rele(tosnap, FTAG);
4343                 return (EBADF);
4344         }
4345
4346         off = fp->f_offset;
4347
4348         error = dmu_diff(tosnap, fromsnap, fp->f_vnode, &off);
4349
4350         if (VOP_SEEK(fp->f_vnode, fp->f_offset, &off, NULL) == 0)
4351                 fp->f_offset = off;
4352         releasef(zc->zc_cookie);
4353
4354         dmu_objset_rele(fromsnap, FTAG);
4355         dmu_objset_rele(tosnap, FTAG);
4356         return (error);
4357 }
4358
4359 /*
4360  * Remove all ACL files in shares dir
4361  */
4362 static int
4363 zfs_smb_acl_purge(znode_t *dzp)
4364 {
4365         zap_cursor_t    zc;
4366         zap_attribute_t zap;
4367         zfsvfs_t *zfsvfs = dzp->z_zfsvfs;
4368         int error;
4369
4370         for (zap_cursor_init(&zc, zfsvfs->z_os, dzp->z_id);
4371             (error = zap_cursor_retrieve(&zc, &zap)) == 0;
4372             zap_cursor_advance(&zc)) {
4373                 if ((error = VOP_REMOVE(ZTOV(dzp), zap.za_name, kcred,
4374                     NULL, 0)) != 0)
4375                         break;
4376         }
4377         zap_cursor_fini(&zc);
4378         return (error);
4379 }
4380
4381 static int
4382 zfs_ioc_smb_acl(zfs_cmd_t *zc)
4383 {
4384         vnode_t *vp;
4385         znode_t *dzp;
4386         vnode_t *resourcevp = NULL;
4387         znode_t *sharedir;
4388         zfsvfs_t *zfsvfs;
4389         nvlist_t *nvlist;
4390         char *src, *target;
4391         vattr_t vattr;
4392         vsecattr_t vsec;
4393         int error = 0;
4394
4395         if ((error = lookupname(zc->zc_value, UIO_SYSSPACE,
4396             NO_FOLLOW, NULL, &vp)) != 0)
4397                 return (error);
4398
4399         /* Now make sure mntpnt and dataset are ZFS */
4400
4401         if (vp->v_vfsp->vfs_fstype != zfsfstype ||
4402             (strcmp((char *)refstr_value(vp->v_vfsp->vfs_resource),
4403             zc->zc_name) != 0)) {
4404                 VN_RELE(vp);
4405                 return (EINVAL);
4406         }
4407
4408         dzp = VTOZ(vp);
4409         zfsvfs = dzp->z_zfsvfs;
4410         ZFS_ENTER(zfsvfs);
4411
4412         /*
4413          * Create share dir if its missing.
4414          */
4415         mutex_enter(&zfsvfs->z_lock);
4416         if (zfsvfs->z_shares_dir == 0) {
4417                 dmu_tx_t *tx;
4418
4419                 tx = dmu_tx_create(zfsvfs->z_os);
4420                 dmu_tx_hold_zap(tx, MASTER_NODE_OBJ, TRUE,
4421                     ZFS_SHARES_DIR);
4422                 dmu_tx_hold_zap(tx, DMU_NEW_OBJECT, FALSE, NULL);
4423                 error = dmu_tx_assign(tx, TXG_WAIT);
4424                 if (error) {
4425                         dmu_tx_abort(tx);
4426                 } else {
4427                         error = zfs_create_share_dir(zfsvfs, tx);
4428                         dmu_tx_commit(tx);
4429                 }
4430                 if (error) {
4431                         mutex_exit(&zfsvfs->z_lock);
4432                         VN_RELE(vp);
4433                         ZFS_EXIT(zfsvfs);
4434                         return (error);
4435                 }
4436         }
4437         mutex_exit(&zfsvfs->z_lock);
4438
4439         ASSERT(zfsvfs->z_shares_dir);
4440         if ((error = zfs_zget(zfsvfs, zfsvfs->z_shares_dir, &sharedir)) != 0) {
4441                 VN_RELE(vp);
4442                 ZFS_EXIT(zfsvfs);
4443                 return (error);
4444         }
4445
4446         switch (zc->zc_cookie) {
4447         case ZFS_SMB_ACL_ADD:
4448                 vattr.va_mask = AT_MODE|AT_UID|AT_GID|AT_TYPE;
4449                 vattr.va_type = VREG;
4450                 vattr.va_mode = S_IFREG|0777;
4451                 vattr.va_uid = 0;
4452                 vattr.va_gid = 0;
4453
4454                 vsec.vsa_mask = VSA_ACE;
4455                 vsec.vsa_aclentp = &full_access;
4456                 vsec.vsa_aclentsz = sizeof (full_access);
4457                 vsec.vsa_aclcnt = 1;
4458
4459                 error = VOP_CREATE(ZTOV(sharedir), zc->zc_string,
4460                     &vattr, EXCL, 0, &resourcevp, kcred, 0, NULL, &vsec);
4461                 if (resourcevp)
4462                         VN_RELE(resourcevp);
4463                 break;
4464
4465         case ZFS_SMB_ACL_REMOVE:
4466                 error = VOP_REMOVE(ZTOV(sharedir), zc->zc_string, kcred,
4467                     NULL, 0);
4468                 break;
4469
4470         case ZFS_SMB_ACL_RENAME:
4471                 if ((error = get_nvlist(zc->zc_nvlist_src,
4472                     zc->zc_nvlist_src_size, zc->zc_iflags, &nvlist)) != 0) {
4473                         VN_RELE(vp);
4474                         ZFS_EXIT(zfsvfs);
4475                         return (error);
4476                 }
4477                 if (nvlist_lookup_string(nvlist, ZFS_SMB_ACL_SRC, &src) ||
4478                     nvlist_lookup_string(nvlist, ZFS_SMB_ACL_TARGET,
4479                     &target)) {
4480                         VN_RELE(vp);
4481                         VN_RELE(ZTOV(sharedir));
4482                         ZFS_EXIT(zfsvfs);
4483                         nvlist_free(nvlist);
4484                         return (error);
4485                 }
4486                 error = VOP_RENAME(ZTOV(sharedir), src, ZTOV(sharedir), target,
4487                     kcred, NULL, 0);
4488                 nvlist_free(nvlist);
4489                 break;
4490
4491         case ZFS_SMB_ACL_PURGE:
4492                 error = zfs_smb_acl_purge(sharedir);
4493                 break;
4494
4495         default:
4496                 error = EINVAL;
4497                 break;
4498         }
4499
4500         VN_RELE(vp);
4501         VN_RELE(ZTOV(sharedir));
4502
4503         ZFS_EXIT(zfsvfs);
4504
4505         return (error);
4506 }
4507
4508 /*
4509  * inputs:
4510  * zc_name              name of filesystem
4511  * zc_value             short name of snap
4512  * zc_string            user-supplied tag for this hold
4513  * zc_cookie            recursive flag
4514  * zc_temphold          set if hold is temporary
4515  * zc_cleanup_fd        cleanup-on-exit file descriptor for calling process
4516  * zc_sendobj           if non-zero, the objid for zc_name@zc_value
4517  * zc_createtxg         if zc_sendobj is non-zero, snap must have zc_createtxg
4518  *
4519  * outputs:             none
4520  */
4521 static int
4522 zfs_ioc_hold(zfs_cmd_t *zc)
4523 {
4524         boolean_t recursive = zc->zc_cookie;
4525         spa_t *spa;
4526         dsl_pool_t *dp;
4527         dsl_dataset_t *ds;
4528         int error;
4529         minor_t minor = 0;
4530
4531         if (snapshot_namecheck(zc->zc_value, NULL, NULL) != 0)
4532                 return (EINVAL);
4533
4534         if (zc->zc_sendobj == 0) {
4535                 return (dsl_dataset_user_hold(zc->zc_name, zc->zc_value,
4536                     zc->zc_string, recursive, zc->zc_temphold,
4537                     zc->zc_cleanup_fd));
4538         }
4539
4540         if (recursive)
4541                 return (EINVAL);
4542
4543         error = spa_open(zc->zc_name, &spa, FTAG);
4544         if (error)
4545                 return (error);
4546
4547         dp = spa_get_dsl(spa);
4548         rw_enter(&dp->dp_config_rwlock, RW_READER);
4549         error = dsl_dataset_hold_obj(dp, zc->zc_sendobj, FTAG, &ds);
4550         rw_exit(&dp->dp_config_rwlock);
4551         spa_close(spa, FTAG);
4552         if (error)
4553                 return (error);
4554
4555         /*
4556          * Until we have a hold on this snapshot, it's possible that
4557          * zc_sendobj could've been destroyed and reused as part
4558          * of a later txg.  Make sure we're looking at the right object.
4559          */
4560         if (zc->zc_createtxg != ds->ds_phys->ds_creation_txg) {
4561                 dsl_dataset_rele(ds, FTAG);
4562                 return (ENOENT);
4563         }
4564
4565         if (zc->zc_cleanup_fd != -1 && zc->zc_temphold) {
4566                 error = zfs_onexit_fd_hold(zc->zc_cleanup_fd, &minor);
4567                 if (error) {
4568                         dsl_dataset_rele(ds, FTAG);
4569                         return (error);
4570                 }
4571         }
4572
4573         error = dsl_dataset_user_hold_for_send(ds, zc->zc_string,
4574             zc->zc_temphold);
4575         if (minor != 0) {
4576                 if (error == 0) {
4577                         dsl_register_onexit_hold_cleanup(ds, zc->zc_string,
4578                             minor);
4579                 }
4580                 zfs_onexit_fd_rele(zc->zc_cleanup_fd);
4581         }
4582         dsl_dataset_rele(ds, FTAG);
4583
4584         return (error);
4585 }
4586
4587 /*
4588  * inputs:
4589  * zc_name      name of dataset from which we're releasing a user hold
4590  * zc_value     short name of snap
4591  * zc_string    user-supplied tag for this hold
4592  * zc_cookie    recursive flag
4593  *
4594  * outputs:     none
4595  */
4596 static int
4597 zfs_ioc_release(zfs_cmd_t *zc)
4598 {
4599         boolean_t recursive = zc->zc_cookie;
4600
4601         if (snapshot_namecheck(zc->zc_value, NULL, NULL) != 0)
4602                 return (EINVAL);
4603
4604         return (dsl_dataset_user_release(zc->zc_name, zc->zc_value,
4605             zc->zc_string, recursive));
4606 }
4607
4608 /*
4609  * inputs:
4610  * zc_name              name of filesystem
4611  *
4612  * outputs:
4613  * zc_nvlist_src{_size} nvlist of snapshot holds
4614  */
4615 static int
4616 zfs_ioc_get_holds(zfs_cmd_t *zc)
4617 {
4618         nvlist_t *nvp;
4619         int error;
4620
4621         if ((error = dsl_dataset_get_holds(zc->zc_name, &nvp)) == 0) {
4622                 error = put_nvlist(zc, nvp);
4623                 nvlist_free(nvp);
4624         }
4625
4626         return (error);
4627 }
4628
4629 /*
4630  * pool create, destroy, and export don't log the history as part of
4631  * zfsdev_ioctl, but rather zfs_ioc_pool_create, and zfs_ioc_pool_export
4632  * do the logging of those commands.
4633  */
4634 static zfs_ioc_vec_t zfs_ioc_vec[] = {
4635         { zfs_ioc_pool_create, zfs_secpolicy_config, POOL_NAME, B_FALSE,
4636             POOL_CHECK_NONE },
4637         { zfs_ioc_pool_destroy, zfs_secpolicy_config, POOL_NAME, B_FALSE,
4638             POOL_CHECK_NONE },
4639         { zfs_ioc_pool_import, zfs_secpolicy_config, POOL_NAME, B_TRUE,
4640             POOL_CHECK_NONE },
4641         { zfs_ioc_pool_export, zfs_secpolicy_config, POOL_NAME, B_FALSE,
4642             POOL_CHECK_NONE },
4643         { zfs_ioc_pool_configs, zfs_secpolicy_none, NO_NAME, B_FALSE,
4644             POOL_CHECK_NONE },
4645         { zfs_ioc_pool_stats, zfs_secpolicy_read, POOL_NAME, B_FALSE,
4646             POOL_CHECK_NONE },
4647         { zfs_ioc_pool_tryimport, zfs_secpolicy_config, NO_NAME, B_FALSE,
4648             POOL_CHECK_NONE },
4649         { zfs_ioc_pool_scan, zfs_secpolicy_config, POOL_NAME, B_TRUE,
4650             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4651         { zfs_ioc_pool_freeze, zfs_secpolicy_config, NO_NAME, B_FALSE,
4652             POOL_CHECK_READONLY },
4653         { zfs_ioc_pool_upgrade, zfs_secpolicy_config, POOL_NAME, B_TRUE,
4654             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4655         { zfs_ioc_pool_get_history, zfs_secpolicy_config, POOL_NAME, B_FALSE,
4656             POOL_CHECK_NONE },
4657         { zfs_ioc_vdev_add, zfs_secpolicy_config, POOL_NAME, B_TRUE,
4658             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4659         { zfs_ioc_vdev_remove, zfs_secpolicy_config, POOL_NAME, B_TRUE,
4660             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4661         { zfs_ioc_vdev_set_state, zfs_secpolicy_config, POOL_NAME, B_TRUE,
4662             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4663         { zfs_ioc_vdev_attach, zfs_secpolicy_config, POOL_NAME, B_TRUE,
4664             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4665         { zfs_ioc_vdev_detach, zfs_secpolicy_config, POOL_NAME, B_TRUE,
4666             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4667         { zfs_ioc_vdev_setpath, zfs_secpolicy_config, POOL_NAME, B_FALSE,
4668             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4669         { zfs_ioc_vdev_setfru,  zfs_secpolicy_config, POOL_NAME, B_FALSE,
4670             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4671         { zfs_ioc_objset_stats, zfs_secpolicy_read, DATASET_NAME, B_FALSE,
4672             POOL_CHECK_SUSPENDED },
4673         { zfs_ioc_objset_zplprops, zfs_secpolicy_read, DATASET_NAME, B_FALSE,
4674             POOL_CHECK_NONE },
4675         { zfs_ioc_dataset_list_next, zfs_secpolicy_read, DATASET_NAME, B_FALSE,
4676             POOL_CHECK_SUSPENDED },
4677         { zfs_ioc_snapshot_list_next, zfs_secpolicy_read, DATASET_NAME, B_FALSE,
4678             POOL_CHECK_SUSPENDED },
4679         { zfs_ioc_set_prop, zfs_secpolicy_none, DATASET_NAME, B_TRUE,
4680             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4681         { zfs_ioc_create, zfs_secpolicy_create, DATASET_NAME, B_TRUE,
4682             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4683         { zfs_ioc_destroy, zfs_secpolicy_destroy, DATASET_NAME, B_TRUE,
4684             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4685         { zfs_ioc_rollback, zfs_secpolicy_rollback, DATASET_NAME, B_TRUE,
4686             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4687         { zfs_ioc_rename, zfs_secpolicy_rename, DATASET_NAME, B_TRUE,
4688             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4689         { zfs_ioc_recv, zfs_secpolicy_receive, DATASET_NAME, B_TRUE,
4690             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4691         { zfs_ioc_send, zfs_secpolicy_send, DATASET_NAME, B_TRUE,
4692             POOL_CHECK_NONE },
4693         { zfs_ioc_inject_fault, zfs_secpolicy_inject, NO_NAME, B_FALSE,
4694             POOL_CHECK_NONE },
4695         { zfs_ioc_clear_fault, zfs_secpolicy_inject, NO_NAME, B_FALSE,
4696             POOL_CHECK_NONE },
4697         { zfs_ioc_inject_list_next, zfs_secpolicy_inject, NO_NAME, B_FALSE,
4698             POOL_CHECK_NONE },
4699         { zfs_ioc_error_log, zfs_secpolicy_inject, POOL_NAME, B_FALSE,
4700             POOL_CHECK_NONE },
4701         { zfs_ioc_clear, zfs_secpolicy_config, POOL_NAME, B_TRUE,
4702             POOL_CHECK_NONE },
4703         { zfs_ioc_promote, zfs_secpolicy_promote, DATASET_NAME, B_TRUE,
4704             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4705         { zfs_ioc_destroy_snaps, zfs_secpolicy_destroy_snaps, DATASET_NAME,
4706             B_TRUE, POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4707         { zfs_ioc_snapshot, zfs_secpolicy_snapshot, DATASET_NAME, B_TRUE,
4708             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4709         { zfs_ioc_dsobj_to_dsname, zfs_secpolicy_diff, POOL_NAME, B_FALSE,
4710             POOL_CHECK_NONE },
4711         { zfs_ioc_obj_to_path, zfs_secpolicy_diff, DATASET_NAME, B_FALSE,
4712             POOL_CHECK_SUSPENDED },
4713         { zfs_ioc_pool_set_props, zfs_secpolicy_config, POOL_NAME, B_TRUE,
4714             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4715         { zfs_ioc_pool_get_props, zfs_secpolicy_read, POOL_NAME, B_FALSE,
4716             POOL_CHECK_NONE },
4717         { zfs_ioc_set_fsacl, zfs_secpolicy_fsacl, DATASET_NAME, B_TRUE,
4718             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4719         { zfs_ioc_get_fsacl, zfs_secpolicy_read, DATASET_NAME, B_FALSE,
4720             POOL_CHECK_NONE },
4721         { zfs_ioc_share, zfs_secpolicy_share, DATASET_NAME, B_FALSE,
4722             POOL_CHECK_NONE },
4723         { zfs_ioc_inherit_prop, zfs_secpolicy_inherit, DATASET_NAME, B_TRUE,
4724             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4725         { zfs_ioc_smb_acl, zfs_secpolicy_smb_acl, DATASET_NAME, B_FALSE,
4726             POOL_CHECK_NONE },
4727         { zfs_ioc_userspace_one, zfs_secpolicy_userspace_one, DATASET_NAME,
4728             B_FALSE, POOL_CHECK_NONE },
4729         { zfs_ioc_userspace_many, zfs_secpolicy_userspace_many, DATASET_NAME,
4730             B_FALSE, POOL_CHECK_NONE },
4731         { zfs_ioc_userspace_upgrade, zfs_secpolicy_userspace_upgrade,
4732             DATASET_NAME, B_FALSE, POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4733         { zfs_ioc_hold, zfs_secpolicy_hold, DATASET_NAME, B_TRUE,
4734             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4735         { zfs_ioc_release, zfs_secpolicy_release, DATASET_NAME, B_TRUE,
4736             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4737         { zfs_ioc_get_holds, zfs_secpolicy_read, DATASET_NAME, B_FALSE,
4738             POOL_CHECK_SUSPENDED },
4739         { zfs_ioc_objset_recvd_props, zfs_secpolicy_read, DATASET_NAME, B_FALSE,
4740             POOL_CHECK_NONE },
4741         { zfs_ioc_vdev_split, zfs_secpolicy_config, POOL_NAME, B_TRUE,
4742             POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4743         { zfs_ioc_next_obj, zfs_secpolicy_read, DATASET_NAME, B_FALSE,
4744             POOL_CHECK_NONE },
4745         { zfs_ioc_diff, zfs_secpolicy_diff, DATASET_NAME, B_FALSE,
4746             POOL_CHECK_NONE },
4747         { zfs_ioc_tmp_snapshot, zfs_secpolicy_tmp_snapshot, DATASET_NAME,
4748             B_FALSE, POOL_CHECK_SUSPENDED | POOL_CHECK_READONLY },
4749         { zfs_ioc_obj_to_stats, zfs_secpolicy_diff, DATASET_NAME, B_FALSE,
4750             POOL_CHECK_SUSPENDED }
4751 };
4752
4753 int
4754 pool_status_check(const char *name, zfs_ioc_namecheck_t type,
4755     zfs_ioc_poolcheck_t check)
4756 {
4757         spa_t *spa;
4758         int error;
4759
4760         ASSERT(type == POOL_NAME || type == DATASET_NAME);
4761
4762         if (check & POOL_CHECK_NONE)
4763                 return (0);
4764
4765         error = spa_open(name, &spa, FTAG);
4766         if (error == 0) {
4767                 if ((check & POOL_CHECK_SUSPENDED) && spa_suspended(spa))
4768                         error = EAGAIN;
4769                 else if ((check & POOL_CHECK_READONLY) && !spa_writeable(spa))
4770                         error = EROFS;
4771                 spa_close(spa, FTAG);
4772         }
4773         return (error);
4774 }
4775
4776 /*
4777  * Find a free minor number.
4778  */
4779 minor_t
4780 zfsdev_minor_alloc(void)
4781 {
4782         static minor_t last_minor;
4783         minor_t m;
4784
4785         ASSERT(MUTEX_HELD(&zfsdev_state_lock));
4786
4787         for (m = last_minor + 1; m != last_minor; m++) {
4788                 if (m > ZFSDEV_MAX_MINOR)
4789                         m = 1;
4790                 if (ddi_get_soft_state(zfsdev_state, m) == NULL) {
4791                         last_minor = m;
4792                         return (m);
4793                 }
4794         }
4795
4796         return (0);
4797 }
4798
4799 static int
4800 zfs_ctldev_init(dev_t *devp)
4801 {
4802         minor_t minor;
4803         zfs_soft_state_t *zs;
4804
4805         ASSERT(MUTEX_HELD(&zfsdev_state_lock));
4806         ASSERT(getminor(*devp) == 0);
4807
4808         minor = zfsdev_minor_alloc();
4809         if (minor == 0)
4810                 return (ENXIO);
4811
4812         if (ddi_soft_state_zalloc(zfsdev_state, minor) != DDI_SUCCESS)
4813                 return (EAGAIN);
4814
4815         *devp = makedevice(getemajor(*devp), minor);
4816
4817         zs = ddi_get_soft_state(zfsdev_state, minor);
4818         zs->zss_type = ZSST_CTLDEV;
4819         zfs_onexit_init((zfs_onexit_t **)&zs->zss_data);
4820
4821         return (0);
4822 }
4823
4824 static void
4825 zfs_ctldev_destroy(zfs_onexit_t *zo, minor_t minor)
4826 {
4827         ASSERT(MUTEX_HELD(&zfsdev_state_lock));
4828
4829         zfs_onexit_destroy(zo);
4830         ddi_soft_state_free(zfsdev_state, minor);
4831 }
4832
4833 void *
4834 zfsdev_get_soft_state(minor_t minor, enum zfs_soft_state_type which)
4835 {
4836         zfs_soft_state_t *zp;
4837
4838         zp = ddi_get_soft_state(zfsdev_state, minor);
4839         if (zp == NULL || zp->zss_type != which)
4840                 return (NULL);
4841
4842         return (zp->zss_data);
4843 }
4844
4845 static int
4846 zfsdev_open(dev_t *devp, int flag, int otyp, cred_t *cr)
4847 {
4848         int error = 0;
4849
4850         if (getminor(*devp) != 0)
4851                 return (zvol_open(devp, flag, otyp, cr));
4852
4853         /* This is the control device. Allocate a new minor if requested. */
4854         if (flag & FEXCL) {
4855                 mutex_enter(&zfsdev_state_lock);
4856                 error = zfs_ctldev_init(devp);
4857                 mutex_exit(&zfsdev_state_lock);
4858         }
4859
4860         return (error);
4861 }
4862
4863 static int
4864 zfsdev_close(dev_t dev, int flag, int otyp, cred_t *cr)
4865 {
4866         zfs_onexit_t *zo;
4867         minor_t minor = getminor(dev);
4868
4869         if (minor == 0)
4870                 return (0);
4871
4872         mutex_enter(&zfsdev_state_lock);
4873         zo = zfsdev_get_soft_state(minor, ZSST_CTLDEV);
4874         if (zo == NULL) {
4875                 mutex_exit(&zfsdev_state_lock);
4876                 return (zvol_close(dev, flag, otyp, cr));
4877         }
4878         zfs_ctldev_destroy(zo, minor);
4879         mutex_exit(&zfsdev_state_lock);
4880
4881         return (0);
4882 }
4883
4884 static int
4885 zfsdev_ioctl(dev_t dev, int cmd, intptr_t arg, int flag, cred_t *cr, int *rvalp)
4886 {
4887         zfs_cmd_t *zc;
4888         uint_t vec;
4889         int error, rc;
4890         minor_t minor = getminor(dev);
4891
4892         if (minor != 0 &&
4893             zfsdev_get_soft_state(minor, ZSST_CTLDEV) == NULL)
4894                 return (zvol_ioctl(dev, cmd, arg, flag, cr, rvalp));
4895
4896         vec = cmd - ZFS_IOC;
4897         ASSERT3U(getmajor(dev), ==, ddi_driver_major(zfs_dip));
4898
4899         if (vec >= sizeof (zfs_ioc_vec) / sizeof (zfs_ioc_vec[0]))
4900                 return (EINVAL);
4901
4902         zc = kmem_zalloc(sizeof (zfs_cmd_t), KM_SLEEP);
4903
4904         error = ddi_copyin((void *)arg, zc, sizeof (zfs_cmd_t), flag);
4905         if (error != 0)
4906                 error = EFAULT;
4907
4908         if ((error == 0) && !(flag & FKIOCTL))
4909                 error = zfs_ioc_vec[vec].zvec_secpolicy(zc, cr);
4910
4911         /*
4912          * Ensure that all pool/dataset names are valid before we pass down to
4913          * the lower layers.
4914          */
4915         if (error == 0) {
4916                 zc->zc_name[sizeof (zc->zc_name) - 1] = '\0';
4917                 zc->zc_iflags = flag & FKIOCTL;
4918                 switch (zfs_ioc_vec[vec].zvec_namecheck) {
4919                 case POOL_NAME:
4920                         if (pool_namecheck(zc->zc_name, NULL, NULL) != 0)
4921                                 error = EINVAL;
4922                         error = pool_status_check(zc->zc_name,
4923                             zfs_ioc_vec[vec].zvec_namecheck,
4924                             zfs_ioc_vec[vec].zvec_pool_check);
4925                         break;
4926
4927                 case DATASET_NAME:
4928                         if (dataset_namecheck(zc->zc_name, NULL, NULL) != 0)
4929                                 error = EINVAL;
4930                         error = pool_status_check(zc->zc_name,
4931                             zfs_ioc_vec[vec].zvec_namecheck,
4932                             zfs_ioc_vec[vec].zvec_pool_check);
4933                         break;
4934
4935                 case NO_NAME:
4936                         break;
4937                 }
4938         }
4939
4940         if (error == 0)
4941                 error = zfs_ioc_vec[vec].zvec_func(zc);
4942
4943         rc = ddi_copyout(zc, (void *)arg, sizeof (zfs_cmd_t), flag);
4944         if (error == 0) {
4945                 if (rc != 0)
4946                         error = EFAULT;
4947                 if (zfs_ioc_vec[vec].zvec_his_log)
4948                         zfs_log_history(zc);
4949         }
4950
4951         kmem_free(zc, sizeof (zfs_cmd_t));
4952         return (error);
4953 }
4954
4955 static int
4956 zfs_attach(dev_info_t *dip, ddi_attach_cmd_t cmd)
4957 {
4958         if (cmd != DDI_ATTACH)
4959                 return (DDI_FAILURE);
4960
4961         if (ddi_create_minor_node(dip, "zfs", S_IFCHR, 0,
4962             DDI_PSEUDO, 0) == DDI_FAILURE)
4963                 return (DDI_FAILURE);
4964
4965         zfs_dip = dip;
4966
4967         ddi_report_dev(dip);
4968
4969         return (DDI_SUCCESS);
4970 }
4971
4972 static int
4973 zfs_detach(dev_info_t *dip, ddi_detach_cmd_t cmd)
4974 {
4975         if (spa_busy() || zfs_busy() || zvol_busy())
4976                 return (DDI_FAILURE);
4977
4978         if (cmd != DDI_DETACH)
4979                 return (DDI_FAILURE);
4980
4981         zfs_dip = NULL;
4982
4983         ddi_prop_remove_all(dip);
4984         ddi_remove_minor_node(dip, NULL);
4985
4986         return (DDI_SUCCESS);
4987 }
4988
4989 /*ARGSUSED*/
4990 static int
4991 zfs_info(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg, void **result)
4992 {
4993         switch (infocmd) {
4994         case DDI_INFO_DEVT2DEVINFO:
4995                 *result = zfs_dip;
4996                 return (DDI_SUCCESS);
4997
4998         case DDI_INFO_DEVT2INSTANCE:
4999                 *result = (void *)0;
5000                 return (DDI_SUCCESS);
5001         }
5002
5003         return (DDI_FAILURE);
5004 }
5005
5006 /*
5007  * OK, so this is a little weird.
5008  *
5009  * /dev/zfs is the control node, i.e. minor 0.
5010  * /dev/zvol/[r]dsk/pool/dataset are the zvols, minor > 0.
5011  *
5012  * /dev/zfs has basically nothing to do except serve up ioctls,
5013  * so most of the standard driver entry points are in zvol.c.
5014  */
5015 static struct cb_ops zfs_cb_ops = {
5016         zfsdev_open,    /* open */
5017         zfsdev_close,   /* close */
5018         zvol_strategy,  /* strategy */
5019         nodev,          /* print */
5020         zvol_dump,      /* dump */
5021         zvol_read,      /* read */
5022         zvol_write,     /* write */
5023         zfsdev_ioctl,   /* ioctl */
5024         nodev,          /* devmap */
5025         nodev,          /* mmap */
5026         nodev,          /* segmap */
5027         nochpoll,       /* poll */
5028         ddi_prop_op,    /* prop_op */
5029         NULL,           /* streamtab */
5030         D_NEW | D_MP | D_64BIT,         /* Driver compatibility flag */
5031         CB_REV,         /* version */
5032         nodev,          /* async read */
5033         nodev,          /* async write */
5034 };
5035
5036 static struct dev_ops zfs_dev_ops = {
5037         DEVO_REV,       /* version */
5038         0,              /* refcnt */
5039         zfs_info,       /* info */
5040         nulldev,        /* identify */
5041         nulldev,        /* probe */
5042         zfs_attach,     /* attach */
5043         zfs_detach,     /* detach */
5044         nodev,          /* reset */
5045         &zfs_cb_ops,    /* driver operations */
5046         NULL,           /* no bus operations */
5047         NULL,           /* power */
5048         ddi_quiesce_not_needed, /* quiesce */
5049 };
5050
5051 static struct modldrv zfs_modldrv = {
5052         &mod_driverops,
5053         "ZFS storage pool",
5054         &zfs_dev_ops
5055 };
5056
5057 static struct modlinkage modlinkage = {
5058         MODREV_1,
5059         (void *)&zfs_modlfs,
5060         (void *)&zfs_modldrv,
5061         NULL
5062 };
5063
5064
5065 uint_t zfs_fsyncer_key;
5066 extern uint_t rrw_tsd_key;
5067
5068 int
5069 _init(void)
5070 {
5071         int error;
5072
5073         spa_init(FREAD | FWRITE);
5074         zfs_init();
5075         zvol_init();
5076
5077         if ((error = mod_install(&modlinkage)) != 0) {
5078                 zvol_fini();
5079                 zfs_fini();
5080                 spa_fini();
5081                 return (error);
5082         }
5083
5084         tsd_create(&zfs_fsyncer_key, NULL);
5085         tsd_create(&rrw_tsd_key, NULL);
5086
5087         error = ldi_ident_from_mod(&modlinkage, &zfs_li);
5088         ASSERT(error == 0);
5089         mutex_init(&zfs_share_lock, NULL, MUTEX_DEFAULT, NULL);
5090
5091         return (0);
5092 }
5093
5094 int
5095 _fini(void)
5096 {
5097         int error;
5098
5099         if (spa_busy() || zfs_busy() || zvol_busy() || zio_injection_enabled)
5100                 return (EBUSY);
5101
5102         if ((error = mod_remove(&modlinkage)) != 0)
5103                 return (error);
5104
5105         zvol_fini();
5106         zfs_fini();
5107         spa_fini();
5108         if (zfs_nfsshare_inited)
5109                 (void) ddi_modclose(nfs_mod);
5110         if (zfs_smbshare_inited)
5111                 (void) ddi_modclose(smbsrv_mod);
5112         if (zfs_nfsshare_inited || zfs_smbshare_inited)
5113                 (void) ddi_modclose(sharefs_mod);
5114
5115         tsd_destroy(&zfs_fsyncer_key);
5116         ldi_ident_release(zfs_li);
5117         zfs_li = NULL;
5118         mutex_destroy(&zfs_share_lock);
5119
5120         return (error);
5121 }
5122
5123 int
5124 _info(struct modinfo *modinfop)
5125 {
5126         return (mod_info(&modlinkage, modinfop));
5127 }