Line | Count | Source (jump to first uncovered line) |
1 | | /* adler32.c -- compute the Adler-32 checksum of a data stream |
2 | | * Copyright (C) 1995-2011, 2016 Mark Adler |
3 | | * For conditions of distribution and use, see copyright notice in zlib.h |
4 | | */ |
5 | | |
6 | | #include "zbuild.h" |
7 | | #include "functable.h" |
8 | | #include "adler32_p.h" |
9 | | |
10 | | #ifdef ZLIB_COMPAT |
11 | | unsigned long Z_EXPORT PREFIX(adler32_z)(unsigned long adler, const unsigned char *buf, size_t len) { |
12 | | return (unsigned long)FUNCTABLE_CALL(adler32)((uint32_t)adler, buf, len); |
13 | | } |
14 | | #else |
15 | 1.67M | uint32_t Z_EXPORT PREFIX(adler32_z)(uint32_t adler, const unsigned char *buf, size_t len) { |
16 | 1.67M | return FUNCTABLE_CALL(adler32)(adler, buf, len); |
17 | 1.67M | } |
18 | | #endif |
19 | | |
20 | | /* ========================================================================= */ |
21 | | #ifdef ZLIB_COMPAT |
22 | | unsigned long Z_EXPORT PREFIX(adler32)(unsigned long adler, const unsigned char *buf, unsigned int len) { |
23 | | return (unsigned long)FUNCTABLE_CALL(adler32)((uint32_t)adler, buf, len); |
24 | | } |
25 | | #else |
26 | 659 | uint32_t Z_EXPORT PREFIX(adler32)(uint32_t adler, const unsigned char *buf, uint32_t len) { |
27 | 659 | return FUNCTABLE_CALL(adler32)(adler, buf, len); |
28 | 659 | } |
29 | | #endif |
30 | | |
31 | | /* ========================================================================= */ |
32 | 1.31k | static uint32_t adler32_combine_(uint32_t adler1, uint32_t adler2, z_off64_t len2) { |
33 | 1.31k | uint32_t sum1; |
34 | 1.31k | uint32_t sum2; |
35 | 1.31k | unsigned rem; |
36 | | |
37 | | /* for negative len, return invalid adler32 as a clue for debugging */ |
38 | 1.31k | if (len2 < 0) |
39 | 0 | return 0xffffffff; |
40 | | |
41 | | /* the derivation of this formula is left as an exercise for the reader */ |
42 | 1.31k | len2 %= BASE; /* assumes len2 >= 0 */ |
43 | 1.31k | rem = (unsigned)len2; |
44 | 1.31k | sum1 = adler1 & 0xffff; |
45 | 1.31k | sum2 = rem * sum1; |
46 | 1.31k | sum2 %= BASE; |
47 | 1.31k | sum1 += (adler2 & 0xffff) + BASE - 1; |
48 | 1.31k | sum2 += ((adler1 >> 16) & 0xffff) + ((adler2 >> 16) & 0xffff) + BASE - rem; |
49 | 1.31k | if (sum1 >= BASE) sum1 -= BASE; |
50 | 1.31k | if (sum1 >= BASE) sum1 -= BASE; |
51 | 1.31k | if (sum2 >= ((unsigned long)BASE << 1)) sum2 -= ((unsigned long)BASE << 1); |
52 | 1.31k | if (sum2 >= BASE) sum2 -= BASE; |
53 | 1.31k | return sum1 | (sum2 << 16); |
54 | 1.31k | } |
55 | | |
56 | | /* ========================================================================= */ |
57 | | #ifdef ZLIB_COMPAT |
58 | | unsigned long Z_EXPORT PREFIX(adler32_combine)(unsigned long adler1, unsigned long adler2, z_off_t len2) { |
59 | | return (unsigned long)adler32_combine_((uint32_t)adler1, (uint32_t)adler2, len2); |
60 | | } |
61 | | |
62 | | unsigned long Z_EXPORT PREFIX4(adler32_combine)(unsigned long adler1, unsigned long adler2, z_off64_t len2) { |
63 | | return (unsigned long)adler32_combine_((uint32_t)adler1, (uint32_t)adler2, len2); |
64 | | } |
65 | | #else |
66 | 1.31k | uint32_t Z_EXPORT PREFIX4(adler32_combine)(uint32_t adler1, uint32_t adler2, z_off64_t len2) { |
67 | 1.31k | return adler32_combine_(adler1, adler2, len2); |
68 | 1.31k | } |
69 | | #endif |