1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
|
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* or http://www.opensolaris.org/os/licensing.
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2009 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
/*
* Utility to import SVM disksets into an active SVM configuration.
*/
#include <assert.h>
#include <strings.h>
#include <string.h>
#include <meta.h>
#include <sys/utsname.h>
#include <sys/lvm/md_mddb.h>
#include <sys/lvm/md_names.h>
#include <sdssc.h>
static md_im_drive_info_t *overlap_disks;
static void
usage(mdsetname_t *sp, char *string)
{
if ((string != NULL) && (*string != '\0'))
md_eprintf("%s\n", string);
(void) fprintf(stderr,
"%s:\t%s -s setname [-n] [-f] [-v] [%s...]\n",
gettext("usage"), myname, gettext("disk"));
(void) fprintf(stderr, " %s -r [%s...]\n",
myname, gettext("disk"));
(void) fprintf(stderr, " %s -?\n", myname);
(void) fprintf(stderr, " %s -V\n", myname);
md_exit(sp, (string == NULL) ? 0 : 1);
}
static void
print_version(mdsetname_t *sp)
{
struct utsname curname;
if (uname(&curname) == -1) {
md_eprintf("%s\n", strerror(errno));
md_exit(sp, 1);
}
(void) fprintf(stderr, "%s %s\n", myname, curname.version);
md_exit(sp, 0);
}
/*
* Returns 0 if there is no overlap, 1 otherwise
*/
static int
set_disk_overlap(md_im_set_desc_t *misp)
{
md_im_set_desc_t *next, *isp = misp;
md_im_drive_info_t *set_dr, *next_set_dr, **chain;
int is_overlap = 0;
md_im_drive_info_t *good_disk = NULL;
md_im_drive_info_t *d;
md_timeval32_t gooddisktime;
int disk_not_available = 0;
/*
* There are 2 ways we could get an "overlap" disk.
* One is if the ctd's are the same. The other is if
* the setcreatetimestamp on the disk doesn't agree with the
* "good" disk in the set. However, if we have a disk that is
* unavailable and the other instance of the ctd is available we
* really don't have a conflict. It's just that the unavailable ctd
* is it's "old" location and the available instance is a current
* location.
*/
for (; isp != NULL; isp = isp->mis_next) {
for (next = isp->mis_next; next != NULL; next = next->mis_next) {
for (set_dr = isp->mis_drives; set_dr != NULL;
set_dr = set_dr->mid_next) {
if (set_dr->mid_available == MD_IM_DISK_NOT_AVAILABLE)
disk_not_available = 1;
else
disk_not_available = 0;
for (next_set_dr = next->mis_drives; next_set_dr != NULL;
next_set_dr = next_set_dr->mid_next) {
if (disk_not_available &&
(next_set_dr->mid_available
== MD_IM_DISK_AVAILABLE))
continue;
else if (!disk_not_available &&
(next_set_dr->mid_available ==
MD_IM_DISK_NOT_AVAILABLE))
continue;
if (strcmp(set_dr->mid_dnp->cname,
next_set_dr->mid_dnp->cname) == 0) {
/*
* Chain it, skip if
* already there
*/
if (overlap_disks == NULL) {
set_dr->overlap = NULL;
set_dr->overlapped_disk = 1;
next_set_dr->overlapped_disk = 1;
overlap_disks = set_dr;
} else {
for (chain = &overlap_disks;
*chain != NULL;
chain = &(*chain)->overlap) {
if (strcmp(set_dr->mid_dnp->cname,
(*chain)->mid_dnp->cname) == 0)
break;
}
if (*chain == NULL) {
*chain = set_dr;
set_dr->overlap = NULL;
set_dr->overlapped_disk = 1;
next_set_dr->overlapped_disk = 1;
}
}
if (!is_overlap)
is_overlap = 1;
}
}
}
}
}
for (isp = misp; isp != NULL; isp = isp->mis_next) {
good_disk = pick_good_disk(isp);
if (good_disk == NULL) {
/* didn't find a good disk */
continue;
}
gooddisktime = good_disk->mid_setcreatetimestamp;
for (d = isp->mis_drives; d != NULL; d = d->mid_next) {
if (d->mid_available == MD_IM_DISK_NOT_AVAILABLE)
continue;
/*
* If the disk doesn't have the same set creation
* time as the designated "good disk" we have a
* time conflict/overlap situation. Mark the disk
* as such.
*/
if ((gooddisktime.tv_usec !=
d->mid_setcreatetimestamp.tv_usec) ||
(gooddisktime.tv_sec !=
d->mid_setcreatetimestamp.tv_sec)) {
d->overlapped_disk = 1;
if (overlap_disks == NULL) {
d->overlap = NULL;
d->overlapped_disk = 1;
overlap_disks = d;
} else {
for (chain = &overlap_disks;
*chain != NULL;
chain = &(*chain)->overlap) {
if (strcmp(d->mid_dnp->cname,
(*chain)->mid_dnp->cname)
== 0) {
break;
}
}
if (*chain == NULL) {
*chain = d;
d->overlap = NULL;
d->overlapped_disk = 1;
}
}
if (!is_overlap)
is_overlap = 1;
}
}
}
return (is_overlap);
}
static void
report_overlap_recommendation()
{
mddb_mb_t *mbp;
md_error_t status = mdnullerror;
md_error_t *ep = &status;
md_im_drive_info_t *d;
(void) fprintf(stdout, "%s\n", gettext("Warning: The following disks "
"have been detected in more than one set.\n"
"Import recommendation based upon set creation time.\n"
"Proceed with the import with caution."));
/*
* Look at all overlapping disks. Determine which slice
* would have a replica on it. i.e. either slice 7 or 6.
* Then read the master block. If the disk doesn't have a
* metadb on it, the master block is a dummy master block.
* Both dummy or normal master block contain the timestamp
* which is what we are after. Use this timestamp to issue
* the appropriate recommendation.
*/
mbp = Malloc(DEV_BSIZE);
for (d = overlap_disks; d != NULL; d = d->overlap) {
mdname_t *rsp;
uint_t sliceno;
int fd = -1;
/*
* If the disk isn't available (i.e. powered off or dead)
* we can't read the master block timestamp and thus
* cannot make a recommendation as to which set it belongs to.
*/
if (d->mid_available != MD_IM_DISK_AVAILABLE) {
(void) fprintf(stdout, " %s ", d->mid_dnp->cname);
(void) fprintf(stdout,
gettext(" - no recommendation can "
"be made because disk is unavailable\n"));
continue;
}
if (meta_replicaslice(d->mid_dnp, &sliceno, ep) != 0)
continue;
if (d->mid_dnp->vtoc.parts[sliceno].size == 0)
continue;
if ((rsp = metaslicename(d->mid_dnp, sliceno, ep)) == NULL)
continue;
if ((fd = open(rsp->rname, O_RDONLY| O_NDELAY)) < 0)
continue;
if (read_master_block(ep, fd, mbp, DEV_BSIZE) <= 0) {
(void) close(fd);
mdclrerror(ep);
continue;
}
(void) close(fd);
(void) fprintf(stdout, " %s ", d->mid_dnp->cname);
(void) fprintf(stdout, "%s: %s\n",
gettext(" - must import with set "
"created at "), meta_print_time((md_timeval32_t *)
(&(mbp->mb_setcreatetime))));
}
Free(mbp);
}
/*
* is_first_disk is called to determine if the disk passed to it is
* eligible to be used as the "first disk time" in the set. It checks to
* see if the disk is available, on the skip list or not (thus already in
* an importable set) or being used by the system already.
* RETURN:
* 1 The time can be used as the first disk time
* 0 The time should not be used.
*/
static int
is_first_disk(
md_im_drive_info_t *d,
mddrivenamelist_t **skiph)
{
mddrivenamelist_t *slp;
md_error_t status = mdnullerror;
md_error_t *ep = &status;
mdsetname_t *sp = metasetname(MD_LOCAL_NAME, ep);
/*
* If a disk is not available there is no
* set creation timestamp available.
*/
if (d->mid_available == MD_IM_DISK_AVAILABLE) {
/*
* We also need to make sure this disk isn't already on
* the skip list.
*/
for (slp = *skiph; slp != NULL; slp = slp->next) {
if (d->mid_dnp == slp->drivenamep)
return (0);
}
/*
* And we need to make sure the drive isn't
* currently being used for something else
* like a mounted file system or a current
* metadevice or in a set.
*/
if (meta_imp_drvused(sp, d->mid_dnp, ep)) {
return (0);
}
} else {
return (0);
}
return (1);
}
/*
* Input a list of disks (dnlp), find the sets that are importable, create
* a list of these sets (mispp), and a list of the disks within each of these
* sets (midp). These lists (mispp and midp) will be used by metaimport.
*/
static int process_disks(
mddrivenamelist_t *dnlp,
mddrivenamelist_t **skipt,
md_im_set_desc_t **mispp,
int flags,
int *set_count,
int overlap,
md_error_t *ep
)
{
mddrivenamelist_t *dp;
int rscount = 0;
int hasreplica;
md_im_set_desc_t *p;
md_im_drive_info_t *d;
mddrivenamelist_t **skiph = skipt;
/* Scan qualified disks */
for (dp = dnlp; dp != NULL; dp = dp->next) {
mddrivenamelist_t *slp;
/* is the current drive on the skip list? */
for (slp = *skiph; slp != NULL; slp = slp->next) {
if (dp->drivenamep == slp->drivenamep)
break;
}
/* drive on the skip list ? */
if (slp != NULL)
continue;
/*
* In addition to updating the misp list, either verbose or
* standard output will be generated.
*
*/
hasreplica = meta_get_and_report_set_info(dp, mispp, 0,
flags, set_count, overlap, overlap_disks, ep);
if (hasreplica < 0) {
mde_perror(ep, "");
mdclrerror(ep);
} else {
rscount += hasreplica;
/* Eliminate duplicate reporting */
if (hasreplica > 0) {
md_timeval32_t firstdisktime;
/*
* Go to the tail for the current set
*/
for (p = *mispp; p->mis_next != NULL;
p = p->mis_next)
;
/*
* Now look for the set creation timestamp.
* If a disk is not available there is no
* set creation timestamp available so look
* for the first available disk to grab this
* information from. We also need to make
* sure this disk isn't already on the skip
* list. If so go to the next available drive.
* And we need to make sure the drive isn't
* currently being used for something else
* like a mounted file system or a current
* metadevice or in a set.
*/
for (d = p->mis_drives; d != NULL;
d = d->mid_next) {
if (is_first_disk(d, skiph)) {
firstdisktime =
d->mid_setcreatetimestamp;
break;
}
}
for (d = p->mis_drives; d != NULL;
d = d->mid_next) {
/*
* if the mb_setcreatetime for a disk
* is not the same as the first disk
* in the set, don't put it on the
* skip list. This disk probably
* doesn't really belong in this set
* and we'll want to look at it again
* to figure out where it does belong.
* If the disk isn't available, there's
* really no point in looking at it
* again so put it on the skip list.
*/
if (d->mid_available ==
MD_IM_DISK_AVAILABLE) {
if ((d->mid_setcreatetimestamp.
tv_sec != firstdisktime.
tv_sec) ||
(d->mid_setcreatetimestamp.
tv_usec !=
firstdisktime.tv_usec))
continue;
}
skipt =
meta_drivenamelist_append_wrapper(
skipt, d->mid_dnp);
}
}
}
}
return (rscount);
}
int
main(int argc, char *argv[])
{
char c;
md_error_t status = mdnullerror;
md_error_t *ep = &status;
mdsetname_t *sp = NULL;
char *setname_new = NULL;
int report_only = 0;
int version = 0;
bool_t dry_run = 0;
md_im_names_t cnames = { 0, NULL };
int err_on_prune = 0;
mddrivenamelist_t *dnlp = NULL;
mddrivenamelist_t *dp;
mddrivenamelist_t *skiph = NULL;
int rscount = 0;
md_im_set_desc_t *pass1_misp = NULL;
md_im_set_desc_t *misp = NULL;
md_im_set_desc_t **pass1_mispp = &pass1_misp;
md_im_set_desc_t **mispp = &misp;
mhd_mhiargs_t mhiargs = defmhiargs;
int have_multiple_sets = 0;
int force = 0;
int overlap = 0;
uint_t imp_flags = 0;
int set_count = 0;
int no_quorum = 0;
/*
* Get the locale set up before calling any other routines
* with messages to output. Just in case we're not in a build
* environment, make sure that TEXT_DOMAIN gets set to
* something.
*/
#if !defined(TEXT_DOMAIN)
#define TEXT_DOMAIN "SYS_TEST"
#endif
(void) setlocale(LC_ALL, "");
(void) textdomain(TEXT_DOMAIN);
/*
* Check to see if the libsds_sc.so is bound on the
* current system. If it is, it means the system is
* part of a cluster.
*
* The import operation is currently not supported
* in a SunCluster environment.
*/
if (sdssc_bind_library() != SDSSC_NOT_BOUND) {
(void) printf(gettext(
"%s: Import operation not supported under SunCluster\n"),
argv[0]);
exit(0);
}
/* initialize */
if (md_init(argc, argv, 0, 1, ep) != 0) {
mde_perror(ep, "");
md_exit(sp, 1);
}
optind = 1;
opterr = 1;
while ((c = getopt(argc, argv, "frns:vV?")) != -1) {
switch (c) {
case 'f':
force = 1;
break;
case 'n':
dry_run = 1;
break;
case 'r':
report_only = 1;
imp_flags |= META_IMP_REPORT;
break;
case 's':
setname_new = optarg;
break;
case 'v':
imp_flags |= META_IMP_VERBOSE;
break;
case 'V':
version = 1;
break;
case '?':
default:
usage(sp, NULL);
break;
}
}
if (version == 1)
print_version(sp);
/* Detect conflicting options */
if ((dry_run != 0) && (report_only != 0))
usage(sp, gettext("The -n and -r options conflict."));
if ((report_only != 0) && (setname_new != NULL))
usage(sp, gettext("The -r and -s options conflict."));
if ((report_only == 0) && (setname_new == NULL))
usage(sp, gettext("You must specify either -r or -s."));
/* Don't do any real work if we don't have root privilege */
if (meta_check_root(ep) != 0) {
mde_perror(ep, "");
md_exit(sp, 1);
}
if (meta_setup_db_locations(ep) != 0) {
mde_perror(ep, "");
if (mdismddberror(ep, MDE_DB_STALE))
md_exit(sp, 66);
if (! mdiserror(ep, MDE_MDDB_CKSUM))
md_exit(sp, 1);
}
/*
* Read remaining arguments into drive name list, otherwise
* call routine to list all drives in system.
*/
if (argc > optind) {
int i;
/* For user specified disks, they MUST not be in use */
err_on_prune = 1;
/* All remaining args should be disks */
cnames.min_count = argc - optind;
cnames.min_names = Malloc(cnames.min_count * sizeof (char *));
for (i = 0; i < cnames.min_count; i++, optind++) {
mddrivename_t *dnp;
dnp = metadrivename(&sp, argv[optind], ep);
if (dnp == NULL) {
mde_perror(ep, "");
md_exit(sp, 1);
} else {
cnames.min_names[i] = dnp->rname;
}
}
} else {
if (meta_list_disks(ep, &cnames) != 0) {
mde_perror(ep, "");
md_exit(sp, 1);
}
}
/*
* If the user specified disks on the command line, min_count will be
* greater than zero. If they didn't, it should be safe to assume that
* the system in question has at least one drive detected by the
* snapshot code, or we would have barfed earlier initializing the
* metadb.
*/
assert(cnames.min_count > 0);
/*
* Prune the list:
* - get rid of drives in current svm configuration
* - get rid of mounted drives
* - get rid of swap drives
* - get rid of drives in other sets
*
* If drives were specified on the command line, it should be
* an error to find in-use disks in the list. (err_on_prune)
*
* On return from meta_prune_cnames call, dnlp
* will have candidate for replica scan.
*/
dnlp = meta_prune_cnames(ep, &cnames, err_on_prune);
/*
* Doctor the drive string in the error structure to list all of the
* unused disks, rather than just one. The output will be done in the
* following !mdisok() block.
*/
if (mdisdserror(ep, MDE_DS_DRIVEINUSE)) {
md_ds_error_t *ip =
&ep->info.md_error_info_t_u.ds_error;
char *dlist;
int sizecnt = 0;
/* add 1 for null terminator */
sizecnt += strlen(ip->drive) + 1;
for (dp = dnlp->next; dp != NULL; dp = dp->next) {
sizecnt += 2; /* for the ", " */
sizecnt += strlen(dp->drivenamep->cname);
}
dlist = Malloc(sizecnt);
(void) strlcpy(dlist, ip->drive, sizecnt);
Free(ip->drive);
for (dp = dnlp->next; dp != NULL; dp = dp->next) {
(void) strlcat(dlist, ", ", sizecnt);
(void) strlcat(dlist, dp->drivenamep->cname, sizecnt);
}
ip->drive = dlist;
}
/* Don't continue if we're already hosed */
if (!mdisok(ep)) {
mde_perror(ep, "");
md_exit(sp, 1);
}
/* ...or if there's nothing to scan */
if (dnlp == NULL) {
md_eprintf("%s\n", gettext("no unused disks detected"));
md_exit(sp, 0);
}
/*
* META_IMP_PASS1 means gather the info, but don't report.
*/
(void) process_disks(dnlp, &skiph, pass1_mispp,
imp_flags | META_IMP_PASS1, &set_count, overlap, ep);
overlap_disks = NULL;
overlap = set_disk_overlap(pass1_misp);
skiph = NULL;
/*
* This time call without META_IMP_PASS1 set and we gather
* and report the information.
* We need to do this twice because of the overlap detection.
* The first pass generates a list of disks to detect overlap on.
* We then do a second pass using that overlap list to generate
* the report.
*/
rscount = process_disks(dnlp, &skiph, mispp, imp_flags, &set_count,
overlap, ep);
/*
* Now have entire list of disks associated with diskset including
* disks listed in mddb locator blocks and namespace. Before importing
* diskset need to recheck that none of these disks is already in use.
* If a disk is found that is already in use, print error and exit.
*/
if (!report_only) {
md_im_set_desc_t *p;
md_im_drive_info_t *d;
mddrivename_t *dnp;
if (sp == NULL) {
/* Get sp for local set */
if ((sp = metasetname(MD_LOCAL_NAME, ep)) == NULL) {
mde_perror(ep, "");
meta_free_im_set_desc(misp);
md_exit(sp, 1);
}
}
for (p = misp; p != NULL; p = p->mis_next) {
for (d = p->mis_drives; d != NULL; d = d->mid_next) {
dnp = d->mid_dnp;
if (d->mid_available == MD_IM_DISK_AVAILABLE) {
if (meta_imp_drvused(sp, dnp, ep)) {
(void) mddserror(ep,
MDE_DS_DRIVEINUSE, 0, NULL,
dnp->cname, NULL);
mde_perror(ep, "");
meta_free_im_set_desc(misp);
md_exit(sp, 1);
}
} else {
/*
* If drive is unavailable, then check
* that this drive hasn't already been
* imported as part of another partial
* diskset. Check by devid instead of
* cname since the unavailable drive
* would have the cname from its
* previous system and this may collide
* with a valid cname on this system.
* Fail if devid is found in another
* set or if the routine fails.
*/
mdsetname_t *tmp_sp = NULL;
if ((meta_is_devid_in_anyset(
d->mid_devid, &tmp_sp, ep) == -1) ||
(tmp_sp != NULL)) {
(void) mddserror(ep,
MDE_DS_DRIVEINUSE, 0, NULL,
dnp->cname, NULL);
mde_perror(ep, "");
meta_free_im_set_desc(misp);
md_exit(sp, 1);
}
}
}
}
}
/*
* If there are no unconfigured sets, then our work here is done.
* Hopefully this is friendlier than just not printing anything at all.
*/
if (rscount == 0) {
/*
* If we've found partial disksets but no complete disksets,
* we don't want this to print.
*/
if (!misp) {
md_eprintf("%s\n", gettext("no unconfigured sets "
"detected"));
meta_free_im_set_desc(misp);
md_exit(sp, 1);
}
md_exit(sp, 0);
}
/*
* We'll need this info for both the report content and the import
* decision. By the time we're here, misp should NOT be NULL (or we
* would have exited in the rscount == 0 test above).
*/
assert(misp != NULL);
if (misp->mis_next != NULL) {
have_multiple_sets = 1;
}
/*
* Generate the appropriate (verbose or not) report for all sets
* detected. If we're planning on importing later, only include the
* "suggested import" command if multiple sets were detected. (That
* way, when we error out later, we have still provided useful
* information.)
*/
/*
* Now we should have all the unconfigured sets detected
* check for the overlapping
*/
if (have_multiple_sets) {
/* Printing out how many candidate disksets we found. */
if (imp_flags & META_IMP_REPORT) {
(void) printf("%s: %i\n\n",
gettext("Number of disksets eligible for import"),
set_count);
}
}
if (overlap) {
report_overlap_recommendation();
}
if (have_multiple_sets && !report_only) {
md_eprintf("%s\n\n", gettext("multiple unconfigured "
"sets detected.\nRerun the command with the "
"suggested options for the desired set."));
}
/*
* If it's a report-only request, we're done. If it's an import
* request, make sure that we only have one entry in the set list.
*/
if (report_only) {
meta_free_im_set_desc(misp);
md_exit(sp, 0);
} else if (have_multiple_sets) {
meta_free_im_set_desc(misp);
md_exit(sp, 1);
} else if (overlap) {
md_im_drive_info_t *d;
/*
* The only way we can get here is if we're doing an import
* request on a set that contains at least one disk with
* a time conflict. We are prohibiting the importation of
* this type of set until the offending disk(s) are turned
* off to prevent data corruption.
*/
(void) printf(gettext("To import this set, "));
for (d = pass1_misp->mis_drives;
d != NULL;
d = d->mid_next) {
if (d->overlapped_disk)
(void) printf("%s ", d->mid_dnp->cname);
}
(void) printf(gettext("must be removed from the system\n"));
meta_free_im_set_desc(misp);
md_exit(sp, 1);
}
if (setname_new == NULL) {
usage(sp, gettext("You must specify a new set name."));
}
/*
* The user must specify the -f (force) flag if the following
* conditions exist:
* - partial diskset
* - stale diskset
*/
if (meta_replica_quorum(misp) != 0)
no_quorum = 1;
if (misp->mis_partial || no_quorum) {
if (!force)
usage(sp, gettext("You must specify the force flag"));
}
(void) meta_imp_set(misp, setname_new, force, dry_run, ep);
if (dry_run) {
meta_free_im_set_desc(misp);
md_exit(sp, 0);
}
if (!mdisok(ep)) {
meta_free_im_set_desc(misp);
mde_perror(ep, "");
md_exit(sp, 1);
}
if ((sp = metasetname(setname_new, ep)) == NULL) {
meta_free_im_set_desc(misp);
mde_perror(ep, "");
md_exit(sp, 1);
}
if (meta_lock_nowait(sp, ep) != 0) {
meta_free_im_set_desc(misp);
mde_perror(ep, "");
md_exit(sp, 10); /* special errcode */
}
if (meta_set_take(sp, &mhiargs, (misp->mis_partial | TAKE_IMP),
0, &status)) {
meta_free_im_set_desc(misp);
mde_perror(&status, "");
md_exit(sp, 1);
}
meta_free_im_set_desc(misp);
md_exit(sp, 0);
/*NOTREACHED*/
return (0);
}
|