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
|
#include <stddef.h>
#include <stdlib.h>
#include "lswlog.h"
#include "lswtool.h"
#include "lswalloc.h"
#include "lswnss.h"
#include "fips_mode.h"
#include "lswconf.h"
#include "crypt_symkey.h" /* for init_crypt_symkey() */
#include "ike_alg.h"
#include "proposals.h"
static bool test_proposals = false;
static bool test_algs = false;
static bool verbose = false;
static bool debug = false;
static bool impaired = false;
static enum ike_version ike_version = IKEv2;
static bool ignore_parser_errors = false;
static bool fips = false;
static bool pfs = false;
static int failures = 0;
#define ERROR 124
enum expect { FAIL = false, PASS = true, COUNT, };
/*
* Kernel not available so fake it.
*/
static bool kernel_alg_is_ok(const struct ike_alg *alg)
{
if (alg->algo_type == &ike_alg_dh) {
/* require an in-process/ike implementation of DH */
return ike_alg_is_ike(alg);
} else {
/* no kernel to ask! */
return true;
}
}
typedef void (protocol_t)(enum expect expected, const char *, struct logger *logger);
struct protocol {
const char *name;
struct proposal_parser *(*parser)(const struct proposal_policy *policy);
bool pfs_vs_dh;
bool (*alg_is_ok)(const struct ike_alg *alg);
};
const struct protocol ike_protocol = {
"ike", ike_proposal_parser, .pfs_vs_dh = false, .alg_is_ok = ike_alg_is_ike,
};
const struct protocol ah_protocol = {
"ah", ah_proposal_parser, .pfs_vs_dh = true, .alg_is_ok = kernel_alg_is_ok,
};
const struct protocol esp_protocol = {
"esp", esp_proposal_parser, .pfs_vs_dh = true, .alg_is_ok = kernel_alg_is_ok,
};
const struct protocol *protocols[] = {
&ike_protocol,
&ah_protocol,
&esp_protocol,
};
static void check(const struct protocol *protocol,
enum expect expected,
const char *algstr,
struct logger *logger)
{
/* print the test */
printf("algparse ");
if (impaired) {
printf("-impair ");
}
if (fips) {
printf("-fips ");
}
switch (ike_version) {
case IKEv1: printf("-v1 "); break;
case IKEv2: printf("-v2 "); break;
default: break;
}
if (pfs) {
printf("-pfs ");
}
if (algstr == NULL) {
printf("'%s'", protocol->name);
} else {
printf("'%s=%s'", protocol->name, algstr);
}
switch (expected) {
case PASS: printf(" (expect SUCCESS)"); break;
case FAIL: printf(" (expect ERROR)"); break;
case COUNT: break;
}
printf("\n");
fflush(NULL);
/* run the test */
struct proposal_policy policy = {
.version = ike_version,
.alg_is_ok = protocol->alg_is_ok,
.pfs = pfs,
.logger_rc_flags = ERROR_STREAM,
.logger = logger,
.check_pfs_vs_dh = protocol->pfs_vs_dh,
.ignore_parser_errors = ignore_parser_errors,
};
struct proposal_parser *parser =
protocol->parser(&policy);
struct proposals *proposals =
proposals_from_str(parser, algstr);
/* print the results */
if (proposals != NULL) {
pexpect(parser->diag == NULL);
FOR_EACH_PROPOSAL(proposals, proposal) {
JAMBUF(buf) {
jam(buf, "\t");
jam_proposal(buf, proposal);
fprintf(stdout, PRI_SHUNK"\n",
pri_shunk(jambuf_as_shunk(buf)));
}
}
free_proposals(&proposals);
if (expected == FAIL) {
failures++;
fprintf(stderr,
"UNEXPECTED PASS: %s%s%s\n",
protocol->name,
(algstr == NULL ? "" : "="),
(algstr == NULL ? "" : algstr));
}
} else {
pexpect(parser->diag != NULL);
printf("\tERROR: %s\n", str_diag(parser->diag));
if (expected == PASS) {
failures++;
fprintf(stderr,
"UNEXPECTED FAIL: %s%s%s\n",
protocol->name,
(algstr == NULL ? "" : "="),
(algstr == NULL ? "" : algstr));
} else if (expected == COUNT) {
failures++;
}
}
free_proposal_parser(&parser);
fflush(NULL);
}
static void all(const char *algstr, struct logger *logger)
{
FOR_EACH_ELEMENT(protocolp, protocols) {
const struct protocol *protocol = (*protocolp);
check(protocol, COUNT, algstr, logger);
}
}
static void test_proposal(const char *arg, struct logger *logger)
{
const char *eq = strchr(arg, '=');
FOR_EACH_ELEMENT(protocolp, protocols) {
const struct protocol *protocol = (*protocolp);
if (streq(arg, protocol->name)) {
check(protocol, COUNT, NULL, logger);
return;
}
if (startswith(arg, protocol->name) &&
arg + strlen(protocol->name) == eq) {
check(protocol, COUNT, eq + 1, logger);
return;
}
}
if (eq != NULL) {
fprintf(stderr, "unrecognized PROTOCOL in '%s'", arg);
exit(1);
}
all(arg, logger);
}
static void test_esp(struct logger *logger)
{
#define esp(EXPECTED, ALGSTR) check(&esp_protocol, EXPECTED, ALGSTR, logger)
esp(true, NULL);
esp(false, "");
#ifdef USE_AES
esp(true, "aes");
esp(true, "aes;modp2048");
# ifdef USE_SHA1
esp(true, "aes-sha1");
esp(true, "aes-sha1");
esp(true, "aes-sha1-modp2048");
esp(true, "aes-128-sha1");
esp(true, "aes-128-sha1");
esp(true, "aes-128-sha1-modp2048");
# endif
esp(true, "aes-128");
esp(true, "aes_gcm_a-128-null");
#endif
#ifdef USE_3DES
# ifdef USE_DH2
esp(true, "3des-sha1;modp1024");
# else
esp(false, "3des-sha1;modp1024");
# endif
# ifdef USE_SHA1
esp(!fips, "3des-sha1;modp1536");
esp(true, "3des-sha1;modp2048");
esp(ike_version == IKEv2, "3des-sha1;dh21");
esp(ike_version == IKEv2, "3des-sha1;ecp_521");
esp(false, "3des-sha1;dh23");
esp(false, "3des-sha1;dh24");
esp(true, "3des-sha1");
# endif
#endif
#ifdef USE_SHA1
esp(!fips, "null-sha1");
#endif
#ifdef USE_AES
esp(true, "aes_cbc");
# ifdef USE_SHA1
esp(true, "aes-sha");
esp(true, "aes-sha1");
esp(true, "aes128-sha1");
# endif
# ifdef USE_SHA2
esp(true, "aes-sha2");
esp(true, "aes-sha256");
esp(true, "aes-sha384");
esp(true, "aes-sha512");
# endif
esp(!fips, "aes128-aes_xcbc");
# ifdef USE_SHA1
esp(true, "aes192-sha1");
esp(true, "aes256-sha1");
esp(true, "aes256-sha");
# endif
# ifdef USE_SHA2
esp(true, "aes256-sha2");
esp(true, "aes256-sha2_256");
esp(true, "aes256-sha2_384");
esp(true, "aes256-sha2_512");
# endif
#endif
#ifdef USE_CAMELLIA
esp(!fips, "camellia");
esp(!fips, "camellia128");
esp(!fips, "camellia192");
esp(!fips, "camellia256");
#endif
#ifdef USE_AES
/* this checks the bit sizes as well */
esp(true, "aes_ccm");
esp(true, "aes_ccm_a-128-null");
esp(true, "aes_ccm_a-192-null");
esp(true, "aes_ccm_a-256-null");
esp(true, "aes_ccm_b-128-null");
esp(true, "aes_ccm_b-192-null");
esp(true, "aes_ccm_b-256-null");
esp(true, "aes_ccm_c-128-null");
esp(true, "aes_ccm_c-192-null");
esp(true, "aes_ccm_c-256-null");
esp(true, "aes_gcm");
esp(true, "aes_gcm_a-128-null");
esp(true, "aes_gcm_a-192-null");
esp(true, "aes_gcm_a-256-null");
esp(true, "aes_gcm_b-128-null");
esp(true, "aes_gcm_b-192-null");
esp(true, "aes_gcm_b-256-null");
esp(true, "aes_gcm_c-128-null");
esp(true, "aes_gcm_c-192-null");
esp(true, "aes_gcm_c-256-null");
esp(true, "aes_ccm_a-null");
esp(true, "aes_ccm_b-null");
esp(true, "aes_ccm_c-null");
esp(true, "aes_gcm_a-null");
esp(true, "aes_gcm_b-null");
esp(true, "aes_gcm_c-null");
esp(true, "aes_ccm-null");
esp(true, "aes_gcm-null");
esp(true, "aes_ccm-256-null");
esp(true, "aes_gcm-192-null");
esp(true, "aes_ccm_256-null");
esp(true, "aes_gcm_192-null");
esp(true, "aes_ccm_8-null");
esp(true, "aes_ccm_12-null");
esp(true, "aes_ccm_16-null");
esp(true, "aes_gcm_8-null");
esp(true, "aes_gcm_12-null");
esp(true, "aes_gcm_16-null");
esp(true, "aes_ccm_8-128-null");
esp(true, "aes_ccm_12-192-null");
esp(true, "aes_ccm_16-256-null");
esp(true, "aes_gcm_8-128-null");
esp(true, "aes_gcm_12-192-null");
esp(true, "aes_gcm_16-256-null");
esp(true, "aes_ccm_8_128-null");
esp(true, "aes_ccm_12_192-null");
esp(true, "aes_ccm_16_256-null");
esp(true, "aes_gcm_8_128-null");
esp(true, "aes_gcm_12_192-null");
esp(true, "aes_gcm_16_256-null");
/* other */
esp(true, "aes_ctr");
esp(true, "aesctr");
esp(true, "aes_ctr128");
esp(true, "aes_ctr192");
esp(true, "aes_ctr256");
#endif
#ifdef USE_SERPENT
esp(!fips, "serpent");
#endif
#ifdef USE_TWOFISH
esp(!fips, "twofish");
#endif
#ifdef USE_CAMELLIA
esp(!fips, "camellia_cbc_256-hmac_sha2_512_256;modp8192"); /* long */
#endif
esp(true, "null_auth_aes_gmac_256-null;modp8192"); /* long */
#ifdef USE_3DES
# ifdef USE_SHA1
esp(true, "3des-sha1;modp8192"); /* allow ';' when unambiguous */
esp(true, "3des-sha1-modp8192"); /* allow '-' when unambiguous */
# endif
#endif
#ifdef USE_AES
# ifdef USE_3DES
# ifdef USE_SHA1
esp(!pfs, "aes-sha1,3des-sha1;modp8192");
esp(true, "aes-sha1-modp8192,3des-sha1-modp8192"); /* silly */
# endif
# endif
# ifdef USE_SHA1
esp(true, "aes-sha1-modp8192,aes-sha1-modp8192,aes-sha1-modp8192"); /* suppress duplicates */
# endif
esp(ike_version == IKEv2, "aes;none");
esp(ike_version == IKEv2 && !pfs, "aes;none,aes");
esp(ike_version == IKEv2, "aes;none,aes;modp2048");
# ifdef USE_SHA1
esp(ike_version == IKEv2, "aes-sha1-none");
esp(ike_version == IKEv2, "aes-sha1;none");
# endif
#endif
/*
* should this be supported - for now man page says not
* esp("modp1536");
*/
/* ESP tests that should fail */
/* So these do not require ifdef's to prevent bad exit code */
esp(impaired, "3des168-sha1"); /* wrong keylen */
esp(impaired, "3des-null"); /* non-null integ */
esp(impaired, "aes128-null"); /* non-null-integ */
esp(impaired, "aes224-sha1"); /* wrong keylen */
esp(impaired, "aes-224-sha1"); /* wrong keylen */
esp(false, "aes0-sha1"); /* wrong keylen */
esp(false, "aes-0-sha1"); /* wrong keylen */
esp(impaired, "aes512-sha1"); /* wrong keylen */
esp(false, "aes-sha1555"); /* unknown integ */
esp(impaired, "camellia666-sha1"); /* wrong keylen */
esp(false, "blowfish"); /* obsoleted */
esp(false, "des-sha1"); /* obsoleted */
esp(impaired, "aes_ctr666"); /* bad key size */
esp(false, "aes128-sha2_128"); /* _128 does not exist */
esp(false, "aes256-sha2_256-4096"); /* double keysize */
esp(false, "aes256-sha2_256-128"); /* now what?? */
esp(false, "vanitycipher");
esp(false, "ase-sah"); /* should get rejected */
esp(false, "aes-sah1"); /* should get rejected */
esp(false, "id3"); /* should be rejected; idXXX removed */
esp(false, "aes-id3"); /* should be rejected; idXXX removed */
esp(impaired, "aes_gcm-md5"); /* AEAD must have auth null */
esp(false, "mars"); /* support removed */
esp(impaired, "aes_gcm-16"); /* don't parse as aes_gcm_16 */
esp(false, "aes_gcm-0"); /* invalid keylen */
esp(false, "aes_gcm-123456789012345"); /* huge keylen */
esp(false, "3des-sha1;dh22"); /* support for dh22 removed */
esp(!pfs, "3des-sha1;modp8192,3des-sha2"); /* ;DH must be last */
esp(!pfs, "3des-sha1-modp8192,3des-sha2"); /* -DH must be last */
esp(true, "3des-sha1-modp8192,3des-sha2-modp8192");
esp(true, "3des-sha1-modp8192,3des-sha2;modp8192");
esp(true, "3des-sha1;modp8192,3des-sha2-modp8192");
esp(true, "3des-sha1;modp8192,3des-sha2;modp8192");
esp(!pfs, "3des-sha1-modp8192,3des-sha2-modp2048");
#undef esp
}
static void test_ah(struct logger *logger)
{
#define ah(EXPECTED, ALGSTR) check(&ah_protocol, EXPECTED, ALGSTR, logger)
ah(true, NULL);
ah(false, "");
#ifdef USE_MD5
ah(!fips, "md5");
#endif
#ifdef USE_SHA1
ah(true, "sha");
ah(true, "sha;modp2048");
ah(true, "sha1");
#endif
#ifdef USE_SHA2
ah(true, "sha2");
ah(true, "sha256");
ah(true, "sha384");
ah(true, "sha512");
ah(true, "sha2_256");
ah(true, "sha2_384");
ah(true, "sha2_512");
#endif
#ifdef USE_AES
ah(!fips, "aes_xcbc");
#endif
#ifdef USE_SHA2
ah(ike_version == IKEv2, "sha2-none");
ah(ike_version == IKEv2, "sha2;none");
#endif
#ifdef USE_SHA1
ah(true, "sha1-modp8192,sha1-modp8192,sha1-modp8192"); /* suppress duplicates */
ah(impaired, "aes-sha1");
#endif
ah(false, "vanityhash1");
#ifdef USE_AES
ah(impaired, "aes_gcm_c-256");
#endif
ah(false, "id3"); /* should be rejected; idXXX removed */
#ifdef USE_3DES
ah(impaired, "3des");
#endif
ah(impaired, "null");
#ifdef USE_AES
ah(impaired, "aes_gcm");
ah(impaired, "aes_ccm");
#endif
ah(false, "ripemd"); /* support removed */
#undef ah
}
static void test_ike(struct logger *logger)
{
#define ike(EXPECTED, ALGSTR) check(&ike_protocol, EXPECTED, ALGSTR, logger)
ike(true, NULL);
ike(false, "");
ike(true, "3des-sha1");
ike(true, "3des-sha1");
ike(!fips, "3des-sha1;modp1536");
ike(true, "3des;dh21");
ike(true, "3des-sha1;dh21");
ike(true, "3des-sha1-ecp_521");
ike(ike_version == IKEv2, "3des+aes");
ike(false, "aes;none");
ike(false, "id2"); /* should be rejected; idXXX removed */
ike(false, "3des-id2"); /* should be rejected; idXXX removed */
ike(false, "aes_ccm"); /* ESP/AH only */
/* quads */
ike(false, "aes-sha1-sha2-ecp_521");
ike(false, "aes-sha2-sha2;ecp_521");
/* fqn */
ike(ike_version == IKEv2, "aes-sha1_96-sha2-ecp_521");
ike(ike_version == IKEv2, "aes-sha1_96-sha2;ecp_521");
/* toss duplicates */
ike(ike_version == IKEv2, "aes+aes-sha1+sha1-modp8192+modp8192");
/* cycle through 3des-sha2-modp4096 */
ike(ike_version == IKEv2, "3des+aes+aes-sha2+sha1+sha1-modp4096+modp8192+modp8192");
ike(ike_version == IKEv2, "aes+3des+aes-sha1+sha2+sha1-modp8192+modp4096+modp8192");
ike(ike_version == IKEv2, "aes+aes+3des-sha1+sha1+sha2-modp8192+modp8192+modp4096");
/* keys */
ike(ike_version == IKEv2, "aes+aes128+aes256"); /* toss 128/256 */
ike(ike_version == IKEv2, "aes128+aes+aes256"); /* toss 256 */
ike(ike_version == IKEv2, "aes128+aes256+aes");
/* proposals */
ike(true, "aes-sha1-modp8192,aes-sha1-modp8192,aes-sha1-modp8192");
ike(true, "aes-sha1-modp8192,aes-sha2-modp8192,aes-sha1-modp8192"); /* almost middle */
/* aead */
ike(ike_version == IKEv2, "aes_gcm");
ike(ike_version == IKEv2, "aes_gcm-sha2");
ike(ike_version == IKEv2, "aes_gcm-sha2-modp2048");
ike(ike_version == IKEv2, "aes_gcm-sha2;modp2048");
ike(false, "aes_gcm-modp2048"); /* ';' required - PRF */
ike(ike_version == IKEv2, "aes_gcm;modp2048");
ike(ike_version == IKEv2, "aes_gcm-none");
ike(ike_version == IKEv2, "aes_gcm-none-sha2");
ike(ike_version == IKEv2, "aes_gcm-none-sha2-modp2048");
ike(ike_version == IKEv2, "aes_gcm-none-sha2;modp2048");
ike(false, "aes_gcm-none-modp2048"); /* ';' required - INTEG */
ike(ike_version == IKEv2, "aes_gcm-none;modp2048");
ike(false, "aes_gcm-sha1-none-modp2048"); /* old syntax */
ike(false, "aes_gcm-sha1-none;modp2048"); /* old syntax */
ike(false, "aes+aes_gcm"); /* mixing AEAD and NORM encryption */
/* syntax */
ike(false, ","); /* empty algorithm */
ike(false, "aes,"); /* empty algorithm */
ike(false, "aes,,aes"); /* empty algorithm */
ike(false, ",aes"); /* empty algorithm */
ike(false, "-"); /* empty algorithm */
ike(false, "+"); /* empty algorithm */
ike(false, ";"); /* empty algorithm */
ike(false, "aes-"); /* empty algorithm */
ike(false, "aes+"); /* empty algorithm */
ike(false, "aes;"); /* empty algorithm */
ike(false, "-aes"); /* empty algorithm */
ike(false, "+aes"); /* empty algorithm */
ike(false, ";aes"); /* empty algorithm */
ike(false, "aes+-"); /* empty algorithm */
ike(false, "aes+;"); /* empty algorithm */
ike(false, "aes++"); /* empty algorithm */
#undef ike
}
static void test(struct logger *logger)
{
test_esp(logger);
test_ah(logger);
test_ike(logger);
}
static void usage(void)
{
fprintf(stderr,
"Usage:\n"
"\n"
" algparse [ <option> ... ] -tp | -ta | [<protocol>=][<proposal>{,<proposal>}] ...\n"
"\n"
"Parse one or more proposals using the algorithm parser.\n"
"Either specify the proposals to be parsed on the command line\n"
"(exit non-zero if a proposal is not valid):\n"
"\n"
" [<protocol>=][<proposals>]\n"
" <protocol>: the 'ike', 'esp' or 'ah' specific parser to use\n"
" if omitted, the proposal is parsed using all three parsers\n"
" <proposals>: a comma separated list of proposals\n"
" if omitted, a default algorithm list is used\n"
"\n"
"or run a pre-defined testsuite (exit non-zero if a test fails):\n"
"\n"
" -tp: run the proposal testsuite\n"
" -ta: also run the algorithm testsuite\n"
"\n"
"Additional options:\n"
"\n"
" -v2 | -ikev2: configure for IKEv2 (default)\n"
" -v1 | -ikev1: configure for IKEv1\n"
" -pfs | -pfs=yes | -pfs=no: specify PFS (perfect forward privicy)\n"
" default: no\n"
" -fips | -fips=yes | -fips=no: force NSS's FIPS mode\n"
" default: determined by system environment\n"
" -v --verbose: be more verbose\n"
" --debug: enable debug logging\n"
/* -d <NSSDB> is reserved */
" -P <password> | -nsspw <password> | -password <password>: NSS password\n"
" --impair: disable all algorithm parser checks\n"
" --ignore: ignore parser errors (or at least some)\n"
" -p1: simple parser\n"
" -p2: complex parser\n"
"\n"
"Examples:\n"
"\n"
" algparse -v1 ike\n"
" expand the default IKEv1 'ike' algorithm table\n"
" (with IKEv1, this is the default algorithms, with IKEv2 it is not)\n"
" algparse -v2 ike=aes-sha1-dh23\n"
" expand 'aes-sha1-dh23' using the the IKEv2 'ike' parser\n"
);
}
int main(int argc, char *argv[])
{
log_to_stderr = false;
struct logger *logger = tool_logger(argc, argv);
if (argc == 1) {
usage();
exit(1);
}
char **argp = argv + 1;
for (; *argp != NULL; argp++) {
const char *arg = *argp;
if (arg[0] != '-') {
break;
}
do {
arg++;
} while (arg[0] == '-');
if (streq(arg, "?") || streq(arg, "h")) {
usage();
exit(0);
} else if (streq(arg, "tp")) {
test_proposals = true;
} else if (streq(arg, "ta")) {
test_algs = true;
} else if (streq(arg, "v1") || streq(arg, "ikev1")) {
ike_version = IKEv1;
} else if (streq(arg, "v2") || streq(arg, "ikev2")) {
ike_version = IKEv2;
} else if (streq(arg, "pfs") || streq(arg, "pfs=yes") || streq(arg, "pfs=on")) {
pfs = true;
} else if (streq(arg, "pfs=no") || streq(arg, "pfs=off")) {
pfs = false;
} else if (streq(arg, "fips") || streq(arg, "fips=yes") || streq(arg, "fips=on")) {
set_fips_mode(FIPS_MODE_ON);
} else if (streq(arg, "fips=no") || streq(arg, "fips=off")) {
set_fips_mode(FIPS_MODE_OFF);
} else if (streq(arg, "v") || streq(arg, "verbose")) {
verbose = true;
} else if (streq(arg, "debug")) {
/* -d <NSSDB> is reserved */
debug = true;
} else if (streq(arg, "ignore")) {
ignore_parser_errors = true;
} else if (streq(arg, "impair")) {
impaired = true;
} else if (streq(arg, "P") || streq(arg, "nsspw") || streq(arg, "password")) {
char *nsspw = *++argp;
if (nsspw == NULL) {
fprintf(stderr, "missing nss password\n");
exit(ERROR);
}
lsw_conf_nsspassword(nsspw);
} else {
fprintf(stderr, "unknown option: %s\n", *argp);
exit(ERROR);
}
}
/*
* Need to ensure that NSS is initialized before calling
* ike_alg_init(). Sanity checks and algorithm testing
* require a working NSS.
*/
init_nss(NULL, (struct nss_flags) { .open_readonly = true}, logger);
init_crypt_symkey(logger);
fips = is_fips_mode();
/*
* Only be verbose after NSS has started. Otherwise fake and
* real FIPS modes give different results.
*/
log_to_stderr = verbose;
init_ike_alg(logger);
/*
* Only enabling debugging and impairing after things have
* started. Otherwise there's just TMI.
*/
if (debug) {
cur_debugging |= DBG_PROPOSAL_PARSER | DBG_CRYPT;
}
if (impaired) {
impair.proposal_parser = true;
}
if (test_algs) {
test_ike_alg(logger);
}
if (*argp) {
if (test_proposals) {
fprintf(stderr, "-t conflicts with algorithm list\n");
exit(ERROR);
}
for (; *argp != NULL; argp++) {
test_proposal(*argp, logger);
}
} else if (test_proposals) {
test(logger);
if (failures > 0) {
fprintf(stderr, "%d FAILURES\n", failures);
}
}
report_leaks(logger);
shutdown_nss();
exit(failures > 0 ? PLUTO_EXIT_FAIL : PLUTO_EXIT_OK);
}
|