]> andersk Git - openssh.git/blobdiff - auth-passwd.c
- (djm) Convert mandoc manpages to man automatically. Patch from Mark D.
[openssh.git] / auth-passwd.c
index 8295ea177426ff2a0d78cee44edc9a80d1bf21c6..27977155aba42cfa0a0b5cce8f09356f045e58ba 100644 (file)
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: auth-passwd.c,v 1.19 2001/01/18 16:59:59 markus Exp $");
+RCSID("$OpenBSD: auth-passwd.c,v 1.22 2001/03/20 18:57:04 markus Exp $");
 
 #if !defined(USE_PAM) && !defined(HAVE_OSF_SIA)
 
 #include "packet.h"
-#include "ssh.h"
-#include "servconf.h"
 #include "xmalloc.h"
-
+#include "log.h"
+#include "servconf.h"
 #include "auth.h"
 
 #ifdef WITH_AIXAUTHENTICATE
@@ -78,14 +77,17 @@ RCSID("$OpenBSD: auth-passwd.c,v 1.19 2001/01/18 16:59:59 markus Exp $");
 #define is_winnt       (GetVersion() < 0x80000000)
 #endif
 
+
+extern ServerOptions options;
+
 /*
  * Tries to authenticate the user using password.  Returns true if
  * authentication succeeds.
  */
 int
-auth_password(struct passwd * pw, const char *password)
+auth_password(Authctxt *authctxt, const char *password)
 {
-       extern ServerOptions options;
+       struct passwd * pw = authctxt->pw;
        char *encrypted_password;
        char *pw_password;
        char *salt;
@@ -111,7 +113,7 @@ auth_password(struct passwd * pw, const char *password)
        if (pw == NULL)
                return 0;
 #ifndef HAVE_CYGWIN
-       if (pw->pw_uid == 0 && options.permit_root_login == 2)
+       if (pw->pw_uid == 0 && options.permit_root_login != PERMIT_YES)
                return 0;
 #endif
 #ifdef HAVE_CYGWIN
@@ -119,10 +121,17 @@ auth_password(struct passwd * pw, const char *password)
         * Empty password is only possible on NT if the user has _really_
         * an empty password and authentication is done, though.
         */
-        if (!is_winnt) 
+       if (!is_winnt)
 #endif
        if (*password == '\0' && options.permit_empty_passwd == 0)
                return 0;
+#ifdef BSD_AUTH
+       if (auth_userokay(pw->pw_name, authctxt->style, "auth-ssh",
+           (char *)password) == 0)
+               return 0;
+       else
+               return 1;
+#endif
 
 #ifdef HAVE_CYGWIN
        if (is_winnt) {
@@ -156,13 +165,13 @@ auth_password(struct passwd * pw, const char *password)
         */
 #if defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW)
        spw = getspnam(pw->pw_name);
-       if (spw != NULL) 
+       if (spw != NULL)
                pw_password = spw->sp_pwdp;
 #endif /* defined(HAVE_SHADOW_H) && !defined(DISABLE_SHADOW) */
 
 #ifdef HAVE_SCO_PROTECTED_PW
        spw = getprpwnam(pw->pw_name);
-       if (spw != NULL) 
+       if (spw != NULL)
                pw_password = spw->ufld.fd_encrypt;
 #endif /* HAVE_SCO_PROTECTED_PW */
 
@@ -190,7 +199,7 @@ auth_password(struct passwd * pw, const char *password)
                encrypted_password = md5_crypt(password, salt);
        else
                encrypted_password = crypt(password, salt);
-#else /* HAVE_MD5_PASSWORDS */    
+#else /* HAVE_MD5_PASSWORDS */
 # ifdef __hpux
        if (iscomsec())
                encrypted_password = bigcrypt(password, salt);
@@ -199,7 +208,7 @@ auth_password(struct passwd * pw, const char *password)
 # else
        encrypted_password = crypt(password, salt);
 # endif /* __hpux */
-#endif /* HAVE_MD5_PASSWORDS */    
+#endif /* HAVE_MD5_PASSWORDS */
 
        /* Authentication is accepted if the encrypted passwords are identical. */
        return (strcmp(encrypted_password, pw_password) == 0);
This page took 0.037288 seconds and 4 git commands to generate.