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