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
|
/*
* Copyright 1999-2006 University of Chicago
*
* 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.
*/
#ifndef GLOBUS_DONT_DOCUMENT_INTERNAL
/**
* @file globus_gsi_callback.c
* @brief Globus GSI Callback
* @author Sam Meder, Sam Lang
*/
#endif
#include "globus_common.h"
#include "globus_gsi_callback_constants.h"
#include "globus_i_gsi_callback.h"
#include "globus_gsi_system_config.h"
#include "openssl/err.h"
#include "openssl/asn1.h"
#include "openssl/ssl.h"
#include "openssl/crypto.h"
#include "openssl/rand.h"
#include "openssl/x509v3.h"
#include "version.h"
#ifndef BUILD_FOR_K5CERT_ONLY
#include "globus_oldgaa.h"
#include "globus_oldgaa_utils.h"
#endif
#if OPENSSL_VERSION_NUMBER < 0x10100000L
#define X509_STORE_CTX_get0_chain(ctx) (ctx)->chain
#define X509_STORE_CTX_get0_cert(ctx) (ctx)->cert
#define X509_get_pathlen(x509) (x509)->ex_pathlen
#define X509_get_extension_flags(x509) (x509)->ex_flags
#define X509_STORE_CTX_set_current_cert(ctx, x509) (ctx)->current_cert = (x509)
#define X509_set_proxy_flag(c) (c)->ex_flags |= EXFLAG_PROXY
typedef int (*X509_STORE_CTX_get_issuer_fn)(X509 **issuer, X509_STORE_CTX *ctx, X509 *x); /* get issuers cert from ctx */
#define X509_STORE_CTX_get_get_issuer(c) (c)->get_issuer;
#define X509_OBJECT_get0_X509_CRL(o) (o)->data.crl
#define X509_REVOKED_get0_serialNumber(r) (r)->serialNumber
#define X509_OBJECT_new() calloc(1, sizeof(X509_OBJECT))
#define X509_OBJECT_free(o) \
do { \
X509_OBJECT *otmp = (o); \
X509_OBJECT_free_contents(otmp); \
free(otmp); \
} while (0)
#define X509_CRL_get0_nextUpdate(crl) X509_CRL_get_nextUpdate(crl)
#define X509_CRL_get0_lastUpdate(crl) X509_CRL_get_lastUpdate(crl)
#endif
#ifndef GLOBUS_DONT_DOCUMENT_INTERNAL
static globus_mutex_t globus_l_gsi_callback_oldgaa_mutex;
static globus_mutex_t globus_l_gsi_callback_verify_mutex;
static int globus_l_gsi_callback_activate(void);
static int globus_l_gsi_callback_deactivate(void);
int globus_i_gsi_callback_debug_level = 0;
FILE * globus_i_gsi_callback_debug_fstream = NULL;
/**
* Module descriptor static initializer.
*/
globus_module_descriptor_t globus_i_gsi_callback_module =
{
"globus_gsi_callback_module",
globus_l_gsi_callback_activate,
globus_l_gsi_callback_deactivate,
GLOBUS_NULL,
GLOBUS_NULL,
&local_version
};
static int globus_i_gsi_callback_SSL_callback_data_index = -1;
static int globus_i_gsi_callback_X509_STORE_callback_data_index = -1;
static int
globus_l_gsi_callback_openssl_new(
void * parent,
void * ptr,
CRYPTO_EX_DATA * ad,
int idx,
long argl,
void * argp)
{
int result = 1;
static char * _function_name_ =
"globus_gsi_callback_openssl_new";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
/* init app specific data (callback data)
* since we can't allocate the ptr here
* this function isn't particularly useful
*/
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
return result;
}
static int
globus_l_gsi_callback_openssl_free(
void * parent,
void * ptr,
CRYPTO_EX_DATA * ad,
int idx,
long argl,
void * argp)
{
int result = 1;
static char * _function_name_ =
"globus_gsi_callback_openssl_free";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
/* free the callback data - currently not used*/
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
return result;
}
static int
globus_l_gsi_callback_openssl_dup(
CRYPTO_EX_DATA * to,
CRYPTO_EX_DATA * from,
void * from_d,
int idx,
long argl,
void * argp)
{
int result = 1;
static char * _function_name_ =
"globus_gsi_callback_openssl_dup";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
/* copy the callback data - currenlty not used by OpenSSL */
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
return result;
}
/**
* Module activation
*/
static
int
globus_l_gsi_callback_activate(void)
{
int result = (int) GLOBUS_SUCCESS;
char * tmp_string;
static char * _function_name_ =
"globus_l_gsi_callback_activate";
tmp_string = globus_module_getenv("GLOBUS_GSI_CALLBACK_DEBUG_LEVEL");
if(tmp_string != GLOBUS_NULL)
{
globus_i_gsi_callback_debug_level = atoi(tmp_string);
if(globus_i_gsi_callback_debug_level < 0)
{
globus_i_gsi_callback_debug_level = 0;
}
}
tmp_string = globus_module_getenv("GLOBUS_GSI_CALLBACK_DEBUG_FILE");
if(tmp_string != GLOBUS_NULL)
{
globus_i_gsi_callback_debug_fstream = fopen(tmp_string, "a");
if(globus_i_gsi_callback_debug_fstream == NULL)
{
result = (int) GLOBUS_FAILURE;
goto exit;
}
}
else
{
globus_i_gsi_callback_debug_fstream = stderr;
}
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
result = globus_module_activate(GLOBUS_COMMON_MODULE);
if(result != GLOBUS_SUCCESS)
{
goto exit;
}
result = globus_module_activate(GLOBUS_GSI_SYSCONFIG_MODULE);
if(result != GLOBUS_SUCCESS)
{
goto exit;
}
result = globus_module_activate(GLOBUS_GSI_OPENSSL_ERROR_MODULE);
if(result != GLOBUS_SUCCESS)
{
goto exit;
}
globus_mutex_init(&globus_l_gsi_callback_oldgaa_mutex, NULL);
globus_mutex_init(&globus_l_gsi_callback_verify_mutex, NULL);
OpenSSL_add_all_algorithms();
if(globus_i_gsi_callback_X509_STORE_callback_data_index < 0)
{
globus_i_gsi_callback_X509_STORE_callback_data_index =
X509_STORE_CTX_get_ex_new_index(
0, NULL,
(CRYPTO_EX_new *) &globus_l_gsi_callback_openssl_new,
(CRYPTO_EX_dup *) &globus_l_gsi_callback_openssl_dup,
(CRYPTO_EX_free *) &globus_l_gsi_callback_openssl_free);
if(globus_i_gsi_callback_X509_STORE_callback_data_index < 0)
{
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_WITH_CALLBACK_DATA_INDEX,
(_CLS("Couldn't create external data index for SSL object")));
goto exit;
}
}
if(globus_i_gsi_callback_SSL_callback_data_index < 0)
{
globus_i_gsi_callback_SSL_callback_data_index = SSL_get_ex_new_index(
0, NULL,
(CRYPTO_EX_new *) &globus_l_gsi_callback_openssl_new,
(CRYPTO_EX_dup *) &globus_l_gsi_callback_openssl_dup,
(CRYPTO_EX_free *) &globus_l_gsi_callback_openssl_free);
if(globus_i_gsi_callback_SSL_callback_data_index < 0)
{
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_WITH_CALLBACK_DATA_INDEX,
(_CLS("Couldn't create external data index for SSL object")));
goto exit;
}
}
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
exit:
return result;
}
/**
* Module deactivation
*/
static
int
globus_l_gsi_callback_deactivate(void)
{
int result = (int) GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_l_gsi_callback_deactivate";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
EVP_cleanup();
globus_mutex_destroy(&globus_l_gsi_callback_oldgaa_mutex);
globus_mutex_destroy(&globus_l_gsi_callback_verify_mutex);
globus_module_deactivate(GLOBUS_GSI_OPENSSL_ERROR_MODULE);
globus_module_deactivate(GLOBUS_GSI_SYSCONFIG_MODULE);
globus_module_deactivate(GLOBUS_COMMON_MODULE);
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
if(globus_i_gsi_callback_debug_fstream != stderr)
{
fclose(globus_i_gsi_callback_debug_fstream);
}
return result;
}
#endif
/**
* @brief Get callback data index from X509_STORE
* @ingroup globus_gsi_callback_functions
* @details
* Retrieve or create the index for our callback data structure in the
* X509_STORE.
*
* @param index
* Will contain the index upon return
*
* @return
* GLOBUS_SUCCESS unless an error occurred, in which case,
* a globus error object ID is returned
*/
globus_result_t
globus_gsi_callback_get_X509_STORE_callback_data_index(
int * index)
{
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_gsi_callback_get_X509_STORE_callback_data_index";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
*index = globus_i_gsi_callback_X509_STORE_callback_data_index;
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
return result;
}
/**
* @brief Get callback data index from SSL structure
* @ingroup globus_gsi_callback_functions
* @details
* Retrieve or create the index for our callback data structure in the
* SSL structure.
*
* @param index
* Will contain the index upon return
*
* @return
* GLOBUS_SUCCESS unless an error occurred, in which case,
* a globus error object ID is returned
*/
globus_result_t
globus_gsi_callback_get_SSL_callback_data_index(
int * index)
{
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_gsi_callback_get_SSL_callback_data_index";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
*index = globus_i_gsi_callback_SSL_callback_data_index;
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
return result;
}
/**
* @brief Certificate verify wrapper
* @ingroup globus_gsi_callback_functions
* @details
* This function wraps the OpenSSL certificate verification callback for the
* purpose of a replacing the standard issuer check with one that deals with
* proxy certificates. Should be used with SSL_CTX_set_cert_verify_callback()
*
* @param context
* The X509_STORE_CTX for which to register the callback.
* @param arg
* Arguments to the callback. Currently ignored.
* @return
* 1 on success
* 0 on failure
*/
int
globus_gsi_callback_X509_verify_cert(
X509_STORE_CTX * context,
void * arg)
{
int result;
static char * _function_name_ =
"globus_gsi_callback_X509_verify_cert";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
#if OPENSSL_VERSION_NUMBER < 0x10100000L
/*
* OpenSSL-0.9.6 has a check_issued routine which
* we want to override so we can replace some of the checks.
*/
context->check_issued = globus_gsi_callback_check_issued;
#else
X509_STORE_set_check_issued(X509_STORE_CTX_get0_store(context), globus_gsi_callback_check_issued);
#endif
/*
* If this is not set, OpenSSL-0.9.8 assumes the proxy cert
* as an EEC and the next level cert in the chain as a CA cert
* and throws an invalid CA error. If we set this, the callback
* (globus_gsi_callback_handshake_callback) gets called with
* preverify_ok = 0 with an error "unhandled critical extension"
* and "path length exceeded".
* globus_i_gsi_callback_cred_verify() called by
* globus_gsi_callback_handshake_callback() checks for these
* errors and returns success. globus_i_gsi_callback_cred_verify()
* will check the critical extension later.
*/
#if defined(X509_V_FLAG_ALLOW_PROXY_CERTS)
X509_STORE_CTX_set_flags(
context, X509_V_FLAG_ALLOW_PROXY_CERTS);
#endif
globus_mutex_lock(&globus_l_gsi_callback_verify_mutex);
result = X509_verify_cert(context);
globus_mutex_unlock(&globus_l_gsi_callback_verify_mutex);
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
return result;
}
/**
* @brief Independent path validation callback.
* @ingroup globus_gsi_callback_functions
* @details
* This function provides a path validation callback for validation outside of
* a SSL session. It should be used in X509_STORE_set_verify_cb_func().
*
* @param preverify_ok
* Communicates the result of default validation steps performed by
* OpenSSL
* @param x509_context
* The validation state object
* @return
* 1 on success
* 0 on failure
*/
int globus_gsi_callback_create_proxy_callback(
int preverify_ok,
X509_STORE_CTX * x509_context)
{
int cb_index;
int verify_result;
globus_result_t result;
globus_gsi_callback_data_t callback_data;
static char * _function_name_ =
"globus_i_gsi_callback_create_proxy_callback";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
result = globus_gsi_callback_get_X509_STORE_callback_data_index(&cb_index);
if(result != GLOBUS_SUCCESS)
{
verify_result = 0;
goto exit;
}
callback_data = (globus_gsi_callback_data_t)
X509_STORE_CTX_get_ex_data(
x509_context,
cb_index);
if(!callback_data)
{
verify_result = 0;
goto exit;
}
result = globus_i_gsi_callback_cred_verify(preverify_ok,
callback_data,
x509_context);
if(result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_CALLBACK_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_VERIFY_CRED);
callback_data->error = result;
verify_result = 0;
goto set_callback_data_error;
}
result = GLOBUS_SUCCESS;
verify_result = 1;
set_callback_data_error:
callback_data->error = result;
exit:
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
return verify_result;
}
/**
* @brief SSL path validation callback.
* @ingroup globus_gsi_callback_functions
* @details
* This function provides a path validation callback for the validation part of
* establishing a SSL session. It handles proxy certificates, X509 Extensions
* and CRL checking. It should be used in SSL_CTX_set_verify().
*
* @param preverify_ok
* Communicates the result of default validation steps performed by
* OpenSSL
* @param x509_context
* The validation state object.
* @return
* 1 on success
* 0 on failure
*/
int globus_gsi_callback_handshake_callback(
int preverify_ok,
X509_STORE_CTX * x509_context)
{
int verify_result;
int callback_data_index;
globus_result_t result;
globus_gsi_callback_data_t callback_data;
SSL * ssl = NULL;
static char * _function_name_ =
"globus_gsi_callback_handshake_callback";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
/* the first index should contain the SSL structure */
ssl = (SSL *)
X509_STORE_CTX_get_ex_data(x509_context,
SSL_get_ex_data_X509_STORE_CTX_idx());
if(!ssl)
{
verify_result = 0;
goto exit;
}
result = globus_gsi_callback_get_SSL_callback_data_index(
&callback_data_index);
if(result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_CALLBACK_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_VERIFY_CRED);
verify_result = 0;
goto exit;
}
callback_data = *(globus_gsi_callback_data_t *)
SSL_get_ex_data(ssl, callback_data_index);
if(!callback_data)
{
verify_result = 0;
goto exit;
}
result = globus_i_gsi_callback_cred_verify(preverify_ok,
callback_data,
x509_context);
if(result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_CALLBACK_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_VERIFY_CRED);
verify_result = 0;
goto set_callback_data_error;
}
result = GLOBUS_SUCCESS;
verify_result = 1;
set_callback_data_error:
callback_data->error = result;
exit:
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
return verify_result;
}
/**
* @brief OpenSSL X509_check_issued() wrapper
* @ingroup globus_gsi_callback_functions
* @details
* This function wraps the OpenSSL X509_check_issued() call and catches the
* error caused by the fact that a proxy certificate issuer may not have to
* have the correct KeyUsage fields set.
*
* @param context
* The validation state object.
* @param cert
* The certificate to check
* @param issuer
* The issuer certificate to check
* @return
* 1 on success
* 0 on failure
*/
int globus_gsi_callback_check_issued(
X509_STORE_CTX * context,
X509 * cert,
X509 * issuer)
{
globus_result_t result;
int return_value;
int return_code = 1;
globus_gsi_cert_utils_cert_type_t cert_type;
static char * _function_name_ =
"globus_gsi_callback_check_issued";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
return_value = X509_check_issued(issuer, cert);
if(return_value != X509_V_OK)
{
return_code = 0;
switch(return_value)
{
case X509_V_ERR_KEYUSAGE_NO_CERTSIGN:
/* If this is a proxy certificate then the issuer
* does not need to have the key_usage set.
* So check if its a proxy, and ignore
* the error if so.
*/
result = globus_gsi_cert_utils_get_cert_type(cert, &cert_type);
if(result != GLOBUS_SUCCESS)
{
return_code = 0;
break;
}
if(GLOBUS_GSI_CERT_UTILS_IS_PROXY(cert_type))
{
/* its a proxy! */
return_code = 1;
}
break;
default:
break;
}
}
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
return return_code;
}
#ifndef GLOBUS_DONT_DOCUMENT_INTERNAL
globus_result_t
globus_i_gsi_callback_cred_verify(
int preverify_ok,
globus_gsi_callback_data_t callback_data,
X509_STORE_CTX * x509_context)
{
globus_result_t result = GLOBUS_SUCCESS;
globus_gsi_cert_utils_cert_type_t cert_type;
X509 * tmp_cert = NULL;
X509 * prev_cert = NULL;
static char * _function_name_ =
"globus_i_gsi_callback_cred_verify";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
/* Now check for some error conditions which
* can be disregarded.
*/
if (!preverify_ok)
{
switch (X509_STORE_CTX_get_error(x509_context))
{
case X509_V_ERR_PATH_LENGTH_EXCEEDED:
/*
* OpenSSL-0.9.8 has this error (0.9.7d did not have this)
* So we will ignore the errors now and do our checks later
* on (as explained below).
*/
case X509_V_ERR_PROXY_PATH_LENGTH_EXCEEDED:
GLOBUS_I_GSI_CALLBACK_DEBUG_PRINT(
2, "X509_V_ERR_PATH_LENGTH_EXCEEDED\n");
/*
* Since OpenSSL does not know about proxies,
* it will count them against the path length
* So we will ignore the errors and do our
* own checks later on, when we check the last
* certificate in the chain we will check the chain.
*/
result = GLOBUS_SUCCESS;
break;
/*
* In the later version (097g+) OpenSSL does know about
* proxies, but not non-rfc compliant proxies, it will
* count them as unhandled critical extensions.
* So we will ignore the errors and do our
* own checks later on, when we check the last
* certificate in the chain we will check the chain.
* As OpenSSL does not recognize legacy proxies
*/
case X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION:
GLOBUS_I_GSI_CALLBACK_DEBUG_PRINT(
2, "X509_V_ERR_UNHANDLED_CRITICAL_EXTENSION\n");
/*
* Setting this for 098 or later versions avoid the invalid
* CA error but would result in proxy path len exceeded which
* is handled above.
*/
X509_set_proxy_flag(X509_STORE_CTX_get_current_cert(x509_context));
result = GLOBUS_SUCCESS;
break;
case X509_V_ERR_INVALID_PURPOSE:
/*
* Invalid purpose if we init sec context with a server that does
* not have the SSL Server Netscape extension (occurs with 0.9.7
* servers)
*/
result = GLOBUS_SUCCESS;
break;
case X509_V_ERR_INVALID_CA:
/*
* If the previous cert in the chain is a proxy cert then
* we get this error just because openssl does not recognize
* our proxy and treats it as an EEC. And thus, it would
* treat higher level proxies (if any) or EEC as CA cert
* (which are not actually CA certs) and would throw this
* error. As long as the previous cert in the chain is a
* proxy cert, we ignore this error.
*/
prev_cert = sk_X509_value(
X509_STORE_CTX_get0_chain(x509_context), X509_STORE_CTX_get_error_depth(x509_context)-1);
result = globus_gsi_cert_utils_get_cert_type(prev_cert, &cert_type);
if(result != GLOBUS_SUCCESS)
{
result = (globus_result_t)GLOBUS_FAILURE;
}
else
{
if(GLOBUS_GSI_CERT_UTILS_IS_PROXY(cert_type))
{
result = GLOBUS_SUCCESS;
}
else
{
result = (globus_result_t)GLOBUS_FAILURE;
}
}
break;
default:
result = (globus_result_t)GLOBUS_FAILURE;
break;
}
if (result != GLOBUS_SUCCESS)
{
char * subject_name =
X509_NAME_oneline(X509_get_subject_name(X509_STORE_CTX_get_current_cert(x509_context)), 0, 0);
unsigned long issuer_hash =
X509_issuer_name_hash(X509_STORE_CTX_get_current_cert(x509_context));
char * cert_dir;
if (X509_STORE_CTX_get_error(x509_context) == X509_V_ERR_CERT_NOT_YET_VALID)
{
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_CERT_NOT_YET_VALID,
(_CLS("Cert with subject: %s is not yet valid"
"- check clock skew between hosts."), subject_name));
}
else if (X509_STORE_CTX_get_error(x509_context) ==
X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY)
{
cert_dir = NULL;
GLOBUS_GSI_SYSCONFIG_GET_CERT_DIR(
&cert_dir);
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_CANT_GET_LOCAL_CA_CERT,
(_CLS("Cannot find trusted CA certificate "
"with hash %lx%s%s"),
issuer_hash, cert_dir ? " in " : "",
cert_dir ? cert_dir : ""));
if (cert_dir)
{
free(cert_dir);
}
}
else if (X509_STORE_CTX_get_error(x509_context) == X509_V_ERR_SELF_SIGNED_CERT_IN_CHAIN)
{
cert_dir = NULL;
GLOBUS_GSI_SYSCONFIG_GET_CERT_DIR(
&cert_dir);
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_CANT_GET_LOCAL_CA_CERT,
(_CLS("Untrusted self-signed certificate in chain "
"with hash %lx"),
issuer_hash));
if (cert_dir)
{
free(cert_dir);
}
}
else if (X509_STORE_CTX_get_error(x509_context) == X509_V_ERR_CERT_HAS_EXPIRED)
{
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_CERT_HAS_EXPIRED,
(_CLS("Credential with subject: %s has expired."), subject_name));
}
else
{
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_VERIFY_CRED,
(X509_verify_cert_error_string(X509_STORE_CTX_get_error(x509_context))));
}
OPENSSL_free(subject_name);
goto exit;
}
goto exit;
}
result = globus_i_gsi_callback_check_proxy(x509_context,
callback_data);
if(result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_CALLBACK_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_VERIFY_CRED);
goto exit;
}
if(callback_data->cert_type == GLOBUS_GSI_CERT_UTILS_TYPE_EEC ||
callback_data->cert_type == GLOBUS_GSI_CERT_UTILS_TYPE_CA)
{
/* only want to check that the cert isn't revoked if its not
* a proxy, since proxies don't ever get revoked
*/
#ifdef X509_V_ERR_CERT_REVOKED
result = globus_i_gsi_callback_check_revoked(x509_context,
callback_data);
if(result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_CALLBACK_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_VERIFY_CRED);
goto exit;
}
#endif
/* only want to check singing_policy file if its not a proxy */
result = globus_i_gsi_callback_check_signing_policy(
x509_context,
callback_data);
if(result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_CALLBACK_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_VERIFY_CRED);
goto exit;
}
}
tmp_cert = X509_dup(X509_STORE_CTX_get_current_cert(x509_context));
/* add the current cert to the callback data's cert chain */
sk_X509_insert(callback_data->cert_chain,
tmp_cert, 0);
callback_data->cert_depth++;
result =
globus_i_gsi_callback_check_critical_extensions(x509_context,
callback_data);
if(result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_CALLBACK_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_VERIFY_CRED);
goto exit;
}
result = globus_i_gsi_callback_check_path_length(x509_context,
callback_data);
if(result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_CALLBACK_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_VERIFY_CRED);
goto exit;
}
exit:
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
return result;
}
globus_result_t
globus_i_gsi_callback_check_proxy(
X509_STORE_CTX * x509_context,
globus_gsi_callback_data_t callback_data)
{
globus_gsi_cert_utils_cert_type_t cert_type;
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_i_gsi_callback_check_proxy";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
/* All of the OpenSSL tests have passed and we now get to
* look at the certificate to verify the proxy rules,
* and ca-signing-policy rules. We will also do a CRL check
*/
result = globus_gsi_cert_utils_get_cert_type(X509_STORE_CTX_get_current_cert(x509_context),
&cert_type);
if(result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_CALLBACK_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_VERIFY_CRED);
goto exit;
}
if(GLOBUS_GSI_CERT_UTILS_IS_PROXY(cert_type))
{
/* it is a proxy */
/* a legacy globus proxy may only be followed by another legacy globus
* proxy or a limited legacy globus_proxy.
* a limited legacy globus proxy may only be followed by another
* limited legacy globus proxy
* a draft compliant proxy may only be followed by another draft
* compliant proxy
* a draft compliant limited proxy may only be followed by another draft
* compliant limited proxy or a draft compliant independent proxy
*/
if((GLOBUS_GSI_CERT_UTILS_IS_GSI_2_PROXY(callback_data->cert_type) &&
!GLOBUS_GSI_CERT_UTILS_IS_GSI_2_PROXY(cert_type)) ||
(GLOBUS_GSI_CERT_UTILS_IS_GSI_3_PROXY(callback_data->cert_type) &&
!GLOBUS_GSI_CERT_UTILS_IS_GSI_3_PROXY(cert_type)) ||
(GLOBUS_GSI_CERT_UTILS_IS_RFC_PROXY(callback_data->cert_type) &&
!GLOBUS_GSI_CERT_UTILS_IS_RFC_PROXY(cert_type)))
{
GLOBUS_GSI_CALLBACK_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_MIXING_DIFFERENT_PROXY_TYPES);
goto exit;
}
if(GLOBUS_GSI_CERT_UTILS_IS_LIMITED_PROXY(callback_data->cert_type) &&
!(GLOBUS_GSI_CERT_UTILS_IS_LIMITED_PROXY(cert_type) ||
GLOBUS_GSI_CERT_UTILS_IS_INDEPENDENT_PROXY(cert_type)))
{
GLOBUS_GSI_CALLBACK_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_LIMITED_PROXY,
(_CLS("Can't sign a non-limited, non-independent proxy "
"with a limited proxy")));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_CERT_SIGNATURE_FAILURE);
goto exit;
}
GLOBUS_I_GSI_CALLBACK_DEBUG_PRINT(2, "Passed proxy test\n");
callback_data->proxy_depth++;
if(callback_data->max_proxy_depth != -1 &&
callback_data->max_proxy_depth < callback_data->proxy_depth)
{
GLOBUS_GSI_CALLBACK_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_PROXY_PATH_LENGTH_EXCEEDED);
goto exit;
}
}
callback_data->cert_type = cert_type;
exit:
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
return result;
}
/* this function can go away with OpenSSL 0.9.7 and
* its support for CRL checking - SLANG
*/
globus_result_t
globus_i_gsi_callback_check_revoked(
X509_STORE_CTX * x509_context,
globus_gsi_callback_data_t callback_data)
{
X509_REVOKED * revoked = NULL;
X509_CRL * crl = NULL;
X509_OBJECT * x509_object = NULL;
STACK_OF(X509_REVOKED) * revoked_stack = NULL;
int i, n;
long err = 0;
globus_result_t result = GLOBUS_SUCCESS;
globus_bool_t crl_was_expired = GLOBUS_FALSE;
globus_bool_t recheck_crl_done = GLOBUS_FALSE;
static char * _function_name_ =
"globus_i_gsi_callback_check_revoked";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
do
{
x509_object = X509_OBJECT_new();
/*
* SSLeay 0.9.0 handles CRLs but does not check them.
* We will check the crl for this cert, if there
* is a CRL in the store.
* If we find the crl is not valid, we will fail,
* as once the sysadmin indicates that CRLs are to
* be checked, he best keep it upto date.
*
* When future versions of SSLeay support this better,
* we can remove these tests.
*
* we come through this code for each certificate,
* starting with the CA's We will check for a CRL
* each time, but only check the signature if the
* subject name matches, and check for revoked
* if the issuer name matches.
* this allows the CA to revoke its own cert as well.
*/
if (X509_STORE_get_by_subject(
x509_context,
X509_LU_CRL,
X509_get_issuer_name(X509_STORE_CTX_get_current_cert(x509_context)),
x509_object))
{
X509 * issuer;
const ASN1_TIME * last_update;
const ASN1_TIME * next_update;
time_t last_time;
int has_next_time;
time_t next_time;
EVP_PKEY * issuer_key;
X509_STORE_CTX_get_issuer_fn get_issuer;
crl = X509_OBJECT_get0_X509_CRL(x509_object);
next_update = X509_CRL_get0_nextUpdate(crl);
last_update = X509_CRL_get0_lastUpdate(crl);
has_next_time = (next_update != NULL);
globus_gsi_cert_utils_make_time(last_update, &last_time);
if (has_next_time)
{
globus_gsi_cert_utils_make_time(next_update, &next_time);
}
GLOBUS_I_GSI_CALLBACK_DEBUG_PRINT(2, "CRL last Update: ");
GLOBUS_I_GSI_CALLBACK_DEBUG_FPRINTF(
2, (globus_i_gsi_callback_debug_fstream,
"%s", asctime(gmtime(&last_time))));
GLOBUS_I_GSI_CALLBACK_DEBUG_PRINT(2, "\nCRL next Update: ");
GLOBUS_I_GSI_CALLBACK_DEBUG_FPRINTF(
2, (globus_i_gsi_callback_debug_fstream,
"%s", has_next_time ? asctime(gmtime(&next_time)) : "<not set>" ));
GLOBUS_I_GSI_CALLBACK_DEBUG_PRINT(2, "\n");
get_issuer = X509_STORE_CTX_get_get_issuer(x509_context);
/* verify the signature on this CRL */
if(get_issuer(&issuer,
x509_context,
X509_STORE_CTX_get_current_cert(x509_context)) <= 0)
{
char * subject_string;
subject_string = X509_NAME_oneline(
X509_get_issuer_name(X509_STORE_CTX_get_current_cert(x509_context)),
NULL, 0);
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_INVALID_CRL,
(_CLS("Couldn't get the issuer certificate of the CRL with "
"subject: %s"), subject_string));
OPENSSL_free(subject_string);
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_CRL_SIGNATURE_FAILURE);
goto free_X509_object;
}
issuer_key = X509_get_pubkey(issuer);
if(issuer_key == NULL)
{
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_INVALID_CRL,
(_CLS("Couldn't verify that the available CRL is valid")));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_CRL_SIGNATURE_FAILURE);
X509_free(issuer);
goto free_X509_object;
}
X509_free(issuer);
if (X509_CRL_verify(crl, issuer_key) <= 0)
{
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_INVALID_CRL,
(_CLS("Couldn't verify that the available CRL is valid")));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_CRL_SIGNATURE_FAILURE);
EVP_PKEY_free(issuer_key);
goto free_X509_object;
}
EVP_PKEY_free(issuer_key);
/* Check date */
i = X509_cmp_current_time(last_update);
if (i == 0)
{
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_INVALID_CRL,
(_CLS("In the available CRL, the thisUpdate field is not valid")));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_ERROR_IN_CRL_LAST_UPDATE_FIELD);
goto free_X509_object;
}
if (i > 0)
{
GLOBUS_GSI_CALLBACK_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_INVALID_CRL,
(_CLS("The available CRL is not yet valid")));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_CRL_NOT_YET_VALID);
goto free_X509_object;
}
i = (has_next_time) ? X509_cmp_current_time(next_update) : 1;
if (i == 0)
{
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_INVALID_CRL,
(_CLS("In the available CRL, the nextUpdate field is not valid")));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_ERROR_IN_CRL_NEXT_UPDATE_FIELD);
goto free_X509_object;
}
/* If we get an expired CRL, we'll delete it from the store
* associated with this ssl context and then try this operation one
* more time to see if a new one is in place.
*/
if (i < 0 && !crl_was_expired)
{
int idx;
# if OPENSSL_VERSION_NUMBER < 0x10100000L
{
CRYPTO_w_lock(CRYPTO_LOCK_X509_STORE);
idx=sk_X509_OBJECT_find(x509_context->ctx->objs, x509_object);
if (idx >= 0) X509_OBJECT_free(sk_X509_OBJECT_delete(x509_context->ctx->objs, idx));
X509_OBJECT_free(x509_object);
x509_object = NULL;
CRYPTO_w_unlock(CRYPTO_LOCK_X509_STORE);
}
# else
{
STACK_OF(X509_OBJECT) *objects;
X509_STORE_lock(X509_STORE_CTX_get0_store(x509_context));
objects = X509_STORE_get0_objects(X509_STORE_CTX_get0_store(x509_context));
idx=sk_X509_OBJECT_find(objects, x509_object);
if (idx >= 0) X509_OBJECT_free(sk_X509_OBJECT_delete(objects, idx));
X509_OBJECT_free(x509_object);
x509_object = NULL;
X509_STORE_unlock(X509_STORE_CTX_get0_store(x509_context));
}
# endif
/* OpenSSL 1.0.0 will try to reload the CRL if one with next
* index extension .r1 is present, but not reload if an old CRL
* is replaced. We explicitly try to reload it here to get
* around this; otherwise, there's no way to reliably replace
* a CRL so that new and old processes can find it.
*/
if (OPENSSL_VERSION_NUMBER >= 0x10000000L)
{
char * cert_dir;
unsigned long hash;
char * crl_path;
X509_CRL * new_crl = NULL;
FILE * crl_fp;
result = GLOBUS_GSI_SYSCONFIG_GET_CERT_DIR(&cert_dir);
if (result != GLOBUS_SUCCESS)
{
return result;
}
hash = X509_issuer_name_hash(X509_STORE_CTX_get_current_cert(x509_context));
crl_path = globus_common_create_string(
"%s/%lx.r0", cert_dir, hash);
free(cert_dir);
cert_dir = NULL;
if (crl_path == NULL)
{
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_INVALID_CRL,
(_CLS("Unable to find valid CRL")));
goto free_X509_object;
}
errno = 0;
crl_fp = fopen(crl_path, "r");
free(crl_path);
crl_path = NULL;
if (crl_fp == NULL && errno == ENOENT)
{
/* CRL was removed */
result = GLOBUS_SUCCESS;
break;
}
else if (crl_fp == NULL)
{
/* Unable to open CRL */
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_INVALID_CRL,
(_CLS("Unable to find valid CRL")));
goto free_X509_object;
}
new_crl = PEM_read_X509_CRL(crl_fp, &new_crl, NULL, NULL);
fclose(crl_fp);
#if OPENSSL_VERSION_NUMBER < 0x10100000L
X509_STORE_add_crl(x509_context->ctx, new_crl);
#else
X509_STORE_add_crl(X509_STORE_CTX_get0_store(x509_context), new_crl);
#endif
X509_CRL_free(new_crl);
}
crl_was_expired = GLOBUS_TRUE;
continue;
}
else if (i < 0)
{
GLOBUS_GSI_CALLBACK_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_INVALID_CRL,
(_CLS("The available CRL has expired")));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_CRL_HAS_EXPIRED);
goto free_X509_object;
}
/* If we get this far, then we're not going to recheck an expired
* CRL and just fall out of the do/while
*/
recheck_crl_done = GLOBUS_TRUE;
X509_OBJECT_free(x509_object);
x509_object = NULL;
/* check if this cert is revoked */
revoked_stack = X509_CRL_get_REVOKED(crl);
n = sk_X509_REVOKED_num(revoked_stack);
for (i = 0; i < n; i++)
{
const ASN1_INTEGER *revoked_serial_number = NULL;
revoked = sk_X509_REVOKED_value(revoked_stack, i);
revoked_serial_number = X509_REVOKED_get0_serialNumber(revoked);
if(!ASN1_INTEGER_cmp(
revoked_serial_number,
X509_get_serialNumber(X509_STORE_CTX_get_current_cert(x509_context))))
{
char * subject_string;
long serial;
serial = ASN1_INTEGER_get(revoked_serial_number);
subject_string = X509_NAME_oneline(X509_get_subject_name(
X509_STORE_CTX_get_current_cert(x509_context)), NULL, 0);
GLOBUS_GSI_CALLBACK_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_REVOKED_CERT,
(_CLS("Serial number = %ld (0x%lX) "
"Subject=%s"),
serial, serial, subject_string));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_CERT_REVOKED);
GLOBUS_I_GSI_CALLBACK_DEBUG_FPRINTF(
2, (globus_i_gsi_callback_debug_fstream,
"revoked %lX\n",
ASN1_INTEGER_get(revoked_serial_number)));
OPENSSL_free(subject_string);
}
}
}
else
{
/* Error reading CRL or CRL not available */
err = ERR_get_error();
if (err != X509_V_OK)
{
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_INVALID_CRL,
(_CLS("Couldn't verify that the available CRL is valid")));
}
break;
}
}
while (crl_was_expired && !recheck_crl_done);
free_X509_object:
if (x509_object != NULL)
{
X509_OBJECT_free(x509_object);
}
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
return result;
}
globus_result_t
globus_i_gsi_callback_check_signing_policy(
X509_STORE_CTX * x509_context,
globus_gsi_callback_data_t callback_data)
{
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_i_gsi_callback_check_signing_policy";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
/* Do not need to check self signed certs against ca_policy_file */
if (X509_NAME_cmp(X509_get_subject_name(X509_STORE_CTX_get_current_cert(x509_context)),
X509_get_issuer_name(X509_STORE_CTX_get_current_cert(x509_context))) ||
callback_data->check_self_signed_policy)
{
result = globus_i_gsi_callback_check_gaa_auth(
x509_context, callback_data);
if(result != GLOBUS_SUCCESS)
{
if(callback_data->allow_missing_signing_policy)
{
result = GLOBUS_SUCCESS;
}
else
{
GLOBUS_GSI_CALLBACK_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_WITH_SIGNING_POLICY);
goto exit;
}
}
}
exit:
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
return result;
}
globus_result_t
globus_i_gsi_callback_check_gaa_auth(
X509_STORE_CTX * x509_context,
globus_gsi_callback_data_t callback_data)
{
char * error_string = NULL;
char * issuer_name = NULL;
char * subject_name = NULL;
globus_result_t result = GLOBUS_SUCCESS;
char * ca_policy_file_path = NULL;
oldgaa_rights_ptr rights = NULL;
oldgaa_policy_ptr policy_handle = NULL;
oldgaa_answer_ptr detailed_answer = NULL;
oldgaa_sec_context_ptr oldgaa_sc = NULL;
oldgaa_options_ptr options = NULL;
oldgaa_error_code policy_result;
oldgaa_data_ptr policy_db = OLDGAA_NO_DATA;
uint32 minor_status;
static char * _function_name_ =
"globus_i_gsi_callback_check_gaa_auth";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
subject_name = X509_NAME_oneline(
X509_get_subject_name(X509_STORE_CTX_get_current_cert(x509_context)),
NULL,
0);
issuer_name = X509_NAME_oneline(
X509_get_issuer_name(X509_STORE_CTX_get_current_cert(x509_context)),
NULL,
0);
result =
GLOBUS_GSI_SYSCONFIG_GET_SIGNING_POLICY_FILENAME(
X509_get_issuer_name(X509_STORE_CTX_get_current_cert(x509_context)),
callback_data->cert_dir,
&ca_policy_file_path);
if(result != GLOBUS_SUCCESS)
{
ca_policy_file_path = NULL;
GLOBUS_GSI_CALLBACK_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_WITH_SIGNING_POLICY);
goto exit;
}
if(ca_policy_file_path == NULL)
{
/* signing policy file doesn't exist or can't be read */
GLOBUS_GSI_CALLBACK_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_WITH_SIGNING_POLICY,
(_CLS("The signing policy file doesn't exist or can't be read")));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_APPLICATION_VERIFICATION);
goto exit;
}
GLOBUS_I_GSI_CALLBACK_DEBUG_FPRINTF(
2, (globus_i_gsi_callback_debug_fstream,
"ca_policy_file_path is %s\n", ca_policy_file_path));
globus_mutex_lock(&globus_l_gsi_callback_oldgaa_mutex);
if(oldgaa_globus_initialize(&oldgaa_sc,
&rights,
&options,
&policy_db,
issuer_name,
subject_name,
ca_policy_file_path)
!= OLDGAA_SUCCESS)
{
GLOBUS_GSI_CALLBACK_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_OLD_GAA,
(_CLS("Couldn't initialize OLD GAA: "
"Minor status=%d"), policy_db->error_code));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_APPLICATION_VERIFICATION);
globus_mutex_unlock(&globus_l_gsi_callback_oldgaa_mutex);
goto exit;
}
if(oldgaa_get_object_policy_info(
&minor_status,
OLDGAA_NO_DATA,
policy_db,
oldgaa_globus_policy_retrieve,
&policy_handle) != OLDGAA_SUCCESS)
{
GLOBUS_GSI_CALLBACK_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_OLD_GAA,
(_CLS("Could not get policy info: "
"Minor status=%d"), minor_status));
oldgaa_globus_cleanup(&oldgaa_sc,
&rights,
options,
&detailed_answer,
policy_db,
NULL);
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_APPLICATION_VERIFICATION);
globus_mutex_unlock(&globus_l_gsi_callback_oldgaa_mutex);
goto exit;
}
policy_result = oldgaa_check_authorization(
&minor_status,
oldgaa_sc,
policy_handle,
rights,
options,
&detailed_answer);
if (!detailed_answer)
{
GLOBUS_GSI_CALLBACK_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_OLD_GAA,
(_CLS("No policy definitions for CA \"%s\" "
"in signing policy file %s"),
issuer_name == NULL ? "NULL" : issuer_name,
ca_policy_file_path == NULL ? "NULL" : ca_policy_file_path));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_INVALID_PURPOSE);
oldgaa_globus_cleanup(&oldgaa_sc,
&rights,
options,
&detailed_answer,
policy_db,
NULL);
globus_mutex_unlock(&globus_l_gsi_callback_oldgaa_mutex);
goto exit;
}
if(GLOBUS_I_GSI_CALLBACK_DEBUG(2))
{
fprintf(globus_i_gsi_callback_debug_fstream,
"oldgaa result: %d(0 yes, 1 no, -1 maybe)\n", policy_result);
if(detailed_answer)
{
fprintf(globus_i_gsi_callback_debug_fstream,
"\nprint detailed answer:\n\n");
#ifndef WIN32
if(detailed_answer->rights)
{
oldgaa_globus_print_rights(detailed_answer->rights);
}
#endif
}
}
if (policy_handle)
{
oldgaa_release_principals(&minor_status, &policy_handle);
}
oldgaa_globus_cleanup(&oldgaa_sc,
&rights,
options,
&detailed_answer,
policy_db,
NULL);
globus_mutex_unlock(&globus_l_gsi_callback_oldgaa_mutex);
if (policy_result != 0)
{
GLOBUS_GSI_CALLBACK_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_OLD_GAA,
(_CLS("The subject of the certificate \"%s\" "
"does not match the signing policies defined in %s"),
subject_name == NULL ? "NULL" : subject_name,
ca_policy_file_path == NULL ? "NULL" : ca_policy_file_path));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_INVALID_PURPOSE);
}
exit:
if(ca_policy_file_path)
{
globus_libc_free(ca_policy_file_path);
}
if(error_string)
{
globus_libc_free(error_string);
}
if(issuer_name)
{
OPENSSL_free(issuer_name);
}
if(subject_name)
{
OPENSSL_free(subject_name);
}
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
return result;
}
globus_result_t
globus_i_gsi_callback_check_critical_extensions(
X509_STORE_CTX * x509_context,
globus_gsi_callback_data_t callback_data)
{
ASN1_OBJECT * extension_object = NULL;
X509_EXTENSION * extension = NULL;
PROXY_CERT_INFO_EXTENSION * proxycertinfo = NULL;
PROXY_POLICY * policy = NULL;
int nid;
int pci_NID;
int pci_old_NID;
int critical_position = -1;
long path_length;
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_i_gsi_callback_check_critical_extensions";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
pci_NID = NID_proxyCertInfo;
pci_old_NID = OBJ_txt2nid("1.3.6.1.4.1.3536.1.222");
while((critical_position =
X509_get_ext_by_critical(X509_STORE_CTX_get_current_cert(x509_context),
1, critical_position)) >= 0)
{
extension = X509_get_ext(X509_STORE_CTX_get_current_cert(x509_context), critical_position);
if(!extension)
{
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_VERIFY_CRED,
(_CLS("Couldn't get critical extension of "
"certificate being verified")));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_CERT_REJECTED);
goto exit;
}
extension_object = X509_EXTENSION_get_object(extension);
if(!extension_object)
{
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_VERIFY_CRED,
(_CLS("Couldn't get object form of X509 extension for "
"the certificate being verified.")));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_CERT_REJECTED);
goto exit;
}
nid = OBJ_obj2nid(extension_object);
if(nid == pci_NID || nid == pci_old_NID)
{
/* check for path length constraint */
if((proxycertinfo = X509V3_EXT_d2i(extension)) == NULL)
{
GLOBUS_GSI_CALLBACK_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_VERIFY_CRED,
(_CLS("Can't convert DER encoded PROXYCERTINFO "
"extension to internal form")));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_CERT_REJECTED);
goto exit;
}
if (proxycertinfo->pcPathLengthConstraint != NULL)
{
path_length = ASN1_INTEGER_get(proxycertinfo->pcPathLengthConstraint);
if(path_length > -1)
{
if(callback_data->max_proxy_depth == -1 ||
callback_data->max_proxy_depth >
callback_data->proxy_depth + path_length)
{
callback_data->max_proxy_depth =
callback_data->proxy_depth + path_length;
}
}
}
policy = proxycertinfo->proxyPolicy;
}
if((nid != NID_basic_constraints &&
nid != NID_key_usage &&
nid != NID_ext_key_usage &&
nid != NID_netscape_cert_type &&
nid != NID_subject_key_identifier &&
nid != NID_authority_key_identifier &&
nid != pci_NID &&
nid != pci_old_NID) || (policy && policy->policy))
{
if(callback_data->extension_cb)
{
if(!callback_data->extension_cb(callback_data, extension))
{
GLOBUS_GSI_CALLBACK_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_VERIFY_CRED,
(_CLS("Certificate has unknown critical extension "
"with numeric ID: %d, "
"rejected during validation"), nid));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_CERT_REJECTED);
goto exit;
}
}
else
{
GLOBUS_GSI_CALLBACK_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_VERIFY_CRED,
(_CLS("Certificate has unknown critical extension, "
"with numeric ID: %d, "
"rejected during validation"), nid));
X509_STORE_CTX_set_error(x509_context, X509_V_ERR_CERT_REJECTED);
goto exit;
}
}
}
exit:
if(proxycertinfo != NULL)
{
PROXY_CERT_INFO_EXTENSION_free(proxycertinfo);
}
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
return result;
}
globus_result_t
globus_i_gsi_callback_check_path_length(
X509_STORE_CTX * x509_context,
globus_gsi_callback_data_t callback_data)
{
X509 * cert = NULL;
globus_result_t result = GLOBUS_SUCCESS;
int i;
static char * _function_name_ =
"globus_i_gsi_callback_check_path_length";
GLOBUS_I_GSI_CALLBACK_DEBUG_ENTER;
/*
* We ignored any path length restriction errors because
* OpenSSL was counting proxies against the limit.
* If we are on the last cert in the chain, we
* know how many are proxies, so we can do the
* path length check now.
* See x509_vfy.c check_chain_purpose
* all we do is substract off the proxy_depth
*/
if(X509_STORE_CTX_get_current_cert(x509_context) == X509_STORE_CTX_get0_cert(x509_context))
{
for (i = 0; i < sk_X509_num(X509_STORE_CTX_get0_chain(x509_context)); i++)
{
cert = sk_X509_value(X509_STORE_CTX_get0_chain(x509_context), i);
GLOBUS_I_GSI_CALLBACK_DEBUG_FPRINTF(
3, (globus_i_gsi_callback_debug_fstream,
"pathlen=:i=%d x=%p pl=%ld\n",
i, cert, X509_get_pathlen(cert)));
if (((i - callback_data->proxy_depth) > 1) &&
(X509_get_pathlen(cert) != -1) &&
((i - callback_data->proxy_depth) > (X509_get_pathlen(cert) + 1)) &&
(X509_get_extension_flags(cert) & EXFLAG_BCONS))
{
X509_STORE_CTX_set_current_cert(x509_context, cert); /* point at failing cert */
GLOBUS_GSI_CALLBACK_ERROR_RESULT(
result,
GLOBUS_GSI_CALLBACK_ERROR_VERIFY_CRED,
(_CLS("Path length of proxy cert has exceeded the limit")));
}
}
}
GLOBUS_I_GSI_CALLBACK_DEBUG_EXIT;
return result;
}
#endif /* GLOBUS_DONT_DOCUMENT_INTERNAL */
|