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
|
/* MODULE: auth_shadow */
/* COPYRIGHT
* Copyright (c) 1997 Messaging Direct Ltd.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. 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 MESSAGING DIRECT LTD. ``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 MESSAGING DIRECT LTD. OR
* ITS EMPLOYEES OR AGENTS 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.
* END COPYRIGHT */
#include <config.h>
/* PUBLIC DEPENDENCIES */
#include "mechanisms.h"
#include <stdio.h>
#ifdef AUTH_SHADOW
#ifndef _XOPEN_SOURCE
#define _XOPEN_SOURCE
#endif
#define PWBUFSZ 256 /***SWB***/
# include <unistd.h>
# include <stdlib.h>
# include <string.h>
# include <sys/types.h>
# include <time.h>
# include <pwd.h>
# include <errno.h>
# include <syslog.h>
#ifdef HAVE_CRYPT_H
#include <crypt.h>
#endif
# ifndef HAVE_GETSPNAM
# ifdef WITH_DES
# ifdef WITH_SSL_DES
# include <openssl/des.h>
# else
# include <des.h>
# endif /* WITH_SSL_DES */
# endif /* WITH_DES */
# endif /* ! HAVE_GETSPNAM */
# ifdef HAVE_GETUSERPW
# include <userpw.h>
# include <usersec.h>
# else /* ! HAVE_GETUSERPW */
# include <shadow.h>
# endif /* ! HAVE_GETUSERPW */
# ifdef HAVE_CRYPT_H
# include <crypt.h>
# endif
# include "auth_shadow.h"
# include "globals.h"
/* END PUBLIC DEPENDENCIES */
/* FUNCTION: auth_shadow */
/* SYNOPSIS
* Authenticate against the system shadow password database. Where
* possible (and if enabled by the command line arguments), enforce
* time-of-day and other login restrictions.
*/
char * /* R: allocated response string */
auth_shadow (
/* PARAMETERS */
const char *login, /* I: plaintext authenticator */
const char *password, /* I: plaintext password */
const char *service __attribute__((unused)),
const char *realm __attribute__((unused))
/* END PARAMETERS */
)
{
/************************************************************************
* *
* This is gross. Everyone wants to do this differently, thus we have *
* to #ifdef the whole mess for each system type. *
* *
***********************************************************************/
# ifdef HAVE_GETSPNAM
/***************
* getspnam_r() *
***************/
/* VARIABLES */
long today; /* the current time */
char *cpw; /* pointer to crypt() result */
struct passwd *pw; /* return from getpwnam_r() */
struct spwd *sp; /* return from getspnam_r() */
int errnum;
# ifdef _REENTRANT
struct passwd pwbuf;
char pwdata[PWBUFSZ]; /* pwbuf indirect data goes in here */
struct spwd spbuf;
char spdata[PWBUFSZ]; /* spbuf indirect data goes in here */
struct crypt_data cdata;
# endif /* _REENTRANT */
/* END VARIABLES */
# define RETURN(x) return strdup(x)
/*
* "Magic" password field entries for SunOS/SysV
*
* "*LK*" is defined at in the shadow(4) man page, but of course any string
* inserted in front of the password will prevent the strings from matching
*
* *NP* is documented in getspnam(3) and indicates the caller had
* insufficient permission to read the shadow password database
* (generally this is a NIS error).
*/
# define SHADOW_PW_LOCKED "*LK*" /* account locked (not used by us) */
# define SHADOW_PW_EPERM "*NP*" /* insufficient database perms */
# ifdef _REENTRANT
# ifdef GETXXNAM_R_5ARG
(void) getpwnam_r(login, &pwbuf, pwdata, sizeof(pwdata), &pw);
# else
pw = getpwnam_r(login, &pwbuf, pwdata, sizeof(pwdata));
# endif /* GETXXNAM_R_5ARG */
# else
pw = getpwnam(login);
# endif /* _REENTRANT */
errnum = errno;
endpwent();
if (pw == NULL) {
if (errnum != 0) {
char *errstr;
if (flags & VERBOSE) {
syslog(LOG_DEBUG, "DEBUG: auth_shadow: getpwnam(%s) failure: %m", login);
}
if (asprintf(&errstr, "NO Username lookup failure: %s", strerror(errno)) == -1) {
/* XXX the hidden strdup() will likely fail and return NULL here.... */
RETURN("NO Username lookup failure: unknown error (ENOMEM formatting strerror())");
}
return errstr;
} else {
if (flags & VERBOSE) {
syslog(LOG_DEBUG, "DEBUG: auth_shadow: getpwnam(%s): invalid username", login);
}
RETURN("NO Invalid username");
}
}
today = (long)time(NULL)/(24L*60*60);
# ifdef _REENTRANT
# ifdef GETXXNAM_R_5ARG
(void) getspnam_r(login, &spbuf, spdata, sizeof(spdata), &sp);
# else
sp = getspnam_r(login, &spbuf, spdata, sizeof(spdata));
# endif /* GETXXNAM_R_5ARG */
# else
sp = getspnam(login);
# endif /* _REENTRANT */
errnum = errno;
endspent();
if (sp == NULL) {
if (errnum != 0) {
char *errstr;
if (flags & VERBOSE) {
syslog(LOG_DEBUG, "DEBUG: auth_shadow: getspnam(%s) failure: %m", login);
}
if (asprintf(&errstr, "NO Username shadow lookup failure: %s", strerror(errno)) == -1) {
/* XXX the hidden strdup() will likely fail and return NULL here.... */
RETURN("NO Username shadow lookup failure: unknown error (ENOMEM formatting strerror())");
}
return errstr;
} else {
if (flags & VERBOSE) {
syslog(LOG_DEBUG, "DEBUG: auth_shadow: getspnam(%s): invalid shadow username", login);
}
RETURN("NO Invalid shadow username");
}
}
if (!strcmp(sp->sp_pwdp, SHADOW_PW_EPERM)) {
if (flags & VERBOSE) {
syslog(LOG_DEBUG, "DEBUG: auth_shadow: sp->sp_pwdp == SHADOW_PW_EPERM");
}
RETURN("NO Insufficient permission to access NIS authentication database (saslauthd)");
}
# ifdef _REENTRANT
cdata.initialized = 0;
cpw = crypt_r(password, sp->sp_pwdp, &cdata);
# else
cpw = crypt(password, sp->sp_pwdp);
# endif /* _REENTRANT */
if (!cpw || strcmp(sp->sp_pwdp, (const char *)cpw)) {
if (flags & VERBOSE) {
/*
* This _should_ reveal the SHADOW_PW_LOCKED prefix to an
* administrator trying to debug the situation, though maybe we
* should do the check here and be less obtuse about it....
*/
syslog(LOG_DEBUG, "DEBUG: auth_shadow: pw mismatch: '%s' != '%s'",
sp->sp_pwdp, cpw);
}
RETURN("NO Incorrect password");
}
/*
* The following fields will be set to -1 if:
*
* 1) They are not specified in the shadow database, or
* 2) The database is being served up by NIS.
*/
if ((sp->sp_expire != -1) && (today > sp->sp_expire)) {
if (flags & VERBOSE) {
syslog(LOG_DEBUG, "DEBUG: auth_shadow: account expired: %ld > %ld",
today, sp->sp_expire);
}
RETURN("NO Account expired");
}
/* Remaining tests are relative to the last change date for the password */
if (sp->sp_lstchg != -1) {
if ((sp->sp_max != -1) && ((sp->sp_lstchg + sp->sp_max) < today)) {
if (flags & VERBOSE) {
syslog(LOG_DEBUG,
"DEBUG: auth_shadow: password expired: %ld + %ld < %ld",
sp->sp_lstchg, sp->sp_max, today);
}
RETURN("NO Password expired");
}
}
if (flags & VERBOSE) {
syslog(LOG_DEBUG, "DEBUG: auth_shadow: OK: %s", login);
}
RETURN("OK");
# elif defined(HAVE_GETUSERPW)
/*************
* AIX 4.1.4 *
************/
/* VARIABLES */
struct userpw *upw; /* return from getuserpw() */
/* END VARIABLES */
# define RETURN(x) { endpwdb(); return strdup(x); }
if (setpwdb(S_READ) == -1) {
syslog(LOG_ERR, "setpwdb: %m");
RETURN("NO setpwdb() internal failure (saslauthd)");
}
upw = getuserpw(login);
if (upw == 0) {
if (flags & VERBOSE) {
syslog(LOG_DEBUG, "auth_shadow: getuserpw(%s) failed: %m",
login);
}
RETURN("NO Invalid username");
}
if (!(cpw = crypt(password, upw->upw_passwd)) || (strcmp(upw->upw_passwd, (const char *)cpw) != 0)) {
if (flags & VERBOSE) {
syslog(LOG_DEBUG, "auth_shadow: pw mismatch: %s != %s",
password, upw->upw_passwd);
}
RETURN("NO Incorrect password");
}
RETURN("OK");
# else /* HAVE_GETUSERPW */
# error "unknown shadow authentication type"
# endif /* ! HAVE_GETUSERPW */
}
#else /* !AUTH_SHADOW */
char *
auth_shadow (
const char *login __attribute__((unused)),
const char *passwd __attribute__((unused)),
const char *service __attribute__((unused)),
const char *realm __attribute__((unused))
)
{
return NULL;
}
#endif /* !AUTH_SHADOW */
/* END FUNCTION: auth_shadow */
/* END MODULE: auth_shadow */
|