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
|
/*
* 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_proxy_handle.c
* @brief @brief GSI Proxy Handle
* @author Sam Meder, Sam Lang
*/
#endif /* GLOBUS_DONT_DOCUMENT_INTERNAL */
#define GLOBUS_GSI_PROXY_HANDLE_MALLOC_ERROR(_LENGTH_) \
globus_error_put(globus_error_wrap_errno_error( \
GLOBUS_GSI_PROXY_MODULE, \
errno, \
GLOBUS_GSI_PROXY_ERROR_ERRNO, \
__FILE__, \
_function_name_, \
__LINE__, \
"Could not allocate enough memory: %d bytes", \
_LENGTH_))
#include "globus_i_gsi_proxy.h"
#if OPENSSL_VERSION_NUMBER < 0x0090801fL
#define GT_D2I_DATA_CAST
#else
#define GT_D2I_DATA_CAST (const unsigned char **)
#endif
/**
* @brief Initialize Handle
* @ingroup globus_gsi_proxy_handle
* @details
* Initialize a GSI Proxy handle.
*
* Initialize a proxy handle which can be used in subsequent
* operations. The handle may only be used in one sequence of
* operations at a time.
*
* @param handle
* A pointer to the handle to be initialized. If the
* handle is originally NULL, space is allocated for it.
* Otherwise, the current values of the handle are overwritten.
*
* @param handle_attrs
* Initial attributes to be used to create this handle.
* @return
* GLOBUS_SUCCESS unless an error occurred, in which case,
* a globus error object ID is returned
*
* @see globus_gsi_proxy_handle_destroy()
*/
globus_result_t
globus_gsi_proxy_handle_init(
globus_gsi_proxy_handle_t * handle,
globus_gsi_proxy_handle_attrs_t handle_attrs)
{
globus_gsi_proxy_handle_t handle_i;
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_gsi_proxy_handle_init";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
/* setup the handle */
if(handle == NULL)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("NULL handle passed to function: %s"), _function_name_));
goto exit;
}
*handle = calloc(1, sizeof(globus_i_gsi_proxy_handle_t));
if(*handle == NULL)
{
result = GLOBUS_GSI_PROXY_HANDLE_MALLOC_ERROR(
sizeof(globus_i_gsi_proxy_handle_t));
goto exit;
}
handle_i = *handle;
/* initialize the X509 request structure */
if((handle_i->req = X509_REQ_new()) == NULL)
{
GLOBUS_GSI_PROXY_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_X509_REQ,
(_PCSL("Couldn't create new X509_REQ structure for handle")));
goto free_handle;
}
/* create a new PCI extension */
if((handle_i->proxy_cert_info = PROXYCERTINFO_new()) == NULL)
{
GLOBUS_GSI_PROXY_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PROXYCERTINFO,
(_PCSL("Error initializing new PROXYCERTINFO struct")));
goto free_handle;
}
/* initialize the handle attributes */
if(handle_attrs == NULL)
{
result = globus_gsi_proxy_handle_attrs_init(&handle_i->attrs);
if(result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_PROXY_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE_ATTRS);
goto free_handle;
}
}
else
{
result = globus_gsi_proxy_handle_attrs_copy(handle_attrs,
&handle_i->attrs);
if(result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_PROXY_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE_ATTRS);
goto free_handle;
}
}
handle_i->type = GLOBUS_GSI_CERT_UTILS_TYPE_GSI_3_IMPERSONATION_PROXY;
handle_i->extensions = NULL;
goto exit;
free_handle:
if(handle_i)
{
globus_gsi_proxy_handle_destroy(handle_i);
*handle = NULL;
}
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_init() */
/**
* Destroy a GSI Proxy handle.
*
* @param handle
* The handle to be destroyed.
* @return
* GLOBUS_SUCCESS unless an error occurred, in which case,
* a globus error object ID is returned
*
* @see globus_gsi_proxy_handle_init()
*/
globus_result_t
globus_gsi_proxy_handle_destroy(
globus_gsi_proxy_handle_t handle)
{
static char * _function_name_ =
"globus_gsi_proxy_handle_destroy";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(handle != NULL)
{
/* free each of the pointers in the handle struct */
X509_REQ_free(handle->req);
EVP_PKEY_free(handle->proxy_key);
globus_gsi_proxy_handle_attrs_destroy(handle->attrs);
PROXYCERTINFO_free(handle->proxy_cert_info);
if (handle->extensions != NULL)
{
sk_X509_EXTENSION_free(handle->extensions);
}
/* free the handle struct memory */
globus_libc_free(handle);
handle = NULL;
}
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return GLOBUS_SUCCESS;
}
/* globus_gsi_proxy_handle_destroy */
/**
* @brief Get Request
* @ingroup globus_gsi_proxy_handle
* @details
* Get the certificate request from a GSI Proxy handle.
*
* @param handle
* The handle from which to get the certificate request
* @param req
* Parameter used to return the request. It is the users responsibility
* to free the returned request.
* @return
* GLOBUS_SUCCESS unless an error occurred, in which case,
* a globus error object ID is returned
*
* @see globus_gsi_proxy_handle_set_req()
*/
globus_result_t
globus_gsi_proxy_handle_get_req(
globus_gsi_proxy_handle_t handle,
X509_REQ ** req)
{
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_gsi_proxy_handle_get_req";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(!handle)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("Invalid handle (NULL) passed to function")));
goto exit;
}
if(!req)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_X509_REQ,
(_PCSL("Invalid req pointer passed to function")));
goto exit;
}
*req = X509_REQ_dup(handle->req);
if(!(*req))
{
GLOBUS_GSI_PROXY_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_X509_REQ,
(_PCSL("X509_REQ could not be copied")));
goto exit;
}
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_get_req */
/**
* @brief Set Request
* Set the certificate request in a GSI Proxy handle.
*
* @param handle
* The handle for which to set the certificate request
* @param req
* Request to be copied to handle.
* @return
* GLOBUS_SUCCESS unless an error occurred, in which case,
* a globus error object ID is returned
*
* @see globus_gsi_proxy_handle_get_req()
*/
globus_result_t
globus_gsi_proxy_handle_set_req(
globus_gsi_proxy_handle_t handle,
X509_REQ * req)
{
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_gsi_proxy_handle_set_req";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(!handle)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("Invalid handle (NULL) passed to function")));
goto exit;
}
if(handle->req)
{
X509_REQ_free(handle->req);
handle->req = NULL;
}
if(req)
{
handle->req = X509_REQ_dup(req);
if(!handle->req)
{
GLOBUS_GSI_PROXY_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_X509_REQ,
(_PCSL("Couldn't copy X509_REQ")));
goto exit;
}
}
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_set_req */
/**
* @brief Get/Set Private Key
* @ingroup globus_gsi_proxy_handle
* @details
* Get the private key from a GSI Proxy handle.
*
* @param handle
* The handle from which to get the private key
* @param proxy_key
* Parameter used to return the key. It is the users responsibility to
* free the returned key.
* @return
* GLOBUS_SUCCESS unless an error occurred, in which case,
* a globus error object ID is returned
*
* @see globus_gsi_proxy_handle_set_private_key()
*/
globus_result_t
globus_gsi_proxy_handle_get_private_key(
globus_gsi_proxy_handle_t handle,
EVP_PKEY ** proxy_key)
{
int length;
unsigned char * der_encoded = NULL;
unsigned char * tmp;
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_gsi_proxy_handle_get_private_key";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(!handle)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("Invalid handle (NULL) passed to function")));
goto exit;
}
if(!proxy_key)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PRIVATE_KEY,
(_PCSL("Invalid proxy_key (NULL) passed to function")));
goto exit;
}
if(!handle->proxy_key)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PRIVATE_KEY,
(_PCSL("handle's proxy key hasn't been initialized")));
goto exit;
}
*proxy_key = NULL;
length = i2d_PrivateKey(handle->proxy_key, NULL);
if(length < 0)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PRIVATE_KEY,
(_PCSL("Couldn't convert private key from internal"
"to DER encoded form")));
goto exit;
}
der_encoded = malloc(length);
if(!der_encoded)
{
GLOBUS_GSI_PROXY_HANDLE_MALLOC_ERROR(length);
goto exit;
}
tmp = der_encoded;
length = i2d_PrivateKey(handle->proxy_key, &tmp);
if(length < 0)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PRIVATE_KEY,
(_PCSL("Couldn't convert private key from internal"
"to DER encoded form")));
goto exit;
}
tmp = der_encoded;
if(!d2i_PrivateKey(handle->proxy_key->type, proxy_key,
GT_D2I_DATA_CAST &tmp, length))
{
GLOBUS_GSI_PROXY_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PRIVATE_KEY,
(_PCSL("Error converting DER encoded private key to internal form")));
goto exit;
}
exit:
if(der_encoded)
{
free(der_encoded);
}
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_get_private_key */
/**
* Set the private key in a GSI Proxy handle.
*
* @param handle
* The handle for which to set the private key
* @param proxy_key
* Parameter used to pass the key
* @return
* GLOBUS_SUCCESS unless an error occurred, in which case,
* a globus error object ID is returned
*
* @see globus_gsi_proxy_handle_get_private_key()
*/
globus_result_t
globus_gsi_proxy_handle_set_private_key(
globus_gsi_proxy_handle_t handle,
EVP_PKEY * proxy_key)
{
int length;
unsigned char * der_encoded = NULL;
unsigned char * tmp;
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_gsi_proxy_handle_set_private_key";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(!handle)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("Invalid handle (NULL) passed to function")));
goto exit;
}
if(handle->proxy_key)
{
EVP_PKEY_free(handle->proxy_key);
handle->proxy_key = NULL;
}
if(proxy_key)
{
length = i2d_PrivateKey(proxy_key, NULL);
if(length < 0)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PRIVATE_KEY,
(_PCSL("Couldn't convert private key from internal"
"to DER encoded form")));
goto exit;
}
der_encoded = malloc(length);
if(!der_encoded)
{
GLOBUS_GSI_PROXY_HANDLE_MALLOC_ERROR(length);
goto exit;
}
tmp = der_encoded;
length = i2d_PrivateKey(handle->proxy_key, &tmp);
if(length < 0)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PRIVATE_KEY,
(_PCSL("Couldn't convert private key from internal"
"to DER encoded form")));
goto exit;
}
tmp = der_encoded;
if(!d2i_PrivateKey(proxy_key->type, &handle->proxy_key,
GT_D2I_DATA_CAST &tmp, length))
{
GLOBUS_GSI_PROXY_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PRIVATE_KEY,
(_PCSL("Error converting DER encoded private key to internal form")));
goto exit;
}
}
exit:
if(der_encoded)
{
free(der_encoded);
}
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_set_private_key */
/**
* @brief Get Proxy Type
* @ingroup globus_gsi_proxy_handle
* @details
* Determine the type of proxy that will be generated when using this handle.
*
* @param handle
* The handle from which to get the type
* @param type
* Parameter used to return the type.
* @return
* GLOBUS_SUCCESS unless an error occurred, in which case,
* a globus error object ID is returned
*
* @see globus_gsi_proxy_handle_set_type()
*/
globus_result_t
globus_gsi_proxy_handle_get_type(
globus_gsi_proxy_handle_t handle,
globus_gsi_cert_utils_cert_type_t * type)
{
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_gsi_proxy_handle_get_type";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(!handle)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("Invalid handle (NULL) passed to function")));
goto exit;
}
*type = handle->type;
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_get_type */
/**
* @brief Get Proxy Type
* @ingroup globus_gsi_proxy_handle
* @details
* Set the type of proxy that will be generated when using this handle. Note
* that this will have no effect when generating a proxy from a proxy. In that
* case the generated proxy will inherit the type of the parent.
*
* @param handle
* The handle for which to set the type
* @param type
* Parameter used to pass the type.
* @return
* GLOBUS_SUCCESS unless an error occurred, in which case,
* a globus error object ID is returned
*
* @see globus_gsi_proxy_handle_set_type()
*/
globus_result_t
globus_gsi_proxy_handle_set_type(
globus_gsi_proxy_handle_t handle,
globus_gsi_cert_utils_cert_type_t type)
{
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_gsi_proxy_handle_set_type";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(!handle)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("Invalid handle (NULL) passed to function")));
goto exit;
}
handle->type = type;
switch(type)
{
case GLOBUS_GSI_CERT_UTILS_TYPE_GSI_3_IMPERSONATION_PROXY:
case GLOBUS_GSI_CERT_UTILS_TYPE_RFC_IMPERSONATION_PROXY:
result = globus_gsi_proxy_handle_set_policy(
handle, NULL, 0, OBJ_txt2nid(IMPERSONATION_PROXY_OID));
break;
case GLOBUS_GSI_CERT_UTILS_TYPE_GSI_3_INDEPENDENT_PROXY:
case GLOBUS_GSI_CERT_UTILS_TYPE_RFC_INDEPENDENT_PROXY:
result = globus_gsi_proxy_handle_set_policy(
handle, NULL, 0, OBJ_txt2nid(INDEPENDENT_PROXY_OID));
break;
case GLOBUS_GSI_CERT_UTILS_TYPE_GSI_3_LIMITED_PROXY:
case GLOBUS_GSI_CERT_UTILS_TYPE_RFC_LIMITED_PROXY:
result = globus_gsi_proxy_handle_set_policy(
handle, NULL, 0, OBJ_txt2nid(LIMITED_PROXY_OID));
break;
default:
break;
}
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_set_type */
/**
* @brief Set Policy
* @ingroup globus_gsi_proxy_handle
* @details
* Set the policy to be used in the GSI Proxy handle.
*
* This function sets the policy to be used in the proxy cert
* info extension.
*
* @param handle
* The handle to be modified.
* @param policy_data
* The policy data.
* @param policy_length
* The length of the policy data
* @param policy_language_NID
* The NID of the policy language.
*
* @return
* GLOBUS_SUCCESS if the handle and its associated fields are valid
* otherwise an error is returned
*
* @see globus_gsi_proxy_handle_get_policy()
*/
globus_result_t
globus_gsi_proxy_handle_set_policy(
globus_gsi_proxy_handle_t handle,
unsigned char * policy_data,
int policy_length,
int policy_language_NID)
{
PROXYPOLICY * policy;
ASN1_OBJECT * policy_object;
globus_result_t result;
static char * _function_name_ =
"globus_gsi_proxy_handle_set_policy";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(handle == NULL)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("NULL handle passed to function: %s"), _function_name_));
goto exit;
}
policy = PROXYCERTINFO_get_policy(handle->proxy_cert_info);
if(!policy)
{
policy = PROXYPOLICY_new();
}
policy_object = OBJ_nid2obj(policy_language_NID);
if(!policy_object)
{
GLOBUS_GSI_PROXY_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PROXYPOLICY,
(_PCSL("Invalid numeric ID: %d"), policy_language_NID));
goto exit;
}
if(!PROXYPOLICY_set_policy_language(policy, policy_object))
{
GLOBUS_GSI_PROXY_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PROXYPOLICY,
(_PCSL("PROXYPOLICY of proxy handle could not be initialized")));
goto exit;
}
if(!PROXYPOLICY_set_policy(policy, policy_data, policy_length) &&
policy_data)
{
GLOBUS_GSI_PROXY_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PROXYPOLICY,
(_PCSL("PROXYPOLICY of proxy handle could not be initialized")));
goto exit;
}
result = GLOBUS_SUCCESS;
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_set_policy */
/**
* @brief Get Policy
* @ingroup globus_gsi_proxy_handle
* @details
* Get the policy from the GSI Proxy handle.
*
* This function gets the policy that is being used in the
* proxy cert info extension.
*
* @param handle
* The handle to be interrogated.
* @param policy_data
* The policy data.
* @param policy_length
* The length of the returned policy
* @param policy_NID
* The NID of the policy language.
*
* @return
* GLOBUS_SUCCESS if the handle is valid, otherwise an error
* is returned
*
* @see globus_gsi_proxy_handle_set_policy()
*/
globus_result_t
globus_gsi_proxy_handle_get_policy(
globus_gsi_proxy_handle_t handle,
unsigned char ** policy_data,
int * policy_length,
int * policy_NID)
{
globus_result_t result;
static char * _function_name_ =
"globus_gsi_proxy_handle_get_policy";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(handle == NULL)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("NULL handle passed to function: %s"), _function_name_));
goto exit;
}
*policy_data = PROXYPOLICY_get_policy(
PROXYCERTINFO_get_policy(handle->proxy_cert_info),
policy_length);
*policy_NID = OBJ_obj2nid(PROXYPOLICY_get_policy_language(
PROXYCERTINFO_get_policy(handle->proxy_cert_info)));
result = GLOBUS_SUCCESS;
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_get_policy */
/**
* @brief Add X.509 Extensions
* @ingroup globus_gsi_proxy_handle
* @details
* Add an X.509 extension to the GSI Proxy handle to be added to certificate
*
* This function adds a X.509 extension to the proxy certificate.
*
* @param handle
* The handle for the proxy to which the extension should be added.
* @param ext
* The extension to be added.
*
* @return
* GLOBUS_SUCCESS if the addition was successful, otherwise an
* error is returned.
*
* @see globus_gsi_proxy_handle_get_extensions()
* @see globus_gsi_proxy_handle_set_extensions()
*/
globus_result_t
globus_gsi_proxy_handle_add_extension(
globus_gsi_proxy_handle_t handle,
X509_EXTENSION * ext)
{
globus_result_t result;
static char * _function_name_ =
"globus_gsi_proxy_handle_add_extension";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(handle == NULL)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("NULL handle passed to function: %s"), _function_name_));
goto exit;
}
if (ext == NULL)
{
/* Nothing to do */
result = GLOBUS_SUCCESS;
goto exit;
}
if (handle->extensions == NULL)
{
handle->extensions = sk_X509_EXTENSION_new_null();
if (handle->extensions == NULL)
{
GLOBUS_GSI_PROXY_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("Failed to allocation new X.509 Extension stack: %s"), _function_name_));
goto exit;
}
}
sk_X509_EXTENSION_push(handle->extensions,
X509_EXTENSION_dup(ext));
result = GLOBUS_SUCCESS;
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_add_extension */
/**
* @brief Set X.509 Extensions
* @ingroup globus_gsi_proxy_handle
* @details
* Set the X.509 extensions from a GSI Proxy handle
*
* This function sets the X.509 extensions for a proxy certificate.
*
* @param handle
* The handle for the proxy from which the extension should be set.
* @param exts
* The extensions to be set. Can be NULL to clear extensions.
*
* @return
* GLOBUS_SUCCESS if the addition was successful, otherwise an
* error is returned.
*
* @see globus_gsi_proxy_handle_add_extension()
* @see globus_gsi_proxy_handle_get_extensions()
*/
globus_result_t
globus_gsi_proxy_handle_set_extensions(
globus_gsi_proxy_handle_t handle,
STACK_OF(X509_EXTENSION)* exts)
{
globus_result_t result;
static char * _function_name_ =
"globus_gsi_proxy_handle_set_extensions";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(handle == NULL)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("NULL handle passed to function: %s"), _function_name_));
goto exit;
}
if (handle->extensions != NULL)
{
sk_X509_EXTENSION_free(handle->extensions);
}
if (exts == NULL)
{
handle->extensions = NULL;
}
else
{
handle->extensions = sk_X509_EXTENSION_dup(exts);
if (handle->extensions == NULL)
{
GLOBUS_GSI_PROXY_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("Failed to duplicate X.509 Extension stack: %s"), _function_name_));
goto exit;
}
}
result = GLOBUS_SUCCESS;
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_set_extensions */
/**
* @brief Get X.509 Extensions
* @ingroup globus_gsi_proxy_handle
* @details
* Get the X.509 extensions from a GSI Proxy handle
*
* This function returns the X.509 extensions from the proxy certificate.
*
* @param handle
* The handle for the proxy from which the extensions should be
* retrieved.
* @param exts
* The variable to hold the extensions. The caller is responsible
* for freeing the extensions with sk_X509_EXTENSION_free()
* when they are done with them.
*
* @return
* GLOBUS_SUCCESS if the retrieval was successful, otherwise an
* error is returned.
*
* @see globus_gsi_proxy_handle_add_extension()
* @see globus_gsi_proxy_handle_set_extensions()
*/
globus_result_t
globus_gsi_proxy_handle_get_extensions(
globus_gsi_proxy_handle_t handle,
STACK_OF(X509_EXTENSION)** exts)
{
globus_result_t result;
static char * _function_name_ =
"globus_gsi_proxy_handle_add_extension";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(handle == NULL)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("NULL handle passed to function: %s"), _function_name_));
goto exit;
}
if (handle->extensions == NULL)
{
*exts = sk_X509_EXTENSION_new_null();
}
else
{
*exts = sk_X509_EXTENSION_dup(handle->extensions);
}
if (handle->extensions == NULL)
{
GLOBUS_GSI_PROXY_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("Failed to duplicate X.509 Extension stack: %s"), _function_name_));
goto exit;
}
result = GLOBUS_SUCCESS;
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_get_extensions */
/**
* @brief Set Path Length
* @ingroup globus_gsi_proxy_handle
* @details
* Set the path length to be used in the GSI Proxy handle.
*
* This function sets the path length to be used in the proxy
* cert info extension.
*
* @param handle
* The handle to be modified.
* @param pathlen
* The maximum allowable path length
* @return
* GLOBUS_SUCCESS if the handle is valid, otherwise an
* error is returned
*
* @see globus_gsi_proxy_handle_get_pathlen()
*/
globus_result_t
globus_gsi_proxy_handle_set_pathlen(
globus_gsi_proxy_handle_t handle,
long pathlen)
{
globus_result_t result;
static char * _function_name_ =
"globus_gsi_proxy_handle_set_pathlen";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(handle == NULL)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("NULL handle passed to function: %s"), _function_name_));
goto exit;
}
if(!PROXYCERTINFO_set_path_length(handle->proxy_cert_info, pathlen))
{
GLOBUS_GSI_PROXY_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PATHLENGTH,
(_PCSL("Error setting the path length of the PROXYCERTINFO extension "
"in the proxy handle")));
goto exit;
}
result = GLOBUS_SUCCESS;
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_set_pathlen */
/**
* @brief Get Path Length
* @ingroup globus_gsi_proxy_handle
* @details
* Get the path length from the GSI Proxy handle.
*
* This function gets the path length that is being used in the
* proxy cert info extension.
*
* @param handle
* The handle to be interrogated.
* @param pathlen
* The maximum allowable path length
* @return
* GLOBUS_SUCCESS if the handle is valid, otherwise an
* error is returned
*
* @see globus_gsi_proxy_handle_set_pathlen()
*/
globus_result_t
globus_gsi_proxy_handle_get_pathlen(
globus_gsi_proxy_handle_t handle,
int * pathlen)
{
globus_result_t result;
static char * _function_name_ =
"globus_gsi_proxy_handle_get_pathlen";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(handle == NULL)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("NULL handle passed to function: %s"), _function_name_));
goto exit;
}
*pathlen = PROXYCERTINFO_get_path_length(handle->proxy_cert_info);
result = GLOBUS_SUCCESS;
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_get_pathlen */
/**
* @brief Get Time Valid
* @ingroup globus_gsi_proxy_handle
* @details
* Get the validity time of the proxy
*
* @param handle
* The proxy handle to get the expiration date of
* @param time_valid
* expiration date of the proxy handle
*
* @result
* GLOBUS_SUCCESS unless an error occurred, in which case,
* a globus error object ID is returned
*/
globus_result_t
globus_gsi_proxy_handle_get_time_valid(
globus_gsi_proxy_handle_t handle,
int * time_valid)
{
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_gsi_proxy_handle_get_time_valid";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(handle == NULL)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("NULL handle passed to function: %s"), _function_name_));
goto exit;
}
*time_valid = handle->time_valid;
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_get_time_valid */
/**
* @brief Set Time Valid
* @ingroup globus_gsi_proxy_handle
* @details
* Set the validity time of the proxy
*
* @param handle
* The proxy handle to set the expiration date for
* @param time_valid
* desired expiration date of the proxy
*
* @result
* GLOBUS_SUCCESS unless an error occurred, in which case,
* a globus error object ID is returned
* GLOBUS_SUCCESS
*/
globus_result_t
globus_gsi_proxy_handle_set_time_valid(
globus_gsi_proxy_handle_t handle,
int time_valid)
{
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_gsi_proxy_handle_set_time_valid";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(handle == NULL)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("NULL handle passed to function: %s"), _function_name_));
goto exit;
}
handle->time_valid = time_valid;
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_set_time_valid */
/**
* @brief Clear Cert Info
* @ingroup globus_gsi_proxy_handle
* @details
* Clear the proxy cert info extension stored in the GSI Proxy handle.
*
* This function clears proxy cert info extension related setting in
* the GSI Proxy handle.
*
* @param handle
* The handle for which to clear the proxy cert info extension.
* @return
* GLOBUS_SUCCESS if the handle is valid, otherwise an
* error is returned
*/
globus_result_t
globus_gsi_proxy_handle_clear_cert_info(
globus_gsi_proxy_handle_t handle)
{
globus_result_t result;
static char * _function_name_ =
"globus_gsi_proxy_handle_clear_cert_info";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(handle == NULL)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("NULL handle passed to function: %s"), _function_name_));
goto exit;
}
PROXYCERTINFO_free(handle->proxy_cert_info);
handle->proxy_cert_info = PROXYCERTINFO_new();
if(handle->proxy_cert_info == NULL)
{
GLOBUS_GSI_PROXY_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PROXYCERTINFO,
(_PCSL("PROXYCERTINFO could not be initialized")));
goto exit;
}
result = GLOBUS_SUCCESS;
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_clear_cert_info */
/**
* @brief Get Cert Info
* @ingroup globus_gsi_proxy_handle
* @details
* Get the proxy cert info extension stored in the GSI Proxy handle.
*
* This function retrieves the proxy cert info extension from the GSI Proxy
* handle.
*
* @param handle
* The handle from which to get the proxy cert info extension.
* @param pci
* Contains the proxy cert info extension upon successful return. If the
* handle does not contain a pci extension, this parameter will be NULL
* upon return.
* @return
* GLOBUS_SUCCESS upon success
* GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE if handle is invalid
* GLOBUS_GSI_PROXY_ERROR_WITH_PROXYCERTINFO if the pci
* pointer is invalid or if the get failed.
*/
globus_result_t
globus_gsi_proxy_handle_get_proxy_cert_info(
globus_gsi_proxy_handle_t handle,
PROXYCERTINFO ** pci)
{
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_gsi_proxy_handle_get_proxy_cert_info";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(!handle)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("Invalid handle (NULL) passed to function")));
goto exit;
}
if(!pci)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PROXYCERTINFO,
(_PCSL("Invalid PROXYCERTINFO passed to function")));
goto exit;
}
if(handle->proxy_cert_info)
{
*pci = PROXYCERTINFO_dup(handle->proxy_cert_info);
if(!*pci)
{
GLOBUS_GSI_PROXY_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PROXYCERTINFO,
(_PCSL("Couldn't copy PROXYCERTINFO structure")));
goto exit;
}
}
else
{
*pci = NULL;
}
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_get_proxy_cert_info */
/**
* @brief Set Cert Info
* @ingroup globus_gsi_proxy_handle
* @details
* Set the proxy cert info extension stored in the GSI Proxy handle.
*
* This function sets the proxy cert info extension in the GSI Proxy handle.
*
* @param handle
* The handle for which to set the proxy cert info extension.
* @param pci
* The proxy cert info extension to set.
* @retval GLOBUS_SUCCESS Success
* @retval GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE Handle is invalid
* @retval GLOBUS_GSI_PROXY_ERROR_WITH_PROXYCERTINFO pci pointer is invalid or if the set failed.
*/
globus_result_t
globus_gsi_proxy_handle_set_proxy_cert_info(
globus_gsi_proxy_handle_t handle,
PROXYCERTINFO * pci)
{
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_gsi_proxy_handle_set_proxy_cert_info";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(!handle)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("Invalid handle (NULL) passed to function")));
goto exit;
}
if(handle->proxy_cert_info)
{
PROXYCERTINFO_free(handle->proxy_cert_info);
handle->proxy_cert_info = NULL;
}
if(pci)
{
handle->proxy_cert_info = PROXYCERTINFO_dup(pci);
if(!handle->proxy_cert_info)
{
GLOBUS_GSI_PROXY_OPENSSL_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_PROXYCERTINFO,
(_PCSL("Couldn't copy PROXYCERTINFO")));
goto exit;
}
}
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_set_proxy_cert_info */
/**
* @brief Get Signing Algorithm
* @ingroup globus_gsi_proxy_handle
* @details
* Get the signing algorithm used to sign the proxy cert request
*
* @param handle
* The proxy handle containing the type of signing algorithm used
* @param signing_algorithm
* signing algorithm of the proxy handle
*
* @retval
* GLOBUS_SUCCESS unless an error occurred, in which case,
* a globus error object ID is returned
*/
globus_result_t
globus_gsi_proxy_handle_get_signing_algorithm(
globus_gsi_proxy_handle_t handle,
EVP_MD ** signing_algorithm)
{
globus_result_t result;
static char * _function_name_ =
"globus_gsi_proxy_handle_get_signing_algorithm";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
result = globus_gsi_proxy_handle_attrs_get_signing_algorithm(
handle->attrs,
signing_algorithm);
if(result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_PROXY_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE_ATTRS);
}
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/**
* @brief Get Key Bits
* @ingroup globus_gsi_proxy_handle
* @details
* Get the key bits used for the pub/private key pair of the proxy
*
* @param handle
* The proxy handle to get the key bits of
* @param key_bits
* key bits of the proxy handle
*
* @result
* GLOBUS_SUCCESS unless an error occurred, in which case,
* a globus error object ID is returned
* GLOBUS_SUCCESS
*/
globus_result_t
globus_gsi_proxy_handle_get_keybits(
globus_gsi_proxy_handle_t handle,
int * key_bits)
{
globus_result_t result;
static char * _function_name_ =
"globus_gsi_proxy_handle_get_key_bits";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
result = globus_gsi_proxy_handle_attrs_get_keybits(handle->attrs,
key_bits);
if(result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_PROXY_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE_ATTRS);
}
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/**
* @brief Get Init Prime
* @ingroup globus_gsi_proxy_handle
* @details
* Get the init prime of the proxy handle
*
* @param handle
* The handle to get the init prime used in generating the key pair
* @param init_prime
* The resulting init prime
*
* @return
* GLOBUS_SUCCESS unless an error occurred, in which case
* an error object identifier (in the form of a globus_result_t)
* is returned
*/
globus_result_t
globus_gsi_proxy_handle_get_init_prime(
globus_gsi_proxy_handle_t handle,
int * init_prime)
{
globus_result_t result;
static char * _function_name_ =
"globus_gsi_proxy_handle_get_init_prime";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
result = globus_gsi_proxy_handle_attrs_get_init_prime(handle->attrs,
init_prime);
if(result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_PROXY_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE_ATTRS);
}
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/**
* @brief Get Clock Skew
* @ingroup globus_gsi_proxy_handle
* @details
* Get the clock skew of the proxy handle
*
* @param handle
* The handle to get the clock skew of
* @param skew
* The resulting clock skew
*
* @return
* GLOBUS_SUCCESS unless an error occurred, in which case
* an error object identifier (in the form of a globus_result_t)
* is returned
*/
globus_result_t
globus_gsi_proxy_handle_get_clock_skew_allowable(
globus_gsi_proxy_handle_t handle,
int * skew)
{
globus_result_t result;
static char * _function_name_ =
"globus_gsi_proxy_handle_get_clock_skew_allowable";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
result = globus_gsi_proxy_handle_attrs_get_clock_skew_allowable(
handle->attrs,
skew);
if(result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_PROXY_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE_ATTRS);
}
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/**
* @brief Get Callback for Creating Keys
* @ingroup globus_gsi_proxy_handle
* @details
* Get the callback for creating the public/private key pair
*
* @param handle
* The proxy handle to get the callback from
* @param callback
* Parameter used for returning the callback
*
* @result
* GLOBUS_SUCCESS or an error object identifier
*/
globus_result_t
globus_gsi_proxy_handle_get_key_gen_callback(
globus_gsi_proxy_handle_t handle,
void (**callback)(int, int, void *))
{
globus_result_t result;
static char * _function_name_ =
"globus_gsi_proxy_handle_get_key_gen_callback";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
result = globus_gsi_proxy_handle_attrs_get_key_gen_callback(
handle->attrs,
callback);
if(result != GLOBUS_SUCCESS)
{
GLOBUS_GSI_PROXY_ERROR_CHAIN_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE_ATTRS);
}
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/**
* @brief Get/Set Proxy Common Name
* @ingroup globus_gsi_proxy_handle
* @details
* Get the proxy common name stored in the GSI Proxy handle.
*
* This function retrieves the proxy common name from the GSI Proxy
* handle. The common name only impacts draft compliant proxies.
*
* @param handle
* The handle from which to get the proxy common name.
* @param common_name
* Contains the proxy common name upon successful return. If the
* handle does not contain a common name, this parameter will be NULL
* upon return.
* @return
* GLOBUS_SUCCESS upon success
* GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE if handle is invalid
*/
globus_result_t
globus_gsi_proxy_handle_get_common_name(
globus_gsi_proxy_handle_t handle,
char ** common_name)
{
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_gsi_proxy_handle_get_proxy_common_name";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(!handle)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("Invalid handle (NULL) passed to function")));
goto exit;
}
if(!common_name)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_INVALID_PARAMETER,
(_PCSL("Invalid common name passed to function")));
goto exit;
}
if(handle->common_name)
{
*common_name = strdup(handle->common_name);
if(!*common_name)
{
result = GLOBUS_GSI_PROXY_HANDLE_MALLOC_ERROR(
strlen(handle->common_name));
goto exit;
}
}
else
{
*common_name = NULL;
}
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_get_common_name */
/**
* Set the proxy common name stored in the GSI Proxy handle.
*
* This function sets the proxy common name in the GSI Proxy handle. Note
* that the common name is only used for draft compliant proxies.
*
* @param handle
* The handle for which to set the proxy common name.
* @param common_name
* The proxy common name to set.
* @return
* GLOBUS_SUCCESS upon success
* GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE if handle is invalid
*/
globus_result_t
globus_gsi_proxy_handle_set_common_name(
globus_gsi_proxy_handle_t handle,
char * common_name)
{
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_gsi_proxy_handle_set_common_name";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(!handle)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("Invalid handle (NULL) passed to function")));
goto exit;
}
if(handle->common_name)
{
free(handle->common_name);
handle->common_name = NULL;
}
if(common_name)
{
handle->common_name = strdup(common_name);
if(!handle->common_name)
{
result = GLOBUS_GSI_PROXY_HANDLE_MALLOC_ERROR(
strlen(common_name));
goto exit;
}
}
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/* globus_gsi_proxy_handle_set_common_name */
/**
* @brief Set/Check Proxy Is Limited
* @ingroup globus_gsi_proxy_handle
* @details
* Set the limited proxy flag on the proxy handle
*
* @param handle
* the proxy handle
* @param is_limited
* boolean value to set on the proxy handle
*
* @return
* GLOBUS_SUCCESS unless an error occurred, in which case,
* a globus error object ID is returned
*/
globus_result_t
globus_gsi_proxy_handle_set_is_limited(
globus_gsi_proxy_handle_t handle,
globus_bool_t is_limited)
{
globus_result_t result = GLOBUS_SUCCESS;
static char * _function_name_ =
"globus_gsi_proxy_handle_set_is_limited";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
if(!handle)
{
GLOBUS_GSI_PROXY_ERROR_RESULT(
result,
GLOBUS_GSI_PROXY_ERROR_WITH_HANDLE,
(_PCSL("Invalid handle (NULL) passed to function")));
goto exit;
}
if(is_limited == GLOBUS_TRUE)
{
if(GLOBUS_GSI_CERT_UTILS_IS_RFC_PROXY(handle->type))
{
result = globus_gsi_proxy_handle_set_type(
handle,
GLOBUS_GSI_CERT_UTILS_TYPE_RFC_LIMITED_PROXY);
}
else if(GLOBUS_GSI_CERT_UTILS_IS_GSI_3_PROXY(handle->type))
{
result = globus_gsi_proxy_handle_set_type(
handle,
GLOBUS_GSI_CERT_UTILS_TYPE_GSI_3_LIMITED_PROXY);
}
else
{
result = globus_gsi_proxy_handle_set_type(
handle,
GLOBUS_GSI_CERT_UTILS_TYPE_GSI_2_LIMITED_PROXY);
}
}
else
{
if(GLOBUS_GSI_CERT_UTILS_IS_RFC_PROXY(handle->type))
{
result = globus_gsi_proxy_handle_set_type(
handle,
GLOBUS_GSI_CERT_UTILS_TYPE_RFC_IMPERSONATION_PROXY);
}
else if(GLOBUS_GSI_CERT_UTILS_IS_GSI_3_PROXY(handle->type))
{
result = globus_gsi_proxy_handle_set_type(
handle,
GLOBUS_GSI_CERT_UTILS_TYPE_GSI_3_IMPERSONATION_PROXY);
}
else
{
result = globus_gsi_proxy_handle_set_type(
handle,
GLOBUS_GSI_CERT_UTILS_TYPE_GSI_2_PROXY);
}
}
exit:
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return result;
}
/**
* Check to see the proxy is a limited proxy
*
* @param handle
* the proxy handle to check
* @param is_limited
* boolean value to set depending on the type of proxy
*
* @return
* GLOBUS_SUCCESS unless an error occurred, in which case,
* a globus error object ID is returned
*/
globus_result_t
globus_gsi_proxy_is_limited(
globus_gsi_proxy_handle_t handle,
globus_bool_t * is_limited)
{
static char * _function_name_ =
"globus_gsi_proxy_is_limited";
GLOBUS_I_GSI_PROXY_DEBUG_ENTER;
*is_limited = GLOBUS_GSI_CERT_UTILS_IS_LIMITED_PROXY(handle->type);
GLOBUS_I_GSI_PROXY_DEBUG_EXIT;
return GLOBUS_SUCCESS;
}
|