freebsd-dev/crypto/openssh/auth2-passwd.c

74 lines
2.3 KiB
C
Raw Normal View History

2002-06-23 14:01:54 +00:00
/*
* Copyright (c) 2000 Markus Friedl. 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 THE AUTHOR ``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 AUTHOR 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.
*/
#include "includes.h"
2004-02-26 10:38:49 +00:00
RCSID("$OpenBSD: auth2-passwd.c,v 1.5 2003/12/31 00:24:50 dtucker Exp $");
2002-06-23 14:01:54 +00:00
#include "xmalloc.h"
#include "packet.h"
#include "log.h"
#include "auth.h"
#include "monitor_wrap.h"
#include "servconf.h"
/* import */
extern ServerOptions options;
static int
userauth_passwd(Authctxt *authctxt)
{
2004-02-26 10:38:49 +00:00
char *password, *newpass;
2002-06-23 14:01:54 +00:00
int authenticated = 0;
int change;
2004-02-26 10:38:49 +00:00
u_int len, newlen;
2002-06-23 14:01:54 +00:00
change = packet_get_char();
password = packet_get_string(&len);
2004-02-26 10:38:49 +00:00
if (change) {
/* discard new password from packet */
newpass = packet_get_string(&newlen);
memset(newpass, 0, newlen);
xfree(newpass);
}
2002-06-23 14:01:54 +00:00
packet_check_eom();
2004-02-26 10:38:49 +00:00
if (change)
logit("password change not supported");
else if (PRIVSEP(auth_password(authctxt, password)) == 1
2002-06-27 22:31:32 +00:00
#ifdef HAVE_CYGWIN
2004-01-07 11:10:17 +00:00
&& check_nt_auth(1, authctxt->pw)
2002-06-27 22:31:32 +00:00
#endif
2004-01-07 11:10:17 +00:00
)
2002-06-23 14:01:54 +00:00
authenticated = 1;
memset(password, 0, len);
xfree(password);
return authenticated;
}
Authmethod method_passwd = {
"password",
userauth_passwd,
&options.password_authentication
};