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 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668
|
/* Support of X.509 certificates and CRLs for libreswan
*
* Copyright (C) 2000 Andreas Hess, Patric Lichtsteiner, Roger Wegmann
* Copyright (C) 2001 Marco Bertossa, Andreas Schleiss
* Copyright (C) 2002 Mario Strasser
* Copyright (C) 2000-2004 Andreas Steffen, Zuercher Hochschule Winterthur
* Copyright (C) 2006-2010 Paul Wouters <paul@xelerance.com>
* Copyright (C) 2008-2009 David McCullough <david_mccullough@securecomputing.com>
* Copyright (C) 2009 Gilles Espinasse <g.esp@free.fr>
* Copyright (C) 2012-2013 Paul Wouters <paul@libreswan.org>
* Copyright (C) 2012 Wes Hardaker <opensource@hardakers.net>
* Copyright (C) 2013 Matt Rogers <mrogers@redhat.com>
* Copyright (C) 2013-2019 D. Hugh Redelmeier <hugh@mimosa.com>
* Copyright (C) 2013 Kim B. Heino <b@bbbs.net>
* Copyright (C) 2018-2019 Andrew Cagney <cagney@gnu.org>
* Copyright (C) 2018 Sahana Prasad <sahana.prasad07@gmail.com>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <https://www.gnu.org/licenses/gpl2.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
*/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <dirent.h>
#include <time.h>
#include <limits.h>
#include <sys/types.h>
#include "sysdep.h"
#include "lswconf.h"
#include "lswnss.h"
#include "constants.h"
#include "defs.h"
#include "log.h"
#include "id.h"
#include "asn1.h"
#include "packet.h"
#include "demux.h"
#include "ipsec_doi.h"
#include "oid.h"
#include "x509.h"
#include "certs.h"
#include "keys.h"
#include "packet.h"
#include "demux.h" /* needs packet.h */
#include "connections.h"
#include "state.h"
#include "whack.h"
#include "fetch.h"
#include "hostpair.h" /* for FOR_EACH_HOST_PAIR_CONNECTION() */
#include "secrets.h"
#include "ip_address.h"
#include "ikev2_message.h" /* for build_ikev2_critical() */
#include "ike_alg_hash.h"
#include "certs.h"
#include "root_certs.h"
#include "iface.h"
/* new NSS code */
#include "pluto_x509.h"
#include "nss_cert_load.h"
#include "nss_cert_verify.h"
#include "nss_err.h"
/* NSS */
#include <prtime.h>
#include <keyhi.h>
#include <cert.h>
#include <certdb.h>
#include <secoid.h>
#include <secerr.h>
#include <secder.h>
#include <ocsp.h>
#include "crypt_hash.h"
#include "crl_queue.h"
#include "ip_info.h"
bool crl_strict = FALSE;
bool ocsp_strict = FALSE;
bool ocsp_enable = FALSE;
bool ocsp_post = FALSE;
char *curl_iface = NULL;
long curl_timeout = -1;
SECItem same_chunk_as_dercert_secitem(chunk_t chunk)
{
return same_chunk_as_secitem(chunk, siDERCertBuffer);
}
chunk_t get_dercert_from_nss_cert(CERTCertificate *cert)
{
return same_secitem_as_chunk(cert->derCert);
}
static const char *dntoasi(dn_buf *dst, SECItem si)
{
return str_dn(same_secitem_as_chunk(si), dst);
}
/*
* does our CA match one of the requested CAs?
*/
bool match_requested_ca(const generalName_t *requested_ca, chunk_t our_ca,
int *our_pathlen)
{
/* if no ca is requested than any ca will match */
if (requested_ca == NULL) {
*our_pathlen = 0;
return TRUE;
}
*our_pathlen = MAX_CA_PATH_LEN + 1;
while (requested_ca != NULL) {
int pathlen;
if (trusted_ca_nss(our_ca, requested_ca->name, &pathlen) &&
pathlen < *our_pathlen)
*our_pathlen = pathlen;
requested_ca = requested_ca->next;
}
return *our_pathlen <= MAX_CA_PATH_LEN;
}
static void same_nss_gn_as_pluto_gn(CERTGeneralName *nss_gn,
generalName_t *pluto_gn)
{
switch (nss_gn->type) {
case certOtherName:
pluto_gn->name = same_secitem_as_chunk(nss_gn->name.OthName.name);
pluto_gn->kind = GN_OTHER_NAME;
break;
case certRFC822Name:
pluto_gn->name = same_secitem_as_chunk(nss_gn->name.other);
pluto_gn->kind = GN_RFC822_NAME;
break;
case certDNSName:
pluto_gn->name = same_secitem_as_chunk(nss_gn->name.other);
pluto_gn->kind = GN_DNS_NAME;
break;
case certX400Address:
pluto_gn->name = same_secitem_as_chunk(nss_gn->name.other);
pluto_gn->kind = GN_X400_ADDRESS;
break;
case certEDIPartyName:
pluto_gn->name = same_secitem_as_chunk(nss_gn->name.other);
pluto_gn->kind = GN_EDI_PARTY_NAME;
break;
case certURI:
pluto_gn->name = same_secitem_as_chunk(nss_gn->name.other);
pluto_gn->kind = GN_URI;
break;
case certIPAddress:
pluto_gn->name = same_secitem_as_chunk(nss_gn->name.other);
pluto_gn->kind = GN_IP_ADDRESS;
break;
case certRegisterID:
pluto_gn->name = same_secitem_as_chunk(nss_gn->name.other);
pluto_gn->kind = GN_REGISTERED_ID;
break;
case certDirectoryName:
pluto_gn->name = same_secitem_as_chunk(nss_gn->derDirectoryName);
pluto_gn->kind = GN_DIRECTORY_NAME;
break;
default:
bad_case(nss_gn->type);
}
}
/*
* Checks if CA a is trusted by CA b
* This very well could end up being condensed into
* an NSS call or two. TBD.
*/
bool trusted_ca_nss(chunk_t a, chunk_t b, int *pathlen)
{
if (DBGP(DBG_BASE)) {
if (a.ptr != NULL) {
dn_buf abuf;
DBG_log("%s: trustee A = '%s'", __func__,
str_dn(a, &abuf));
}
if (b.ptr != NULL) {
dn_buf bbuf;
DBG_log("%s: trustor B = '%s'", __func__,
str_dn(b, &bbuf));
}
}
/* no CA b specified => any CA a is accepted */
if (b.ptr == NULL) {
*pathlen = (a.ptr == NULL) ? 0 : MAX_CA_PATH_LEN;
return TRUE;
}
/* no CA a specified => trust cannot be established */
if (a.ptr == NULL) {
*pathlen = MAX_CA_PATH_LEN;
return FALSE;
}
*pathlen = 0;
/* CA a equals CA b => we have a match */
if (same_dn(a, b)) {
return TRUE;
}
/*
* CERT_GetDefaultCertDB() simply returns the contents of a
* static variable set by NSS_Initialize(). It doesn't check
* the value and doesn't set PR error. Short of calling
* CERT_SetDefaultCertDB(NULL), the value can never be NULL.
*/
CERTCertDBHandle *handle = CERT_GetDefaultCertDB();
passert(handle != NULL);
/* CA a might be a subordinate CA of b */
bool match = FALSE;
CERTCertificate *cacert = NULL;
while ((*pathlen)++ < MAX_CA_PATH_LEN) {
SECItem a_dn = same_chunk_as_dercert_secitem(a);
cacert = CERT_FindCertByName(handle, &a_dn);
/* cacert not found or self-signed root cacert => exit */
if (cacert == NULL || CERT_IsRootDERCert(&cacert->derCert)) {
break;
}
/* does the issuer of CA a match CA b? */
chunk_t i_dn = same_secitem_as_chunk(cacert->derIssuer);
match = same_dn(i_dn, b);
if (match) {
/* we have a match: exit the loop */
dbg("%s: A is a subordinate of B", __func__);
break;
}
/* go one level up in the CA chain */
a = i_dn;
CERT_DestroyCertificate(cacert);
cacert = NULL;
}
dbg("%s: returning %s at pathlen %d",
__func__, match ? "trusted" : "untrusted", *pathlen);
if (cacert != NULL) {
CERT_DestroyCertificate(cacert);
}
return match;
}
/*
* choose either subject DN or a subjectAltName as connection end ID
*/
void select_nss_cert_id(CERTCertificate *cert, struct id *end_id)
{
if (end_id->kind == ID_FROMCERT) {
dbg("setting ID to ID_DER_ASN1_DN: \'%s\'", cert->subjectName);
end_id->name = clone_secitem_as_chunk(cert->derSubject, "cert id");
end_id->kind = ID_DER_ASN1_DN;
}
}
generalName_t *gndp_from_nss_cert(CERTCertificate *cert)
{
SECItem crlval;
if (cert == NULL)
return NULL;
if (CERT_FindCertExtension(cert, SEC_OID_X509_CRL_DIST_POINTS,
&crlval) != SECSuccess) {
LSWDBGP(DBG_BASE, buf) {
jam_string(buf, "NSS: finding CRL distribution points using CERT_FindCertExtension() failed: ");
jam_nss_error(buf);
}
return NULL;
}
CERTCrlDistributionPoints *dps = CERT_DecodeCRLDistributionPoints(cert->arena,
&crlval);
if (dps == NULL) {
LSWDBGP(DBG_BASE, buf) {
jam(buf, "NSS: decoding CRL distribution points using CERT_DecodeCRLDistributionPoints() failed: ");
jam_nss_error(buf);
}
return NULL;
}
CRLDistributionPoint **points = dps->distPoints;
generalName_t *gndp_list = NULL;
/* Certificate can have multiple distribution points */
for (; points != NULL && *points != NULL; points++) {
CRLDistributionPoint *point = *points;
if (point->distPointType == generalName &&
point->distPoint.fullName != NULL) {
CERTGeneralName *first_name, *name;
/* Each point is a linked list. */
first_name = name = point->distPoint.fullName;
do {
if (name->type == certURI) {
/* Add single point to return list */
generalName_t *gndp =
alloc_thing(generalName_t,
"gndp_from_nss_cert: general name");
same_nss_gn_as_pluto_gn(name, gndp);
gndp->next = gndp_list;
gndp_list = gndp;
}
name = CERT_GetNextGeneralName(name);
} while (name != NULL && name != first_name);
}
}
return gndp_list;
}
generalName_t *collect_rw_ca_candidates(struct msg_digest *md)
{
generalName_t *top = NULL;
FOR_EACH_HOST_PAIR_CONNECTION(&md->iface->ip_dev->id_address, &unset_address, d) {
if (NEVER_NEGOTIATE(d->policy)) {
continue;
}
/* we require a road warrior connection */
if (d->kind != CK_TEMPLATE ||
(d->policy & POLICY_OPPORTUNISTIC) ||
d->spd.that.ca.ptr == NULL) {
continue;
}
for (generalName_t *gn = top; ; gn = gn->next) {
if (gn == NULL) {
/* prepend a new gn for D */
gn = alloc_thing(generalName_t, "generalName");
gn->kind = GN_DIRECTORY_NAME;
gn->name = d->spd.that.ca;
gn->next = top;
top = gn;
break;
}
if (same_dn(gn->name, d->spd.that.ca)) {
/* D's CA already in list */
break;
}
}
}
return top;
}
/*
* Converts a X.500 generalName into an ID
*/
static void gntoid(struct id *id, const generalName_t *gn, struct logger *logger)
{
*id = empty_id;
switch (gn->kind) {
case GN_DNS_NAME: /* ID type: ID_FQDN */
id->kind = ID_FQDN;
id->name = gn->name;
break;
case GN_IP_ADDRESS: /* ID type: ID_IPV4_ADDR */
{
/*
* XXX: why could this fail; and what happens when it
* is ignored?
*/
const struct ip_info *afi = &ipv4_info;
id->kind = afi->id_ip_addr;
err_t ugh = hunk_to_address(gn->name, afi, &id->ip_addr);
if (ugh != NULL) {
llog(RC_LOG, logger,
"warning: gntoid() failed to initaddr(): %s",
ugh);
}
break;
}
case GN_RFC822_NAME: /* ID type: ID_USER_FQDN */
id->kind = ID_USER_FQDN;
id->name = gn->name;
break;
case GN_DIRECTORY_NAME:
id->kind = ID_DER_ASN1_DN;
id->name = gn->name;
break;
default:
id->kind = ID_NONE;
id->name = EMPTY_CHUNK;
break;
}
}
/*
* Convert all CERTCertificate general names to a list of pluto generalName_t
* Results go in *gn_out.
*/
static void get_pluto_gn_from_nss_cert(CERTCertificate *cert, generalName_t **gn_out, PRArenaPool *arena)
{
generalName_t *pgn_list = NULL;
CERTGeneralName *first_nss_gn = CERT_GetCertificateNames(cert, arena);
if (first_nss_gn != NULL) {
CERTGeneralName *cur_nss_gn = first_nss_gn;
do {
generalName_t *pluto_gn =
alloc_thing(generalName_t,
"get_pluto_gn_from_nss_cert: converted gn");
dbg("%s: allocated pluto_gn %p", __func__, pluto_gn);
same_nss_gn_as_pluto_gn(cur_nss_gn, pluto_gn);
pluto_gn->next = pgn_list;
pgn_list = pluto_gn;
/*
* CERT_GetNextGeneralName just loops around, does not end at NULL.
*/
cur_nss_gn = CERT_GetNextGeneralName(cur_nss_gn);
} while (cur_nss_gn != first_nss_gn);
}
*gn_out = pgn_list;
}
static diag_t create_cert_subjectdn_pubkey(CERTCertificate *cert,
struct pubkey **pk,
struct logger *logger)
{
struct id id = {
.kind = ID_DER_ASN1_DN,
.name = same_secitem_as_chunk(cert->derSubject),
};
return create_pubkey_from_cert(&id, cert, pk, logger);
}
static void add_cert_san_pubkeys(struct pubkey_list **pubkey_db,
CERTCertificate *cert,
struct logger *logger)
{
PRArenaPool *arena = PORT_NewArena(DER_DEFAULT_CHUNKSIZE);
generalName_t *gnt;
get_pluto_gn_from_nss_cert(cert, &gnt, arena);
for (generalName_t *gn = gnt; gn != NULL; gn = gn->next) {
struct id id;
gntoid(&id, gn, logger);
if (id.kind != ID_NONE) {
struct pubkey *pk = NULL;
diag_t d = create_pubkey_from_cert(&id, cert, &pk, logger);
if (d != NULL) {
log_diag(RC_LOG, logger, &d, "%s", "");
passert(pk == NULL);
return;
}
replace_public_key(pubkey_db, &pk/*stolen*/);
}
}
free_generalNames(gnt, FALSE);
if (arena != NULL) {
PORT_FreeArena(arena, PR_FALSE);
}
}
/*
* Adds pubkey entries from a certificate.
* An entry with the ID_DER_ASN1_DN subject is always added
* with subjectAltNames
* @keyid provides an id for a secondary entry
*/
bool add_pubkey_from_nss_cert(struct pubkey_list **pubkey_db,
const struct id *keyid, CERTCertificate *cert,
struct logger *logger)
{
struct pubkey *pk = NULL;
diag_t d = create_cert_subjectdn_pubkey(cert, &pk, logger);
if (d != NULL) {
log_diag(RC_LOG, logger, &d, "%s", "");
dbg("failed to create subjectdn_pubkey from cert");
return false;
}
replace_public_key(pubkey_db, &pk);
passert(pk == NULL); /*stolen*/
add_cert_san_pubkeys(pubkey_db, cert, logger);
if (keyid != NULL && keyid->kind != ID_DER_ASN1_DN &&
keyid->kind != ID_NONE &&
keyid->kind != ID_FROMCERT) {
struct pubkey *pk2 = NULL;
diag_t d = create_pubkey_from_cert(keyid, cert, &pk2, logger);
if (d != NULL) {
log_diag(RC_LOG, logger, &d, "%s", "");
/* ignore? */
} else {
replace_public_key(pubkey_db, &pk2);
}
}
return true;
}
/*
* Free the chunks cloned into chain by get_auth_chain(). It is assumed that
* the chain array itself is local to the IKEv1 main routines.
*/
void free_auth_chain(chunk_t *chain, int chain_len)
{
for (int i = 0; i < chain_len; i++) {
free_chunk_content(&chain[i]);
}
}
int get_auth_chain(chunk_t *out_chain, int chain_max, CERTCertificate *end_cert,
bool full_chain)
{
if (end_cert == NULL)
return 0;
/*
* CERT_GetDefaultCertDB() simply returns the contents of a
* static variable set by NSS_Initialize(). It doesn't check
* the value and doesn't set PR error. Short of calling
* CERT_SetDefaultCertDB(NULL), the value can never be NULL.
*/
CERTCertDBHandle *handle = CERT_GetDefaultCertDB();
passert(handle != NULL);
if (!full_chain) {
/*
* just the issuer unless it's a root
*/
CERTCertificate *is = CERT_FindCertByName(handle,
&end_cert->derIssuer);
if (is == NULL || is->isRoot)
return 0;
out_chain[0] = clone_secitem_as_chunk(is->derCert, "derCert");
CERT_DestroyCertificate(is);
return 1;
}
CERTCertificateList *chain =
CERT_CertChainFromCert(end_cert, certUsageAnyCA, PR_FALSE);
if (chain == NULL)
return 0;
if (chain->len < 1)
return 0;
int n = chain->len < chain_max ? chain->len : chain_max;
int i, j;
/* only non-root CAs in the resulting chain */
for (i = 0, j = 0; i < n; i++) {
if (!CERT_IsRootDERCert(&chain->certs[i]) &&
CERT_IsCADERCert(&chain->certs[i], NULL)) {
out_chain[j++] = clone_secitem_as_chunk(chain->certs[i], "cert");
}
}
CERT_DestroyCertificateList(chain);
return j;
}
#if defined(LIBCURL) || defined(LIBLDAP)
/*
* Do our best to find the CA for the fetch request
* However, this might be overkill, and only spd.this.ca should be used
*/
bool find_fetch_dn(SECItem *dn, struct connection *c,
CERTCertificate *cert)
{
if (dn == NULL) {
dbg("%s invalid use", __func__);
return FALSE;
}
if (cert != NULL) {
*dn = cert->derIssuer;
return TRUE;
}
if (c->spd.that.ca.ptr != NULL && c->spd.that.ca.len > 0) {
*dn = same_chunk_as_dercert_secitem(c->spd.that.ca);
return TRUE;
}
if (c->spd.that.cert.u.nss_cert != NULL) {
*dn = c->spd.that.cert.u.nss_cert->derIssuer;
return TRUE;
}
if (c->spd.this.ca.ptr != NULL && c->spd.this.ca.len > 0) {
*dn = same_chunk_as_dercert_secitem(c->spd.this.ca);
return TRUE;
}
return FALSE;
}
#endif
/*
* If peer_id->kind is ID_FROMCERT, there is a guaranteed match,
* and it will be updated to an id of kind ID_DER_ASN1_DN
* with the name taken from the cert's derSubject.
*
* "certs" is a list, a certificate chain.
* We only deal with the head and it must be an endpoint cert.
*/
bool match_certs_id(const struct certs *certs,
struct id *peer_id /*ID_FROMCERT => updated*/,
struct logger *logger)
{
CERTCertificate *end_cert = certs->cert;
if (CERT_IsCACert(end_cert, NULL)) {
llog(RC_LOG_SERIOUS, logger,
"cannot use CA certificate for endpoint");
return false;
}
switch (peer_id->kind) {
case ID_IPV4_ADDR:
case ID_IPV6_ADDR:
case ID_FQDN:
case ID_USER_FQDN:
{
/* simple match */
/* this logs errors; no need for duplication */
return cert_VerifySubjectAltName(end_cert, peer_id, logger);
}
case ID_FROMCERT:
{
chunk_t end_cert_der_subject = same_secitem_as_chunk(end_cert->derSubject);
/* adopt ID from CERT (the CERT has been verified) */
if (DBGP(DBG_BASE)) {
id_buf idb;
dn_buf dnb;
DBG_log("ID_DER_ASN1_DN '%s' does not need further ID verification; stomping on peer_id with '%s'",
str_id(peer_id, &idb), str_dn(end_cert_der_subject, &dnb));
}
/* replace peer_id */
struct id id = {
.kind = ID_DER_ASN1_DN,
/* safe as duplicate_id() will clone this */
.name = end_cert_der_subject,
};
duplicate_id(peer_id, &id);
return true;
}
case ID_DER_ASN1_DN:
{
chunk_t end_cert_der_subject = same_secitem_as_chunk(end_cert->derSubject);
if (DBGP(DBG_BASE)) {
/*
* Dump .derSubject as an RFC 1485 string.
* Include both our (str_dn()) and NSS's
* (.subjectName) representations; does the
* latter need sanitizing?
*/
dn_buf dnb;
id_buf idb;
DBG_log("comparing ID_DER_ASN1_DN '%s' to certificate derSubject='%s' (subjectName='%s')",
str_id(peer_id, &idb),
str_dn(end_cert_der_subject, &dnb),
end_cert->subjectName);
}
int wildcards; /* value ignored */
bool m = match_dn_any_order_wild(end_cert_der_subject, peer_id->name, &wildcards);
if (!m) {
/*
* XXX: can these two errors be merged? The
* latter refers to a public key but this is
* all about certificates.
*/
id_buf idb;
llog(RC_LOG_SERIOUS, logger,
"ID_DER_ASN1_DN '%s' does not match expected '%s'",
end_cert->subjectName, str_id(peer_id, &idb));
} else if (DBGP(DBG_BASE)) {
id_buf idb;
DBG_log("ID_DER_ASN1_DN '%s' matched our ID '%s'",
end_cert->subjectName,
str_id(peer_id, &idb));
}
return m;
}
default:
llog(RC_LOG_SERIOUS, logger,
"unhandled ID type %s; cannot match peer's certificate with expected peer ID",
enum_show(&ike_idtype_names, peer_id->kind));
return false;
}
}
/*
* Decode the CERT payload of Phase 1.
*/
/* todo:
* https://tools.ietf.org/html/rfc4945
* 3.3.4. PKCS #7 Wrapped X.509 Certificate
*
* This type defines a particular encoding, not a particular certificate
* type. Implementations SHOULD NOT generate CERTs that contain this
* Certificate Type. Implementations SHOULD accept CERTs that contain
* this Certificate Type because several implementations are known to
* generate them. Note that those implementations sometimes include
* entire certificate hierarchies inside a single CERT PKCS #7 payload,
* which violates the requirement specified in ISAKMP that this payload
* contain a single certificate.
*/
/*
* Decode the certs. If something nasty happens, such as an expired
* cert, return false.
*
* Only log failures, success is left to v2_verify_certs().
*/
bool v1_decode_certs(struct msg_digest *md)
{
struct state *st = md->st;
passert(st->st_ike_version == IKEv1);
/*
* At least one set of certs have been processed; and at least
* once.
*
* The way this code is called is broken (see functions
* ikev1_decode_peer_id() and oakley_id_and_auth()):
*
* - it is repeatedly called to decode the same cert payload
* (causing a cert payload the be decoded multiple times)
*
* - it is called to decode cert payloads that aren't there
* (for instance the first aggressive request)
*/
st->st_remote_certs.processed = true;
/* if we already verified ID, no need to do it again */
if (st->st_peer_alt_id) {
dbg("Peer ID was already confirmed");
return true;
}
struct payload_digest *cert_payloads = md->chain[ISAKMP_NEXT_CERT];
if (cert_payloads == NULL) {
return true;
}
if (st->st_remote_certs.verified != NULL) {
dbg("hacking around a redundant call to v1_process_certs() - releasing verified");
release_certs(&st->st_remote_certs.verified);
}
if (st->st_remote_certs.pubkey_db != NULL) {
dbg("hacking around a redundant call to v1_process_certs() - releasing pubkey_db");
free_public_keys(&st->st_remote_certs.pubkey_db);
}
if (!pexpect(st->st_remote_certs.verified == NULL)) {
/*
* Since the MITM has already failed their first
* attempt at proving their credentials, there's no
* point in giving them a second chance.
*
* Happens because code rejecting the first
* authentication attempt leaves the state as-is
* instead of zombifying (where the notification is
* recorded and then sent, and then the state
* transitions to zombie where it can linger while
* dealing with duplicate packets) or deleting it.
*/
return false;
}
statetime_t start = statetime_start(st);
struct connection *c = st->st_connection;
const struct rev_opts rev_opts = {
.ocsp = ocsp_enable,
.ocsp_strict = ocsp_strict,
.ocsp_post = ocsp_post,
.crl_strict = crl_strict,
};
struct root_certs *root_certs = root_certs_addref(HERE); /* must-release */
struct verified_certs certs = find_and_verify_certs(st->st_logger, st->st_ike_version,
cert_payloads, &rev_opts,
root_certs, &c->spd.that.id);
root_certs_delref(&root_certs, HERE);
/* either something went wrong, or there were no certs */
if (certs.cert_chain == NULL) {
#if defined(LIBCURL) || defined(LIBLDAP)
if (certs.crl_update_needed && deltasecs(crl_check_interval) > 0) {
/*
* When a strict crl check fails, the certs
* are deleted and CRL_NEEDED is set.
*
* When a non-strict crl check fails, it is
* left to the crl fetch job to do a refresh.
*
* Trigger a refresh.
*/
SECItem fdn = { siBuffer, NULL, 0 };
if (find_fetch_dn(&fdn, c, NULL)) {
add_crl_fetch_requests(crl_fetch_request(&fdn, NULL,
NULL, st->st_logger));
}
}
#endif
if (certs.harmless) {
/* For instance, no CA, unknown certs, ... */
return true;
} else {
log_state(RC_LOG, st,
"X509: certificate rejected for this connection");
/* For instance, revoked */
return false;
}
}
pexpect(st->st_remote_certs.pubkey_db == NULL);
st->st_remote_certs.pubkey_db = certs.pubkey_db;
certs.pubkey_db = NULL;
pexpect(st->st_remote_certs.verified == NULL);
st->st_remote_certs.verified = certs.cert_chain;
certs.cert_chain = NULL;
statetime_stop(&start, "%s()", __func__);
return true;
}
bool v1_verify_certs(struct msg_digest *md)
{
struct state *st = md->st;
struct ike_sa *ike = ike_sa(st, HERE);
struct connection *c = st->st_connection;
passert(st->st_ike_version == IKEv1);
/* if we already verified ID, no need to do it again */
if (st->st_peer_alt_id) {
dbg("Peer ID was already confirmed");
return true;
}
struct payload_digest *cert_payloads = md->chain[ISAKMP_NEXT_CERT];
if (cert_payloads == NULL) {
return true;
}
struct certs *certs = ike->sa.st_remote_certs.verified;
if (certs == NULL) {
return true;
}
/* end cert is at the front */
CERTCertificate *end_cert = certs->cert;
log_state(RC_LOG, st,
"certificate verified OK: %s", end_cert->subjectName);
if (LIN(POLICY_ALLOW_NO_SAN, c->policy)) {
dbg("SAN ID matching skipped due to policy (require-id-on-certificate=no)");
} else {
if (!match_certs_id(certs, &c->spd.that.id /*ID_FROMCERT => updated*/, st->st_logger)) {
log_state(RC_LOG, st, "Peer CERT payload SubjectAltName does not match peer ID for this connection");
return false;
}
dbg("SAN ID matched, updating that.cert");
}
st->st_peer_alt_id = true;
if (c->spd.that.cert.ty == CERT_X509_SIGNATURE &&
c->spd.that.cert.u.nss_cert != NULL) {
CERT_DestroyCertificate(c->spd.that.cert.u.nss_cert);
}
c->spd.that.cert.u.nss_cert = CERT_DupCertificate(certs->cert);
c->spd.that.cert.ty = CERT_X509_SIGNATURE;
return true;
}
/*
* Decode the CR payload of Phase 1.
*
* https://tools.ietf.org/html/rfc4945
* 3.2.4. PKCS #7 wrapped X.509 certificate
*
* This ID type defines a particular encoding (not a particular
* certificate type); some current implementations may ignore CERTREQs
* they receive that contain this ID type, and the editors are unaware
* of any implementations that generate such CERTREQ messages.
* Therefore, the use of this type is deprecated. Implementations
* SHOULD NOT require CERTREQs that contain this Certificate Type.
* Implementations that receive CERTREQs that contain this ID type MAY
* treat such payloads as synonymous with "X.509 Certificate -
* Signature".
*/
void ikev1_decode_cr(struct msg_digest *md, struct logger *logger)
{
for (struct payload_digest *p = md->chain[ISAKMP_NEXT_CR];
p != NULL; p = p->next) {
chunk_t ca_name = {
.len = pbs_left(&p->pbs),
.ptr = pbs_left(&p->pbs) > 0 ? p->pbs.cur : NULL
};
if (DBGP(DBG_BASE)) {
DBG_dump_hunk("CR", ca_name);
}
const struct isakmp_cr *const cr = &p->payload.cr;
if (cr->isacr_type == CERT_X509_SIGNATURE) {
if (ca_name.len > 0) {
if (!is_asn1(ca_name))
continue;
generalName_t *gn = alloc_thing(generalName_t, "generalName");
gn->name = clone_hunk(ca_name, "ca name");
gn->kind = GN_DIRECTORY_NAME;
gn->next = md->st->st_requested_ca;
md->st->st_requested_ca = gn;
}
if (DBGP(DBG_BASE)) {
dn_buf buf;
DBG_log("requested CA: '%s'",
str_dn_or_null(ca_name, "%any", &buf));
}
} else {
llog(RC_LOG_SERIOUS, logger,
"ignoring %s certificate request payload",
enum_show(&ike_cert_type_names, cr->isacr_type));
}
}
}
/*
* Decode the IKEv2 CR payload of Phase 1.
*
* This needs to handle the SHA-1 hashes instead. However, receiving CRs
* does nothing ATM.
*/
void ikev2_decode_cr(struct msg_digest *md, struct logger *logger)
{
for (struct payload_digest *p = md->chain[ISAKMP_NEXT_v2CERTREQ];
p != NULL; p = p->next) {
const struct ikev2_certreq *const cr = &p->payload.v2certreq;
switch (cr->isacertreq_enc) {
case CERT_X509_SIGNATURE:
{
chunk_t ca_name = {
.len = pbs_left(&p->pbs),
.ptr = pbs_left(&p->pbs) > 0 ? p->pbs.cur : NULL
};
if (DBGP(DBG_BASE)) {
DBG_dump_hunk("CERT_X509_SIGNATURE CR:", ca_name);
}
if (ca_name.len > 0) {
if (!is_asn1(ca_name))
continue;
generalName_t *gn =
alloc_thing(generalName_t, "generalName");
gn->name = clone_hunk(ca_name, "ca name");
gn->kind = GN_DIRECTORY_NAME;
gn->next = md->st->st_requested_ca;
md->st->st_requested_ca = gn;
}
if (DBGP(DBG_BASE)) {
dn_buf buf;
DBG_log("requested CA: '%s'",
str_dn_or_null(ca_name, "%any", &buf));
}
break;
}
default:
llog(RC_LOG_SERIOUS, logger,
"ignoring CERTREQ payload of unsupported type %s",
enum_show(&ikev2_cert_type_names, cr->isacertreq_enc));
}
}
}
#if 0
/*
* returns the concatenated SHA-1 hashes of each public key in the chain
*/
static chunk_t ikev2_hash_ca_keys(x509cert_t *ca_chain)
{
unsigned char combined_hash[SHA1_DIGEST_SIZE * 8 /*max path len*/];
x509cert_t *ca;
chunk_t result = EMPTY_CHUNK;
size_t sz = 0;
zero(&combined_hash);
for (ca = ca_chain; ca != NULL; ca = ca->next) {
unsigned char sighash[SHA1_DIGEST_SIZE];
SHA1_CTX ctx_sha1;
SHA1Init(&ctx_sha1);
SHA1Update(&ctx_sha1, ca->signature.ptr, ca->signature.len);
SHA1Final(sighash, &ctx_sha1);
if (DBGP(DBG_CRYPT)) {
DBG_dump("SHA-1 of CA signature",
sighash, SHA1_DIGEST_SIZE);
}
memcpy(combined_hash + sz, sighash, SHA1_DIGEST_SIZE);
sz += SHA1_DIGEST_SIZE;
}
passert(sz <= sizeof(combined_hash));
result = clone_bytes_as_chunk(combined_hash, sz, "combined CERTREQ hash");
if (DBGP(DBG_CRYPT)) {
DBG_dump_hunk("Combined CERTREQ hashes", result);
}
return result;
}
#endif
/* instead of ikev2_hash_ca_keys use this for now. A single key hash. */
static chunk_t ikev2_hash_nss_cert_key(CERTCertificate *cert,
struct logger *logger)
{
unsigned char sighash[SHA1_DIGEST_SIZE];
zero(&sighash);
/* TODO: This should use SHA1 even if USE_SHA1 is disabled for IKE/IPsec */
struct crypt_hash *ctx = crypt_hash_init("SHA-1 of Certificate Public Key",
&ike_alg_hash_sha1, logger);
crypt_hash_digest_bytes(ctx, "pubkey",
cert->derPublicKey.data,
cert->derPublicKey.len);
crypt_hash_final_bytes(&ctx, sighash, sizeof(sighash));
chunk_t result = clone_bytes_as_chunk(sighash, SHA1_DIGEST_SIZE, "pkey hash");
return result;
}
bool ikev1_ship_CERT(uint8_t type, chunk_t cert, pb_stream *outs)
{
pb_stream cert_pbs;
struct isakmp_cert cert_hd = {
.isacert_type = type,
.isacert_reserved = 0,
.isacert_length = 0, /* XXX unused on sending ? */
};
if (!out_struct(&cert_hd, &isakmp_ipsec_certificate_desc, outs,
&cert_pbs) ||
!pbs_out_hunk(cert, &cert_pbs, "CERT"))
return FALSE;
close_output_pbs(&cert_pbs);
return TRUE;
}
bool ikev1_build_and_ship_CR(enum ike_cert_type type,
chunk_t ca, pb_stream *outs)
{
pb_stream cr_pbs;
struct isakmp_cr cr_hd = {
.isacr_type = type,
};
if (!out_struct(&cr_hd, &isakmp_ipsec_cert_req_desc, outs, &cr_pbs) ||
(ca.ptr != NULL && !pbs_out_hunk(ca, &cr_pbs, "CA")))
return FALSE;
close_output_pbs(&cr_pbs);
return TRUE;
}
bool ikev2_build_and_ship_CR(enum ike_cert_type type,
chunk_t ca,
pb_stream *outs)
{
/*
* CERT_GetDefaultCertDB() simply returns the contents of a
* static variable set by NSS_Initialize(). It doesn't check
* the value and doesn't set PR error. Short of calling
* CERT_SetDefaultCertDB(NULL), the value can never be NULL.
*/
CERTCertDBHandle *handle = CERT_GetDefaultCertDB();
passert(handle != NULL);
pb_stream cr_pbs;
struct ikev2_certreq cr_hd = {
.isacertreq_critical = ISAKMP_PAYLOAD_NONCRITICAL,
.isacertreq_enc = type,
};
/* build CR header */
if (!out_struct(&cr_hd, &ikev2_certificate_req_desc, outs, &cr_pbs))
return FALSE;
/*
* The Certificate Encoding field has the same values as those defined
* in Section 3.6. The Certification Authority field contains an
* indicator of trusted authorities for this certificate type. The
* Certification Authority value is a concatenated list of SHA-1 hashes
* of the public keys of trusted Certification Authorities (CAs). Each
* is encoded as the SHA-1 hash of the Subject Public Key Info element
* (see section 4.1.2.7 of [PKIX]) from each Trust Anchor certificate.
* The 20-octet hashes are concatenated and included with no other
* formatting.
*
* How are multiple trusted CAs chosen?
*/
if (ca.ptr != NULL) {
SECItem caname = same_chunk_as_dercert_secitem(ca);
CERTCertificate *cacert =
CERT_FindCertByName(handle, &caname);
if (cacert != NULL && CERT_IsCACert(cacert, NULL)) {
dbg("located CA cert %s for CERTREQ", cacert->subjectName);
/*
* build CR body containing the concatenated SHA-1 hashes of the
* CA's public key. This function currently only uses a single CA
* and should support more in the future
* */
chunk_t cr_full_hash = ikev2_hash_nss_cert_key(cacert,
outs->outs_logger);
if (!pbs_out_hunk(cr_full_hash, &cr_pbs, "CA cert public key hash")) {
free_chunk_content(&cr_full_hash);
return FALSE;
}
free_chunk_content(&cr_full_hash);
} else {
LSWDBGP(DBG_BASE, buf) {
jam(buf, "NSS: locating CA cert \'");
jam_dn(buf, ca, jam_sanitized_bytes);
jam(buf, "\' for CERTREQ using CERT_FindCertByName() failed: ");
jam_nss_error(buf);
}
}
}
/*
* can it be empty?
* this function's returns need fixing
* */
close_output_pbs(&cr_pbs);
return TRUE;
}
/*
* For IKEv2, returns TRUE if we should be sending a cert
*/
bool ikev2_send_cert_decision(const struct state *st)
{
const struct connection *c = st->st_connection;
const struct end *this = &c->spd.this;
dbg("IKEv2 CERT: send a certificate?");
bool sendit = FALSE;
if (st->st_peer_wants_null) {
/* ??? should we log something? All others do. */
} else if (LDISJOINT(c->policy, POLICY_ECDSA | POLICY_RSASIG)) {
policy_buf pb;
dbg("IKEv2 CERT: policy does not have RSASIG or ECDSA: %s",
str_policy(c->policy & POLICY_ID_AUTH_MASK, &pb));
} else if (this->cert.ty == CERT_NONE || this->cert.u.nss_cert == NULL) {
dbg("IKEv2 CERT: no certificate to send");
} else if (this->sendcert == CERT_SENDIFASKED &&
st->hidden_variables.st_got_certrequest) {
dbg("IKEv2 CERT: OK to send requested certificate");
sendit = TRUE;
} else if (this->sendcert == CERT_ALWAYSSEND) {
dbg("IKEv2 CERT: OK to send a certificate (always)");
sendit = TRUE;
} else {
dbg("IKEv2 CERT: no cert requested or we don't want to send");
}
return sendit;
}
stf_status ikev2_send_certreq(struct state *st, struct msg_digest *md,
pb_stream *outpbs)
{
if (st->st_connection->kind == CK_PERMANENT) {
dbg("connection->kind is CK_PERMANENT so send CERTREQ");
if (!ikev2_build_and_ship_CR(CERT_X509_SIGNATURE,
st->st_connection->spd.that.ca,
outpbs))
return STF_INTERNAL_ERROR;
} else {
dbg("connection->kind is not CK_PERMANENT (instance), so collect CAs");
generalName_t *gn = collect_rw_ca_candidates(md);
if (gn != NULL) {
dbg("connection is RW, lookup CA candidates");
for (generalName_t *ca = gn; ca != NULL; ca = ca->next) {
if (!ikev2_build_and_ship_CR(CERT_X509_SIGNATURE,
ca->name, outpbs)) {
free_generalNames(gn, FALSE);
return STF_INTERNAL_ERROR;
}
}
free_generalNames(gn, FALSE);
} else {
dbg("not a roadwarrior instance, sending empty CA in CERTREQ");
if (!ikev2_build_and_ship_CR(CERT_X509_SIGNATURE,
EMPTY_CHUNK,
outpbs))
return STF_INTERNAL_ERROR;
}
}
return STF_OK;
}
bool ikev2_send_certreq_INIT_decision(const struct state *st,
enum sa_role role)
{
dbg("IKEv2 CERTREQ: send a cert request?");
if (role != SA_INITIATOR) {
dbg("IKEv2 CERTREQ: not the original initiator");
return FALSE;
}
const struct connection *c = st->st_connection;
if ((c->policy & POLICY_ID_AUTH_MASK) == POLICY_PSK || (c->policy & POLICY_ID_AUTH_MASK) == POLICY_AUTH_NULL) {
dbg("IKEv2 CERTREQ: authby=secret and authby=null do not require CERTREQ");
return FALSE;
}
if (has_preloaded_public_key(st)) {
dbg("IKEv2 CERTREQ: public key already known");
return FALSE;
}
if (c->spd.that.ca.ptr == NULL || c->spd.that.ca.len < 1) {
dbg("IKEv2 CERTREQ: no CA DN known to send");
return FALSE;
}
dbg("IKEv2 CERTREQ: OK to send a certificate request");
return TRUE;
}
/* Send v2 CERT and possible CERTREQ (which should be separated eventually) */
stf_status ikev2_send_cert(const struct connection *c, struct pbs_out *outpbs)
{
const cert_t mycert = c->spd.this.cert;
bool send_authcerts = c->send_ca != CA_SEND_NONE;
bool send_full_chain = send_authcerts && c->send_ca == CA_SEND_ALL;
if (impair.send_pkcs7_thingie) {
llog(RC_LOG, outpbs->outs_logger, "IMPAIR: sending cert as PKCS7 blob");
SECItem *pkcs7 = nss_pkcs7_blob(mycert.u.nss_cert,
send_full_chain);
if (!pexpect(pkcs7 != NULL)) {
return STF_INTERNAL_ERROR;
}
struct ikev2_cert pkcs7_hdr = {
.isac_critical = build_ikev2_critical(false, outpbs->outs_logger),
.isac_enc = CERT_PKCS7_WRAPPED_X509,
};
pb_stream cert_pbs;
if (!out_struct(&pkcs7_hdr, &ikev2_certificate_desc,
outpbs, &cert_pbs) ||
!pbs_out_hunk(same_secitem_as_chunk(*pkcs7), &cert_pbs, "PKCS7")) {
SECITEM_FreeItem(pkcs7, PR_TRUE);
return STF_INTERNAL_ERROR;
}
close_output_pbs(&cert_pbs);
SECITEM_FreeItem(pkcs7, PR_TRUE);
return STF_OK;
}
/*****
* From here on, if send_authcerts, we are obligated to:
* free_auth_chain(auth_chain, chain_len);
*****/
chunk_t auth_chain[MAX_CA_PATH_LEN] = { { NULL, 0 } };
int chain_len = 0;
if (send_authcerts) {
chain_len = get_auth_chain(auth_chain, MAX_CA_PATH_LEN,
mycert.u.nss_cert,
send_full_chain ? TRUE : FALSE);
}
#if 0
if (chain_len == 0)
send_authcerts = FALSE;
need to make that function v2 aware and move it
doi_log_cert_thinking(st->st_oakley.auth,
mycert.ty,
st->st_connection->spd.this.sendcert,
st->hidden_variables.st_got_certrequest,
send_cert,
send_authcerts);
#endif
const struct ikev2_cert certhdr = {
.isac_critical = build_ikev2_critical(false, outpbs->outs_logger),
.isac_enc = mycert.ty,
};
/* send own (Initiator CERT) */
{
pb_stream cert_pbs;
dbg("sending [CERT] of certificate: %s", mycert.u.nss_cert->subjectName);
if (!out_struct(&certhdr, &ikev2_certificate_desc,
outpbs, &cert_pbs) ||
!pbs_out_hunk(get_dercert_from_nss_cert(mycert.u.nss_cert),
&cert_pbs, "CERT")) {
free_auth_chain(auth_chain, chain_len);
return STF_INTERNAL_ERROR;
}
close_output_pbs(&cert_pbs);
}
/* send optional chain CERTs */
{
for (int i = 0; i < chain_len ; i++) {
pb_stream cert_pbs;
dbg("sending an authcert");
if (!out_struct(&certhdr, &ikev2_certificate_desc,
outpbs, &cert_pbs) ||
!pbs_out_hunk(auth_chain[i], &cert_pbs, "CERT"))
{
free_auth_chain(auth_chain, chain_len);
return STF_INTERNAL_ERROR;
}
close_output_pbs(&cert_pbs);
}
}
free_auth_chain(auth_chain, chain_len);
return STF_OK;
}
static bool cert_has_private_key(CERTCertificate *cert, struct logger *logger)
{
if (cert == NULL)
return false;
SECKEYPrivateKey *k = PK11_FindKeyByAnyCert(cert, lsw_nss_get_password_context(logger));
if (k == NULL)
return false;
SECKEY_DestroyPrivateKey(k);
return true;
}
static bool cert_time_to_str(char *buf, size_t buflen,
CERTCertificate *cert,
bool notbefore)
{
PRTime notBefore_tm, notAfter_tm;
if (CERT_GetCertTimes(cert, ¬Before_tm, ¬After_tm) != SECSuccess)
return FALSE;
PRTime ptime = notbefore ? notBefore_tm : notAfter_tm;
PRExplodedTime printtime;
PR_ExplodeTime(ptime, PR_GMTParameters, &printtime);
if (!PR_FormatTime(buf, buflen, "%a %b %d %H:%M:%S %Y", &printtime))
return FALSE;
return TRUE;
}
static bool crl_time_to_str(char *buf, size_t buflen, SECItem *t)
{
PRExplodedTime printtime;
PRTime time;
if (DER_DecodeTimeChoice(&time, t) != SECSuccess)
return FALSE;
PR_ExplodeTime(time, PR_GMTParameters, &printtime);
if (!PR_FormatTime(buf, buflen, "%a %b %d %H:%M:%S %Y", &printtime))
return FALSE;
return TRUE;
}
static bool cert_detail_notbefore_to_str(char *buf, size_t buflen,
CERTCertificate *cert)
{
return cert_time_to_str(buf, buflen, cert, TRUE);
}
static bool cert_detail_notafter_to_str(char *buf, size_t buflen,
CERTCertificate *cert)
{
return cert_time_to_str(buf, buflen, cert, FALSE);
}
static int certsntoa(CERTCertificate *cert, char *dst, size_t dstlen)
{
return datatot(cert->serialNumber.data, cert->serialNumber.len,
'x', dst, dstlen);
}
static void cert_detail_to_whacklog(struct show *s, CERTCertificate *cert)
{
bool is_CA = CERT_IsCACert(cert, NULL);
bool is_root = cert->isRoot;
SECKEYPublicKey *pub_k = SECKEY_ExtractPublicKey(&cert->subjectPublicKeyInfo);
char sn[128];
char *print_sn = certsntoa(cert, sn, sizeof(sn)) != 0 ? sn : "(NULL)";
bool has_priv = cert_has_private_key(cert, show_logger(s));
if (!pexpect(pub_k != NULL))
return;
KeyType pub_k_t = SECKEY_GetPublicKeyType(pub_k);
show_comment(s, " ");
show_comment(s, "%s%s certificate \"%s\" - SN: %s",
is_root ? "Root " : "",
is_CA ? "CA" : "End",
cert->nickname, print_sn);
{
dn_buf sbuf;
show_comment(s, " subject: %s",
dntoasi(&sbuf, cert->derSubject));
}
{
dn_buf ibuf;
show_comment(s, " issuer: %s",
dntoasi(&ibuf, cert->derIssuer));
}
{
char before[256];
if (cert_detail_notbefore_to_str(before, sizeof(before), cert)) {
show_comment(s, " not before: %s", before);
}
}
{
char after[256];
if (cert_detail_notafter_to_str(after, sizeof(after), cert)) {
show_comment(s, " not after: %s", after);
}
}
show_comment(s, " %d bit%s%s",
SECKEY_PublicKeyStrengthInBits(pub_k),
pub_k_t == rsaKey ? " RSA" : "(other)",
has_priv ? ": has private key" : "");
}
typedef enum {
CERT_TYPE_END,
CERT_TYPE_CA,
} show_cert_t;
static bool is_cert_of_type(CERTCertificate *cert, show_cert_t type)
{
return CERT_IsCACert(cert, NULL) == (type == CERT_TYPE_CA);
}
static void crl_detail_to_whacklog(const struct fd *whackfd, CERTCrl *crl)
{
whack_comment(whackfd, " ");
{
dn_buf ibuf;
whack_comment(whackfd, "issuer: %s",
dntoasi(&ibuf, crl->derName));
}
{
int entries = 0;
if (crl->entries != NULL) {
while (crl->entries[entries] != NULL)
entries++;
}
whack_comment(whackfd, "revoked certs: %d", entries);
}
{
char lu[256];
if (crl_time_to_str(lu, sizeof(lu), &crl->lastUpdate))
whack_comment(whackfd, "updates: this %s", lu);
}
{
char nu[256];
if (crl_time_to_str(nu, sizeof(nu), &crl->nextUpdate))
whack_comment(whackfd, " next %s", nu);
}
}
static void crl_detail_list(const struct fd *whackfd)
{
/*
* CERT_GetDefaultCertDB() simply returns the contents of a
* static variable set by NSS_Initialize(). It doesn't check
* the value and doesn't set PR error. Short of calling
* CERT_SetDefaultCertDB(NULL), the value can never be NULL.
*/
CERTCertDBHandle *handle = CERT_GetDefaultCertDB();
passert(handle != NULL);
whack_comment(whackfd, " ");
whack_comment(whackfd, "List of CRLs:");
CERTCrlHeadNode *crl_list = NULL;
if (SEC_LookupCrls(handle, &crl_list, SEC_CRL_TYPE) != SECSuccess)
return;
for (CERTCrlNode *crl_node = crl_list->first; crl_node != NULL;
crl_node = crl_node->next) {
if (crl_node->crl != NULL) {
crl_detail_to_whacklog(whackfd, &crl_node->crl->crl);
}
}
dbg("releasing crl list in %s", __func__);
PORT_FreeArena(crl_list->arena, PR_FALSE);
}
CERTCertList *get_all_certificates(struct logger *logger)
{
PK11SlotInfo *slot = lsw_nss_get_authenticated_slot(logger);
if (slot == NULL) {
/* already logged */
return NULL;
}
return PK11_ListCertsInSlot(slot);
}
static void cert_detail_list(struct show *s, show_cert_t type)
{
char *tstr;
switch (type) {
case CERT_TYPE_END:
tstr = "End";
break;
case CERT_TYPE_CA:
tstr = "CA";
break;
default:
bad_case(type);
}
show_comment(s, " ");
show_comment(s, "List of X.509 %s Certificates:", tstr);
CERTCertList *certs = get_all_certificates(show_logger(s));
if (certs == NULL)
return;
for (CERTCertListNode *node = CERT_LIST_HEAD(certs);
!CERT_LIST_END(node, certs); node = CERT_LIST_NEXT(node)) {
if (is_cert_of_type(node->cert, type))
cert_detail_to_whacklog(s, node->cert);
}
CERT_DestroyCertList(certs);
}
void list_crls(const struct fd *whackfd)
{
crl_detail_list(whackfd);
}
void list_certs(struct show *s)
{
cert_detail_list(s, CERT_TYPE_END);
}
/*
* Either the underlying cert's nickname, or NULL.
*/
const char *cert_nickname(const cert_t *cert)
{
return cert->ty == CERT_X509_SIGNATURE &&
cert->u.nss_cert != NULL ?
cert->u.nss_cert->nickname : NULL;
}
void list_authcerts(struct show *s)
{
cert_detail_list(s, CERT_TYPE_CA);
}
void clear_ocsp_cache(void)
{
dbg("calling NSS to clear OCSP cache");
(void)CERT_ClearOCSPCache();
}
|