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