=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/auth1.c,v retrieving revision 1.52.2.2 retrieving revision 1.53 diff -u -r1.52.2.2 -r1.53 --- src/usr.bin/ssh/Attic/auth1.c 2004/08/19 22:37:30 1.52.2.2 +++ src/usr.bin/ssh/Attic/auth1.c 2003/09/23 20:17:11 1.53 @@ -10,13 +10,14 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth1.c,v 1.52.2.2 2004/08/19 22:37:30 brad Exp $"); +RCSID("$OpenBSD: auth1.c,v 1.53 2003/09/23 20:17:11 markus Exp $"); #include "xmalloc.h" #include "rsa.h" #include "ssh1.h" #include "packet.h" #include "buffer.h" +#include "mpaux.h" #include "log.h" #include "servconf.h" #include "compat.h" @@ -69,9 +70,10 @@ u_int dlen; u_int ulen; int type = 0; + struct passwd *pw = authctxt->pw; debug("Attempting authentication for %s%.100s.", - authctxt->valid ? "" : "invalid user ", authctxt->user); + authctxt->valid ? "" : "illegal user ", authctxt->user); /* If the user has no password, accept authentication immediately. */ if (options.password_authentication && @@ -123,7 +125,7 @@ BN_num_bits(client_host_key->rsa->n), bits); packet_check_eom(); - authenticated = auth_rhosts_rsa(authctxt, client_user, + authenticated = auth_rhosts_rsa(pw, client_user, client_host_key); key_free(client_host_key); @@ -141,7 +143,7 @@ fatal("do_authloop: BN_new failed"); packet_get_bignum(n); packet_check_eom(); - authenticated = auth_rsa(authctxt, n); + authenticated = auth_rsa(pw, n); BN_clear_free(n); break; @@ -220,7 +222,7 @@ if (authenticated) return; - if (authctxt->failures++ > options.max_authtries) + if (authctxt->failures++ > AUTH_FAIL_MAX) packet_disconnect(AUTH_FAIL_MSG, authctxt->user); packet_start(SSH_SMSG_FAILURE); @@ -256,11 +258,11 @@ if ((authctxt->pw = PRIVSEP(getpwnamallow(user))) != NULL) authctxt->valid = 1; else { - debug("do_authentication: invalid user %s", user); + debug("do_authentication: illegal user %s", user); authctxt->pw = fakepw(); } - setproctitle("%s%s", authctxt->valid ? user : "unknown", + setproctitle("%s%s", authctxt->pw ? user : "unknown", use_privsep ? " [net]" : ""); /*