1
0
mirror of https://github.com/Yubico/yubico-pam.git synced 2024-11-29 00:24:11 +01:00
yubico-pam/pam_yubico.c

983 lines
24 KiB
C
Raw Normal View History

2009-01-13 15:08:21 +01:00
/* Written by Simon Josefsson <simon@yubico.com>.
* Copyright (c) 2006, 2007, 2008, 2009, 2010, 2011 Yubico AB
2011-03-12 15:49:50 +01:00
* Copyright (c) 2011 Tollef Fog Heen <tfheen@err.no>
2009-01-13 15:08:21 +01:00
* All rights reserved.
2008-01-11 13:41:21 +01:00
*
* Redistribution and use in source and binary forms, with or without
2009-01-13 15:08:21 +01:00
* modification, are permitted provided that the following conditions are
* met:
2008-01-11 13:41:21 +01:00
*
2009-01-13 15:08:21 +01:00
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
2008-01-11 13:41:21 +01:00
*
2009-01-13 15:08:21 +01:00
* * 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.
*
* 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.
2008-01-11 13:41:21 +01:00
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <ctype.h>
2011-03-12 15:49:50 +01:00
#include <syslog.h>
2008-01-11 13:41:21 +01:00
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
#include <string.h>
#include "util.h"
#include "drop_privs.h"
2011-12-06 13:31:25 +01:00
#if HAVE_CR
/* for yubikey_hex_decode and yubikey_hex_p */
#include <yubikey.h>
#endif /* HAVE_CR */
2008-01-11 13:41:21 +01:00
/* Libtool defines PIC for shared objects */
#ifndef PIC
#define PAM_STATIC
#endif
/* These #defines must be present according to PAM documentation. */
#define PAM_SM_AUTH
#ifdef HAVE_SECURITY_PAM_APPL_H
#include <security/pam_appl.h>
#endif
#ifdef HAVE_SECURITY_PAM_MODULES_H
#include <security/pam_modules.h>
#endif
2009-02-11 17:35:29 +01:00
#ifdef HAVE_LIBLDAP
/* Some functions like ldap_init, ldap_simple_bind_s, ldap_unbind are
deprecated but still available. We will drop support for 'ldapserver'
(in favour of 'ldap_uri' and update to using the new functions instead
soon.
*/
#define LDAP_DEPRECATED 1
2009-02-11 17:35:29 +01:00
#include <ldap.h>
#define PORT_NUMBER LDAP_PORT
2009-02-11 17:35:29 +01:00
#endif
2008-01-11 13:41:21 +01:00
#ifndef PAM_EXTERN
#ifdef PAM_STATIC
#define PAM_EXTERN static
#else
#define PAM_EXTERN extern
#endif
#endif
#define TOKEN_OTP_LEN 32
#define MAX_TOKEN_ID_LEN 16
#define DEFAULT_TOKEN_ID_LEN 12
enum key_mode {
CHRESP,
CLIENT
};
struct cfg
{
int client_id;
char *client_key;
int debug;
int alwaysok;
int verbose_otp;
int try_first_pass;
int use_first_pass;
char *auth_file;
char *capath;
char *url;
char *ldapserver;
char *ldap_uri;
char *ldapdn;
char *user_attr;
char *yubi_attr;
int token_id_length;
enum key_mode mode;
char *chalresp_path;
};
#ifdef DBG
#undef DBG
#endif
#define DBG(x) if (cfg->debug) { D(x); }
/*
* This function will look for users name with valid user token id. It
* will returns 0 for failure and 1 for success.
*
* File format is as follows:
* <user-name>:<token_id>:<token_id>
* <user-name>:<token_id>
*
*/
static int
check_user_token (struct cfg *cfg,
const char *authfile,
2009-03-24 17:41:11 +01:00
const char *username,
const char *otp_id)
{
2009-03-24 17:41:11 +01:00
char buf[1024];
char *s_user, *s_token;
int retval = 0;
int fd;
struct stat st;
FILE *opwfile;
fd = open(authfile, O_RDONLY, 0);
if (fd < 0) {
2011-11-23 13:46:26 +01:00
DBG (("Cannot open file: %s (%s)", authfile, strerror(errno)));
2008-09-01 15:14:33 +02:00
return retval;
}
if (fstat(fd, &st) < 0) {
2011-11-23 13:46:26 +01:00
DBG (("Cannot stat file: %s (%s)", authfile, strerror(errno)));
close(fd);
return retval;
}
if (!S_ISREG(st.st_mode)) {
DBG (("%s is not a regular file", authfile));
close(fd);
return retval;
}
opwfile = fdopen(fd, "r");
if (opwfile == NULL) {
DBG (("fdopen: %s", strerror(errno)));
close(fd);
return retval;
}
2008-09-01 15:14:33 +02:00
while (fgets (buf, 1024, opwfile))
{
2009-03-24 17:41:11 +01:00
if (buf[strlen (buf) - 1] == '\n')
buf[strlen (buf) - 1] = '\0';
DBG (("Authorization line: %s", buf));
2009-03-24 17:41:11 +01:00
s_user = strtok (buf, ":");
if (s_user && strcmp (username, s_user) == 0)
2008-09-01 15:14:33 +02:00
{
DBG (("Matched user: %s", s_user));
2009-03-24 17:41:11 +01:00
do
2008-09-01 15:14:33 +02:00
{
2009-03-24 17:41:11 +01:00
s_token = strtok (NULL, ":");
DBG (("Authorization token: %s", s_token));
2009-03-24 17:41:11 +01:00
if (s_token && strcmp (otp_id, s_token) == 0)
2008-09-01 15:14:33 +02:00
{
DBG (("Match user/token as %s/%s", username, otp_id));
2009-03-24 17:41:11 +01:00
fclose (opwfile);
return 1;
2008-09-01 15:14:33 +02:00
}
}
2009-03-24 17:41:11 +01:00
while (s_token != NULL);
2008-09-01 15:14:33 +02:00
}
}
2009-03-24 17:41:11 +01:00
2008-09-01 15:14:33 +02:00
fclose (opwfile);
2009-03-24 17:41:11 +01:00
return 0;
}
/*
2009-03-24 16:21:09 +01:00
* Authorize authenticated OTP_ID for login as USERNAME using
* AUTHFILE. Return 0 on failures, otherwise success.
*/
static int
authorize_user_token (struct cfg *cfg,
const char *username,
const char *otp_id,
pam_handle_t *pamh)
{
2009-03-24 16:21:09 +01:00
int retval;
struct passwd *p;
p = getpwnam (username);
if (p == NULL) {
DBG (("getpwnam: %s", strerror(errno)));
return 0;
}
if (drop_privileges(p, pamh) < 0) {
D (("could not drop privileges"));
return 0;
}
if (cfg->auth_file)
2008-09-01 15:14:33 +02:00
{
/* Administrator had configured the file and specified is name
2008-09-01 15:14:33 +02:00
as an argument for this module.
*/
retval = check_user_token (cfg, cfg->auth_file, username, otp_id);
2008-09-01 15:14:33 +02:00
}
else
2008-09-01 15:14:33 +02:00
{
char *userfile = NULL;
/* Getting file from user home directory
2008-09-01 15:14:33 +02:00
..... i.e. ~/.yubico/authorized_yubikeys
*/
if (! get_user_cfgfile_path (NULL, "authorized_yubikeys", username, &userfile))
return 0;
2009-03-24 16:21:09 +01:00
retval = check_user_token (cfg, userfile, username, otp_id);
2009-03-24 16:21:09 +01:00
free (userfile);
2008-09-01 15:14:33 +02:00
}
if (restore_privileges(pamh) < 0)
{
DBG (("could not restore privileges"));
return 0;
}
return retval;
}
2009-02-11 17:35:29 +01:00
/*
* This function will look in ldap id the token correspond to the
* requested user. It will returns 0 for failure and 1 for success.
*
* For the moment ldaps is not supported. ldap serve can be on a
* remote host.
*
* You need the following parameters in you pam config:
* ldapserver= OR ldap_uri=
2009-02-11 17:35:29 +01:00
* ldapdn=
* user_attr=
* yubi_attr=
*
*/
static int
authorize_user_token_ldap (struct cfg *cfg,
const char *user,
const char *token_id)
2009-02-11 17:35:29 +01:00
{
DBG(("called"));
2009-02-11 17:35:29 +01:00
int retval = 0;
int protocol;
2009-02-11 17:35:29 +01:00
#ifdef HAVE_LIBLDAP
LDAP *ld = NULL;
LDAPMessage *result = NULL, *e;
BerElement *ber;
char *a;
char *attrs[2] = {NULL, NULL};
2010-04-13 21:58:35 +02:00
struct berval **vals;
int i, rc;
char *find = NULL;
if (cfg->user_attr == NULL) {
DBG (("Trying to look up user to YubiKey mapping in LDAP, but user_attr not set!"));
return 0;
}
if (cfg->yubi_attr == NULL) {
DBG (("Trying to look up user to YubiKey mapping in LDAP, but yubi_attr not set!"));
return 0;
}
if (cfg->ldapdn == NULL) {
DBG (("Trying to look up user to YubiKey mapping in LDAP, but ldapdn not set!"));
return 0;
}
/* Get a handle to an LDAP connection. */
if (cfg->ldap_uri)
{
rc = ldap_initialize (&ld, cfg->ldap_uri);
if (rc != LDAP_SUCCESS)
{
DBG (("ldap_init: %s", ldap_err2string (rc)));
retval = 0;
goto done;
}
}
else
{
if ((ld = ldap_init (cfg->ldapserver, PORT_NUMBER)) == NULL)
{
DBG (("ldap_init"));
retval = 0;
goto done;
}
2009-02-11 17:35:29 +01:00
}
/* LDAPv2 is historical -- RFC3494. */
protocol = LDAP_VERSION3;
ldap_set_option (ld, LDAP_OPT_PROTOCOL_VERSION, &protocol);
/* Bind anonymously to the LDAP server. */
rc = ldap_simple_bind_s (ld, NULL, NULL);
if (rc != LDAP_SUCCESS)
{
DBG (("ldap_simple_bind_s: %s", ldap_err2string (rc)));
retval = 0;
goto done;
}
2009-02-11 17:35:29 +01:00
/* Allocation of memory for search strings depending on input size */
i = (strlen(cfg->user_attr) + strlen(cfg->ldapdn) + strlen(user) + 3) * sizeof(char);
if ((find = malloc(i)) == NULL) {
DBG (("Failed allocating %i bytes", i));
retval = 0;
goto done;
}
sprintf (find, "%s=%s,%s", cfg->user_attr, user, cfg->ldapdn);
attrs[0] = (char *) cfg->yubi_attr;
DBG(("LDAP : look up object '%s', ask for attribute '%s'", find, cfg->yubi_attr));
/* Search for the entry. */
if ((rc = ldap_search_ext_s (ld, find, LDAP_SCOPE_BASE,
NULL, attrs, 0, NULL, NULL, LDAP_NO_LIMIT,
LDAP_NO_LIMIT, &result)) != LDAP_SUCCESS)
{
DBG (("ldap_search_ext_s: %s", ldap_err2string (rc)));
retval = 0;
goto done;
}
e = ldap_first_entry (ld, result);
if (e == NULL)
{
DBG (("No result from LDAP search"));
}
else
{
/* Iterate through each returned attribute. */
for (a = ldap_first_attribute (ld, e, &ber);
a != NULL; a = ldap_next_attribute (ld, e, ber))
{
if ((vals = ldap_get_values_len (ld, e, a)) != NULL)
{
/* Compare each value for the attribute against the token id. */
for (i = 0; vals[i] != NULL; i++)
{
if (!strncmp (token_id, vals[i]->bv_val, strlen (token_id)))
{
DBG (("Token Found :: %s", vals[i]->bv_val));
retval = 1;
}
else
{
DBG (("No match : (%s) %s != %s", a, vals[i]->bv_val, token_id));
}
}
ldap_value_free_len (vals);
}
ldap_memfree (a);
}
if (ber != NULL)
ber_free (ber, 0);
}
done:
if (result != NULL)
ldap_msgfree (result);
if (ld != NULL)
ldap_unbind (ld);
/* free memory allocated for search strings */
if (find != NULL)
free(find);
2009-02-11 17:35:29 +01:00
#else
DBG (("Trying to use LDAP, but this function is not compiled in pam_yubico!!"));
DBG (("Install libldap-dev and then recompile pam_yubico."));
2009-02-11 17:35:29 +01:00
#endif
return retval;
}
#if HAVE_CR
static int
display_error(pam_handle_t *pamh, char *message) {
struct pam_conv *conv;
struct pam_message *pmsg[1], msg[1];
struct pam_response *resp = NULL;
int retval;
retval = pam_get_item (pamh, PAM_CONV, (const void **) &conv);
if (retval != PAM_SUCCESS) {
D(("get conv returned error: %s", pam_strerror (pamh, retval)));
return retval;
}
pmsg[0] = &msg[0];
msg[0].msg = message;
msg[0].msg_style = PAM_ERROR_MSG;
retval = conv->conv(1, (const struct pam_message **) pmsg,
&resp, conv->appdata_ptr);
if (retval != PAM_SUCCESS) {
D(("conv returned error: %s", pam_strerror (pamh, retval)));
return retval;
}
D(("conv returned: '%s'", resp->resp));
return retval;
}
#endif /* HAVE_CR */
#if HAVE_CR
static int
do_challenge_response(pam_handle_t *pamh, struct cfg *cfg, const char *username)
{
char *userfile = NULL, *tmpfile = NULL;
2011-03-12 15:49:50 +01:00
FILE *f = NULL;
2011-12-06 11:56:52 +01:00
char buf[CR_RESPONSE_SIZE + 16], response_hex[CR_RESPONSE_SIZE * 2 + 1];
int ret, fd;
2011-03-12 15:49:50 +01:00
unsigned int flags = 0;
unsigned int response_len = 0;
YK_KEY *yk = NULL;
CR_STATE state;
char *errstr = NULL;
2011-03-12 15:49:50 +01:00
struct passwd *p;
struct stat st;
2011-03-12 15:49:50 +01:00
ret = PAM_AUTH_ERR;
flags |= YK_FLAG_MAYBLOCK;
if (! init_yubikey(&yk)) {
D(("Failed initializing YubiKey"));
goto out;
}
if (! check_firmware_version(yk, false, true)) {
D(("YubiKey does not support Challenge-Response (version 2.2 required)"));
goto out;
}
if (! get_user_challenge_file (yk, cfg->chalresp_path, username, &userfile)) {
D(("Failed getting user challenge file for user %s", username));
2011-03-12 15:49:50 +01:00
goto out;
}
2011-03-12 15:49:50 +01:00
2011-04-15 16:28:00 +02:00
DBG(("Loading challenge from file %s", userfile));
p = getpwnam (username);
if (p == NULL) {
DBG (("getpwnam: %s", strerror(errno)));
goto out;
}
/* Drop privileges before opening user file. */
if (drop_privileges(p, pamh) < 0) {
D (("could not drop privileges"));
goto out;
}
fd = open(userfile, O_RDONLY, 0);
if (fd < 0) {
DBG (("Cannot open file: %s (%s)", userfile, strerror(errno)));
goto out;
}
if (fstat(fd, &st) < 0) {
DBG (("Cannot stat file: %s (%s)", userfile, strerror(errno)));
close(fd);
goto out;
}
if (!S_ISREG(st.st_mode)) {
DBG (("%s is not a regular file", userfile));
close(fd);
goto out;
}
f = fdopen(fd, "r");
if (f == NULL) {
DBG (("fdopen: %s", strerror(errno)));
close(fd);
goto out;
}
2011-03-12 15:49:50 +01:00
if (! load_chalresp_state(f, &state))
goto out;
2011-03-12 15:49:50 +01:00
if (fclose(f) < 0) {
f = NULL;
goto out;
}
if (restore_privileges(pamh) < 0) {
DBG (("could not restore privileges"));
goto out;
}
if (! challenge_response(yk, state.slot, state.challenge, state.challenge_len,
true, flags, false,
buf, sizeof(buf), &response_len)) {
D(("Challenge-response FAILED"));
2011-03-12 15:49:50 +01:00
goto out;
}
/*
* Check YubiKey response against the expected response
*/
2011-12-06 11:56:52 +01:00
yubikey_hex_encode(response_hex, buf, response_len);
if (memcmp(buf, state.response, response_len) == 0) {
2011-03-12 15:49:50 +01:00
ret = PAM_SUCCESS;
} else {
D(("Unexpected C/R response : %s", response_hex));
goto out;
}
2011-03-12 15:49:50 +01:00
2011-04-15 16:28:00 +02:00
DBG(("Got the expected response, generating new challenge (%i bytes).", CR_CHALLENGE_SIZE));
2011-03-12 15:49:50 +01:00
errstr = "Error generating new challenge, please check syslog or contact your system administrator";
if (generate_random(state.challenge, sizeof(state.challenge))) {
D(("Failed generating new challenge!"));
2011-03-12 15:49:50 +01:00
goto out;
}
errstr = "Error communicating with Yubikey, please check syslog or contact your system administrator";
if (! challenge_response(yk, state.slot, state.challenge, CR_CHALLENGE_SIZE,
true, flags, false,
buf, sizeof(buf), &response_len)) {
D(("Second challenge-response FAILED"));
2011-03-12 15:49:50 +01:00
goto out;
}
/* the yk_* functions leave 'junk' in errno */
errno = 0;
/*
* Write the challenge and response we will expect the next time to the state file.
*/
if (response_len > sizeof(state.response)) {
D(("Got too long response ??? (%i/%i)", response_len, sizeof(state.response)));
goto out;
}
memcpy (state.response, buf, response_len);
state.response_len = response_len;
/* Drop privileges before creating new challenge file. */
if (drop_privileges(p, pamh) < 0) {
D (("could not drop privileges"));
goto out;
}
/* Write out the new file */
tmpfile = malloc(strlen(userfile) + 1 + 4);
if (! tmpfile)
goto out;
strcpy(tmpfile, userfile);
strcat(tmpfile, ".tmp");
f = fopen(tmpfile, "w");
if (! f)
goto out;
errstr = "Error updating Yubikey challenge, please check syslog or contact your system administrator";
if (! write_chalresp_state (f, &state))
2011-03-12 15:49:50 +01:00
goto out;
if (fclose(f) < 0) {
f = NULL;
goto out;
}
f = NULL;
if (rename(tmpfile, userfile) < 0) {
goto out;
}
2011-03-12 15:49:50 +01:00
if (restore_privileges(pamh) < 0) {
DBG (("could not restore privileges"));
goto out;
}
2011-04-15 16:28:00 +02:00
DBG(("Challenge-response success!"));
errstr = NULL;
2011-03-12 15:49:50 +01:00
out:
if (yk_errno) {
if (yk_errno == YK_EUSBERR) {
syslog(LOG_ERR, "USB error: %s", yk_usb_strerror());
2011-04-15 16:28:00 +02:00
D(("USB error: %s", yk_usb_strerror()));
2011-03-12 15:49:50 +01:00
} else {
syslog(LOG_ERR, "Yubikey core error: %s", yk_strerror(yk_errno));
2011-04-15 16:28:00 +02:00
D(("Yubikey core error: %s", yk_strerror(yk_errno)));
2011-03-12 15:49:50 +01:00
}
}
if (errstr)
display_error(pamh, errstr);
2011-03-12 15:49:50 +01:00
if (errno) {
syslog(LOG_ERR, "Challenge response failed: %s", strerror(errno));
2011-04-15 16:28:00 +02:00
D(("Challenge response failed: %s", strerror(errno)));
2011-03-12 15:49:50 +01:00
}
if (yk)
yk_close_key(yk);
yk_release();
if (f)
fclose(f);
free(userfile);
free(tmpfile);
2011-03-12 15:49:50 +01:00
return ret;
}
#endif /* HAVE_CR */
2011-03-12 15:49:50 +01:00
2009-03-24 15:20:52 +01:00
static void
parse_cfg (int flags, int argc, const char **argv, struct cfg *cfg)
2008-01-11 13:41:21 +01:00
{
int i;
2009-03-24 15:20:52 +01:00
memset (cfg, 0, sizeof(struct cfg));
2009-03-24 15:20:52 +01:00
cfg->client_id = -1;
cfg->token_id_length = DEFAULT_TOKEN_ID_LEN;
2011-03-12 15:49:50 +01:00
cfg->mode = CLIENT;
2008-01-11 13:41:21 +01:00
for (i = 0; i < argc; i++)
{
if (strncmp (argv[i], "id=", 3) == 0)
2009-03-24 15:20:52 +01:00
sscanf (argv[i], "id=%d", &cfg->client_id);
if (strncmp (argv[i], "key=", 4) == 0)
cfg->client_key = (char *) argv[i] + 4;
2008-01-11 13:41:21 +01:00
if (strcmp (argv[i], "debug") == 0)
2009-03-24 15:20:52 +01:00
cfg->debug = 1;
2008-01-11 13:41:21 +01:00
if (strcmp (argv[i], "alwaysok") == 0)
2009-03-24 15:20:52 +01:00
cfg->alwaysok = 1;
if (strcmp (argv[i], "verbose_otp") == 0)
cfg->verbose_otp = 1;
if (strcmp (argv[i], "try_first_pass") == 0)
2009-03-24 15:20:52 +01:00
cfg->try_first_pass = 1;
if (strcmp (argv[i], "use_first_pass") == 0)
2009-03-24 15:20:52 +01:00
cfg->use_first_pass = 1;
if (strncmp (argv[i], "authfile=", 9) == 0)
2009-03-24 15:20:52 +01:00
cfg->auth_file = (char *) argv[i] + 9;
2011-02-11 16:28:46 +01:00
if (strncmp (argv[i], "capath=", 7) == 0)
cfg->capath = (char *) argv[i] + 7;
if (strncmp (argv[i], "url=", 4) == 0)
2009-03-24 15:20:52 +01:00
cfg->url = (char *) argv[i] + 4;
if (strncmp (argv[i], "ldapserver=", 11) == 0)
cfg->ldapserver = (char *) argv[i] + 11;
if (strncmp (argv[i], "ldap_uri=", 9) == 0)
cfg->ldap_uri = (char *) argv[i] + 9;
2009-02-11 17:35:29 +01:00
if (strncmp (argv[i], "ldapdn=", 7) == 0)
2009-03-24 15:20:52 +01:00
cfg->ldapdn = (char *) argv[i] + 7;
2009-02-11 17:35:29 +01:00
if (strncmp (argv[i], "user_attr=", 10) == 0)
2009-03-24 15:20:52 +01:00
cfg->user_attr = (char *) argv[i] + 10;
2009-02-11 17:35:29 +01:00
if (strncmp (argv[i], "yubi_attr=", 10) == 0)
2009-03-24 15:20:52 +01:00
cfg->yubi_attr = (char *) argv[i] + 10;
2011-03-03 15:06:15 +01:00
if (strncmp (argv[i], "token_id_length=", 16) == 0)
sscanf (argv[i], "token_id_length=%d", &cfg->token_id_length);
2011-03-12 15:49:50 +01:00
if (strcmp (argv[i], "mode=challenge-response") == 0)
cfg->mode = CHRESP;
if (strcmp (argv[i], "mode=client") == 0)
cfg->mode = CLIENT;
if (strncmp (argv[i], "chalresp_path=", 14) == 0)
cfg->chalresp_path = (char *) argv[i] + 14;
2008-01-11 13:41:21 +01:00
}
2009-03-24 15:20:52 +01:00
if (cfg->debug)
2008-01-11 13:41:21 +01:00
{
D (("called."));
D (("flags %d argc %d", flags, argc));
for (i = 0; i < argc; i++)
D (("argv[%d]=%s", i, argv[i]));
2009-03-24 15:20:52 +01:00
D (("id=%d", cfg->client_id));
D (("key=%s", cfg->client_key ? cfg->client_key : "(null)"));
2009-03-24 15:20:52 +01:00
D (("debug=%d", cfg->debug));
D (("alwaysok=%d", cfg->alwaysok));
D (("verbose_otp=%d", cfg->verbose_otp));
2009-03-24 15:20:52 +01:00
D (("try_first_pass=%d", cfg->try_first_pass));
D (("use_first_pass=%d", cfg->use_first_pass));
D (("authfile=%s", cfg->auth_file ? cfg->auth_file : "(null)"));
D (("ldapserver=%s", cfg->ldapserver ? cfg->ldapserver : "(null)"));
D (("ldap_uri=%s", cfg->ldap_uri ? cfg->ldap_uri : "(null)"));
2009-03-24 15:20:52 +01:00
D (("ldapdn=%s", cfg->ldapdn ? cfg->ldapdn : "(null)"));
D (("user_attr=%s", cfg->user_attr ? cfg->user_attr : "(null)"));
D (("yubi_attr=%s", cfg->yubi_attr ? cfg->yubi_attr : "(null)"));
2011-02-28 15:42:56 +01:00
D (("url=%s", cfg->url ? cfg->url : "(null)"));
D (("capath=%s", cfg->capath ? cfg->capath : "(null)"));
D (("token_id_length=%d", cfg->token_id_length));
2011-03-12 15:49:50 +01:00
D (("mode=%s", cfg->mode == CLIENT ? "client" : "chresp" ));
D (("chalresp_path=%d", cfg->chalresp_path));
2008-01-11 13:41:21 +01:00
}
2009-03-24 15:20:52 +01:00
}
PAM_EXTERN int
pam_sm_authenticate (pam_handle_t * pamh,
int flags, int argc, const char **argv)
{
int retval, rc;
const char *user = NULL;
const char *password = NULL;
char otp[MAX_TOKEN_ID_LEN + TOKEN_OTP_LEN + 1] = { 0 };
char otp_id[MAX_TOKEN_ID_LEN + 1] = { 0 };
2009-03-24 15:20:52 +01:00
int password_len = 0;
int skip_bytes = 0;
2009-03-24 15:20:52 +01:00
int valid_token = 0;
struct pam_conv *conv;
struct pam_message *pmsg[1], msg[1];
struct pam_response *resp;
int nargs = 1;
2009-03-25 11:15:13 +01:00
ykclient_t *ykc = NULL;
struct cfg cfg_st;
struct cfg *cfg = &cfg_st; /* for DBG macro */
2009-03-24 15:20:52 +01:00
parse_cfg (flags, argc, argv, cfg);
2008-01-11 13:41:21 +01:00
retval = pam_get_user (pamh, &user, NULL);
if (retval != PAM_SUCCESS)
{
2009-03-24 15:20:52 +01:00
DBG (("get user returned error: %s", pam_strerror (pamh, retval)));
2008-01-11 13:41:21 +01:00
goto done;
}
2009-03-24 15:20:52 +01:00
DBG (("get user returned: %s", user));
2008-01-11 13:41:21 +01:00
if (cfg->mode == CHRESP) {
#if HAVE_CR
return do_challenge_response(pamh, cfg, user);
#else
DBG (("no support for challenge/response"));
retval = PAM_AUTH_ERR;
goto done;
#endif
2011-03-12 15:49:50 +01:00
}
if (cfg->try_first_pass || cfg->use_first_pass)
2008-01-11 13:41:21 +01:00
{
retval = pam_get_item (pamh, PAM_AUTHTOK, (const void **) &password);
if (retval != PAM_SUCCESS)
{
2009-03-24 15:20:52 +01:00
DBG (("get password returned error: %s",
pam_strerror (pamh, retval)));
goto done;
}
2009-03-24 15:20:52 +01:00
DBG (("get password returned: %s", password));
}
if (cfg->use_first_pass && password == NULL)
{
2009-03-24 15:20:52 +01:00
DBG (("use_first_pass set and no password, giving up"));
retval = PAM_AUTH_ERR;
2008-01-11 13:41:21 +01:00
goto done;
}
2009-03-25 11:15:13 +01:00
rc = ykclient_init (&ykc);
if (rc != YKCLIENT_OK)
{
2009-03-25 11:15:13 +01:00
DBG (("ykclient_init() failed (%d): %s", rc, ykclient_strerror (rc)));
retval = PAM_AUTHINFO_UNAVAIL;
goto done;
}
rc = ykclient_set_client_b64 (ykc, cfg->client_id, cfg->client_key);
if (rc != YKCLIENT_OK)
{
DBG (("ykclient_set_client_b64() failed (%d): %s",
rc, ykclient_strerror (rc)));
retval = PAM_AUTHINFO_UNAVAIL;
goto done;
}
if (cfg->client_key)
ykclient_set_verify_signature (ykc, 1);
if (cfg->capath)
ykclient_set_ca_path (ykc, cfg->capath);
2011-02-11 16:28:46 +01:00
if (cfg->url)
ykclient_set_url_template (ykc, cfg->url);
2009-03-24 15:30:57 +01:00
2008-01-11 13:41:21 +01:00
if (password == NULL)
{
retval = pam_get_item (pamh, PAM_CONV, (const void **) &conv);
if (retval != PAM_SUCCESS)
{
2009-03-24 15:20:52 +01:00
DBG (("get conv returned error: %s", pam_strerror (pamh, retval)));
2008-01-11 13:41:21 +01:00
goto done;
}
pmsg[0] = &msg[0];
{
const char *query_template = "Yubikey for `%s': ";
size_t len = strlen (query_template) + strlen (user);
size_t wrote;
msg[0].msg = malloc (len);
if (!msg[0].msg)
{
retval = PAM_BUF_ERR;
goto done;
}
wrote = snprintf ((char *) msg[0].msg, len, query_template, user);
if (wrote < 0 || wrote >= len)
{
retval = PAM_BUF_ERR;
goto done;
}
}
msg[0].msg_style = cfg->verbose_otp ? PAM_PROMPT_ECHO_ON : PAM_PROMPT_ECHO_OFF;
2008-01-11 13:41:21 +01:00
resp = NULL;
retval = conv->conv (nargs, (const struct pam_message **) pmsg,
&resp, conv->appdata_ptr);
free ((char *) msg[0].msg);
if (retval != PAM_SUCCESS)
{
2009-03-24 15:20:52 +01:00
DBG (("conv returned error: %s", pam_strerror (pamh, retval)));
2008-01-11 13:41:21 +01:00
goto done;
}
2010-09-09 22:28:20 +02:00
if (resp->resp == NULL)
{
DBG (("conv returned NULL passwd?"));
retval = PAM_AUTH_ERR;
2010-09-09 22:28:20 +02:00
goto done;
}
DBG (("conv returned %i bytes", strlen(resp->resp)));
2008-01-11 13:41:21 +01:00
password = resp->resp;
}
2008-01-11 13:41:21 +01:00
password_len = strlen (password);
if (password_len < (cfg->token_id_length + TOKEN_OTP_LEN))
{
DBG (("OTP too short to be considered : %i < %i", password_len, (cfg->token_id_length + TOKEN_OTP_LEN)));
retval = PAM_AUTH_ERR;
goto done;
2008-01-11 13:41:21 +01:00
}
/* In case the input was systempassword+YubiKeyOTP, we want to skip over
"systempassword" when copying the token_id and OTP to separate buffers */
skip_bytes = password_len - (cfg->token_id_length + TOKEN_OTP_LEN);
DBG (("Skipping first %i bytes. Length is %i, token_id set to %i and token OTP always %i.",
skip_bytes, password_len, cfg->token_id_length, TOKEN_OTP_LEN));
/* Copy full YubiKey output (public ID + OTP) into otp */
strncpy (otp, password + skip_bytes, sizeof (otp) - 1);
/* Copy only public ID into otp_id. Destination buffer is zeroed. */
strncpy (otp_id, password + skip_bytes, cfg->token_id_length);
DBG (("OTP: %s ID: %s ", otp, otp_id));
/* user entered their system password followed by generated OTP? */
if (password_len > TOKEN_OTP_LEN + cfg->token_id_length)
2008-09-01 15:14:33 +02:00
{
char *onlypasswd = strdup (password);
if (! onlypasswd) {
retval = PAM_BUF_ERR;
goto done;
}
onlypasswd[password_len - (TOKEN_OTP_LEN + cfg->token_id_length)] = '\0';
DBG (("Extracted a probable system password entered before the OTP - "
"setting item PAM_AUTHTOK"));
retval = pam_set_item (pamh, PAM_AUTHTOK, onlypasswd);
free (onlypasswd);
if (retval != PAM_SUCCESS)
2008-09-01 15:14:33 +02:00
{
2009-03-24 15:20:52 +01:00
DBG (("set_item returned error: %s", pam_strerror (pamh, retval)));
2008-09-01 15:14:33 +02:00
goto done;
}
}
else
password = NULL;
2009-03-25 11:15:13 +01:00
rc = ykclient_request (ykc, otp);
2009-03-25 11:15:13 +01:00
DBG (("ykclient return value (%d): %s", rc,
ykclient_strerror (rc)));
2009-03-24 15:30:57 +01:00
switch (rc)
{
2009-03-25 11:15:13 +01:00
case YKCLIENT_OK:
break;
2009-03-25 11:15:13 +01:00
case YKCLIENT_BAD_OTP:
case YKCLIENT_REPLAYED_OTP:
retval = PAM_AUTH_ERR;
goto done;
default:
retval = PAM_AUTHINFO_UNAVAIL;
goto done;
}
/* authorize the user with supplied token id */
if (cfg->ldapserver != NULL || cfg->ldap_uri != NULL)
valid_token = authorize_user_token_ldap (cfg, user, otp_id);
else
valid_token = authorize_user_token (cfg, user, otp_id, pamh);
if (valid_token == 0)
2008-01-11 13:41:21 +01:00
{
DBG (("Yubikey not authorized to login as user"));
retval = PAM_AUTHINFO_UNAVAIL;
2008-01-11 13:41:21 +01:00
goto done;
}
retval = PAM_SUCCESS;
done:
2009-03-24 15:30:57 +01:00
if (ykc)
2009-03-25 11:15:13 +01:00
ykclient_done (&ykc);
if (cfg->alwaysok && retval != PAM_SUCCESS)
2008-01-11 13:41:21 +01:00
{
2009-03-24 15:20:52 +01:00
DBG (("alwaysok needed (otherwise return with %d)", retval));
2008-01-11 13:41:21 +01:00
retval = PAM_SUCCESS;
}
2009-03-24 15:20:52 +01:00
DBG (("done. [%s]", pam_strerror (pamh, retval)));
pam_set_data (pamh, "yubico_setcred_return", (void*) (intptr_t) retval, NULL);
2008-01-11 13:41:21 +01:00
return retval;
}
PAM_EXTERN int
pam_sm_setcred (pam_handle_t * pamh, int flags, int argc, const char **argv)
{
2011-03-12 14:34:45 +01:00
return PAM_SUCCESS;
2008-01-11 13:41:21 +01:00
}
#ifdef PAM_STATIC
struct pam_module _pam_yubico_modstruct = {
"pam_yubico",
pam_sm_authenticate,
pam_sm_setcred,
2011-03-12 14:34:45 +01:00
NULL,
NULL,
NULL,
NULL
2008-01-11 13:41:21 +01:00
};
#endif