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 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025
|
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/cert/cert_verify_proc_builtin.h"
#include <memory>
#include <optional>
#include <string>
#include <string_view>
#include <vector>
#include "base/containers/span.h"
#include "base/feature_list.h"
#include "base/logging.h"
#include "base/memory/raw_ptr.h"
#include "base/metrics/histogram_functions.h"
#include "base/strings/string_util.h"
#include "base/strings/string_view_util.h"
#include "base/time/time.h"
#include "base/values.h"
#include "components/network_time/time_tracker/time_tracker.h"
#include "crypto/hash.h"
#include "net/base/features.h"
#include "net/base/ip_address.h"
#include "net/base/net_errors.h"
#include "net/base/url_util.h"
#include "net/cert/cert_net_fetcher.h"
#include "net/cert/cert_status_flags.h"
#include "net/cert/cert_verifier.h"
#include "net/cert/cert_verify_proc.h"
#include "net/cert/cert_verify_result.h"
#include "net/cert/ct_policy_enforcer.h"
#include "net/cert/ct_policy_status.h"
#include "net/cert/ct_verifier.h"
#include "net/cert/ev_root_ca_metadata.h"
#include "net/cert/internal/cert_issuer_source_aia.h"
#include "net/cert/internal/revocation_checker.h"
#include "net/cert/internal/system_trust_store.h"
#include "net/cert/qwac.h"
#include "net/cert/require_ct_delegate.h"
#include "net/cert/signed_certificate_timestamp_and_status.h"
#include "net/cert/test_root_certs.h"
#include "net/cert/time_conversions.h"
#include "net/cert/two_qwac.h"
#include "net/cert/x509_certificate.h"
#include "net/cert/x509_certificate_net_log_param.h"
#include "net/cert/x509_util.h"
#include "net/log/net_log_values.h"
#include "net/log/net_log_with_source.h"
#include "third_party/boringssl/src/pki/cert_errors.h"
#include "third_party/boringssl/src/pki/cert_issuer_source_static.h"
#include "third_party/boringssl/src/pki/common_cert_errors.h"
#include "third_party/boringssl/src/pki/name_constraints.h"
#include "third_party/boringssl/src/pki/parsed_certificate.h"
#include "third_party/boringssl/src/pki/path_builder.h"
#include "third_party/boringssl/src/pki/simple_path_builder_delegate.h"
#include "third_party/boringssl/src/pki/trust_store.h"
#include "third_party/boringssl/src/pki/trust_store_collection.h"
#include "third_party/boringssl/src/pki/trust_store_in_memory.h"
#include "url/url_canon.h"
#if BUILDFLAG(CHROME_ROOT_STORE_SUPPORTED)
#include "base/version_info/version_info.h" // nogncheck
#include "net/cert/internal/trust_store_chrome.h"
#endif
using bssl::CertErrorId;
namespace net {
namespace {
// To avoid a denial-of-service risk, cap iterations by the path builder.
// Without a limit, path building is potentially exponential. This limit was
// set based on UMA histograms in the wild. See https://crrev.com/c/4903550.
//
// TODO(crbug.com/41267856): Move this limit into BoringSSL as a default.
constexpr uint32_t kPathBuilderIterationLimit = 20;
constexpr base::TimeDelta kMaxVerificationTime = base::Seconds(60);
constexpr base::TimeDelta kPerAttemptMinVerificationTimeLimit =
base::Seconds(5);
// The minimum RSA key size for SimplePathBuilderDelegate.
constexpr size_t kMinRsaModulusLengthBits = 1024;
DEFINE_CERT_ERROR_ID(kCtRequirementsNotMet,
"Path does not meet CT requirements");
DEFINE_CERT_ERROR_ID(kPathLacksEVPolicy, "Path does not have an EV policy");
DEFINE_CERT_ERROR_ID(kPathLacksQwacPolicy, "Path does not have QWAC policies");
DEFINE_CERT_ERROR_ID(kChromeRootConstraintsFailed,
"Path does not satisfy CRS constraints");
base::Value::Dict NetLogCertParams(const CRYPTO_BUFFER* cert_handle,
const bssl::CertErrors& errors) {
base::Value::Dict results;
std::string pem_encoded;
if (X509Certificate::GetPEMEncodedFromDER(
x509_util::CryptoBufferAsStringPiece(cert_handle), &pem_encoded)) {
results.Set("certificate", pem_encoded);
}
std::string errors_string = errors.ToDebugString();
if (!errors_string.empty())
results.Set("errors", errors_string);
return results;
}
base::Value::Dict NetLogAdditionalCert(const CRYPTO_BUFFER* cert_handle,
const bssl::CertificateTrust& trust,
const bssl::CertErrors& errors) {
base::Value::Dict results = NetLogCertParams(cert_handle, errors);
results.Set("trust", trust.ToDebugString());
return results;
}
#if BUILDFLAG(CHROME_ROOT_STORE_SUPPORTED)
base::Value::Dict NetLogChromeRootStoreVersion(
int64_t chrome_root_store_version) {
base::Value::Dict results;
results.Set("version_major", NetLogNumberValue(chrome_root_store_version));
return results;
}
void HistogramVerify1QwacResult(Verify1QwacResult result) {
base::UmaHistogramEnumeration("Net.CertVerifier.Qwac.1Qwac", result);
}
void HistogramVerify2QwacResult(Verify2QwacBindingResult result) {
base::UmaHistogramEnumeration("Net.CertVerifier.Qwac.2QwacBinding", result);
}
Verify2QwacBindingResult MapErrorTo2QwacResult(int err) {
switch (err) {
case ERR_CERT_COMMON_NAME_INVALID:
return Verify2QwacBindingResult::kCertNameInvalid;
case ERR_CERT_DATE_INVALID:
return Verify2QwacBindingResult::kCertDateInvalid;
case ERR_CERT_AUTHORITY_INVALID:
return Verify2QwacBindingResult::kCertAuthorityInvalid;
case ERR_CERT_INVALID:
return Verify2QwacBindingResult::kCertInvalid;
case ERR_CERT_WEAK_KEY:
return Verify2QwacBindingResult::kCertWeakKey;
case ERR_CERT_NAME_CONSTRAINT_VIOLATION:
return Verify2QwacBindingResult::kCertNameConstraintViolation;
default:
if (IsCertificateError(err)) {
return Verify2QwacBindingResult::kCertOtherError;
} else {
return Verify2QwacBindingResult::kOtherError;
}
}
}
QwacPoliciesStatus Get1QwacPoliciesStatus(
const bssl::ParsedCertificate* target) {
if (!target->has_policy_oids()) {
return QwacPoliciesStatus::kNotQwac;
}
std::set<bssl::der::Input> target_policy_oids(target->policy_oids().begin(),
target->policy_oids().end());
return Has1QwacPolicies(target_policy_oids);
}
QwacPoliciesStatus Get2QwacPoliciesStatus(
const bssl::ParsedCertificate* target) {
if (!target->has_policy_oids()) {
return QwacPoliciesStatus::kNotQwac;
}
std::set<bssl::der::Input> target_policy_oids(target->policy_oids().begin(),
target->policy_oids().end());
return Has2QwacPolicies(target_policy_oids);
}
QwacQcStatementsStatus GetQwacQcStatementsStatus(
const bssl::ParsedCertificate* target) {
bssl::ParsedExtension qc_statements;
if (!target->GetExtension(bssl::der::Input(kQcStatementsOid),
&qc_statements)) {
return QwacQcStatementsStatus::kNotQwac;
}
std::optional<std::vector<QcStatement>> parsed_qc_statements =
ParseQcStatements(qc_statements.value);
if (!parsed_qc_statements.has_value()) {
return QwacQcStatementsStatus::kNotQwac;
}
return HasQwacQcStatements(parsed_qc_statements.value());
}
#endif // BUILDFLAG(CHROME_ROOT_STORE_SUPPORTED)
base::Value::List PEMCertValueList(const bssl::ParsedCertificateList& certs) {
base::Value::List value;
for (const auto& cert : certs) {
std::string pem;
X509Certificate::GetPEMEncodedFromDER(cert->der_cert().AsStringView(),
&pem);
value.Append(std::move(pem));
}
return value;
}
base::Value::Dict NetLogPathBuilderResultPath(
const bssl::CertPathBuilderResultPath& result_path) {
base::Value::Dict dict;
dict.Set("is_valid", result_path.IsValid());
dict.Set("last_cert_trust", result_path.last_cert_trust.ToDebugString());
dict.Set("certificates", PEMCertValueList(result_path.certs));
// TODO(crbug.com/40479281): netlog user_constrained_policy_set.
std::string errors_string =
result_path.errors.ToDebugString(result_path.certs);
if (!errors_string.empty())
dict.Set("errors", errors_string);
return dict;
}
base::Value::Dict NetLogPathBuilderResult(
const bssl::CertPathBuilder::Result& result) {
base::Value::Dict dict;
// TODO(crbug.com/40479281): include debug data (or just have things netlog it
// directly).
dict.Set("has_valid_path", result.HasValidPath());
dict.Set("best_result_index", static_cast<int>(result.best_result_index));
if (result.exceeded_iteration_limit)
dict.Set("exceeded_iteration_limit", true);
if (result.exceeded_deadline)
dict.Set("exceeded_deadline", true);
return dict;
}
RevocationPolicy NoRevocationChecking() {
RevocationPolicy policy;
policy.check_revocation = false;
policy.networking_allowed = false;
policy.crl_allowed = false;
policy.allow_missing_info = true;
policy.allow_unable_to_check = true;
policy.enforce_baseline_requirements = false;
return policy;
}
// Gets the set of policy OIDs in |cert| that are recognized as EV OIDs for some
// root.
void GetEVPolicyOids(const EVRootCAMetadata* ev_metadata,
const bssl::ParsedCertificate* cert,
std::set<bssl::der::Input>* oids) {
oids->clear();
if (!cert->has_policy_oids())
return;
for (const bssl::der::Input& oid : cert->policy_oids()) {
if (ev_metadata->IsEVPolicyOID(oid)) {
oids->insert(oid);
}
}
}
// Returns true if |cert| could be an EV certificate, based on its policies
// extension. A return of false means it definitely is not an EV certificate,
// whereas a return of true means it could be EV.
bool IsEVCandidate(const EVRootCAMetadata* ev_metadata,
const bssl::ParsedCertificate* cert) {
std::set<bssl::der::Input> oids;
GetEVPolicyOids(ev_metadata, cert, &oids);
return !oids.empty();
}
bool IsSelfSignedCertOnLocalNetwork(const X509Certificate* cert,
const std::string& hostname) {
if (!base::FeatureList::IsEnabled(
features::kSelfSignedLocalNetworkInterstitial)) {
return false;
}
url::CanonHostInfo host_info;
std::string canonicalized_hostname =
CanonicalizeHostSupportsBareIPV6(hostname, &host_info);
if (canonicalized_hostname.empty()) {
return false;
}
if (host_info.IsIPAddress()) {
base::span<uint8_t> ip_span(host_info.address);
// AddressLength() is always 0, 4, or 16, so it's safe to cast to unsigned.
IPAddress ip(
ip_span.first(static_cast<unsigned>(host_info.AddressLength())));
if (ip.IsPubliclyRoutable()) {
return false;
}
} else {
if (!base::EndsWith(canonicalized_hostname, ".local",
base::CompareCase::INSENSITIVE_ASCII) &&
!base::EndsWith(canonicalized_hostname, ".local.",
base::CompareCase::INSENSITIVE_ASCII)) {
return false;
}
}
return X509Certificate::IsSelfSigned(cert->cert_buffer());
}
// Appends the SHA256 hashes of |spki_bytes| to |*hashes|.
void AppendPublicKeyHashes(const bssl::der::Input& spki_bytes,
HashValueVector* hashes) {
hashes->emplace_back(crypto::hash::Sha256(spki_bytes));
}
// Appends the SubjectPublicKeyInfo hashes for all certificates in
// |path| to |*hashes|.
void AppendPublicKeyHashes(const bssl::CertPathBuilderResultPath& path,
HashValueVector* hashes) {
for (const std::shared_ptr<const bssl::ParsedCertificate>& cert :
path.certs) {
AppendPublicKeyHashes(cert->tbs().spki_tlv, hashes);
}
}
// CertVerifyProcTrustStore wraps a SystemTrustStore with additional trust
// anchors and TestRootCerts.
class CertVerifyProcTrustStore {
public:
// |system_trust_store| must outlive this object.
explicit CertVerifyProcTrustStore(
SystemTrustStore* system_trust_store,
bssl::TrustStoreInMemory* additional_trust_store)
: system_trust_store_(system_trust_store),
additional_trust_store_(additional_trust_store) {
trust_store_.AddTrustStore(additional_trust_store_);
trust_store_.AddTrustStore(system_trust_store_->GetTrustStore());
// When running in test mode, also layer in the test-only root certificates.
//
// Note that this integration requires TestRootCerts::HasInstance() to be
// true by the time CertVerifyProcTrustStore is created - a limitation which
// is acceptable for the test-only code that consumes this.
if (TestRootCerts::HasInstance()) {
trust_store_.AddTrustStore(
TestRootCerts::GetInstance()->test_trust_store());
}
}
bssl::TrustStore* trust_store() { return &trust_store_; }
bool IsKnownRoot(const bssl::ParsedCertificate* trust_anchor) const {
if (TestRootCerts::HasInstance() &&
TestRootCerts::GetInstance()->IsKnownRoot(trust_anchor->der_cert())) {
return true;
}
return system_trust_store_->IsKnownRoot(trust_anchor);
}
#if BUILDFLAG(CHROME_ROOT_STORE_SUPPORTED)
base::span<const ChromeRootCertConstraints> GetChromeRootConstraints(
const bssl::ParsedCertificate* cert) const {
return system_trust_store_->GetChromeRootConstraints(cert);
}
bool IsNonChromeRootStoreTrustAnchor(
const bssl::ParsedCertificate* trust_anchor) const {
return additional_trust_store_->GetTrust(trust_anchor).IsTrustAnchor() ||
system_trust_store_->IsLocallyTrustedRoot(trust_anchor);
}
bssl::TrustStore* eutl_trust_store() {
return system_trust_store_->eutl_trust_store();
}
#endif
private:
raw_ptr<SystemTrustStore> system_trust_store_;
raw_ptr<bssl::TrustStoreInMemory> additional_trust_store_;
bssl::TrustStoreCollection trust_store_;
};
// Enum for whether path building is attempting to verify a certificate as EV or
// as DV.
enum class VerificationType {
kEV, // Extended Validation
kDV, // Domain Validation
};
class PathBuilderDelegateDataImpl : public bssl::CertPathBuilderDelegateData {
public:
~PathBuilderDelegateDataImpl() override = default;
static const PathBuilderDelegateDataImpl* Get(
const bssl::CertPathBuilderResultPath& path) {
return static_cast<PathBuilderDelegateDataImpl*>(path.delegate_data.get());
}
static PathBuilderDelegateDataImpl* GetOrCreate(
bssl::CertPathBuilderResultPath* path) {
if (!path->delegate_data)
path->delegate_data = std::make_unique<PathBuilderDelegateDataImpl>();
return static_cast<PathBuilderDelegateDataImpl*>(path->delegate_data.get());
}
bssl::OCSPVerifyResult stapled_ocsp_verify_result;
SignedCertificateTimestampAndStatusList scts;
ct::CTPolicyCompliance ct_policy_compliance =
ct::CTPolicyCompliance::CT_POLICY_COMPLIANCE_DETAILS_NOT_AVAILABLE;
ct::CTRequirementsStatus ct_requirement_status =
ct::CTRequirementsStatus::CT_NOT_REQUIRED;
};
// TODO(eroman): The path building code in this file enforces its idea of weak
// keys, and signature algorithms, but separately cert_verify_proc.cc also
// checks the chains with its own policy. These policies must be aligned to
// give path building the best chance of finding a good path.
class PathBuilderDelegateImpl : public bssl::SimplePathBuilderDelegate {
public:
// Uses the default policy from bssl::SimplePathBuilderDelegate, which
// requires RSA keys to be at least 1024-bits large, and optionally accepts
// SHA1 certificates.
PathBuilderDelegateImpl(
std::string_view hostname,
const CRLSet* crl_set,
CTVerifier* ct_verifier,
const CTPolicyEnforcer* ct_policy_enforcer,
const RequireCTDelegate* require_ct_delegate,
CertNetFetcher* net_fetcher,
VerificationType verification_type,
bssl::SimplePathBuilderDelegate::DigestPolicy digest_policy,
int flags,
const CertVerifyProcTrustStore* trust_store,
const std::vector<net::CertVerifyProc::CertificateWithConstraints>&
additional_constraints,
std::string_view stapled_leaf_ocsp_response,
std::string_view sct_list_from_tls_extension,
const EVRootCAMetadata* ev_metadata,
base::TimeTicks deadline,
base::Time current_time,
bool* checked_revocation_for_some_path,
const NetLogWithSource& net_log)
: bssl::SimplePathBuilderDelegate(kMinRsaModulusLengthBits,
digest_policy),
hostname_(hostname),
crl_set_(crl_set),
ct_verifier_(ct_verifier),
ct_policy_enforcer_(ct_policy_enforcer),
require_ct_delegate_(require_ct_delegate),
net_fetcher_(net_fetcher),
verification_type_(verification_type),
flags_(flags),
trust_store_(trust_store),
additional_constraints_(additional_constraints),
stapled_leaf_ocsp_response_(stapled_leaf_ocsp_response),
sct_list_from_tls_extension_(sct_list_from_tls_extension),
ev_metadata_(ev_metadata),
deadline_(deadline),
current_time_(current_time),
checked_revocation_for_some_path_(checked_revocation_for_some_path),
net_log_(net_log) {}
// This is called for each built chain, including ones which failed. It is
// responsible for adding errors to the built chain if it is not acceptable.
void CheckPathAfterVerification(
const bssl::CertPathBuilder& path_builder,
bssl::CertPathBuilderResultPath* path) override {
net_log_->BeginEvent(NetLogEventType::CERT_VERIFY_PROC_PATH_BUILT);
CheckPathAfterVerificationImpl(path_builder, path);
net_log_->EndEvent(NetLogEventType::CERT_VERIFY_PROC_PATH_BUILT,
[&] { return NetLogPathBuilderResultPath(*path); });
}
private:
void CheckPathAfterVerificationImpl(const bssl::CertPathBuilder& path_builder,
bssl::CertPathBuilderResultPath* path) {
PathBuilderDelegateDataImpl* delegate_data =
PathBuilderDelegateDataImpl::GetOrCreate(path);
// TODO(https://crbug.com/1211074, https://crbug.com/848277): making a
// temporary X509Certificate just to pass into CTVerifier and
// CTPolicyEnforcer is silly, refactor so they take CRYPTO_BUFFER or
// ParsedCertificate or something.
std::vector<bssl::UniquePtr<CRYPTO_BUFFER>> intermediates;
if (path->certs.size() > 1) {
intermediates.push_back(bssl::UpRef(path->certs[1]->cert_buffer()));
}
auto cert_for_ct_verify = X509Certificate::CreateFromBuffer(
bssl::UpRef(path->certs[0]->cert_buffer()), std::move(intermediates));
ct_verifier_->Verify(cert_for_ct_verify.get(), stapled_leaf_ocsp_response_,
sct_list_from_tls_extension_, current_time_,
&delegate_data->scts, *net_log_);
// Check any extra constraints that might exist outside of the certificates.
CheckExtraConstraints(path->certs, &path->errors);
#if BUILDFLAG(CHROME_ROOT_STORE_SUPPORTED)
CheckChromeRootConstraints(path);
#endif
// If the path is already invalid, don't check revocation status. The
// chain is expected to be valid when doing revocation checks (since for
// instance the correct issuer for a certificate may need to be known).
// Also if certificates are already expired, obtaining their revocation
// status may fail.
//
// TODO(eroman): When CertVerifyProcBuiltin fails to find a valid path,
// whatever (partial/incomplete) path it does return should
// minimally be checked with the CRLSet.
if (!path->IsValid()) {
return;
}
// If EV was requested the certificate must chain to a recognized EV root
// and have one of its recognized EV policy OIDs.
if (verification_type_ == VerificationType::kEV) {
if (!ConformsToEVPolicy(path)) {
path->errors.GetErrorsForCert(0)->AddError(kPathLacksEVPolicy);
return;
}
}
// Select an appropriate revocation policy for this chain based on the
// verifier flags and root.
RevocationPolicy policy = ChooseRevocationPolicy(path->certs);
// Check for revocations using the CRLSet.
switch (
CheckChainRevocationUsingCRLSet(crl_set_, path->certs, &path->errors)) {
case CRLSet::Result::REVOKED:
return;
case CRLSet::Result::GOOD:
break;
case CRLSet::Result::UNKNOWN:
// CRLSet was inconclusive.
break;
}
if (policy.check_revocation) {
*checked_revocation_for_some_path_ = true;
}
// Check the revocation status for each certificate in the chain according
// to |policy|. Depending on the policy, errors will be added to the
// respective certificates, so |errors->ContainsHighSeverityErrors()| will
// reflect the revocation status of the chain after this call.
CheckValidatedChainRevocation(path->certs, policy, deadline_,
stapled_leaf_ocsp_response_, current_time_,
net_fetcher_, &path->errors,
&delegate_data->stapled_ocsp_verify_result);
CheckCertificateTransparency(path, cert_for_ct_verify.get(), delegate_data);
}
void CheckCertificateTransparency(
bssl::CertPathBuilderResultPath* path,
X509Certificate* cert_for_ct_verify,
PathBuilderDelegateDataImpl* delegate_data) {
if (!ct_policy_enforcer_->IsCtEnabled()) {
return;
}
ct::SCTList verified_scts;
for (const auto& sct_and_status : delegate_data->scts) {
if (sct_and_status.status == ct::SCT_STATUS_OK) {
verified_scts.push_back(sct_and_status.sct);
}
}
delegate_data->ct_policy_compliance = ct_policy_enforcer_->CheckCompliance(
cert_for_ct_verify, verified_scts, current_time_, *net_log_);
// TODO(crbug.com/41392053): The SPKI hashes are calculated here, during
// CRLSet checks, and in AssignVerifyResult. Calculate once and cache in
// delegate_data so that it can be reused.
HashValueVector public_key_hashes;
AppendPublicKeyHashes(*path, &public_key_hashes);
bool is_issued_by_known_root = false;
const bssl::ParsedCertificate* trusted_cert = path->GetTrustedCert();
if (trusted_cert) {
is_issued_by_known_root = trust_store_->IsKnownRoot(trusted_cert);
}
delegate_data->ct_requirement_status =
RequireCTDelegate::CheckCTRequirements(
require_ct_delegate_.get(), hostname_, is_issued_by_known_root,
public_key_hashes, cert_for_ct_verify,
delegate_data->ct_policy_compliance);
switch (delegate_data->ct_requirement_status) {
case ct::CTRequirementsStatus::CT_REQUIREMENTS_NOT_MET:
path->errors.GetErrorsForCert(0)->AddError(kCtRequirementsNotMet);
break;
case ct::CTRequirementsStatus::CT_REQUIREMENTS_MET:
break;
case ct::CTRequirementsStatus::CT_NOT_REQUIRED:
if (flags_ & CertVerifyProc::VERIFY_SXG_CT_REQUIREMENTS) {
// CT is not required if the certificate does not chain to a publicly
// trusted root certificate.
if (!is_issued_by_known_root) {
break;
}
// For old certificates (issued before 2018-05-01),
// CheckCTRequirements() may return CT_NOT_REQUIRED, so we check the
// compliance status here.
// TODO(crbug.com/40580363): Remove this condition once we require
// signing certificates to have CanSignHttpExchanges extension,
// because such certificates should be naturally after 2018-05-01.
if (delegate_data->ct_policy_compliance ==
net::ct::CTPolicyCompliance::CT_POLICY_COMPLIES_VIA_SCTS ||
delegate_data->ct_policy_compliance ==
net::ct::CTPolicyCompliance::CT_POLICY_BUILD_NOT_TIMELY) {
break;
}
// Require CT compliance, by overriding CT_NOT_REQUIRED and treat it
// as ERR_CERTIFICATE_TRANSPARENCY_REQUIRED.
path->errors.GetErrorsForCert(0)->AddError(kCtRequirementsNotMet);
}
break;
}
}
#if BUILDFLAG(CHROME_ROOT_STORE_SUPPORTED)
// Returns the SCTs from `scts` that are verified successfully and signed by
// a log which was not disqualified.
ct::SCTList ValidScts(const SignedCertificateTimestampAndStatusList& scts) {
ct::SCTList valid_scts;
for (const auto& sct_and_status : scts) {
if (sct_and_status.status != ct::SCT_STATUS_OK) {
continue;
}
std::optional<base::Time> disqualification_time =
ct_policy_enforcer_->GetLogDisqualificationTime(
sct_and_status.sct->log_id);
// TODO(https://crbug.com/40840044): use the same time source here as for
// the rest of verification.
if (disqualification_time && base::Time::Now() >= disqualification_time) {
continue;
}
valid_scts.push_back(sct_and_status.sct);
}
return valid_scts;
}
bool CheckPathSatisfiesChromeRootConstraint(
bssl::CertPathBuilderResultPath* path,
const ChromeRootCertConstraints& constraint) {
PathBuilderDelegateDataImpl* delegate_data =
PathBuilderDelegateDataImpl::GetOrCreate(path);
// TODO(https://crbug.com/40941039): add more specific netlog or CertError
// logs about which constraint failed exactly? (Note that it could be
// confusing when there are multiple ChromeRootCertConstraints objects,
// would need to clearly distinguish which set of constraints had errors.)
if (ct_policy_enforcer_->IsCtEnabled()) {
if (constraint.sct_not_after.has_value()) {
bool found_matching_sct = false;
for (const auto& sct : ValidScts(delegate_data->scts)) {
if (sct->timestamp <= constraint.sct_not_after.value()) {
found_matching_sct = true;
break;
}
}
if (!found_matching_sct) {
return false;
}
}
if (constraint.sct_all_after.has_value()) {
ct::SCTList valid_scts = ValidScts(delegate_data->scts);
if (valid_scts.empty()) {
return false;
}
for (const auto& sct : ValidScts(delegate_data->scts)) {
if (sct->timestamp <= constraint.sct_all_after.value()) {
return false;
}
}
}
}
if (!constraint.permitted_dns_names.empty()) {
bssl::GeneralNames permitted_names;
for (const auto& dns_name : constraint.permitted_dns_names) {
permitted_names.dns_names.push_back(dns_name);
}
permitted_names.present_name_types |=
bssl::GeneralNameTypes::GENERAL_NAME_DNS_NAME;
std::unique_ptr<bssl::NameConstraints> nc =
bssl::NameConstraints::CreateFromPermittedSubtrees(
std::move(permitted_names));
const std::shared_ptr<const bssl::ParsedCertificate>& leaf_cert =
path->certs[0];
bssl::CertErrors name_constraint_errors;
nc->IsPermittedCert(leaf_cert->normalized_subject(),
leaf_cert->subject_alt_names(),
&name_constraint_errors);
if (name_constraint_errors.ContainsAnyErrorWithSeverity(
bssl::CertError::SEVERITY_HIGH)) {
return false;
}
}
if (constraint.min_version.has_value() &&
version_info::GetVersion() < constraint.min_version.value()) {
return false;
}
if (constraint.max_version_exclusive.has_value() &&
version_info::GetVersion() >=
constraint.max_version_exclusive.value()) {
return false;
}
return true;
}
void CheckChromeRootConstraints(bssl::CertPathBuilderResultPath* path) {
// If the root is trusted locally, do not enforce CRS constraints, even if
// some exist.
if (trust_store_->IsNonChromeRootStoreTrustAnchor(
path->certs.back().get())) {
return;
}
if (base::span<const ChromeRootCertConstraints> constraints =
trust_store_->GetChromeRootConstraints(path->certs.back().get());
!constraints.empty()) {
bool found_valid_constraint = false;
for (const ChromeRootCertConstraints& constraint : constraints) {
found_valid_constraint |=
CheckPathSatisfiesChromeRootConstraint(path, constraint);
}
if (!found_valid_constraint) {
path->errors.GetOtherErrors()->AddError(kChromeRootConstraintsFailed);
}
}
}
#endif
// Check extra constraints that aren't encoded in the certificates themselves.
void CheckExtraConstraints(const bssl::ParsedCertificateList& certs,
bssl::CertPathErrors* errors) {
const std::shared_ptr<const bssl::ParsedCertificate> root_cert =
certs.back();
// An assumption being made is that there will be at most a few (2-3) certs
// in here; if there are more and this ends up being a drag on performance
// it may be worth making additional_constraints_ into a map storing certs
// by hash.
for (const auto& cert_with_constraints : *additional_constraints_) {
if (!x509_util::CryptoBufferEqual(
root_cert->cert_buffer(),
cert_with_constraints.certificate->cert_buffer())) {
continue;
}
// Found the cert, check constraints
if (cert_with_constraints.permitted_dns_names.empty() &&
cert_with_constraints.permitted_cidrs.empty()) {
// No constraints to check.
return;
}
bssl::GeneralNames permitted_names;
if (!cert_with_constraints.permitted_dns_names.empty()) {
for (const auto& dns_name : cert_with_constraints.permitted_dns_names) {
permitted_names.dns_names.push_back(dns_name);
}
permitted_names.present_name_types |=
bssl::GeneralNameTypes::GENERAL_NAME_DNS_NAME;
}
if (!cert_with_constraints.permitted_cidrs.empty()) {
for (const auto& cidr : cert_with_constraints.permitted_cidrs) {
permitted_names.ip_address_ranges.emplace_back(cidr.ip.bytes(),
cidr.mask.bytes());
}
permitted_names.present_name_types |=
bssl::GeneralNameTypes::GENERAL_NAME_IP_ADDRESS;
}
std::unique_ptr<bssl::NameConstraints> nc =
bssl::NameConstraints::CreateFromPermittedSubtrees(
std::move(permitted_names));
const std::shared_ptr<const bssl::ParsedCertificate>& leaf_cert =
certs[0];
nc->IsPermittedCert(leaf_cert->normalized_subject(),
leaf_cert->subject_alt_names(),
errors->GetErrorsForCert(0));
return;
}
}
// Selects a revocation policy based on the CertVerifier flags and the given
// certificate chain.
RevocationPolicy ChooseRevocationPolicy(
const bssl::ParsedCertificateList& certs) {
if (flags_ & CertVerifyProc::VERIFY_DISABLE_NETWORK_FETCHES) {
// In theory when network fetches are disabled but revocation is enabled
// we could continue with networking_allowed=false (and
// VERIFY_REV_CHECKING_REQUIRED_LOCAL_ANCHORS would also have to change
// allow_missing_info and allow_unable_to_check to true).
// That theoretically could allow still consulting any cached CRLs/etc.
// However in the way things are currently implemented in the builtin
// verifier there really is no point to bothering, just disable
// revocation checking if network fetches are disabled.
return NoRevocationChecking();
}
// Use hard-fail revocation checking for local trust anchors, if requested
// by the load flag and the chain uses a non-public root.
if ((flags_ & CertVerifyProc::VERIFY_REV_CHECKING_REQUIRED_LOCAL_ANCHORS) &&
!certs.empty() && !trust_store_->IsKnownRoot(certs.back().get())) {
RevocationPolicy policy;
policy.check_revocation = true;
policy.networking_allowed = true;
policy.crl_allowed = true;
policy.allow_missing_info = false;
policy.allow_unable_to_check = false;
policy.enforce_baseline_requirements = false;
return policy;
}
// Use soft-fail revocation checking for VERIFY_REV_CHECKING_ENABLED.
if (flags_ & CertVerifyProc::VERIFY_REV_CHECKING_ENABLED) {
const bool is_known_root =
!certs.empty() && trust_store_->IsKnownRoot(certs.back().get());
RevocationPolicy policy;
policy.check_revocation = true;
policy.networking_allowed = true;
// Publicly trusted certs are required to have OCSP by the Baseline
// Requirements and CRLs can be quite large, so disable the fallback to
// CRLs for chains to known roots.
policy.crl_allowed = !is_known_root;
policy.allow_missing_info = true;
policy.allow_unable_to_check = true;
policy.enforce_baseline_requirements = is_known_root;
return policy;
}
return NoRevocationChecking();
}
// Returns true if |path| chains to an EV root, and the chain conforms to
// one of its EV policy OIDs. When building paths all candidate EV policy
// OIDs were requested, so it is just a matter of testing each of the
// policies the chain conforms to.
bool ConformsToEVPolicy(const bssl::CertPathBuilderResultPath* path) {
const bssl::ParsedCertificate* root = path->GetTrustedCert();
if (!root) {
return false;
}
SHA256HashValue root_fingerprint = crypto::hash::Sha256(root->der_cert());
for (const bssl::der::Input& oid : path->user_constrained_policy_set) {
if (ev_metadata_->HasEVPolicyOID(root_fingerprint, oid)) {
return true;
}
}
return false;
}
bool IsDeadlineExpired() override {
return !deadline_.is_null() && base::TimeTicks::Now() > deadline_;
}
bool IsDebugLogEnabled() override { return net_log_->IsCapturing(); }
void DebugLog(std::string_view msg) override {
net_log_->AddEventWithStringParams(
NetLogEventType::CERT_VERIFY_PROC_PATH_BUILDER_DEBUG, "debug", msg);
}
std::string_view hostname_;
raw_ptr<const CRLSet> crl_set_;
raw_ptr<CTVerifier> ct_verifier_;
raw_ptr<const CTPolicyEnforcer> ct_policy_enforcer_;
raw_ptr<const RequireCTDelegate> require_ct_delegate_;
raw_ptr<CertNetFetcher> net_fetcher_;
const VerificationType verification_type_;
const int flags_;
raw_ptr<const CertVerifyProcTrustStore> trust_store_;
raw_ref<const std::vector<net::CertVerifyProc::CertificateWithConstraints>>
additional_constraints_;
const std::string_view stapled_leaf_ocsp_response_;
const std::string_view sct_list_from_tls_extension_;
raw_ptr<const EVRootCAMetadata> ev_metadata_;
base::TimeTicks deadline_;
base::Time current_time_;
raw_ptr<bool> checked_revocation_for_some_path_;
raw_ref<const NetLogWithSource> net_log_;
};
class QwacPathBuilderDelegateImpl : public bssl::SimplePathBuilderDelegate {
public:
explicit QwacPathBuilderDelegateImpl(const NetLogWithSource& net_log)
: bssl::SimplePathBuilderDelegate(
kMinRsaModulusLengthBits,
bssl::SimplePathBuilderDelegate::DigestPolicy::kStrong),
net_log_(net_log) {}
void CheckPathAfterVerification(
const bssl::CertPathBuilder& path_builder,
bssl::CertPathBuilderResultPath* path) override {
net_log_->BeginEvent(NetLogEventType::CERT_VERIFY_PROC_PATH_BUILT);
if (HasQwacPolicies(path->user_constrained_policy_set) !=
QwacPoliciesStatus::kHasQwacPolicies) {
path->errors.GetErrorsForCert(0)->AddError(kPathLacksQwacPolicy);
}
net_log_->EndEvent(NetLogEventType::CERT_VERIFY_PROC_PATH_BUILT,
[&] { return NetLogPathBuilderResultPath(*path); });
}
virtual QwacPoliciesStatus HasQwacPolicies(
const std::set<bssl::der::Input>& policy_set) = 0;
bool IsDebugLogEnabled() override { return net_log_->IsCapturing(); }
void DebugLog(std::string_view msg) override {
net_log_->AddEventWithStringParams(
NetLogEventType::CERT_VERIFY_PROC_PATH_BUILDER_DEBUG, "debug", msg);
}
private:
raw_ref<const NetLogWithSource> net_log_;
};
class OneQwacPathBuilderDelegateImpl : public QwacPathBuilderDelegateImpl {
public:
explicit OneQwacPathBuilderDelegateImpl(const NetLogWithSource& net_log)
: QwacPathBuilderDelegateImpl(net_log) {}
QwacPoliciesStatus HasQwacPolicies(
const std::set<bssl::der::Input>& policy_set) override {
return Has1QwacPolicies(policy_set);
}
};
class TwoQwacPathBuilderDelegateImpl : public QwacPathBuilderDelegateImpl {
public:
explicit TwoQwacPathBuilderDelegateImpl(const NetLogWithSource& net_log)
: QwacPathBuilderDelegateImpl(net_log) {}
QwacPoliciesStatus HasQwacPolicies(
const std::set<bssl::der::Input>& policy_set) override {
return Has2QwacPolicies(policy_set);
}
};
std::shared_ptr<const bssl::ParsedCertificate> ParseCertificateFromBuffer(
CRYPTO_BUFFER* cert_handle,
bssl::CertErrors* errors) {
return bssl::ParsedCertificate::Create(
bssl::UpRef(cert_handle), x509_util::DefaultParseCertificateOptions(),
errors);
}
class CertVerifyProcBuiltin : public CertVerifyProc {
public:
CertVerifyProcBuiltin(scoped_refptr<CertNetFetcher> net_fetcher,
scoped_refptr<CRLSet> crl_set,
std::unique_ptr<CTVerifier> ct_verifier,
scoped_refptr<CTPolicyEnforcer> ct_policy_enforcer,
std::unique_ptr<SystemTrustStore> system_trust_store,
const CertVerifyProc::InstanceParams& instance_params,
std::optional<network_time::TimeTracker> time_tracker);
protected:
~CertVerifyProcBuiltin() override;
private:
void LogChromeRootStoreVersion(const NetLogWithSource& net_log);
int VerifyInternal(X509Certificate* cert,
const std::string& hostname,
const std::string& ocsp_response,
const std::string& sct_list,
int flags,
CertVerifyResult* verify_result,
const NetLogWithSource& net_log) override;
#if BUILDFLAG(CHROME_ROOT_STORE_SUPPORTED)
scoped_refptr<X509Certificate> Verify2QwacBinding(
std::string_view binding,
const std::string& hostname,
base::span<const uint8_t> tls_cert,
const NetLogWithSource& net_log) override;
int Verify2Qwac(X509Certificate* input_cert,
const std::string& hostname,
CertVerifyResult* verify_result,
const NetLogWithSource& net_log) override;
int Verify2QwacInternal(X509Certificate* input_cert,
const std::string& hostname,
CertVerifyResult* verify_result,
const NetLogWithSource& net_log);
void MaybeVerify1QWAC(const bssl::CertPathBuilderResultPath* verified_path,
const bssl::der::GeneralizedTime& der_verification_time,
CertVerifyResult* verify_result,
const NetLogWithSource& net_log);
#endif
const scoped_refptr<CertNetFetcher> net_fetcher_;
const std::unique_ptr<CTVerifier> ct_verifier_;
const scoped_refptr<CTPolicyEnforcer> ct_policy_enforcer_;
const scoped_refptr<const RequireCTDelegate> require_ct_delegate_;
const std::unique_ptr<SystemTrustStore> system_trust_store_;
std::vector<net::CertVerifyProc::CertificateWithConstraints>
additional_constraints_;
bssl::TrustStoreInMemory additional_trust_store_;
const std::optional<network_time::TimeTracker> time_tracker_;
};
CertVerifyProcBuiltin::CertVerifyProcBuiltin(
scoped_refptr<CertNetFetcher> net_fetcher,
scoped_refptr<CRLSet> crl_set,
std::unique_ptr<CTVerifier> ct_verifier,
scoped_refptr<CTPolicyEnforcer> ct_policy_enforcer,
std::unique_ptr<SystemTrustStore> system_trust_store,
const CertVerifyProc::InstanceParams& instance_params,
std::optional<network_time::TimeTracker> time_tracker)
: CertVerifyProc(std::move(crl_set)),
net_fetcher_(std::move(net_fetcher)),
ct_verifier_(std::move(ct_verifier)),
ct_policy_enforcer_(std::move(ct_policy_enforcer)),
require_ct_delegate_(instance_params.require_ct_delegate),
system_trust_store_(std::move(system_trust_store)),
time_tracker_(std::move(time_tracker)) {
DCHECK(system_trust_store_);
NetLogWithSource net_log =
NetLogWithSource::Make(net::NetLogSourceType::CERT_VERIFY_PROC_CREATED);
net_log.BeginEvent(NetLogEventType::CERT_VERIFY_PROC_CREATED);
// When adding additional certs from instance params, there needs to be a
// priority order if a cert is added with multiple different trust types.
//
// The priority is as follows:
//
// (a) Distrusted SPKIs (though we don't check for SPKI collisions in added
// certs; we rely on that to happen in path building).
// (b) Trusted certs with enforced constraints both in the cert and
// specified externally outside of the cert.
// (c) Trusted certs with enforced constraints only within the cert.
// (d) Trusted certs w/o enforced constraints.
// (e) Unspecified certs.
//
// No effort was made to categorize what applies if a cert is specified
// within the same category multiple times.
for (const auto& spki : instance_params.additional_distrusted_spkis) {
additional_trust_store_.AddDistrustedCertificateBySPKI(
std::string(base::as_string_view(spki)));
net_log.AddEvent(NetLogEventType::CERT_VERIFY_PROC_ADDITIONAL_CERT, [&] {
base::Value::Dict results;
results.Set("spki", NetLogBinaryValue(base::span(spki)));
results.Set("trust",
bssl::CertificateTrust::ForDistrusted().ToDebugString());
return results;
});
}
bssl::CertificateTrust anchor_trust_enforcement =
bssl::CertificateTrust::ForTrustAnchor()
.WithEnforceAnchorConstraints()
.WithEnforceAnchorExpiry();
for (const auto& cert_with_constraints :
instance_params.additional_trust_anchors_with_constraints) {
const std::shared_ptr<const bssl::ParsedCertificate>& cert =
cert_with_constraints.certificate;
additional_trust_store_.AddCertificate(cert, anchor_trust_enforcement);
additional_constraints_.push_back(cert_with_constraints);
bssl::CertErrors parsing_errors;
net_log.AddEvent(NetLogEventType::CERT_VERIFY_PROC_ADDITIONAL_CERT, [&] {
return NetLogAdditionalCert(cert->cert_buffer(),
bssl::CertificateTrust::ForTrustAnchor(),
parsing_errors);
});
}
bssl::CertificateTrust leaf_trust = bssl::CertificateTrust::ForTrustedLeaf();
for (const auto& cert_with_possible_constraints :
instance_params.additional_trust_leafs) {
const std::shared_ptr<const bssl::ParsedCertificate>& cert =
cert_with_possible_constraints.certificate;
if (!additional_trust_store_.Contains(cert.get())) {
if (!cert_with_possible_constraints.permitted_dns_names.empty() ||
!cert_with_possible_constraints.permitted_cidrs.empty()) {
additional_constraints_.push_back(cert_with_possible_constraints);
}
bssl::CertErrors parsing_errors;
additional_trust_store_.AddCertificate(cert, leaf_trust);
net_log.AddEvent(NetLogEventType::CERT_VERIFY_PROC_ADDITIONAL_CERT, [&] {
return NetLogAdditionalCert(cert->cert_buffer(), leaf_trust,
parsing_errors);
});
}
}
bssl::CertificateTrust anchor_leaf_trust =
bssl::CertificateTrust::ForTrustAnchorOrLeaf()
.WithEnforceAnchorConstraints()
.WithEnforceAnchorExpiry();
for (const auto& cert_with_possible_constraints :
instance_params.additional_trust_anchors_and_leafs) {
const std::shared_ptr<const bssl::ParsedCertificate>& cert =
cert_with_possible_constraints.certificate;
if (!additional_trust_store_.Contains(cert.get())) {
if (!cert_with_possible_constraints.permitted_dns_names.empty() ||
!cert_with_possible_constraints.permitted_cidrs.empty()) {
additional_constraints_.push_back(cert_with_possible_constraints);
}
bssl::CertErrors parsing_errors;
additional_trust_store_.AddCertificate(cert, anchor_leaf_trust);
net_log.AddEvent(NetLogEventType::CERT_VERIFY_PROC_ADDITIONAL_CERT, [&] {
return NetLogAdditionalCert(cert->cert_buffer(), anchor_leaf_trust,
parsing_errors);
});
}
}
for (const auto& cert :
instance_params.additional_trust_anchors_with_enforced_constraints) {
bssl::CertErrors parsing_errors;
if (!additional_trust_store_.Contains(cert.get())) {
additional_trust_store_.AddCertificate(cert, anchor_trust_enforcement);
net_log.AddEvent(NetLogEventType::CERT_VERIFY_PROC_ADDITIONAL_CERT, [&] {
return NetLogAdditionalCert(cert->cert_buffer(),
anchor_trust_enforcement, parsing_errors);
});
}
}
for (const auto& cert : instance_params.additional_trust_anchors) {
bssl::CertErrors parsing_errors;
// Only add if it wasn't already present in `additional_trust_store_`. This
// is for two reasons:
// (1) TrustStoreInMemory doesn't expect to contain duplicates
// (2) If the same anchor is added with enforced constraints, that takes
// precedence.
if (!additional_trust_store_.Contains(cert.get())) {
additional_trust_store_.AddTrustAnchor(cert);
}
net_log.AddEvent(NetLogEventType::CERT_VERIFY_PROC_ADDITIONAL_CERT, [&] {
return NetLogAdditionalCert(cert->cert_buffer(),
bssl::CertificateTrust::ForTrustAnchor(),
parsing_errors);
});
}
for (const auto& cert : instance_params.additional_untrusted_authorities) {
bssl::CertErrors parsing_errors;
// Only add the untrusted cert if it isn't already present in
// `additional_trust_store_`. If the same cert was already added as a
// trust anchor then adding it again as an untrusted cert can lead to it
// not being treated as a trust anchor since TrustStoreInMemory doesn't
// expect to contain duplicates.
if (!additional_trust_store_.Contains(cert.get())) {
additional_trust_store_.AddCertificateWithUnspecifiedTrust(cert);
}
net_log.AddEvent(NetLogEventType::CERT_VERIFY_PROC_ADDITIONAL_CERT, [&] {
return NetLogAdditionalCert(cert->cert_buffer(),
bssl::CertificateTrust::ForUnspecified(),
parsing_errors);
});
}
net_log.EndEvent(NetLogEventType::CERT_VERIFY_PROC_CREATED);
}
CertVerifyProcBuiltin::~CertVerifyProcBuiltin() = default;
void AddIntermediatesToIssuerSource(X509Certificate* x509_cert,
bssl::CertIssuerSourceStatic* intermediates,
const NetLogWithSource& net_log) {
for (const auto& intermediate : x509_cert->intermediate_buffers()) {
bssl::CertErrors errors;
std::shared_ptr<const bssl::ParsedCertificate> cert =
ParseCertificateFromBuffer(intermediate.get(), &errors);
// TODO(crbug.com/40479281): this duplicates the logging of the input chain
// maybe should only log if there is a parse error/warning?
net_log.AddEvent(NetLogEventType::CERT_VERIFY_PROC_INPUT_CERT, [&] {
return NetLogCertParams(intermediate.get(), errors);
});
if (cert) {
intermediates->AddCert(std::move(cert));
}
}
}
// Sets the bits on |cert_status| for all the errors present in |errors| (the
// errors for a particular path).
void MapPathBuilderErrorsToCertStatus(const bssl::CertPathErrors& errors,
CertStatus* cert_status) {
// If there were no errors, nothing to do.
if (!errors.ContainsHighSeverityErrors())
return;
if (errors.ContainsError(bssl::cert_errors::kCertificateRevoked)) {
*cert_status |= CERT_STATUS_REVOKED;
}
if (errors.ContainsError(bssl::cert_errors::kNoRevocationMechanism)) {
*cert_status |= CERT_STATUS_NO_REVOCATION_MECHANISM;
}
if (errors.ContainsError(bssl::cert_errors::kUnableToCheckRevocation)) {
*cert_status |= CERT_STATUS_UNABLE_TO_CHECK_REVOCATION;
}
if (errors.ContainsError(bssl::cert_errors::kUnacceptablePublicKey)) {
*cert_status |= CERT_STATUS_WEAK_KEY;
}
if (errors.ContainsError(bssl::cert_errors::kValidityFailedNotAfter) ||
errors.ContainsError(bssl::cert_errors::kValidityFailedNotBefore)) {
*cert_status |= CERT_STATUS_DATE_INVALID;
}
if (errors.ContainsError(bssl::cert_errors::kDistrustedByTrustStore) ||
errors.ContainsError(bssl::cert_errors::kVerifySignedDataFailed) ||
errors.ContainsError(bssl::cert_errors::kNoIssuersFound) ||
errors.ContainsError(bssl::cert_errors::kSubjectDoesNotMatchIssuer) ||
errors.ContainsError(bssl::cert_errors::kDeadlineExceeded) ||
errors.ContainsError(bssl::cert_errors::kIterationLimitExceeded) ||
errors.ContainsError(kChromeRootConstraintsFailed)) {
*cert_status |= CERT_STATUS_AUTHORITY_INVALID;
}
if (errors.ContainsError(kCtRequirementsNotMet)) {
*cert_status |= CERT_STATUS_CERTIFICATE_TRANSPARENCY_REQUIRED;
}
// IMPORTANT: If the path was invalid for a reason that was not
// explicity checked above, set a general error. This is important as
// |cert_status| is what ultimately indicates whether verification was
// successful or not (absence of errors implies success).
if (!IsCertStatusError(*cert_status))
*cert_status |= CERT_STATUS_INVALID;
}
// Creates a X509Certificate (chain) to return as the verified result.
//
// * |target_cert|: The original X509Certificate that was passed in to
// VerifyInternal()
// * |path|: The result (possibly failed) from path building.
scoped_refptr<X509Certificate> CreateVerifiedCertChain(
X509Certificate* target_cert,
const bssl::CertPathBuilderResultPath& path) {
std::vector<bssl::UniquePtr<CRYPTO_BUFFER>> intermediates;
// Skip the first certificate in the path as that is the target certificate
for (size_t i = 1; i < path.certs.size(); ++i) {
intermediates.push_back(bssl::UpRef(path.certs[i]->cert_buffer()));
}
scoped_refptr<X509Certificate> result =
target_cert->CloneWithDifferentIntermediates(std::move(intermediates));
DCHECK(result);
return result;
}
// Describes the parameters for a single path building attempt. Path building
// may be re-tried with different parameters for EV and for accepting SHA1
// certificates.
struct BuildPathAttempt {
BuildPathAttempt(VerificationType verification_type,
bssl::SimplePathBuilderDelegate::DigestPolicy digest_policy,
bool use_system_time)
: verification_type(verification_type),
digest_policy(digest_policy),
use_system_time(use_system_time) {}
BuildPathAttempt(VerificationType verification_type, bool use_system_time)
: BuildPathAttempt(verification_type,
bssl::SimplePathBuilderDelegate::DigestPolicy::kStrong,
use_system_time) {}
VerificationType verification_type;
bssl::SimplePathBuilderDelegate::DigestPolicy digest_policy;
bool use_system_time;
};
bssl::CertPathBuilder::Result TryBuildPath(
const std::shared_ptr<const bssl::ParsedCertificate>& target,
bssl::CertIssuerSourceStatic* intermediates,
const std::string& hostname,
CertVerifyProcTrustStore* trust_store,
const std::vector<net::CertVerifyProc::CertificateWithConstraints>&
additional_constraints,
const bssl::der::GeneralizedTime& der_verification_time,
base::Time current_time,
base::TimeTicks deadline,
VerificationType verification_type,
bssl::SimplePathBuilderDelegate::DigestPolicy digest_policy,
int flags,
std::string_view ocsp_response,
std::string_view sct_list,
const CRLSet* crl_set,
CTVerifier* ct_verifier,
const CTPolicyEnforcer* ct_policy_enforcer,
const RequireCTDelegate* require_ct_delegate,
CertNetFetcher* net_fetcher,
const EVRootCAMetadata* ev_metadata,
bool* checked_revocation,
const NetLogWithSource& net_log) {
// Path building will require candidate paths to conform to at least one of
// the policies in |user_initial_policy_set|.
std::set<bssl::der::Input> user_initial_policy_set;
if (verification_type == VerificationType::kEV) {
GetEVPolicyOids(ev_metadata, target.get(), &user_initial_policy_set);
// TODO(crbug.com/40479281): netlog user_initial_policy_set.
} else {
user_initial_policy_set = {bssl::der::Input(bssl::kAnyPolicyOid)};
}
PathBuilderDelegateImpl path_builder_delegate(
hostname, crl_set, ct_verifier, ct_policy_enforcer, require_ct_delegate,
net_fetcher, verification_type, digest_policy, flags, trust_store,
additional_constraints, ocsp_response, sct_list, ev_metadata, deadline,
current_time, checked_revocation, net_log);
std::optional<CertIssuerSourceAia> aia_cert_issuer_source;
// Initialize the path builder.
bssl::CertPathBuilder path_builder(
target, trust_store->trust_store(), &path_builder_delegate,
der_verification_time, bssl::KeyPurpose::SERVER_AUTH,
bssl::InitialExplicitPolicy::kFalse, user_initial_policy_set,
bssl::InitialPolicyMappingInhibit::kFalse,
bssl::InitialAnyPolicyInhibit::kFalse);
// Allow the path builder to discover the explicitly provided intermediates in
// |input_cert|.
path_builder.AddCertIssuerSource(intermediates);
#if BUILDFLAG(CHROME_ROOT_STORE_SUPPORTED)
if (base::FeatureList::IsEnabled(features::kVerifyQWACs)) {
// Certs on the EUTL are also provided as hints for path building.
path_builder.AddCertIssuerSource(trust_store->eutl_trust_store());
}
#endif
// Allow the path builder to discover intermediates through AIA fetching.
// TODO(crbug.com/40479281): hook up netlog to AIA.
if (!(flags & CertVerifyProc::VERIFY_DISABLE_NETWORK_FETCHES)) {
if (net_fetcher) {
aia_cert_issuer_source.emplace(net_fetcher);
path_builder.AddCertIssuerSource(&aia_cert_issuer_source.value());
} else {
VLOG(1) << "No net_fetcher for performing AIA chasing.";
}
}
path_builder.SetIterationLimit(kPathBuilderIterationLimit);
return path_builder.Run();
}
int AssignVerifyResult(
X509Certificate* input_cert,
const std::string& hostname,
const bssl::CertPathBuilderResultPath* best_path_possibly_invalid,
VerificationType verification_type,
bool checked_revocation_for_some_path,
CertVerifyProcTrustStore* trust_store,
CertVerifyResult* verify_result) {
if (!best_path_possibly_invalid) {
// TODO(crbug.com/41267838): What errors to communicate? Maybe the path
// builder should always return some partial path (even if just containing
// the target), then there is a bssl::CertErrors to test.
verify_result->cert_status |= CERT_STATUS_AUTHORITY_INVALID;
return ERR_CERT_AUTHORITY_INVALID;
}
const bssl::CertPathBuilderResultPath& partial_path =
*best_path_possibly_invalid;
AppendPublicKeyHashes(partial_path, &verify_result->public_key_hashes);
bool path_is_valid = partial_path.IsValid();
const bssl::ParsedCertificate* trusted_cert = partial_path.GetTrustedCert();
if (trusted_cert) {
verify_result->is_issued_by_known_root =
trust_store->IsKnownRoot(trusted_cert);
}
if (path_is_valid && (verification_type == VerificationType::kEV)) {
verify_result->cert_status |= CERT_STATUS_IS_EV;
}
// TODO(eroman): Add documentation for the meaning of
// CERT_STATUS_REV_CHECKING_ENABLED. Based on the current tests it appears to
// mean whether revocation checking was attempted during path building,
// although does not necessarily mean that revocation checking was done for
// the final returned path.
if (checked_revocation_for_some_path)
verify_result->cert_status |= CERT_STATUS_REV_CHECKING_ENABLED;
verify_result->verified_cert =
CreateVerifiedCertChain(input_cert, partial_path);
MapPathBuilderErrorsToCertStatus(partial_path.errors,
&verify_result->cert_status);
// TODO(eroman): Is it possible that IsValid() fails but no errors were set in
// partial_path.errors?
CHECK(path_is_valid || IsCertStatusError(verify_result->cert_status));
if (!path_is_valid) {
VLOG(1) << "CertVerifyProcBuiltin for " << hostname << " failed:\n"
<< partial_path.errors.ToDebugString(partial_path.certs);
}
const PathBuilderDelegateDataImpl* delegate_data =
PathBuilderDelegateDataImpl::Get(partial_path);
if (delegate_data) {
verify_result->ocsp_result = delegate_data->stapled_ocsp_verify_result;
verify_result->scts = std::move(delegate_data->scts);
verify_result->policy_compliance = delegate_data->ct_policy_compliance;
verify_result->ct_requirement_status = delegate_data->ct_requirement_status;
}
if (IsCertStatusError(verify_result->cert_status)) {
if (IsSelfSignedCertOnLocalNetwork(input_cert, hostname)) {
verify_result->cert_status |= CERT_STATUS_SELF_SIGNED_LOCAL_NETWORK;
}
return MapCertStatusToNetError(verify_result->cert_status);
}
return OK;
}
// Returns true if retrying path building with a less stringent signature
// algorithm *might* successfully build a path, based on the earlier failed
// |result|.
//
// This implementation is simplistic, and looks only for the presence of the
// kUnacceptableSignatureAlgorithm error somewhere among the built paths.
bool CanTryAgainWithWeakerDigestPolicy(
const bssl::CertPathBuilder::Result& result) {
return result.AnyPathContainsError(
bssl::cert_errors::kUnacceptableSignatureAlgorithm);
}
// Returns true if retrying with the system time as the verification time might
// successfully build a path, based on the earlier failed |result|.
bool CanTryAgainWithSystemTime(const bssl::CertPathBuilder::Result& result) {
// TODO(crbug.com/363034686): Retries should also be triggered for CT
// failures.
return result.AnyPathContainsError(
bssl::cert_errors::kValidityFailedNotAfter) ||
result.AnyPathContainsError(
bssl::cert_errors::kValidityFailedNotBefore) ||
result.AnyPathContainsError(bssl::cert_errors::kCertificateRevoked) ||
result.AnyPathContainsError(
bssl::cert_errors::kUnableToCheckRevocation);
}
void CertVerifyProcBuiltin::LogChromeRootStoreVersion(
const NetLogWithSource& net_log) {
#if BUILDFLAG(CHROME_ROOT_STORE_SUPPORTED)
int64_t chrome_root_store_version =
system_trust_store_->chrome_root_store_version();
if (chrome_root_store_version != 0) {
net_log.AddEvent(
NetLogEventType::CERT_VERIFY_PROC_CHROME_ROOT_STORE_VERSION, [&] {
return NetLogChromeRootStoreVersion(chrome_root_store_version);
});
}
#endif
}
int CertVerifyProcBuiltin::VerifyInternal(X509Certificate* input_cert,
const std::string& hostname,
const std::string& ocsp_response,
const std::string& sct_list,
int flags,
CertVerifyResult* verify_result,
const NetLogWithSource& net_log) {
base::TimeTicks deadline = base::TimeTicks::Now() + kMaxVerificationTime;
bssl::der::GeneralizedTime der_verification_system_time;
bssl::der::GeneralizedTime der_verification_custom_time;
if (!EncodeTimeAsGeneralizedTime(base::Time::Now(),
&der_verification_system_time)) {
// This shouldn't be possible.
// We don't really have a good error code for this type of error.
verify_result->cert_status |= CERT_STATUS_AUTHORITY_INVALID;
return ERR_CERT_AUTHORITY_INVALID;
}
bool custom_time_available = false;
base::Time custom_time;
if (time_tracker_.has_value()) {
custom_time_available = time_tracker_->GetTime(
base::Time::Now(), base::TimeTicks::Now(), &custom_time, nullptr);
if (custom_time_available &&
!EncodeTimeAsGeneralizedTime(custom_time,
&der_verification_custom_time)) {
// This shouldn't be possible, but if it somehow happens, just use system
// time.
custom_time_available = false;
}
}
LogChromeRootStoreVersion(net_log);
// TODO(crbug.com/40928765): Netlog extra configuration information stored
// inside CertVerifyProcBuiltin (e.g. certs in additional_trust_store and
// system trust store)
// Parse the target certificate.
std::shared_ptr<const bssl::ParsedCertificate> target;
{
bssl::CertErrors parsing_errors;
target =
ParseCertificateFromBuffer(input_cert->cert_buffer(), &parsing_errors);
// TODO(crbug.com/40479281): this duplicates the logging of the input chain
// maybe should only log if there is a parse error/warning?
net_log.AddEvent(NetLogEventType::CERT_VERIFY_PROC_TARGET_CERT, [&] {
return NetLogCertParams(input_cert->cert_buffer(), parsing_errors);
});
if (!target) {
verify_result->cert_status |= CERT_STATUS_INVALID;
return ERR_CERT_INVALID;
}
}
// Parse the provided intermediates.
bssl::CertIssuerSourceStatic intermediates;
AddIntermediatesToIssuerSource(input_cert, &intermediates, net_log);
CertVerifyProcTrustStore trust_store(system_trust_store_.get(),
&additional_trust_store_);
// Get the global dependencies.
const EVRootCAMetadata* ev_metadata = EVRootCAMetadata::GetInstance();
// This boolean tracks whether online revocation checking was performed for
// *any* of the built paths, and not just the final path returned (used for
// setting output flag CERT_STATUS_REV_CHECKING_ENABLED).
bool checked_revocation_for_some_path = false;
// Run path building with the different parameters (attempts) until a valid
// path is found. Earlier successful attempts have priority over later
// attempts.
//
// Attempts are enqueued into |attempts| and drained in FIFO order.
std::vector<BuildPathAttempt> attempts;
// First try EV validation. Can skip this if the leaf certificate has no
// chance of verifying as EV (lacks an EV policy).
if (IsEVCandidate(ev_metadata, target.get()))
attempts.emplace_back(VerificationType::kEV, !custom_time_available);
// Next try DV validation.
attempts.emplace_back(VerificationType::kDV, !custom_time_available);
bssl::CertPathBuilder::Result result;
BuildPathAttempt cur_attempt(VerificationType::kDV, true);
// Iterate over |attempts| until there are none left to try, or an attempt
// succeeded.
for (size_t cur_attempt_index = 0; cur_attempt_index < attempts.size();
++cur_attempt_index) {
cur_attempt = attempts[cur_attempt_index];
net_log.BeginEvent(
NetLogEventType::CERT_VERIFY_PROC_PATH_BUILD_ATTEMPT, [&] {
base::Value::Dict results;
if (cur_attempt.verification_type == VerificationType::kEV) {
results.Set("is_ev_attempt", true);
}
results.Set("is_network_time_attempt", !cur_attempt.use_system_time);
if (!cur_attempt.use_system_time) {
results.Set(
"network_time_value",
NetLogNumberValue(custom_time.InMillisecondsSinceUnixEpoch()));
}
results.Set("digest_policy",
static_cast<int>(cur_attempt.digest_policy));
return results;
});
// If a previous attempt used up most/all of the deadline, extend the
// deadline a little bit to give this verification attempt a chance at
// success.
deadline = std::max(
deadline, base::TimeTicks::Now() + kPerAttemptMinVerificationTimeLimit);
// Run the attempt through the path builder.
result = TryBuildPath(
target, &intermediates, hostname, &trust_store, additional_constraints_,
cur_attempt.use_system_time ? der_verification_system_time
: der_verification_custom_time,
cur_attempt.use_system_time ? base::Time::Now() : custom_time, deadline,
cur_attempt.verification_type, cur_attempt.digest_policy, flags,
ocsp_response, sct_list, crl_set(), ct_verifier_.get(),
ct_policy_enforcer_.get(), require_ct_delegate_.get(),
net_fetcher_.get(), ev_metadata, &checked_revocation_for_some_path,
net_log);
net_log.EndEvent(NetLogEventType::CERT_VERIFY_PROC_PATH_BUILD_ATTEMPT,
[&] { return NetLogPathBuilderResult(result); });
if (result.HasValidPath())
break;
if (result.exceeded_deadline) {
// Stop immediately if an attempt exceeds the deadline.
break;
}
if (!cur_attempt.use_system_time && CanTryAgainWithSystemTime(result)) {
BuildPathAttempt system_time_attempt = cur_attempt;
system_time_attempt.use_system_time = true;
attempts.push_back(system_time_attempt);
} else if (cur_attempt.digest_policy ==
bssl::SimplePathBuilderDelegate::DigestPolicy::kStrong &&
CanTryAgainWithWeakerDigestPolicy(result)) {
// If this path building attempt (may have) failed due to the chain using
// a
// weak signature algorithm, enqueue a similar attempt but with weaker
// signature algorithms (SHA1) permitted.
//
// This fallback is necessary because the CertVerifyProc layer may decide
// to allow SHA1 based on its own policy, so path building should return
// possibly weak chains too.
//
// TODO(eroman): Would be better for the SHA1 policy to be part of the
// delegate instead so it can interact with path building.
BuildPathAttempt sha1_fallback_attempt = cur_attempt;
sha1_fallback_attempt.digest_policy =
bssl::SimplePathBuilderDelegate::DigestPolicy::kWeakAllowSha1;
attempts.push_back(sha1_fallback_attempt);
}
}
// Write the results to |*verify_result|.
const bssl::CertPathBuilderResultPath* best_path_possibly_invalid =
result.GetBestPathPossiblyInvalid();
int error = AssignVerifyResult(
input_cert, hostname, best_path_possibly_invalid,
cur_attempt.verification_type, checked_revocation_for_some_path,
&trust_store, verify_result);
if (error == OK) {
LogNameNormalizationMetrics(".Builtin", verify_result->verified_cert.get(),
verify_result->is_issued_by_known_root);
#if BUILDFLAG(CHROME_ROOT_STORE_SUPPORTED)
if (base::FeatureList::IsEnabled(features::kVerifyQWACs)) {
MaybeVerify1QWAC(best_path_possibly_invalid,
cur_attempt.use_system_time
? der_verification_system_time
: der_verification_custom_time,
verify_result, net_log);
}
#endif
}
return error;
}
#if BUILDFLAG(CHROME_ROOT_STORE_SUPPORTED)
namespace {
void NetLog2QwacBindingError(const NetLogWithSource& net_log,
std::string_view message) {
net_log.EndEvent(NetLogEventType::CERT_VERIFY_PROC_2QWAC_BINDING, [&] {
base::Value::Dict dict;
// Including a net_error will cause the netlog-viewer to display this event
// as an error.
dict.Set("net_error", ERR_FAILED);
dict.Set("error_description", message);
return dict;
});
}
} // namespace
scoped_refptr<X509Certificate> CertVerifyProcBuiltin::Verify2QwacBinding(
std::string_view binding,
const std::string& hostname,
base::span<const uint8_t> tls_cert,
const NetLogWithSource& net_log) {
net_log.BeginEvent(NetLogEventType::CERT_VERIFY_PROC_2QWAC_BINDING, [&] {
base::Value::Dict dict;
dict.Set("binding", NetLogStringValue(binding));
dict.Set("host", NetLogStringValue(hostname));
std::string pem_encoded_tls_cert;
if (X509Certificate::GetPEMEncodedFromDER(base::as_string_view(tls_cert),
&pem_encoded_tls_cert)) {
dict.Set("tls_certificate", NetLogStringValue(pem_encoded_tls_cert));
}
return dict;
});
auto parsed_binding = TwoQwacCertBinding::Parse(binding);
if (!parsed_binding.has_value()) {
HistogramVerify2QwacResult(Verify2QwacBindingResult::kBindingParsingError);
NetLog2QwacBindingError(net_log, "binding parsing error");
return nullptr;
}
if (!parsed_binding->VerifySignature()) {
HistogramVerify2QwacResult(
Verify2QwacBindingResult::kBindingSignatureInvalid);
NetLog2QwacBindingError(net_log, "binding signature invalid");
return nullptr;
}
CertVerifyResult verify_result;
int verify_rv = Verify2Qwac(parsed_binding->header().two_qwac_cert.get(),
hostname, &verify_result, net_log);
if (verify_rv != OK) {
// Verify2Qwac internally records a histogram result on all failure cases,
// so no histogram result is recorded here.
NetLog2QwacBindingError(net_log, "2-QWAC cert verify failed");
return nullptr;
}
if (!parsed_binding->BindsTlsCert(tls_cert)) {
HistogramVerify2QwacResult(Verify2QwacBindingResult::kTlsCertNotBound);
NetLog2QwacBindingError(net_log, "TLS cert not bound");
return nullptr;
}
HistogramVerify2QwacResult(Verify2QwacBindingResult::kValid2QwacBinding);
net_log.EndEvent(NetLogEventType::CERT_VERIFY_PROC_2QWAC_BINDING, [&] {
base::Value::Dict dict;
dict.Set("is_valid_2qwac_binding", true);
return dict;
});
return std::move(verify_result.verified_cert);
}
int CertVerifyProcBuiltin::Verify2Qwac(X509Certificate* cert,
const std::string& hostname,
CertVerifyResult* verify_result,
const NetLogWithSource& net_log) {
CHECK(cert);
CHECK(verify_result);
net_log.BeginEvent(NetLogEventType::CERT_VERIFY_PROC_2QWAC, [&] {
base::Value::Dict dict;
dict.Set("host", NetLogStringValue(hostname));
dict.Set("certificates", NetLogX509CertificateList(cert));
return dict;
});
verify_result->Reset();
verify_result->verified_cert = cert;
int rv = Verify2QwacInternal(cert, hostname, verify_result, net_log);
net_log.EndEvent(NetLogEventType::CERT_VERIFY_PROC_2QWAC,
[&] { return verify_result->NetLogParams(rv); });
return rv;
}
int CertVerifyProcBuiltin::Verify2QwacInternal(
X509Certificate* input_cert,
const std::string& hostname,
CertVerifyResult* verify_result,
const NetLogWithSource& net_log) {
// TODO(crbug.com/392931070): EUTL anchor usage histograms
LogChromeRootStoreVersion(net_log);
// Parse the target certificate.
std::shared_ptr<const bssl::ParsedCertificate> target;
{
bssl::CertErrors parsing_errors;
target =
ParseCertificateFromBuffer(input_cert->cert_buffer(), &parsing_errors);
net_log.AddEvent(NetLogEventType::CERT_VERIFY_PROC_TARGET_CERT, [&] {
return NetLogCertParams(input_cert->cert_buffer(), parsing_errors);
});
if (!target) {
HistogramVerify2QwacResult(
Verify2QwacBindingResult::kCertLeafParsingError);
verify_result->cert_status |= CERT_STATUS_INVALID;
return ERR_CERT_INVALID;
}
}
// ETSI TS 119 411-5 V2.1.1 - 6.1.2 step 1:
// the QWAC includes QCStatements as specified in clause 4.2 of ETSI EN 319
// 412-4 [4] and the appropriate Policy OID specified in ETSI EN 319 411-2
// [3]
QwacQcStatementsStatus qc_statement_status =
GetQwacQcStatementsStatus(target.get());
// ETSI TS 119 411-5 V2.1.1 - 6.1.2 step 5:
// that the QWAC's certificate profile conforms with:
// b)For a 2-QWAC, clause 4.2.2 of the present document.
// ETSI TS 119 411-5 V2.1.1 - 4.2.2:
// The 2-QWAC certificate shall be issued in accordance with ETSI EN 319
// 412-4 [4] for the relevant certificate policy as identified in clause
// 4.2.1 of the present document, except as described below:
// * the extKeyUsage value shall only assert the extendedKeyUsage purpose of
// id-kp-tls-binding as specified in Annex A.
QwacPoliciesStatus policy_status = Get2QwacPoliciesStatus(target.get());
QwacEkuStatus eku_status = Has2QwacEku(target.get());
if (policy_status != QwacPoliciesStatus::kHasQwacPolicies ||
qc_statement_status != QwacQcStatementsStatus::kHasQwacStatements ||
eku_status != QwacEkuStatus::kHasQwacEku) {
if (policy_status == QwacPoliciesStatus::kNotQwac &&
qc_statement_status == QwacQcStatementsStatus::kNotQwac &&
eku_status == QwacEkuStatus::kNotQwac) {
HistogramVerify2QwacResult(Verify2QwacBindingResult::kCertNotQwac);
} else {
HistogramVerify2QwacResult(
Verify2QwacBindingResult::kCertInconsistentBits);
}
verify_result->cert_status |= CERT_STATUS_INVALID;
return ERR_CERT_INVALID;
}
// ETSI TS 119 411-5 V2.1.1 - 6.1.2 step 2:
// that the QWAC chains back through appropriate & valid digital signatures
// to an issuer on the EU Trusted List which is authorized to issue
// Qualified Certificates for Website Authentication as specified in ETSI TS
// 119 615 [1];
// ETSI TS 119 411-5 V2.1.1 - 6.1.2 step 3:
// that the QWAC's validity period covers the current date and time;
// Parse the provided intermediates.
bssl::CertIssuerSourceStatic intermediates;
AddIntermediatesToIssuerSource(input_cert, &intermediates, net_log);
std::set<bssl::der::Input> user_initial_policy_set = {
bssl::der::Input(bssl::kAnyPolicyOid)};
TwoQwacPathBuilderDelegateImpl path_builder_delegate(net_log);
// TODO(crbug.com/392931070): try with both system time and time_tracker_?
// It's less important here since the failure mode is just that it doesn't get
// marked as a qwac.
bssl::der::GeneralizedTime der_verification_system_time;
if (!EncodeTimeAsGeneralizedTime(base::Time::Now(),
&der_verification_system_time)) {
// This shouldn't be possible.
// We don't really have a good error code for this type of error.
HistogramVerify2QwacResult(Verify2QwacBindingResult::kOtherError);
verify_result->cert_status |= CERT_STATUS_AUTHORITY_INVALID;
return ERR_CERT_AUTHORITY_INVALID;
}
net_log.BeginEvent(NetLogEventType::CERT_VERIFY_PROC_PATH_BUILD_ATTEMPT, [&] {
base::Value::Dict results;
results.Set("is_qwac_attempt", true);
return results;
});
bssl::CertPathBuilder path_builder(
target, system_trust_store_->eutl_trust_store(), &path_builder_delegate,
der_verification_system_time, bssl::KeyPurpose::ANY_EKU,
bssl::InitialExplicitPolicy::kFalse, user_initial_policy_set,
bssl::InitialPolicyMappingInhibit::kFalse,
bssl::InitialAnyPolicyInhibit::kFalse);
// AIA is not supported here. ETSI TS 119 411-5 V2.1.1 Annex B defines the
// `x5c` as containing the signing certificate and full chain, so if
// intermediates are not already provided the 2-QWAC is not spec-compliant.
path_builder.AddCertIssuerSource(&intermediates);
path_builder.SetIterationLimit(kPathBuilderIterationLimit);
bssl::CertPathBuilder::Result qwac_result = path_builder.Run();
net_log.EndEvent(NetLogEventType::CERT_VERIFY_PROC_PATH_BUILD_ATTEMPT,
[&] { return NetLogPathBuilderResult(qwac_result); });
const bssl::CertPathBuilderResultPath* best_path_possibly_invalid =
qwac_result.GetBestPathPossiblyInvalid();
if (!best_path_possibly_invalid) {
verify_result->cert_status |= CERT_STATUS_AUTHORITY_INVALID;
} else {
if (!best_path_possibly_invalid->IsValid()) {
VLOG(1) << "Verify2QwacInternal for " << hostname << " failed:\n"
<< best_path_possibly_invalid->errors.ToDebugString(
best_path_possibly_invalid->certs);
}
verify_result->verified_cert =
CreateVerifiedCertChain(input_cert, *best_path_possibly_invalid);
AppendPublicKeyHashes(*best_path_possibly_invalid,
&verify_result->public_key_hashes);
MapPathBuilderErrorsToCertStatus(best_path_possibly_invalid->errors,
&verify_result->cert_status);
}
if (!qwac_result.HasValidPath()) {
CHECK(IsCertStatusError(verify_result->cert_status));
}
// ETSI TS 119 411-5 V2.1.1 - 6.1.2 step 4:
// that the website domain name in question appears in the QWAC's subject
// alternative name(s);
if (!input_cert->VerifyNameMatch(hostname)) {
verify_result->cert_status |= CERT_STATUS_COMMON_NAME_INVALID;
}
if (IsCertStatusError(verify_result->cert_status)) {
int rv = MapCertStatusToNetError(verify_result->cert_status);
HistogramVerify2QwacResult(MapErrorTo2QwacResult(rv));
return rv;
}
// TODO(crbug.com/392931070): is there any point in setting this? This method
// only ever returns OK if it is a valid 2-qwac anyway.
verify_result->cert_status |= CERT_STATUS_IS_QWAC;
// No histogram result is recorded in the success case, as it is assumed
// Verify2Qwac is only called by Verify2QwacBinding, which will record the
// histogram result if Verify2Qwac succeeds.
return OK;
}
void CertVerifyProcBuiltin::MaybeVerify1QWAC(
const bssl::CertPathBuilderResultPath* verified_path,
const bssl::der::GeneralizedTime& der_verification_time,
CertVerifyResult* verify_result,
const NetLogWithSource& net_log) {
CHECK(verified_path);
CHECK(verified_path->IsValid());
// TODO(crbug.com/392931068): EUTL anchor usage histograms
const std::shared_ptr<const bssl::ParsedCertificate>& target =
verified_path->certs[0];
// Check the leaf policies for qwac-ness first. This doesn't check the
// verified user_constrained_policy_set since it may be different when the
// actual QWAC verification is done, but is just a quick filter to avoid
// doing the full verification if the certificate doesn't even have the
// policies. The verified user_constrained_policy_set will be checked by
// QwacPathBuilderDelegateImpl.
QwacPoliciesStatus policy_status = Get1QwacPoliciesStatus(target.get());
QwacQcStatementsStatus qc_statement_status =
GetQwacQcStatementsStatus(target.get());
if (policy_status != QwacPoliciesStatus::kHasQwacPolicies ||
qc_statement_status != QwacQcStatementsStatus::kHasQwacStatements) {
if (policy_status == QwacPoliciesStatus::kNotQwac &&
qc_statement_status == QwacQcStatementsStatus::kNotQwac) {
HistogramVerify1QwacResult(Verify1QwacResult::kNotQwac);
} else {
HistogramVerify1QwacResult(Verify1QwacResult::kInconsistentBits);
}
return;
}
bssl::CertPathBuilder::Result qwac_result;
bssl::CertIssuerSourceStatic intermediates;
// TODO(crbug.com/392931068): should we also include intermediates passed in
// TLS handshake that weren't used in the verified TLS chain?
for (const auto& intermediate :
base::span(verified_path->certs).subspan(1u)) {
intermediates.AddCert(intermediate);
}
std::set<bssl::der::Input> user_initial_policy_set = {
bssl::der::Input(bssl::kAnyPolicyOid)};
// TODO(crbug.com/392931068): does not implement deadlines (right now there is
// no OS or network interaction, so this should be fine.)
OneQwacPathBuilderDelegateImpl path_builder_delegate(net_log);
net_log.BeginEvent(NetLogEventType::CERT_VERIFY_PROC_PATH_BUILD_ATTEMPT, [&] {
base::Value::Dict results;
results.Set("is_qwac_attempt", true);
return results;
});
// Initialize the path builder.
bssl::CertPathBuilder path_builder(
target, system_trust_store_->eutl_trust_store(), &path_builder_delegate,
der_verification_time, bssl::KeyPurpose::SERVER_AUTH,
bssl::InitialExplicitPolicy::kFalse, user_initial_policy_set,
bssl::InitialPolicyMappingInhibit::kFalse,
bssl::InitialAnyPolicyInhibit::kFalse);
// TODO(crbug.com/392931068): does not do AIA fetching. Probably fine?
path_builder.AddCertIssuerSource(&intermediates);
path_builder.SetIterationLimit(kPathBuilderIterationLimit);
qwac_result = path_builder.Run();
net_log.EndEvent(NetLogEventType::CERT_VERIFY_PROC_PATH_BUILD_ATTEMPT,
[&] { return NetLogPathBuilderResult(qwac_result); });
if (!qwac_result.HasValidPath()) {
HistogramVerify1QwacResult(Verify1QwacResult::kFailedVerification);
return;
}
HistogramVerify1QwacResult(Verify1QwacResult::kValid1Qwac);
verify_result->cert_status |= CERT_STATUS_IS_QWAC;
}
#endif // BUILDFLAG(CHROME_ROOT_STORE_SUPPORTED)
} // namespace
scoped_refptr<CertVerifyProc> CreateCertVerifyProcBuiltin(
scoped_refptr<CertNetFetcher> net_fetcher,
scoped_refptr<CRLSet> crl_set,
std::unique_ptr<CTVerifier> ct_verifier,
scoped_refptr<CTPolicyEnforcer> ct_policy_enforcer,
std::unique_ptr<SystemTrustStore> system_trust_store,
const CertVerifyProc::InstanceParams& instance_params,
std::optional<network_time::TimeTracker> time_tracker) {
return base::MakeRefCounted<CertVerifyProcBuiltin>(
std::move(net_fetcher), std::move(crl_set), std::move(ct_verifier),
std::move(ct_policy_enforcer), std::move(system_trust_store),
instance_params, std::move(time_tracker));
}
base::TimeDelta GetCertVerifyProcBuiltinTimeLimitForTesting() {
return kMaxVerificationTime;
}
} // namespace net
|