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 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351
|
/** Fichier auth.c
**
** Routines de gestion des mots de passe
**
** Copyright (c) 1991-2010 by Ollivier ROBERT
** A distribuer selon les regles de la GNU GPL General Public Licence
** Voir le fichier COPYING fourni.
**
**/
#ifndef lint
static const char * rcsid = "@(#) $Id$";
#endif
#include "config.h" /* GNU configure */
/* fichier de configuration */
#include "conf.h"
static int pam_pwcheck (struct passwd *calife, char * user_to_be, \
char * user_pass, int l_size);
static int local_pwcheck (struct passwd *calife, char * user_to_be, \
char * user_pass, int l_size);
static void get_user_passwd(char * user_pass, int l_size);
/** authenticate_user
**
** Demande et verifie le mot de passe pour l'utilisateur name
** Si name == root on ne fait rien.
**
** Parametres : name char * nom de l'utilisateur
** user_to_be char * qui va-t-on devenir
** this_time char * quand ?
** tty char * sur quel tty
**
** Retourne : neant
**
** Algo:
** si WITH_PAM est définit
** on essaie auth_pam()
** si ça plante, on continue avec un warning
** sinon retour ok
** fin
** vérification mdp
**
**/
void
authenticate_user (char * who, char * user_to_be, char * when, char * tty)
{
size_t l_size = 0;
struct passwd * calife;
char got_pass = AUTH_ERR;
char * user_pass = NULL;
/*
* returns long usually
*/
#ifdef HAVE_WORKING_SYSCONF
l_size = (size_t) sysconf (_SC_LINE_MAX);
#else
l_size = MAX_STRING;
#endif /* HAVE_WORKING_SYSCONF */
user_pass = (char *) xalloc (l_size);
/*
* become root again
*/
GET_ROOT;
calife = getpwnam (who); /* null or locked password */
RELEASE_ROOT;
if (calife == NULL)
die (1, "Bad pw data at line %d", __LINE__);
#ifdef WITH_PAM
got_pass = pam_pwcheck (calife, user_to_be, user_pass, l_size);
#endif
if (got_pass != AUTH_OK)
got_pass = local_pwcheck (calife, user_to_be, user_pass, l_size);
MESSAGE_1 ("Auth process returned %d\n", got_pass);
if (got_pass == AUTH_NULL)
{
syslog (LOG_AUTH | LOG_ERR, "NULL CALIFE %s to %s on %s", who, \
user_to_be, tty);
closelog ();
die (10, "Sorry.\n");
}
if (got_pass == AUTH_ERR)
{
syslog (LOG_AUTH | LOG_ERR, "BAD CALIFE %s to %s on %s", who, user_to_be, tty);
closelog ();
die (9, "Sorry.\n");
}
if (got_pass == AUTH_BADP)
{
syslog (LOG_AUTH|LOG_ERR, "GARBLED PASSWORD %s to unknown %s on%s",\
who, user_to_be, tty);
die (8, "Bad password string.\n");
}
free (user_pass);
}
/** local_pwcheck
**
** Private method to check user password against local database
**
** Parameters: calife struct passwd * requesting user
** user_to_be char * target user
** user_pass chat * user password
** l_size int maximum size for password
**
** Returns: got_pass Whether we got authenticated or not
**/
static
int local_pwcheck (struct passwd * calife, char * user_to_be, \
char * user_pass, int l_size)
{
int i, got_pass = AUTH_ERR;
MESSAGE_1 ("Testing w/o PAM with got_pass = %d\n", got_pass);
/* check arguments */
if (calife == NULL || calife ->pw_name == NULL || calife->pw_name[0] == '\0')
{
die(1, "Bad parameter for calife/calife->pw_name");
/*NOTREACHED*/
}
#if defined (HAVE_SHADOW_H) && defined (HAVE_GETSPNAM) && !defined(UNUSED_SHADOW)
struct spwd * scalife;
GET_ROOT;
scalife = getspnam (calife->pw_name); /* null or locked password */
RELEASE_ROOT;
/*
* Goal is to manipulate only "calife", not both so if "scalife" is
* valid, copy "scalife" interesting data into "calife"
*/
if (scalife)
{
calife->pw_passwd =
(char *) xalloc (strlen (scalife->sp_pwdp) + 1);
strcpy (calife->pw_passwd, scalife->sp_pwdp);
}
#endif /* HAVE_SHADOW_H */
MESSAGE ("Not using PAM.\n");
if ((*(calife->pw_passwd)) == '\0' || (*(calife->pw_passwd)) == '*')
return (AUTH_NULL);
if (getuid () != 0)
{
char * pt_enc,
* user_pass, * enc_pass, salt [10];
user_pass = (char *) xalloc (l_size);
enc_pass = (char *) xalloc (l_size);
/*
* cope with MD5 based crypt(3)
*/
if (!strncmp (calife->pw_passwd, "$1$", 3)) /* MD5 */
{
char * pp = (char *) xalloc (strlen (calife->pw_passwd) + 1);
char * md5_salt;
char * md5_pass;
strcpy (pp, calife->pw_passwd + 3);
md5_salt = strtok (pp, "$");
md5_pass = strtok (NULL, "$");
if (md5_pass == NULL ||
md5_salt == NULL ||
(strlen (md5_salt) > 8)) /* garbled password */
return (AUTH_BADP);
MESSAGE_1 ("MD5 password found, salt=%s\n", md5_salt);
strcpy (salt, md5_salt);
free (pp);
}
else
{
strncpy (salt, calife->pw_passwd, 2);
salt [2] = '\0';
}
for ( i = 0; i < MAX_ATTEMPTS; i ++ )
{
get_user_passwd (user_pass, l_size);
/*
* At this point, either we have a password or
* it has died already
*/
pt_enc = (char *) crypt (user_pass, calife->pw_passwd);
/*
* Wipe out the cleartext password
*/
memset (user_pass, '\0', l_size);
/*
* Move from the static buffer intoa safe location of our own
*/
memset (enc_pass, '\0', l_size);
strcpy (enc_pass, pt_enc);
/*
* assumes standard crypt(3)
*/
if (!strcmp (enc_pass, calife->pw_passwd))
{
got_pass = AUTH_OK;
break;
}
} /* for */
} /* end if for getuid() */
return (got_pass);
}
/** pam_pwcheck
**
** Private method to check user password against PAM backend.
**
** Parameters: calife struct passwd * target user
** user_to_be char * target user
** user_pass chat * user password
** l_size int maximum size for password
**
** Returns: whether the password was obtained through PAM or not
** (including failure in PAM process)
**/
static
int pam_pwcheck (struct passwd *calife, char * user_to_be, char * user_pass,\
int l_size)
{
char * who;
int i, rval, got_pass = AUTH_ERR;
#ifdef WITH_PAM
if (calife == NULL)
die(6, "calife must not be null");
who = calife->pw_name;
if (who[0] == '\0')
die(6, "calife->pw_name must not be null");
if (getuid () != 0)
{
MESSAGE ("Trying PAM\n");
for ( i = 0; i < MAX_ATTEMPTS; i++ )
{
get_user_passwd (user_pass, l_size);
/*
* At this point, either we have a password or
* it has died already
*/
MESSAGE ("Testing auth with PAM.\n");
rval = auth_pam (&calife, user_pass);
MESSAGE_1 ("PAM auth_pam returned %d\n", rval);
if (rval)
{
syslog (LOG_AUTH | LOG_ERR, "PAM failed with code %d for %s", rval, who);
/*
* Check return value:
* - 0: auth succeeded
* - >0: auth failed.
*/
/* Fallback to previous methods? */
}
else
{
syslog (LOG_AUTH | LOG_INFO, "PAM auth succeeded for %s", who);
got_pass = AUTH_OK;
break;
}
} /* end for */
}
else
got_pass = AUTH_OK;
#endif
return got_pass;
}
/** get_user_passwd
**
** When not using PAM, get the user's password with getpass/getpassphrase
**
** Parameters: user_pass char * password
** l_size int maximum size
**
** Returns: nothing
**/
static
void get_user_passwd(char * user_pass, int l_size)
{
char * pt_pass;
/* XXX Solaris 10
* Solaris 5.10 (and maybe before) truncate getpass() entry
* to 8 bytes, use getpassphrase(3) instead
*
* Use getpassphrase(3) if available
*/
#ifdef HAVE_GETPASSPHRASE
pt_pass = (char *) getpassphrase ("Password:");
#else
pt_pass = (char *) getpass ("Password:");
#endif /* HAVE_GETPASSPHRASE */
/*
* XXX don't assume getpass(3) will check the buffer
* length. Linux glibc apparently lacks such checking and
* will happily segfault if the previous entered password
* was too big.
* cf. <URL:http://www.securityfocus.com/archive/1/355510>
*/
if (pt_pass == NULL)
die(1, "Corrupted or too long password");
memset (user_pass, '\0', l_size);
/*
* Be a bit more careful there
*/
strncpy (user_pass, pt_pass, l_size);
user_pass[l_size - 1] = '\0';
}
/*
get_user_data
calife
scalife
get_user_password
(select getpass or getpassphrase)
check_passwd
if_pam
auth_pam
else
(select encryption method based on sig $nn$salt$passwd)
end
*/
|