]> git.99rst.org Git - git.git/commitdiff
git-cvsserver: protect against NULL in crypt(3)
authorCarlo Marcelo Arenas Belón <redacted>
Wed, 15 Sep 2021 08:09:47 +0000 (01:09 -0700)
committerJunio C Hamano <redacted>
Fri, 17 Sep 2021 03:47:23 +0000 (20:47 -0700)
Some versions of crypt(3) will return NULL when passed an unsupported
hash type (ex: OpenBSD with DES), so check for undef instead of using
it directly.

Also use this to probe the system and select a better hash function in
the tests, so it can pass successfully.

Signed-off-by: Carlo Marcelo Arenas Belón <redacted>
[jc: <redacted>]
Signed-off-by: Junio C Hamano <redacted>
git-cvsserver.perl
t/t9400-git-cvsserver-server.sh

index 4c93b5d099178adfb9f583e4a9cd544096dc1aee..64319bed43f2b4916910480223f1089ce90990ef 100755 (executable)
         open my $passwd, "<", $authdb or die $!;
         while (<$passwd>) {
             if (m{^\Q$user\E:(.*)}) {
-                if (crypt(descramble($password), $1) eq $1) {
+                my $hash = crypt(descramble($password), $1);
+                if (defined $hash and $hash eq $1) {
                     $auth_ok = 1;
                 }
-            };
+            }
         }
         close $passwd;
 
index 59b40359c7540c80037c746f72ead3b7a3ebe873..17f988edd268d60e4b4a7dd2074c5566b290554f 100755 (executable)
@@ -36,7 +36,12 @@ CVSWORK="$PWD/cvswork"
 CVS_SERVER=git-cvsserver
 export CVSROOT CVS_SERVER
 
-PWDHASH='lac2ItudM3.KM'
+if perl -e 'exit(1) if not defined crypt("", "cv")'
+then
+       PWDHASH='lac2ItudM3.KM'
+else
+       PWDHASH='$2b$10$t8fGvE/a9eLmfOLzsZme2uOa2QtoMYwIxq9wZA6aBKtF1Yb7FJIzi'
+fi
 
 rm -rf "$CVSWORK" "$SERVERDIR"
 test_expect_success 'setup' '
git clone https://git.99rst.org/PROJECT