summaryrefslogtreecommitdiff
path: root/usr/src/cmd/lvm/metassist/controller/metassist.c
blob: aeb9655937c82cfbf369a707f4026dbdc88f1dc5 (plain)
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
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License, Version 1.0 only
 * (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 2004 Sun Microsystems, Inc.  All rights reserved.
 * Use is subject to license terms.
 */

#pragma ident	"%Z%%M%	%I%	%E% SMI"

/*
 * Front end CLI to metassist.  Parses command line, reads in data
 * files, provides main() entry point into metassist.  Here's the
 * complete data validation stack for the project:
 *
 * 1. Controller validates command line syntax/order of arguments.
 *
 * 2. XML parser validates XML syntax, conformance with DTD
 *
 * 3. xml_convert validates proper conversion from string to
 *    size/integer/float/boolean/etc.
 *
 * 4. devconfig_t mutators validate limits/boundaries/min/max/names of
 *    data.  References md_mdiox.h and possibly libmeta.
 *
 * 5. layout validates on remaining issues, including existence of
 *    given devices, feasibility of request, suitability of specified
 *    components, and subtle misuse of data structure (like both size
 *    and components specified).
 */

#include "metassist.h"

#include <errno.h>
#include <libintl.h>

#include <math.h>
#include <signal.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/utsname.h>
#include <sys/wait.h>
#include <unistd.h>
#include "getopt_ext.h"
#include "locale.h"
#include "volume_error.h"
#include "volume_output.h"
#include "volume_request.h"
#include "volume_defaults.h"
#include "volume_string.h"
#include "xml_convert.h"
#include "layout.h"

/*
 * Function prototypes
 */

static void clean_up();
static void interrupthandler(int x);
static int copy_arg(char *option, char *value, char **saveto);
static xmlDocPtr create_volume_request_XML();
static int handle_common_opts(int c, boolean_t *handled);
static int parse_create_opts(int argc, char *argv[]);
static int parse_opts(int argc, char *argv[]);
static int parse_tokenized_list(const char *string, dlist_t **list);
static int parse_verbose_arg(char *arg, int *verbosity);
static void print_help_create(FILE *stream);
static void print_help_main(FILE *stream);
static void print_manual_reference(FILE *stream);
static void print_usage(FILE *stream);
static void print_usage_create(FILE *stream);
static void print_usage_main(FILE *stream);
static int print_version(FILE *stream);
static int get_doc_from_file(
    char *file, char **valid_types, xmlDocPtr *doc, char **root);
static int get_volume_request_or_config(xmlDocPtr *doc, char **root);
static int handle_commands(char *commands);
static int handle_config(devconfig_t *config);
static int handle_request(request_t *request, defaults_t *defaults);
static int write_temp_file(char *text, mode_t mode, char **file);

/*
 * Data
 */

/* Holds argv[0] */
char *progname;

/* The action to take */
int action = ACTION_EXECUTE;

/* Holds the name of the temporary command file */
char *commandfile = NULL;

/* The metassist subcommand */
int subcmd = SUBCMD_NONE;

/* The volume-request XML file to read */
char *arg_inputfile = NULL;

/* The size of the requested volume */
char *arg_size = NULL;

/* The disk set to use */
char *arg_diskset = NULL;

/* The volume name to use */
char *arg_name = NULL;

/* Redundancy level */
char *arg_redundancy = NULL;

/* Number of datapaths */
char *arg_datapaths = NULL;

/* Whether to implement fault recovery */
boolean_t faultrecovery = B_FALSE;

/* Whether to output the config file */
boolean_t output_configfile = B_FALSE;

/* Whether to output the command file instead of */
boolean_t output_commandfile = B_FALSE;

/* List of available devices */
dlist_t *available = NULL;

/* List of unavailable devices */
dlist_t *unavailable = NULL;

/*
 * Functions
 */

/*
 * Frees alloc'd memory, to be called prior to exiting.
 */
static void
clean_up()
{
	/* Remove temporary command file */
	if (commandfile != NULL) {
	    /* Ignore failure */
	    unlink(commandfile);
	}

	/* Free allocated argument strings */
	if (commandfile != NULL) free(commandfile);
	if (arg_diskset != NULL) free(arg_diskset);
	if (arg_name != NULL) free(arg_name);
	if (arg_inputfile != NULL) free(arg_inputfile);

	/* Free available dlist and strings within */
	dlist_free_items(available, free);

	/* Free unavailable dlist and strings within */
	dlist_free_items(unavailable, free);

	/* Clean up XML data structures */
	cleanup_xml();
}

/*
 * Signal handler, called to exit gracefully
 */
static void
interrupthandler(
	int sig)
{
	char sigstr[SIG2STR_MAX];

	if (sig2str(sig, sigstr) != 0) {
	    sigstr[0] = '\0';
	}

	fprintf(stderr,
	    gettext("Signal %d (%s) caught -- exiting...\n"), sig, sigstr);

	/* Allow layout to cleanup on abnormal exit */
	layout_clean_up();

	clean_up();
	exit(1);
}

/*
 * Copies and saves the given argument, verifying that the argument
 * has not already been saved.
 *
 * @param       option
 *              The flag preceding or type of the argument.  Used only
 *              in the error message when an option has already been
 *              saved to *saveto.
 *
 * @param       value
 *              The argument to be copied.
 *
 * @param       saveto
 *              Changed to point to the copied data.  This must point
 *              to NULL data initially, or it will be assumed that
 *              this argument has already been set.  This memory must
 *              be free()d by the caller.
 *
 * @return      0 on success, non-zero otherwise.
 */
static int
copy_arg(
	char *option,
	char *value,
	char **saveto)
{
	int error = 0;

	/* Has this string already been set? */
	if (*saveto != NULL) {
	    volume_set_error(
		gettext("%s: option specified multiple times"), option);
	    error = -1;
	} else

	if ((*saveto = strdup(value)) == NULL) {
	    error = ENOMEM;
	}

	return (error);
}

/*
 * Generates the XML volume request corresponding to the command-line
 * parameters.  No DTD node is included in this request.
 *
 * @return      The XML request, or NULL if an error ocurred in
 *              generating the text.  This memory must be freed with
 *              XMLFree().
 */
static xmlDocPtr
create_volume_request_XML()
{
	xmlDocPtr doc;
	xmlNodePtr request, volume;

	/* Create the XML document */
	doc = xmlNewDoc((xmlChar *)"1.0");

	/* Create the root node */
	request = xmlNewDocNode(
	    doc, NULL, (xmlChar *)ELEMENT_VOLUMEREQUEST, NULL);
	xmlAddChild((xmlNodePtr) doc, (xmlNodePtr)request);

	/* diskset element */
	if (arg_diskset != NULL) {
	    xmlNodePtr node = xmlNewChild(
		request, NULL, (xmlChar *)ELEMENT_DISKSET, NULL);
	    xmlSetProp(node,
		(xmlChar *)ATTR_NAME, (xmlChar *)arg_diskset);
	}

	/* available elements */
	if (available != NULL) {
	    dlist_t *item;
	    for (item = available; item != NULL; item = item->next) {
		xmlNodePtr node = xmlNewChild(
		    request, NULL, (xmlChar *)ELEMENT_AVAILABLE, NULL);
		xmlSetProp(node,
		    (xmlChar *)ATTR_NAME, (xmlChar *)item->obj);
	    }
	}

	/* unavailable elements */
	if (unavailable != NULL) {
	    dlist_t *item;
	    for (item = unavailable; item != NULL; item = item->next) {
		xmlNodePtr node = xmlNewChild(
		    request, NULL, (xmlChar *)ELEMENT_UNAVAILABLE, NULL);
		xmlSetProp(node,
		    (xmlChar *)ATTR_NAME, (xmlChar *)item->obj);
	    }
	}

	/* volume element */
	volume = xmlNewChild(request, NULL, (xmlChar *)ELEMENT_VOLUME, NULL);

	/* Volume name - optional */
	if (arg_name != NULL) {
	    xmlSetProp(volume,
		(xmlChar *)ATTR_NAME, (xmlChar *)arg_name);
	}

	/* Volume size - required */
	xmlSetProp(volume, (xmlChar *)ATTR_SIZEINBYTES, (xmlChar *)arg_size);

	/* Volume redundancy - optional */
	if (arg_redundancy != NULL) {
	    xmlSetProp(volume,
		(xmlChar *)ATTR_VOLUME_REDUNDANCY, (xmlChar *)arg_redundancy);
	}

	/* Volume fault recovery - optional */
	if (faultrecovery == B_TRUE) {
	    xmlSetProp(volume,
		(xmlChar *)ATTR_VOLUME_FAULTRECOVERY, (xmlChar *)"TRUE");
	}

	/* Volume datapaths - optional */
	if (arg_datapaths != NULL) {
	    xmlSetProp(volume,
		(xmlChar *)ATTR_VOLUME_DATAPATHS, (xmlChar *)arg_datapaths);
	}

	if (get_max_verbosity() >= OUTPUT_DEBUG) {
	    xmlChar *text;
	    /* Get the text dump */
	    xmlDocDumpFormatMemory(doc, &text, NULL, 1);
	    oprintf(OUTPUT_DEBUG,
		gettext("Generated volume-request:\n%s"), text);
	    xmlFree(text);
	}

	return (doc);
}

/*
 * Checks the given flag for options common to all subcommands.
 *
 * @param       c
 *              The option letter.
 *
 * @param       handled
 *              RETURN: whether the given option flag was handled.
 *
 * @return      Non-zero if an error occurred or the given option was
 *              invalid or incomplete, 0 otherwise.
 */
static int
handle_common_opts(
	int c,
	boolean_t *handled)
{
	int error = 0;

	/* Level of verbosity to report */
	int verbosity;

	*handled = B_TRUE;

	switch (c) {
	    case COMMON_SHORTOPT_VERBOSITY:
		if ((error = parse_verbose_arg(optarg, &verbosity)) == 0) {
		    set_max_verbosity(verbosity, stderr);
		}
	    break;

	    case COMMON_SHORTOPT_VERSION:
		if ((error = print_version(stdout)) == 0) {
		    clean_up();
		    exit(0);
		}
	    break;

	    case GETOPT_ERR_MISSING_ARG:
		volume_set_error(
		    gettext("option missing a required argument: -%c"), optopt);
		error = -1;
	    break;

	    case GETOPT_ERR_INVALID_OPT:
		volume_set_error(gettext("invalid option: -%c"), optopt);
		error = -1;
	    break;

	    case GETOPT_ERR_INVALID_ARG:
		volume_set_error(gettext("invalid argument: %s"), optarg);
		error = -1;
	    break;

	    default:
		*handled = B_FALSE;
	}

	return (error);
}

/*
 * Parse the command line options for the create subcommand.
 *
 * @param       argc
 *              The number of arguments in the array
 *
 * @param       argv
 *              The argument array
 */
static int
parse_create_opts(
	int argc,
	char *argv[])
{
	int c;
	int error = 0;

	/*
	 * Whether a volume request is specified on the command line
	 * (vs. a inputfile)
	 */
	boolean_t request_on_command_line = B_FALSE;

	/* Examine next arg */
	while (!error && (c = getopt_ext(
		argc, argv, CREATE_SHORTOPTS)) != GETOPT_DONE_PARSING) {

	    boolean_t handled;

	    /* Check for args common to all scopes */
	    error = handle_common_opts(c, &handled);
	    if (error == 0 && handled == B_FALSE) {

		/* Check for args specific to this scope */
		switch (c) {

		    /* Help */
		    case COMMON_SHORTOPT_HELP:
			print_help_create(stdout);
			clean_up();
			exit(0);
		    break;

		    /* Config file */
		    case CREATE_SHORTOPT_CONFIGFILE:
			action &= ~ACTION_EXECUTE;
			action |= ACTION_OUTPUT_CONFIG;
		    break;

		    /* Command file */
		    case CREATE_SHORTOPT_COMMANDFILE:
			action &= ~ACTION_EXECUTE;
			action |= ACTION_OUTPUT_COMMANDS;
		    break;

		    /* Disk set */
		    case CREATE_SHORTOPT_DISKSET:
			error = copy_arg(
			    argv[optind - 2], optarg, &arg_diskset);
			request_on_command_line = B_TRUE;
		    break;

		    /* Name */
		    case CREATE_SHORTOPT_NAME:
			error = copy_arg(
			    argv[optind - 2], optarg, &arg_name);
			request_on_command_line = B_TRUE;
		    break;

		    /* Redundancy */
		    case CREATE_SHORTOPT_REDUNDANCY:
			error = copy_arg(
			    argv[optind - 2], optarg, &arg_redundancy);
			request_on_command_line = B_TRUE;
		    break;

		    /* Data paths */
		    case CREATE_SHORTOPT_DATAPATHS:
			error = copy_arg(
			    argv[optind - 2], optarg, &arg_datapaths);
			request_on_command_line = B_TRUE;
		    break;

		    /* Fault recovery */
		    case CREATE_SHORTOPT_FAULTRECOVERY:
			faultrecovery = B_TRUE;
			request_on_command_line = B_TRUE;
		    break;

		    /* Available devices */
		    case CREATE_SHORTOPT_AVAILABLE:
			error = parse_tokenized_list(optarg, &available);
			request_on_command_line = B_TRUE;
		    break;

		    /* Unavailable devices */
		    case CREATE_SHORTOPT_UNAVAILABLE:
			error = parse_tokenized_list(optarg, &unavailable);
			request_on_command_line = B_TRUE;
		    break;

		    /* Size */
		    case CREATE_SHORTOPT_SIZE:
			request_on_command_line = B_TRUE;
			error = copy_arg(
			    argv[optind - 1], optarg, &arg_size);
		    break;

		    /* Input file */
		    case CREATE_SHORTOPT_INPUTFILE:
			error = copy_arg(gettext("request/configuration file"),
			    optarg, &arg_inputfile);
		    break;

		    default:
			/* Shouldn't be here! */
			volume_set_error(
			    gettext("unexpected option: %c (%d)"), c, c);
			error = -1;
		}
	    }
	}

	/*
	 * Now that the arguments have been parsed, verify that
	 * required options were specified.
	 */
	if (!error) {
	    /* Third invocation method -- two required arguments */
	    if (request_on_command_line == B_TRUE) {
		if (arg_inputfile != NULL) {
		    volume_set_error(
			gettext("invalid option(s) specified with input file"));
		    error = -1;
		} else

		if (arg_size == NULL) {
		    volume_set_error(gettext("no size specified"));
		    error = -1;
		} else

		if (arg_diskset == NULL) {
		    volume_set_error(gettext("no disk set specified"));
		    error = -1;
		}
	    } else

	    /* First or second invocation method -- one required argument */
	    if (arg_inputfile == NULL) {
		volume_set_error(gettext("missing required arguments"));
		error = -1;
	    }

		/*
		 * The CREATE_SHORTOPT_CONFIGFILE and
		 * CREATE_SHORTOPT_COMMANDFILE arguments are mutually
		 * exclusive.  Verify that these were not both specified.
		 */
	    if (!error &&
		action & ACTION_OUTPUT_CONFIG &&
		action & ACTION_OUTPUT_COMMANDS) {
		volume_set_error(
		    gettext("-%c and -%c are mutually exclusive"),
		    CREATE_SHORTOPT_CONFIGFILE,
		    CREATE_SHORTOPT_COMMANDFILE);
		error = -1;
	    }
	}

	return (error);
}

/*
 * Parse the main command line options.
 *
 * @param       argc
 *              The number of arguments in the array
 *
 * @param       argv
 *              The argument array
 *
 * @return      0 on success, non-zero otherwise.
 */
static int
parse_opts(
	int argc,
	char *argv[])
{
	int c;
	int error = 0;

	/* Examine next arg */
	while (!error && (c = getopt_ext(
		argc, argv, MAIN_SHORTOPTS)) != GETOPT_DONE_PARSING) {

	    boolean_t handled;

	    /* Check for args common to all scopes */
	    error = handle_common_opts(c, &handled);

	    if (error == 0 && handled == B_FALSE) {

		/* Check for args specific to this scope */
		switch (c) {

		    /* Help */
		    case COMMON_SHORTOPT_HELP:
			print_help_main(stdout);
			clean_up();
			exit(0);
		    break;

		    /* Non-option arg */
		    case GETOPT_NON_OPTION_ARG:

			/* See if non-option arg is subcommand */
			if (strcmp(optarg, MAIN_SUBCMD_CREATE) == 0) {
			    subcmd = SUBCMD_CREATE;
			    error = parse_create_opts(argc, argv);
			} else {
			    /* Argument not recognized */
			    volume_set_error(
				gettext("%s: invalid argument"), optarg);
			    error = -1;
			}
		    break;

		    default:
			/* Shouldn't be here! */
			volume_set_error(
			    gettext("unexpected option: %c (%d)"), c, c);
			error = -1;
		}
	    } else

		/*
		 * Check invalid arguments to see if they are valid
		 * options out of place.
		 *
		 * NOTE: IN THE FUTURE, A CODE BLOCK SIMILAR TO THIS
		 * ONE SHOULD BE ADDED FOR EACH NEW SUBCOMMAND.
		 */
	    if (c == GETOPT_ERR_INVALID_OPT &&
		strchr(CREATE_SHORTOPTS, optopt) != NULL) {
		/* Provide a more enlightening error message */
		volume_set_error(
		    gettext("-%c specified before create subcommand"), optopt);
	    }
	}

	/* Parsing appears to be successful */
	if (!error) {

	    /* Was a subcommand specified? */
	    if (subcmd == SUBCMD_NONE) {
		volume_set_error(gettext("no subcommand specified"));
		error = -1;
	    }
	}

	return (error);
}

/*
 * Convert a string containing a comma/space-separated list into a
 * dlist.
 *
 * @param       string
 *              a comma/space-separated list
 *
 * @param       list
 *              An exisiting dlist to append to, or NULL to create a
 *              new list.
 *
 * @return      The head node of the dlist_t, whether it was newly
 *              created or passed in.  On memory allocation error,
 *              errno will be set and processing will stop.
 */
static int
parse_tokenized_list(
	const char *string,
	dlist_t **list)
{
	char *stringdup;
	char *device;
	char *dup;
	dlist_t *item;
	int error = 0;

	/* Don't let strtok alter original argument */
	if ((stringdup = strdup(string)) == NULL) {
	    error = ENOMEM;
	} else {

	    /* For each device in the string list... */
	    while ((device = strtok(stringdup, DEVICELISTDELIM)) != NULL) {

		/* Duplicate the device string */
		if ((dup = strdup(device)) == NULL) {
		    error = ENOMEM;
		    break;
		}

		/* Create new dlist_t for this device */
		if ((item = dlist_new_item((void *)dup)) == NULL) {
		    error = ENOMEM;
		    free(dup);
		    break;
		}

		/* Append item to list */
		*list = dlist_append(item, *list, B_TRUE);

		/* strtok needs NULL pointer on subsequent calls */
		stringdup = NULL;
	    }

	    free(stringdup);
	}

	return (error);
}

/*
 * Parses the given verbosity level argument string.
 *
 * @param       arg
 *              A string representation of a verbosity level
 *
 * @param       verbosity
 *              RETURN: the verbosity level
 *
 * @return      0 if the given verbosity level string cannot
 *              be interpreted, non-zero otherwise
 */
static int
parse_verbose_arg(
	char *arg,
	int *verbosity)
{
	int level;

	/* Scan for int */
	if (sscanf(arg, "%d", &level) == 1) {

	    /* Argument was an integer */
	    switch (level) {
		case OUTPUT_QUIET:
		case OUTPUT_TERSE:
		case OUTPUT_VERBOSE:
#ifdef	DEBUG
		case OUTPUT_DEBUG:
#endif

		*verbosity = level;
		return (0);
	    }
	}

	volume_set_error(gettext("%s: invalid verbosity level"), arg);
	return (-1);
}

/*
 * Print the help message for the command.
 *
 * @param       stream
 *              stdout or stderr, as appropriate.
 */
static void
print_help_create(
	FILE *stream)
{
	print_usage_create(stream);

	/* BEGIN CSTYLED */
	fprintf(stream, gettext("\
\n\
Create Solaris Volume Manager volumes.\n\
\n\
-F <inputfile>\n\
    Specify the volume request or volume configuration file to\n\
    process.\n\
\n\
-s <set>\n\
    Specify the disk set to use when creating volumes.\n\
\n\
-S <size>\n\
    Specify the size of the volume to be created.\n\
\n\
-a <device1,device2,...>\n\
    Explicitly specify the devices that can be used in the\n\
    creation of this volume.\n\
\n\
-c  Output the command script that would implement the specified or\n\
    generated volume configuration.\n\
\n\
-d  Output the volume configuration that satisfies the specified or\n\
    generated volume request.\n\
\n\
-f  Specify whether the volume should support automatic component\n\
    replacement after a fault.\n\
\n\
-n <name>\n\
    Specify the name of the new volume.\n\
\n\
-p <n>\n\
    Specify the number of required paths to the storage volume.\n\
\n\
-r <n>\n\
    Specify the redundancy level (0-4) of the data.\n\
\n\
-u <device1,device2,...>\n\
    Explicitly specify devices to exclude in the creation of this\n\
    volume.\n\
\n\
-v <value>\n\
    Specify the level of verbosity.\n\
\n\
-V  Display program version information.\n\
\n\
-?  Display help information.\n"));

	/* END CSTYLED */

	print_manual_reference(stream);
}

/*
 * Print the help message for the command.
 *
 * @param       stream
 *              stdout or stderr, as appropriate.
 */
static void
print_help_main(
	FILE *stream)
{
	print_usage_main(stream);

	/* BEGIN CSTYLED */
	fprintf(stream, gettext("\
\n\
Provide assistance, through automation, with common Solaris Volume\n\
Manager tasks.\n\
\n\
-V  Display program version information.\n\
\n\
-?  Display help information.  This option can follow <subcommand>\n\
    for subcommand-specific help.\n\
\n\
The accepted values for <subcommand> are:\n\
\n\
create          Create Solaris Volume Manager volumes.\n"));
	/* END CSTYLED */

	print_manual_reference(stream);
}

/*
 * Print the help postscript for the command.
 *
 * @param       stream
 *              stdout or stderr, as appropriate.
 */
static void
print_manual_reference(
	FILE *stream)
{
	fprintf(stream, gettext("\nFor more information, see %s(1M).\n"),
	    progname);
}

/*
 * Print the program usage to the given file stream.
 *
 * @param       stream
 *              stdout or stderr, as appropriate.
 */
static void
print_usage(
	FILE *stream)
{
	switch (subcmd) {
	    case SUBCMD_CREATE:
		print_usage_create(stream);
	    break;

	    case SUBCMD_NONE:
	    default:
		print_usage_main(stream);
	}
}

/*
 * Print the program usage to the given file stream.
 *
 * @param       stream
 *              stdout or stderr, as appropriate.
 */
static void
print_usage_create(
	FILE *stream)
{
	/* Create a blank the length of progname */
	char *blank = strdup(progname);
	memset(blank, ' ', strlen(blank) * sizeof (char));

	/* BEGIN CSTYLED */
	fprintf(stream, gettext("\
Usage: %1$s create [-v <n>] [-c] -F <configfile>\n\
       %1$s create [-v <n>] [-c|-d] -F <requestfile>\n\
       %1$s create [-v <n>] [-c|-d]\n\
       %2$s [-f] [-n <name>] [-p <datapaths>] [-r <redundancy>]\n\
       %2$s [-a <available>[,<available>,...]]\n\
       %2$s [-u <unavailable>[,<unavailable>,...]]\n\
       %2$s -s <setname> -S <size>\n\
       %1$s create -V\n\
       %1$s create -?\n"), progname, blank);
	/* END CSTYLED */

	free(blank);
}

/*
 * Print the program usage to the given file stream.
 *
 * @param       stream
 *              stdout or stderr, as appropriate.
 */
static void
print_usage_main(
	FILE *stream)
{
	/* BEGIN CSTYLED */
	fprintf(stream, gettext("\
Usage: %1$s <subcommand> [-?] [options]\n\
       %1$s -V\n\
       %1$s -?\n"), progname);
	/* END CSTYLED */
}

/*
 * Print the program version to the given file stream.
 *
 * @param       stream
 *              stdout or stderr, as appropriate.
 */
static int
print_version(
	FILE *stream)
{
	int error = 0;
	struct utsname uname_info;

	if (uname(&uname_info) < 0) {
	    error = -1;
	    volume_set_error(gettext("could not determine version"));
	} else {
	    fprintf(stream, gettext("%s %s"), progname, uname_info.version);
	}

	fprintf(stream, "\n");

	return (error);
}

/*
 * Get an xmlDocPtr by parsing the given file.
 *
 * @param       file
 *              The file to read
 *
 * @param       valid_types
 *              An array of the allowable root elements.  If the root
 *              element of the parsed XML file is not in this list, an
 *              error is returned.
 *
 * @param       doc
 *              RETURN: the XML document
 *
 * @param       root
 *              RETURN: the root element of the document
 *
 * @return      0 if the given XML file was successfully parsed,
 *              non-zero otherwise
 */
static int
get_doc_from_file(
	char *file,
	char **valid_types,
	xmlDocPtr *doc,
	char **root)
{
	int error = 0;

	*root = NULL;

	/*
	 * Create XML doc by reading the specified file using the
	 * default SAX handler (which has been modified in init_xml())
	 */
	*doc = xmlSAXParseFile((xmlSAXHandlerPtr)
	    &xmlDefaultSAXHandler, file, 0);

	if (*doc != NULL) {
	    int i;
	    xmlNodePtr root_elem = xmlDocGetRootElement(*doc);

	    /* Is this a valid root element? */
	    for (i = 0; valid_types[i] != NULL; i++) {
		if (xmlStrcmp(root_elem->name,
		    (const xmlChar *)valid_types[i]) == 0) {
		    *root = valid_types[i];
		}
	    }

	    /* Was a valid root element found? */
	    if (*root == NULL) {
		xmlFreeDoc(*doc);
	    }
	}

	/* Was a valid root element found? */
	if (*root == NULL) {
	    volume_set_error(
		gettext("%s: invalid or malformed XML file"), file);
	    error = -1;
	}

	return (error);
}

/*
 * Creates a volume-request or volume-config XML document, based on the
 * arguments passed into the command.
 *
 * @param       doc
 *              RETURN: the XML document, or NULL if no valid document
 *              could be created.
 *
 * @param       root
 *              RETURN: the root element of the document
 *
 * @return      0 if a volume-request or volume-config XML document
 *              could be read or created, non-zero otherwise
 */
static int
get_volume_request_or_config(
	xmlDocPtr *doc,
	char **root)
{
	int error = 0;

	if (arg_inputfile == NULL) {
	    /* Create a volume-request based on quality of service */
	    *doc = create_volume_request_XML();

	    if (*doc == NULL) {
		volume_set_error(gettext("error creating volume request"));
		error = -1;
		*root = NULL;
	    } else {
		*root = ELEMENT_VOLUMEREQUEST;
	    }
	} else {
	    char *valid[] = {
		ELEMENT_VOLUMEREQUEST,
		ELEMENT_VOLUMECONFIG,
		NULL
	    };

	    error = get_doc_from_file(arg_inputfile, valid, doc, root);
	}

	return (error);
}

/*
 * Handle processing of the given meta* commands.  Commands are
 * written to a file, the file is optionally executed, and optionally
 * deleted.
 *
 * @param       commands
 *              The commands to write to the command script file.
 *
 * @return      0 on success, non-zero otherwise.
 */
static int
handle_commands(
	char *commands)
{
	int error = 0;

	if (action & ACTION_OUTPUT_COMMANDS) {
	    printf("%s", commands);
	}

	if (action & ACTION_EXECUTE) {

	    /* Write a temporary file with 744 permissions */
	    if ((error = write_temp_file(commands,
		S_IRWXU | S_IRGRP | S_IROTH, &commandfile)) == 0) {

		char *command;

		/* Create command line to execute */
		if (get_max_verbosity() >= OUTPUT_VERBOSE) {
		    /* Verbose */
		    command = stralloccat(3,
			commandfile, " ", COMMAND_VERBOSE_FLAG);
		} else {
		    /* Terse */
		    command = strdup(commandfile);
		}

		if (command == NULL) {
		    volume_set_error(gettext("could not allocate memory"));
		    error = -1;
		} else {

		    oprintf(OUTPUT_VERBOSE,
			gettext("Executing command script: %s\n"), command);

		    /* Execute command */
		    switch (error = system(command)) {
			/* system() failed */
			case -1:
			    error = errno;
			break;

			/* Command succeded */
			case 0:
			break;

			/* Command failed */
			default:
			    volume_set_error(
				/* CSTYLED */
				gettext("execution of command script failed with status %d"),
				WEXITSTATUS(error));
			    error = -1;
		    }
		    free(command);
		}
	    }
	}

	return (error);
}

/*
 * Handle processing of the given volume-config devconfig_t.  The
 * devconfig_t is first converted to XML.  Then, depending
 * on user input to the command, the XML is either written to a file
 * or converted to a command script and passed on to
 * handle_commands().
 *
 * @param       config
 *              A devconfig_t representing a valid volume-config.
 *
 * @return      0 on success, non-zero otherwise.
 */
static int
handle_config(
	devconfig_t *config)
{
	int error;
	xmlDocPtr doc;

	/* Get the xml document for the config */
	if ((error = config_to_xml(config, &doc)) == 0) {

	    /* Get the text dump */
	    xmlChar *text;
	    xmlDocDumpFormatMemory(doc, &text, NULL, 1);

	    /* Should we output the config file? */
	    if (action & ACTION_OUTPUT_CONFIG) {
		printf("%s", text);
	    } else {
		oprintf(OUTPUT_DEBUG,
		    gettext("Generated volume-config:\n%s"), text);
	    }

	    xmlFree(text);

	    /* Proceed to command generation? */
	    if (action & ACTION_OUTPUT_COMMANDS ||
		action & ACTION_EXECUTE) {
		char *commands;

		/* Get command script from the file */
		if ((error = xml_to_commands(doc, &commands)) == 0) {
		    if (commands == NULL) {
			volume_set_error(
			    gettext("could not convert XML to commands"));
			error = -1;
		    } else {
			error = handle_commands(commands);
			free(commands);
		    }
		}
	    }

	    xmlFreeDoc(doc);
	}

	return (error);
}

/*
 * Handle processing of the given volume-request request_t and
 * volume-defaults defaults_t.  A layout is generated from these
 * structures and the resulting volume-config devconfig_t is passed on
 * to handle_config().
 *
 * @param       request
 *              A request_t representing a valid volume-request.
 *
 * @param       defaults
 *              A defaults_t representing a valid volume-defaults.
 *
 * @return      0 on success, non-zero otherwise.
 */
static int
handle_request(
	request_t *request,
	defaults_t *defaults)
{
	int error;

	/* Get layout for given request and system defaults */
	if ((error = get_layout(request, defaults)) == 0) {

	    /* Retrieve resulting volume config */
	    devconfig_t *config = request_get_diskset_config(request);

	    if (config != NULL) {
		error = handle_config(config);
	    }
	}

	return (error);
}

/*
 * Write the given text to a temporary file with the given
 * permissions.  If the file already exists, return an error.
 *
 * @param       text
 *              The text to write to the file.
 *
 * @param       mode
 *              The permissions to give the file, passed to chmod(2).
 *
 * @param       file
 *              RETURN: The name of the file written.  Must be
 *              free()d.
 *
 * @return      0 on success, non-zero otherwise.
 */
static int
write_temp_file(
	char *text,
	mode_t mode,
	char **file)
{
	int error = 0;

	/*
	 * Create temporary file name -- "XXXXXX" is replaced with
	 * unique char sequence by mkstemp()
	 */
	*file = stralloccat(3, "/tmp/", progname, "XXXXXX");

	if (*file == NULL) {
	    volume_set_error(gettext("out of memory"));
	    error = -1;
	} else {
	    int fildes;
	    FILE *out = NULL;

	    /* Open temp file */
	    if ((fildes = mkstemp(*file)) != -1) {
		out = fdopen(fildes, "w");
	    }

	    if (out == NULL) {
		volume_set_error(gettext(
		    "could not open file for writing: %s"), *file);
		error = -1;
	    } else {

		fprintf(out, "%s", text);
		fclose(out);

		if (mode != 0) {
		    if (chmod(*file, mode)) {
			volume_set_error(
			    gettext("could not change permissions of file: %s"),
			    *file);
			error = -1;
		    }
		}

		/* Remove file on error */
		if (error != 0) {
		    unlink(*file);
		}
	    }

	    /* Free *file on error */
	    if (error != 0) {
		free(*file);
		*file = NULL;
	    }
	}

	return (error);
}

/*
 * Main entry to metassist.  See the print_usage_* functions* for
 * usage.
 *
 * @return      0 on successful exit, non-zero otherwise
 */
int
main(
	int argc,
	char *argv[])
{
	int error = 0;
	int printusage = 0;

#ifdef DEBUG
	time_t start = time(NULL);
#endif

	/*
	 * Get the locale set up before calling any other routines
	 * with messages to ouput.  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);

	/* Set program name, strip directory */
	if ((progname = strrchr(argv[0], '/')) != NULL) {
	    progname++;
	} else {
	    progname = argv[0];
	}

	/* Set up signal handlers to exit gracefully */
	{
	    struct sigaction act;
	    act.sa_handler = interrupthandler;
	    sigemptyset(&act.sa_mask);
	    act.sa_flags = 0;
	    sigaction(SIGHUP, &act, (struct sigaction *)0);
	    sigaction(SIGINT, &act, (struct sigaction *)0);
	    sigaction(SIGQUIT, &act, (struct sigaction *)0);
	    sigaction(SIGTERM, &act, (struct sigaction *)0);
	}

	/* Set default verbosity level */
	set_max_verbosity(OUTPUT_TERSE, stderr);

	/* Verify we're running as root */
	if (geteuid() != 0) {
	    volume_set_error(gettext("must be run as root"));
	    error = -1;
	} else {

	    /* Disable error messages from getopt */
	    opterr = 0;

	    /* Parse command-line options */
	    if ((error = parse_opts(argc, argv)) == 0) {
		xmlDocPtr doc;
		char *root;

		/* Initialize XML defaults */
		init_xml();

		/* Read volume-request/config file */
		if ((error = get_volume_request_or_config(&doc, &root)) == 0) {

		    /* Is this a volume-config? */
		    if (strcmp(root, ELEMENT_VOLUMECONFIG) == 0) {

			/* Was the -d flag specified? */
			if (action & ACTION_OUTPUT_CONFIG) {
			    /* -d cannot be used with -F <configfile> */
			    volume_set_error(gettext(
				"-%c incompatible with -%c <configfile>"),
				CREATE_SHORTOPT_CONFIGFILE,
				CREATE_SHORTOPT_INPUTFILE);
			    error = -1;
			    printusage = 1;
			} else {
			    devconfig_t *config;
			    if ((error = xml_to_config(doc, &config)) == 0) {
				error = handle_config(config);
				free_devconfig(config);
			    }
			}
		    } else

		    /* Is this a volume-request? */
		    if (strcmp(root, ELEMENT_VOLUMEREQUEST) == 0) {
			request_t *request;

			if ((error = xml_to_request(doc, &request)) == 0) {

			    xmlDocPtr defaults_doc;
			    char *valid[] = {
				ELEMENT_VOLUMEDEFAULTS,
				NULL
			    };

			    /* Read defaults file */
			    if ((error = get_doc_from_file(VOLUME_DEFAULTS_LOC,
				valid, &defaults_doc, &root)) == 0) {

				defaults_t *defaults;

				oprintf(OUTPUT_DEBUG,
				    gettext("Using defaults file: %s\n"),
				    VOLUME_DEFAULTS_LOC);

				/* Parse defaults XML */
				if ((error = xml_to_defaults(
				    defaults_doc, &defaults)) == 0) {
				    error = handle_request(request, defaults);
				    free_defaults(defaults);
				}

				xmlFreeDoc(defaults_doc);
			    }

			    free_request(request);
			}
		    }

		    xmlFreeDoc(doc);
		}
	    } else {
		printusage = 1;
	    }
	}

	/* Handle any errors that were propogated */
	if (error != 0) {
	    char *message = get_error_string(error);

	    if (message != NULL && strlen(message)) {
		fprintf(stderr, "%s: %s\n", progname, message);

		if (printusage) {
		    fprintf(stderr, "\n");
		}
	    }

	    if (printusage) {
		print_usage(stderr);
	    }
	}

#ifdef DEBUG
	/* Print run report to stderr if METASSIST_DEBUG is set */
	if (getenv(METASSIST_DEBUG_ENV) != NULL) {
	    time_t end = time(NULL);
	    struct tm *time;
	    int i;
#define	TIMEFMT	"%8s: %.2d:%.2d:%.2d\n"

	    fprintf(stderr, " Command:");
	    for (i = 0; i < argc; i++) {
		fprintf(stderr, " %s", argv[i]);
	    }
	    fprintf(stderr, "\n");

	    fprintf(stderr, " Version: ");
	    print_version(stderr);

	    time = localtime(&start);
	    fprintf(stderr, TIMEFMT, "Start",
		time->tm_hour, time->tm_min, time->tm_sec);

	    time = localtime(&end);
	    fprintf(stderr, TIMEFMT, "End",
		time->tm_hour, time->tm_min, time->tm_sec);

	    end -= start;
	    time = gmtime(&end);
	    fprintf(stderr, TIMEFMT, "Duration",
		time->tm_hour, time->tm_min, time->tm_sec);
	}
#endif

	clean_up();

	return (error != 0);
}