| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462 |
- /** BEGIN COPYRIGHT BLOCK
- * Copyright (C) 2005 Red Hat, Inc.
- * All rights reserved.
- *
- * License: GPL (version 3 or any later version).
- * See LICENSE for details.
- * END COPYRIGHT BLOCK **/
- #ifdef HAVE_CONFIG_H
- # include <config.h>
- #endif
- #include <security/pam_appl.h>
- #include "pam_passthru.h"
- /*
- * PAM is not thread safe. We have to execute any PAM API calls in
- * a critical section. This is the lock that protects that code.
- */
- static Slapi_Mutex *PAMLock;
- /* Utility struct to wrap strings to avoid mallocs if possible - use
- stack allocated string space */
- #define MY_STATIC_BUF_SIZE 256
- typedef struct my_str_buf {
- char fixbuf[MY_STATIC_BUF_SIZE];
- char *str;
- } MyStrBuf;
- static char *
- init_my_str_buf(MyStrBuf *buf, const char *s)
- {
- PR_ASSERT(buf);
- if (s && (strlen(s) < sizeof(buf->fixbuf))) {
- strcpy(buf->fixbuf, s);
- buf->str = buf->fixbuf;
- } else {
- buf->str = slapi_ch_strdup(s);
- buf->fixbuf[0] = 0;
- }
- return buf->str;
- }
- static void
- delete_my_str_buf(MyStrBuf *buf)
- {
- if (buf->str != buf->fixbuf) {
- slapi_ch_free_string(&(buf->str));
- }
- }
- /* for third arg to pam_start */
- struct my_pam_conv_str {
- Slapi_PBlock *pb;
- char *pam_identity;
- };
- /*
- * Get the PAM identity from the value of the leftmost RDN in the BIND DN.
- */
- static char *
- derive_from_bind_dn(Slapi_PBlock *pb, const Slapi_DN *bindsdn, MyStrBuf *pam_id)
- {
- Slapi_RDN *rdn;
- char *type = NULL;
- char *value = NULL;
- rdn = slapi_rdn_new_sdn(bindsdn);
- slapi_rdn_get_first(rdn, &type, &value);
- init_my_str_buf(pam_id, value);
- slapi_rdn_free(&rdn);
- return pam_id->str;
- }
- static char *
- derive_from_bind_entry(Slapi_PBlock *pb, const Slapi_DN *bindsdn,
- MyStrBuf *pam_id, char *map_ident_attr, int *locked)
- {
- Slapi_Entry *entry = NULL;
- char *attrs[] = { NULL, NULL };
- attrs[0] = map_ident_attr;
- int rc = slapi_search_internal_get_entry((Slapi_DN *)bindsdn, attrs, &entry,
- pam_passthruauth_get_plugin_identity());
- if (rc != LDAP_SUCCESS) {
- slapi_log_error(SLAPI_LOG_ERR, PAM_PASSTHRU_PLUGIN_SUBSYSTEM,
- "derive_from_bind_entry - Could not find BIND dn %s (error %d - %s)\n",
- slapi_sdn_get_ndn(bindsdn), rc, ldap_err2string(rc));
- init_my_str_buf(pam_id, NULL);
- } else if (NULL == entry) {
- slapi_log_error(SLAPI_LOG_ERR, PAM_PASSTHRU_PLUGIN_SUBSYSTEM,
- "derive_from_bind_entry - Could not find entry for BIND dn %s\n",
- slapi_sdn_get_ndn(bindsdn));
- init_my_str_buf(pam_id, NULL);
- } else if (slapi_check_account_lock( pb, entry, 0, 0, 0 ) == 1) {
- slapi_log_error(SLAPI_LOG_ERR, PAM_PASSTHRU_PLUGIN_SUBSYSTEM,
- "derive_from_bind_entry - Account %s inactivated.\n",
- slapi_sdn_get_ndn(bindsdn));
- init_my_str_buf(pam_id, NULL);
- *locked = 1;
- } else {
- char *val = slapi_entry_attr_get_charptr(entry, map_ident_attr);
- init_my_str_buf(pam_id, val);
- slapi_ch_free_string(&val);
- }
- slapi_entry_free(entry);
- return pam_id->str;
- }
- static void
- report_pam_error(char *str, int rc, pam_handle_t *pam_handle)
- {
- if (rc != PAM_SUCCESS) {
- slapi_log_error(SLAPI_LOG_ERR, PAM_PASSTHRU_PLUGIN_SUBSYSTEM,
- "report_pam_error - %s (%d: %s)\n",
- str, rc, pam_strerror(pam_handle, rc));
- }
- }
- /* returns a berval value as a null terminated string */
- static char *strdupbv(struct berval *bv)
- {
- char *str = slapi_ch_malloc(bv->bv_len+1);
- memcpy(str, bv->bv_val, bv->bv_len);
- str[bv->bv_len] = 0;
- return str;
- }
- static void
- free_pam_response(int nresp, struct pam_response *resp)
- {
- int ii;
- for (ii = 0; ii < nresp; ++ii) {
- if (resp[ii].resp) {
- slapi_ch_free((void **)&(resp[ii].resp));
- }
- }
- slapi_ch_free((void **)&resp);
- }
- /*
- * This is the conversation function passed into pam_start(). This is what sets the password
- * that PAM uses to authenticate. This function is sort of stupid - it assumes all echo off
- * or binary prompts are for the password, and other prompts are for the username. Time will
- * tell if this is actually the case.
- */
- static int
- pam_conv_func(int num_msg, const struct pam_message **msg, struct pam_response **resp, void *mydata)
- {
- int ii;
- struct berval *creds;
- struct my_pam_conv_str *my_data = (struct my_pam_conv_str *)mydata;
- struct pam_response *reply;
- int ret = PAM_SUCCESS;
- if (num_msg <= 0) {
- return PAM_CONV_ERR;
- }
- /* empty reply structure */
- reply = (struct pam_response *)slapi_ch_calloc(num_msg,
- sizeof(struct pam_response));
- slapi_pblock_get( my_data->pb, SLAPI_BIND_CREDENTIALS, &creds ); /* the password */
- for (ii = 0; ii < num_msg; ++ii) {
- slapi_log_error(SLAPI_LOG_PLUGIN, PAM_PASSTHRU_PLUGIN_SUBSYSTEM,
- "pam_conv_func - pam msg [%d] = %d %s\n", ii, msg[ii]->msg_style,
- msg[ii]->msg);
- /* hard to tell what prompt is for . . . */
- /* assume prompts for password are either BINARY or ECHO_OFF */
- if (msg[ii]->msg_style == PAM_PROMPT_ECHO_OFF) {
- reply[ii].resp = strdupbv(creds);
- #ifdef LINUX
- } else if (msg[ii]->msg_style == PAM_BINARY_PROMPT) {
- reply[ii].resp = strdupbv(creds);
- #endif
- } else if (msg[ii]->msg_style == PAM_PROMPT_ECHO_ON) { /* assume username */
- reply[ii].resp = slapi_ch_strdup(my_data->pam_identity);
- } else if (msg[ii]->msg_style == PAM_ERROR_MSG) {
- slapi_log_error(SLAPI_LOG_ERR, PAM_PASSTHRU_PLUGIN_SUBSYSTEM,
- "pam_conv_func - pam msg [%d] error [%s]\n", ii, msg[ii]->msg);
- } else if (msg[ii]->msg_style == PAM_TEXT_INFO) {
- slapi_log_error(SLAPI_LOG_PLUGIN, PAM_PASSTHRU_PLUGIN_SUBSYSTEM,
- "pam_conv_func - pam msg [%d] text info [%s]\n", ii, msg[ii]->msg);
- } else {
- slapi_log_error(SLAPI_LOG_ERR, PAM_PASSTHRU_PLUGIN_SUBSYSTEM,
- "pam_conv_func - Error: unknown pam message type (%d: %s)\n",
- msg[ii]->msg_style, msg[ii]->msg);
- ret = PAM_CONV_ERR;
- }
- }
- if (ret == PAM_CONV_ERR) {
- free_pam_response(num_msg, reply);
- reply = NULL;
- }
- *resp = reply;
- return ret;
- }
- /*
- * Do the actual work of authenticating with PAM. First, get the PAM identity
- * based on the method used to convert the BIND identity to the PAM identity.
- * Set up the structures that pam_start needs and call pam_start(). After
- * that, call pam_authenticate and pam_acct_mgmt. Check the various return
- * values from these functions and map them to their corresponding LDAP BIND
- * return values. Return the appropriate LDAP error code.
- * This function will also set the appropriate LDAP response controls in
- * the given pblock.
- * Since this function can be called multiple times, we only want to return
- * the errors and controls to the user if this is the final call, so the
- * final_method parameter tells us if this is the last one. Coupled with
- * the fallback argument, we can tell if we are able to send the response
- * back to the client.
- */
- static int
- do_one_pam_auth(
- Slapi_PBlock *pb,
- int method, /* get pam identity from ENTRY, RDN, or DN */
- PRBool final_method, /* which method is the last one to try */
- char *pam_service, /* name of service for pam_start() */
- char *map_ident_attr, /* for ENTRY method, name of attribute holding pam identity */
- PRBool fallback, /* if true, failure here should fallback to regular bind */
- int pw_response_requested /* do we need to send pwd policy resp control */
- )
- {
- MyStrBuf pam_id;
- const char *binddn = NULL;
- Slapi_DN *bindsdn = NULL;
- int rc = PAM_SUCCESS;
- int retcode = LDAP_SUCCESS;
- pam_handle_t *pam_handle;
- struct my_pam_conv_str my_data;
- struct pam_conv my_pam_conv = {pam_conv_func, NULL};
- char *errmsg = NULL; /* free with PR_smprintf_free */
- int locked = 0;
- slapi_pblock_get( pb, SLAPI_BIND_TARGET_SDN, &bindsdn );
- if (NULL == bindsdn) {
- errmsg = PR_smprintf("Null bind dn");
- retcode = LDAP_OPERATIONS_ERROR;
- pam_id.str = NULL; /* initialize pam_id.str */
- goto done; /* skip the pam stuff */
- }
- binddn = slapi_sdn_get_dn(bindsdn);
- if (method == PAMPT_MAP_METHOD_RDN) {
- derive_from_bind_dn(pb, bindsdn, &pam_id);
- } else if (method == PAMPT_MAP_METHOD_ENTRY) {
- derive_from_bind_entry(pb, bindsdn, &pam_id, map_ident_attr, &locked);
- } else {
- init_my_str_buf(&pam_id, binddn);
- }
- if (locked) {
- errmsg = PR_smprintf("Account inactivated. Contact system administrator.");
- retcode = LDAP_UNWILLING_TO_PERFORM; /* user inactivated */
- goto done; /* skip the pam stuff */
- }
- if (!pam_id.str) {
- errmsg = PR_smprintf("Bind DN [%s] is invalid or not found", binddn);
- retcode = LDAP_NO_SUCH_OBJECT; /* user unknown */
- goto done; /* skip the pam stuff */
- }
- /* do the pam stuff */
- my_data.pb = pb;
- my_data.pam_identity = pam_id.str;
- my_pam_conv.appdata_ptr = &my_data;
- slapi_lock_mutex(PAMLock);
- /* from this point on we are in the critical section */
- rc = pam_start(pam_service, pam_id.str, &my_pam_conv, &pam_handle);
- report_pam_error("during pam_start", rc, pam_handle);
- if (rc == PAM_SUCCESS) {
- /* use PAM_SILENT - there is no user interaction at this point */
- rc = pam_authenticate(pam_handle, 0);
- report_pam_error("during pam_authenticate", rc, pam_handle);
- /* check different types of errors here */
- if (rc == PAM_USER_UNKNOWN) {
- errmsg = PR_smprintf("User id [%s] for bind DN [%s] does not exist in PAM",
- pam_id.str, binddn);
- retcode = LDAP_NO_SUCH_OBJECT; /* user unknown */
- } else if (rc == PAM_AUTH_ERR) {
- errmsg = PR_smprintf("Invalid PAM password for user id [%s], bind DN [%s]",
- pam_id.str, binddn);
- retcode = LDAP_INVALID_CREDENTIALS; /* invalid creds */
- } else if (rc == PAM_MAXTRIES) {
- errmsg = PR_smprintf("Authentication retry limit exceeded in PAM for "
- "user id [%s], bind DN [%s]",
- pam_id.str, binddn);
- if (pw_response_requested) {
- slapi_pwpolicy_make_response_control(pb, -1, -1, LDAP_PWPOLICY_ACCTLOCKED);
- }
- retcode = LDAP_CONSTRAINT_VIOLATION; /* max retries */
- } else if (rc != PAM_SUCCESS) {
- errmsg = PR_smprintf("Unknown PAM error [%s] for user id [%s], bind DN [%s]",
- pam_strerror(pam_handle, rc), pam_id.str, binddn);
- retcode = LDAP_OPERATIONS_ERROR; /* pam config or network problem */
- }
- }
- /* if user authenticated successfully, see if there is anything we need
- to report back w.r.t. password or account lockout */
- if (rc == PAM_SUCCESS) {
- rc = pam_acct_mgmt(pam_handle, 0);
- report_pam_error("during pam_acct_mgmt", rc, pam_handle);
- /* check different types of errors here */
- if (rc == PAM_USER_UNKNOWN) {
- errmsg = PR_smprintf("User id [%s] for bind DN [%s] does not exist in PAM",
- pam_id.str, binddn);
- retcode = LDAP_NO_SUCH_OBJECT; /* user unknown */
- } else if (rc == PAM_AUTH_ERR) {
- errmsg = PR_smprintf("Invalid PAM password for user id [%s], bind DN [%s]",
- pam_id.str, binddn);
- retcode = LDAP_INVALID_CREDENTIALS; /* invalid creds */
- } else if (rc == PAM_PERM_DENIED) {
- errmsg = PR_smprintf("Access denied for PAM user id [%s], bind DN [%s]"
- " - see administrator",
- pam_id.str, binddn);
- if (pw_response_requested) {
- slapi_pwpolicy_make_response_control(pb, -1, -1, LDAP_PWPOLICY_ACCTLOCKED);
- }
- retcode = LDAP_UNWILLING_TO_PERFORM;
- } else if (rc == PAM_ACCT_EXPIRED) {
- errmsg = PR_smprintf("Expired PAM password for user id [%s], bind DN [%s]: "
- "reset required",
- pam_id.str, binddn);
- slapi_add_pwd_control(pb, LDAP_CONTROL_PWEXPIRED, 0);
- if (pw_response_requested) {
- slapi_pwpolicy_make_response_control(pb, -1, -1, LDAP_PWPOLICY_PWDEXPIRED);
- }
- retcode = LDAP_INVALID_CREDENTIALS;
- } else if (rc == PAM_NEW_AUTHTOK_REQD) { /* handled same way as ACCT_EXPIRED */
- errmsg = PR_smprintf("Expired PAM password for user id [%s], bind DN [%s]: "
- "reset required",
- pam_id.str, binddn);
- slapi_add_pwd_control(pb, LDAP_CONTROL_PWEXPIRED, 0);
- if (pw_response_requested) {
- slapi_pwpolicy_make_response_control(pb, -1, -1, LDAP_PWPOLICY_PWDEXPIRED);
- }
- retcode = LDAP_INVALID_CREDENTIALS;
- } else if (rc != PAM_SUCCESS) {
- errmsg = PR_smprintf("Unknown PAM error [%s] for user id [%s], bind DN [%s]",
- pam_strerror(pam_handle, rc), pam_id.str, binddn);
- retcode = LDAP_OPERATIONS_ERROR; /* unknown */
- }
- }
- rc = pam_end(pam_handle, rc);
- report_pam_error("during pam_end", rc, pam_handle);
- slapi_unlock_mutex(PAMLock);
- /* not in critical section any more */
- done:
- delete_my_str_buf(&pam_id);
- if ((retcode == LDAP_SUCCESS) && (rc != PAM_SUCCESS)) {
- errmsg = PR_smprintf("Unknown PAM error [%d] for user id [%s], bind DN [%s]",
- rc, pam_id.str, binddn);
- retcode = LDAP_OPERATIONS_ERROR;
- }
- if (retcode != LDAP_SUCCESS) {
- slapi_log_error(SLAPI_LOG_ERR, PAM_PASSTHRU_PLUGIN_SUBSYSTEM,
- "do_one_pam_auth - %s\n", errmsg);
- if (final_method && !fallback) {
- slapi_send_ldap_result(pb, retcode, NULL, errmsg, 0, NULL);
- }
- }
- if (errmsg) {
- PR_smprintf_free(errmsg);
- }
- return retcode;
- }
- /*
- * Perform any PAM subsystem initialization that must be done at startup time.
- * For now, this means only the PAM mutex since PAM is not thread safe.
- */
- int
- pam_passthru_pam_init( void )
- {
- if (!(PAMLock = slapi_new_mutex())) {
- return LDAP_LOCAL_ERROR;
- }
- return 0;
- }
- int
- pam_passthru_pam_free( void )
- {
- slapi_destroy_mutex(PAMLock);
- PAMLock = NULL;
- return 0;
- }
- /*
- * Entry point into the PAM auth code. Shields the rest of the app
- * from PAM API code. Get our config params, then call the actual
- * code that does the PAM auth. Can call that code up to 3 times,
- * depending on what methods are set in the config.
- */
- int
- pam_passthru_do_pam_auth(Slapi_PBlock *pb, Pam_PassthruConfig *cfg)
- {
- int rc = LDAP_SUCCESS;
- MyStrBuf pam_id_attr; /* avoid malloc if possible */
- MyStrBuf pam_service; /* avoid malloc if possible */
- int method1, method2, method3;
- PRBool final_method;
- PRBool fallback = PR_FALSE;
- int pw_response_requested;
- LDAPControl **reqctrls = NULL;
- /* get the methods and other info */
- method1 = cfg->pamptconfig_map_method1;
- method2 = cfg->pamptconfig_map_method2;
- method3 = cfg->pamptconfig_map_method3;
- init_my_str_buf(&pam_id_attr, cfg->pamptconfig_pam_ident_attr);
- init_my_str_buf(&pam_service, cfg->pamptconfig_service);
- fallback = cfg->pamptconfig_fallback;
- slapi_pblock_get (pb, SLAPI_REQCONTROLS, &reqctrls);
- slapi_pblock_get (pb, SLAPI_PWPOLICY, &pw_response_requested);
- /* figure out which method is the last one - we only return error codes, controls
- to the client and send a response on the last method */
- final_method = (method2 == PAMPT_MAP_METHOD_NONE);
- rc = do_one_pam_auth(pb, method1, final_method, pam_service.str, pam_id_attr.str, fallback,
- pw_response_requested);
- if ((rc != LDAP_SUCCESS) && !final_method) {
- final_method = (method3 == PAMPT_MAP_METHOD_NONE);
- rc = do_one_pam_auth(pb, method2, final_method, pam_service.str, pam_id_attr.str, fallback,
- pw_response_requested);
- if ((rc != LDAP_SUCCESS) && !final_method) {
- final_method = PR_TRUE;
- rc = do_one_pam_auth(pb, method3, final_method, pam_service.str, pam_id_attr.str, fallback,
- pw_response_requested);
- }
- }
- delete_my_str_buf(&pam_id_attr);
- delete_my_str_buf(&pam_service);
- return rc;
- }
|