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 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343
|
#! /usr/bin/perl -w
#
# @(#)$Id$
#
# Copyright 2010 David Groep, Nationaal instituut voor
# subatomaire fysica NIKHEF
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
#
package main;
use strict;
use Getopt::Long qw(:config no_ignore_case bundling);
use POSIX;
eval { require LWP or die; }; $@ and die "Please install libwww-perl (LWP)\n";
# import modules that are needed but still external
# (the installed version may have these packages embedded in-line)
#
require ConfigTiny and import ConfigTiny unless defined &ConfigTiny::new;
require TrustAnchor and import TrustAnchor unless defined &TrustAnchor::new;
require CRLWriter and import CRLWriter unless defined &CRLWriter::new;
require FCLog and import FCLog unless defined &FCLog::new;
require OSSL and import OSSL unless defined &OSSL::new;
require CRL and import CRL unless defined &CRL::new;
my $use_DataDumper = eval { require Data::Dumper; };
my $use_IOSelect = eval { require IO::Select; };
use vars qw/ $log $cnf /;
# ###########################################################################
#
#
($cnf,$log) = &init_configuration();
# verify local installation sanity for loaded modules
$::log->getverbose > 6 and ! $use_DataDumper and
$::log->err("Cannot set verbosity higher than 6 without Data::Dumper") and
exit(1);
$::cnf->{_}->{parallelism} and ! $use_IOSelect and
$::log->err("Cannot use parallel retrieval without IO::Select") and
exit(1);
$use_DataDumper and $::log->verb(7,Data::Dumper::Dumper($cnf));
# set safe path if so requested
$cnf->{_}->{path} and $ENV{"PATH"} = $cnf->{_}->{path} and
$::log->verb(5,"Set PATH to",$ENV{"PATH"});
# wait up to randomwait seconds to spread download load
$cnf->{_}->{randomwait} and do {
my $wtime = int(rand($cnf->{_}->{randomwait}));
$::log->verb(2,"Sleeping $wtime seconds before continuing");
sleep($wtime);
};
# the list of trust anchors to process comes from the command line and
# all files in the infodir that are metadata or crl urls
# in the next phase, the suffix will be stripped and the info file
# when present preferred over the crlurl
#
my @metafiles = @ARGV;
$::cnf->{_}->{"infodir"} and do {
foreach my $fn (
map { glob ( $::cnf->{_}->{"infodir"} . "/$_" ); } "*.info", "*.crl_url"
) {
next if $::cnf->{_}->{nosymlinks} and -l $fn;
$fn =~ /.*\/([^\/]+)(\.crl_url|\.info)$/;
push @metafiles, $1 unless grep /^$1$/,@metafiles or not defined $1;
}
};
@metafiles or
$log->err("No trust anchors to process") and exit($log->exitstatus);
if ( $::cnf->{_}->{parallelism} ) {
¶llel_metafiles($::cnf->{_}->{parallelism}, @metafiles);
} else {
&process_metafiles( @metafiles );
}
$log->flush;
exit($log->exitstatus);
# ###########################################################################
#
#
sub init_configuration() {
my ($cnf,$log);
my ($configfile,$agingtolerance,$infodir,$statedir,$cadir,$httptimeout);
my ($output);
my @formats;
my $verbosity;
my $quiet=0;
my $help=0;
my $debuglevel;
my $parallelism=0;
my $randomwait;
my $nosymlinks;
my $cfgdir;
$log = FCLog->new("qualified");
&GetOptions(
"c|config=s" => \$configfile,
"l|infodir=s" => \$infodir,
"cadir=s" => \$cadir,
"s|statedir=s" => \$statedir,
"cfgdir=s" => \$cfgdir,
"T|httptimeout=i" => \$httptimeout,
"o|output=s" => \$output,
"format=s@" => \@formats,
"v|verbose+" => \$verbosity,
"h|help+" => \$help,
"q|quiet+" => \$quiet,
"d|debug+" => \$debuglevel,
"p|parallelism=i" => \$parallelism,
"nosymlinks+" => \$nosymlinks,
"a|agingtolerance=i" => \$agingtolerance,
"r|randomwait=i" => \$randomwait,
) or &help and exit(1);
$help and &help and exit(0);
$configfile ||= ( -e "/etc/fetch-crl.conf" and "/etc/fetch-crl.conf" );
$configfile ||= ( -e "/etc/fetch-crl.cnf" and "/etc/fetch-crl.cnf" );
($quiet > 0) and $verbosity = -$quiet;
$cnf = ConfigTiny->new();
$configfile and
$cnf->read($configfile) || die "Invalid config file $configfile:\n " .
$cnf->errstr . "\n";
( defined $cnf->{_}->{cfgdir} and $cfgdir = $cnf->{_}->{cfgdir} )
unless defined $cfgdir;
$cfgdir ||= "/etc/fetch-crl.d";
if ( defined $cfgdir and -d $cfgdir and opendir(my $dh,$cfgdir) ) {
while ( my $fn = readdir $dh ) {
-f "$cfgdir/$fn" and -r "$cfgdir/$fn" and $cnf->read("$cfgdir/$fn");
}
close $dh;
}
# command-line option overrides
$cnf->{_}->{agingtolerance} = $agingtolerance if defined $agingtolerance;
$cnf->{_}->{infodir} = $infodir if defined $infodir;
$cnf->{_}->{cadir} = $cadir if defined $cadir;
$cnf->{_}->{statedir} = $statedir if defined $statedir;
$cnf->{_}->{httptimeout} = $httptimeout if defined $httptimeout;
$cnf->{_}->{verbosity} = $verbosity if defined $verbosity;
$cnf->{_}->{debuglevel} = $debuglevel if defined $debuglevel;
$cnf->{_}->{output} = $output if defined $output;
$cnf->{_}->{formats} = join "\001",@formats if @formats;
$cnf->{_}->{parallelism} = $parallelism if $parallelism;
$cnf->{_}->{randomwait} = $randomwait if defined $randomwait;
$cnf->{_}->{nosymlinks} = $nosymlinks if defined $nosymlinks;
# key default values
defined $cnf->{_}->{version} or $cnf->{_}->{version} = "3+";
defined $cnf->{_}->{packager} or $cnf->{_}->{packager} = "EUGridPMA";
defined $cnf->{_}->{openssl} or $cnf->{_}->{openssl} = "openssl";
defined $cnf->{_}->{agingtolerance} or $cnf->{_}->{agingtolerance} ||= 24;
defined $cnf->{_}->{infodir} or $cnf->{_}->{infodir} = '/etc/grid-security/certificates';
defined $cnf->{_}->{output} or $cnf->{_}->{output} = $cnf->{_}->{infodir};
defined $cnf->{_}->{cadir} or $cnf->{_}->{cadir} = $cnf->{_}->{infodir};
defined $cnf->{_}->{statedir} or $cnf->{_}->{statedir} = "/var/cache/fetch-crl" if -d "/var/cache/fetch-crl" and -w "/var/cache/fetch-crl";
defined $cnf->{_}->{formats} or $cnf->{_}->{formats} = "openssl";
defined $cnf->{_}->{opensslmode} or $cnf->{_}->{opensslmode} = "dual";
defined $cnf->{_}->{httptimeout} or $cnf->{_}->{httptimeout} = 120;
defined $cnf->{_}->{nametemplate_der} or
$cnf->{_}->{nametemplate_der} = "\@ANCHORNAME\@.\@R\@.crl";
defined $cnf->{_}->{nametemplate_pem} or
$cnf->{_}->{nametemplate_pem} = "\@ANCHORNAME\@.\@R\@.crl.pem";
defined $cnf->{_}->{catemplate} or
$cnf->{_}->{catemplate} = "\@ALIAS\@.pem\001".
"\@ALIAS\@.\@R\@\001\@ANCHORNAME\@.\@R\@";
$cnf->{_}->{nonssverify} ||= 0;
$cnf->{_}->{nocache} ||= 0;
$cnf->{_}->{nosymlinks} ||= 0;
$cnf->{_}->{verbosity} ||= 0;
$cnf->{_}->{debuglevel} ||= 0;
$cnf->{_}->{stateless} and delete $cnf->{_}->{statedir};
# expand array keys in config
defined $cnf->{_}->{formats} and
@{$cnf->{_}->{formats_}} = split(/[\001;,\s]+/,$cnf->{_}->{formats});
# sanity check on configuration
$cnf->{_}->{statedir} and ! -d $cnf->{_}->{statedir} and
die "Invalid state directory " . $cnf->{_}->{statedir} . "\n";
$cnf->{_}->{infodir} and ! -d $cnf->{_}->{infodir} and
die "Invalid meta-data directory ".$cnf->{_}->{infodir}."\n";
# initialize logging
$log->flush;
$cnf->{_}->{logmode} and $log->destremove("qualified") and do {
foreach ( split(/[,\001]+/,$cnf->{_}->{logmode}) ) {
if ( /^syslog$/ ) { $log->destadd($_,$cnf->{_}->{syslogfacility}); }
elsif ( /^(direct|qualified|cache)$/ ) { $log->destadd($_); }
else { die "Invalid log destination $_, exiting.\n"; }
}
};
$log->setverbose($cnf->{_}->{verbosity});
$log->setdebug($cnf->{_}->{debuglevel});
return ($cnf,$log);
}
# ###########################################################################
#
#
sub help() {
(my $name = $0) =~ s/.*\///;
print <<EOHELP;
The fetch-crl utility will retrieve certificate revocation lists (CRLs) for
a set of installed trust anchors, based on crl_url files or IGTF-style info
files. It will install these for use with OpenSSL, NSS or third-party tools.
Usage: $name [-c|--config configfile] [-l|--infodir path]
[--cadir path] [-s|--statedir path] [-o|--output path] [--format \@formats]
[-T|--httptimeout seconds] [-p|--parallelism n] [--nosymlinks]
[-a|--agingtolerance hours] [-r|--randomwait seconds]
[-v|--verbose] [-h|--help] [-q|--quiet] [-d|--debug level]
Options:
-c | --config path
Read configuration data from path, default: /etc/fetch-crl.conf
-l | --infodir path
Location of the trust anchor meta-data files (crl_url or info),
default: /etc/grid-security/certificates
--cadir path
Location of the trust anchors (default to infodir)
-s | --statedir path
Location of the historic state data (for caching and delayed-warning)
-T | --httptimeout sec
Maximum time in seconds to wait for retrieval or a single URL
-o | --output path
Location of the CRLs written (global default, defaults to infodir
--format \@formats
Format(s) in which the CRLs will be written (openssl, pem, der, nss)
--nosymlinks
Do not include meta-data files that are symlinks
-v | --verbose
Become more talkative
-q | --quiet
Become really quiet (overrides verbosity)
-p | --parallelism n
Run up to n parallel trust anchor retrieval processes
-a | --agingtolerance hours
Be quiet for up to hours hours before raising an error. Until
the tolerance has passed, only warnings are raised
-r | --randomwait seconds
Introduce a random delay of up to seconds seconds before starting
any retrieval processes
-h | --help
This help text
EOHELP
return 1;
}
# ###########################################################################
#
#
sub process_metafiles(@) {
my @metafiles = @_;
foreach my $f ( @metafiles ) {
my $ta = TrustAnchor->new();
$cnf->{_}->{"infodir"} and $ta->setInfodir($cnf->{_}->{"infodir"});
$ta->loadAnchor($f) or next;
$ta->saveLogMode() and $ta->setLogMode();
$ta->loadState() or next;
# using the HASH in the CA filename templates requires the CRL
# is retrieved first to determinte the hash
if ( $cnf->{_}->{"catemplate"} =~ /\@HASH\@/ ) {
$ta->retrieve or next;
$ta->loadCAfiles() or next;
} else {
$ta->loadCAfiles() or next;
$ta->retrieve or next;
}
$ta->verifyAndConvertCRLs or next;
my $writer = CRLWriter->new($ta);
$writer->writeall() or next;
$ta->saveState() or next;
$ta->restoreLogMode();
}
return 1;
}
sub parallel_metafiles($@) {
my $parallelism = shift;
my @metafiles = @_;
my %pids = (); # file handle by processID
my %metafile_by_fh = (); # reverse map
my $readset = new IO::Select();
my %logoutput = ();
$| = 1;
$::log->verb(2,"starting up to $parallelism worker processes");
while ( @metafiles or scalar keys %pids ) {
# loop until we have started all possible retrievals AND have
# collected all possible output
( @metafiles and (scalar keys %pids < $parallelism) ) and do {
# we have metafiles left, and have spare process slots
my $metafile = shift @metafiles;
$logoutput{$metafile} = "";
my $cout;
my $cpid = open $cout, "-|";
defined $cpid and defined $cout or
$::log->err("Cannot fork ($metafile): $!") and next;
$::log->verb(5,"LOOP: starting process $cpid for $metafile");
if ( $cpid == 0 ) { # I'm the child that should care for $metafile
$0 = "fetch-crl worker $metafile";
$::log->cleanse();
$::log->destadd("qualified");
&process_metafiles($metafile);
$::log->flush;
exit($::log->exitstatus);
} else { # parent
$pids{$cpid} = $cout;
$readset->add($cout);
$metafile_by_fh{$cout} = $metafile;
}
};
# do a select loop over the outstanding requests to collect messages
# if we are in the process of starting more processes, we just
# briefly poll out pending output so as not to have blocking
# children, but if we have started as many children as we ought to
# we put in a longer timeout -- any output on a handle will
# get us out of the select and into flushing mode again
my $timeout = (@metafiles && (scalar keys %pids < $parallelism) ? 0.1:1);
$::log->verb(6,"PLOOP: select with timeout $timeout");
my ( $rh_set ) = IO::Select->select($readset, undef, undef, $timeout);
foreach my $fh ( @$rh_set ) {
my $metafile = $metafile_by_fh{$fh};
# we know there is at least one byte to read, but also that
# any client sends complete
while (1) {
my $char;
my $length = sysread $fh, $char, 1;
if ( $length ) {
$logoutput{$metafile} .= $char;
$char eq "\n" and last;
} else {
#expected a char but got eof
$readset->remove($fh);
close($fh);
map {
$pids{$_} == $fh and
waitpid($_,WNOHANG) and
delete $pids{$_} and
$::log->verb(5,"Collected pid $_ (rc=$?),",
length($logoutput{$metafile}),"bytes log output");
} keys %pids;
last;
}
}
}
}
# log out all collected log data from our children
foreach my $metafile ( sort keys %logoutput ) {
foreach my $line ( split(/\n/,$logoutput{$metafile}) ) {
$line =~ /^ERROR\s+(.*)$/ and $::log->err($1);
$line =~ /^WARN\s+(.*)$/ and $::log->warn($1);
$line =~ /^VERBOSE\((\d+)\)\s+(.*)$/ and $::log->verb($1,$2);
$line =~ /^DEBUG\((\d+)\)\s+(.*)$/ and $::log->debug($1,$2);
}
}
return 1;
}
#
# @(#)$Id$
#
#
package CRL;
use strict;
require OSSL and import OSSL unless defined &OSSL::new;
use vars qw/ $log $cnf /;
# Syntax:
# CRL->new( [name [,data]] );
# CRL->setName( name);
# CRL->setData( datablob ); # load a CRL in PEM format or bails out
# CRL->verify( cafilelist ); # returns path to CA or undef if verify failed
#
#
sub new {
my $obref = {}; bless $obref;
my $self = shift;
$self = $obref;
my $name = shift;
my $data = shift;
$self->{"name"} = "unknown";
$self->setName($name) if $name;
$self->setData($data) if $data;
return $self;
}
sub setName($$) {
my $self = shift or die "Invalid invocation of CRL::setName\n";
my $name = shift;
return 0 unless $name;
$self->{"name"} = $name;
return 1;
}
sub setData($$) {
my $self = shift or die "Invalid invocation of CRL::setData\n";
my $data = shift;
my $pemdata = undef;
my $errormsg;
my $openssl = OSSL->new() or $::log->err("OpenSSL not found") and return 0;
# try to recognise data type and normalise to PEM string
# but extract only the first blob of PEM (so max one CRL per data object)
#
if ( $data =~
/(^-----BEGIN X509 CRL-----\n[^-]+\n-----END X509 CRL-----$)/sm ) {
$pemdata = $1;
} elsif ( substr($data,0,1) eq "0" ) { # looks a bit like an ASN.1 SEQ
($pemdata,$errormsg) =
$openssl->Exec3($data, qw/ crl -inform DER -outform PEM / );
$pemdata or
$::log->warn("Apparent DER data for",$self->{"name"},"not recognised")
and return 0;
} else {
$::log->warn("CRL data for",$self->{"name"},"not recognised");
return 0;
}
# extract other data from the pem blob with openssl
(my $statusdata,$errormsg) =
$openssl->Exec3($pemdata, qw/ crl
-noout -issuer -sha1 -fingerprint -lastupdate -nextupdate -hash/);
defined $statusdata or do {
( my $eline = $errormsg ) =~ s/\n.*//sgm;
$::log->warn("Unable to extract CRL data for",$self->{"name"},$eline);
return 0;
};
$statusdata =~ /(?:^|\n)SHA1 Fingerprint=([^\n]+)\n/ and
$self->{"sha1fp"} = $1;
$statusdata =~ /(?:^|\n)issuer=([^\n]+)\n/ and
$self->{"issuer"} = $1;
$statusdata =~ /(?:^|\n)lastUpdate=([^\n]+)\n/ and
$self->{"lastupdatestr"} = $1;
$statusdata =~ /(?:^|\n)nextUpdate=([^\n]+)\n/ and
$self->{"nextupdatestr"} = $1;
$statusdata =~ /(?:^|\n)([0-9a-f]{8})\n/ and
$self->{"hash"} = $1;
$self->{"nextupdatestr"} and
$self->{"nextupdate"} = $openssl->gms2t($self->{"nextupdatestr"});
$self->{"lastupdatestr"} and
$self->{"lastupdate"} = $openssl->gms2t($self->{"lastupdatestr"});
#$self->{"nextupdate"} = time - 200;
#$self->{"lastupdate"} = time + 200;
$self->{"data"} = $data;
$self->{"pemdata"} = $pemdata;
return 1;
}
sub getLastUpdate($) {
my $self = shift or die "Invalid invocation of CRL::getLastUpdate\n";
return $self->{"lastupdate"} || undef;
}
sub getNextUpdate($) {
my $self = shift or die "Invalid invocation of CRL::getNextUpdate\n";
return $self->{"nextupdate"} || undef;
}
sub getAttribute($$) {
my $self = shift or die "Invalid invocation of CRL::getAttribute\n";
my $key = shift;
return $self->{$key} or undef;
}
sub getPEMdata($) {
my $self = shift or die "Invalid invocation of CRL::getPEMdata\n";
$self->{"pemdata"} or
$::log->err("Attempt to extract PEM data from bad CRL object",
($self->{"name"}||"unknown")) and
return undef;
return $self->{"pemdata"};
}
sub verify($@) {
my $self = shift or die "Invalid invocation of CRL::verify\n";
my $openssl = OSSL->new() or $::log->err("OpenSSL not found") and return 0;
$self->{"pemdata"} or
$::log->err("verify called on empty data blob") and return 0;
my @verifyStatus = ();
# openssl crl verify works against a single CA and does not need a
# full chain to be present. That suits us file (checked with OpenSSL
# 0.9.5a and 1.0.0a)
my $verifyOK;
foreach my $cafile ( @_ ) {
-e $cafile or
$::log->err("CRL::verify called with nonexistent CA file $cafile") and
next;
my ($dataout,$dataerr) =
$openssl->Exec3($self->{"pemdata"}, qw/crl -noout -CAfile/,$cafile);
$dataerr and $dataout .= $dataerr;
$dataout =~ /verify OK/ and $verifyOK = $cafile and last;
}
$verifyOK or push @verifyStatus, "CRL signature failed";
$verifyOK and
$::log->verb(4,"Verified CRL",$self->{"name"},"against $verifyOK");
$self->{"nextupdate"} or
push @verifyStatus, "CRL nextUpdate determination failed";
$self->{"lastupdate"} or
push @verifyStatus, "CRL lastUpdate determination failed";
if ( $self->{"nextupdate"} and $self->{"nextupdate"} < time ) {
push @verifyStatus, "CRL has nextUpdate time in the past";
}
if ( $self->{"lastupdate"} and $self->{"lastupdate"} > time ) {
push @verifyStatus, "CRL has lastUpdate time in the future";
}
return @verifyStatus;
}
1;
#
# @(#)$Id$
#
# ###########################################################################
#
#
# Syntax:
# CRLWriter->new( [name [,index]] );
# CRLWriter->setTA( trustanchor );
# CRLWriter->setIndex( index );
#
package CRLWriter;
use strict;
use File::Basename;
use File::Temp qw/ tempfile /;
require OSSL and import OSSL unless defined &OSSL::new;
require base64 and import base64 unless defined &base64::b64encode;
use vars qw/ $log $cnf /;
sub new {
my $obref = {}; bless $obref;
my $self = shift;
$self = $obref;
my $name = shift;
my $index = shift;
$self->setTA($name) if defined $name;
$self->setIndex($name) if defined $index;
return $self;
}
sub getName($) {
my $self = shift;
return 0 unless defined $self;
return $self->{"ta"}->getAnchorName;
}
sub setTA($$) {
my $self = shift;
my ($ta) = shift;
return 0 unless defined $ta and defined $self;
$ta->{"anchorname"} or
$::log->err("CRLWriter::setTA called without uninitialised trust anchor")
and return 0;
$self->{"ta"} = $ta;
return 1;
}
sub setIndex($$) {
my $self = shift;
my ($index) = shift;
return 0 unless defined $self;
$self->{"ta"} or
$::log->err("CRLWriter::setIndex called without a loaded TA") and
return 0;
my $ta = $self->{"ta"};
$ta->{"crlurls"} or
$::log->err("CRLWriter::setIndex called with uninitialised TA") and
return 0;
! defined $index and delete $self->{"index"} and return 1;
$index < 0 and
$::log->err("CRLWriter::setIndex called with invalid index $index") and
return 0;
$index > $#{$ta->{"crlurls"}} and
$::log->err("CRLWriter::setIndex index $index too large") and
return 0;
$self->{"index"} = $index;
return 1;
}
sub updatefile($$%) {
my $file = shift;
my $content = shift;
my %flags = @_;
$content or return undef;
$file or
$::log->err("Cannot write content to undefined path") and return undef;
my ( $basename, $path, $suffix ) = fileparse($file);
# get content and do a comparison. If data identical, touch only
# to update mtime (other tools like NGC Nagios use this mtime semantics)
#
my $olddata;
my $mytime;
-f $file and do {
$mytime = (stat(_))[9];
{
open OLDFILE,'<',$file or
$::log->err("Cannot make backup of $file: $!") and return undef;
binmode OLDFILE; local $/;
$olddata = <OLDFILE>; close OLDFILE;
}
};
if ( $flags{"BACKUP"} and $olddata ) {
if ( -w $path ) {
-e "$file~" and ( unlink "$file~" or
$::log->warn("Cannot remove old backup $file~: $!") and return undef);
if (open BCKFILE,'>',"$file~" ) {
print BCKFILE $olddata;
close BCKFILE;
utime $mytime,$mytime, "$file~";
} else {
$::log->warn("Cannot reate backup $file~: $!");
}
} else {
$::log->warn("Cannot make backup, $path not writable");
}
}
defined $olddata and $olddata eq $content and do {
$::log->verb(4,"$file unchanged - touch only");
utime time,time,$file and return 1;
$::log->warn("Touch of $file failed, CRL unmodified");
return 0;
};
if ( open FH,'>',$file ) {
print FH $content or
$::log->err("Write to $file: $!") and return undef;
close FH or
$::log->err("Close on write of $file: $!") and return undef;
} else { # something went wrong in opening the file for write,
# so try and restore backup if that was selected
$::log->err("Open for write of $file: $!");
$flags{"BACKUP"} and ! -s "$file" and -s "$file~" and do {
#file has been clobbed, but backup OK
unlink "$file" and link "$file~","$file" and unlink "$file~" or
$::log->err("Restore of backup $file failed: $!");
};
return undef;
}
return 1;
}
sub writePEM($$$$) {
my $self = shift;
my $idx = shift;
my $data = shift;
my $ta = shift;
defined $idx and $data and $ta or
$::log->err("CRLWriter::writePEM: missing index or data") and return 0;
my $output = $::cnf->{_}->{"output"};
$output = $::cnf->{_}->{"output_pem"} if defined $::cnf->{_}->{"output_pem"};
$output and -d $output or
$::log->err("PEM target directory $output invalid") and return 0;
my $filename = "$output/".$ta->{"nametemplate_pem"};
$filename =~ s/\@R\@/$idx/g;
my %flags = ();
$::cnf->{_}->{"backups"} and $flags{"BACKUP"} = 1;
$::log->verb(3,"Writing PEM file",$filename);
&updatefile($filename,$data,%flags) or return 0;
return 1;
}
sub writeDER($$$$) {
my $self = shift;
my $idx = shift;
my $data = shift;
my $ta = shift;
defined $idx and $data and $ta or
$::log->err("CRLWriter::writeDER: missing index or data") and return 0;
my $output = $::cnf->{_}->{"output"};
$output = $::cnf->{_}->{"output_der"} if defined $::cnf->{_}->{"output_der"};
$output and -d $output or
$::log->err("DER target directory $output invalid") and return 0;
my $filename = "$output/".$ta->{"nametemplate_der"};
$filename =~ s/\@R\@/$idx/g;
my %flags = ();
$::cnf->{_}->{"backups"} and $flags{"BACKUP"} = 1;
my $openssl=OSSL->new();
my ($der,$errors) = $openssl->Exec3($data,qw/crl -inform PEM -outform DER/);
$errors or not $der and
$::log->err("Data count not be converted to DER: $errors") and return 0;
$::log->verb(3,"Writing DER file",$filename);
&updatefile($filename,$der,%flags) or return 0;
return 1;
}
sub writeOpenSSL($$$$) {
my $self = shift;
my $idx = shift;
my $data = shift;
my $ta = shift;
defined $idx and $data and $ta or
$::log->err("CRLWriter::writeOpenSSL: missing index, data or ta") and
return 0;
my $output = $::cnf->{_}->{"output"};
$output = $::cnf->{_}->{"output_openssl"} if
defined $::cnf->{_}->{"output_openssl"};
$output and -d $output or
$::log->err("OpenSSL target directory $output invalid") and return 0;
my $openssl=OSSL->new();
# guess the hash name or names from OpenSSL
# if mode is dual (and OpenSSL1 installed) write two files
my $opensslversion = $openssl->getVersion() or return 0;
my ($cmddata,$errors);
my @hashes = ();
if ( $opensslversion ge "1" and $::cnf->{_}->{"opensslmode"} eq "dual" ) {
$::log->verb(5,"OpenSSL version 1 dual-mode enabled");
# this mode needs the ta cafile to get both hashes, since these
# can only be extracted by the x509 subcommand from a CA ...
($cmddata,$errors) = $openssl->Exec3(undef,
qw/x509 -noout -subject_hash -subject_hash_old -in/,
$ta->{"cafile"}[0]);
$cmddata or
$::log->err("OpenSSL cannot extract hashes from",$ta->{"cafile"}[0]) and
return 0;
@hashes = split(/[\s\n]+/,$cmddata);
} else {
$::log->verb(5,"OpenSSL version 1 single-mode or pre-1.0 style");
($cmddata,$errors) = $openssl->Exec3($data,qw/crl -noout -hash/);
$cmddata or
$::log->err("OpenSSL cannot extract hashes from CRL for",
$ta->{"alias"}.'/'.$idx
) and
return 0;
@hashes = split(/[\s\n]+/,$cmddata);
}
my %flags = ();
$::cnf->{_}->{"backups"} and $flags{"BACKUP"} = 1;
foreach my $hash ( @hashes ) {
my $filename = "$output/$hash.r$idx";
$::log->verb(3,"Writing OpenSSL file",$filename);
&updatefile($filename,$data,%flags) or return 0;
}
return 1;
}
sub writeNSS($$$$) {
my $self = shift;
my $idx = shift;
my $data = shift;
my $ta = shift;
defined $idx and $data and $ta or
$::log->err("CRLWriter::writeNSS: missing index, data or ta") and return 0;
my $output = $::cnf->{_}->{"output"};
$output = $::cnf->{_}->{"output_nss"} if defined $::cnf->{_}->{"output_nss"};
$output and -d $output or
$::log->err("NSS target directory $output invalid") and return 0;
my $dbprefix="";
$dbprefix = $::cnf->{_}->{"nssdbprefix"}
if defined $::cnf->{_}->{"nssdbprefix"};
my $filename = "$output/$dbprefix";
# the crlutil tool requires the DER formatted cert in a file
my $tmpdir = $::cnf->{_}->{exec3tmpdir} || $ENV{"TMPDIR"} || '/tmp';
my ($derfh,$dername) = tempfile("fetchcrl3der.XXXXXX",
DIR=>$tmpdir, UNLINK=>1);
(my $b64data = $data) =~ s/-[^\n]+//gm;
$b64data =~ s/\s+//gm;
print $derfh base64::b64decode($b64data); # der is decoded PEM :-)
my $cmd = "crlutil -I -d \"$output\" -P \"$dbprefix\" ";
$::cnf->{_}->{nonssverify} and $cmd .= "-B ";
$cmd .= "-n ".$ta->{"alias"}.'.'.$idx." ";
$cmd .= "-i \"$dername\"";
my $result = `$cmd 2>&1`;
unlink $dername;
if ( $? != 0 ) {
$::log->err("Cannot update NSSDB filename: $result");
} else {
$::log->verb(3,"WriteNSS: ".$ta->{"alias"}.'.'.$idx." added to $filename");
}
return 1;
}
sub writeall($) {
my $self = shift;
return 0 unless defined $self;
$self->{"ta"} or
$::log->err("CRLWriter::setIndex called without a loaded TA") and
return 0;
my $ta = $self->{"ta"};
$ta->{"crlurls"} or
$::log->err("CRLWriter::setIndex called with uninitialised TA") and
return 0;
$::log->verb(2,"Writing CRLs for",$ta->{"anchorname"});
my $completesuccess = 1;
for ( my $idx = 0 ; $idx <= $#{$ta->{"crl"}} ; $idx++ ) {
$ta->{"crl"}[$idx]{"pemdata"} or
$::log->verb(3,"Ignored CRL $idx skipped") and
next; # ignore empty crls, leave these in place
my $writeAttempt = 0;
my $writeSuccess = 0;
( grep /^pem$/, @{$::cnf->{_}->{formats_}} ) and ++$writeAttempt and
$writeSuccess += $self->writePEM($idx,$ta->{"crl"}[$idx]{"pemdata"},$ta);
( grep /^der$/, @{$::cnf->{_}->{formats_}} ) and ++$writeAttempt and
$writeSuccess += $self->writeDER($idx,$ta->{"crl"}[$idx]{"pemdata"},$ta);
( grep /^openssl$/, @{$::cnf->{_}->{formats_}} ) and ++$writeAttempt and
$writeSuccess += $self->writeOpenSSL($idx,
$ta->{"crl"}[$idx]{"pemdata"},$ta);
( grep /^nss$/, @{$::cnf->{_}->{formats_}} ) and ++$writeAttempt and
$writeSuccess += $self->writeNSS($idx,$ta->{"crl"}[$idx]{"pemdata"},$ta);
if ( $writeSuccess == $writeAttempt ) {
$::log->verb(4,"LastWrite time (mtime) set to current time");
$ta->{"crl"}[$idx]{"state"}{"mtime"} = time;
} else {
$::log->warn("Partial updating ($writeSuccess of $writeAttempt) for",
$ta->{"anchorname"},
"CRL $idx: mtime not updated");
}
$completesuccess &&= ($writeSuccess == $writeAttempt);
}
return $completesuccess;
}
1;
package ConfigTiny;
# derived from Config::Tiny 2.12, but with some local mods and
# some new syntax possibilities
# If you thought Config::Simple was small...
use strict;
BEGIN {
require 5.004;
$ConfigTiny::VERSION = '2.12';
$ConfigTiny::errstr = '';
}
# Create an empty object
sub new { bless {}, shift }
# Create an object from a file
sub read {
my $class = ref $_[0] ? shift : ref shift;
# Check the file
my $file = shift or return $class->_error( 'You did not specify a file name' );
return $class->_error( "File '$file' does not exist" ) unless -e $file;
return $class->_error( "'$file' is a directory, not a file" ) unless -f _;
return $class->_error( "Insufficient permissions to read '$file'" ) unless -r _;
# Slurp in the file
local $/ = undef;
open CFG, $file or return $class->_error( "Failed to open file '$file': $!" );
my $contents = <CFG>;
close CFG;
return $class->read_string( $contents );
}
# Create an object from a string
sub read_string {
my $class = ref $_[0] ? shift : ref shift;
my $self = $class;
#my $self = bless {}, $class;
#my $self = shift;
return undef unless defined $_[0];
# Parse the file
my $ns = '_';
my $counter = 0;
my $content = shift;
$content =~ s/\\(?:\015{1,2}\012|\015|\012)\s*//gm;
foreach ( split /(?:\015{1,2}\012|\015|\012)/, $content ) {
$counter++;
# Skip comments and empty lines
next if /^\s*(?:\#|\;|$)/;
# Remove inline comments
s/\s\;\s.+$//g;
# Handle section headers
if ( /^\s*\[\s*(.+?)\s*\]\s*$/ ) {
# Create the sub-hash if it doesn't exist.
# Without this sections without keys will not
# appear at all in the completed struct.
$self->{$ns = $1} ||= {};
next;
}
# Handle properties
if ( /^\s*([^=]+?)\s*=\s*(.*?)\s*$/ ) {
$self->{$ns}->{$1} = $2;
next;
}
# Handle settings
if ( /^\s*([^=]+?)\s*$/ ) {
$self->{$ns}->{$1} = 1;
next;
}
return $self->_error( "Syntax error at line $counter: '$_'" );
}
return $self;
}
# Save an object to a file
sub write {
my $self = shift;
my $file = shift or return $self->_error(
'No file name provided'
);
# Write it to the file
open( CFG, '>' . $file ) or return $self->_error(
"Failed to open file '$file' for writing: $!"
);
print CFG $self->write_string;
close CFG;
}
# Save an object to a string
sub write_string {
my $self = shift;
my $contents = '';
foreach my $section ( sort { (($b eq '_') <=> ($a eq '_')) || ($a cmp $b) } keys %$self ) {
my $block = $self->{$section};
$contents .= "\n" if length $contents;
$contents .= "[$section]\n" unless $section eq '_';
foreach my $property ( sort keys %$block ) {
$contents .= "$property=$block->{$property}\n";
}
}
$contents;
}
# Error handling
sub errstr { $ConfigTiny::errstr }
sub _error { $ConfigTiny::errstr = $_[1]; undef }
1;
#
# @(#)$Id$
#
# ###########################################################################
#
# Fetch-CRL3 logging support
package FCLog;
use Sys::Syslog;
# Syntax:
# $log = CL->new( [outputmode=qualified,cache,direct,syslog] )
# $log->destadd( destination [,facility] )
# $log->destremove ( destination )
# $log->setverbose( level )
# $log->setdebug( level )
# $log->setwarnings( 0|1 )
# $log->debug( level, message ...)
# $log->verb( level, message ...)
# $log->warn( level, message ...)
# $log->err( level, message ...)
# $log->clear( )
# $log->flush( )
# $log->exitstatus( )
#
sub new {
my $self = shift;
my $obref = {}; bless $obref;
$obref->{"debug"} = 0;
$obref->{"verbose"} = 0;
$obref->{"messagecache"} = ();
$obref->{"warnings"} = 1;
$obref->{"errors"} = 1;
$obref->{"warncount"} = 0;
$obref->{"errorcount"} = 0;
$obref->{"syslogfacility"} = "daemon";
while ( my $mode = shift ) {
$obref->destadd($mode);
}
return $obref;
}
sub destadd {
my $self = shift;
my $mode = shift;
my $facility = (shift or $self->{"syslogfacility"});
return 0 unless defined $mode;
$self->{"logmode"}{$mode} = 1;
if ( $mode eq "syslog" ) {
my $progname = $0;
$progname =~ s/^.*\///;
$self->{"syslogfacility"} = $facility;
openlog($progname,"nowait,pid", $facility);
}
return 1;
}
sub destremove {
my $self = shift;
my $ok = 1;
my $mode = shift;
$self->{"logmode"} = {} and return 1 if (defined $mode and $mode eq "all");
unshift @_,$mode;
while ( my $mode = shift ) {
if ( defined $self->{"logmode"}{$mode} ) {
closelog() if $mode eq "syslog";
delete $self->{"logmode"}{$mode};
} else {
$ok=0;
}
}
return $ok;
}
sub setverbose {
my ($self,$level) = @_;
my $oldlevel = $self->{"verbose"};
$self->{"verbose"} = 0+$level;
return $oldlevel;
}
sub getverbose {
my ($self) = @_;
return $self->{"verbose"};
}
sub setdebug {
my ($self,$level) = @_;
my $oldlevel = $self->{"debug"};
$self->{"debug"} = $level;
return $oldlevel;
}
sub getdebug {
my ($self) = @_;
return $self->{"debug"};
}
sub setwarnings {
my ($self,$level) = @_;
my $oldlevel = $self->{"warnings"};
$self->{"warnings"} = $level;
return $oldlevel;
}
sub getwarnings {
my ($self) = @_;
return $self->{"warnings"};
}
sub geterrors {
my ($self) = @_;
return $self->{"errors"};
}
sub seterrors {
my ($self,$level) = @_;
my $oldlevel = $self->{"errors"};
$self->{"errors"} = $level;
return $oldlevel;
}
sub verb($$$) {
my $self = shift;
my $level = shift;
return 1 unless ( $level <= $self->{"verbose"} );
my $message = "@_";
$self->output("VERBOSE($level)",$message);
return 1;
}
sub debug($$$) {
my $self = shift;
my $level = shift;
return 1 unless ( $level <= $self->{"debug"} );
my $message = "@_";
$self->output("DEBUG($level)",$message);
return 1;
}
sub warn($@) {
my $self = shift;
return 1 unless ( $self->{"warnings"} );
$self->{"warningcount"}++;
my $message = "@_";
$self->output("WARN",$message);
return 1;
}
sub err($@) {
my $self = shift;
my $message = "@_";
return 1 unless ( $self->{"errors"} );
$self->output("ERROR",$message);
$self->{"errorcount"}++;
return 1;
}
sub output($$@) {
my ($self,$label,@message) = @_;
return 0 unless defined $label and @message;
my $message = join " ",@message;
print "" . ($label?"$label ":"") . "$message\n"
if ( defined $self->{"logmode"}{"qualified"} );
push @{$self->{"messagecache"}},"" . ($label?"$label ":"") . "$message\n"
if ( defined $self->{"logmode"}{"cache"} );
print "$message\n"
if ( defined $self->{"logmode"}{"direct"} );
if ( defined $self->{"logmode"}{"syslog"} ) {
my $severity = "LOG_INFO";
$severity = "LOG_NOTICE" if $label eq "WARN";
$severity = "LOG_ERR" if $label eq "ERROR";
$severity = "LOG_DEBUG" if $label =~ /^VERBOSE/;
$severity = "LOG_DEBUG" if $label =~ /^DEBUG/;
syslog($severity, "%s", $message);
}
return 1;
}
sub clear($) {
my $self = shift;
$self->{"messagecache"} = ();
return 1;
}
sub flush($) {
my $self = shift;
foreach my $s ( @{$self->{"messagecache"}} ) {
print $s;
}
$self->{"messagecache"} = ();
$self->{"errorcount"} and $self->{"errors"} and return 0;
$self->{"warningcount"} and $self->{"warnings"} and return 1;
return 1;
}
sub cleanse($) {
my $self = shift;
$self->{"messagecache"} = ();
$self->{"errorcount"} = 0;
$self->{"warningcount"} = 0;
$self->{"logmode"} = {};
return 1;
}
sub exitstatus($) {
my $self = shift;
$self->{"errorcount"} and $self->{"errors"} and return 1;
return 0;
}
1;
#
# @(#)$Id$
#
#
package OSSL;
use strict;
use POSIX;
use File::Temp qw/ tempfile /;
use IPC::Open3;
use IO::Select;
use Time::Local;
use vars qw/ $log $cnf $opensslversion /;
# Syntax:
# OSSL->new( [path] );
# OSSL->setName( name);
#
sub new {
my $obref = {}; bless $obref;
my $self = shift;
$self = $obref;
my $openssl = shift;
$self->{"openssl"} = "openssl";
$self->{"openssl"} = $::cnf->{_}->{"openssl"} if $::cnf->{_}->{"openssl"};
$self->setOpenSSL($openssl) if $openssl;
$self->{"version"} = undef;
return $self;
}
sub setOpenSSL($$) {
my $self = shift or die "Invalid invocation of CRL::setOpenSSL\n";
my $openssl = shift;
return 0 unless $openssl;
$openssl =~ /\// and ! -x "$openssl" or
$::log->err("OpenSSL binary $openssl is not executable or does not exist")
and return 0;
$::log->verb(4,"Using OpenSSL at $openssl");
$self->{"openssl"} = $openssl;
$self->{"version"} = undef;
return 1;
}
sub getVersion($) {
my $self = shift or die "Invalid invocation of CRL::getVersion\n";
#$self->{"version"} and return $self->{"version"};
$opensslversion and return $opensslversion;
my ($data,$errors) = $self->Exec3(undef,qw/version/);
if ( defined $data ) {
$data =~ /^OpenSSL\s+([\d\.]+\w)/ or
$::log->err("Cannot get OpenSSL version from command: invalid format in $data".($errors?" ($errors)":"")) and
return undef;
$self->{"version"} = $1;
$opensslversion = $self->{"version"};
return $1;
} else {
$::log->err("Cannot get OpenSSL version from command: $errors");
return undef;
}
}
sub Exec3select($$@) {
my $self = shift or die "Invalid invocation of CRL::OpenSSL\n";
my $datain = shift;
my ($dataout, $dataerr) = ("",undef);
my $rc = 0;
local(*CMD_IN, *CMD_OUT, *CMD_ERR);
$::log->verb(6,"Executing openssl",@_);
my $pid = open3(*CMD_IN, *CMD_OUT, *CMD_ERR, $self->{"openssl"}, @_ );
$SIG{CHLD} = sub {
$rc = $? >> 8 if waitpid($pid, 0) > 0
};
$datain and print CMD_IN $datain;
close(CMD_IN);
print STDERR "Printed " . length($datain). " bytes of data\n";
my $selector = IO::Select->new();
$selector->add(*CMD_ERR);
$selector->add(*CMD_OUT);
my ($char,$cnt);
while ($selector->count) {
my @ready = $selector->can_read(1);
#my @ready = IO::Select->select($selector,undef,undef,1);
foreach my $fh (@ready) {
if (fileno($fh) == fileno(CMD_ERR)) {
$cnt = sysread CMD_ERR, $char, 1;
if ( $cnt ) { $dataerr .= $char; }
else { $selector->remove($fh); $dataerr and print STDERR "$dataerr\n";}
} else {
$cnt = sysread CMD_OUT, $char, 1;
if ( $cnt ) { $dataout .= $char; }
else { $selector->remove($fh); $dataout and print STDERR "$dataout\n"; }
}
$selector->remove($fh) if eof($fh);
}
}
close(CMD_OUT);
close(CMD_ERR);
if ( $rc >> 8 ) {
$::log->warn("Execute openssl " . $ARGV[0] . " failed: $rc");
(my $errmsg = $dataerr) =~ s/\n.*//sgm;
$::log->verb(6,"STDERR:",$errmsg);
return undef unless wantarray;
return (undef,$dataerr);
}
return $dataout unless wantarray;
return ($dataout,$dataerr);
}
sub Exec3pipe($$@) {
my $self = shift or die "Invalid invocation of CRL::OpenSSL\n";
my $datain = shift;
my ($dataout, $dataerr) = ("",undef);
my $rc = 0;
local(*CMD_IN, *CMD_OUT, *CMD_ERR);
$::log->verb(6,"Executing openssl",@_);
my ($tmpfh,$tmpname);
$datain and do {
($tmpfh,$tmpname) = tempfile("fetchcrl3.XXXXXX", DIR=>'/tmp');
$|=1;
print $tmpfh $datain;
close $tmpfh;
push @_, "-in", $tmpname;
select undef,undef,undef,0.01;
};
$|=1;
my $pid = open3( *CMD_IN, *CMD_OUT, *CMD_ERR, $self->{"openssl"}, @_ );
# allow delay for child to startup - but will hang on many older platforms
select undef,undef,undef,0.15;
$SIG{CHLD} = sub {
$rc = $? >> 8 if waitpid($pid, 0) > 0
};
#close(CMD_IN);
CMD_OUT->autoflush;
CMD_ERR->autoflush;
my $selector = IO::Select->new();
$selector->add(*CMD_ERR, *CMD_OUT);
while (my @ready = $selector->can_read(0.01)) {
foreach my $fh (@ready) {
if (fileno($fh) == fileno(CMD_ERR)) {$dataerr .= scalar <CMD_ERR>}
else {$dataout .= scalar <CMD_OUT>}
$selector->remove($fh) if eof($fh);
}
}
close(CMD_OUT);
close(CMD_ERR);
$tmpname and unlink $tmpname;
if ( $rc >> 8 ) {
$::log->warn("Execute openssl " . $ARGV[0] . " failed: $rc");
(my $errmsg = $dataerr) =~ s/\n.*//sgm;
$::log->verb(6,"STDERR:",$errmsg);
return undef unless wantarray;
return (undef,$dataerr);
}
return $dataout unless wantarray;
return ($dataout,$dataerr);
}
sub Exec3file($$@) {
my $self = shift or die "Invalid invocation of CRL::OpenSSL\n";
my $datain = shift;
my ($dataout, $dataerr) = ("",undef);
my $rc = 0;
local(*CMD_IN, *CMD_OUT, *CMD_ERR);
$::log->verb(6,"Executing openssl",@_);
my ($tmpin,$tmpinname);
my ($tmpout,$tmpoutname);
my ($tmperr,$tmperrname);
my $tmpdir = $::cnf->{_}->{exec3tmpdir} || $ENV{"TMPDIR"} || '/tmp';
$|=1;
$datain and do {
($tmpin,$tmpinname) = tempfile("fetchcrl3in.XXXXXX",
DIR=>$tmpdir);
print $tmpin $datain;
close $tmpin;
};
($tmpout,$tmpoutname) = tempfile("fetchcrl3out.XXXXXX",
DIR=>$tmpdir);
($tmperr,$tmperrname) = tempfile("fetchcrl3out.XXXXXX",
DIR=>$tmpdir);
my $pid = fork();
defined $pid or
$::log->warn("Internal error, fork for openssl failed: $!") and
return undef;
if ( $pid == 0 ) { # I'm a kid
close STDIN;
if ( $tmpinname ) {
open STDIN, "<", $tmpinname or
die "Cannot open tempfile $tmpinname again $!\n";
} else {
open STDIN, "<", "/dev/null" or
die "Cannot open /dev/null ??? $!\n";
}
close STDOUT;
if ( $tmpoutname ) {
open STDOUT, ">", $tmpoutname or
die "Cannot open tempfile $tmpoutname again $!\n";
} else {
open STDOUT, ">", "/dev/null" or
die "Cannot open /dev/null ??? $!\n";
}
close STDERR;
if ( $tmpoutname ) {
open STDERR, ">", $tmperrname or
die "Cannot open tempfile $tmperrname again $!\n";
} else {
open STDERR, ">", "/dev/null" or
die "Cannot open /dev/null ??? $!\n";
}
exec $self->{"openssl"}, @_;
}
$rc = $? >> 8 if waitpid($pid, 0) > 0;
{ local $/; $dataout = <$tmpout>; };
{ local $/; $dataerr = <$tmperr>; };
$tmpinname and unlink $tmpinname;
$tmpoutname and unlink $tmpoutname;
$tmperrname and unlink $tmperrname;
if ( $rc >> 8 ) {
$::log->warn("Execute openssl " . $ARGV[0] . " failed: $rc");
(my $errmsg = $dataerr) =~ s/\n.*//sgm;
$::log->verb(6,"STDERR:",$errmsg);
return undef unless wantarray;
return (undef,$dataerr);
}
return $dataout unless wantarray;
return ($dataout,$dataerr);
}
sub Exec3($@) {
my $self = shift;
grep /^pipe$/, $::cnf->{_}->{exec3mode}||"" and return $self->Exec3pipe(@_);
grep /^select$/, $::cnf->{_}->{exec3mode}||"" and return $self->Exec3select(@_);
return $self->Exec3file(@_); # default
}
sub gms2t($$) {
my $self = shift;
my ( $month, $mday, $htm, $year, $tz ) = split(/\s+/,$_[0]);
die "OSSL::gms2t: cannot hangle non GMT output from OpenSSL\n"
unless $tz eq "GMT";
my %mon=("Jan"=>0,"Feb"=>1,"Mar"=>2,"Apr"=>3,"May"=>4,"Jun"=>5,
"Jul"=>6,"Aug"=>7,"Sep"=>8,"Oct"=>9,"Nov"=>10,"Dec"=>11);
my ( $hrs,$min,$sec ) = split(/:/,$htm);
my $gmt = timegm($sec,$min,$hrs,$mday,$mon{$month},$year);
#print STDERR ">>> converted $_[0] to $gmt\n";
return $gmt;
}
1;
#
# @(#)$Id$
#
# ###########################################################################
#
#
package TrustAnchor;
use strict;
use File::Basename;
use LWP;
require ConfigTiny and import ConfigTiny unless defined &ConfigTiny::new;
require CRL and import CRL unless defined &CRL::new;
require base64 and import base64 unless defined &base64::b64encode;
use vars qw/ $log $cnf /;
sub new {
my $obref = {}; bless $obref;
my $self = shift;
$self = $obref;
my $name = shift;
$self->{"infodir"} = $cnf->{_}->{infodir};
$self->{"suffix"} = "info";
$self->loadAnchor($name) if defined $name;
return $self;
}
sub saveLogMode($) {
my $self = shift;
return 0 unless defined $self;
$self->{"preserve_warnings"} = $::log->getwarnings;
$self->{"preserve_errors"} = $::log->geterrors;
return 1;
}
sub setLogMode($) {
my $self = shift;
return 0 unless defined $self;
$self->{"nowarnings"} and $::log->setwarnings(0);
$self->{"noerrors"} and $::log->seterrors(0);
return 1;
}
sub restoreLogMode($) {
my $self = shift;
return 0 unless defined $self;
(defined $self->{"preserve_warnings"} and defined $self->{"preserve_errors"})
or die "Internal error: restoreLogMode called without previous save\n";
$::log->setwarnings($self->{"preserve_warnings"});
$::log->seterrors($self->{"preserve_errors"});
return 1;
}
sub getInfodir($$) {
my $self = shift;
my ($path) = shift;
return 0 unless defined $self;
return $self->{"infodir"};
}
sub setInfodir($$) {
my $self = shift;
my ($path) = shift;
return 0 unless defined $path and defined $self;
-e $path or
$::log->err("setInfodir: path $path does not exist") and return 0;
-d $path or
$::log->err("setInfodir: path $path is not a directory") and return 0;
$self->{"infodir"} = $path;
return 1;
}
sub loadAnchor($$) {
my $self = shift;
my ($name) = @_;
return 0 unless defined $name;
$::log->verb(1,"Initializing trust anchor $name");
my ( $basename, $path, $suffix) = fileparse($name,('.info','.crl_url'));
$path = "" if $path eq "./" and substr($name,0,length($path)) ne $path ;
$::log->err("Invalid name of trust anchor $name") and return 0
unless $basename;
$self->{"infodir"} = $path if $path ne "";
$path = $self->{"infodir"} || "";
$path and $path .= "/" unless $path =~ /\/$/;
if ( $suffix ) {
-e $name or
$::log->err("Trust anchor data $name not found") and return 0;
} else { # try and guess which suffix should be used
($suffix eq "" and -e $path.$basename.".info" ) and $suffix = ".info";
($suffix eq "" and -e $path.$basename.".crl_url" ) and $suffix = ".crl_url";
$suffix or
$::log->err("No trust anchor metadata for $basename in '$path'")
and return 0;
}
if ( $suffix eq ".crl_url" ) {
$self->{"alias"} = $basename;
@{$self->{"crlurls"}} = ();
open CRLURL,"$path$basename$suffix" or
$::log->err("Error reading crl_url $path$basename$suffix: $!") and return 0;
my $urllist;
while (<CRLURL>) {
/^\s*([^#\n]+).*$/ and my $url = $1 or next;
$url =~ s/\s*$//; # trailing whitespace is ignored
$url =~ /^\w+:\/\/.*$/ or
$::log->err("File $path$basename$suffix contains a non-URL entry")
and close CRLURL and return 0;
$urllist and $urllist .= "\001";
$urllist .= $url;
}
close CRLURL;
push @{$self->{"crlurls"}}, $urllist;
$self->{"status"} ||= "unknown";
} else {
my $info = ConfigTiny->new();
$info->read( $path . $basename . $suffix ) or
$::log->err("Error reading info $path$basename$suffix", $info->errstr)
and return 0;
$info->{_}->{"crl_url"} and $info->{_}->{"crl_url.0"} and
$::log->err("Invalid info for $basename: crl_url and .0 duplicate") and
return 0;
$info->{_}->{"crl_url"} and
$info->{_}->{"crl_url.0"} = $info->{_}->{"crl_url"};
# only do something when there is actually a CRL to process
$info->{_}->{"crl_url.0"} or
$::log->verb(1,"Trust anchor $basename does not have a CRL") and return 0;
$info->{_}->{"alias"} or
$::log->err("Invalid info for $basename: no alias") and
return 0;
$self->{"alias"} = $info->{_}->{"alias"};
@{$self->{"crlurls"}} = ();
for ( my $i=0 ; defined $info->{_}{"crl_url.".$i} ; $i++ ) {
$info->{_}{"crl_url.".$i} =~ s/[;\s]+/\001/g;
$info->{_}{"crl_url.".$i} =~ s/^\s*([^\s]*)\s*$/$1/;
$info->{_}{"crl_url.".$i} =~ /^\w+:\/\// or
$::log->err("File $path$basename$suffix contains a non-URL entry",
$info->{_}{"crl_url.".$i})
and close CRLURL and return 0;
push @{$self->{"crlurls"}} , $info->{_}{"crl_url.".$i};
}
foreach my $field ( qw/email ca_url status/ ) {
$self->{$field} = $info->{_}->{$field} if $info->{_}->{$field};
}
# status of CA is only knwon for info-file based CAs
$self->{"status"} ||= "local";
}
# preserve basename of file for config and diagnostics
$self->{"anchorname"} = $basename;
#
# set defaults for common values
foreach my $key ( qw /
prepend_url postpend_url agingtolerance
httptimeout proctimeout
nowarnings noerrors nocache http_proxy
nametemplate_der nametemplate_pem
cadir catemplate statedir
/ ) {
$self->{$key} = $self->{$key} ||
$::cnf->{$self->{"alias"}}->{$key} ||
$::cnf->{$self->{"anchorname"}}->{$key} ||
$::cnf->{_}->{$key} or delete $self->{$key};
defined $self->{$key} and do {
$self->{$key} =~ s/\@ANCHORNAME\@/$self->{"anchorname"}/g;
$self->{$key} =~ s/\@STATUS\@/$self->{"status"}/g;
$self->{$key} =~ s/\@ALIAS\@/$self->{"alias"}/g;
};
}
# reversible toggle options
foreach my $key ( qw / warnings errors cache / ) {
delete $self->{"no$key"} if $::cnf->{$self->{"alias"}}->{$key} or
$::cnf->{$self->{"anchorname"}}->{$key} or
$::cnf->{_}->{$key};
}
foreach my $key ( qw / nohttp_proxy noprepend_url nopostpend_url
nostatedir / ) {
(my $nokey = $key) =~ s/^no//;
delete $self->{"$nokey"} if $::cnf->{$self->{"alias"}}->{$key} or
$::cnf->{$self->{"anchorname"}}->{$key} or
$::cnf->{_}->{$key};
}
# overriding of the URLs (alias takes precedence over anchorname
foreach my $section ( qw / anchorname alias / ) {
my $i = 0;
while ( defined ($::cnf->{$self->{$section}}->{"crl_url.".$i}) ) {
my $urls;
($urls=$::cnf->{$self->{$section}}->{"crl_url.".$i} )=~s/[;\s]+/\001/g;
${$self->{"crlurls"}}[$i] = $urls;
$i++;
}
}
# templates to construct a CA name may still have other separators
$self->{"catemplate"} =~ s/[;\s]+/\001/g;
# select only http/https/ftp/file URLs
# also transform the URLs using the base patterns and prepend any
# local URL patterns (@ANCHORNAME@, @ALIAS@, and @R@)
for ( my $i=0; $i <= $#{$self->{"crlurls"}} ; $i++ ) {
my $urlstring = @{$self->{"crlurls"}}[$i];
my @urls = split(/\001/,$urlstring);
$urlstring="";
foreach my $url ( @urls ) {
if ( $url =~ /^(http:|https:|ftp:|file:)/ ) {
$urlstring.="\001" if $urlstring; $urlstring.=$url;
} else {
$::log->verb(0,"URL $url in $basename$suffix unsupported, ignored");
}
}
if ( my $purl = $self->{"prepend_url"} ) {
$purl =~ s/\@R\@/$i/g;
$urlstring = join "\001" , $purl , $urlstring;
}
if ( my $purl = $self->{"postpend_url"} ) {
$purl =~ s/\@R\@/$i/g;
$urlstring = join "\001" , $urlstring, $purl;
}
if ( ! $urlstring ) {
$::log->err("No usable CRL URLs for",$self->getAnchorName);
$self->{"crlurls"}[$i] = "";
} else {
$self->{"crlurls"}[$i] = $urlstring;
}
}
return 1;
}
sub getAnchorName($) {
my $self = shift;
return ($self->{"anchorname"} || undef);
}
sub printAnchorName($) {
my $self = shift;
print "" . ($self->{"anchorname"} || "undefined") ."\n";
}
sub displayAnchorName($) {
my $self = shift;
return ($self->{"anchorname"} || "undefined");
}
sub loadCAfiles($) {
my $self = shift;
my $idx = 0;
# try to find a CA dir, whatever it takes, almost
my $cadir = $self->{"cadir"} || $self->{"infodir"};
-d $cadir or
$::log->err("CA directory",$cadir,"does not exist") and
return 0;
# add @HASH@ support, inducing a file read and fork, only if really needed
my $crlhash;
if ( $self->{"catemplate"} =~ /\@HASH\@/ ) {
$self->{"crl"}[0]{"data"} ne "" or
$::log->err("CA name template contains HASH, but no CRL ".
"could be loaded in time for ".$self->displayAnchorName) and
return 0;
my $probecrl = CRL->new(undef,$self->{"crl"}[0]{"data"});
$crlhash = $probecrl->getAttribute("hash");
$::log->verb(3,"Inferred CA template HASH ".($crlhash?$crlhash:"failed").
" for ".$self->displayAnchorName);
}
@{$self->{"cafile"}} = ();
do {
my $cafile;
foreach my $catpl ( split /\001/, $self->{"catemplate"} ) {
$catpl =~ s/\@R\@/$idx/g;
$catpl =~ s/\@HASH\@/$crlhash/g;
-e $cadir.'/'.$catpl and
$cafile = $cadir.'/'.$catpl and last;
}
defined $cafile or do {
$idx or do $::log->err("Cannot find any CA for",
$self->{"alias"},"in",$cadir);
return $idx?1:0;
};
# is the new one any different from the previous (i.e. is the CA indexed?)
$#{$self->{"cafile"}} >= 0 and
$cafile eq $self->{"cafile"}[$#{$self->{"cafile"}}] and return 1;
push @{$self->{"cafile"}}, $cafile;
$::log->verb(3,"Added CA file $idx: $cafile");
} while(++$idx);
return 0; # you never should come here
}
sub loadState($$) {
my $self = shift;
my $fallbackmode = shift;
$self->{"crlurls"} or
$::log->err("loading state for uninitialised list of CRLs") and return 0;
$self->{"alias"} or
$::log->err("loading state for uninitialised trust anchor") and return 0;
for ( my $i = 0; $i <= $#{$self->{"crlurls"}} ; $i++ ) { # all indices
if ( $self->{"statedir"} and
-e $self->{"statedir"}.'/'.$self->{"alias"}.'.'.$i.'.state'
) {
my $state = ConfigTiny->new();
$state->read($self->{"statedir"}.'/'.$self->{"alias"}.'.'.$i.'.state')
or $::log->err("Cannot read existing state file",
$self->{"statedir"}.'/'.$self->{"alias"}.'.$i.state',
" - ",$state->errstr) and return 0;
foreach my $key ( keys %{$state->{$self->{"alias"}}} ) {
$self->{"crl"}[$i]{"state"}{$key} = $state->{$self->{"alias"}}->{$key};
}
}
# fine, but we should find at least an mtime if at all possible
# make sure it is there:
# try to retrieve state from installed files in @output_
# where the first look-alike CRL will win. NSS databases
# are NOT supported for this heuristic
if ( ! defined $self->{"crl"}[$i]{"state"}{"mtime"} ) {
my $mtime;
STATEHUNT: foreach my $output ( ( $::cnf->{_}->{"output"},
$::cnf->{_}->{"output_der"}, $::cnf->{_}->{"output_pem"},
$::cnf->{_}->{"output_nss"}, $::cnf->{_}->{"output_openssl"}) ) {
defined $output and $output or next;
foreach my $ref (
$self->{"nametemplate_der"},
$self->{"nametemplate_pem"},
$self->{"alias"}.".r\@R\@",
$self->{"anchorname"}.".r\@R\@",
) {
next unless $ref;
my $file = $ref; # copy, not to change original
$file =~ s/\@R\@/$i/g;
$file = join "/", $output, $file;
next if ! -e $file;
$mtime = (stat(_))[9];
last STATEHUNT;
}
}
$::log->verb(3,"Inferred mtime for",$self->{"alias"},"is",$mtime) if $mtime;
$self->{"crl"}[$i]{"state"}{"mtime"} = $mtime if $mtime;
}
# as a last resort, set mtime to curren time
$self->{"crl"}[$i]{"state"}{"mtime"} ||= time;
}
return 1;
}
sub saveState($$) {
my $self = shift;
my $fallbackmode = shift;
$self->{"statedir"} and -d $self->{"statedir"} and -w $self->{"statedir"} or
return 0;
$self->{"crlurls"} or
$::log->err("loading state for uninitialised list of CRLs") and return 0;
$self->{"alias"} or
$::log->err("loading state for uninitialised trust anchor") and return 0;
# of state, mtime is set based on CRL write in $output and filled there
for ( my $i = 0; $i <= $#{$self->{"crlurls"}} ; $i++ ) { # all indices
if ( defined $self->{"statedir"} and
-d $self->{"statedir"}
) {
my $state = ConfigTiny->new;
foreach my $key ( keys %{$self->{"crl"}[$i]{"state"}} ) {
$state->{$self->{"alias"}}->{$key} = $self->{"crl"}[$i]{"state"}{$key};
}
$state->write(
$self->{"statedir"}.'/'.$self->{"alias"}.'.'.$i.'.state' );
$::log->verb(5,"State saved in",
$self->{"statedir"}.'/'.$self->{"alias"}.'.'.$i.'.state');
}
}
return 1;
}
sub retrieveHTTP($$) {
my $self = shift;
my $idx = shift;
my $url = shift;
my %metadata;
my $data;
$url =~ /^(http:|https:|ftp:)/ or die "retrieveHTTP: non-http URL $url\n";
$::log->verb(3,"Downloading data from $url");
my $ua = LWP::UserAgent->new;
$ua->agent('fetch-crl/'.$::cnf->{_}->{version} . ' ('.
$ua->agent . '; '.$::cnf->{_}->{packager} . ')'
);
$ua->timeout($self->{"httptimeout"});
$ua->use_eval(0);
if ( $self->{"http_proxy"} ) {
if ( $self->{"http_proxy"} =~ /^ENV/i ) {
$ua->env_proxy();
} else {
$ua->proxy("http", $self->{"http_proxy"});
}
}
# see with a HEAD request if we can get by with old data
# but to assess that we need Last-Modified from the previous request
# (so if the CA did not send that: too bad)
if ( $self->{"crl"}[$idx]{"state"}{"lastmod"} and
$self->{"crl"}[$idx]{"state"}{"b64data"}
) {
$::log->verb(4,"Lastmod set to",$self->{"crl"}[$idx]{"state"}{"lastmod"});
$::log->verb(4,"Attemping HEAD retrieval of $url");
my $response;
eval {
local $SIG{ALRM}=sub{die "timed out after ".$self->{"httptimeout"}."s\n";};
alarm $self->{"httptimeout"};
$response = $ua->head($url);
alarm 0;
};
alarm 0; # make sure the alarm stops ticking, regardless of the eval
if ( $@ ) {
$::log->verb(2,"HEAD error $url:", $@);
return undef;
}
# try get if head fails anyway
if ( ( ! $@ ) and
$response->is_success and
$response->header("Last-Modified") ) {
my $lastmod = HTTP::Date::str2time($response->header("Last-Modified"));
if ( $lastmod == $self->{"crl"}[$idx]{"state"}{"lastmod"}) {
$::log->verb(4,"HEAD lastmod unchanged, using cache");
$data = base64::b64decode($self->{"crl"}[$idx]{"state"}{"b64data"});
%metadata = (
"freshuntil" => $response->fresh_until(heuristic_expiry=>0)||time,
"lastmod" => $self->{"crl"}[$idx]{"state"}{"lastmod"} || time,
"sourceurl" => $self->{"crl"}[$idx]{"state"}{"sourceurl"} || $url
);
return ($data,%metadata) if wantarray;
return $data;
} elsif ( $lastmod < $self->{"crl"}[$idx]{"state"}{"lastmod"} ) {
# retrieve again, but print warning abount this wierd behaviour
$::log->warn("Retrieved HEAD Last-Modified is older than cache: ".
"cache invalidated, GET issued");
}
}
}
# try get if head fails anyway
my $response;
eval {
local $SIG{ALRM}=sub{die "timed out after ".$self->{"httptimeout"}."s\n";};
alarm $self->{"httptimeout"};
$ua->parse_head(0);
$response = $ua->get($url);
alarm 0;
};
alarm 0; # make sure the alarm stops ticking, regardless of the eval
if ( $@ ) {
chomp($@);
$::log->verb(0,"Download error $url:", $@);
return undef;
}
if ( ! $response->is_success ) {
$::log->verb(0,"Download error $url:",$response->status_line);
return undef;
}
$data = $response->content;
$metadata{"freshuntil"}=$response->fresh_until(heuristic_expiry=>0)||time;
if ( my $lastmod = $response->header("Last-Modified") ) {
$metadata{"lastmod"} = HTTP::Date::str2time($lastmod);
}
$metadata{"sourceurl"} = $url;
return ($data,%metadata) if wantarray;
return $data;
}
sub retrieveFile($$) {
my $self = shift;
my $idx = shift;
my $url = shift;
$url =~ /^file:\/*(\/.*)$/ or die "retrieveFile: non-file URL $url\n";
$::log->verb(4,"Retrieving data from $url");
# for files the previous state does not matter, we retrieve it
# anyway
my $data;
{
open CRLFILE,$1 or do {
$! = "Cannot open $1: $!";
return undef;
};
binmode CRLFILE;
local $/;
$data = <CRLFILE>;
close CRLFILE;
}
my %metadata;
$metadata{"lastmod"} = (stat($1))[9];
$metadata{"freshuntil"} = time;
$metadata{"sourceurl"} = $url;
return ($data,%metadata) if wantarray;
return $data;
}
sub retrieve($) {
my $self = shift;
$self->{"crlurls"} or
$::log->err("Retrieving uninitialised list of CRL URLs") and return 0;
$::log->verb(2,"Retrieving CRLs for",$self->{"alias"});
for ( my $i = 0; $i <= $#{$self->{"crlurls"}} ; $i++ ) { # all indices
my ($result,%response);
$::log->verb(3,"Retrieving CRL for",$self->{"alias"},"index $i");
# within the list of CRL URLs for a specific index, all entries
# are considered equivalent. I.e., if we get one, the metadata will
# be used for all (like Last-Modified, and cache control data)
# if we have a cached piece of fresh data, return that one
if ( !$self->{"nocache"} and
($self->{"crl"}[$i]{"state"}{"freshuntil"} || 0) > time and
($self->{"crl"}[$i]{"state"}{"nextupdate"} || time) >= time and
$self->{"crl"}[$i]{"state"}{"b64data"} ) {
$::log->verb(3,"Using cached content for",$self->{"alias"},"index",$i);
$::log->verb(4,"Content dated",
scalar gmtime($self->{"crl"}[$i]{"state"}{"lastmod"}),
"valid until",
scalar gmtime($self->{"crl"}[$i]{"state"}{"freshuntil"}),
"UTC");
$result = base64::b64decode($self->{"crl"}[$i]{"state"}{"b64data"});
%response = (
"freshuntil" => $self->{"crl"}[$i]{"state"}{"freshuntil"} || time,
"lastmod" => $self->{"crl"}[$i]{"state"}{"lastmod"} || time,
"sourceurl" => $self->{"crl"}[$i]{"state"}{"sourceurl"} || "null:"
);
} else {
foreach my $url ( split(/\001/,$self->{"crlurls"}[$i]) ) {
# of these, the first one wins
$url =~ /^(http:|https:|ftp:)/ and
($result,%response) = $self->retrieveHTTP($i,$url);
$url =~ /^(file:)/ and
($result,%response) = $self->retrieveFile($i,$url);
last if $result;
}
}
# check if result is there, otherwise invoke agingtolerance clause
# before actually raising this as an error
# note that agingtolerance stats counting only AFTER the freshness
# of the cache control directives has passed ...
if ( ! $result ) {
$::log->verb(1,"CRL retrieval for",
$self->{"alias"},($i?"[$i] ":"")."failed from all URLs");
if ( $self->{"agingtolerance"} && $self->{"crl"}[$i]{"state"}{"mtime"} ) {
if ( ( time - $self->{"crl"}[$i]{"state"}{"mtime"} ) <
3600*$self->{"agingtolerance"}) {
$::log->warn("CRL retrieval for",
$self->{"alias"},($i?"[$i] ":"")."failed,",
int((3600*$self->{"agingtolerance"}+
$self->{"crl"}[$i]{"state"}{"mtime"}-
time )/3600).
" left of ".$self->{"agingtolerance"}."h, retry later.");
} else {
$::log->err("CRL retrieval for",
$self->{"alias"},($i?"[$i] ":"")."failed.",
$self->{"agingtolerance"}."h grace expired.",
"CRL not updated");
}
} else { # direct errors, no tolerance anymore
$::log->err("CRL retrieval for",
$self->{"alias"},($i?"[$i] ":"")."failed,",
"CRL not updated");
}
next; # next subindex CRL for same CA, no further action on this one
}
# now data for $i is loaded in $result;
# for freshness checks, take a sum (SysV style)
my $sum = unpack("%32C*",$result) % 65535;
$::log->verb(4,"Got",length($result),"bytes of data (sum=$sum)");
$self->{"crl"}[$i]{"data"} = $result;
$self->{"crl"}[$i]{"state"}{"alias"} = $self->{"alias"};
$self->{"crl"}[$i]{"state"}{"index"} = $i;
$self->{"crl"}[$i]{"state"}{"sum"} = $sum;
($self->{"crl"}[$i]{"state"}{"b64data"} =
base64::b64encode($result)) =~ s/\s+//gm;
$self->{"crl"}[$i]{"state"}{"retrievaltime"} = time;
$self->{"crl"}[$i]{"state"}{"sourceurl"} = $response{"sourceurl"}||"null:";
$self->{"crl"}[$i]{"state"}{"freshuntil"} = $response{"freshuntil"}||time;
$self->{"crl"}[$i]{"state"}{"lastmod"} = $response{"lastmod"}||time;
}
return 1;
}
sub verifyAndConvertCRLs($) {
my $self = shift;
$self->{"crlurls"} or
$::log->err("Verifying uninitialised list of CRLs impossible") and return 0;
# all CRLs must be valid in order to proceed
# or we would end up shifting the relative ordering around and
# possibly creatiing holes (or overwriting good local copies of
# CRLs that have gone bad on the remote end
for ( my $i = 0; $i <= $#{$self->{"crlurls"}} ; $i++ ) { # all indices
$self->{"crlurls"}[$i] or
$::log->verb(3,"CRL",$self->getAnchorName."/".$i,"ignored (no valid URL)")
and next;
$self->{"crl"}[$i]{"data"} or
$::log->verb(3,"CRL",$self->getAnchorName."/".$i,"ignored (no new data)")
and next;
$::log->verb(4,"Verifying CRL $i for",$self->getAnchorName);
my $crl = CRL->new($self->getAnchorName."/$i",$self->{"crl"}[$i]{"data"});
my @verifyMessages= $crl->verify(@{$self->{"cafile"}});
# do additional checks on correlation between download and current
# lastUpdate of current file? have to guess the current file
# unless we are stateful!
my $oldlastupdate = $self->{"crl"}[$i]{"state"}{"lastupdate"} || undef;
$oldlastupdate or do {
$::log->verb(6,"Attempting to extract lastUpdate of previous D/L");
CRLSTATEHUNT: foreach my $output ( @{$::cnf->{_}->{"output_"}} ,
$self->{"infodir"}
) {
foreach my $file (
$self->{"nametemplate_der"},
$self->{"nametemplate_pem"},
$self->{"alias"}.".r\@R\@",
$self->{"anchorname"}.".r\@R\@",
) {
next unless $file;
(my $thisfile = $file ) =~ s/\@R\@/$i/g;
$thisfile = join "/", $output, $thisfile;
$::log->verb(6,"Trying guess $file for old CRL");
next if ! -e $thisfile;
my $oldcrldata; {
open OCF,$thisfile and do {
binmode OCF;
local $/;
$oldcrldata = <OCF>;
close OCF;
}
}
my $oldcrl = CRL->new($thisfile,$oldcrldata);
$oldlastupdate = $oldcrl->getLastUpdate;
last CRLSTATEHUNT;
}
}
$::log->verb(3,"Inferred lastupdate for",$self->{"alias"},"is",
$oldlastupdate) if $oldlastupdate;
};
if ( ! $crl->getLastUpdate ) {
push @verifyMessages,"downloaded CRL lastUpdate could not be derived";
} elsif ( $oldlastupdate and ($crl->getLastUpdate < $oldlastupdate) and
($self->{"crl"}[$i]{"state"}{"mtime"} <= time)
) {
push @verifyMessages,"downloaded CRL lastUpdate predates installed CRL,",
"and current version has sane timestamp";
} elsif ( defined $oldlastupdate and $oldlastupdate > time ) {
$::log->warn($self->{"anchorname"}."/$i:","replaced with downloaded CRL",
"since current one has lastUpdate in the future");
}
$#verifyMessages >= 0 and do {
$::log->err("CRL verification failed for",$self->{"anchorname"}."/$i",
"(".$self->{"alias"}.")");
foreach my $m ( @verifyMessages ) {
$::log->verb(0,$self->{"anchorname"}."/$i:",$m);
}
return 0;
};
$self->{"crl"}[$i]{"pemdata"} = $crl->getPEMdata();
foreach my $key ( qw/ lastupdate nextupdate sha1fp issuer / ) {
$self->{"crl"}[$i]{"state"}{$key} = $crl->getAttribute($key) || "";
}
}
return 1;
}
1;
#
# Library inspired by the Perl 4 code from base64.pl by A. P. Barrett
# <barrett@ee.und.ac.za>, October 1993, and subsequent changes by
# Earl Hood <earl@earlhood.com> to use MIME::Base64 if available.
#
package base64;
my $use_MIMEBase64 = eval { require MIME::Base64; };
sub b64decode
{
return &MIME::Base64::decode_base64 if $use_MIMEBase64;
local($^W) = 0; # unpack("u",...) gives bogus warning in 5.00[123]
use integer;
my $str = shift;
$str =~ tr|A-Za-z0-9+=/||cd; # remove non-base64 chars
length($str) % 4 and
die "Internal error in state: length of base64 data not a multiple of 4";
$str =~ s/=+$//; # remove padding
$str =~ tr|A-Za-z0-9+/| -_|; # convert to uuencoded format
return "" unless length $str;
unpack("u", join('', map( chr(32 + length($_)*3/4) . $_,
$str =~ /(.{1,60})/gs) ) );
}
sub b64encode
{
return &MIME::Base64::encode_base64 if $use_MIMEBase64;
local ($_) = shift;
local($^W) = 0;
use integer; # should be faster and more accurate
my $result = pack("u", $_);
$result =~ s/^.//mg;
$result =~ s/\n//g;
$result =~ tr|\` -_|AA-Za-z0-9+/|;
my $padding = (3 - length($_) % 3) % 3;
$result =~ s/.{$padding}$/'=' x $padding/e if $padding;
$result =~ s/(.{1,76})/$1\n/g;
$result;
}
1;
|