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