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
|
/* -*- c -*-
* Perl XS bindings for the WebAuth library.
*
* This is an XS source file, suitable for processing by xsubpp, that
* generates Perl bindings for the libwebauth library.
*
* Currently, both the library API and this set of bindings leave a lot to be
* desired. They could be much more object-oriented than they currently are,
* and the library is very low-level. There is some work done on conversion
* to a more object-oriented approach, but it's very incomplete and currently
* only includes WebAuth::Keyring and closely-related classes.
*
* All abnormal errors are handled as exceptions, generated via webauth_croak,
* rather than through error returns.
*
* Wrap all CODE and PPCODE segments in this file longer than a single line in
* braces to reduce Emacs's c-mode confusion when trying to understand XS
* constructs.
*
* Originally written by Roland Schemers
* Substantially rewritten by Russ Allbery <eagle@eyrie.org>
* Copyright 2003, 2005, 2006, 2008, 2009, 2010, 2011, 2012, 2013, 2014
* The Board of Trustees of the Leland Stanford Junior University
*
* See LICENSE for licensing terms.
*/
/* We cannot include config.h here because it conflicts with Perl. */
#include <portable/apr.h>
#include <EXTERN.h>
#include <perl.h>
#include <XSUB.h>
#include <webauth/basic.h>
#include <webauth/keys.h>
#include <webauth/krb5.h>
#include <webauth/tokens.h>
/*
* These typedefs are needed for xsubpp to work its magic with type
* translation to Perl objects.
*/
typedef struct webauth_context * WebAuth;
typedef const struct webauth_key * WebAuth__Key;
typedef const struct webauth_keyring_entry * WebAuth__KeyringEntry;
/*
* For WebAuth::Keyring and WebAuth::Krb5, we need to stash a copy of the
* parent context somewhere so that we don't require it as an argument to all
* methods and so that we can keep a reference to it so that the context is
* not garbage-collected until all of its objects are out of scope.
*/
typedef struct {
struct webauth_context *ctx;
struct webauth_keyring *ring;
} *WebAuth__Keyring;
typedef struct {
SV *ctx;
struct webauth_krb5 *kc;
} *WebAuth__Krb5;
/* Used to generate the Perl glue for WebAuth constants. */
#define IV_CONST(X) newCONSTSUB(stash, #X, newSViv(X))
/* Used to check that an object argument to a function is not NULL. */
#define CROAK_NULL(o, t, f) \
do { \
if ((o) == NULL) \
croak(t " object is undef in " f); \
} while (0);
#define CROAK_NULL_SELF(o, t, f) CROAK_NULL((o), t, t "::" f)
/*
* Encoding and decoding magic for tokens.
*
* There are significant memory management challenges for how to handle the
* token structs as Perl objects directly. (For example, the structs
* allocated via webauth_token_decode would be allocated entirely differently
* than values set from Perl.) It's therefore easier to have the Perl
* expression of the token structs be Perl hash tables, which we can bless and
* wrap with getters and setters written in Perl instead of XS.
*
* In order to avoid vast amounts of duplicate code, we define coding tables
* for each token. This maps the attribute names in the form of the hash keys
* used in the Perl object to offsets into the relevant token struct and types
* of the C data structure. We can then use some (scary) C code to handle the
* transcoding from C structs to Perl objects generically for all token types.
*
* All TYPE_DATA entries in the table must be followed by TYPE_DATALEN
* entries.
*/
enum token_mapping_type {
TYPE_STRING,
TYPE_TIME,
TYPE_DATA,
TYPE_DATALEN,
TYPE_ULONG
};
struct token_mapping {
const char *key;
size_t offset;
enum token_mapping_type type;
};
/* Used to make the tables more readable. */
#define M(s, n, t) { (#n), offsetof(struct s, n), TYPE_ ## t }
/* Used to store or extract data from the struct. */
#define DATA_STRING(d, o) *(const char **) ((char *) (d) + (o))
#define DATA_TIME(d, o) *(time_t *) ((char *) (d) + (o))
#define DATA_DATA(d, o) *(const void **) ((char *) (d) + (o))
#define DATA_DATALEN(d, o) *(size_t *) ((char *) (d) + (o))
#define DATA_ULONG(d, o) *(unsigned long *)((char *) (d) + (o))
/* App tokens. */
struct token_mapping token_mapping_app[] = {
M(webauth_token_app, subject, STRING),
M(webauth_token_app, authz_subject, STRING),
M(webauth_token_app, last_used, TIME),
M(webauth_token_app, session_key, DATA),
M(webauth_token_app, session_key_len, DATALEN),
M(webauth_token_app, initial_factors, STRING),
M(webauth_token_app, session_factors, STRING),
M(webauth_token_app, loa, ULONG),
M(webauth_token_app, creation, TIME),
M(webauth_token_app, expiration, TIME),
{ NULL, 0, 0 }
};
/* Cred tokens. */
struct token_mapping token_mapping_cred[] = {
M(webauth_token_cred, subject, STRING),
M(webauth_token_cred, type, STRING),
M(webauth_token_cred, service, STRING),
M(webauth_token_cred, data, DATA),
M(webauth_token_cred, data_len, DATALEN),
M(webauth_token_cred, creation, TIME),
M(webauth_token_cred, expiration, TIME),
{ NULL, 0, 0 }
};
/* Error tokens. */
struct token_mapping token_mapping_error[] = {
M(webauth_token_error, code, ULONG),
M(webauth_token_error, message, STRING),
M(webauth_token_error, creation, TIME),
{ NULL, 0, 0 }
};
/* Id tokens. */
struct token_mapping token_mapping_id[] = {
M(webauth_token_id, subject, STRING),
M(webauth_token_id, authz_subject, STRING),
M(webauth_token_id, auth, STRING),
M(webauth_token_id, auth_data, DATA),
M(webauth_token_id, auth_data_len, DATALEN),
M(webauth_token_id, initial_factors, STRING),
M(webauth_token_id, session_factors, STRING),
M(webauth_token_id, loa, ULONG),
M(webauth_token_id, creation, TIME),
M(webauth_token_id, expiration, TIME),
{ NULL, 0, 0 }
};
/* Login tokens. */
struct token_mapping token_mapping_login[] = {
M(webauth_token_login, username, STRING),
M(webauth_token_login, password, STRING),
M(webauth_token_login, otp, STRING),
M(webauth_token_login, otp_type, STRING),
M(webauth_token_login, device_id, STRING),
M(webauth_token_login, creation, TIME),
{ NULL, 0, 0 }
};
/* Proxy tokens. */
struct token_mapping token_mapping_proxy[] = {
M(webauth_token_proxy, subject, STRING),
M(webauth_token_proxy, authz_subject, STRING),
M(webauth_token_proxy, type, STRING),
M(webauth_token_proxy, webkdc_proxy, DATA),
M(webauth_token_proxy, webkdc_proxy_len, DATALEN),
M(webauth_token_proxy, initial_factors, STRING),
M(webauth_token_proxy, session_factors, STRING),
M(webauth_token_proxy, loa, ULONG),
M(webauth_token_proxy, creation, TIME),
M(webauth_token_proxy, expiration, TIME),
{ NULL, 0, 0 }
};
/* Request tokens. */
struct token_mapping token_mapping_request[] = {
M(webauth_token_request, type, STRING),
M(webauth_token_request, auth, STRING),
M(webauth_token_request, proxy_type, STRING),
M(webauth_token_request, state, DATA),
M(webauth_token_request, state_len, DATALEN),
M(webauth_token_request, return_url, STRING),
M(webauth_token_request, options, STRING),
M(webauth_token_request, initial_factors, STRING),
M(webauth_token_request, session_factors, STRING),
M(webauth_token_request, loa, ULONG),
M(webauth_token_request, command, STRING),
M(webauth_token_request, creation, TIME),
{ NULL, 0, 0 }
};
/* WebKDC factor tokens. */
struct token_mapping token_mapping_webkdc_factor[] = {
M(webauth_token_webkdc_factor, subject, STRING),
M(webauth_token_webkdc_factor, factors, STRING),
M(webauth_token_webkdc_factor, creation, TIME),
M(webauth_token_webkdc_factor, expiration, TIME),
{ NULL, 0, 0 }
};
/* WebKDC proxy tokens. */
struct token_mapping token_mapping_webkdc_proxy[] = {
M(webauth_token_webkdc_proxy, subject, STRING),
M(webauth_token_webkdc_proxy, proxy_type, STRING),
M(webauth_token_webkdc_proxy, proxy_subject, STRING),
M(webauth_token_webkdc_proxy, data, DATA),
M(webauth_token_webkdc_proxy, data_len, DATALEN),
M(webauth_token_webkdc_proxy, initial_factors, STRING),
M(webauth_token_webkdc_proxy, loa, ULONG),
M(webauth_token_webkdc_proxy, creation, TIME),
M(webauth_token_webkdc_proxy, expiration, TIME),
{ NULL, 0, 0 }
};
/* WebKDC service tokens. */
struct token_mapping token_mapping_webkdc_service[] = {
M(webauth_token_webkdc_service, subject, STRING),
M(webauth_token_webkdc_service, session_key, DATA),
M(webauth_token_webkdc_service, session_key_len, DATALEN),
M(webauth_token_webkdc_service, creation, TIME),
M(webauth_token_webkdc_service, expiration, TIME),
{ NULL, 0, 0 }
};
/*
* Decode a token into a Perl hash. This function doesn't know what type of
* token is being decoded; it just takes an array of struct token_mapping, a
* pointer to the token struct, and a Perl HV, and uses the rules in
* token_mapping to move data into the HV.
*/
static void
map_token_to_hash(struct token_mapping mapping[], const void *token, HV *hash)
{
size_t i, length;
struct token_mapping *map;
SV *value;
const char *string;
const void *data;
unsigned long number;
for (i = 0; mapping[i].key != NULL; i++) {
map = &mapping[i];
value = NULL;
switch (map->type) {
case TYPE_STRING:
string = DATA_STRING(token, map->offset);
if (string != NULL)
value = newSVpv(string, 0);
break;
case TYPE_TIME:
number = DATA_TIME(token, map->offset);
if (number != 0)
value = newSViv(number);
break;
case TYPE_DATA:
data = DATA_DATA(token, map->offset);
if (data != NULL) {
length = DATA_DATALEN(token, mapping[i + 1].offset);
value = newSVpvn(data, length);
}
break;
case TYPE_DATALEN:
/* Handled as part of TYPE_DATA. */
break;
case TYPE_ULONG:
number = DATA_ULONG(token, map->offset);
if (number != 0)
value = newSViv(DATA_ULONG(token, map->offset));
break;
}
if (value != NULL)
if (hv_store(hash, map->key, strlen(map->key), value, 0) == NULL)
croak("cannot store %s in hash", map->key);
}
}
/*
* Encode a Perl hash into a token struct. This function doesn't know what
* type of token is being encoded; it just takes an array of struct
* token_mapping, a pointer to the token struct, and a Perl HV, and uses the
* rules in token_mapping to move data from the HV into the struct.
*
* This does not check for attributes in the HV that don't correspond to valid
* members of the struct.
*/
static void
map_hash_to_token(struct token_mapping mapping[], HV *hash, const void *token)
{
size_t i;
struct token_mapping *map;
SV **value;
STRLEN length;
for (i = 0; mapping[i].key != NULL; i++) {
map = &mapping[i];
value = hv_fetch(hash, map->key, strlen(map->key), 0);
if (value == NULL)
continue;
switch (map->type) {
case TYPE_STRING:
DATA_STRING(token, map->offset) = SvPV_nolen(*value);
break;
case TYPE_TIME:
DATA_TIME(token, map->offset) = SvIV(*value);
break;
case TYPE_DATA:
DATA_DATA(token, map->offset) = SvPV(*value, length);
DATA_DATALEN(token, mapping[i + 1].offset) = length;
break;
case TYPE_DATALEN:
/* Handled as part of TYPE_DATA. */
break;
case TYPE_ULONG:
DATA_ULONG(token, map->offset) = SvIV(*value);
break;
}
}
}
/*
* Given an SV representing a WebAuth object, return the underlying struct
* webauth_context pointer for use with direct WebAuth calls. Takes the type
* of object from which the context is being retrieved for error reporting.
*/
static struct webauth_context *
get_ctx(SV *ctx_sv, const char *type)
{
IV ctx_iv;
struct webauth_context *ctx;
if (ctx_sv == NULL)
croak("no WebAuth context in %s object", type);
ctx_iv = SvIV(ctx_sv);
ctx = INT2PTR(struct webauth_context *, ctx_iv);
return ctx;
}
/*
* Turn a WebAuth error into a Perl exception.
*/
static void __attribute__((__noreturn__))
webauth_croak(struct webauth_context *ctx, const char *detail, int s)
{
HV *hv;
SV *rv;
hv = newHV();
(void) hv_store(hv, "status", 6, newSViv(s), 0);
(void) hv_store(hv, "message", 7,
newSVpv(webauth_error_message(ctx, s), 0), 0);
if (detail != NULL)
(void) hv_store(hv, "detail", 6, newSVpv(detail, 0), 0);
if (CopLINE(PL_curcop)) {
(void) hv_store(hv, "line", 4, newSViv(CopLINE(PL_curcop)), 0);
(void) hv_store(hv, "file", 4, newSVpv(CopFILE(PL_curcop), 0), 0);
}
rv = newRV_noinc((SV *) hv);
sv_bless(rv, gv_stashpv("WebAuth::Exception", TRUE));
sv_setsv(get_sv("@", TRUE), sv_2mortal(rv));
croak(Nullch);
}
/* XS code below this point. */
MODULE = WebAuth PACKAGE = WebAuth PREFIX = webauth_
# Generate all the constant subs for all the exported WebAuth constants.
BOOT:
{
HV *stash;
/* Constant subs for WebAuth. */
stash = gv_stashpv("WebAuth", TRUE);
/* WebAuth error codes. */
IV_CONST(WA_ERR_NONE);
IV_CONST(WA_ERR_NO_ROOM);
IV_CONST(WA_ERR_CORRUPT);
IV_CONST(WA_ERR_NO_MEM);
IV_CONST(WA_ERR_BAD_HMAC);
IV_CONST(WA_ERR_RAND_FAILURE);
IV_CONST(WA_ERR_BAD_KEY);
IV_CONST(WA_ERR_FILE_OPENWRITE);
IV_CONST(WA_ERR_FILE_WRITE);
IV_CONST(WA_ERR_FILE_OPENREAD);
IV_CONST(WA_ERR_FILE_READ);
IV_CONST(WA_ERR_FILE_VERSION);
IV_CONST(WA_ERR_NOT_FOUND);
IV_CONST(WA_ERR_KRB5);
IV_CONST(WA_ERR_INVALID_CONTEXT);
IV_CONST(WA_ERR_TOKEN_EXPIRED);
IV_CONST(WA_ERR_TOKEN_STALE);
IV_CONST(WA_ERR_APR);
IV_CONST(WA_ERR_UNIMPLEMENTED);
IV_CONST(WA_ERR_INVALID);
IV_CONST(WA_ERR_REMOTE_FAILURE);
IV_CONST(WA_ERR_FILE_NOT_FOUND);
IV_CONST(WA_ERR_TOKEN_REJECTED);
/* Protocol error codes from the WebKDC. */
IV_CONST(WA_PEC_SERVICE_TOKEN_EXPIRED);
IV_CONST(WA_PEC_SERVICE_TOKEN_INVALID);
IV_CONST(WA_PEC_PROXY_TOKEN_EXPIRED);
IV_CONST(WA_PEC_PROXY_TOKEN_INVALID);
IV_CONST(WA_PEC_INVALID_REQUEST);
IV_CONST(WA_PEC_UNAUTHORIZED);
IV_CONST(WA_PEC_SERVER_FAILURE);
IV_CONST(WA_PEC_REQUEST_TOKEN_STALE);
IV_CONST(WA_PEC_REQUEST_TOKEN_INVALID);
IV_CONST(WA_PEC_GET_CRED_FAILURE);
IV_CONST(WA_PEC_REQUESTER_KRB5_CRED_INVALID);
IV_CONST(WA_PEC_LOGIN_TOKEN_STALE);
IV_CONST(WA_PEC_LOGIN_TOKEN_INVALID);
IV_CONST(WA_PEC_LOGIN_FAILED);
IV_CONST(WA_PEC_PROXY_TOKEN_REQUIRED);
IV_CONST(WA_PEC_LOGIN_CANCELED);
IV_CONST(WA_PEC_LOGIN_FORCED);
IV_CONST(WA_PEC_USER_REJECTED);
IV_CONST(WA_PEC_CREDS_EXPIRED);
IV_CONST(WA_PEC_MULTIFACTOR_REQUIRED);
IV_CONST(WA_PEC_MULTIFACTOR_UNAVAILABLE);
IV_CONST(WA_PEC_LOGIN_REJECTED);
IV_CONST(WA_PEC_LOA_UNAVAILABLE);
IV_CONST(WA_PEC_AUTH_REJECTED);
IV_CONST(WA_PEC_AUTH_REPLAY);
IV_CONST(WA_PEC_AUTH_LOCKOUT);
IV_CONST(WA_PEC_LOGIN_TIMEOUT);
/* Key types. */
IV_CONST(WA_KEY_AES);
/* Key sizes. */
IV_CONST(WA_AES_128);
IV_CONST(WA_AES_192);
IV_CONST(WA_AES_256);
/* Key usages. */
IV_CONST(WA_KEY_DECRYPT);
IV_CONST(WA_KEY_ENCRYPT);
/* Principal canonicalization methods. */
IV_CONST(WA_KRB5_CANON_NONE);
IV_CONST(WA_KRB5_CANON_LOCAL);
IV_CONST(WA_KRB5_CANON_STRIP);
}
WebAuth
new(class)
const char *class
PREINIT:
struct webauth_context *ctx;
int status;
CODE:
{
if (strcmp(class, "WebAuth") != 0)
croak("subclassing of WebAuth is not supported");
status = webauth_context_init(&ctx, NULL);
if (status != WA_ERR_NONE)
webauth_croak(NULL, "webauth_context_init", status);
RETVAL = ctx;
}
OUTPUT:
RETVAL
void
DESTROY(self)
WebAuth self
CODE:
{
if (self != NULL)
webauth_context_free(self);
}
const char *
webauth_error_message(self, status)
WebAuth self
int status
CODE:
RETVAL = webauth_error_message(self, status);
OUTPUT:
RETVAL
WebAuth::Key
key_create(self, type, size, key_material = NULL)
WebAuth self
enum webauth_key_type type
enum webauth_key_size size
const unsigned char *key_material
PREINIT:
struct webauth_key *key;
int status;
CODE:
{
CROAK_NULL_SELF(self, "WebAuth", "key_create");
status = webauth_key_create(self, type, size, key_material, &key);
if (status != WA_ERR_NONE)
webauth_croak(self, "webauth_key_create", status);
RETVAL = key;
}
OUTPUT:
RETVAL
WebAuth::Keyring
keyring_new(self, ks)
WebAuth self
SV *ks
PREINIT:
WebAuth__Keyring ring;
CODE:
{
CROAK_NULL_SELF(self, "WebAuth", "keyring_new");
ring = malloc(sizeof(*ring));
if (ring == NULL)
croak("cannot allocate memory");
if (sv_isobject(ks) && sv_derived_from(ks, "WebAuth::Key")) {
struct webauth_key *key;
key = INT2PTR(struct webauth_key *, SvIV((SV *) SvRV(ks)));
ring->ring = webauth_keyring_from_key(self, key);
} else {
ring->ring = webauth_keyring_new(self, SvIV(ks));
}
ring->ctx = self;
RETVAL = ring;
}
OUTPUT:
RETVAL
WebAuth::Keyring
keyring_decode(self, data)
WebAuth self
SV *data
PREINIT:
WebAuth__Keyring ring;
int status;
const char *encoded;
STRLEN length;
CODE:
{
CROAK_NULL_SELF(self, "WebAuth", "keyring_decode");
ring = malloc(sizeof(*ring));
if (ring == NULL)
croak("cannot allocate memory");
encoded = SvPV(data, length);
status = webauth_keyring_decode(self, encoded, length, &ring->ring);
if (status != WA_ERR_NONE)
webauth_croak(self, "webauth_keyring_decode", status);
ring->ctx = self;
RETVAL = ring;
}
OUTPUT:
RETVAL
WebAuth::Keyring
keyring_read(self, file)
WebAuth self
const char *file
PREINIT:
WebAuth__Keyring ring;
int status;
CODE:
{
CROAK_NULL_SELF(self, "WebAuth", "keyring_read");
ring = malloc(sizeof(*ring));
if (ring == NULL)
croak("cannot allocate memory");
status = webauth_keyring_read(self, file, &ring->ring);
if (status != WA_ERR_NONE)
webauth_croak(self, "webauth_keyring_read", status);
ring->ctx = self;
RETVAL = ring;
}
OUTPUT:
RETVAL
WebAuth::Krb5
krb5_new(self)
WebAuth self
PREINIT:
WebAuth__Krb5 krb5;
int status;
SV *output;
CODE:
{
CROAK_NULL_SELF(self, "WebAuth", "krb5_new");
krb5 = malloc(sizeof(*krb5));
if (krb5 == NULL)
croak("cannot allocate memory");
status = webauth_krb5_new(self, &krb5->kc);
if (status != WA_ERR_NONE)
webauth_croak(self, "webauth_krb5_new", status);
krb5->ctx = SvRV(ST(0));
SvREFCNT_inc_simple_void_NN(krb5->ctx);
RETVAL = krb5;
}
OUTPUT:
RETVAL
SV *
token_decode(self, input, ring)
WebAuth self
SV *input
WebAuth::Keyring ring
PREINIT:
const char *encoded;
struct webauth_token *token;
int status;
HV *hash;
SV *object;
CODE:
{
CROAK_NULL_SELF(self, "WebAuth", "token_decode");
CROAK_NULL(ring, "WebAuth::Keyring", "WebAuth::token_decode");
encoded = SvPV_nolen(input);
status = webauth_token_decode(self, WA_TOKEN_ANY, encoded, ring->ring,
&token);
if (status != WA_ERR_NONE)
webauth_croak(self, "webauth_token_decode", status);
hash = newHV();
object = newRV_noinc((SV *) hash);
switch (token->type) {
case WA_TOKEN_APP:
sv_bless(object, gv_stashpv("WebAuth::Token::App", GV_ADD));
map_token_to_hash(token_mapping_app, &token->token.app, hash);
break;
case WA_TOKEN_CRED:
sv_bless(object, gv_stashpv("WebAuth::Token::Cred", GV_ADD));
map_token_to_hash(token_mapping_cred, &token->token.cred, hash);
break;
case WA_TOKEN_ERROR:
sv_bless(object, gv_stashpv("WebAuth::Token::Error", GV_ADD));
map_token_to_hash(token_mapping_error, &token->token.error, hash);
break;
case WA_TOKEN_ID:
sv_bless(object, gv_stashpv("WebAuth::Token::Id", GV_ADD));
map_token_to_hash(token_mapping_id, &token->token.id, hash);
break;
case WA_TOKEN_LOGIN:
sv_bless(object, gv_stashpv("WebAuth::Token::Login", GV_ADD));
map_token_to_hash(token_mapping_login, &token->token.login, hash);
break;
case WA_TOKEN_PROXY:
sv_bless(object, gv_stashpv("WebAuth::Token::Proxy", GV_ADD));
map_token_to_hash(token_mapping_proxy, &token->token.proxy, hash);
break;
case WA_TOKEN_REQUEST:
sv_bless(object, gv_stashpv("WebAuth::Token::Request", GV_ADD));
map_token_to_hash(token_mapping_request, &token->token.request, hash);
break;
case WA_TOKEN_WEBKDC_FACTOR:
sv_bless(object, gv_stashpv("WebAuth::Token::WebKDCFactor", GV_ADD));
map_token_to_hash(token_mapping_webkdc_factor,
&token->token.webkdc_factor, hash);
break;
case WA_TOKEN_WEBKDC_PROXY:
sv_bless(object, gv_stashpv("WebAuth::Token::WebKDCProxy", GV_ADD));
map_token_to_hash(token_mapping_webkdc_proxy,
&token->token.webkdc_proxy, hash);
break;
case WA_TOKEN_WEBKDC_SERVICE:
sv_bless(object, gv_stashpv("WebAuth::Token::WebKDCService", GV_ADD));
map_token_to_hash(token_mapping_webkdc_service,
&token->token.webkdc_service, hash);
break;
case WA_TOKEN_UNKNOWN:
case WA_TOKEN_ANY:
default:
croak("unknown token type %d", token->type);
break;
}
/*
* Stash a reference to the context in the generated hash. XS will have
* automatically unwrapped a struct webauth_context from an SV for us in
* the preamble, but we want to reuse the SV used by Perl, so store the
* contents of our first argument directly.
*/
if (hv_stores(hash, "ctx", ST(0)) == NULL)
croak("cannot store context in hash");
SvREFCNT_inc(ST(0));
RETVAL = object;
}
OUTPUT:
RETVAL
SV *
token_decrypt(self, input, ring)
WebAuth self
SV *input
WebAuth::Keyring ring
PREINIT:
const void *encoded;
STRLEN length;
int status;
void *output;
size_t outlen;
CODE:
{
CROAK_NULL_SELF(self, "WebAuth", "token_decrypt");
CROAK_NULL(ring, "WebAuth::Keyring", "WebAuth::token_decrypt");
encoded = SvPV(input, length);
status = webauth_token_decrypt(self, encoded, length, &output, &outlen,
ring->ring);
if (status != WA_ERR_NONE)
webauth_croak(self, "webauth_token_decrypt", status);
RETVAL = newSVpvn(output, outlen);
}
OUTPUT:
RETVAL
SV *
token_encrypt(self, input, ring)
WebAuth self
SV *input
WebAuth::Keyring ring
PREINIT:
const void *data;
STRLEN length;
int status;
void *output;
size_t outlen;
CODE:
{
CROAK_NULL_SELF(self, "WebAuth", "token_encrypt");
CROAK_NULL(ring, "WebAuth::Keyring", "WebAuth::token_encrypt");
data = SvPV(input, length);
status = webauth_token_encrypt(self, data, length, &output, &outlen,
ring->ring);
if (status != WA_ERR_NONE)
webauth_croak(self, "webauth_token_encrypt", status);
RETVAL = newSVpvn(output, outlen);
}
OUTPUT:
RETVAL
MODULE = WebAuth PACKAGE = WebAuth::Key
enum webauth_key_type
type(self)
WebAuth::Key self
CODE:
{
CROAK_NULL_SELF(self, "WebAuth::Key", "type");
RETVAL = self->type;
}
OUTPUT:
RETVAL
enum webauth_key_size
length(self)
WebAuth::Key self
CODE:
{
CROAK_NULL_SELF(self, "WebAuth::Key", "length");
RETVAL = self->length;
}
OUTPUT:
RETVAL
SV *
data(self)
WebAuth::Key self
CODE:
{
CROAK_NULL_SELF(self, "WebAuth::Key", "data");
RETVAL = newSVpvn((const void *) self->data, self->length);
}
OUTPUT:
RETVAL
MODULE = WebAuth PACKAGE = WebAuth::Keyring
void
DESTROY(self)
WebAuth::Keyring self
CODE:
free(self);
void
add(self, creation, valid_after, key)
WebAuth::Keyring self
time_t creation
time_t valid_after
WebAuth::Key key
PREINIT:
int s;
PPCODE:
{
CROAK_NULL_SELF(self, "WebAuth::Keyring", "add");
CROAK_NULL(key, "WebAuth::Key", "WebAuth::Keyring::add");
webauth_keyring_add(self->ctx, self->ring, creation, valid_after, key);
XSRETURN_YES;
}
WebAuth::Key
best_key(self, usage, hint)
WebAuth::Keyring self
enum webauth_key_usage usage
time_t hint
PREINIT:
const struct webauth_key *key;
int s;
CODE:
{
CROAK_NULL_SELF(self, "WebAuth::Keyring", "best_key");
s = webauth_keyring_best_key(self->ctx, self->ring, usage, hint, &key);
if (s == WA_ERR_NONE)
RETVAL = key;
else if (s == WA_ERR_NOT_FOUND)
RETVAL = NULL;
else
webauth_croak(self->ctx, "webauth_keyring_best_key", s);
}
OUTPUT:
RETVAL
SV *
encode(self)
WebAuth::Keyring self
PREINIT:
int s;
char *data;
size_t length;
CODE:
{
CROAK_NULL_SELF(self, "WebAuth::Keyring", "encode");
s = webauth_keyring_encode(self->ctx, self->ring, &data, &length);
if (s != WA_ERR_NONE)
webauth_croak(self->ctx, "webauth_keyring_encode", s);
RETVAL = newSVpvn(data, length);
}
OUTPUT:
RETVAL
void
entries(self)
WebAuth::Keyring self
PREINIT:
struct webauth_keyring *ring;
PPCODE:
{
CROAK_NULL_SELF(self, "WebAuth::Keyring", "entries");
ring = self->ring;
if (GIMME_V == G_ARRAY) {
struct webauth_keyring_entry *e;
SV *entry;
size_t i;
for (i = 0; i < (size_t) ring->entries->nelts; i++) {
e = &APR_ARRAY_IDX(ring->entries, i, struct webauth_keyring_entry);
entry = sv_newmortal();
sv_setref_pv(entry, "WebAuth::KeyringEntry", e);
SvREADONLY_on(entry);
XPUSHs(entry);
}
} else {
ST(0) = newSViv(ring->entries->nelts);
sv_2mortal(ST(0));
XSRETURN(1);
}
}
void
remove(self, n)
WebAuth::Keyring self
size_t n
PREINIT:
int s;
PPCODE:
{
CROAK_NULL_SELF(self, "WebAuth::Keyring", "remove");
s = webauth_keyring_remove(self->ctx, self->ring, n);
if (s != WA_ERR_NONE)
webauth_croak(self->ctx, "webauth_keyring_remove", s);
XSRETURN_YES;
}
void
write(self, path)
WebAuth::Keyring self
char *path
PREINIT:
int s;
PPCODE:
{
CROAK_NULL_SELF(self, "WebAuth::Keyring", "write");
s = webauth_keyring_write(self->ctx, self->ring, path);
if (s != WA_ERR_NONE)
webauth_croak(self->ctx, "webauth_keyring_write", s);
XSRETURN_YES;
}
MODULE = WebAuth PACKAGE = WebAuth::KeyringEntry
time_t
creation(self)
WebAuth::KeyringEntry self
CODE:
{
CROAK_NULL_SELF(self, "WebAuth::KeyringEntry", "creation");
RETVAL = self->creation;
}
OUTPUT:
RETVAL
time_t
valid_after(self)
WebAuth::KeyringEntry self
CODE:
{
CROAK_NULL_SELF(self, "WebAuth::KeyringEntry", "valid_after");
RETVAL = self->valid_after;
}
OUTPUT:
RETVAL
WebAuth::Key
key(self)
WebAuth::KeyringEntry self
CODE:
{
CROAK_NULL_SELF(self, "WebAuth::KeyringEntry", "key");
RETVAL = self->key;
}
OUTPUT:
RETVAL
MODULE = WebAuth PACKAGE = WebAuth::Krb5
void
DESTROY(self)
WebAuth::Krb5 self
PREINIT:
struct webauth_context *ctx;
CODE:
{
if (self == NULL)
return;
ctx = get_ctx(self->ctx, "WebAuth::Krb5");
webauth_krb5_free(ctx, self->kc);
SvREFCNT_dec(self->ctx);
free(self);
}
void
init_via_cache(self, cache = NULL)
WebAuth::Krb5 self
const char *cache
PREINIT:
int status;
struct webauth_context *ctx;
CODE:
{
CROAK_NULL_SELF(self, "WebAuth::Krb5", "init_via_cache");
if (cache != NULL && cache[0] == '\0')
cache = NULL;
ctx = get_ctx(self->ctx, "WebAuth::Krb5");
status = webauth_krb5_init_via_cache(ctx, self->kc, cache);
if (status != WA_ERR_NONE)
webauth_croak(ctx, "webauth_krb5_init_via_cache", status);
}
void
init_via_keytab(self, keytab, server = NULL, cache = NULL)
WebAuth::Krb5 self
const char *keytab
const char *server
const char *cache
PREINIT:
int status;
struct webauth_context *ctx;
CODE:
{
CROAK_NULL_SELF(self, "WebAuth::Krb5", "init_via_keytab");
if (server != NULL && server[0] == '\0')
server = NULL;
ctx = get_ctx(self->ctx, "WebAuth::Krb5");
status = webauth_krb5_init_via_keytab(ctx, self->kc, keytab, server,
cache);
if (status != WA_ERR_NONE)
webauth_croak(ctx, "webauth_krb5_init_via_keytab", status);
}
const char *
init_via_password(self, username, password, principal = NULL, keytab = NULL, \
server = NULL, cache = NULL)
WebAuth::Krb5 self
const char *username
const char *password
const char *principal
const char *keytab
const char *server
const char *cache
PREINIT:
char *servername;
int status;
struct webauth_context *ctx;
CODE:
{
CROAK_NULL_SELF(self, "WebAuth::Krb5", "init_via_password");
if (principal != NULL && principal[0] == '\0')
principal = NULL;
if (server != NULL && server[0] == '\0')
server = NULL;
ctx = get_ctx(self->ctx, "WebAuth::Krb5");
status = webauth_krb5_init_via_password(ctx, self->kc, username, password,
principal, keytab, server, cache,
&servername);
if (status != WA_ERR_NONE)
webauth_croak(ctx, "webauth_krb5_init_via_password", status);
else if (principal == NULL && keytab != NULL)
RETVAL = servername;
else
XSRETURN_UNDEF;
}
OUTPUT:
RETVAL
void
export_cred(self, principal = NULL)
WebAuth::Krb5 self
const char *principal
PPCODE:
{
void *cred;
size_t cred_len;
time_t expiration;
SV *out;
int status;
struct webauth_context *ctx;
CROAK_NULL_SELF(self, "WebAuth::Krb5", "export_cred");
if (principal != NULL && principal[0] == '\0')
principal = NULL;
ctx = get_ctx(self->ctx, "WebAuth::Krb5");
status = webauth_krb5_export_cred(ctx, self->kc, principal, &cred,
&cred_len, &expiration);
if (status != WA_ERR_NONE)
webauth_croak(ctx, "webauth_krb5_export_cred", status);
/*
* Return just the exported cred in scalar context, and an array of the
* cred and the expiration time in an array context.
*/
out = sv_newmortal();
sv_setpvn(out, cred, cred_len);
if (GIMME_V == G_ARRAY) {
EXTEND(SP, 2);
PUSHs(out);
PUSHs(sv_2mortal(newSViv(expiration)));
} else {
EXTEND(SP, 1);
PUSHs(out);
}
}
void
import_cred(self, cred, cache = NULL)
WebAuth::Krb5 self
SV *cred
const char *cache
PREINIT:
const void *data;
size_t length;
int status;
struct webauth_context *ctx;
CODE:
{
CROAK_NULL_SELF(self, "WebAuth::Krb5", "import_cred");
ctx = get_ctx(self->ctx, "WebAuth::Krb5");
data = SvPV(cred, length);
status = webauth_krb5_import_cred(ctx, self->kc, data, length, cache);
if (status != WA_ERR_NONE)
webauth_croak(ctx, "webauth_krb5_import_cred", status);
}
char *
get_principal(self, canon = 0)
WebAuth::Krb5 self
enum webauth_krb5_canon canon
PREINIT:
int status;
char *principal;
struct webauth_context *ctx;
CODE:
{
CROAK_NULL_SELF(self, "WebAuth::Krb5", "get_principal");
ctx = get_ctx(self->ctx, "WebAuth::Krb5");
status = webauth_krb5_get_principal(ctx, self->kc, &principal, canon);
if (status != WA_ERR_NONE)
webauth_croak(ctx, "webauth_krb5_get_principal", status);
RETVAL = principal;
}
OUTPUT:
RETVAL
void
make_auth(self, server, data = NULL)
WebAuth::Krb5 self
const char *server
SV *data
PPCODE:
{
void *req, *out_data;
SV *result, *out;
size_t length, out_length;
const void *in_data = NULL;
size_t in_length = 0;
int status;
struct webauth_context *ctx;
CROAK_NULL_SELF(self, "WebAuth::Krb5", "make_auth");
ctx = get_ctx(self->ctx, "WebAuth::Krb5");
if (data != NULL)
in_data = SvPV(data, in_length);
status = webauth_krb5_make_auth_data(ctx, self->kc, server, &req, &length,
in_data, in_length, &out_data,
&out_length);
if (status != WA_ERR_NONE)
webauth_croak(ctx, "webauth_krb5_make_auth_data", status);
/*
* Return just the authenticator in scalar context, and an array of the
* authenticator and the encrypted data in array context, unless no data
* was given.
*/
result = sv_newmortal();
sv_setpvn(result, req, length);
if (data != NULL && GIMME_V == G_ARRAY) {
EXTEND(SP, 2);
PUSHs(result);
out = sv_newmortal();
sv_setpvn(out, out_data, out_length);
PUSHs(out);
} else {
EXTEND(SP, 1);
PUSHs(result);
}
}
void
read_auth(self, request, keytab, server = NULL, canon = 0, data = NULL)
WebAuth::Krb5 self
SV *request
const char *keytab
const char *server
enum webauth_krb5_canon canon
SV *data
PPCODE:
{
const void *req;
const void *in_data = NULL;
void *out_data;
size_t req_len, out_len;
size_t in_len = 0;
char *client;
SV *out;
int status;
struct webauth_context *ctx;
CROAK_NULL_SELF(self, "WebAuth::Krb5", "read_auth");
if (server != NULL && server[0] == '\0')
server = NULL;
ctx = get_ctx(self->ctx, "WebAuth::Krb5");
req = SvPV(request, req_len);
if (data != NULL)
in_data = SvPV(data, in_len);
status = webauth_krb5_read_auth_data(ctx, self->kc, req, req_len, keytab,
server, NULL, &client, canon,
in_data, in_len, &out_data, &out_len);
if (status != WA_ERR_NONE)
webauth_croak(ctx, "webauth_krb5_read_auth_data", status);
/*
* Return just the client identity in scalar context, and an array of the
* client identity and the decrypted data in array context, unless no data
* was given.
*/
if (data != NULL && GIMME_V == G_ARRAY)
EXTEND(SP, 2);
else
EXTEND(SP, 1);
PUSHs(sv_2mortal(newSVpv(client, 0)));
if (data != NULL && GIMME_V == G_ARRAY) {
out = sv_newmortal();
sv_setpvn(out, out_data, out_len);
PUSHs(out);
}
}
void
change_password(self, password, args = NULL)
WebAuth::Krb5 self
const char *password
HV *args
PREINIT:
int status;
struct webauth_context *ctx;
struct webauth_krb5_change_config config;
SV **value;
const char *protocol;
CODE:
{
CROAK_NULL_SELF(self, "WebAuth::Krb5", "change_password");
ctx = get_ctx(self->ctx, "WebAuth::Krb5");
/*
* If there are any arguments, we need to convert those into a
* webauth_krb5_change_config struct and set them in the context. If
* there aren't, clear the configuration to force the use of defaults.
*/
memset(&config, 0, sizeof(config));
if (args != NULL) {
value = hv_fetchs(args, "protocol", 0);
protocol = SvPV_nolen(*value);
if (strcmp("kpasswd", protocol) == 0)
config.protocol = WA_CHANGE_KPASSWD;
else if (strcmp("remctl", protocol) == 0)
config.protocol = WA_CHANGE_REMCTL;
else
croak("invalid password change protocol %s", protocol);
value = hv_fetchs(args, "host", 0);
if (value != NULL)
config.host = SvPV_nolen(*value);
value = hv_fetchs(args, "port", 0);
if (value != NULL)
config.port = SvIV(*value);
value = hv_fetchs(args, "identity", 0);
if (value != NULL)
config.identity = SvPV_nolen(*value);
value = hv_fetchs(args, "command", 0);
if (value != NULL)
config.command = SvPV_nolen(*value);
value = hv_fetchs(args, "subcommand", 0);
if (value != NULL)
config.subcommand = SvPV_nolen(*value);
value = hv_fetchs(args, "timeout", 0);
if (value != NULL)
config.timeout = SvIV(*value);
}
status = webauth_krb5_change_config(ctx, self->kc, &config);
if (status != WA_ERR_NONE)
webauth_croak(ctx, "webauth_krb5_change_config", status);
/* Do the actual password change. */
status = webauth_krb5_change_password(ctx, self->kc, password);
if (status != WA_ERR_NONE)
webauth_croak(ctx, "webauth_krb5_change_password", status);
}
MODULE = WebAuth PACKAGE = WebAuth::Token
const char *
encode(self, ring)
SV *self
WebAuth::Keyring ring
PREINIT:
HV *hash;
SV **ctx_sv;
IV ctx_iv;
struct webauth_context *ctx;
struct webauth_token token;
int status;
const char *output;
CODE:
{
CROAK_NULL(ring, "WebAuth::Keyring", "WebAuth::Token::encode");
if (!sv_derived_from(self, "WebAuth::Token"))
croak("self is not of type WebAuth::Token");
hash = (HV *) SvRV(self);
/*
* Pull the context from the hash. Our typemap wraps the context by
* storing it as the IV of the scalar, so we undo that wrapping here.
*/
ctx_sv = hv_fetch(hash, "ctx", strlen("ctx"), 0);
if (ctx_sv == NULL)
croak("no WebAuth context in WebAuth::Token object");
ctx_iv = SvIV((SV *) SvRV(*ctx_sv));
ctx = INT2PTR(struct webauth_context *, ctx_iv);
/* Copy our hash contents to the appropriate struct. */
memset(&token, 0, sizeof(token));
if (sv_derived_from(self, "WebAuth::Token::App")) {
token.type = WA_TOKEN_APP;
map_hash_to_token(token_mapping_app, hash, &token.token.app);
} else if (sv_derived_from(self, "WebAuth::Token::Cred")) {
token.type = WA_TOKEN_CRED;
map_hash_to_token(token_mapping_cred, hash, &token.token.cred);
} else if (sv_derived_from(self, "WebAuth::Token::Error")) {
token.type = WA_TOKEN_ERROR;
map_hash_to_token(token_mapping_error, hash, &token.token.error);
} else if (sv_derived_from(self, "WebAuth::Token::Id")) {
token.type = WA_TOKEN_ID;
map_hash_to_token(token_mapping_id, hash, &token.token.id);
} else if (sv_derived_from(self, "WebAuth::Token::Login")) {
token.type = WA_TOKEN_LOGIN;
map_hash_to_token(token_mapping_login, hash, &token.token.login);
} else if (sv_derived_from(self, "WebAuth::Token::Proxy")) {
token.type = WA_TOKEN_PROXY;
map_hash_to_token(token_mapping_proxy, hash, &token.token.proxy);
} else if (sv_derived_from(self, "WebAuth::Token::Request")) {
token.type = WA_TOKEN_REQUEST;
map_hash_to_token(token_mapping_request, hash, &token.token.request);
} else if (sv_derived_from(self, "WebAuth::Token::WebKDCFactor")) {
token.type = WA_TOKEN_WEBKDC_FACTOR;
map_hash_to_token(token_mapping_webkdc_factor, hash,
&token.token.webkdc_factor);
} else if (sv_derived_from(self, "WebAuth::Token::WebKDCProxy")) {
token.type = WA_TOKEN_WEBKDC_PROXY;
map_hash_to_token(token_mapping_webkdc_proxy, hash,
&token.token.webkdc_proxy);
} else if (sv_derived_from(self, "WebAuth::Token::WebKDCService")) {
token.type = WA_TOKEN_WEBKDC_SERVICE;
map_hash_to_token(token_mapping_webkdc_service, hash,
&token.token.webkdc_service);
} else {
croak("self is not a supported WebAuth::Token::* object");
}
/* Do the actual encoding. */
status = webauth_token_encode(ctx, &token, ring->ring, &output);
if (status != WA_ERR_NONE)
webauth_croak(ctx, "webauth_token_encode", status);
RETVAL = output;
}
OUTPUT:
RETVAL
|