Blame SOURCES/0088-Ticket-bz1525628-1.3.6-backport-invalid-password-mig.patch

61f723
From 4219c54d9706f5597e8186d4f983b30587c2762e Mon Sep 17 00:00:00 2001
61f723
From: Mark Reynolds <mreynolds@redhat.com>
61f723
Date: Tue, 13 Feb 2018 10:32:06 -0500
61f723
Subject: [PATCH] Ticket bz1525628 1.3.6 backport - invalid password migration 
61f723
 causes unauth bind
61f723
61f723
Bug Description:  Slapi_ct_memcmp expects both inputs to be
61f723
at LEAST size n. If they are not, we only compared UP to n.
61f723
61f723
Invalid migrations of passwords (IE {CRYPT}XX) would create
61f723
a pw which is just salt and no hash. ct_memcmp would then
61f723
only verify the salt bits and would allow the authentication.
61f723
61f723
This relies on an administrative mistake both of allowing
61f723
password migration (nsslapd-allow-hashed-passwords) and then
61f723
subsequently migrating an INVALID password to the server.
61f723
61f723
Fix Description:  slapi_ct_memcmp now access n1, n2 size
61f723
and will FAIL if they are not the same, but will still compare
61f723
n bytes, where n is the "longest" memory, to the first byte
61f723
of the other to prevent length disclosure of the shorter
61f723
value (generally the mis-migrated password)
61f723
61f723
https://bugzilla.redhat.com/show_bug.cgi?id=1525628
61f723
61f723
Author: wibrown
61f723
---
61f723
 ldap/servers/plugins/pwdstorage/clear_pwd.c |  4 +-
61f723
 ldap/servers/plugins/pwdstorage/crypt_pwd.c |  4 +-
61f723
 ldap/servers/plugins/pwdstorage/md5_pwd.c   | 14 +++----
61f723
 ldap/servers/plugins/pwdstorage/sha_pwd.c   | 18 +++++++--
61f723
 ldap/servers/plugins/pwdstorage/smd5_pwd.c  | 60 +++++++++++++++--------------
61f723
 ldap/servers/slapd/ch_malloc.c              | 37 +++++++++++++++---
61f723
 ldap/servers/slapd/slapi-plugin.h           |  2 +-
61f723
 7 files changed, 88 insertions(+), 51 deletions(-)
61f723
61f723
diff --git a/ldap/servers/plugins/pwdstorage/clear_pwd.c b/ldap/servers/plugins/pwdstorage/clear_pwd.c
61f723
index b9b362d34..050e60dd7 100644
61f723
--- a/ldap/servers/plugins/pwdstorage/clear_pwd.c
61f723
+++ b/ldap/servers/plugins/pwdstorage/clear_pwd.c
61f723
@@ -39,7 +39,7 @@ clear_pw_cmp( const char *userpwd, const char *dbpwd )
61f723
          * However, even if the first part of userpw matches dbpwd, but len !=, we
61f723
          * have already failed anyawy. This prevents substring matching.
61f723
          */
