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
|
/*
Copyright 2005 Red Hat, Inc.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in
the documentation and/or other materials provided with the
distribution.
* Neither the name of Red Hat, Inc., nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* cyrus-sasl.c
*
* Description:
*
* This file implements SASL authentication to an LDAP server for the
* following mechanisms:
* GSSAPI, EXTERNAL, ANONYMOUS, PLAIN, DIGEST-MD5, KERBEROS_V5, LOGIN
* The mechanism to use is specified in an external file,
* LDAP_AUTH_CONF_FILE. See the samples directory in the autofs
* distribution for an example configuration file.
*
* This file is written with the intent that it will work with both the
* openldap and the netscape ldap client libraries.
*
* Author: Nalin Dahyabhai <nalin@redhat.com>
* Modified by Jeff Moyer <jmoyer@redhat.com> to adapt it to autofs.
*/
#include <sys/types.h>
#include <sys/wait.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sasl/sasl.h>
#include "automount.h"
#include "lookup_ldap.h"
#ifndef LDAP_OPT_RESULT_CODE
#ifdef LDAP_OPT_ERROR_NUMBER
#define LDAP_OPT_RESULT_CODE LDAP_OPT_ERROR_NUMBER
#else
#error "Could not determine the proper value for LDAP_OPT_RESULT_CODE."
#endif
#endif
#ifdef HAVE_KRB5_PRINCIPAL_GET_REALM
void _krb5_princ_realm(krb5_context context, krb5_const_principal princ,
const char **realm, int *len)
{
*realm = krb5_principal_get_realm(context, princ);
if (*realm)
*len = strlen(*realm);
else
*len = 0;
return;
}
#else
void _krb5_princ_realm(krb5_context context, krb5_const_principal princ,
const char **realm, int *len)
{
const krb5_data *data;
data = krb5_princ_realm(context, princ);
if (data) {
*realm = data->data;
*len = data->length;
} else {
*realm = NULL;
*len = 0;
}
return;
}
#endif
/*
* Once a krb5 credentials cache is setup, we need to set the KRB5CCNAME
* environment variable so that the library knows where to find it.
*/
static const char *krb5ccenv = "KRB5CCNAME";
static const char *krb5ccval = "MEMORY:_autofstkt";
static const char *default_client = "autofsclient";
static pthread_mutex_t krb5cc_mutex = PTHREAD_MUTEX_INITIALIZER;
static unsigned int krb5cc_in_use = 0;
static int sasl_log_func(void *, int, const char *);
static int getpass_func(sasl_conn_t *, void *, int, sasl_secret_t **);
static int getuser_func(void *, int, const char **, unsigned *);
static sasl_callback_t callbacks[] = {
{ SASL_CB_LOG, &sasl_log_func, NULL },
{ SASL_CB_USER, &getuser_func, NULL },
{ SASL_CB_AUTHNAME, &getuser_func, NULL },
{ SASL_CB_PASS, &getpass_func, NULL },
{ SASL_CB_LIST_END, NULL, NULL },
};
static char *sasl_auth_id = NULL;
static char *sasl_auth_secret = NULL;
static int
sasl_log_func(void *context, int level, const char *message)
{
switch (level) {
case SASL_LOG_ERR:
case SASL_LOG_FAIL:
logerr("%s", message);
break;
case SASL_LOG_WARN:
logmsg("%s", message);
break;
case SASL_LOG_NOTE:
logmsg("%s", message);
break;
case SASL_LOG_DEBUG:
case SASL_LOG_TRACE:
case SASL_LOG_PASS:
debug(LOGOPT_DEBUG, "%s", message);
break;
default:
break;
}
return SASL_OK;
}
static int
getuser_func(void *context, int id, const char **result, unsigned *len)
{
debug(LOGOPT_NONE, "called with context %p, id %d.", context, id);
switch (id) {
case SASL_CB_USER:
case SASL_CB_AUTHNAME:
*result = sasl_auth_id;
if (len)
*len = strlen(sasl_auth_id);
break;
default:
error(LOGOPT_VERBOSE, "unknown id in request: %d", id);
return SASL_FAIL;
}
return SASL_OK;
}
/*
* This function creates a sasl_secret_t from the credentials specified in
* the configuration file. sasl_client_auth can return SASL_OK or
* SASL_NOMEM. We simply propagate this return value to the caller.
*/
static int
getpass_func(sasl_conn_t *conn, void *context, int id, sasl_secret_t **psecret)
{
int len = strlen(sasl_auth_secret);
debug(LOGOPT_NONE, "context %p, id %d", context, id);
*psecret = (sasl_secret_t *) malloc(sizeof(sasl_secret_t) + len);
if (!*psecret)
return SASL_NOMEM;
(*psecret)->len = strlen(sasl_auth_secret);
strncpy((char *)(*psecret)->data, sasl_auth_secret, len);
return SASL_OK;
}
/*
* retrieves the supportedSASLmechanisms from the LDAP server.
*
* Return Value: the result of ldap_get_values on success, NULL on failure.
* The caller is responsible for calling ldap_value_free on
* the returned data.
*/
char **
get_server_SASL_mechanisms(unsigned logopt, LDAP *ld)
{
int ret;
const char *saslattrlist[] = {"supportedSASLmechanisms", NULL};
LDAPMessage *results = NULL, *entry;
char **mechanisms;
ret = ldap_search_ext_s(ld, "", LDAP_SCOPE_BASE, "(objectclass=*)",
(char **)saslattrlist, 0,
NULL, NULL,
NULL, LDAP_NO_LIMIT, &results);
if (ret != LDAP_SUCCESS) {
error(logopt, "%s", ldap_err2string(ret));
return NULL;
}
entry = ldap_first_entry(ld, results);
if (entry == NULL) {
/* No root DSE. (!) */
ldap_msgfree(results);
debug(logopt,
"a lookup of \"supportedSASLmechanisms\" returned "
"no results.");
return NULL;
}
mechanisms = ldap_get_values(ld, entry, "supportedSASLmechanisms");
ldap_msgfree(results);
if (mechanisms == NULL) {
/* Well, that was a waste of time. */
info(logopt, "No SASL authentication mechanisms are supported"
" by the LDAP server.");
return NULL;
}
return mechanisms;
}
/*
* Returns 0 upon successful connect, -1 on failure.
*/
int
do_sasl_bind(unsigned logopt, LDAP *ld, sasl_conn_t *conn, const char **clientout,
unsigned int *clientoutlen, const char *auth_mech, int sasl_result)
{
int ret, msgid, bind_result = LDAP_OTHER;
struct berval client_cred, *server_cred, temp_cred;
LDAPMessage *results;
int have_data, expected_data;
do {
/* Take whatever client data we have and send it to the
* server. */
client_cred.bv_val = (char *)*clientout;
client_cred.bv_len = *clientoutlen;
ret = ldap_sasl_bind(ld, NULL, auth_mech,
(client_cred.bv_len > 0) ?
&client_cred : NULL,
NULL, NULL, &msgid);
if (ret != LDAP_SUCCESS) {
crit(logopt,
"Error sending sasl_bind request to "
"the server: %s", ldap_err2string(ret));
return -1;
}
/* Wait for a result message for this bind request. */
results = NULL;
ret = ldap_result(ld, msgid, LDAP_MSG_ALL, NULL, &results);
if (ret != LDAP_RES_BIND) {
crit(logopt,
"Error while waiting for response to "
"sasl_bind request: %s", ldap_err2string(ret));
return -1;
}
/* Retrieve the result code for the bind request and
* any data which the server sent. */
server_cred = NULL;
ret = ldap_parse_sasl_bind_result(ld, results,
&server_cred, 0);
ldap_msgfree(results);
/* Okay, here's where things get tricky. Both
* Mozilla's LDAP SDK and OpenLDAP store the result
* code which was returned by the server in the
* handle's ERROR_NUMBER option. Mozilla returns
* LDAP_SUCCESS if the data was parsed correctly, even
* if the result was an error, while OpenLDAP returns
* the result code. I'm leaning toward Mozilla being
* more correct.
* In either case, we stuff the result into bind_result.
*/
if (ret == LDAP_SUCCESS) {
/* Mozilla? */
ret = ldap_get_option(ld, LDAP_OPT_RESULT_CODE,
&bind_result);
if (ret != LDAP_SUCCESS) {
crit(logopt,
"Error retrieving response to sasl_bind "
"request: %s", ldap_err2string(ret));
ret = -1;
break;
}
} else {
/* OpenLDAP? */
switch (ret) {
case LDAP_SASL_BIND_IN_PROGRESS:
bind_result = ret;
break;
default:
warn(logopt,
"Error parsing response to sasl_bind "
"request: %s.", ldap_err2string(ret));
break;
}
}
/*
* The LDAP server is supposed to send a NULL value for
* server_cred if there was no data. However, *some*
* server implementations get this wrong, and instead send
* an empty string. We check for both.
*/
have_data = server_cred != NULL && server_cred->bv_len > 0;
/*
* If the result of the sasl_client_start is SASL_CONTINUE,
* then the server should have sent us more data.
*/
expected_data = sasl_result == SASL_CONTINUE;
if (have_data && !expected_data) {
warn(logopt,
"The LDAP server sent data in response to our "
"bind request, but indicated that the bind was "
"complete. LDAP SASL bind with mechansim %s "
"failed.", auth_mech);
ret = -1;
break;
}
if (expected_data && !have_data) {
warn(logopt,
"The LDAP server indicated that the LDAP SASL "
"bind was incomplete, but did not provide the "
"required data to proceed. LDAP SASL bind with "
"mechanism %s failed.", auth_mech);
ret = -1;
break;
}
/* If we need another round trip, process whatever we
* received and prepare data to be transmitted back. */
if ((sasl_result == SASL_CONTINUE) &&
((bind_result == LDAP_SUCCESS) ||
(bind_result == LDAP_SASL_BIND_IN_PROGRESS))) {
if (server_cred != NULL) {
temp_cred = *server_cred;
} else {
temp_cred.bv_len = 0;
temp_cred.bv_val = NULL;
}
sasl_result = sasl_client_step(conn,
temp_cred.bv_val,
temp_cred.bv_len,
NULL,
clientout,
clientoutlen);
/* If we have data to send, then the server
* had better be expecting it. (It's valid
* to send the server no data with a request.)
*/
if ((*clientoutlen > 0) &&
(bind_result != LDAP_SASL_BIND_IN_PROGRESS)) {
warn(logopt,
"We have data for the server, "
"but it thinks we are done!");
/* XXX should print out debug data here */
ret = -1;
}
}
if (server_cred && server_cred->bv_len > 0) {
ber_bvfree(server_cred);
server_cred = NULL;
}
} while ((bind_result == LDAP_SASL_BIND_IN_PROGRESS) ||
(sasl_result == SASL_CONTINUE));
if (server_cred && server_cred->bv_len > 0)
ber_bvfree(server_cred);
return ret;
}
/*
* Read client credentials from the default keytab, create a credentials
* cache, add the TGT to that cache, and set the environment variable so
* that the sasl/krb5 libraries can find our credentials.
*
* Returns 0 upon success. ctxt->kinit_successful is set for cleanup
* purposes. The krb5 context and ccache entries in the lookup_context
* are also filled in.
*
* Upon failure, -1 is returned.
*/
int
sasl_do_kinit(unsigned logopt, struct lookup_context *ctxt)
{
krb5_error_code ret;
krb5_principal tgs_princ, krb5_client_princ;
krb5_creds my_creds;
char *tgs_name;
const char *realm_name;
int status, realm_length;
status = pthread_mutex_lock(&krb5cc_mutex);
if (status)
fatal(status);
if (ctxt->kinit_successful) {
status = pthread_mutex_unlock(&krb5cc_mutex);
if (status)
fatal(status);
return 0;
}
debug(logopt,
"initializing kerberos ticket: client principal %s",
ctxt->client_princ ? ctxt->client_princ : default_client);
ret = krb5_init_context(&ctxt->krb5ctxt);
if (ret) {
error(logopt, "krb5_init_context failed with %d", ret);
goto out_unlock;
}
ret = krb5_cc_resolve(ctxt->krb5ctxt, krb5ccval, &ctxt->krb5_ccache);
if (ret) {
error(logopt, "krb5_cc_resolve failed with error %d",
ret);
goto out_free_context;
}
if (ctxt->client_princ) {
debug(logopt,
"calling krb5_parse_name on client principal %s",
ctxt->client_princ);
ret = krb5_parse_name(ctxt->krb5ctxt, ctxt->client_princ,
&krb5_client_princ);
if (ret) {
error(logopt,
"krb5_parse_name failed for "
"specified client principal %s",
ctxt->client_princ);
goto out_cleanup_cc;
}
} else {
char *tmp_name = NULL;
debug(logopt,
"calling krb5_sname_to_principal using defaults");
ret = krb5_sname_to_principal(ctxt->krb5ctxt, NULL,
default_client, KRB5_NT_SRV_HST,
&krb5_client_princ);
if (ret) {
error(logopt,
"krb5_sname_to_principal failed for "
"%s with error %d", default_client, ret);
goto out_cleanup_cc;
}
ret = krb5_unparse_name(ctxt->krb5ctxt,
krb5_client_princ, &tmp_name);
if (ret) {
debug(logopt,
"krb5_unparse_name failed with error %d",
ret);
goto out_cleanup_client_princ;
}
debug(logopt,
"principal used for authentication: %s", tmp_name);
krb5_free_unparsed_name(ctxt->krb5ctxt, tmp_name);
}
/* setup a principal for the ticket granting service */
_krb5_princ_realm(ctxt->krb5ctxt, krb5_client_princ, &realm_name, &realm_length);
ret = krb5_build_principal_ext(ctxt->krb5ctxt, &tgs_princ,
realm_length, realm_name,
strlen(KRB5_TGS_NAME), KRB5_TGS_NAME,
realm_length, realm_name,
0);
if (ret) {
error(logopt,
"krb5_build_principal failed with error %d", ret);
goto out_cleanup_client_princ;
}
ret = krb5_unparse_name(ctxt->krb5ctxt, tgs_princ, &tgs_name);
if (ret) {
error(logopt, "krb5_unparse_name failed with error %d",
ret);
goto out_cleanup_client_princ;
}
debug(logopt, "Using tgs name %s", tgs_name);
memset(&my_creds, 0, sizeof(my_creds));
ret = krb5_get_init_creds_keytab(ctxt->krb5ctxt, &my_creds,
krb5_client_princ,
NULL /*keytab*/,
0 /* relative start time */,
tgs_name, NULL);
if (ret) {
error(logopt,
"krb5_get_init_creds_keytab failed with error %d",
ret);
goto out_cleanup_unparse;
}
if (krb5cc_in_use++ == 0)
/* tell the cache what the default principal is */
ret = krb5_cc_initialize(ctxt->krb5ctxt,
ctxt->krb5_ccache, krb5_client_princ);
if (ret) {
error(logopt,
"krb5_cc_initialize failed with error %d", ret);
goto out_cleanup_creds;
}
/* and store credentials for that principal */
ret = krb5_cc_store_cred(ctxt->krb5ctxt, ctxt->krb5_ccache, &my_creds);
if (ret) {
error(logopt,
"krb5_cc_store_cred failed with error %d", ret);
goto out_cleanup_creds;
}
/* finally, set the environment variable to point to our
* credentials cache */
if (setenv(krb5ccenv, krb5ccval, 1) != 0) {
error(logopt, "setenv failed with %d", errno);
goto out_cleanup_creds;
}
ctxt->kinit_successful = 1;
status = pthread_mutex_unlock(&krb5cc_mutex);
if (status)
fatal(status);
debug(logopt, "Kerberos authentication was successful!");
krb5_free_unparsed_name(ctxt->krb5ctxt, tgs_name);
krb5_free_cred_contents(ctxt->krb5ctxt, &my_creds);
krb5_free_principal(ctxt->krb5ctxt, tgs_princ);
krb5_free_principal(ctxt->krb5ctxt, krb5_client_princ);
return 0;
out_cleanup_creds:
krb5cc_in_use--;
krb5_free_cred_contents(ctxt->krb5ctxt, &my_creds);
out_cleanup_unparse:
krb5_free_principal(ctxt->krb5ctxt, tgs_princ);
krb5_free_unparsed_name(ctxt->krb5ctxt, tgs_name);
out_cleanup_client_princ:
krb5_free_principal(ctxt->krb5ctxt, krb5_client_princ);
out_cleanup_cc:
if (krb5cc_in_use)
ret = krb5_cc_close(ctxt->krb5ctxt, ctxt->krb5_ccache);
else
ret = krb5_cc_destroy(ctxt->krb5ctxt, ctxt->krb5_ccache);
if (ret)
warn(logopt,
"krb5_cc_destroy failed with non-fatal error %d", ret);
out_free_context:
krb5_free_context(ctxt->krb5ctxt);
out_unlock:
status = pthread_mutex_unlock(&krb5cc_mutex);
if (status)
fatal(status);
return -1;
}
/*
* Check a client given external credential cache.
*
* Returns 0 upon success. ctxt->kinit_successful is set for cleanup
* purposes. The krb5 context and ccache entries in the lookup_context
* are also filled in.
*
* Upon failure, -1 is returned.
*/
int
sasl_do_kinit_ext_cc(unsigned logopt, struct lookup_context *ctxt)
{
krb5_principal def_princ;
krb5_principal krb5_client_princ;
krb5_error_code ret;
char *cc_princ, *client_princ;
int status;
status = pthread_mutex_lock(&krb5cc_mutex);
if (status)
fatal(status);
if (ctxt->kinit_successful) {
status = pthread_mutex_unlock(&krb5cc_mutex);
if (status)
fatal(status);
return 0;
}
debug(logopt,
"using external credential cache for auth: client principal %s",
ctxt->client_princ ? ctxt->client_princ : default_client);
ret = krb5_init_context(&ctxt->krb5ctxt);
if (ret) {
error(logopt, "krb5_init_context failed with %d", ret);
goto out_unlock;
}
ret = krb5_cc_resolve(ctxt->krb5ctxt, ctxt->client_cc, &ctxt->krb5_ccache);
if (ret) {
error(logopt, "krb5_cc_resolve failed with error %d",
ret);
goto out_cleanup_cc;
}
ret = krb5_cc_get_principal(ctxt->krb5ctxt, ctxt->krb5_ccache, &def_princ);
if (ret) {
error(logopt, "krb5_cc_get_principal failed with error %d", ret);
goto out_cleanup_cc;
}
ret = krb5_unparse_name(ctxt->krb5ctxt, def_princ, &cc_princ);
if (ret) {
error(logopt, "krb5_unparse_name failed with error %d", ret);
goto out_cleanup_def_princ;
}
debug(logopt, "external credential cache default principal %s", cc_princ);
/*
* If the principal isn't set in the config construct the default
* so we can check against the default principal of the external
* cred cache.
*/
if (ctxt->client_princ)
client_princ = ctxt->client_princ;
else {
debug(logopt,
"calling krb5_sname_to_principal using defaults");
ret = krb5_sname_to_principal(ctxt->krb5ctxt, NULL,
default_client, KRB5_NT_SRV_HST,
&krb5_client_princ);
if (ret) {
error(logopt,
"krb5_sname_to_principal failed for "
"%s with error %d", default_client, ret);
krb5_free_unparsed_name(ctxt->krb5ctxt, cc_princ);
goto out_cleanup_def_princ;
}
ret = krb5_unparse_name(ctxt->krb5ctxt,
krb5_client_princ, &client_princ);
if (ret) {
debug(logopt,
"krb5_unparse_name failed with error %d",
ret);
krb5_free_principal(ctxt->krb5ctxt, krb5_client_princ);
krb5_free_unparsed_name(ctxt->krb5ctxt, cc_princ);
goto out_cleanup_def_princ;
}
debug(logopt,
"principal used for authentication: %s", client_princ);
krb5_free_principal(ctxt->krb5ctxt, krb5_client_princ);
}
/*
* Check if the principal to be used matches the default principal in
* the external cred cache.
*/
if (strcmp(cc_princ, client_princ)) {
error(logopt,
"configured client principal %s ",
ctxt->client_princ);
error(logopt,
"external credential cache default principal %s",
cc_princ);
error(logopt,
"cannot use credential cache, external "
"default principal does not match configured "
"principal");
if (!ctxt->client_princ)
krb5_free_unparsed_name(ctxt->krb5ctxt, client_princ);
krb5_free_unparsed_name(ctxt->krb5ctxt, cc_princ);
goto out_cleanup_def_princ;
}
if (!ctxt->client_princ)
krb5_free_unparsed_name(ctxt->krb5ctxt, client_princ);
krb5_free_unparsed_name(ctxt->krb5ctxt, cc_princ);
krb5_free_principal(ctxt->krb5ctxt, def_princ);
/* Set the environment variable to point to the external cred cache */
if (setenv(krb5ccenv, ctxt->client_cc, 1) != 0) {
error(logopt, "setenv failed with %d", errno);
goto out_cleanup_cc;
}
ctxt->kinit_successful = 1;
debug(logopt, "Kerberos authentication was successful!");
status = pthread_mutex_unlock(&krb5cc_mutex);
if (status)
fatal(status);
return 0;
out_cleanup_def_princ:
krb5_free_principal(ctxt->krb5ctxt, def_princ);
out_cleanup_cc:
krb5_cc_close(ctxt->krb5ctxt, ctxt->krb5_ccache);
krb5_free_context(ctxt->krb5ctxt);
out_unlock:
status = pthread_mutex_unlock(&krb5cc_mutex);
if (status)
fatal(status);
return -1;
}
/*
* Attempt to bind to the ldap server using a given authentication
* mechanism. ldap should be a properly initialzed ldap pointer.
*
* Returns a valid sasl_conn_t pointer upon success, NULL on failure.
*/
sasl_conn_t *
sasl_bind_mech(unsigned logopt, LDAP *ldap, struct lookup_context *ctxt, const char *mech)
{
sasl_conn_t *conn;
char *tmp, *host = NULL;
const char *clientout;
unsigned int clientoutlen;
const char *chosen_mech;
int result;
if (!strncmp(mech, "GSSAPI", 6)) {
if (ctxt->client_cc)
result = sasl_do_kinit_ext_cc(logopt, ctxt);
else
result = sasl_do_kinit(logopt, ctxt);
if (result != 0)
return NULL;
}
debug(logopt, "Attempting sasl bind with mechanism %s", mech);
result = ldap_get_option(ldap, LDAP_OPT_HOST_NAME, &host);
if (result != LDAP_OPT_SUCCESS || !host) {
debug(logopt, "failed to get hostname for connection");
return NULL;
}
/*
* We need a host name to start the client.
* But the ldap library can return a list of host names so
* just use the first one.
*/
if ((tmp = strchr(host, ' ')))
*tmp = '\0';
if ((tmp = strrchr(host, ':'))) {
if (*(tmp - 1) != ']') {
*tmp = '\0';
tmp = host;
} else {
*(tmp - 1) = '\0';
tmp = host;
if (*tmp == '[')
tmp++;
}
}
/* Create a new authentication context for the service. */
result = sasl_client_new("ldap", tmp, NULL, NULL, NULL, 0, &conn);
if (result != SASL_OK) {
error(logopt, "sasl_client_new failed with error %d",
result);
ldap_memfree(host);
return NULL;
}
chosen_mech = NULL;
result = sasl_client_start(conn, mech, NULL,
&clientout, &clientoutlen, &chosen_mech);
/* OK and CONTINUE are the only non-fatal return codes here. */
if ((result != SASL_OK) && (result != SASL_CONTINUE)) {
warn(logopt, "sasl_client_start failed for %s", host);
debug(logopt, "sasl_client_start: %s", sasl_errdetail(conn));
ldap_memfree(host);
sasl_dispose(&conn);
return NULL;
}
result = do_sasl_bind(logopt, ldap, conn,
&clientout, &clientoutlen, chosen_mech, result);
if (result == 0) {
ldap_memfree(host);
debug(logopt, "sasl bind with mechanism %s succeeded",
chosen_mech);
return conn;
}
info(logopt, "sasl bind with mechanism %s failed", mech);
/* sasl bind failed */
ldap_memfree(host);
sasl_dispose(&conn);
return NULL;
}
/*
* Returns 0 if a suitable authentication mechanism is available. Returns
* -1 on error or if no mechanism is supported by both client and server.
*/
sasl_conn_t *
sasl_choose_mech(unsigned logopt, LDAP *ldap, struct lookup_context *ctxt)
{
sasl_conn_t *conn = NULL;
int authenticated;
int i;
char **mechanisms;
mechanisms = get_server_SASL_mechanisms(logopt, ldap);
if (!mechanisms)
return NULL;
/* Try each supported mechanism in turn. */
authenticated = 0;
for (i = 0; mechanisms[i] != NULL; i++) {
/*
* This routine is called if there is no configured
* mechanism. As such, we can skip over any auth
* mechanisms that require user credentials. These include
* PLAIN, LOGIN, and DIGEST-MD5.
*/
if (authtype_requires_creds(mechanisms[i]))
continue;
conn = sasl_bind_mech(logopt, ldap, ctxt, mechanisms[i]);
if (conn) {
ctxt->sasl_mech = strdup(mechanisms[i]);
if (!ctxt->sasl_mech) {
crit(logopt, "Successfully authenticated with "
"mechanism %s, but failed to allocate "
"memory to hold the mechanism type.",
mechanisms[i]);
sasl_dispose(&conn);
ldap_value_free(mechanisms);
return NULL;
}
authenticated = 1;
break;
}
debug(logopt, "Failed to authenticate with mech %s",
mechanisms[i]);
}
debug(logopt, "authenticated: %d, sasl_mech: %s",
authenticated, ctxt->sasl_mech);
ldap_value_free(mechanisms);
return conn;
}
/*
* Routine called when unbinding an ldap connection.
*/
void
autofs_sasl_unbind(struct ldap_conn *conn, struct lookup_context *ctxt)
{
if (ctxt->sasl_mech && !strncmp(ctxt->sasl_mech, "EXTERNAL", 8)) {
if (conn->ldap) {
ldap_unbind_s(conn->ldap);
conn->ldap = NULL;
}
return;
}
if (conn->sasl_conn) {
sasl_dispose(&conn->sasl_conn);
conn->sasl_conn = NULL;
}
}
/*
* Given a lookup context that has been initialized with any user-specified
* parameters, figure out which sasl mechanism to use. Then, initialize
* the necessary parameters to authenticate with the chosen mechanism.
*
* Return Values:
* 0 - Success
* -1 - Failure
*/
int
autofs_sasl_bind(unsigned logopt,
struct ldap_conn *conn, struct lookup_context *ctxt)
{
sasl_conn_t *sasl_conn = NULL;
if (ctxt->sasl_mech && !strncmp(ctxt->sasl_mech, "EXTERNAL", 8)) {
int result;
debug(logopt,
"Attempting sasl bind with mechanism %s",
ctxt->sasl_mech);
result = do_sasl_extern(conn->ldap, ctxt);
if (result)
debug(logopt,
"Failed to authenticate with mech %s",
ctxt->sasl_mech);
else
debug(logopt,
"sasl bind with mechanism %s succeeded",
ctxt->sasl_mech);
return result;
}
sasl_auth_id = ctxt->user;
sasl_auth_secret = ctxt->secret;
if (ctxt->auth_required & LDAP_AUTH_AUTODETECT) {
if (ctxt->sasl_mech) {
free(ctxt->sasl_mech);
ctxt->sasl_mech = NULL;
}
}
/*
* If LDAP_AUTH_AUTODETECT is set, it means that there was no
* mechanism specified in the configuration file or auto
* selection has been requested, so try to auto-select an
* auth mechanism.
*/
if (ctxt->sasl_mech)
sasl_conn = sasl_bind_mech(logopt,
conn->ldap, ctxt, ctxt->sasl_mech);
else
sasl_conn = sasl_choose_mech(logopt, conn->ldap, ctxt);
if (!sasl_conn)
return -1;
conn->sasl_conn = sasl_conn;
return 0;
}
/*
* Destructor routine. This should be called when finished with an ldap
* session.
*/
void autofs_sasl_dispose(struct ldap_conn *conn, struct lookup_context *ctxt)
{
int status, ret;
status = pthread_mutex_lock(&krb5cc_mutex);
if (status)
fatal(status);
if (ctxt->sasl_mech && !strncmp(ctxt->sasl_mech, "EXTERNAL", 8)) {
if (conn && conn->ldap) {
ldap_unbind_s(conn->ldap);
conn->ldap = NULL;
ctxt->kinit_successful = 0;
}
status = pthread_mutex_unlock(&krb5cc_mutex);
if (status)
fatal(status);
return;
}
if (conn && conn->sasl_conn) {
sasl_dispose(&conn->sasl_conn);
conn->sasl_conn = NULL;
}
if (ctxt->kinit_successful) {
if (--krb5cc_in_use || ctxt->client_cc)
ret = krb5_cc_close(ctxt->krb5ctxt, ctxt->krb5_ccache);
else
ret = krb5_cc_destroy(ctxt->krb5ctxt, ctxt->krb5_ccache);
if (ret)
logmsg("krb5_cc_destroy failed with non-fatal error %d",
ret);
krb5_free_context(ctxt->krb5ctxt);
if (unsetenv(krb5ccenv) != 0)
logerr("unsetenv failed with error %d", errno);
ctxt->krb5ctxt = NULL;
ctxt->krb5_ccache = NULL;
ctxt->kinit_successful = 0;
}
status = pthread_mutex_unlock(&krb5cc_mutex);
if (status)
fatal(status);
}
static void *sasl_mutex_new(void)
{
pthread_mutex_t* mutex;
mutex = malloc(sizeof(pthread_mutex_t));
if (!mutex)
return 0;
pthread_mutex_init(mutex, NULL);
return (void *) mutex;
}
static int sasl_mutex_lock(void *mutex __attribute__((unused)))
{
int rc;
if (!mutex)
return SASL_FAIL;
rc = pthread_mutex_lock((pthread_mutex_t *) mutex);
return (rc==0 ? SASL_OK : SASL_FAIL);
}
static int sasl_mutex_unlock(void *mutex __attribute__((unused)))
{
int rc;
if (!mutex)
return SASL_FAIL;
rc = pthread_mutex_unlock((pthread_mutex_t *) mutex);
return (rc==0 ? SASL_OK : SASL_FAIL);
}
static void sasl_mutex_dispose(void *mutex __attribute__((unused)))
{
int rc;
if (!mutex)
return;
rc = pthread_mutex_destroy((pthread_mutex_t *) mutex);
if (rc == 0)
free(mutex);
return;
}
/*
* Initialize the sasl callbacks, which increments the global
* use counter.
*/
int autofs_sasl_client_init(unsigned logopt)
{
sasl_set_mutex(sasl_mutex_new,
sasl_mutex_lock,
sasl_mutex_unlock,
sasl_mutex_dispose);
/* Start up Cyrus SASL--only needs to be done at library load. */
if (sasl_client_init(callbacks) != SASL_OK) {
error(logopt, "sasl_client_init failed");
return 0;
}
return 1;
}
/*
* Decrement the library reference count and free resources if
* we are the last to close the library.
*/
void autofs_sasl_done(void)
{
sasl_done();
return;
}
|