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