]> git.ipfire.org Git - thirdparty/git.git/commitdiff
sha1-name: check for overflow of N in "foo^N" and "foo~N"
authorRené Scharfe <l.s.r@web.de>
Sun, 15 Sep 2019 12:10:28 +0000 (14:10 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 16 Sep 2019 19:50:33 +0000 (12:50 -0700)
Reject values that don't fit into an int, as get_parent() and
get_nth_ancestor() cannot handle them.  That's better than potentially
returning a random object.

If this restriction turns out to be too tight then we can switch to a
wider data type, but we'd still have to check for overflow.

Signed-off-by: René Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sha1-name.c
t/t1506-rev-parse-diagnosis.sh

index 728e6f1f61ea4641272e59e6287b6b47bfe0c74e..ea0bf6970e9864755f583d41f6af5c2bc5387125 100644 (file)
@@ -1163,13 +1163,22 @@ static enum get_oid_result get_oid_1(struct repository *r,
        }
 
        if (has_suffix) {
-               int num = 0;
+               unsigned int num = 0;
                int len1 = cp - name;
                cp++;
-               while (cp < name + len)
-                       num = num * 10 + *cp++ - '0';
+               while (cp < name + len) {
+                       unsigned int digit = *cp++ - '0';
+                       if (unsigned_mult_overflows(num, 10))
+                               return MISSING_OBJECT;
+                       num *= 10;
+                       if (unsigned_add_overflows(num, digit))
+                               return MISSING_OBJECT;
+                       num += digit;
+               }
                if (!num && len1 == len - 1)
                        num = 1;
+               else if (num > INT_MAX)
+                       return MISSING_OBJECT;
                if (has_suffix == '^')
                        return get_parent(r, name, len1, oid, num);
                /* else if (has_suffix == '~') -- goes without saying */
index 5c4df474012ab76d6785fee42d2ec09cf8dee9b2..6a938b205bdd99405fc86a55e3a82fa42dff2cf7 100755 (executable)
@@ -215,11 +215,11 @@ test_expect_success 'arg before dashdash must be a revision (ambiguous)' '
        test_cmp expect actual
 '
 
-test_expect_failure 'reject Nth parent if N is too high' '
+test_expect_success 'reject Nth parent if N is too high' '
        test_must_fail git rev-parse HEAD^100000000000000000000000000000000
 '
 
-test_expect_failure 'reject Nth ancestor if N is too high' '
+test_expect_success 'reject Nth ancestor if N is too high' '
        test_must_fail git rev-parse HEAD~100000000000000000000000000000000
 '