]> git.proxmox.com Git - mirror_zfs-debian.git/blob - cmd/zpool/zpool_vdev.c
97faa5f9bee121644ddcf4fcac50c27a4e14475b
[mirror_zfs-debian.git] / cmd / zpool / zpool_vdev.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, 2015 by Delphix. All rights reserved.
25 * Copyright (c) 2016 Intel Corporation.
26 * Copyright 2016 Igor Kozhukhov <ikozhukhov@gmail.com>.
27 */
28
29 /*
30 * Functions to convert between a list of vdevs and an nvlist representing the
31 * configuration. Each entry in the list can be one of:
32 *
33 * Device vdevs
34 * disk=(path=..., devid=...)
35 * file=(path=...)
36 *
37 * Group vdevs
38 * raidz[1|2]=(...)
39 * mirror=(...)
40 *
41 * Hot spares
42 *
43 * While the underlying implementation supports it, group vdevs cannot contain
44 * other group vdevs. All userland verification of devices is contained within
45 * this file. If successful, the nvlist returned can be passed directly to the
46 * kernel; we've done as much verification as possible in userland.
47 *
48 * Hot spares are a special case, and passed down as an array of disk vdevs, at
49 * the same level as the root of the vdev tree.
50 *
51 * The only function exported by this file is 'make_root_vdev'. The
52 * function performs several passes:
53 *
54 * 1. Construct the vdev specification. Performs syntax validation and
55 * makes sure each device is valid.
56 * 2. Check for devices in use. Using libblkid to make sure that no
57 * devices are also in use. Some can be overridden using the 'force'
58 * flag, others cannot.
59 * 3. Check for replication errors if the 'force' flag is not specified.
60 * validates that the replication level is consistent across the
61 * entire pool.
62 * 4. Call libzfs to label any whole disks with an EFI label.
63 */
64
65 #include <assert.h>
66 #include <ctype.h>
67 #include <devid.h>
68 #include <errno.h>
69 #include <fcntl.h>
70 #include <libintl.h>
71 #include <libnvpair.h>
72 #include <limits.h>
73 #include <sys/spa.h>
74 #include <scsi/scsi.h>
75 #include <scsi/sg.h>
76 #include <stdio.h>
77 #include <string.h>
78 #include <unistd.h>
79 #include <sys/efi_partition.h>
80 #include <sys/stat.h>
81 #include <sys/vtoc.h>
82 #include <sys/mntent.h>
83 #include <uuid/uuid.h>
84 #include <blkid/blkid.h>
85 #include "zpool_util.h"
86 #include <sys/zfs_context.h>
87
88 /*
89 * For any given vdev specification, we can have multiple errors. The
90 * vdev_error() function keeps track of whether we have seen an error yet, and
91 * prints out a header if its the first error we've seen.
92 */
93 boolean_t error_seen;
94 boolean_t is_force;
95
96 typedef struct vdev_disk_db_entry
97 {
98 char id[24];
99 int sector_size;
100 } vdev_disk_db_entry_t;
101
102 /*
103 * Database of block devices that lie about physical sector sizes. The
104 * identification string must be precisely 24 characters to avoid false
105 * negatives
106 */
107 static vdev_disk_db_entry_t vdev_disk_database[] = {
108 {"ATA ADATA SSD S396 3", 8192},
109 {"ATA APPLE SSD SM128E", 8192},
110 {"ATA APPLE SSD SM256E", 8192},
111 {"ATA APPLE SSD SM512E", 8192},
112 {"ATA APPLE SSD SM768E", 8192},
113 {"ATA C400-MTFDDAC064M", 8192},
114 {"ATA C400-MTFDDAC128M", 8192},
115 {"ATA C400-MTFDDAC256M", 8192},
116 {"ATA C400-MTFDDAC512M", 8192},
117 {"ATA Corsair Force 3 ", 8192},
118 {"ATA Corsair Force GS", 8192},
119 {"ATA INTEL SSDSA2CT04", 8192},
120 {"ATA INTEL SSDSA2BZ10", 8192},
121 {"ATA INTEL SSDSA2BZ20", 8192},
122 {"ATA INTEL SSDSA2BZ30", 8192},
123 {"ATA INTEL SSDSA2CW04", 8192},
124 {"ATA INTEL SSDSA2CW08", 8192},
125 {"ATA INTEL SSDSA2CW12", 8192},
126 {"ATA INTEL SSDSA2CW16", 8192},
127 {"ATA INTEL SSDSA2CW30", 8192},
128 {"ATA INTEL SSDSA2CW60", 8192},
129 {"ATA INTEL SSDSC2CT06", 8192},
130 {"ATA INTEL SSDSC2CT12", 8192},
131 {"ATA INTEL SSDSC2CT18", 8192},
132 {"ATA INTEL SSDSC2CT24", 8192},
133 {"ATA INTEL SSDSC2CW06", 8192},
134 {"ATA INTEL SSDSC2CW12", 8192},
135 {"ATA INTEL SSDSC2CW18", 8192},
136 {"ATA INTEL SSDSC2CW24", 8192},
137 {"ATA INTEL SSDSC2CW48", 8192},
138 {"ATA KINGSTON SH100S3", 8192},
139 {"ATA KINGSTON SH103S3", 8192},
140 {"ATA M4-CT064M4SSD2 ", 8192},
141 {"ATA M4-CT128M4SSD2 ", 8192},
142 {"ATA M4-CT256M4SSD2 ", 8192},
143 {"ATA M4-CT512M4SSD2 ", 8192},
144 {"ATA OCZ-AGILITY2 ", 8192},
145 {"ATA OCZ-AGILITY3 ", 8192},
146 {"ATA OCZ-VERTEX2 3.5 ", 8192},
147 {"ATA OCZ-VERTEX3 ", 8192},
148 {"ATA OCZ-VERTEX3 LT ", 8192},
149 {"ATA OCZ-VERTEX3 MI ", 8192},
150 {"ATA OCZ-VERTEX4 ", 8192},
151 {"ATA SAMSUNG MZ7WD120", 8192},
152 {"ATA SAMSUNG MZ7WD240", 8192},
153 {"ATA SAMSUNG MZ7WD480", 8192},
154 {"ATA SAMSUNG MZ7WD960", 8192},
155 {"ATA SAMSUNG SSD 830 ", 8192},
156 {"ATA Samsung SSD 840 ", 8192},
157 {"ATA SanDisk SSD U100", 8192},
158 {"ATA TOSHIBA THNSNH06", 8192},
159 {"ATA TOSHIBA THNSNH12", 8192},
160 {"ATA TOSHIBA THNSNH25", 8192},
161 {"ATA TOSHIBA THNSNH51", 8192},
162 {"ATA APPLE SSD TS064C", 4096},
163 {"ATA APPLE SSD TS128C", 4096},
164 {"ATA APPLE SSD TS256C", 4096},
165 {"ATA APPLE SSD TS512C", 4096},
166 {"ATA INTEL SSDSA2M040", 4096},
167 {"ATA INTEL SSDSA2M080", 4096},
168 {"ATA INTEL SSDSA2M160", 4096},
169 {"ATA INTEL SSDSC2MH12", 4096},
170 {"ATA INTEL SSDSC2MH25", 4096},
171 {"ATA OCZ CORE_SSD ", 4096},
172 {"ATA OCZ-VERTEX ", 4096},
173 {"ATA SAMSUNG MCCOE32G", 4096},
174 {"ATA SAMSUNG MCCOE64G", 4096},
175 {"ATA SAMSUNG SSD PM80", 4096},
176 /* Flash drives optimized for 4KB IOs on larger pages */
177 {"ATA INTEL SSDSC2BA10", 4096},
178 {"ATA INTEL SSDSC2BA20", 4096},
179 {"ATA INTEL SSDSC2BA40", 4096},
180 {"ATA INTEL SSDSC2BA80", 4096},
181 {"ATA INTEL SSDSC2BB08", 4096},
182 {"ATA INTEL SSDSC2BB12", 4096},
183 {"ATA INTEL SSDSC2BB16", 4096},
184 {"ATA INTEL SSDSC2BB24", 4096},
185 {"ATA INTEL SSDSC2BB30", 4096},
186 {"ATA INTEL SSDSC2BB40", 4096},
187 {"ATA INTEL SSDSC2BB48", 4096},
188 {"ATA INTEL SSDSC2BB60", 4096},
189 {"ATA INTEL SSDSC2BB80", 4096},
190 {"ATA INTEL SSDSC2BW24", 4096},
191 {"ATA INTEL SSDSC2BP24", 4096},
192 {"ATA INTEL SSDSC2BP48", 4096},
193 {"NA SmrtStorSDLKAE9W", 4096},
194 /* Imported from Open Solaris */
195 {"ATA MARVELL SD88SA02", 4096},
196 /* Advanced format Hard drives */
197 {"ATA Hitachi HDS5C303", 4096},
198 {"ATA SAMSUNG HD204UI ", 4096},
199 {"ATA ST2000DL004 HD20", 4096},
200 {"ATA WDC WD10EARS-00M", 4096},
201 {"ATA WDC WD10EARS-00S", 4096},
202 {"ATA WDC WD10EARS-00Z", 4096},
203 {"ATA WDC WD15EARS-00M", 4096},
204 {"ATA WDC WD15EARS-00S", 4096},
205 {"ATA WDC WD15EARS-00Z", 4096},
206 {"ATA WDC WD20EARS-00M", 4096},
207 {"ATA WDC WD20EARS-00S", 4096},
208 {"ATA WDC WD20EARS-00Z", 4096},
209 {"ATA WDC WD1600BEVT-0", 4096},
210 {"ATA WDC WD2500BEVT-0", 4096},
211 {"ATA WDC WD3200BEVT-0", 4096},
212 {"ATA WDC WD5000BEVT-0", 4096},
213 /* Virtual disks: Assume zvols with default volblocksize */
214 #if 0
215 {"ATA QEMU HARDDISK ", 8192},
216 {"IET VIRTUAL-DISK ", 8192},
217 {"OI COMSTAR ", 8192},
218 {"SUN COMSTAR ", 8192},
219 {"NETAPP LUN ", 8192},
220 #endif
221 };
222
223 static const int vdev_disk_database_size =
224 sizeof (vdev_disk_database) / sizeof (vdev_disk_database[0]);
225
226 #define INQ_REPLY_LEN 96
227 #define INQ_CMD_LEN 6
228
229 static boolean_t
230 check_sector_size_database(char *path, int *sector_size)
231 {
232 unsigned char inq_buff[INQ_REPLY_LEN];
233 unsigned char sense_buffer[32];
234 unsigned char inq_cmd_blk[INQ_CMD_LEN] =
235 {INQUIRY, 0, 0, 0, INQ_REPLY_LEN, 0};
236 sg_io_hdr_t io_hdr;
237 int error;
238 int fd;
239 int i;
240
241 /* Prepare INQUIRY command */
242 memset(&io_hdr, 0, sizeof (sg_io_hdr_t));
243 io_hdr.interface_id = 'S';
244 io_hdr.cmd_len = sizeof (inq_cmd_blk);
245 io_hdr.mx_sb_len = sizeof (sense_buffer);
246 io_hdr.dxfer_direction = SG_DXFER_FROM_DEV;
247 io_hdr.dxfer_len = INQ_REPLY_LEN;
248 io_hdr.dxferp = inq_buff;
249 io_hdr.cmdp = inq_cmd_blk;
250 io_hdr.sbp = sense_buffer;
251 io_hdr.timeout = 10; /* 10 milliseconds is ample time */
252
253 if ((fd = open(path, O_RDONLY|O_DIRECT)) < 0)
254 return (B_FALSE);
255
256 error = ioctl(fd, SG_IO, (unsigned long) &io_hdr);
257
258 (void) close(fd);
259
260 if (error < 0)
261 return (B_FALSE);
262
263 if ((io_hdr.info & SG_INFO_OK_MASK) != SG_INFO_OK)
264 return (B_FALSE);
265
266 for (i = 0; i < vdev_disk_database_size; i++) {
267 if (memcmp(inq_buff + 8, vdev_disk_database[i].id, 24))
268 continue;
269
270 *sector_size = vdev_disk_database[i].sector_size;
271 return (B_TRUE);
272 }
273
274 return (B_FALSE);
275 }
276
277 /*PRINTFLIKE1*/
278 static void
279 vdev_error(const char *fmt, ...)
280 {
281 va_list ap;
282
283 if (!error_seen) {
284 (void) fprintf(stderr, gettext("invalid vdev specification\n"));
285 if (!is_force)
286 (void) fprintf(stderr, gettext("use '-f' to override "
287 "the following errors:\n"));
288 else
289 (void) fprintf(stderr, gettext("the following errors "
290 "must be manually repaired:\n"));
291 error_seen = B_TRUE;
292 }
293
294 va_start(ap, fmt);
295 (void) vfprintf(stderr, fmt, ap);
296 va_end(ap);
297 }
298
299 /*
300 * Check that a file is valid. All we can do in this case is check that it's
301 * not in use by another pool, and not in use by swap.
302 */
303 static int
304 check_file(const char *file, boolean_t force, boolean_t isspare)
305 {
306 char *name;
307 int fd;
308 int ret = 0;
309 pool_state_t state;
310 boolean_t inuse;
311
312 if ((fd = open(file, O_RDONLY)) < 0)
313 return (0);
314
315 if (zpool_in_use(g_zfs, fd, &state, &name, &inuse) == 0 && inuse) {
316 const char *desc;
317
318 switch (state) {
319 case POOL_STATE_ACTIVE:
320 desc = gettext("active");
321 break;
322
323 case POOL_STATE_EXPORTED:
324 desc = gettext("exported");
325 break;
326
327 case POOL_STATE_POTENTIALLY_ACTIVE:
328 desc = gettext("potentially active");
329 break;
330
331 default:
332 desc = gettext("unknown");
333 break;
334 }
335
336 /*
337 * Allow hot spares to be shared between pools.
338 */
339 if (state == POOL_STATE_SPARE && isspare) {
340 free(name);
341 (void) close(fd);
342 return (0);
343 }
344
345 if (state == POOL_STATE_ACTIVE ||
346 state == POOL_STATE_SPARE || !force) {
347 switch (state) {
348 case POOL_STATE_SPARE:
349 vdev_error(gettext("%s is reserved as a hot "
350 "spare for pool %s\n"), file, name);
351 break;
352 default:
353 vdev_error(gettext("%s is part of %s pool "
354 "'%s'\n"), file, desc, name);
355 break;
356 }
357 ret = -1;
358 }
359
360 free(name);
361 }
362
363 (void) close(fd);
364 return (ret);
365 }
366
367 static int
368 check_slice(const char *path, blkid_cache cache, int force, boolean_t isspare)
369 {
370 int err;
371 char *value;
372
373 /* No valid type detected device is safe to use */
374 value = blkid_get_tag_value(cache, "TYPE", path);
375 if (value == NULL)
376 return (0);
377
378 /*
379 * If libblkid detects a ZFS device, we check the device
380 * using check_file() to see if it's safe. The one safe
381 * case is a spare device shared between multiple pools.
382 */
383 if (strcmp(value, "zfs_member") == 0) {
384 err = check_file(path, force, isspare);
385 } else {
386 if (force) {
387 err = 0;
388 } else {
389 err = -1;
390 vdev_error(gettext("%s contains a filesystem of "
391 "type '%s'\n"), path, value);
392 }
393 }
394
395 free(value);
396
397 return (err);
398 }
399
400 /*
401 * Validate that a disk including all partitions are safe to use.
402 *
403 * For EFI labeled disks this can done relatively easily with the libefi
404 * library. The partition numbers are extracted from the label and used
405 * to generate the expected /dev/ paths. Each partition can then be
406 * checked for conflicts.
407 *
408 * For non-EFI labeled disks (MBR/EBR/etc) the same process is possible
409 * but due to the lack of a readily available libraries this scanning is
410 * not implemented. Instead only the device path as given is checked.
411 */
412 static int
413 check_disk(const char *path, blkid_cache cache, int force,
414 boolean_t isspare, boolean_t iswholedisk)
415 {
416 struct dk_gpt *vtoc;
417 char slice_path[MAXPATHLEN];
418 int err = 0;
419 int fd, i;
420
421 if (!iswholedisk)
422 return (check_slice(path, cache, force, isspare));
423
424 if ((fd = open(path, O_RDONLY|O_DIRECT|O_EXCL)) < 0) {
425 char *value = blkid_get_tag_value(cache, "TYPE", path);
426 (void) fprintf(stderr, gettext("%s is in use and contains "
427 "a %s filesystem.\n"), path, value ? value : "unknown");
428 return (-1);
429 }
430
431 /*
432 * Expected to fail for non-EFI labled disks. Just check the device
433 * as given and do not attempt to detect and scan partitions.
434 */
435 err = efi_alloc_and_read(fd, &vtoc);
436 if (err) {
437 (void) close(fd);
438 return (check_slice(path, cache, force, isspare));
439 }
440
441 /*
442 * The primary efi partition label is damaged however the secondary
443 * label at the end of the device is intact. Rather than use this
444 * label we should play it safe and treat this as a non efi device.
445 */
446 if (vtoc->efi_flags & EFI_GPT_PRIMARY_CORRUPT) {
447 efi_free(vtoc);
448 (void) close(fd);
449
450 if (force) {
451 /* Partitions will now be created using the backup */
452 return (0);
453 } else {
454 vdev_error(gettext("%s contains a corrupt primary "
455 "EFI label.\n"), path);
456 return (-1);
457 }
458 }
459
460 for (i = 0; i < vtoc->efi_nparts; i++) {
461
462 if (vtoc->efi_parts[i].p_tag == V_UNASSIGNED ||
463 uuid_is_null((uchar_t *)&vtoc->efi_parts[i].p_guid))
464 continue;
465
466 if (strncmp(path, UDISK_ROOT, strlen(UDISK_ROOT)) == 0)
467 (void) snprintf(slice_path, sizeof (slice_path),
468 "%s%s%d", path, "-part", i+1);
469 else
470 (void) snprintf(slice_path, sizeof (slice_path),
471 "%s%s%d", path, isdigit(path[strlen(path)-1]) ?
472 "p" : "", i+1);
473
474 err = check_slice(slice_path, cache, force, isspare);
475 if (err)
476 break;
477 }
478
479 efi_free(vtoc);
480 (void) close(fd);
481
482 return (err);
483 }
484
485 static int
486 check_device(const char *path, boolean_t force,
487 boolean_t isspare, boolean_t iswholedisk)
488 {
489 blkid_cache cache;
490 int error;
491
492 error = blkid_get_cache(&cache, NULL);
493 if (error != 0) {
494 (void) fprintf(stderr, gettext("unable to access the blkid "
495 "cache.\n"));
496 return (-1);
497 }
498
499 error = check_disk(path, cache, force, isspare, iswholedisk);
500 blkid_put_cache(cache);
501
502 return (error);
503 }
504
505 /*
506 * This may be a shorthand device path or it could be total gibberish.
507 * Check to see if it is a known device available in zfs_vdev_paths.
508 * As part of this check, see if we've been given an entire disk
509 * (minus the slice number).
510 */
511 static int
512 is_shorthand_path(const char *arg, char *path, size_t path_size,
513 struct stat64 *statbuf, boolean_t *wholedisk)
514 {
515 int error;
516
517 error = zfs_resolve_shortname(arg, path, path_size);
518 if (error == 0) {
519 *wholedisk = zfs_dev_is_whole_disk(path);
520 if (*wholedisk || (stat64(path, statbuf) == 0))
521 return (0);
522 }
523
524 strlcpy(path, arg, path_size);
525 memset(statbuf, 0, sizeof (*statbuf));
526 *wholedisk = B_FALSE;
527
528 return (error);
529 }
530
531 /*
532 * Determine if the given path is a hot spare within the given configuration.
533 * If no configuration is given we rely solely on the label.
534 */
535 static boolean_t
536 is_spare(nvlist_t *config, const char *path)
537 {
538 int fd;
539 pool_state_t state;
540 char *name = NULL;
541 nvlist_t *label;
542 uint64_t guid, spareguid;
543 nvlist_t *nvroot;
544 nvlist_t **spares;
545 uint_t i, nspares;
546 boolean_t inuse;
547
548 if ((fd = open(path, O_RDONLY)) < 0)
549 return (B_FALSE);
550
551 if (zpool_in_use(g_zfs, fd, &state, &name, &inuse) != 0 ||
552 !inuse ||
553 state != POOL_STATE_SPARE ||
554 zpool_read_label(fd, &label, NULL) != 0) {
555 free(name);
556 (void) close(fd);
557 return (B_FALSE);
558 }
559 free(name);
560 (void) close(fd);
561
562 if (config == NULL) {
563 nvlist_free(label);
564 return (B_TRUE);
565 }
566
567 verify(nvlist_lookup_uint64(label, ZPOOL_CONFIG_GUID, &guid) == 0);
568 nvlist_free(label);
569
570 verify(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE,
571 &nvroot) == 0);
572 if (nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_SPARES,
573 &spares, &nspares) == 0) {
574 for (i = 0; i < nspares; i++) {
575 verify(nvlist_lookup_uint64(spares[i],
576 ZPOOL_CONFIG_GUID, &spareguid) == 0);
577 if (spareguid == guid)
578 return (B_TRUE);
579 }
580 }
581
582 return (B_FALSE);
583 }
584
585 /*
586 * Create a leaf vdev. Determine if this is a file or a device. If it's a
587 * device, fill in the device id to make a complete nvlist. Valid forms for a
588 * leaf vdev are:
589 *
590 * /dev/xxx Complete disk path
591 * /xxx Full path to file
592 * xxx Shorthand for <zfs_vdev_paths>/xxx
593 */
594 static nvlist_t *
595 make_leaf_vdev(nvlist_t *props, const char *arg, uint64_t is_log)
596 {
597 char path[MAXPATHLEN];
598 struct stat64 statbuf;
599 nvlist_t *vdev = NULL;
600 char *type = NULL;
601 boolean_t wholedisk = B_FALSE;
602 uint64_t ashift = 0;
603 int err;
604
605 /*
606 * Determine what type of vdev this is, and put the full path into
607 * 'path'. We detect whether this is a device of file afterwards by
608 * checking the st_mode of the file.
609 */
610 if (arg[0] == '/') {
611 /*
612 * Complete device or file path. Exact type is determined by
613 * examining the file descriptor afterwards. Symbolic links
614 * are resolved to their real paths to determine whole disk
615 * and S_ISBLK/S_ISREG type checks. However, we are careful
616 * to store the given path as ZPOOL_CONFIG_PATH to ensure we
617 * can leverage udev's persistent device labels.
618 */
619 if (realpath(arg, path) == NULL) {
620 (void) fprintf(stderr,
621 gettext("cannot resolve path '%s'\n"), arg);
622 return (NULL);
623 }
624
625 wholedisk = zfs_dev_is_whole_disk(path);
626 if (!wholedisk && (stat64(path, &statbuf) != 0)) {
627 (void) fprintf(stderr,
628 gettext("cannot open '%s': %s\n"),
629 path, strerror(errno));
630 return (NULL);
631 }
632
633 /* After whole disk check restore original passed path */
634 strlcpy(path, arg, sizeof (path));
635 } else {
636 err = is_shorthand_path(arg, path, sizeof (path),
637 &statbuf, &wholedisk);
638 if (err != 0) {
639 /*
640 * If we got ENOENT, then the user gave us
641 * gibberish, so try to direct them with a
642 * reasonable error message. Otherwise,
643 * regurgitate strerror() since it's the best we
644 * can do.
645 */
646 if (err == ENOENT) {
647 (void) fprintf(stderr,
648 gettext("cannot open '%s': no such "
649 "device in %s\n"), arg, DISK_ROOT);
650 (void) fprintf(stderr,
651 gettext("must be a full path or "
652 "shorthand device name\n"));
653 return (NULL);
654 } else {
655 (void) fprintf(stderr,
656 gettext("cannot open '%s': %s\n"),
657 path, strerror(errno));
658 return (NULL);
659 }
660 }
661 }
662
663 /*
664 * Determine whether this is a device or a file.
665 */
666 if (wholedisk || S_ISBLK(statbuf.st_mode)) {
667 type = VDEV_TYPE_DISK;
668 } else if (S_ISREG(statbuf.st_mode)) {
669 type = VDEV_TYPE_FILE;
670 } else {
671 (void) fprintf(stderr, gettext("cannot use '%s': must be a "
672 "block device or regular file\n"), path);
673 return (NULL);
674 }
675
676 /*
677 * Finally, we have the complete device or file, and we know that it is
678 * acceptable to use. Construct the nvlist to describe this vdev. All
679 * vdevs have a 'path' element, and devices also have a 'devid' element.
680 */
681 verify(nvlist_alloc(&vdev, NV_UNIQUE_NAME, 0) == 0);
682 verify(nvlist_add_string(vdev, ZPOOL_CONFIG_PATH, path) == 0);
683 verify(nvlist_add_string(vdev, ZPOOL_CONFIG_TYPE, type) == 0);
684 verify(nvlist_add_uint64(vdev, ZPOOL_CONFIG_IS_LOG, is_log) == 0);
685 if (strcmp(type, VDEV_TYPE_DISK) == 0)
686 verify(nvlist_add_uint64(vdev, ZPOOL_CONFIG_WHOLE_DISK,
687 (uint64_t)wholedisk) == 0);
688
689 /*
690 * Override defaults if custom properties are provided.
691 */
692 if (props != NULL) {
693 char *value = NULL;
694
695 if (nvlist_lookup_string(props,
696 zpool_prop_to_name(ZPOOL_PROP_ASHIFT), &value) == 0) {
697 if (zfs_nicestrtonum(NULL, value, &ashift) != 0) {
698 (void) fprintf(stderr,
699 gettext("ashift must be a number.\n"));
700 return (NULL);
701 }
702 if (ashift != 0 &&
703 (ashift < ASHIFT_MIN || ashift > ASHIFT_MAX)) {
704 (void) fprintf(stderr,
705 gettext("invalid 'ashift=%" PRIu64 "' "
706 "property: only values between %" PRId32 " "
707 "and %" PRId32 " are allowed.\n"),
708 ashift, ASHIFT_MIN, ASHIFT_MAX);
709 return (NULL);
710 }
711 }
712 }
713
714 /*
715 * If the device is known to incorrectly report its physical sector
716 * size explicitly provide the known correct value.
717 */
718 if (ashift == 0) {
719 int sector_size;
720
721 if (check_sector_size_database(path, &sector_size) == B_TRUE)
722 ashift = highbit64(sector_size) - 1;
723 }
724
725 if (ashift > 0)
726 (void) nvlist_add_uint64(vdev, ZPOOL_CONFIG_ASHIFT, ashift);
727
728 return (vdev);
729 }
730
731 /*
732 * Go through and verify the replication level of the pool is consistent.
733 * Performs the following checks:
734 *
735 * For the new spec, verifies that devices in mirrors and raidz are the
736 * same size.
737 *
738 * If the current configuration already has inconsistent replication
739 * levels, ignore any other potential problems in the new spec.
740 *
741 * Otherwise, make sure that the current spec (if there is one) and the new
742 * spec have consistent replication levels.
743 */
744 typedef struct replication_level {
745 char *zprl_type;
746 uint64_t zprl_children;
747 uint64_t zprl_parity;
748 } replication_level_t;
749
750 #define ZPOOL_FUZZ (16 * 1024 * 1024)
751
752 static boolean_t
753 is_raidz_mirror(replication_level_t *a, replication_level_t *b,
754 replication_level_t **raidz, replication_level_t **mirror)
755 {
756 if (strcmp(a->zprl_type, "raidz") == 0 &&
757 strcmp(b->zprl_type, "mirror") == 0) {
758 *raidz = a;
759 *mirror = b;
760 return (B_TRUE);
761 }
762 return (B_FALSE);
763 }
764
765 /*
766 * Given a list of toplevel vdevs, return the current replication level. If
767 * the config is inconsistent, then NULL is returned. If 'fatal' is set, then
768 * an error message will be displayed for each self-inconsistent vdev.
769 */
770 static replication_level_t *
771 get_replication(nvlist_t *nvroot, boolean_t fatal)
772 {
773 nvlist_t **top;
774 uint_t t, toplevels;
775 nvlist_t **child;
776 uint_t c, children;
777 nvlist_t *nv;
778 char *type;
779 replication_level_t lastrep = {0};
780 replication_level_t rep;
781 replication_level_t *ret;
782 replication_level_t *raidz, *mirror;
783 boolean_t dontreport;
784
785 ret = safe_malloc(sizeof (replication_level_t));
786
787 verify(nvlist_lookup_nvlist_array(nvroot, ZPOOL_CONFIG_CHILDREN,
788 &top, &toplevels) == 0);
789
790 for (t = 0; t < toplevels; t++) {
791 uint64_t is_log = B_FALSE;
792
793 nv = top[t];
794
795 /*
796 * For separate logs we ignore the top level vdev replication
797 * constraints.
798 */
799 (void) nvlist_lookup_uint64(nv, ZPOOL_CONFIG_IS_LOG, &is_log);
800 if (is_log)
801 continue;
802
803 /* Ignore holes introduced by removing aux devices */
804 verify(nvlist_lookup_string(nv, ZPOOL_CONFIG_TYPE, &type) == 0);
805 if (strcmp(type, VDEV_TYPE_HOLE) == 0)
806 continue;
807
808 if (nvlist_lookup_nvlist_array(nv, ZPOOL_CONFIG_CHILDREN,
809 &child, &children) != 0) {
810 /*
811 * This is a 'file' or 'disk' vdev.
812 */
813 rep.zprl_type = type;
814 rep.zprl_children = 1;
815 rep.zprl_parity = 0;
816 } else {
817 uint64_t vdev_size;
818
819 /*
820 * This is a mirror or RAID-Z vdev. Go through and make
821 * sure the contents are all the same (files vs. disks),
822 * keeping track of the number of elements in the
823 * process.
824 *
825 * We also check that the size of each vdev (if it can
826 * be determined) is the same.
827 */
828 rep.zprl_type = type;
829 rep.zprl_children = 0;
830
831 if (strcmp(type, VDEV_TYPE_RAIDZ) == 0) {
832 verify(nvlist_lookup_uint64(nv,
833 ZPOOL_CONFIG_NPARITY,
834 &rep.zprl_parity) == 0);
835 assert(rep.zprl_parity != 0);
836 } else {
837 rep.zprl_parity = 0;
838 }
839
840 /*
841 * The 'dontreport' variable indicates that we've
842 * already reported an error for this spec, so don't
843 * bother doing it again.
844 */
845 type = NULL;
846 dontreport = 0;
847 vdev_size = -1ULL;
848 for (c = 0; c < children; c++) {
849 nvlist_t *cnv = child[c];
850 char *path;
851 struct stat64 statbuf;
852 uint64_t size = -1ULL;
853 char *childtype;
854 int fd, err;
855
856 rep.zprl_children++;
857
858 verify(nvlist_lookup_string(cnv,
859 ZPOOL_CONFIG_TYPE, &childtype) == 0);
860
861 /*
862 * If this is a replacing or spare vdev, then
863 * get the real first child of the vdev.
864 */
865 if (strcmp(childtype,
866 VDEV_TYPE_REPLACING) == 0 ||
867 strcmp(childtype, VDEV_TYPE_SPARE) == 0) {
868 nvlist_t **rchild;
869 uint_t rchildren;
870
871 verify(nvlist_lookup_nvlist_array(cnv,
872 ZPOOL_CONFIG_CHILDREN, &rchild,
873 &rchildren) == 0);
874 assert(rchildren == 2);
875 cnv = rchild[0];
876
877 verify(nvlist_lookup_string(cnv,
878 ZPOOL_CONFIG_TYPE,
879 &childtype) == 0);
880 }
881
882 verify(nvlist_lookup_string(cnv,
883 ZPOOL_CONFIG_PATH, &path) == 0);
884
885 /*
886 * If we have a raidz/mirror that combines disks
887 * with files, report it as an error.
888 */
889 if (!dontreport && type != NULL &&
890 strcmp(type, childtype) != 0) {
891 if (ret != NULL)
892 free(ret);
893 ret = NULL;
894 if (fatal)
895 vdev_error(gettext(
896 "mismatched replication "
897 "level: %s contains both "
898 "files and devices\n"),
899 rep.zprl_type);
900 else
901 return (NULL);
902 dontreport = B_TRUE;
903 }
904
905 /*
906 * According to stat(2), the value of 'st_size'
907 * is undefined for block devices and character
908 * devices. But there is no effective way to
909 * determine the real size in userland.
910 *
911 * Instead, we'll take advantage of an
912 * implementation detail of spec_size(). If the
913 * device is currently open, then we (should)
914 * return a valid size.
915 *
916 * If we still don't get a valid size (indicated
917 * by a size of 0 or MAXOFFSET_T), then ignore
918 * this device altogether.
919 */
920 if ((fd = open(path, O_RDONLY)) >= 0) {
921 err = fstat64_blk(fd, &statbuf);
922 (void) close(fd);
923 } else {
924 err = stat64(path, &statbuf);
925 }
926
927 if (err != 0 ||
928 statbuf.st_size == 0 ||
929 statbuf.st_size == MAXOFFSET_T)
930 continue;
931
932 size = statbuf.st_size;
933
934 /*
935 * Also make sure that devices and
936 * slices have a consistent size. If
937 * they differ by a significant amount
938 * (~16MB) then report an error.
939 */
940 if (!dontreport &&
941 (vdev_size != -1ULL &&
942 (labs(size - vdev_size) >
943 ZPOOL_FUZZ))) {
944 if (ret != NULL)
945 free(ret);
946 ret = NULL;
947 if (fatal)
948 vdev_error(gettext(
949 "%s contains devices of "
950 "different sizes\n"),
951 rep.zprl_type);
952 else
953 return (NULL);
954 dontreport = B_TRUE;
955 }
956
957 type = childtype;
958 vdev_size = size;
959 }
960 }
961
962 /*
963 * At this point, we have the replication of the last toplevel
964 * vdev in 'rep'. Compare it to 'lastrep' to see if its
965 * different.
966 */
967 if (lastrep.zprl_type != NULL) {
968 if (is_raidz_mirror(&lastrep, &rep, &raidz, &mirror) ||
969 is_raidz_mirror(&rep, &lastrep, &raidz, &mirror)) {
970 /*
971 * Accepted raidz and mirror when they can
972 * handle the same number of disk failures.
973 */
974 if (raidz->zprl_parity !=
975 mirror->zprl_children - 1) {
976 if (ret != NULL)
977 free(ret);
978 ret = NULL;
979 if (fatal)
980 vdev_error(gettext(
981 "mismatched replication "
982 "level: "
983 "%s and %s vdevs with "
984 "different redundancy, "
985 "%llu vs. %llu (%llu-way) "
986 "are present\n"),
987 raidz->zprl_type,
988 mirror->zprl_type,
989 raidz->zprl_parity,
990 mirror->zprl_children - 1,
991 mirror->zprl_children);
992 else
993 return (NULL);
994 }
995 } else if (strcmp(lastrep.zprl_type, rep.zprl_type) !=
996 0) {
997 if (ret != NULL)
998 free(ret);
999 ret = NULL;
1000 if (fatal)
1001 vdev_error(gettext(
1002 "mismatched replication level: "
1003 "both %s and %s vdevs are "
1004 "present\n"),
1005 lastrep.zprl_type, rep.zprl_type);
1006 else
1007 return (NULL);
1008 } else if (lastrep.zprl_parity != rep.zprl_parity) {
1009 if (ret)
1010 free(ret);
1011 ret = NULL;
1012 if (fatal)
1013 vdev_error(gettext(
1014 "mismatched replication level: "
1015 "both %llu and %llu device parity "
1016 "%s vdevs are present\n"),
1017 lastrep.zprl_parity,
1018 rep.zprl_parity,
1019 rep.zprl_type);
1020 else
1021 return (NULL);
1022 } else if (lastrep.zprl_children != rep.zprl_children) {
1023 if (ret)
1024 free(ret);
1025 ret = NULL;
1026 if (fatal)
1027 vdev_error(gettext(
1028 "mismatched replication level: "
1029 "both %llu-way and %llu-way %s "
1030 "vdevs are present\n"),
1031 lastrep.zprl_children,
1032 rep.zprl_children,
1033 rep.zprl_type);
1034 else
1035 return (NULL);
1036 }
1037 }
1038 lastrep = rep;
1039 }
1040
1041 if (ret != NULL)
1042 *ret = rep;
1043
1044 return (ret);
1045 }
1046
1047 /*
1048 * Check the replication level of the vdev spec against the current pool. Calls
1049 * get_replication() to make sure the new spec is self-consistent. If the pool
1050 * has a consistent replication level, then we ignore any errors. Otherwise,
1051 * report any difference between the two.
1052 */
1053 static int
1054 check_replication(nvlist_t *config, nvlist_t *newroot)
1055 {
1056 nvlist_t **child;
1057 uint_t children;
1058 replication_level_t *current = NULL, *new;
1059 replication_level_t *raidz, *mirror;
1060 int ret;
1061
1062 /*
1063 * If we have a current pool configuration, check to see if it's
1064 * self-consistent. If not, simply return success.
1065 */
1066 if (config != NULL) {
1067 nvlist_t *nvroot;
1068
1069 verify(nvlist_lookup_nvlist(config, ZPOOL_CONFIG_VDEV_TREE,
1070 &nvroot) == 0);
1071 if ((current = get_replication(nvroot, B_FALSE)) == NULL)
1072 return (0);
1073 }
1074 /*
1075 * for spares there may be no children, and therefore no
1076 * replication level to check
1077 */
1078 if ((nvlist_lookup_nvlist_array(newroot, ZPOOL_CONFIG_CHILDREN,
1079 &child, &children) != 0) || (children == 0)) {
1080 free(current);
1081 return (0);
1082 }
1083
1084 /*
1085 * If all we have is logs then there's no replication level to check.
1086 */
1087 if (num_logs(newroot) == children) {
1088 free(current);
1089 return (0);
1090 }
1091
1092 /*
1093 * Get the replication level of the new vdev spec, reporting any
1094 * inconsistencies found.
1095 */
1096 if ((new = get_replication(newroot, B_TRUE)) == NULL) {
1097 free(current);
1098 return (-1);
1099 }
1100
1101 /*
1102 * Check to see if the new vdev spec matches the replication level of
1103 * the current pool.
1104 */
1105 ret = 0;
1106 if (current != NULL) {
1107 if (is_raidz_mirror(current, new, &raidz, &mirror) ||
1108 is_raidz_mirror(new, current, &raidz, &mirror)) {
1109 if (raidz->zprl_parity != mirror->zprl_children - 1) {
1110 vdev_error(gettext(
1111 "mismatched replication level: pool and "
1112 "new vdev with different redundancy, %s "
1113 "and %s vdevs, %llu vs. %llu (%llu-way)\n"),
1114 raidz->zprl_type,
1115 mirror->zprl_type,
1116 raidz->zprl_parity,
1117 mirror->zprl_children - 1,
1118 mirror->zprl_children);
1119 ret = -1;
1120 }
1121 } else if (strcmp(current->zprl_type, new->zprl_type) != 0) {
1122 vdev_error(gettext(
1123 "mismatched replication level: pool uses %s "
1124 "and new vdev is %s\n"),
1125 current->zprl_type, new->zprl_type);
1126 ret = -1;
1127 } else if (current->zprl_parity != new->zprl_parity) {
1128 vdev_error(gettext(
1129 "mismatched replication level: pool uses %llu "
1130 "device parity and new vdev uses %llu\n"),
1131 current->zprl_parity, new->zprl_parity);
1132 ret = -1;
1133 } else if (current->zprl_children != new->zprl_children) {
1134 vdev_error(gettext(
1135 "mismatched replication level: pool uses %llu-way "
1136 "%s and new vdev uses %llu-way %s\n"),
1137 current->zprl_children, current->zprl_type,
1138 new->zprl_children, new->zprl_type);
1139 ret = -1;
1140 }
1141 }
1142
1143 free(new);
1144 if (current != NULL)
1145 free(current);
1146
1147 return (ret);
1148 }
1149
1150 static int
1151 zero_label(char *path)
1152 {
1153 const int size = 4096;
1154 char buf[size];
1155 int err, fd;
1156
1157 if ((fd = open(path, O_WRONLY|O_EXCL)) < 0) {
1158 (void) fprintf(stderr, gettext("cannot open '%s': %s\n"),
1159 path, strerror(errno));
1160 return (-1);
1161 }
1162
1163 memset(buf, 0, size);
1164 err = write(fd, buf, size);
1165 (void) fdatasync(fd);
1166 (void) close(fd);
1167
1168 if (err == -1) {
1169 (void) fprintf(stderr, gettext("cannot zero first %d bytes "
1170 "of '%s': %s\n"), size, path, strerror(errno));
1171 return (-1);
1172 }
1173
1174 if (err != size) {
1175 (void) fprintf(stderr, gettext("could only zero %d/%d bytes "
1176 "of '%s'\n"), err, size, path);
1177 return (-1);
1178 }
1179
1180 return (0);
1181 }
1182
1183 /*
1184 * Go through and find any whole disks in the vdev specification, labelling them
1185 * as appropriate. When constructing the vdev spec, we were unable to open this
1186 * device in order to provide a devid. Now that we have labelled the disk and
1187 * know that slice 0 is valid, we can construct the devid now.
1188 *
1189 * If the disk was already labeled with an EFI label, we will have gotten the
1190 * devid already (because we were able to open the whole disk). Otherwise, we
1191 * need to get the devid after we label the disk.
1192 */
1193 static int
1194 make_disks(zpool_handle_t *zhp, nvlist_t *nv)
1195 {
1196 nvlist_t **child;
1197 uint_t c, children;
1198 char *type, *path;
1199 char devpath[MAXPATHLEN];
1200 char udevpath[MAXPATHLEN];
1201 uint64_t wholedisk;
1202 struct stat64 statbuf;
1203 int is_exclusive = 0;
1204 int fd;
1205 int ret;
1206
1207 verify(nvlist_lookup_string(nv, ZPOOL_CONFIG_TYPE, &type) == 0);
1208
1209 if (nvlist_lookup_nvlist_array(nv, ZPOOL_CONFIG_CHILDREN,
1210 &child, &children) != 0) {
1211
1212 if (strcmp(type, VDEV_TYPE_DISK) != 0)
1213 return (0);
1214
1215 /*
1216 * We have a disk device. If this is a whole disk write
1217 * out the efi partition table, otherwise write zero's to
1218 * the first 4k of the partition. This is to ensure that
1219 * libblkid will not misidentify the partition due to a
1220 * magic value left by the previous filesystem.
1221 */
1222 verify(!nvlist_lookup_string(nv, ZPOOL_CONFIG_PATH, &path));
1223 verify(!nvlist_lookup_uint64(nv, ZPOOL_CONFIG_WHOLE_DISK,
1224 &wholedisk));
1225
1226 if (!wholedisk) {
1227 /*
1228 * Update device id string for mpath nodes (Linux only)
1229 */
1230 if (is_mpath_whole_disk(path))
1231 update_vdev_config_dev_strs(nv);
1232
1233 if (!is_spare(NULL, path))
1234 (void) zero_label(path);
1235 return (0);
1236 }
1237
1238 if (realpath(path, devpath) == NULL) {
1239 ret = errno;
1240 (void) fprintf(stderr,
1241 gettext("cannot resolve path '%s'\n"), path);
1242 return (ret);
1243 }
1244
1245 /*
1246 * Remove any previously existing symlink from a udev path to
1247 * the device before labeling the disk. This ensures that
1248 * only newly created links are used. Otherwise there is a
1249 * window between when udev deletes and recreates the link
1250 * during which access attempts will fail with ENOENT.
1251 */
1252 strlcpy(udevpath, path, MAXPATHLEN);
1253 (void) zfs_append_partition(udevpath, MAXPATHLEN);
1254
1255 fd = open(devpath, O_RDWR|O_EXCL);
1256 if (fd == -1) {
1257 if (errno == EBUSY)
1258 is_exclusive = 1;
1259 } else {
1260 (void) close(fd);
1261 }
1262
1263 /*
1264 * If the partition exists, contains a valid spare label,
1265 * and is opened exclusively there is no need to partition
1266 * it. Hot spares have already been partitioned and are
1267 * held open exclusively by the kernel as a safety measure.
1268 *
1269 * If the provided path is for a /dev/disk/ device its
1270 * symbolic link will be removed, partition table created,
1271 * and then block until udev creates the new link.
1272 */
1273 if (!is_exclusive || !is_spare(NULL, udevpath)) {
1274 char *devnode = strrchr(devpath, '/') + 1;
1275
1276 ret = strncmp(udevpath, UDISK_ROOT, strlen(UDISK_ROOT));
1277 if (ret == 0) {
1278 ret = lstat64(udevpath, &statbuf);
1279 if (ret == 0 && S_ISLNK(statbuf.st_mode))
1280 (void) unlink(udevpath);
1281 }
1282
1283 /*
1284 * When labeling a pool the raw device node name
1285 * is provided as it appears under /dev/.
1286 */
1287 if (zpool_label_disk(g_zfs, zhp, devnode) == -1)
1288 return (-1);
1289
1290 /*
1291 * Wait for udev to signal the device is available
1292 * by the provided path.
1293 */
1294 ret = zpool_label_disk_wait(udevpath, DISK_LABEL_WAIT);
1295 if (ret) {
1296 (void) fprintf(stderr,
1297 gettext("missing link: %s was "
1298 "partitioned but %s is missing\n"),
1299 devnode, udevpath);
1300 return (ret);
1301 }
1302
1303 ret = zero_label(udevpath);
1304 if (ret)
1305 return (ret);
1306 }
1307
1308 /*
1309 * Update the path to refer to the partition. The presence of
1310 * the 'whole_disk' field indicates to the CLI that we should
1311 * chop off the partition number when displaying the device in
1312 * future output.
1313 */
1314 verify(nvlist_add_string(nv, ZPOOL_CONFIG_PATH, udevpath) == 0);
1315
1316 /*
1317 * Update device id strings for whole disks (Linux only)
1318 */
1319 update_vdev_config_dev_strs(nv);
1320
1321 return (0);
1322 }
1323
1324 for (c = 0; c < children; c++)
1325 if ((ret = make_disks(zhp, child[c])) != 0)
1326 return (ret);
1327
1328 if (nvlist_lookup_nvlist_array(nv, ZPOOL_CONFIG_SPARES,
1329 &child, &children) == 0)
1330 for (c = 0; c < children; c++)
1331 if ((ret = make_disks(zhp, child[c])) != 0)
1332 return (ret);
1333
1334 if (nvlist_lookup_nvlist_array(nv, ZPOOL_CONFIG_L2CACHE,
1335 &child, &children) == 0)
1336 for (c = 0; c < children; c++)
1337 if ((ret = make_disks(zhp, child[c])) != 0)
1338 return (ret);
1339
1340 return (0);
1341 }
1342
1343 /*
1344 * Go through and find any devices that are in use. We rely on libdiskmgt for
1345 * the majority of this task.
1346 */
1347 static boolean_t
1348 is_device_in_use(nvlist_t *config, nvlist_t *nv, boolean_t force,
1349 boolean_t replacing, boolean_t isspare)
1350 {
1351 nvlist_t **child;
1352 uint_t c, children;
1353 char *type, *path;
1354 int ret = 0;
1355 char buf[MAXPATHLEN];
1356 uint64_t wholedisk = B_FALSE;
1357 boolean_t anyinuse = B_FALSE;
1358
1359 verify(nvlist_lookup_string(nv, ZPOOL_CONFIG_TYPE, &type) == 0);
1360
1361 if (nvlist_lookup_nvlist_array(nv, ZPOOL_CONFIG_CHILDREN,
1362 &child, &children) != 0) {
1363
1364 verify(!nvlist_lookup_string(nv, ZPOOL_CONFIG_PATH, &path));
1365 if (strcmp(type, VDEV_TYPE_DISK) == 0)
1366 verify(!nvlist_lookup_uint64(nv,
1367 ZPOOL_CONFIG_WHOLE_DISK, &wholedisk));
1368
1369 /*
1370 * As a generic check, we look to see if this is a replace of a
1371 * hot spare within the same pool. If so, we allow it
1372 * regardless of what libblkid or zpool_in_use() says.
1373 */
1374 if (replacing) {
1375 (void) strlcpy(buf, path, sizeof (buf));
1376 if (wholedisk) {
1377 ret = zfs_append_partition(buf, sizeof (buf));
1378 if (ret == -1)
1379 return (-1);
1380 }
1381
1382 if (is_spare(config, buf))
1383 return (B_FALSE);
1384 }
1385
1386 if (strcmp(type, VDEV_TYPE_DISK) == 0)
1387 ret = check_device(path, force, isspare, wholedisk);
1388
1389 else if (strcmp(type, VDEV_TYPE_FILE) == 0)
1390 ret = check_file(path, force, isspare);
1391
1392 return (ret != 0);
1393 }
1394
1395 for (c = 0; c < children; c++)
1396 if (is_device_in_use(config, child[c], force, replacing,
1397 B_FALSE))
1398 anyinuse = B_TRUE;
1399
1400 if (nvlist_lookup_nvlist_array(nv, ZPOOL_CONFIG_SPARES,
1401 &child, &children) == 0)
1402 for (c = 0; c < children; c++)
1403 if (is_device_in_use(config, child[c], force, replacing,
1404 B_TRUE))
1405 anyinuse = B_TRUE;
1406
1407 if (nvlist_lookup_nvlist_array(nv, ZPOOL_CONFIG_L2CACHE,
1408 &child, &children) == 0)
1409 for (c = 0; c < children; c++)
1410 if (is_device_in_use(config, child[c], force, replacing,
1411 B_FALSE))
1412 anyinuse = B_TRUE;
1413
1414 return (anyinuse);
1415 }
1416
1417 static const char *
1418 is_grouping(const char *type, int *mindev, int *maxdev)
1419 {
1420 if (strncmp(type, "raidz", 5) == 0) {
1421 const char *p = type + 5;
1422 char *end;
1423 long nparity;
1424
1425 if (*p == '\0') {
1426 nparity = 1;
1427 } else if (*p == '0') {
1428 return (NULL); /* no zero prefixes allowed */
1429 } else {
1430 errno = 0;
1431 nparity = strtol(p, &end, 10);
1432 if (errno != 0 || nparity < 1 || nparity >= 255 ||
1433 *end != '\0')
1434 return (NULL);
1435 }
1436
1437 if (mindev != NULL)
1438 *mindev = nparity + 1;
1439 if (maxdev != NULL)
1440 *maxdev = 255;
1441 return (VDEV_TYPE_RAIDZ);
1442 }
1443
1444 if (maxdev != NULL)
1445 *maxdev = INT_MAX;
1446
1447 if (strcmp(type, "mirror") == 0) {
1448 if (mindev != NULL)
1449 *mindev = 2;
1450 return (VDEV_TYPE_MIRROR);
1451 }
1452
1453 if (strcmp(type, "spare") == 0) {
1454 if (mindev != NULL)
1455 *mindev = 1;
1456 return (VDEV_TYPE_SPARE);
1457 }
1458
1459 if (strcmp(type, "log") == 0) {
1460 if (mindev != NULL)
1461 *mindev = 1;
1462 return (VDEV_TYPE_LOG);
1463 }
1464
1465 if (strcmp(type, "cache") == 0) {
1466 if (mindev != NULL)
1467 *mindev = 1;
1468 return (VDEV_TYPE_L2CACHE);
1469 }
1470
1471 return (NULL);
1472 }
1473
1474 /*
1475 * Construct a syntactically valid vdev specification,
1476 * and ensure that all devices and files exist and can be opened.
1477 * Note: we don't bother freeing anything in the error paths
1478 * because the program is just going to exit anyway.
1479 */
1480 nvlist_t *
1481 construct_spec(nvlist_t *props, int argc, char **argv)
1482 {
1483 nvlist_t *nvroot, *nv, **top, **spares, **l2cache;
1484 int t, toplevels, mindev, maxdev, nspares, nlogs, nl2cache;
1485 const char *type;
1486 uint64_t is_log;
1487 boolean_t seen_logs;
1488
1489 top = NULL;
1490 toplevels = 0;
1491 spares = NULL;
1492 l2cache = NULL;
1493 nspares = 0;
1494 nlogs = 0;
1495 nl2cache = 0;
1496 is_log = B_FALSE;
1497 seen_logs = B_FALSE;
1498 nvroot = NULL;
1499
1500 while (argc > 0) {
1501 nv = NULL;
1502
1503 /*
1504 * If it's a mirror or raidz, the subsequent arguments are
1505 * its leaves -- until we encounter the next mirror or raidz.
1506 */
1507 if ((type = is_grouping(argv[0], &mindev, &maxdev)) != NULL) {
1508 nvlist_t **child = NULL;
1509 int c, children = 0;
1510
1511 if (strcmp(type, VDEV_TYPE_SPARE) == 0) {
1512 if (spares != NULL) {
1513 (void) fprintf(stderr,
1514 gettext("invalid vdev "
1515 "specification: 'spare' can be "
1516 "specified only once\n"));
1517 goto spec_out;
1518 }
1519 is_log = B_FALSE;
1520 }
1521
1522 if (strcmp(type, VDEV_TYPE_LOG) == 0) {
1523 if (seen_logs) {
1524 (void) fprintf(stderr,
1525 gettext("invalid vdev "
1526 "specification: 'log' can be "
1527 "specified only once\n"));
1528 goto spec_out;
1529 }
1530 seen_logs = B_TRUE;
1531 is_log = B_TRUE;
1532 argc--;
1533 argv++;
1534 /*
1535 * A log is not a real grouping device.
1536 * We just set is_log and continue.
1537 */
1538 continue;
1539 }
1540
1541 if (strcmp(type, VDEV_TYPE_L2CACHE) == 0) {
1542 if (l2cache != NULL) {
1543 (void) fprintf(stderr,
1544 gettext("invalid vdev "
1545 "specification: 'cache' can be "
1546 "specified only once\n"));
1547 goto spec_out;
1548 }
1549 is_log = B_FALSE;
1550 }
1551
1552 if (is_log) {
1553 if (strcmp(type, VDEV_TYPE_MIRROR) != 0) {
1554 (void) fprintf(stderr,
1555 gettext("invalid vdev "
1556 "specification: unsupported 'log' "
1557 "device: %s\n"), type);
1558 goto spec_out;
1559 }
1560 nlogs++;
1561 }
1562
1563 for (c = 1; c < argc; c++) {
1564 if (is_grouping(argv[c], NULL, NULL) != NULL)
1565 break;
1566 children++;
1567 child = realloc(child,
1568 children * sizeof (nvlist_t *));
1569 if (child == NULL)
1570 zpool_no_memory();
1571 if ((nv = make_leaf_vdev(props, argv[c],
1572 B_FALSE)) == NULL) {
1573 for (c = 0; c < children - 1; c++)
1574 nvlist_free(child[c]);
1575 free(child);
1576 goto spec_out;
1577 }
1578
1579 child[children - 1] = nv;
1580 }
1581
1582 if (children < mindev) {
1583 (void) fprintf(stderr, gettext("invalid vdev "
1584 "specification: %s requires at least %d "
1585 "devices\n"), argv[0], mindev);
1586 for (c = 0; c < children; c++)
1587 nvlist_free(child[c]);
1588 free(child);
1589 goto spec_out;
1590 }
1591
1592 if (children > maxdev) {
1593 (void) fprintf(stderr, gettext("invalid vdev "
1594 "specification: %s supports no more than "
1595 "%d devices\n"), argv[0], maxdev);
1596 for (c = 0; c < children; c++)
1597 nvlist_free(child[c]);
1598 free(child);
1599 goto spec_out;
1600 }
1601
1602 argc -= c;
1603 argv += c;
1604
1605 if (strcmp(type, VDEV_TYPE_SPARE) == 0) {
1606 spares = child;
1607 nspares = children;
1608 continue;
1609 } else if (strcmp(type, VDEV_TYPE_L2CACHE) == 0) {
1610 l2cache = child;
1611 nl2cache = children;
1612 continue;
1613 } else {
1614 verify(nvlist_alloc(&nv, NV_UNIQUE_NAME,
1615 0) == 0);
1616 verify(nvlist_add_string(nv, ZPOOL_CONFIG_TYPE,
1617 type) == 0);
1618 verify(nvlist_add_uint64(nv,
1619 ZPOOL_CONFIG_IS_LOG, is_log) == 0);
1620 if (strcmp(type, VDEV_TYPE_RAIDZ) == 0) {
1621 verify(nvlist_add_uint64(nv,
1622 ZPOOL_CONFIG_NPARITY,
1623 mindev - 1) == 0);
1624 }
1625 verify(nvlist_add_nvlist_array(nv,
1626 ZPOOL_CONFIG_CHILDREN, child,
1627 children) == 0);
1628
1629 for (c = 0; c < children; c++)
1630 nvlist_free(child[c]);
1631 free(child);
1632 }
1633 } else {
1634 /*
1635 * We have a device. Pass off to make_leaf_vdev() to
1636 * construct the appropriate nvlist describing the vdev.
1637 */
1638 if ((nv = make_leaf_vdev(props, argv[0],
1639 is_log)) == NULL)
1640 goto spec_out;
1641
1642 if (is_log)
1643 nlogs++;
1644 argc--;
1645 argv++;
1646 }
1647
1648 toplevels++;
1649 top = realloc(top, toplevels * sizeof (nvlist_t *));
1650 if (top == NULL)
1651 zpool_no_memory();
1652 top[toplevels - 1] = nv;
1653 }
1654
1655 if (toplevels == 0 && nspares == 0 && nl2cache == 0) {
1656 (void) fprintf(stderr, gettext("invalid vdev "
1657 "specification: at least one toplevel vdev must be "
1658 "specified\n"));
1659 goto spec_out;
1660 }
1661
1662 if (seen_logs && nlogs == 0) {
1663 (void) fprintf(stderr, gettext("invalid vdev specification: "
1664 "log requires at least 1 device\n"));
1665 goto spec_out;
1666 }
1667
1668 /*
1669 * Finally, create nvroot and add all top-level vdevs to it.
1670 */
1671 verify(nvlist_alloc(&nvroot, NV_UNIQUE_NAME, 0) == 0);
1672 verify(nvlist_add_string(nvroot, ZPOOL_CONFIG_TYPE,
1673 VDEV_TYPE_ROOT) == 0);
1674 verify(nvlist_add_nvlist_array(nvroot, ZPOOL_CONFIG_CHILDREN,
1675 top, toplevels) == 0);
1676 if (nspares != 0)
1677 verify(nvlist_add_nvlist_array(nvroot, ZPOOL_CONFIG_SPARES,
1678 spares, nspares) == 0);
1679 if (nl2cache != 0)
1680 verify(nvlist_add_nvlist_array(nvroot, ZPOOL_CONFIG_L2CACHE,
1681 l2cache, nl2cache) == 0);
1682
1683 spec_out:
1684 for (t = 0; t < toplevels; t++)
1685 nvlist_free(top[t]);
1686 for (t = 0; t < nspares; t++)
1687 nvlist_free(spares[t]);
1688 for (t = 0; t < nl2cache; t++)
1689 nvlist_free(l2cache[t]);
1690
1691 free(spares);
1692 free(l2cache);
1693 free(top);
1694
1695 return (nvroot);
1696 }
1697
1698 nvlist_t *
1699 split_mirror_vdev(zpool_handle_t *zhp, char *newname, nvlist_t *props,
1700 splitflags_t flags, int argc, char **argv)
1701 {
1702 nvlist_t *newroot = NULL, **child;
1703 uint_t c, children;
1704
1705 if (argc > 0) {
1706 if ((newroot = construct_spec(props, argc, argv)) == NULL) {
1707 (void) fprintf(stderr, gettext("Unable to build a "
1708 "pool from the specified devices\n"));
1709 return (NULL);
1710 }
1711
1712 if (!flags.dryrun && make_disks(zhp, newroot) != 0) {
1713 nvlist_free(newroot);
1714 return (NULL);
1715 }
1716
1717 /* avoid any tricks in the spec */
1718 verify(nvlist_lookup_nvlist_array(newroot,
1719 ZPOOL_CONFIG_CHILDREN, &child, &children) == 0);
1720 for (c = 0; c < children; c++) {
1721 char *path;
1722 const char *type;
1723 int min, max;
1724
1725 verify(nvlist_lookup_string(child[c],
1726 ZPOOL_CONFIG_PATH, &path) == 0);
1727 if ((type = is_grouping(path, &min, &max)) != NULL) {
1728 (void) fprintf(stderr, gettext("Cannot use "
1729 "'%s' as a device for splitting\n"), type);
1730 nvlist_free(newroot);
1731 return (NULL);
1732 }
1733 }
1734 }
1735
1736 if (zpool_vdev_split(zhp, newname, &newroot, props, flags) != 0) {
1737 nvlist_free(newroot);
1738 return (NULL);
1739 }
1740
1741 return (newroot);
1742 }
1743
1744 /*
1745 * Get and validate the contents of the given vdev specification. This ensures
1746 * that the nvlist returned is well-formed, that all the devices exist, and that
1747 * they are not currently in use by any other known consumer. The 'poolconfig'
1748 * parameter is the current configuration of the pool when adding devices
1749 * existing pool, and is used to perform additional checks, such as changing the
1750 * replication level of the pool. It can be 'NULL' to indicate that this is a
1751 * new pool. The 'force' flag controls whether devices should be forcefully
1752 * added, even if they appear in use.
1753 */
1754 nvlist_t *
1755 make_root_vdev(zpool_handle_t *zhp, nvlist_t *props, int force, int check_rep,
1756 boolean_t replacing, boolean_t dryrun, int argc, char **argv)
1757 {
1758 nvlist_t *newroot;
1759 nvlist_t *poolconfig = NULL;
1760 is_force = force;
1761
1762 /*
1763 * Construct the vdev specification. If this is successful, we know
1764 * that we have a valid specification, and that all devices can be
1765 * opened.
1766 */
1767 if ((newroot = construct_spec(props, argc, argv)) == NULL)
1768 return (NULL);
1769
1770 if (zhp && ((poolconfig = zpool_get_config(zhp, NULL)) == NULL)) {
1771 nvlist_free(newroot);
1772 return (NULL);
1773 }
1774
1775 /*
1776 * Validate each device to make sure that its not shared with another
1777 * subsystem. We do this even if 'force' is set, because there are some
1778 * uses (such as a dedicated dump device) that even '-f' cannot
1779 * override.
1780 */
1781 if (is_device_in_use(poolconfig, newroot, force, replacing, B_FALSE)) {
1782 nvlist_free(newroot);
1783 return (NULL);
1784 }
1785
1786 /*
1787 * Check the replication level of the given vdevs and report any errors
1788 * found. We include the existing pool spec, if any, as we need to
1789 * catch changes against the existing replication level.
1790 */
1791 if (check_rep && check_replication(poolconfig, newroot) != 0) {
1792 nvlist_free(newroot);
1793 return (NULL);
1794 }
1795
1796 /*
1797 * Run through the vdev specification and label any whole disks found.
1798 */
1799 if (!dryrun && make_disks(zhp, newroot) != 0) {
1800 nvlist_free(newroot);
1801 return (NULL);
1802 }
1803
1804 return (newroot);
1805 }