]> git.proxmox.com Git - mirror_zfs.git/blob - lib/libzfs/libzfs_util.c
Prevent zpool_find_vdev() from truncating vdev path
[mirror_zfs.git] / lib / libzfs / libzfs_util.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 * Copyright (c) 2013, Joyent, Inc. All rights reserved.
25 * Copyright (c) 2011, 2014 by Delphix. All rights reserved.
26 */
27
28 /*
29 * Internal utility routines for the ZFS library.
30 */
31
32 #include <errno.h>
33 #include <fcntl.h>
34 #include <libintl.h>
35 #include <stdarg.h>
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <strings.h>
39 #include <unistd.h>
40 #include <ctype.h>
41 #include <math.h>
42 #include <sys/stat.h>
43 #include <sys/mnttab.h>
44 #include <sys/mntent.h>
45 #include <sys/types.h>
46 #include <wait.h>
47
48 #include <libzfs.h>
49 #include <libzfs_core.h>
50
51 #include "libzfs_impl.h"
52 #include "zfs_prop.h"
53 #include "zfeature_common.h"
54
55 int
56 libzfs_errno(libzfs_handle_t *hdl)
57 {
58 return (hdl->libzfs_error);
59 }
60
61 const char *
62 libzfs_error_init(int error)
63 {
64 switch (error) {
65 case ENXIO:
66 return (dgettext(TEXT_DOMAIN, "The ZFS modules are not "
67 "loaded.\nTry running '/sbin/modprobe zfs' as root "
68 "to load them.\n"));
69 case ENOENT:
70 return (dgettext(TEXT_DOMAIN, "The /dev/zfs device is "
71 "missing and must be created.\nTry running 'udevadm "
72 "trigger' as root to create it.\n"));
73 case ENOEXEC:
74 return (dgettext(TEXT_DOMAIN, "The ZFS modules cannot be "
75 "auto-loaded.\nTry running '/sbin/modprobe zfs' as "
76 "root to manually load them.\n"));
77 case EACCES:
78 return (dgettext(TEXT_DOMAIN, "Permission denied the "
79 "ZFS utilities must be run as root.\n"));
80 default:
81 return (dgettext(TEXT_DOMAIN, "Failed to initialize the "
82 "libzfs library.\n"));
83 }
84 }
85
86 const char *
87 libzfs_error_action(libzfs_handle_t *hdl)
88 {
89 return (hdl->libzfs_action);
90 }
91
92 const char *
93 libzfs_error_description(libzfs_handle_t *hdl)
94 {
95 if (hdl->libzfs_desc[0] != '\0')
96 return (hdl->libzfs_desc);
97
98 switch (hdl->libzfs_error) {
99 case EZFS_NOMEM:
100 return (dgettext(TEXT_DOMAIN, "out of memory"));
101 case EZFS_BADPROP:
102 return (dgettext(TEXT_DOMAIN, "invalid property value"));
103 case EZFS_PROPREADONLY:
104 return (dgettext(TEXT_DOMAIN, "read-only property"));
105 case EZFS_PROPTYPE:
106 return (dgettext(TEXT_DOMAIN, "property doesn't apply to "
107 "datasets of this type"));
108 case EZFS_PROPNONINHERIT:
109 return (dgettext(TEXT_DOMAIN, "property cannot be inherited"));
110 case EZFS_PROPSPACE:
111 return (dgettext(TEXT_DOMAIN, "invalid quota or reservation"));
112 case EZFS_BADTYPE:
113 return (dgettext(TEXT_DOMAIN, "operation not applicable to "
114 "datasets of this type"));
115 case EZFS_BUSY:
116 return (dgettext(TEXT_DOMAIN, "pool or dataset is busy"));
117 case EZFS_EXISTS:
118 return (dgettext(TEXT_DOMAIN, "pool or dataset exists"));
119 case EZFS_NOENT:
120 return (dgettext(TEXT_DOMAIN, "no such pool or dataset"));
121 case EZFS_BADSTREAM:
122 return (dgettext(TEXT_DOMAIN, "invalid backup stream"));
123 case EZFS_DSREADONLY:
124 return (dgettext(TEXT_DOMAIN, "dataset is read-only"));
125 case EZFS_VOLTOOBIG:
126 return (dgettext(TEXT_DOMAIN, "volume size exceeds limit for "
127 "this system"));
128 case EZFS_INVALIDNAME:
129 return (dgettext(TEXT_DOMAIN, "invalid name"));
130 case EZFS_BADRESTORE:
131 return (dgettext(TEXT_DOMAIN, "unable to restore to "
132 "destination"));
133 case EZFS_BADBACKUP:
134 return (dgettext(TEXT_DOMAIN, "backup failed"));
135 case EZFS_BADTARGET:
136 return (dgettext(TEXT_DOMAIN, "invalid target vdev"));
137 case EZFS_NODEVICE:
138 return (dgettext(TEXT_DOMAIN, "no such device in pool"));
139 case EZFS_BADDEV:
140 return (dgettext(TEXT_DOMAIN, "invalid device"));
141 case EZFS_NOREPLICAS:
142 return (dgettext(TEXT_DOMAIN, "no valid replicas"));
143 case EZFS_RESILVERING:
144 return (dgettext(TEXT_DOMAIN, "currently resilvering"));
145 case EZFS_BADVERSION:
146 return (dgettext(TEXT_DOMAIN, "unsupported version or "
147 "feature"));
148 case EZFS_POOLUNAVAIL:
149 return (dgettext(TEXT_DOMAIN, "pool is unavailable"));
150 case EZFS_DEVOVERFLOW:
151 return (dgettext(TEXT_DOMAIN, "too many devices in one vdev"));
152 case EZFS_BADPATH:
153 return (dgettext(TEXT_DOMAIN, "must be an absolute path"));
154 case EZFS_CROSSTARGET:
155 return (dgettext(TEXT_DOMAIN, "operation crosses datasets or "
156 "pools"));
157 case EZFS_ZONED:
158 return (dgettext(TEXT_DOMAIN, "dataset in use by local zone"));
159 case EZFS_MOUNTFAILED:
160 return (dgettext(TEXT_DOMAIN, "mount failed"));
161 case EZFS_UMOUNTFAILED:
162 return (dgettext(TEXT_DOMAIN, "umount failed"));
163 case EZFS_UNSHARENFSFAILED:
164 return (dgettext(TEXT_DOMAIN, "unshare(1M) failed"));
165 case EZFS_SHARENFSFAILED:
166 return (dgettext(TEXT_DOMAIN, "share(1M) failed"));
167 case EZFS_UNSHARESMBFAILED:
168 return (dgettext(TEXT_DOMAIN, "smb remove share failed"));
169 case EZFS_SHARESMBFAILED:
170 return (dgettext(TEXT_DOMAIN, "smb add share failed"));
171 case EZFS_PERM:
172 return (dgettext(TEXT_DOMAIN, "permission denied"));
173 case EZFS_NOSPC:
174 return (dgettext(TEXT_DOMAIN, "out of space"));
175 case EZFS_FAULT:
176 return (dgettext(TEXT_DOMAIN, "bad address"));
177 case EZFS_IO:
178 return (dgettext(TEXT_DOMAIN, "I/O error"));
179 case EZFS_INTR:
180 return (dgettext(TEXT_DOMAIN, "signal received"));
181 case EZFS_ISSPARE:
182 return (dgettext(TEXT_DOMAIN, "device is reserved as a hot "
183 "spare"));
184 case EZFS_INVALCONFIG:
185 return (dgettext(TEXT_DOMAIN, "invalid vdev configuration"));
186 case EZFS_RECURSIVE:
187 return (dgettext(TEXT_DOMAIN, "recursive dataset dependency"));
188 case EZFS_NOHISTORY:
189 return (dgettext(TEXT_DOMAIN, "no history available"));
190 case EZFS_POOLPROPS:
191 return (dgettext(TEXT_DOMAIN, "failed to retrieve "
192 "pool properties"));
193 case EZFS_POOL_NOTSUP:
194 return (dgettext(TEXT_DOMAIN, "operation not supported "
195 "on this type of pool"));
196 case EZFS_POOL_INVALARG:
197 return (dgettext(TEXT_DOMAIN, "invalid argument for "
198 "this pool operation"));
199 case EZFS_NAMETOOLONG:
200 return (dgettext(TEXT_DOMAIN, "dataset name is too long"));
201 case EZFS_OPENFAILED:
202 return (dgettext(TEXT_DOMAIN, "open failed"));
203 case EZFS_NOCAP:
204 return (dgettext(TEXT_DOMAIN,
205 "disk capacity information could not be retrieved"));
206 case EZFS_LABELFAILED:
207 return (dgettext(TEXT_DOMAIN, "write of label failed"));
208 case EZFS_BADWHO:
209 return (dgettext(TEXT_DOMAIN, "invalid user/group"));
210 case EZFS_BADPERM:
211 return (dgettext(TEXT_DOMAIN, "invalid permission"));
212 case EZFS_BADPERMSET:
213 return (dgettext(TEXT_DOMAIN, "invalid permission set name"));
214 case EZFS_NODELEGATION:
215 return (dgettext(TEXT_DOMAIN, "delegated administration is "
216 "disabled on pool"));
217 case EZFS_BADCACHE:
218 return (dgettext(TEXT_DOMAIN, "invalid or missing cache file"));
219 case EZFS_ISL2CACHE:
220 return (dgettext(TEXT_DOMAIN, "device is in use as a cache"));
221 case EZFS_VDEVNOTSUP:
222 return (dgettext(TEXT_DOMAIN, "vdev specification is not "
223 "supported"));
224 case EZFS_NOTSUP:
225 return (dgettext(TEXT_DOMAIN, "operation not supported "
226 "on this dataset"));
227 case EZFS_ACTIVE_SPARE:
228 return (dgettext(TEXT_DOMAIN, "pool has active shared spare "
229 "device"));
230 case EZFS_UNPLAYED_LOGS:
231 return (dgettext(TEXT_DOMAIN, "log device has unplayed intent "
232 "logs"));
233 case EZFS_REFTAG_RELE:
234 return (dgettext(TEXT_DOMAIN, "no such tag on this dataset"));
235 case EZFS_REFTAG_HOLD:
236 return (dgettext(TEXT_DOMAIN, "tag already exists on this "
237 "dataset"));
238 case EZFS_TAGTOOLONG:
239 return (dgettext(TEXT_DOMAIN, "tag too long"));
240 case EZFS_PIPEFAILED:
241 return (dgettext(TEXT_DOMAIN, "pipe create failed"));
242 case EZFS_THREADCREATEFAILED:
243 return (dgettext(TEXT_DOMAIN, "thread create failed"));
244 case EZFS_POSTSPLIT_ONLINE:
245 return (dgettext(TEXT_DOMAIN, "disk was split from this pool "
246 "into a new one"));
247 case EZFS_SCRUBBING:
248 return (dgettext(TEXT_DOMAIN, "currently scrubbing; "
249 "use 'zpool scrub -s' to cancel current scrub"));
250 case EZFS_NO_SCRUB:
251 return (dgettext(TEXT_DOMAIN, "there is no active scrub"));
252 case EZFS_DIFF:
253 return (dgettext(TEXT_DOMAIN, "unable to generate diffs"));
254 case EZFS_DIFFDATA:
255 return (dgettext(TEXT_DOMAIN, "invalid diff data"));
256 case EZFS_POOLREADONLY:
257 return (dgettext(TEXT_DOMAIN, "pool is read-only"));
258 case EZFS_UNKNOWN:
259 return (dgettext(TEXT_DOMAIN, "unknown error"));
260 default:
261 assert(hdl->libzfs_error == 0);
262 return (dgettext(TEXT_DOMAIN, "no error"));
263 }
264 }
265
266 /*PRINTFLIKE2*/
267 void
268 zfs_error_aux(libzfs_handle_t *hdl, const char *fmt, ...)
269 {
270 va_list ap;
271
272 va_start(ap, fmt);
273
274 (void) vsnprintf(hdl->libzfs_desc, sizeof (hdl->libzfs_desc),
275 fmt, ap);
276 hdl->libzfs_desc_active = 1;
277
278 va_end(ap);
279 }
280
281 static void
282 zfs_verror(libzfs_handle_t *hdl, int error, const char *fmt, va_list ap)
283 {
284 (void) vsnprintf(hdl->libzfs_action, sizeof (hdl->libzfs_action),
285 fmt, ap);
286 hdl->libzfs_error = error;
287
288 if (hdl->libzfs_desc_active)
289 hdl->libzfs_desc_active = 0;
290 else
291 hdl->libzfs_desc[0] = '\0';
292
293 if (hdl->libzfs_printerr) {
294 if (error == EZFS_UNKNOWN) {
295 (void) fprintf(stderr, dgettext(TEXT_DOMAIN, "internal "
296 "error: %s\n"), libzfs_error_description(hdl));
297 abort();
298 }
299
300 (void) fprintf(stderr, "%s: %s\n", hdl->libzfs_action,
301 libzfs_error_description(hdl));
302 if (error == EZFS_NOMEM)
303 exit(1);
304 }
305 }
306
307 int
308 zfs_error(libzfs_handle_t *hdl, int error, const char *msg)
309 {
310 return (zfs_error_fmt(hdl, error, "%s", msg));
311 }
312
313 /*PRINTFLIKE3*/
314 int
315 zfs_error_fmt(libzfs_handle_t *hdl, int error, const char *fmt, ...)
316 {
317 va_list ap;
318
319 va_start(ap, fmt);
320
321 zfs_verror(hdl, error, fmt, ap);
322
323 va_end(ap);
324
325 return (-1);
326 }
327
328 static int
329 zfs_common_error(libzfs_handle_t *hdl, int error, const char *fmt,
330 va_list ap)
331 {
332 switch (error) {
333 case EPERM:
334 case EACCES:
335 zfs_verror(hdl, EZFS_PERM, fmt, ap);
336 return (-1);
337
338 case ECANCELED:
339 zfs_verror(hdl, EZFS_NODELEGATION, fmt, ap);
340 return (-1);
341
342 case EIO:
343 zfs_verror(hdl, EZFS_IO, fmt, ap);
344 return (-1);
345
346 case EFAULT:
347 zfs_verror(hdl, EZFS_FAULT, fmt, ap);
348 return (-1);
349
350 case EINTR:
351 zfs_verror(hdl, EZFS_INTR, fmt, ap);
352 return (-1);
353 }
354
355 return (0);
356 }
357
358 int
359 zfs_standard_error(libzfs_handle_t *hdl, int error, const char *msg)
360 {
361 return (zfs_standard_error_fmt(hdl, error, "%s", msg));
362 }
363
364 /*PRINTFLIKE3*/
365 int
366 zfs_standard_error_fmt(libzfs_handle_t *hdl, int error, const char *fmt, ...)
367 {
368 va_list ap;
369
370 va_start(ap, fmt);
371
372 if (zfs_common_error(hdl, error, fmt, ap) != 0) {
373 va_end(ap);
374 return (-1);
375 }
376
377 switch (error) {
378 case ENXIO:
379 case ENODEV:
380 case EPIPE:
381 zfs_verror(hdl, EZFS_IO, fmt, ap);
382 break;
383
384 case ENOENT:
385 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
386 "dataset does not exist"));
387 zfs_verror(hdl, EZFS_NOENT, fmt, ap);
388 break;
389
390 case ENOSPC:
391 case EDQUOT:
392 zfs_verror(hdl, EZFS_NOSPC, fmt, ap);
393 return (-1);
394
395 case EEXIST:
396 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
397 "dataset already exists"));
398 zfs_verror(hdl, EZFS_EXISTS, fmt, ap);
399 break;
400
401 case EBUSY:
402 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
403 "dataset is busy"));
404 zfs_verror(hdl, EZFS_BUSY, fmt, ap);
405 break;
406 case EROFS:
407 zfs_verror(hdl, EZFS_POOLREADONLY, fmt, ap);
408 break;
409 case ENAMETOOLONG:
410 zfs_verror(hdl, EZFS_NAMETOOLONG, fmt, ap);
411 break;
412 case ENOTSUP:
413 zfs_verror(hdl, EZFS_BADVERSION, fmt, ap);
414 break;
415 case EAGAIN:
416 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
417 "pool I/O is currently suspended"));
418 zfs_verror(hdl, EZFS_POOLUNAVAIL, fmt, ap);
419 break;
420 default:
421 zfs_error_aux(hdl, strerror(error));
422 zfs_verror(hdl, EZFS_UNKNOWN, fmt, ap);
423 break;
424 }
425
426 va_end(ap);
427 return (-1);
428 }
429
430 int
431 zpool_standard_error(libzfs_handle_t *hdl, int error, const char *msg)
432 {
433 return (zpool_standard_error_fmt(hdl, error, "%s", msg));
434 }
435
436 /*PRINTFLIKE3*/
437 int
438 zpool_standard_error_fmt(libzfs_handle_t *hdl, int error, const char *fmt, ...)
439 {
440 va_list ap;
441
442 va_start(ap, fmt);
443
444 if (zfs_common_error(hdl, error, fmt, ap) != 0) {
445 va_end(ap);
446 return (-1);
447 }
448
449 switch (error) {
450 case ENODEV:
451 zfs_verror(hdl, EZFS_NODEVICE, fmt, ap);
452 break;
453
454 case ENOENT:
455 zfs_error_aux(hdl,
456 dgettext(TEXT_DOMAIN, "no such pool or dataset"));
457 zfs_verror(hdl, EZFS_NOENT, fmt, ap);
458 break;
459
460 case EEXIST:
461 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
462 "pool already exists"));
463 zfs_verror(hdl, EZFS_EXISTS, fmt, ap);
464 break;
465
466 case EBUSY:
467 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN, "pool is busy"));
468 zfs_verror(hdl, EZFS_BUSY, fmt, ap);
469 break;
470
471 case ENXIO:
472 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
473 "one or more devices is currently unavailable"));
474 zfs_verror(hdl, EZFS_BADDEV, fmt, ap);
475 break;
476
477 case ENAMETOOLONG:
478 zfs_verror(hdl, EZFS_DEVOVERFLOW, fmt, ap);
479 break;
480
481 case ENOTSUP:
482 zfs_verror(hdl, EZFS_POOL_NOTSUP, fmt, ap);
483 break;
484
485 case EINVAL:
486 zfs_verror(hdl, EZFS_POOL_INVALARG, fmt, ap);
487 break;
488
489 case ENOSPC:
490 case EDQUOT:
491 zfs_verror(hdl, EZFS_NOSPC, fmt, ap);
492 return (-1);
493
494 case EAGAIN:
495 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
496 "pool I/O is currently suspended"));
497 zfs_verror(hdl, EZFS_POOLUNAVAIL, fmt, ap);
498 break;
499
500 case EROFS:
501 zfs_verror(hdl, EZFS_POOLREADONLY, fmt, ap);
502 break;
503 case EDOM:
504 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
505 "block size out of range or does not match"));
506 zfs_verror(hdl, EZFS_BADPROP, fmt, ap);
507 break;
508
509 default:
510 zfs_error_aux(hdl, strerror(error));
511 zfs_verror(hdl, EZFS_UNKNOWN, fmt, ap);
512 }
513
514 va_end(ap);
515 return (-1);
516 }
517
518 /*
519 * Display an out of memory error message and abort the current program.
520 */
521 int
522 no_memory(libzfs_handle_t *hdl)
523 {
524 return (zfs_error(hdl, EZFS_NOMEM, "internal error"));
525 }
526
527 /*
528 * A safe form of malloc() which will die if the allocation fails.
529 */
530 void *
531 zfs_alloc(libzfs_handle_t *hdl, size_t size)
532 {
533 void *data;
534
535 if ((data = calloc(1, size)) == NULL)
536 (void) no_memory(hdl);
537
538 return (data);
539 }
540
541 /*
542 * A safe form of asprintf() which will die if the allocation fails.
543 */
544 /*PRINTFLIKE2*/
545 char *
546 zfs_asprintf(libzfs_handle_t *hdl, const char *fmt, ...)
547 {
548 va_list ap;
549 char *ret;
550 int err;
551
552 va_start(ap, fmt);
553
554 err = vasprintf(&ret, fmt, ap);
555
556 va_end(ap);
557
558 if (err < 0)
559 (void) no_memory(hdl);
560
561 return (ret);
562 }
563
564 /*
565 * A safe form of realloc(), which also zeroes newly allocated space.
566 */
567 void *
568 zfs_realloc(libzfs_handle_t *hdl, void *ptr, size_t oldsize, size_t newsize)
569 {
570 void *ret;
571
572 if ((ret = realloc(ptr, newsize)) == NULL) {
573 (void) no_memory(hdl);
574 return (NULL);
575 }
576
577 bzero((char *)ret + oldsize, (newsize - oldsize));
578 return (ret);
579 }
580
581 /*
582 * A safe form of strdup() which will die if the allocation fails.
583 */
584 char *
585 zfs_strdup(libzfs_handle_t *hdl, const char *str)
586 {
587 char *ret;
588
589 if ((ret = strdup(str)) == NULL)
590 (void) no_memory(hdl);
591
592 return (ret);
593 }
594
595 /*
596 * Convert a number to an appropriately human-readable output.
597 */
598 void
599 zfs_nicenum(uint64_t num, char *buf, size_t buflen)
600 {
601 uint64_t n = num;
602 int index = 0;
603 char u;
604
605 while (n >= 1024 && index < 6) {
606 n /= 1024;
607 index++;
608 }
609
610 u = " KMGTPE"[index];
611
612 if (index == 0) {
613 (void) snprintf(buf, buflen, "%llu", (u_longlong_t) n);
614 } else if ((num & ((1ULL << 10 * index) - 1)) == 0) {
615 /*
616 * If this is an even multiple of the base, always display
617 * without any decimal precision.
618 */
619 (void) snprintf(buf, buflen, "%llu%c", (u_longlong_t) n, u);
620 } else {
621 /*
622 * We want to choose a precision that reflects the best choice
623 * for fitting in 5 characters. This can get rather tricky when
624 * we have numbers that are very close to an order of magnitude.
625 * For example, when displaying 10239 (which is really 9.999K),
626 * we want only a single place of precision for 10.0K. We could
627 * develop some complex heuristics for this, but it's much
628 * easier just to try each combination in turn.
629 */
630 int i;
631 for (i = 2; i >= 0; i--) {
632 if (snprintf(buf, buflen, "%.*f%c", i,
633 (double)num / (1ULL << 10 * index), u) <= 5)
634 break;
635 }
636 }
637 }
638
639 void
640 libzfs_print_on_error(libzfs_handle_t *hdl, boolean_t printerr)
641 {
642 hdl->libzfs_printerr = printerr;
643 }
644
645 static int
646 libzfs_module_loaded(const char *module)
647 {
648 const char path_prefix[] = "/sys/module/";
649 char path[256];
650
651 memcpy(path, path_prefix, sizeof (path_prefix) - 1);
652 strcpy(path + sizeof (path_prefix) - 1, module);
653
654 return (access(path, F_OK) == 0);
655 }
656
657 int
658 libzfs_run_process(const char *path, char *argv[], int flags)
659 {
660 pid_t pid;
661 int error, devnull_fd;
662
663 pid = vfork();
664 if (pid == 0) {
665 devnull_fd = open("/dev/null", O_WRONLY);
666
667 if (devnull_fd < 0)
668 _exit(-1);
669
670 if (!(flags & STDOUT_VERBOSE))
671 (void) dup2(devnull_fd, STDOUT_FILENO);
672
673 if (!(flags & STDERR_VERBOSE))
674 (void) dup2(devnull_fd, STDERR_FILENO);
675
676 close(devnull_fd);
677
678 (void) execvp(path, argv);
679 _exit(-1);
680 } else if (pid > 0) {
681 int status;
682
683 while ((error = waitpid(pid, &status, 0)) == -1 &&
684 errno == EINTR);
685 if (error < 0 || !WIFEXITED(status))
686 return (-1);
687
688 return (WEXITSTATUS(status));
689 }
690
691 return (-1);
692 }
693
694 /*
695 * Verify the required ZFS_DEV device is available and optionally attempt
696 * to load the ZFS modules. Under normal circumstances the modules
697 * should already have been loaded by some external mechanism.
698 *
699 * Environment variables:
700 * - ZFS_MODULE_LOADING="YES|yes|ON|on" - Attempt to load modules.
701 * - ZFS_MODULE_TIMEOUT="<seconds>" - Seconds to wait for ZFS_DEV
702 */
703 static int
704 libzfs_load_module(const char *module)
705 {
706 char *argv[4] = {"/sbin/modprobe", "-q", (char *)module, (char *)0};
707 char *load_str, *timeout_str;
708 long timeout = 10; /* seconds */
709 long busy_timeout = 10; /* milliseconds */
710 int load = 0, fd;
711 hrtime_t start;
712
713 /* Optionally request module loading */
714 if (!libzfs_module_loaded(module)) {
715 load_str = getenv("ZFS_MODULE_LOADING");
716 if (load_str) {
717 if (!strncasecmp(load_str, "YES", strlen("YES")) ||
718 !strncasecmp(load_str, "ON", strlen("ON")))
719 load = 1;
720 else
721 load = 0;
722 }
723
724 if (load && libzfs_run_process("/sbin/modprobe", argv, 0))
725 return (ENOEXEC);
726 }
727
728 /* Module loading is synchronous it must be available */
729 if (!libzfs_module_loaded(module))
730 return (ENXIO);
731
732 /*
733 * Device creation by udev is asynchronous and waiting may be
734 * required. Busy wait for 10ms and then fall back to polling every
735 * 10ms for the allowed timeout (default 10s, max 10m). This is
736 * done to optimize for the common case where the device is
737 * immediately available and to avoid penalizing the possible
738 * case where udev is slow or unable to create the device.
739 */
740 timeout_str = getenv("ZFS_MODULE_TIMEOUT");
741 if (timeout_str) {
742 timeout = strtol(timeout_str, NULL, 0);
743 timeout = MAX(MIN(timeout, (10 * 60)), 0); /* 0 <= N <= 600 */
744 }
745
746 start = gethrtime();
747 do {
748 fd = open(ZFS_DEV, O_RDWR);
749 if (fd >= 0) {
750 (void) close(fd);
751 return (0);
752 } else if (errno != ENOENT) {
753 return (errno);
754 } else if (NSEC2MSEC(gethrtime() - start) < busy_timeout) {
755 sched_yield();
756 } else {
757 usleep(10 * MILLISEC);
758 }
759 } while (NSEC2MSEC(gethrtime() - start) < (timeout * MILLISEC));
760
761 return (ENOENT);
762 }
763
764 libzfs_handle_t *
765 libzfs_init(void)
766 {
767 libzfs_handle_t *hdl;
768 int error;
769
770 error = libzfs_load_module(ZFS_DRIVER);
771 if (error) {
772 errno = error;
773 return (NULL);
774 }
775
776 if ((hdl = calloc(1, sizeof (libzfs_handle_t))) == NULL) {
777 return (NULL);
778 }
779
780 if ((hdl->libzfs_fd = open(ZFS_DEV, O_RDWR)) < 0) {
781 free(hdl);
782 return (NULL);
783 }
784
785 #ifdef HAVE_SETMNTENT
786 if ((hdl->libzfs_mnttab = setmntent(MNTTAB, "r")) == NULL) {
787 #else
788 if ((hdl->libzfs_mnttab = fopen(MNTTAB, "r")) == NULL) {
789 #endif
790 (void) close(hdl->libzfs_fd);
791 free(hdl);
792 return (NULL);
793 }
794
795 hdl->libzfs_sharetab = fopen("/etc/dfs/sharetab", "r");
796
797 if (libzfs_core_init() != 0) {
798 (void) close(hdl->libzfs_fd);
799 (void) fclose(hdl->libzfs_mnttab);
800 (void) fclose(hdl->libzfs_sharetab);
801 free(hdl);
802 return (NULL);
803 }
804
805 zfs_prop_init();
806 zpool_prop_init();
807 zpool_feature_init();
808 libzfs_mnttab_init(hdl);
809
810 return (hdl);
811 }
812
813 void
814 libzfs_fini(libzfs_handle_t *hdl)
815 {
816 (void) close(hdl->libzfs_fd);
817 if (hdl->libzfs_mnttab)
818 #ifdef HAVE_SETMNTENT
819 (void) endmntent(hdl->libzfs_mnttab);
820 #else
821 (void) fclose(hdl->libzfs_mnttab);
822 #endif
823 if (hdl->libzfs_sharetab)
824 (void) fclose(hdl->libzfs_sharetab);
825 zfs_uninit_libshare(hdl);
826 zpool_free_handles(hdl);
827 libzfs_fru_clear(hdl, B_TRUE);
828 namespace_clear(hdl);
829 libzfs_mnttab_fini(hdl);
830 libzfs_core_fini();
831 free(hdl);
832 }
833
834 libzfs_handle_t *
835 zpool_get_handle(zpool_handle_t *zhp)
836 {
837 return (zhp->zpool_hdl);
838 }
839
840 libzfs_handle_t *
841 zfs_get_handle(zfs_handle_t *zhp)
842 {
843 return (zhp->zfs_hdl);
844 }
845
846 zpool_handle_t *
847 zfs_get_pool_handle(const zfs_handle_t *zhp)
848 {
849 return (zhp->zpool_hdl);
850 }
851
852 /*
853 * Given a name, determine whether or not it's a valid path
854 * (starts with '/' or "./"). If so, walk the mnttab trying
855 * to match the device number. If not, treat the path as an
856 * fs/vol/snap name.
857 */
858 zfs_handle_t *
859 zfs_path_to_zhandle(libzfs_handle_t *hdl, char *path, zfs_type_t argtype)
860 {
861 struct stat64 statbuf;
862 struct extmnttab entry;
863 int ret;
864
865 if (path[0] != '/' && strncmp(path, "./", strlen("./")) != 0) {
866 /*
867 * It's not a valid path, assume it's a name of type 'argtype'.
868 */
869 return (zfs_open(hdl, path, argtype));
870 }
871
872 if (stat64(path, &statbuf) != 0) {
873 (void) fprintf(stderr, "%s: %s\n", path, strerror(errno));
874 return (NULL);
875 }
876
877 /* Reopen MNTTAB to prevent reading stale data from open file */
878 if (freopen(MNTTAB, "r", hdl->libzfs_mnttab) == NULL)
879 return (NULL);
880
881 while ((ret = getextmntent(hdl->libzfs_mnttab, &entry, 0)) == 0) {
882 if (makedevice(entry.mnt_major, entry.mnt_minor) ==
883 statbuf.st_dev) {
884 break;
885 }
886 }
887 if (ret != 0) {
888 return (NULL);
889 }
890
891 if (strcmp(entry.mnt_fstype, MNTTYPE_ZFS) != 0) {
892 (void) fprintf(stderr, gettext("'%s': not a ZFS filesystem\n"),
893 path);
894 return (NULL);
895 }
896
897 return (zfs_open(hdl, entry.mnt_special, ZFS_TYPE_FILESYSTEM));
898 }
899
900 /*
901 * Append partition suffix to an otherwise fully qualified device path.
902 * This is used to generate the name the full path as its stored in
903 * ZPOOL_CONFIG_PATH for whole disk devices. On success the new length
904 * of 'path' will be returned on error a negative value is returned.
905 */
906 int
907 zfs_append_partition(char *path, size_t max_len)
908 {
909 int len = strlen(path);
910
911 if (strncmp(path, UDISK_ROOT, strlen(UDISK_ROOT)) == 0) {
912 if (len + 6 >= max_len)
913 return (-1);
914
915 (void) strcat(path, "-part1");
916 len += 6;
917 } else {
918 if (len + 2 >= max_len)
919 return (-1);
920
921 if (isdigit(path[len-1])) {
922 (void) strcat(path, "p1");
923 len += 2;
924 } else {
925 (void) strcat(path, "1");
926 len += 1;
927 }
928 }
929
930 return (len);
931 }
932
933 /*
934 * Given a shorthand device name check if a file by that name exists in any
935 * of the 'zpool_default_import_path' or ZPOOL_IMPORT_PATH directories. If
936 * one is found, store its fully qualified path in the 'path' buffer passed
937 * by the caller and return 0, otherwise return an error.
938 */
939 int
940 zfs_resolve_shortname(const char *name, char *path, size_t len)
941 {
942 int i, error = -1;
943 char *dir, *env, *envdup;
944
945 env = getenv("ZPOOL_IMPORT_PATH");
946 errno = ENOENT;
947
948 if (env) {
949 envdup = strdup(env);
950 dir = strtok(envdup, ":");
951 while (dir && error) {
952 (void) snprintf(path, len, "%s/%s", dir, name);
953 error = access(path, F_OK);
954 dir = strtok(NULL, ":");
955 }
956 free(envdup);
957 } else {
958 for (i = 0; i < DEFAULT_IMPORT_PATH_SIZE && error < 0; i++) {
959 (void) snprintf(path, len, "%s/%s",
960 zpool_default_import_path[i], name);
961 error = access(path, F_OK);
962 }
963 }
964
965 return (error ? ENOENT : 0);
966 }
967
968 /*
969 * Given a shorthand device name look for a match against 'cmp_name'. This
970 * is done by checking all prefix expansions using either the default
971 * 'zpool_default_import_paths' or the ZPOOL_IMPORT_PATH environment
972 * variable. Proper partition suffixes will be appended if this is a
973 * whole disk. When a match is found 0 is returned otherwise ENOENT.
974 */
975 static int
976 zfs_strcmp_shortname(char *name, char *cmp_name, int wholedisk)
977 {
978 int path_len, cmp_len, i = 0, error = ENOENT;
979 char *dir, *env, *envdup = NULL;
980 char path_name[MAXPATHLEN];
981
982 cmp_len = strlen(cmp_name);
983 env = getenv("ZPOOL_IMPORT_PATH");
984
985 if (env) {
986 envdup = strdup(env);
987 dir = strtok(envdup, ":");
988 } else {
989 dir = zpool_default_import_path[i];
990 }
991
992 while (dir) {
993 /* Trim trailing directory slashes from ZPOOL_IMPORT_PATH */
994 while (dir[strlen(dir)-1] == '/')
995 dir[strlen(dir)-1] = '\0';
996
997 path_len = snprintf(path_name, MAXPATHLEN, "%s/%s", dir, name);
998 if (wholedisk)
999 path_len = zfs_append_partition(path_name, MAXPATHLEN);
1000
1001 if ((path_len == cmp_len) && strcmp(path_name, cmp_name) == 0) {
1002 error = 0;
1003 break;
1004 }
1005
1006 if (env) {
1007 dir = strtok(NULL, ":");
1008 } else if (++i < DEFAULT_IMPORT_PATH_SIZE) {
1009 dir = zpool_default_import_path[i];
1010 } else {
1011 dir = NULL;
1012 }
1013 }
1014
1015 if (env)
1016 free(envdup);
1017
1018 return (error);
1019 }
1020
1021 /*
1022 * Given either a shorthand or fully qualified path name look for a match
1023 * against 'cmp'. The passed name will be expanded as needed for comparison
1024 * purposes and redundant slashes stripped to ensure an accurate match.
1025 */
1026 int
1027 zfs_strcmp_pathname(char *name, char *cmp, int wholedisk)
1028 {
1029 int path_len, cmp_len;
1030 char path_name[MAXPATHLEN];
1031 char cmp_name[MAXPATHLEN];
1032 char *dir, *dup;
1033
1034 /* Strip redundant slashes if one exists due to ZPOOL_IMPORT_PATH */
1035 memset(cmp_name, 0, MAXPATHLEN);
1036 dup = strdup(cmp);
1037 dir = strtok(dup, "/");
1038 while (dir) {
1039 strcat(cmp_name, "/");
1040 strcat(cmp_name, dir);
1041 dir = strtok(NULL, "/");
1042 }
1043 free(dup);
1044
1045 if (name[0] != '/')
1046 return (zfs_strcmp_shortname(name, cmp_name, wholedisk));
1047
1048 (void) strlcpy(path_name, name, MAXPATHLEN);
1049 path_len = strlen(path_name);
1050 cmp_len = strlen(cmp_name);
1051
1052 if (wholedisk) {
1053 path_len = zfs_append_partition(path_name, MAXPATHLEN);
1054 if (path_len == -1)
1055 return (ENOMEM);
1056 }
1057
1058 if ((path_len != cmp_len) || strcmp(path_name, cmp_name))
1059 return (ENOENT);
1060
1061 return (0);
1062 }
1063
1064 /*
1065 * Initialize the zc_nvlist_dst member to prepare for receiving an nvlist from
1066 * an ioctl().
1067 */
1068 int
1069 zcmd_alloc_dst_nvlist(libzfs_handle_t *hdl, zfs_cmd_t *zc, size_t len)
1070 {
1071 if (len == 0)
1072 len = 16 * 1024;
1073 zc->zc_nvlist_dst_size = len;
1074 zc->zc_nvlist_dst =
1075 (uint64_t)(uintptr_t)zfs_alloc(hdl, zc->zc_nvlist_dst_size);
1076 if (zc->zc_nvlist_dst == 0)
1077 return (-1);
1078
1079 return (0);
1080 }
1081
1082 /*
1083 * Called when an ioctl() which returns an nvlist fails with ENOMEM. This will
1084 * expand the nvlist to the size specified in 'zc_nvlist_dst_size', which was
1085 * filled in by the kernel to indicate the actual required size.
1086 */
1087 int
1088 zcmd_expand_dst_nvlist(libzfs_handle_t *hdl, zfs_cmd_t *zc)
1089 {
1090 free((void *)(uintptr_t)zc->zc_nvlist_dst);
1091 zc->zc_nvlist_dst =
1092 (uint64_t)(uintptr_t)zfs_alloc(hdl, zc->zc_nvlist_dst_size);
1093 if (zc->zc_nvlist_dst == 0)
1094 return (-1);
1095
1096 return (0);
1097 }
1098
1099 /*
1100 * Called to free the src and dst nvlists stored in the command structure.
1101 */
1102 void
1103 zcmd_free_nvlists(zfs_cmd_t *zc)
1104 {
1105 free((void *)(uintptr_t)zc->zc_nvlist_conf);
1106 free((void *)(uintptr_t)zc->zc_nvlist_src);
1107 free((void *)(uintptr_t)zc->zc_nvlist_dst);
1108 zc->zc_nvlist_conf = 0;
1109 zc->zc_nvlist_src = 0;
1110 zc->zc_nvlist_dst = 0;
1111 }
1112
1113 static int
1114 zcmd_write_nvlist_com(libzfs_handle_t *hdl, uint64_t *outnv, uint64_t *outlen,
1115 nvlist_t *nvl)
1116 {
1117 char *packed;
1118 size_t len;
1119
1120 verify(nvlist_size(nvl, &len, NV_ENCODE_NATIVE) == 0);
1121
1122 if ((packed = zfs_alloc(hdl, len)) == NULL)
1123 return (-1);
1124
1125 verify(nvlist_pack(nvl, &packed, &len, NV_ENCODE_NATIVE, 0) == 0);
1126
1127 *outnv = (uint64_t)(uintptr_t)packed;
1128 *outlen = len;
1129
1130 return (0);
1131 }
1132
1133 int
1134 zcmd_write_conf_nvlist(libzfs_handle_t *hdl, zfs_cmd_t *zc, nvlist_t *nvl)
1135 {
1136 return (zcmd_write_nvlist_com(hdl, &zc->zc_nvlist_conf,
1137 &zc->zc_nvlist_conf_size, nvl));
1138 }
1139
1140 int
1141 zcmd_write_src_nvlist(libzfs_handle_t *hdl, zfs_cmd_t *zc, nvlist_t *nvl)
1142 {
1143 return (zcmd_write_nvlist_com(hdl, &zc->zc_nvlist_src,
1144 &zc->zc_nvlist_src_size, nvl));
1145 }
1146
1147 /*
1148 * Unpacks an nvlist from the ZFS ioctl command structure.
1149 */
1150 int
1151 zcmd_read_dst_nvlist(libzfs_handle_t *hdl, zfs_cmd_t *zc, nvlist_t **nvlp)
1152 {
1153 if (nvlist_unpack((void *)(uintptr_t)zc->zc_nvlist_dst,
1154 zc->zc_nvlist_dst_size, nvlp, 0) != 0)
1155 return (no_memory(hdl));
1156
1157 return (0);
1158 }
1159
1160 int
1161 zfs_ioctl(libzfs_handle_t *hdl, int request, zfs_cmd_t *zc)
1162 {
1163 return (ioctl(hdl->libzfs_fd, request, zc));
1164 }
1165
1166 /*
1167 * ================================================================
1168 * API shared by zfs and zpool property management
1169 * ================================================================
1170 */
1171
1172 static void
1173 zprop_print_headers(zprop_get_cbdata_t *cbp, zfs_type_t type)
1174 {
1175 zprop_list_t *pl = cbp->cb_proplist;
1176 int i;
1177 char *title;
1178 size_t len;
1179
1180 cbp->cb_first = B_FALSE;
1181 if (cbp->cb_scripted)
1182 return;
1183
1184 /*
1185 * Start with the length of the column headers.
1186 */
1187 cbp->cb_colwidths[GET_COL_NAME] = strlen(dgettext(TEXT_DOMAIN, "NAME"));
1188 cbp->cb_colwidths[GET_COL_PROPERTY] = strlen(dgettext(TEXT_DOMAIN,
1189 "PROPERTY"));
1190 cbp->cb_colwidths[GET_COL_VALUE] = strlen(dgettext(TEXT_DOMAIN,
1191 "VALUE"));
1192 cbp->cb_colwidths[GET_COL_RECVD] = strlen(dgettext(TEXT_DOMAIN,
1193 "RECEIVED"));
1194 cbp->cb_colwidths[GET_COL_SOURCE] = strlen(dgettext(TEXT_DOMAIN,
1195 "SOURCE"));
1196
1197 /* first property is always NAME */
1198 assert(cbp->cb_proplist->pl_prop ==
1199 ((type == ZFS_TYPE_POOL) ? ZPOOL_PROP_NAME : ZFS_PROP_NAME));
1200
1201 /*
1202 * Go through and calculate the widths for each column. For the
1203 * 'source' column, we kludge it up by taking the worst-case scenario of
1204 * inheriting from the longest name. This is acceptable because in the
1205 * majority of cases 'SOURCE' is the last column displayed, and we don't
1206 * use the width anyway. Note that the 'VALUE' column can be oversized,
1207 * if the name of the property is much longer than any values we find.
1208 */
1209 for (pl = cbp->cb_proplist; pl != NULL; pl = pl->pl_next) {
1210 /*
1211 * 'PROPERTY' column
1212 */
1213 if (pl->pl_prop != ZPROP_INVAL) {
1214 const char *propname = (type == ZFS_TYPE_POOL) ?
1215 zpool_prop_to_name(pl->pl_prop) :
1216 zfs_prop_to_name(pl->pl_prop);
1217
1218 len = strlen(propname);
1219 if (len > cbp->cb_colwidths[GET_COL_PROPERTY])
1220 cbp->cb_colwidths[GET_COL_PROPERTY] = len;
1221 } else {
1222 len = strlen(pl->pl_user_prop);
1223 if (len > cbp->cb_colwidths[GET_COL_PROPERTY])
1224 cbp->cb_colwidths[GET_COL_PROPERTY] = len;
1225 }
1226
1227 /*
1228 * 'VALUE' column. The first property is always the 'name'
1229 * property that was tacked on either by /sbin/zfs's
1230 * zfs_do_get() or when calling zprop_expand_list(), so we
1231 * ignore its width. If the user specified the name property
1232 * to display, then it will be later in the list in any case.
1233 */
1234 if (pl != cbp->cb_proplist &&
1235 pl->pl_width > cbp->cb_colwidths[GET_COL_VALUE])
1236 cbp->cb_colwidths[GET_COL_VALUE] = pl->pl_width;
1237
1238 /* 'RECEIVED' column. */
1239 if (pl != cbp->cb_proplist &&
1240 pl->pl_recvd_width > cbp->cb_colwidths[GET_COL_RECVD])
1241 cbp->cb_colwidths[GET_COL_RECVD] = pl->pl_recvd_width;
1242
1243 /*
1244 * 'NAME' and 'SOURCE' columns
1245 */
1246 if (pl->pl_prop == (type == ZFS_TYPE_POOL ? ZPOOL_PROP_NAME :
1247 ZFS_PROP_NAME) &&
1248 pl->pl_width > cbp->cb_colwidths[GET_COL_NAME]) {
1249 cbp->cb_colwidths[GET_COL_NAME] = pl->pl_width;
1250 cbp->cb_colwidths[GET_COL_SOURCE] = pl->pl_width +
1251 strlen(dgettext(TEXT_DOMAIN, "inherited from"));
1252 }
1253 }
1254
1255 /*
1256 * Now go through and print the headers.
1257 */
1258 for (i = 0; i < ZFS_GET_NCOLS; i++) {
1259 switch (cbp->cb_columns[i]) {
1260 case GET_COL_NAME:
1261 title = dgettext(TEXT_DOMAIN, "NAME");
1262 break;
1263 case GET_COL_PROPERTY:
1264 title = dgettext(TEXT_DOMAIN, "PROPERTY");
1265 break;
1266 case GET_COL_VALUE:
1267 title = dgettext(TEXT_DOMAIN, "VALUE");
1268 break;
1269 case GET_COL_RECVD:
1270 title = dgettext(TEXT_DOMAIN, "RECEIVED");
1271 break;
1272 case GET_COL_SOURCE:
1273 title = dgettext(TEXT_DOMAIN, "SOURCE");
1274 break;
1275 default:
1276 title = NULL;
1277 }
1278
1279 if (title != NULL) {
1280 if (i == (ZFS_GET_NCOLS - 1) ||
1281 cbp->cb_columns[i + 1] == GET_COL_NONE)
1282 (void) printf("%s", title);
1283 else
1284 (void) printf("%-*s ",
1285 cbp->cb_colwidths[cbp->cb_columns[i]],
1286 title);
1287 }
1288 }
1289 (void) printf("\n");
1290 }
1291
1292 /*
1293 * Display a single line of output, according to the settings in the callback
1294 * structure.
1295 */
1296 void
1297 zprop_print_one_property(const char *name, zprop_get_cbdata_t *cbp,
1298 const char *propname, const char *value, zprop_source_t sourcetype,
1299 const char *source, const char *recvd_value)
1300 {
1301 int i;
1302 const char *str = NULL;
1303 char buf[128];
1304
1305 /*
1306 * Ignore those source types that the user has chosen to ignore.
1307 */
1308 if ((sourcetype & cbp->cb_sources) == 0)
1309 return;
1310
1311 if (cbp->cb_first)
1312 zprop_print_headers(cbp, cbp->cb_type);
1313
1314 for (i = 0; i < ZFS_GET_NCOLS; i++) {
1315 switch (cbp->cb_columns[i]) {
1316 case GET_COL_NAME:
1317 str = name;
1318 break;
1319
1320 case GET_COL_PROPERTY:
1321 str = propname;
1322 break;
1323
1324 case GET_COL_VALUE:
1325 str = value;
1326 break;
1327
1328 case GET_COL_SOURCE:
1329 switch (sourcetype) {
1330 case ZPROP_SRC_NONE:
1331 str = "-";
1332 break;
1333
1334 case ZPROP_SRC_DEFAULT:
1335 str = "default";
1336 break;
1337
1338 case ZPROP_SRC_LOCAL:
1339 str = "local";
1340 break;
1341
1342 case ZPROP_SRC_TEMPORARY:
1343 str = "temporary";
1344 break;
1345
1346 case ZPROP_SRC_INHERITED:
1347 (void) snprintf(buf, sizeof (buf),
1348 "inherited from %s", source);
1349 str = buf;
1350 break;
1351 case ZPROP_SRC_RECEIVED:
1352 str = "received";
1353 break;
1354 }
1355 break;
1356
1357 case GET_COL_RECVD:
1358 str = (recvd_value == NULL ? "-" : recvd_value);
1359 break;
1360
1361 default:
1362 continue;
1363 }
1364
1365 if (cbp->cb_columns[i + 1] == GET_COL_NONE)
1366 (void) printf("%s", str);
1367 else if (cbp->cb_scripted)
1368 (void) printf("%s\t", str);
1369 else
1370 (void) printf("%-*s ",
1371 cbp->cb_colwidths[cbp->cb_columns[i]],
1372 str);
1373 }
1374
1375 (void) printf("\n");
1376 }
1377
1378 /*
1379 * Given a numeric suffix, convert the value into a number of bits that the
1380 * resulting value must be shifted.
1381 */
1382 static int
1383 str2shift(libzfs_handle_t *hdl, const char *buf)
1384 {
1385 const char *ends = "BKMGTPEZ";
1386 int i;
1387
1388 if (buf[0] == '\0')
1389 return (0);
1390 for (i = 0; i < strlen(ends); i++) {
1391 if (toupper(buf[0]) == ends[i])
1392 break;
1393 }
1394 if (i == strlen(ends)) {
1395 if (hdl)
1396 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1397 "invalid numeric suffix '%s'"), buf);
1398 return (-1);
1399 }
1400
1401 /*
1402 * Allow 'G' = 'GB' = 'GiB', case-insensitively.
1403 * However, 'BB' and 'BiB' are disallowed.
1404 */
1405 if (buf[1] == '\0' ||
1406 (toupper(buf[0]) != 'B' &&
1407 ((toupper(buf[1]) == 'B' && buf[2] == '\0') ||
1408 (toupper(buf[1]) == 'I' && toupper(buf[2]) == 'B' &&
1409 buf[3] == '\0'))))
1410 return (10 * i);
1411
1412 if (hdl)
1413 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1414 "invalid numeric suffix '%s'"), buf);
1415 return (-1);
1416 }
1417
1418 /*
1419 * Convert a string of the form '100G' into a real number. Used when setting
1420 * properties or creating a volume. 'buf' is used to place an extended error
1421 * message for the caller to use.
1422 */
1423 int
1424 zfs_nicestrtonum(libzfs_handle_t *hdl, const char *value, uint64_t *num)
1425 {
1426 char *end;
1427 int shift;
1428
1429 *num = 0;
1430
1431 /* Check to see if this looks like a number. */
1432 if ((value[0] < '0' || value[0] > '9') && value[0] != '.') {
1433 if (hdl)
1434 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1435 "bad numeric value '%s'"), value);
1436 return (-1);
1437 }
1438
1439 /* Rely on strtoull() to process the numeric portion. */
1440 errno = 0;
1441 *num = strtoull(value, &end, 10);
1442
1443 /*
1444 * Check for ERANGE, which indicates that the value is too large to fit
1445 * in a 64-bit value.
1446 */
1447 if (errno == ERANGE) {
1448 if (hdl)
1449 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1450 "numeric value is too large"));
1451 return (-1);
1452 }
1453
1454 /*
1455 * If we have a decimal value, then do the computation with floating
1456 * point arithmetic. Otherwise, use standard arithmetic.
1457 */
1458 if (*end == '.') {
1459 double fval = strtod(value, &end);
1460
1461 if ((shift = str2shift(hdl, end)) == -1)
1462 return (-1);
1463
1464 fval *= pow(2, shift);
1465
1466 if (fval > UINT64_MAX) {
1467 if (hdl)
1468 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1469 "numeric value is too large"));
1470 return (-1);
1471 }
1472
1473 *num = (uint64_t)fval;
1474 } else {
1475 if ((shift = str2shift(hdl, end)) == -1)
1476 return (-1);
1477
1478 /* Check for overflow */
1479 if (shift >= 64 || (*num << shift) >> shift != *num) {
1480 if (hdl)
1481 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1482 "numeric value is too large"));
1483 return (-1);
1484 }
1485
1486 *num <<= shift;
1487 }
1488
1489 return (0);
1490 }
1491
1492 /*
1493 * Given a propname=value nvpair to set, parse any numeric properties
1494 * (index, boolean, etc) if they are specified as strings and add the
1495 * resulting nvpair to the returned nvlist.
1496 *
1497 * At the DSL layer, all properties are either 64-bit numbers or strings.
1498 * We want the user to be able to ignore this fact and specify properties
1499 * as native values (numbers, for example) or as strings (to simplify
1500 * command line utilities). This also handles converting index types
1501 * (compression, checksum, etc) from strings to their on-disk index.
1502 */
1503 int
1504 zprop_parse_value(libzfs_handle_t *hdl, nvpair_t *elem, int prop,
1505 zfs_type_t type, nvlist_t *ret, char **svalp, uint64_t *ivalp,
1506 const char *errbuf)
1507 {
1508 data_type_t datatype = nvpair_type(elem);
1509 zprop_type_t proptype;
1510 const char *propname;
1511 char *value;
1512 boolean_t isnone = B_FALSE;
1513
1514 if (type == ZFS_TYPE_POOL) {
1515 proptype = zpool_prop_get_type(prop);
1516 propname = zpool_prop_to_name(prop);
1517 } else {
1518 proptype = zfs_prop_get_type(prop);
1519 propname = zfs_prop_to_name(prop);
1520 }
1521
1522 /*
1523 * Convert any properties to the internal DSL value types.
1524 */
1525 *svalp = NULL;
1526 *ivalp = 0;
1527
1528 switch (proptype) {
1529 case PROP_TYPE_STRING:
1530 if (datatype != DATA_TYPE_STRING) {
1531 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1532 "'%s' must be a string"), nvpair_name(elem));
1533 goto error;
1534 }
1535 (void) nvpair_value_string(elem, svalp);
1536 if (strlen(*svalp) >= ZFS_MAXPROPLEN) {
1537 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1538 "'%s' is too long"), nvpair_name(elem));
1539 goto error;
1540 }
1541 break;
1542
1543 case PROP_TYPE_NUMBER:
1544 if (datatype == DATA_TYPE_STRING) {
1545 (void) nvpair_value_string(elem, &value);
1546 if (strcmp(value, "none") == 0) {
1547 isnone = B_TRUE;
1548 } else if (zfs_nicestrtonum(hdl, value, ivalp)
1549 != 0) {
1550 goto error;
1551 }
1552 } else if (datatype == DATA_TYPE_UINT64) {
1553 (void) nvpair_value_uint64(elem, ivalp);
1554 } else {
1555 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1556 "'%s' must be a number"), nvpair_name(elem));
1557 goto error;
1558 }
1559
1560 /*
1561 * Quota special: force 'none' and don't allow 0.
1562 */
1563 if ((type & ZFS_TYPE_DATASET) && *ivalp == 0 && !isnone &&
1564 (prop == ZFS_PROP_QUOTA || prop == ZFS_PROP_REFQUOTA)) {
1565 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1566 "use 'none' to disable quota/refquota"));
1567 goto error;
1568 }
1569
1570 /*
1571 * Special handling for "*_limit=none". In this case it's not
1572 * 0 but UINT64_MAX.
1573 */
1574 if ((type & ZFS_TYPE_DATASET) && isnone &&
1575 (prop == ZFS_PROP_FILESYSTEM_LIMIT ||
1576 prop == ZFS_PROP_SNAPSHOT_LIMIT)) {
1577 *ivalp = UINT64_MAX;
1578 }
1579 break;
1580
1581 case PROP_TYPE_INDEX:
1582 if (datatype != DATA_TYPE_STRING) {
1583 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1584 "'%s' must be a string"), nvpair_name(elem));
1585 goto error;
1586 }
1587
1588 (void) nvpair_value_string(elem, &value);
1589
1590 if (zprop_string_to_index(prop, value, ivalp, type) != 0) {
1591 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1592 "'%s' must be one of '%s'"), propname,
1593 zprop_values(prop, type));
1594 goto error;
1595 }
1596 break;
1597
1598 default:
1599 abort();
1600 }
1601
1602 /*
1603 * Add the result to our return set of properties.
1604 */
1605 if (*svalp != NULL) {
1606 if (nvlist_add_string(ret, propname, *svalp) != 0) {
1607 (void) no_memory(hdl);
1608 return (-1);
1609 }
1610 } else {
1611 if (nvlist_add_uint64(ret, propname, *ivalp) != 0) {
1612 (void) no_memory(hdl);
1613 return (-1);
1614 }
1615 }
1616
1617 return (0);
1618 error:
1619 (void) zfs_error(hdl, EZFS_BADPROP, errbuf);
1620 return (-1);
1621 }
1622
1623 static int
1624 addlist(libzfs_handle_t *hdl, char *propname, zprop_list_t **listp,
1625 zfs_type_t type)
1626 {
1627 int prop;
1628 zprop_list_t *entry;
1629
1630 prop = zprop_name_to_prop(propname, type);
1631
1632 if (prop != ZPROP_INVAL && !zprop_valid_for_type(prop, type, B_FALSE))
1633 prop = ZPROP_INVAL;
1634
1635 /*
1636 * When no property table entry can be found, return failure if
1637 * this is a pool property or if this isn't a user-defined
1638 * dataset property,
1639 */
1640 if (prop == ZPROP_INVAL && ((type == ZFS_TYPE_POOL &&
1641 !zpool_prop_feature(propname) &&
1642 !zpool_prop_unsupported(propname)) ||
1643 (type == ZFS_TYPE_DATASET && !zfs_prop_user(propname) &&
1644 !zfs_prop_userquota(propname) && !zfs_prop_written(propname)))) {
1645 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1646 "invalid property '%s'"), propname);
1647 return (zfs_error(hdl, EZFS_BADPROP,
1648 dgettext(TEXT_DOMAIN, "bad property list")));
1649 }
1650
1651 if ((entry = zfs_alloc(hdl, sizeof (zprop_list_t))) == NULL)
1652 return (-1);
1653
1654 entry->pl_prop = prop;
1655 if (prop == ZPROP_INVAL) {
1656 if ((entry->pl_user_prop = zfs_strdup(hdl, propname)) ==
1657 NULL) {
1658 free(entry);
1659 return (-1);
1660 }
1661 entry->pl_width = strlen(propname);
1662 } else {
1663 entry->pl_width = zprop_width(prop, &entry->pl_fixed,
1664 type);
1665 }
1666
1667 *listp = entry;
1668
1669 return (0);
1670 }
1671
1672 /*
1673 * Given a comma-separated list of properties, construct a property list
1674 * containing both user-defined and native properties. This function will
1675 * return a NULL list if 'all' is specified, which can later be expanded
1676 * by zprop_expand_list().
1677 */
1678 int
1679 zprop_get_list(libzfs_handle_t *hdl, char *props, zprop_list_t **listp,
1680 zfs_type_t type)
1681 {
1682 *listp = NULL;
1683
1684 /*
1685 * If 'all' is specified, return a NULL list.
1686 */
1687 if (strcmp(props, "all") == 0)
1688 return (0);
1689
1690 /*
1691 * If no props were specified, return an error.
1692 */
1693 if (props[0] == '\0') {
1694 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1695 "no properties specified"));
1696 return (zfs_error(hdl, EZFS_BADPROP, dgettext(TEXT_DOMAIN,
1697 "bad property list")));
1698 }
1699
1700 /*
1701 * It would be nice to use getsubopt() here, but the inclusion of column
1702 * aliases makes this more effort than it's worth.
1703 */
1704 while (*props != '\0') {
1705 size_t len;
1706 char *p;
1707 char c;
1708
1709 if ((p = strchr(props, ',')) == NULL) {
1710 len = strlen(props);
1711 p = props + len;
1712 } else {
1713 len = p - props;
1714 }
1715
1716 /*
1717 * Check for empty options.
1718 */
1719 if (len == 0) {
1720 zfs_error_aux(hdl, dgettext(TEXT_DOMAIN,
1721 "empty property name"));
1722 return (zfs_error(hdl, EZFS_BADPROP,
1723 dgettext(TEXT_DOMAIN, "bad property list")));
1724 }
1725
1726 /*
1727 * Check all regular property names.
1728 */
1729 c = props[len];
1730 props[len] = '\0';
1731
1732 if (strcmp(props, "space") == 0) {
1733 static char *spaceprops[] = {
1734 "name", "avail", "used", "usedbysnapshots",
1735 "usedbydataset", "usedbyrefreservation",
1736 "usedbychildren", NULL
1737 };
1738 int i;
1739
1740 for (i = 0; spaceprops[i]; i++) {
1741 if (addlist(hdl, spaceprops[i], listp, type))
1742 return (-1);
1743 listp = &(*listp)->pl_next;
1744 }
1745 } else {
1746 if (addlist(hdl, props, listp, type))
1747 return (-1);
1748 listp = &(*listp)->pl_next;
1749 }
1750
1751 props = p;
1752 if (c == ',')
1753 props++;
1754 }
1755
1756 return (0);
1757 }
1758
1759 void
1760 zprop_free_list(zprop_list_t *pl)
1761 {
1762 zprop_list_t *next;
1763
1764 while (pl != NULL) {
1765 next = pl->pl_next;
1766 free(pl->pl_user_prop);
1767 free(pl);
1768 pl = next;
1769 }
1770 }
1771
1772 typedef struct expand_data {
1773 zprop_list_t **last;
1774 libzfs_handle_t *hdl;
1775 zfs_type_t type;
1776 } expand_data_t;
1777
1778 int
1779 zprop_expand_list_cb(int prop, void *cb)
1780 {
1781 zprop_list_t *entry;
1782 expand_data_t *edp = cb;
1783
1784 if ((entry = zfs_alloc(edp->hdl, sizeof (zprop_list_t))) == NULL)
1785 return (ZPROP_INVAL);
1786
1787 entry->pl_prop = prop;
1788 entry->pl_width = zprop_width(prop, &entry->pl_fixed, edp->type);
1789 entry->pl_all = B_TRUE;
1790
1791 *(edp->last) = entry;
1792 edp->last = &entry->pl_next;
1793
1794 return (ZPROP_CONT);
1795 }
1796
1797 int
1798 zprop_expand_list(libzfs_handle_t *hdl, zprop_list_t **plp, zfs_type_t type)
1799 {
1800 zprop_list_t *entry;
1801 zprop_list_t **last;
1802 expand_data_t exp;
1803
1804 if (*plp == NULL) {
1805 /*
1806 * If this is the very first time we've been called for an 'all'
1807 * specification, expand the list to include all native
1808 * properties.
1809 */
1810 last = plp;
1811
1812 exp.last = last;
1813 exp.hdl = hdl;
1814 exp.type = type;
1815
1816 if (zprop_iter_common(zprop_expand_list_cb, &exp, B_FALSE,
1817 B_FALSE, type) == ZPROP_INVAL)
1818 return (-1);
1819
1820 /*
1821 * Add 'name' to the beginning of the list, which is handled
1822 * specially.
1823 */
1824 if ((entry = zfs_alloc(hdl, sizeof (zprop_list_t))) == NULL)
1825 return (-1);
1826
1827 entry->pl_prop = (type == ZFS_TYPE_POOL) ? ZPOOL_PROP_NAME :
1828 ZFS_PROP_NAME;
1829 entry->pl_width = zprop_width(entry->pl_prop,
1830 &entry->pl_fixed, type);
1831 entry->pl_all = B_TRUE;
1832 entry->pl_next = *plp;
1833 *plp = entry;
1834 }
1835 return (0);
1836 }
1837
1838 int
1839 zprop_iter(zprop_func func, void *cb, boolean_t show_all, boolean_t ordered,
1840 zfs_type_t type)
1841 {
1842 return (zprop_iter_common(func, cb, show_all, ordered, type));
1843 }