krb5_authenticate.c revision 3125ebfc35130d243e775dc38a6a59be4df0b137
/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
* Copyright 2007 Sun Microsystems, Inc. All rights reserved.
* Use is subject to license terms.
*/
#pragma ident "%Z%%M% %I% %E% SMI"
#include <security/pam_appl.h>
#include <security/pam_modules.h>
#include <security/pam_impl.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <pwd.h>
#include <syslog.h>
#include <libintl.h>
#include <k5-int.h>
#include "profile/prof_int.h"
#include <netdb.h>
#include <ctype.h>
#include "utils.h"
#include "krb5_repository.h"
#define KRB5_DEFAULT_OPTIONS 0
int forwardable_flag = 0;
int renewable_flag = 0;
int proxiable_flag = 0;
int no_address_flag = 0;
{ "forwardable", &forwardable_flag, 0 },
{ "renewable", &renewable_flag, 0 },
{ "proxiable", &proxiable_flag, 0 },
{ "no_addresses", &no_address_flag, 0 },
};
char *renew_timeval;
char *life_timeval;
{ "max_life", &life_timeval, 0 },
{ "max_renewable_life", &renew_timeval, 0 },
};
void krb5_cleanup(pam_handle_t *, void *, int);
extern errcode_t profile_get_options_boolean();
extern errcode_t profile_get_options_string();
extern int krb5_verifypw(char *, char *, int);
krb5_deltat, char *, krb5_get_init_creds_opt *,
krb5_kdc_rep **);
/*
* pam_sm_authenticate - Authenticate user
*/
int
int flags,
int argc,
const char **argv)
{
int err;
int result = PAM_AUTH_ERR;
/* pam.conf options */
int debug = 0;
int warn = 1;
/* return an error on password expire */
int err_on_exp = 0;
int i;
for (i = 0; i < argc; i++) {
debug = 1;
warn = 0;
err_on_exp = 1;
} else {
"PAM-KRB5 (auth) unrecognized option %s",
argv[i]);
}
}
if (debug)
"PAM-KRB5 (auth): pam_sm_authenticate flags=%d",
flags);
if (debug)
"PAM-KRB5 (auth): user empty or null");
return (PAM_USER_UNKNOWN);
}
/* make sure a password entry exists for this user */
return (PAM_USER_UNKNOWN);
/*
* pam_get_data could fail if we are being called for the first time
* or if the module is not found, PAM_NO_MODULE_DATA is not an error
*/
return (PAM_SYSTEM_ERR);
goto out;
}
if (err != PAM_SUCCESS) {
goto out;
}
}
char buffer[512];
goto out;
}
/* we MUST copy this to the heap for the putenv to work! */
goto out;
} else {
goto out;
}
}
}
goto out;
}
/*
* For apps that already did krb5 auth exchange...
* Now that we've created the kmd structure, we can
* return SUCCESS. 'kmd' may be needed later by other
* PAM functions, thats why we wait until this point to
* return.
*/
if (debug)
"PAM-KRB5 (auth): wrong"
"repository found (%s), returning "
return (PAM_IGNORE);
}
if (debug)
"PAM-KRB5 (auth): Principal "
"%s already authenticated",
return (PAM_SUCCESS);
}
}
}
/*
* if root key exists in the keytab, it's a random key so no
* need to prompt for pw and we just return IGNORE.
*
* note we don't need to force a prompt for pw as authtok_get
* is required to be stacked above this module.
*/
if (debug)
"PAM-KRB5 (auth): "
"key for '%s' in keytab, returning IGNORE", user);
result = PAM_IGNORE;
goto out;
}
out:
if (kmd) {
if (debug)
"PAM-KRB5 (auth): pam_sm_auth finalize"
" ccname env, result =%d, env ='%s',"
" age = %d, status = %d",
if (result == PAM_SUCCESS) {
/*
* Put ccname into the pamh so that login
* apps can pick this up when they run
* pam_getenvlist().
*/
!= PAM_SUCCESS) {
/* should not happen but... */
"PAM-KRB5 (auth):"
" pam_putenv failed: result: %d",
result);
goto cleanupccname;
}
} else {
/* for lack of a Solaris unputenv() */
}
}
}
if (debug)
return (result);
}
int
char *user,
char **krb5_pass,
{
krb5_error_code code = 0;
int options = KRB5_DEFAULT_OPTIONS;
0,
};
/*
* "result" should not be assigned PAM_SUCCESS unless
* authentication has succeeded and there are no other errors.
*
* "code" is sometimes used for PAM codes, sometimes for krb5
* codes. Be careful.
*/
int result = PAM_AUTH_ERR;
"PAM-KRB5 (auth): attempt_krb5_auth: start: user='%s'",
/* need to free context with krb5_free_context */
"PAM-KRB5 (auth): Error initializing "
"krb5: %s",
return (PAM_SYSTEM_ERR);
}
2*MAXHOSTNAMELEN)) != 0) {
/* get_kmd_kuser returns proper PAM error statuses */
return (code);
}
return (PAM_SYSTEM_ERR);
}
/* call krb5_free_cred_contents() on error */
if ((code =
goto out_err;
}
"PAM-KRB5 (auth): attempt_krb5_auth: "
"krb5_build_princ_ext failed: %s",
goto out;
}
goto out_err;
}
"PAM-KRB5 (auth): attempt_krb5_auth: "
"krb5_timeofday failed: %s",
goto out;
}
/*
* set the values for lifetime and rlife to be the maximum
* possible
*/
/*
* Let us get the values for various options
* from Kerberos configuration file
*/
if (renew_timeval) {
"PAM-KRB5 (auth): Bad max_renewable_life "
" value '%s' in Kerberos config file",
goto out;
}
}
if (life_timeval) {
"lifetime value '%s' in Kerberos config file",
goto out;
}
}
/* start timer when request gets to KDC */
if (options & KDC_OPT_RENEWABLE) {
} else
if (proxiable_flag) { /* Set in config file */
"PAM-KRB5 (auth): Proxiable tickets "
"requested");
}
if (forwardable_flag) {
"PAM-KRB5 (auth): Forwardable tickets "
"requested");
}
if (renewable_flag) {
"PAM-KRB5 (auth): Renewable tickets "
"requested");
}
if (no_address_flag) {
"PAM-KRB5 (auth): Addressless tickets "
"requested");
}
/*
* mech_krb5 interprets empty passwords as NULL passwords
* and tries to read a password from stdin. Since we are in
* pam this is bad and should not be allowed.
*/
} else {
/*
* We call our own private version of gic_pwd, because we need
* is found in the as_reply. The "prompter" interface is not
* granular enough for PAM to make use of.
*/
me,
*krb5_pass, /* clear text passwd */
NULL, /* prompter */
NULL, /* data */
0, /* start time */
NULL, /* defaults to krbtgt@REALM */
&opts,
&as_reply);
}
"PAM-KRB5 (auth): attempt_krb5_auth: "
"krb5_get_init_creds_password returns: %s",
switch (code) {
case 0:
/* got a tgt, let's verify it */
if (verify_tik) {
char kt_name[MAX_KEYTAB_NAME_LEN];
char *fqdn;
NULL,
NULL,
&vopts);
if (code) {
/*
* Give a better error message when the
* keytable entry isn't found or the keytab
* file cannot be found.
*/
fqdn = "<fqdn>";
else
sizeof (kt_name)))
"default keytab",
sizeof (kt_name));
switch (code) {
case KRB5_KT_NOTFOUND:
"PAM-KRB5 (auth): "
"krb5_verify_init_creds failed:"
" Key table entry \"host/%s\""
" not found in %s",
break;
case ENOENT:
"PAM-KRB5 (auth): "
"krb5_verify_init_creds failed:"
" Keytab file \"%s\""
" does not exist.\n",
kt_name);
break;
default:
"PAM-KRB5 (auth): "
"krb5_verify_init_creds failed:"
" %s",
break;
}
if (sp)
}
}
if (code == 0)
break;
/*
* Since this principal is not part of the local
* Kerberos realm, we just return PAM_USER_UNKNOWN.
*/
"PAM-KRB5 (auth): attempt_krb5_auth:"
" User is not part of the local Kerberos"
break;
/*
* We could be trying the password from a previous
* pam authentication module, but we don't want to
* generate an error if the unix password is different
* than the Kerberos password...
*/
break;
case KRB5KDC_ERR_KEY_EXP:
if (!kmd->err_on_exp) {
/*
* Request a tik for changepw service
* and it will tell us if pw is good or not.
*/
"PAM-KRB5 (auth): attempt_krb5_auth: "
"verifypw %d", code);
if (code == 0) {
/* pw is good, set age status for acct_mgmt */
}
}
break;
default:
"PAM-KRB5 (auth): error %d - %s",
break;
}
if (code == 0) {
/*
* success for the entered pw
*
* we can't rely on the pw in PAM_AUTHTOK
* to be the (correct) krb5 one so
* store krb5 pw in module data for
* use in acct_mgmt
*/
goto out_err;
}
goto out;
}
/* jump (or reach) here if error and cred cache has been init */
"PAM-KRB5 (auth): clearing initcreds in "
"pam_authenticate()");
out:
if (server)
if (me)
if (as_reply)
}
"PAM-KRB5 (auth): attempt_krb5_auth returning %d",
result);
}
/*ARGSUSED*/
void
{
return;
"PAM-KRB5 (auth): krb5_cleanup auth_status = %d",
kmd->auth_status);
}
/*
* if pam_status is PAM_SUCCESS, clean up based on value in
* auth_status, otherwise just purge the context
*/
if ((pam_status == PAM_SUCCESS) &&
}
if ((pam_status != PAM_SUCCESS) ||
}
}