382 lines
7.7 KiB
C
382 lines
7.7 KiB
C
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
#ifdef MAKECRCH
|
|||
|
# include <stdio.h>
|
|||
|
# ifndef DYNAMIC_CRC_TABLE
|
|||
|
# define DYNAMIC_CRC_TABLE
|
|||
|
# endif
|
|||
|
#endif
|
|||
|
|
|||
|
#include "zutil.h"
|
|||
|
|
|||
|
|
|||
|
#if !defined(NOBYFOUR) && defined(Z_U4)
|
|||
|
# define BYFOUR
|
|||
|
#endif
|
|||
|
#ifdef BYFOUR
|
|||
|
local unsigned long crc32_little OF((unsigned long,
|
|||
|
const unsigned char FAR *, z_size_t));
|
|||
|
local unsigned long crc32_big OF((unsigned long,
|
|||
|
const unsigned char FAR *, z_size_t));
|
|||
|
# define TBLS 8
|
|||
|
#else
|
|||
|
# define TBLS 1
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
local unsigned long gf2_matrix_times OF((unsigned long *mat,
|
|||
|
unsigned long vec));
|
|||
|
local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat));
|
|||
|
local uLong crc32_combine_ OF((uLong crc1, uLong crc2, z_off64_t len2));
|
|||
|
|
|||
|
|
|||
|
#ifdef DYNAMIC_CRC_TABLE
|
|||
|
|
|||
|
local volatile int crc_table_empty = 1;
|
|||
|
local z_crc_t FAR crc_table[TBLS][256];
|
|||
|
local void make_crc_table OF((void));
|
|||
|
#ifdef MAKECRCH
|
|||
|
local void write_table OF((FILE *, const z_crc_t FAR *));
|
|||
|
#endif
|
|||
|
|
|||
|
local void make_crc_table()
|
|||
|
{
|
|||
|
z_crc_t c;
|
|||
|
int n, k;
|
|||
|
z_crc_t poly;
|
|||
|
|
|||
|
static volatile int first = 1;
|
|||
|
static const unsigned char p[] = {0,1,2,4,5,7,8,10,11,12,16,22,23,26};
|
|||
|
|
|||
|
|
|||
|
if (first) {
|
|||
|
first = 0;
|
|||
|
|
|||
|
|
|||
|
poly = 0;
|
|||
|
for (n = 0; n < (int)(sizeof(p)/sizeof(unsigned char)); n++)
|
|||
|
poly |= (z_crc_t)1 << (31 - p[n]);
|
|||
|
|
|||
|
|
|||
|
for (n = 0; n < 256; n++) {
|
|||
|
c = (z_crc_t)n;
|
|||
|
for (k = 0; k < 8; k++)
|
|||
|
c = c & 1 ? poly ^ (c >> 1) : c >> 1;
|
|||
|
crc_table[0][n] = c;
|
|||
|
}
|
|||
|
|
|||
|
#ifdef BYFOUR
|
|||
|
|
|||
|
for (n = 0; n < 256; n++) {
|
|||
|
c = crc_table[0][n];
|
|||
|
crc_table[4][n] = ZSWAP32(c);
|
|||
|
for (k = 1; k < 4; k++) {
|
|||
|
c = crc_table[0][c & 0xff] ^ (c >> 8);
|
|||
|
crc_table[k][n] = c;
|
|||
|
crc_table[k + 4][n] = ZSWAP32(c);
|
|||
|
}
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
crc_table_empty = 0;
|
|||
|
}
|
|||
|
else {
|
|||
|
|
|||
|
while (crc_table_empty)
|
|||
|
;
|
|||
|
}
|
|||
|
|
|||
|
#ifdef MAKECRCH
|
|||
|
|
|||
|
{
|
|||
|
FILE *out;
|
|||
|
|
|||
|
out = fopen("crc32.h", "w");
|
|||
|
if (out == NULL) return;
|
|||
|
fprintf(out, "\n\n");
|
|||
|
fprintf(out, "local const z_crc_t FAR ");
|
|||
|
fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");
|
|||
|
write_table(out, crc_table[0]);
|
|||
|
# ifdef BYFOUR
|
|||
|
fprintf(out, "#ifdef BYFOUR\n");
|
|||
|
for (k = 1; k < 8; k++) {
|
|||
|
fprintf(out, " },\n {\n");
|
|||
|
write_table(out, crc_table[k]);
|
|||
|
}
|
|||
|
fprintf(out, "#endif\n");
|
|||
|
# endif
|
|||
|
fprintf(out, " }\n};\n");
|
|||
|
fclose(out);
|
|||
|
}
|
|||
|
#endif
|
|||
|
}
|
|||
|
|
|||
|
#ifdef MAKECRCH
|
|||
|
local void write_table(out, table)
|
|||
|
FILE *out;
|
|||
|
const z_crc_t FAR *table;
|
|||
|
{
|
|||
|
int n;
|
|||
|
|
|||
|
for (n = 0; n < 256; n++)
|
|||
|
fprintf(out, "%s0x%08lxUL%s", n % 5 ? "" : " ",
|
|||
|
(unsigned long)(table[n]),
|
|||
|
n == 255 ? "\n" : (n % 5 == 4 ? ",\n" : ", "));
|
|||
|
}
|
|||
|
#endif
|
|||
|
|
|||
|
#else
|
|||
|
|
|||
|
#include "crc32.h"
|
|||
|
#endif
|
|||
|
|
|||
|
|
|||
|
const z_crc_t FAR * ZEXPORT get_crc_table()
|
|||
|
{
|
|||
|
#ifdef DYNAMIC_CRC_TABLE
|
|||
|
if (crc_table_empty)
|
|||
|
make_crc_table();
|
|||
|
#endif
|
|||
|
return (const z_crc_t FAR *)crc_table;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
#define DO1 crc = crc_table[0][((int)crc ^ (*buf++)) & 0xff] ^ (crc >> 8)
|
|||
|
#define DO8 DO1; DO1; DO1; DO1; DO1; DO1; DO1; DO1
|
|||
|
|
|||
|
|
|||
|
unsigned long ZEXPORT crc32_z(crc, buf, len)
|
|||
|
unsigned long crc;
|
|||
|
const unsigned char FAR *buf;
|
|||
|
z_size_t len;
|
|||
|
{
|
|||
|
if (buf == Z_NULL) return 0UL;
|
|||
|
|
|||
|
#ifdef DYNAMIC_CRC_TABLE
|
|||
|
if (crc_table_empty)
|
|||
|
make_crc_table();
|
|||
|
#endif
|
|||
|
|
|||
|
#ifdef BYFOUR
|
|||
|
if (sizeof(void *) == sizeof(ptrdiff_t)) {
|
|||
|
z_crc_t endian;
|
|||
|
|
|||
|
endian = 1;
|
|||
|
if (*((unsigned char *)(&endian)))
|
|||
|
return crc32_little(crc, buf, len);
|
|||
|
else
|
|||
|
return crc32_big(crc, buf, len);
|
|||
|
}
|
|||
|
#endif
|
|||
|
crc = crc ^ 0xffffffffUL;
|
|||
|
while (len >= 8) {
|
|||
|
DO8;
|
|||
|
len -= 8;
|
|||
|
}
|
|||
|
if (len) do {
|
|||
|
DO1;
|
|||
|
} while (--len);
|
|||
|
return crc ^ 0xffffffffUL;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
unsigned long ZEXPORT crc32(crc, buf, len)
|
|||
|
unsigned long crc;
|
|||
|
const unsigned char FAR *buf;
|
|||
|
uInt len;
|
|||
|
{
|
|||
|
return crc32_z(crc, buf, len);
|
|||
|
}
|
|||
|
|
|||
|
#ifdef BYFOUR
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
#define DOLIT4 c ^= *buf4++; \
|
|||
|
c = crc_table[3][c & 0xff] ^ crc_table[2][(c >> 8) & 0xff] ^ \
|
|||
|
crc_table[1][(c >> 16) & 0xff] ^ crc_table[0][c >> 24]
|
|||
|
#define DOLIT32 DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4
|
|||
|
|
|||
|
|
|||
|
local unsigned long crc32_little(crc, buf, len)
|
|||
|
unsigned long crc;
|
|||
|
const unsigned char FAR *buf;
|
|||
|
z_size_t len;
|
|||
|
{
|
|||
|
register z_crc_t c;
|
|||
|
register const z_crc_t FAR *buf4;
|
|||
|
|
|||
|
c = (z_crc_t)crc;
|
|||
|
c = ~c;
|
|||
|
while (len && ((ptrdiff_t)buf & 3)) {
|
|||
|
c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8);
|
|||
|
len--;
|
|||
|
}
|
|||
|
|
|||
|
buf4 = (const z_crc_t FAR *)(const void FAR *)buf;
|
|||
|
while (len >= 32) {
|
|||
|
DOLIT32;
|
|||
|
len -= 32;
|
|||
|
}
|
|||
|
while (len >= 4) {
|
|||
|
DOLIT4;
|
|||
|
len -= 4;
|
|||
|
}
|
|||
|
buf = (const unsigned char FAR *)buf4;
|
|||
|
|
|||
|
if (len) do {
|
|||
|
c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8);
|
|||
|
} while (--len);
|
|||
|
c = ~c;
|
|||
|
return (unsigned long)c;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
#define DOBIG4 c ^= *buf4++; \
|
|||
|
c = crc_table[4][c & 0xff] ^ crc_table[5][(c >> 8) & 0xff] ^ \
|
|||
|
crc_table[6][(c >> 16) & 0xff] ^ crc_table[7][c >> 24]
|
|||
|
#define DOBIG32 DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4
|
|||
|
|
|||
|
|
|||
|
local unsigned long crc32_big(crc, buf, len)
|
|||
|
unsigned long crc;
|
|||
|
const unsigned char FAR *buf;
|
|||
|
z_size_t len;
|
|||
|
{
|
|||
|
register z_crc_t c;
|
|||
|
register const z_crc_t FAR *buf4;
|
|||
|
|
|||
|
c = ZSWAP32((z_crc_t)crc);
|
|||
|
c = ~c;
|
|||
|
while (len && ((ptrdiff_t)buf & 3)) {
|
|||
|
c = crc_table[4][(c >> 24) ^ *buf++] ^ (c << 8);
|
|||
|
len--;
|
|||
|
}
|
|||
|
|
|||
|
buf4 = (const z_crc_t FAR *)(const void FAR *)buf;
|
|||
|
while (len >= 32) {
|
|||
|
DOBIG32;
|
|||
|
len -= 32;
|
|||
|
}
|
|||
|
while (len >= 4) {
|
|||
|
DOBIG4;
|
|||
|
len -= 4;
|
|||
|
}
|
|||
|
buf = (const unsigned char FAR *)buf4;
|
|||
|
|
|||
|
if (len) do {
|
|||
|
c = crc_table[4][(c >> 24) ^ *buf++] ^ (c << 8);
|
|||
|
} while (--len);
|
|||
|
c = ~c;
|
|||
|
return (unsigned long)(ZSWAP32(c));
|
|||
|
}
|
|||
|
|
|||
|
#endif
|
|||
|
|
|||
|
#define GF2_DIM 32
|
|||
|
|
|||
|
|
|||
|
local unsigned long gf2_matrix_times(mat, vec)
|
|||
|
unsigned long *mat;
|
|||
|
unsigned long vec;
|
|||
|
{
|
|||
|
unsigned long sum;
|
|||
|
|
|||
|
sum = 0;
|
|||
|
while (vec) {
|
|||
|
if (vec & 1)
|
|||
|
sum ^= *mat;
|
|||
|
vec >>= 1;
|
|||
|
mat++;
|
|||
|
}
|
|||
|
return sum;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
local void gf2_matrix_square(square, mat)
|
|||
|
unsigned long *square;
|
|||
|
unsigned long *mat;
|
|||
|
{
|
|||
|
int n;
|
|||
|
|
|||
|
for (n = 0; n < GF2_DIM; n++)
|
|||
|
square[n] = gf2_matrix_times(mat, mat[n]);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
local uLong crc32_combine_(crc1, crc2, len2)
|
|||
|
uLong crc1;
|
|||
|
uLong crc2;
|
|||
|
z_off64_t len2;
|
|||
|
{
|
|||
|
int n;
|
|||
|
unsigned long row;
|
|||
|
unsigned long even[GF2_DIM];
|
|||
|
unsigned long odd[GF2_DIM];
|
|||
|
|
|||
|
|
|||
|
if (len2 <= 0)
|
|||
|
return crc1;
|
|||
|
|
|||
|
|
|||
|
odd[0] = 0xedb88320UL;
|
|||
|
row = 1;
|
|||
|
for (n = 1; n < GF2_DIM; n++) {
|
|||
|
odd[n] = row;
|
|||
|
row <<= 1;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
gf2_matrix_square(even, odd);
|
|||
|
|
|||
|
|
|||
|
gf2_matrix_square(odd, even);
|
|||
|
|
|||
|
|
|||
|
do {
|
|||
|
|
|||
|
gf2_matrix_square(even, odd);
|
|||
|
if (len2 & 1)
|
|||
|
crc1 = gf2_matrix_times(even, crc1);
|
|||
|
len2 >>= 1;
|
|||
|
|
|||
|
|
|||
|
if (len2 == 0)
|
|||
|
break;
|
|||
|
|
|||
|
|
|||
|
gf2_matrix_square(odd, even);
|
|||
|
if (len2 & 1)
|
|||
|
crc1 = gf2_matrix_times(odd, crc1);
|
|||
|
len2 >>= 1;
|
|||
|
|
|||
|
|
|||
|
} while (len2 != 0);
|
|||
|
|
|||
|
|
|||
|
crc1 ^= crc2;
|
|||
|
return crc1;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
uLong ZEXPORT crc32_combine(crc1, crc2, len2)
|
|||
|
uLong crc1;
|
|||
|
uLong crc2;
|
|||
|
z_off_t len2;
|
|||
|
{
|
|||
|
return crc32_combine_(crc1, crc2, (z_off64_t)len2);
|
|||
|
}
|
|||
|
|
|||
|
uLong ZEXPORT crc32_combine64(crc1, crc2, len2)
|
|||
|
uLong crc1;
|
|||
|
uLong crc2;
|
|||
|
z_off64_t len2;
|
|||
|
{
|
|||
|
return crc32_combine_(crc1, crc2, len2);
|
|||
|
}
|