61f723
-        if (slapi_ct_memcmp(userpwd, dbpwd, len_dbp) != 0) {
61f723
+        if (slapi_ct_memcmp(userpwd, dbpwd, len_user, len_dbp) != 0) {
61f723
             result = 1;
61f723
         }
61f723
     } else {
61f723
@@ -51,7 +51,7 @@ clear_pw_cmp( const char *userpwd, const char *dbpwd )
61f723
          * dbpwd to itself. We have already got result == 1 if we are here, so we are
61f723
          * just trying to take up time!
61f723
          */
61f723
-        if (slapi_ct_memcmp(dbpwd, dbpwd, len_dbp)) {
61f723
+        if (slapi_ct_memcmp(dbpwd, dbpwd, len_dbp, len_dbp)) {
61f723
             /* Do nothing, we have the if to fix a coverity check. */
61f723
         }
61f723
     }
61f723
diff --git a/ldap/servers/plugins/pwdstorage/crypt_pwd.c b/ldap/servers/plugins/pwdstorage/crypt_pwd.c
61f723
index dfd5af94b..ff8eabb07 100644
61f723
--- a/ldap/servers/plugins/pwdstorage/crypt_pwd.c
61f723
+++ b/ldap/servers/plugins/pwdstorage/crypt_pwd.c
61f723
@@ -56,13 +56,13 @@ crypt_close(Slapi_PBlock *pb __attribute__((unused)))
61f723
 int
61f723
 crypt_pw_cmp( const char *userpwd, const char *dbpwd )
61f723
 {
61f723
-    int rc;
61f723
+    int32_t rc;
61f723
     char *cp;
61f723
     PR_Lock(cryptlock);
61f723
     /* we use salt (first 2 chars) of encoded password in call to crypt() */
61f723
     cp = crypt( userpwd, dbpwd );
61f723
     if (cp) {
61f723
-       rc= slapi_ct_memcmp( dbpwd, cp, strlen(dbpwd));
61f723
+       rc= slapi_ct_memcmp(dbpwd, cp, strlen(dbpwd), strlen(cp));
61f723
     } else {
61f723
        rc = -1;
61f723
     }
61f723
diff --git a/ldap/servers/plugins/pwdstorage/md5_pwd.c b/ldap/servers/plugins/pwdstorage/md5_pwd.c
61f723
index b27994667..88c11688b 100644
61f723
--- a/ldap/servers/plugins/pwdstorage/md5_pwd.c
61f723
+++ b/ldap/servers/plugins/pwdstorage/md5_pwd.c
61f723
@@ -30,12 +30,12 @@
61f723
 int
61f723
 md5_pw_cmp( const char *userpwd, const char *dbpwd )
61f723
 {
61f723
-   int rc=-1;
61f723
-   char * bver;
61f723
-   PK11Context *ctx=NULL;
61f723
+   int32_t rc=-1;
61f723
+   char *bver;
61f723
+   PK11Context *ctx = NULL;
61f723
    unsigned int outLen;
61f723
    unsigned char hash_out[MD5_HASH_LEN];
61f723
-   unsigned char b2a_out[MD5_HASH_LEN*2]; /* conservative */
61f723
+   unsigned char b2a_out[MD5_HASH_LEN * 2]; /* conservative */
61f723
    SECItem binary_item;
61f723
 
61f723
    ctx = PK11_CreateDigestContext(SEC_OID_MD5);
61f723
@@ -57,10 +57,10 @@ md5_pw_cmp( const char *userpwd, const char *dbpwd )
61f723
    bver = NSSBase64_EncodeItem(NULL, (char *)b2a_out, sizeof b2a_out, &binary_item);
61f723
    /* bver points to b2a_out upon success */
61f723
    if (bver) {
61f723
-	   rc = slapi_ct_memcmp(bver,dbpwd, strlen(dbpwd));
61f723
+       rc = slapi_ct_memcmp(bver,dbpwd, strlen(dbpwd), strlen(bver));
61f723
    } else {
61f723
-	   slapi_log_err(SLAPI_LOG_PLUGIN, MD5_SUBSYSTEM_NAME,
61f723
-					   "Could not base64 encode hashed value for password compare");
61f723
+       slapi_log_err(SLAPI_LOG_PLUGIN, MD5_SUBSYSTEM_NAME,
61f723
+                     "Could not base64 encode hashed value for password compare");
61f723
    }
61f723
 loser:
61f723
    return rc;
61f723
diff --git a/ldap/servers/plugins/pwdstorage/sha_pwd.c b/ldap/servers/plugins/pwdstorage/sha_pwd.c
61f723
index 5f41c5b93..c9db8964a 100644
61f723
--- a/ldap/servers/plugins/pwdstorage/sha_pwd.c
61f723
+++ b/ldap/servers/plugins/pwdstorage/sha_pwd.c
61f723
@@ -49,7 +49,7 @@ sha_pw_cmp (const char *userpwd, const char *dbpwd, unsigned int shaLen )
61f723
     char userhash[MAX_SHA_HASH_SIZE];
61f723
     char quick_dbhash[MAX_SHA_HASH_SIZE + SHA_SALT_LENGTH + 3];
61f723
     char *dbhash = quick_dbhash;
61f723
-    struct berval salt;
61f723
+    struct berval salt = {0};
61f723
     PRUint32 hash_len;
61f723
     unsigned int secOID;
61f723
     char *schemeName;
61f723
@@ -120,10 +120,20 @@ sha_pw_cmp (const char *userpwd, const char *dbpwd, unsigned int shaLen )
61f723
     }
61f723
 
61f723
     /* the proof is in the comparison... */
61f723
-    if ( hash_len >= shaLen ) {
61f723
-        result = slapi_ct_memcmp( userhash, dbhash, shaLen );
61f723
+    if (hash_len >= shaLen) {
61f723
+        /*
61f723
+         * This say "if the hash has a salt IE >, OR if they are equal, check the hash component ONLY.
61f723
+         * This is why we repeat shaLen twice, even though it seems odd. If you have a dbhast of ssha
61f723
+         * it's len is 28, and the userpw is 20, but 0 - 20 is the sha, and 21-28 is the salt, which
61f723
+         * has already been processed into userhash.
61f723
+         * The case where dbpwd is truncated is handled above in "invalid base64" arm.
61f723
+         */
61f723
+        result = slapi_ct_memcmp(userhash, dbhash, shaLen, shaLen);
61f723
     } else {
61f723
-        result = slapi_ct_memcmp( userhash, dbhash + OLD_SALT_LENGTH, hash_len - OLD_SALT_LENGTH );
61f723
+        /* This case is for if the salt is at the START, which only applies to DS40B1 case.
61f723
+         * May never be a valid check...
61f723
+         */
61f723
+        result = slapi_ct_memcmp(userhash, dbhash + OLD_SALT_LENGTH, shaLen, hash_len - OLD_SALT_LENGTH);
61f723
     }
61f723
 
61f723
 loser:
61f723
diff --git a/ldap/servers/plugins/pwdstorage/smd5_pwd.c b/ldap/servers/plugins/pwdstorage/smd5_pwd.c
61f723
index 2e9d195ea..f6b4bb4a0 100644
61f723
--- a/ldap/servers/plugins/pwdstorage/smd5_pwd.c
61f723
+++ b/ldap/servers/plugins/pwdstorage/smd5_pwd.c
61f723
@@ -52,35 +52,37 @@ smd5_pw_cmp( const char *userpwd, const char *dbpwd )
61f723
    /*
61f723
     * Decode hash stored in database.
61f723
     */
61f723
-   hash_len = pwdstorage_base64_decode_len(dbpwd, 0);
61f723
-   if ( hash_len >= sizeof(quick_dbhash) ) { /* get more space: */
61f723
-      dbhash = (char*) slapi_ch_calloc( hash_len + 1, sizeof(char) );
61f723
-      if ( dbhash == NULL ) goto loser;
61f723
-   } else {
61f723
-      memset( quick_dbhash, 0, sizeof(quick_dbhash) );
61f723
-   }
61f723
-
61f723
-   hashresult = PL_Base64Decode( dbpwd, 0, dbhash );
61f723
-   if (NULL == hashresult) {
61f723
-      slapi_log_err(SLAPI_LOG_PLUGIN, SALTED_MD5_SUBSYSTEM_NAME,
61f723
-            "smd5_pw_cmp: userPassword \"%s\" is the wrong length "
61f723
-            "or is not properly encoded BASE64\n", dbpwd );
61f723
-      goto loser;
61f723
-   }
61f723
-
61f723
-   salt.bv_val = (void*)(dbhash + MD5_LENGTH); /* salt starts after hash value */
61f723
-   salt.bv_len = hash_len - MD5_LENGTH; /* remaining bytes must be salt */
61f723
-
61f723
-   /* create the hash */
61f723
-   memset( userhash, 0, sizeof(userhash) );
61f723
-   PK11_DigestBegin(ctx);
61f723
-   PK11_DigestOp(ctx, (const unsigned char *)userpwd, strlen(userpwd));
61f723
-   PK11_DigestOp(ctx, (unsigned char*)(salt.bv_val), salt.bv_len);
61f723
-   PK11_DigestFinal(ctx, userhash, &outLen, sizeof userhash);
61f723
-   PK11_DestroyContext(ctx, 1);
61f723
-
61f723
-   /* Compare everything up to the salt. */
61f723
-   rc = slapi_ct_memcmp( userhash, dbhash, MD5_LENGTH );
61f723
+    hash_len = pwdstorage_base64_decode_len(dbpwd, 0);
61f723
+    if (hash_len >= sizeof(quick_dbhash)) { /* get more space: */
61f723
+        dbhash = (char *)slapi_ch_calloc(hash_len + 1, sizeof(char));
61f723
+        if (dbhash == NULL)
61f723
+            goto loser;
61f723
+    } else {
61f723
+        memset(quick_dbhash, 0, sizeof(quick_dbhash));
61f723
+    }
61f723
+
61f723
+    hashresult = PL_Base64Decode(dbpwd, 0, dbhash);
61f723
+    if (NULL == hashresult) {
61f723
+        slapi_log_err(SLAPI_LOG_PLUGIN, SALTED_MD5_SUBSYSTEM_NAME,
61f723
+                      "smd5_pw_cmp: userPassword \"%s\" is the wrong length "
61f723
+                      "or is not properly encoded BASE64\n",
61f723
+                      dbpwd);
61f723
+        goto loser;
61f723
+    }
61f723
+
61f723
+    salt.bv_val = (void *)(dbhash + MD5_LENGTH); /* salt starts after hash value */
61f723
+    salt.bv_len = hash_len - MD5_LENGTH;         /* remaining bytes must be salt */
61f723
+
61f723
+    /* create the hash */
61f723
+    memset(userhash, 0, sizeof(userhash));
61f723
+    PK11_DigestBegin(ctx);
61f723
+    PK11_DigestOp(ctx, (const unsigned char *)userpwd, strlen(userpwd));
61f723
+    PK11_DigestOp(ctx, (unsigned char *)(salt.bv_val), salt.bv_len);
61f723
+    PK11_DigestFinal(ctx, userhash, &outLen, sizeof userhash);
61f723
+    PK11_DestroyContext(ctx, 1);
61f723
+
61f723
+    /* Compare everything up to the salt. */
61f723
+    rc = slapi_ct_memcmp(userhash, dbhash, MD5_LENGTH, MD5_LENGTH);
61f723
 
61f723
 loser:
61f723
    if ( dbhash && dbhash != quick_dbhash ) slapi_ch_free_string( (char **)&dbhash );
61f723
diff --git a/ldap/servers/slapd/ch_malloc.c b/ldap/servers/slapd/ch_malloc.c
61f723
index 52ccb64e8..da0b5f6d8 100644
61f723
--- a/ldap/servers/slapd/ch_malloc.c
61f723
+++ b/ldap/servers/slapd/ch_malloc.c
61f723
@@ -343,8 +343,8 @@ slapi_ch_smprintf(const char *fmt, ...)
61f723
 
61f723
 /* Constant time memcmp. Does not shortcircuit on failure! */
61f723
 /* This relies on p1 and p2 both being size at least n! */
61f723
-int
61f723
-slapi_ct_memcmp( const void *p1, const void *p2, size_t n)
61f723
+int32_t
61f723
+slapi_ct_memcmp( const void *p1, const void *p2, size_t n1, size_t n2)
61f723
 {
61f723
     int result = 0;
61f723
     const unsigned char *_p1 = (const unsigned char *)p1;
61f723
@@ -353,10 +353,35 @@ slapi_ct_memcmp( const void *p1, const void *p2, size_t n)
61f723
     if (_p1 == NULL || _p2 == NULL) {
61f723
         return 2;
61f723
     }
61f723
-
61f723
-    for (size_t i = 0; i < n; i++) {
61f723
-        if (_p1[i] ^ _p2[i]) {
61f723
-            result = 1;
61f723
+    if (n1 == n2) {
61f723
+        for (size_t i = 0; i < n1; i++) {
61f723
+            if (_p1[i] ^ _p2[i]) {
61f723
+                result = 1;
61f723
+            }
61f723
+        }
61f723
+    } else {
61f723
+        const unsigned char *_pa;
61f723
+        const unsigned char *_pb;
61f723
+        size_t nl;
61f723
+        if (n2 > n1) {
61f723
+            _pa = _p2;
61f723
+            _pb = _p2;
61f723
+            nl = n2;
61f723
+        } else {
61f723
+            _pa = _p1;
61f723
+            _pb = _p1;
61f723
+            nl = n1;
61f723
+        }
61f723
+        /* We already fail as n1 != n2 */
61f723
+        result = 3;
61f723
+        for (size_t i = 0; i < nl; i++) {
61f723
+            if (_pa[i] ^ _pb[i]) {
61f723
+                /*
61f723
+                 * If we don't mutate result here, dead code elimination
61f723
+                 * we remove for loop.
61f723
+                 */
61f723
+                result = 4;
61f723
+            }
61f723
         }
61f723
     }
61f723
     return result;
61f723
diff --git a/ldap/servers/slapd/slapi-plugin.h b/ldap/servers/slapd/slapi-plugin.h
61f723
index 16aa1b711..8555be939 100644
61f723
--- a/ldap/servers/slapd/slapi-plugin.h
61f723
+++ b/ldap/servers/slapd/slapi-plugin.h
61f723
@@ -5856,7 +5856,7 @@ char * slapi_ch_smprintf(const char *fmt, ...)
61f723
  * \param n length in bytes of the content of p1 AND p2.
61f723
  * \return 0 on match. 1 on non-match. 2 on presence of NULL pointer in p1 or p2.
61f723
  */
61f723
-int slapi_ct_memcmp( const void *p1, const void *p2, size_t n);
61f723
+int32_t slapi_ct_memcmp( const void *p1, const void *p2, size_t n1, size_t n2);
61f723
 
61f723
 /*
61f723
  * syntax plugin routines
61f723
-- 
61f723
2.13.6
61f723