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

715 lines
16 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 Yubico AB
* 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>
/* 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
#define PAM_SM_ACCOUNT
#define PAM_SM_SESSION
#define PAM_SM_PASSWORD
#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-01-13 12:10:16 +01:00
#if defined(DEBUG_PAM)
# if defined(HAVE_SECURITY__PAM_MACROS_H)
# define DEBUG
# include <security/_pam_macros.h>
# else
# define D(x) do { \
printf ("debug: %s:%d (%s): ", __FILE__, __LINE__, __FUNCTION__); \
printf x; \
printf ("\n"); \
} while (0)
# endif
2008-01-11 13:41:21 +01:00
#endif
2009-03-25 11:15:13 +01:00
#include <ykclient.h>
2008-01-11 13:41:21 +01:00
2009-02-11 17:35:29 +01:00
#ifdef HAVE_LIBLDAP
#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
#include <sys/types.h>
#include <pwd.h>
#define TOKEN_LEN 44
#define TOKEN_ID_LEN 12
/*
* 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 (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;
FILE *opwfile;
2008-09-01 15:14:33 +02:00
opwfile = fopen (authfile, "r");
if (opwfile == NULL)
{
2009-03-24 17:41:11 +01:00
D (("Cannot open file: %s", authfile));
2008-09-01 15:14:33 +02:00
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';
D (("Authorization line: %s", buf));
s_user = strtok (buf, ":");
if (s_user && strcmp (username, s_user) == 0)
2008-09-01 15:14:33 +02:00
{
2009-03-24 17:41:11 +01:00
D (("Matched user: %s", s_user));
do
2008-09-01 15:14:33 +02:00
{
2009-03-24 17:41:11 +01:00
s_token = strtok (NULL, ":");
D (("Authorization token: %s", s_token));
if (s_token && strcmp (otp_id, s_token) == 0)
2008-09-01 15:14:33 +02:00
{
2009-03-24 17:41:11 +01:00
D (("Match user/token as %s/%s", username, otp_id));
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 (const char *authfile,
const char *username,
2009-03-24 16:21:09 +01:00
const char *otp_id)
{
2009-03-24 16:21:09 +01:00
int retval;
2009-03-24 16:21:09 +01:00
if (authfile)
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.
*/
2009-03-24 16:21:09 +01:00
retval = check_user_token (authfile, username, otp_id);
2008-09-01 15:14:33 +02:00
}
else
2008-09-01 15:14:33 +02:00
{
/* Getting file from user home directory
2008-09-01 15:14:33 +02:00
..... i.e. ~/.yubico/authorized_yubikeys
*/
struct passwd *p;
2009-03-24 16:21:09 +01:00
char *userfile = NULL;
#define USERFILE "/.yubico/authorized_yubikeys"
p = getpwnam (username);
2009-03-24 16:21:09 +01:00
if (p)
2008-09-01 15:14:33 +02:00
{
2009-03-24 16:21:09 +01:00
userfile = malloc ((p->pw_dir ? strlen (p->pw_dir) : 0)
+ strlen (USERFILE) + 1);
if (!userfile)
return 0;
2008-09-01 15:14:33 +02:00
2009-03-24 16:21:09 +01:00
strcpy (userfile, p->pw_dir);
strcat (userfile, USERFILE);
2008-09-01 15:14:33 +02:00
}
2009-03-24 16:21:09 +01:00
retval = check_user_token (userfile, username, otp_id);
free (userfile);
2008-09-01 15:14:33 +02:00
}
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:
* ldapsever=
* ldapdn=
* user_attr=
* yubi_attr=
*
*/
static int
authorize_user_token_ldap (const char *ldap_uri,
const char *ldapdn, const char *user_attr,
const char *yubi_attr, const char *user,
const char *token_id)
2009-02-11 17:35:29 +01:00
{
D(("called"));
2009-02-11 17:35:29 +01:00
int retval = 0;
#ifdef HAVE_LIBLDAP
LDAP *ld;
LDAPMessage *result, *e;
BerElement *ber;
char *a;
struct berval **vals;
int i, rc;
/* Allocation of memory for search strings depending on input size */
char *find = malloc((strlen(user_attr)+strlen(ldapdn)+strlen(user)+3)*sizeof(char));
char *sr = malloc((strlen(yubi_attr)+4)*sizeof(char));
char sep[2] = ",";
char eq[2] = "=";
char sren[4] = "=*)";
sr[0] = '(';
sr[1] = '\0';
find[0]='\0';
strcat (find, user_attr);
strcat (find, eq);
strcat (find, user);
strcat (find, sep);
strcat (find, ldapdn);
strcat (sr, yubi_attr);
strcat (sr, sren);
D(("find: %s",find));
D(("sr: %s",sr));
/* Get a handle to an LDAP connection. */
rc = ldap_initialize (&ld,ldap_uri);
if (rc != LDAP_SUCCESS)
{
D (("ldap_init: %s", ldap_err2string (rc)));
return (0);
2009-02-11 17:35:29 +01:00
}
/* Bind anonymously to the LDAP server. */
rc = ldap_simple_bind_s (ld, NULL, NULL);
if (rc != LDAP_SUCCESS)
{
D (("ldap_simple_bind_s: %s", ldap_err2string (rc)));
return (0);
}
2009-02-11 17:35:29 +01:00
/* Search for the entry. */
D (("ldap-dn: %s", find));
D (("ldap-filter: %s", sr));
if ((rc = ldap_search_ext_s (ld, find, LDAP_SCOPE_BASE,
sr, NULL, 0, NULL, NULL, LDAP_NO_LIMIT,
LDAP_NO_LIMIT, &result)) != LDAP_SUCCESS)
{
D (("ldap_search_ext_s: %s", ldap_err2string (rc)));
return (0);
}
e = ldap_first_entry (ld, result);
if (e != NULL)
{
/* Iterate through each attribute in the entry. */
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)
{
for (i = 0; vals[i] != NULL; i++)
{
if (!strncmp (token_id, vals[i]->bv_val, strlen (token_id)))
{
D (("Token Found :: %s", vals[i]->bv_val));
retval = 1;
}
}
ldap_value_free (vals);
}
ldap_memfree (a);
}
if (ber != NULL)
{
ber_free (ber, 0);
}
}
ldap_msgfree (result);
ldap_unbind (ld);
/* free memory allocated for search strings */
free(find);
free(sr);
2009-02-11 17:35:29 +01:00
#else
D (("Trying to use LDAP, but this function is not compiled in pam_yubico!!"));
D (("Install libldap-dev and then recompile pam_yubico."));
#endif
return retval;
}
2009-03-24 15:20:52 +01:00
struct cfg
{
int client_id;
char *client_key;
2009-03-24 15:20:52 +01:00
int debug;
int alwaysok;
int try_first_pass;
int use_first_pass;
char *auth_file;
char *url;
char *ldap_uri;
2009-03-24 15:20:52 +01:00
char *ldapdn;
char *user_attr;
char *yubi_attr;
};
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
cfg->client_id = -1;
cfg->debug = 0;
cfg->alwaysok = 0;
cfg->try_first_pass = 0;
cfg->use_first_pass = 0;
cfg->auth_file = NULL;
cfg->url = NULL;
cfg->ldap_uri = NULL;
2009-03-24 15:20:52 +01:00
cfg->ldapdn = NULL;
cfg->user_attr = NULL;
cfg->yubi_attr = NULL;
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], "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;
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], "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;
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 (("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 (("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)"));
2008-01-11 13:41:21 +01:00
}
2009-03-24 15:20:52 +01:00
}
#define DBG(x) if (cfg.debug) { D(x); }
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[TOKEN_LEN + 1] = { 0 };
char otp_id[TOKEN_ID_LEN + 1] = { 0 };
2009-03-24 15:20:52 +01:00
int password_len = 0;
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;
2009-03-24 15:20:52 +01:00
struct cfg cfg;
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
2009-03-24 15:20:52 +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));
}
2009-03-24 15:20:52 +01:00
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;
}
2009-03-24 15:30:57 +01:00
if (cfg.url)
2009-03-25 11:15:13 +01:00
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;
}
}
2008-01-11 13:41:21 +01:00
msg[0].msg_style = PAM_PROMPT_ECHO_OFF;
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;
}
2009-03-24 15:20:52 +01:00
DBG (("conv returned: %s", 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 < TOKEN_LEN)
{
DBG (("OTP too short: %s", password));
retval = PAM_AUTH_ERR;
goto done;
2008-01-11 13:41:21 +01:00
}
strncpy (otp, password + (password_len - TOKEN_LEN), TOKEN_LEN);
strncpy (otp_id, password + (password_len - TOKEN_LEN), TOKEN_ID_LEN);
DBG (("OTP: %s ID: %s ", otp, otp_id));
/* user entered their system password followed by generated OTP? */
if (password_len > TOKEN_LEN)
2008-09-01 15:14:33 +02:00
{
char *onlypasswd = strdup (password);
onlypasswd[password_len - TOKEN_LEN] = '\0';
DBG (("Password: %s ", onlypasswd));
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.ldap_uri != NULL)
valid_token = authorize_user_token_ldap (cfg.ldap_uri, cfg.ldapdn,
cfg.user_attr, cfg.yubi_attr,
user, otp_id);
else
valid_token = authorize_user_token (cfg.auth_file, user, otp_id);
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);
2009-03-24 15:20:52 +01:00
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)
{
int retval;
int auth_retval;
struct cfg cfg;
2008-01-11 13:41:21 +01:00
parse_cfg (flags, argc, argv, &cfg);
DBG (("called."));
2008-01-11 13:41:21 +01:00
2008-01-11 14:11:30 +01:00
/* TODO: ? */
2008-01-11 13:41:21 +01:00
retval = pam_get_data (pamh, "yubico_setcred_return",
2009-03-30 10:11:26 +02:00
(void*) (intptr_t) &auth_retval);
DBG (("retval: %d", auth_retval));
2008-01-11 13:41:21 +01:00
if (retval != PAM_SUCCESS)
return PAM_CRED_UNAVAIL;
switch (auth_retval)
{
case PAM_SUCCESS:
retval = PAM_SUCCESS;
break;
case PAM_USER_UNKNOWN:
retval = PAM_USER_UNKNOWN;
break;
case PAM_AUTH_ERR:
default:
retval = PAM_CRED_ERR;
break;
}
DBG (("done. [%s]", pam_strerror (pamh, retval)));
2008-01-11 13:41:21 +01:00
return retval;
}
PAM_EXTERN int
pam_sm_acct_mgmt (pam_handle_t * pamh, int flags, int argc, const char **argv)
{
int retval;
D (("called."));
2008-01-11 14:11:30 +01:00
/* TODO: ? */
2008-01-11 13:41:21 +01:00
retval = PAM_SUCCESS;
D (("done. [%s]", pam_strerror (pamh, retval)));
return retval;
}
PAM_EXTERN int
pam_sm_open_session (pam_handle_t * pamh,
int flags, int argc, const char **argv)
{
int retval;
D (("called."));
2008-01-11 14:11:30 +01:00
/* TODO: ? */
2008-01-11 13:41:21 +01:00
retval = PAM_SUCCESS;
D (("done. [%s]", pam_strerror (pamh, retval)));
return retval;
}
PAM_EXTERN int
pam_sm_close_session (pam_handle_t * pamh,
int flags, int argc, const char **argv)
{
int retval;
D (("called."));
2008-01-11 14:11:30 +01:00
/* TODO: ? */
2008-01-11 13:41:21 +01:00
retval = PAM_SUCCESS;
D (("done. [%s]", pam_strerror (pamh, retval)));
return retval;
}
PAM_EXTERN int
pam_sm_chauthtok (pam_handle_t * pamh, int flags, int argc, const char **argv)
{
int retval;
D (("called."));
2008-01-11 14:11:30 +01:00
/* TODO: ? */
2008-01-11 13:41:21 +01:00
retval = PAM_SUCCESS;
D (("done. [%s]", pam_strerror (pamh, retval)));
return retval;
}
#ifdef PAM_STATIC
struct pam_module _pam_yubico_modstruct = {
"pam_yubico",
pam_sm_authenticate,
pam_sm_setcred,
pam_sm_acct_mgmt,
pam_sm_open_session,
pam_sm_close_session,
pam_sm_chauthtok
};
#endif