/* crc32.c -- compute the CRC-32 of a data stream1* Copyright (C) 1995-2006, 2010, 2011, 2012, 2016 Mark Adler2* For conditions of distribution and use, see copyright notice in zlib.h3*4* Thanks to Rodney Brown <[email protected]> for his contribution of faster5* CRC methods: exclusive-oring 32 bits of data at a time, and pre-computing6* tables for updating the shift register in one step with three exclusive-ors7* instead of four steps with four exclusive-ors. This results in about a8* factor of two increase in speed on a Power PC G4 (PPC7455) using gcc -O3.9*/1011/* @(#) $Id$ */1213/*14Note on the use of DYNAMIC_CRC_TABLE: there is no mutex or semaphore15protection on the static variables used to control the first-use generation16of the crc tables. Therefore, if you #define DYNAMIC_CRC_TABLE, you should17first call get_crc_table() to initialize the tables before allowing more than18one thread to use crc32().1920DYNAMIC_CRC_TABLE and MAKECRCH can be #defined to write out crc32.h.21*/2223#ifdef MAKECRCH24# include <stdio.h>25# ifndef DYNAMIC_CRC_TABLE26# define DYNAMIC_CRC_TABLE27# endif /* !DYNAMIC_CRC_TABLE */28#endif /* MAKECRCH */2930#include "zutil.h" /* for STDC and FAR definitions */3132/* Definitions for doing the crc four data bytes at a time. */33#if !defined(NOBYFOUR) && defined(Z_U4)34# define BYFOUR35#endif36#ifdef BYFOUR37local unsigned long crc32_little OF((unsigned long,38const unsigned char FAR *, z_size_t));39local unsigned long crc32_big OF((unsigned long,40const unsigned char FAR *, z_size_t));41# define TBLS 842#else43# define TBLS 144#endif /* BYFOUR */4546/* Local functions for crc concatenation */47local unsigned long gf2_matrix_times OF((unsigned long *mat,48unsigned long vec));49local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat));50local uLong crc32_combine_ OF((uLong crc1, uLong crc2, z_off64_t len2));515253#ifdef DYNAMIC_CRC_TABLE5455local volatile int crc_table_empty = 1;56local z_crc_t FAR crc_table[TBLS][256];57local void make_crc_table OF((void));58#ifdef MAKECRCH59local void write_table OF((FILE *, const z_crc_t FAR *));60#endif /* MAKECRCH */61/*62Generate tables for a byte-wise 32-bit CRC calculation on the polynomial:63x^32+x^26+x^23+x^22+x^16+x^12+x^11+x^10+x^8+x^7+x^5+x^4+x^2+x+1.6465Polynomials over GF(2) are represented in binary, one bit per coefficient,66with the lowest powers in the most significant bit. Then adding polynomials67is just exclusive-or, and multiplying a polynomial by x is a right shift by68one. If we call the above polynomial p, and represent a byte as the69polynomial q, also with the lowest power in the most significant bit (so the70byte 0xb1 is the polynomial x^7+x^3+x+1), then the CRC is (q*x^32) mod p,71where a mod b means the remainder after dividing a by b.7273This calculation is done using the shift-register method of multiplying and74taking the remainder. The register is initialized to zero, and for each75incoming bit, x^32 is added mod p to the register if the bit is a one (where76x^32 mod p is p+x^32 = x^26+...+1), and the register is multiplied mod p by77x (which is shifting right by one and adding x^32 mod p if the bit shifted78out is a one). We start with the highest power (least significant bit) of79q and repeat for all eight bits of q.8081The first table is simply the CRC of all possible eight bit values. This is82all the information needed to generate CRCs on data a byte at a time for all83combinations of CRC register values and incoming bytes. The remaining tables84allow for word-at-a-time CRC calculation for both big-endian and little-85endian machines, where a word is four bytes.86*/87local void make_crc_table()88{89z_crc_t c;90int n, k;91z_crc_t poly; /* polynomial exclusive-or pattern */92/* terms of polynomial defining this crc (except x^32): */93static volatile int first = 1; /* flag to limit concurrent making */94static const unsigned char p[] = {0,1,2,4,5,7,8,10,11,12,16,22,23,26};9596/* See if another task is already doing this (not thread-safe, but better97than nothing -- significantly reduces duration of vulnerability in98case the advice about DYNAMIC_CRC_TABLE is ignored) */99if (first) {100first = 0;101102/* make exclusive-or pattern from polynomial (0xedb88320UL) */103poly = 0;104for (n = 0; n < (int)(sizeof(p)/sizeof(unsigned char)); n++)105poly |= (z_crc_t)1 << (31 - p[n]);106107/* generate a crc for every 8-bit value */108for (n = 0; n < 256; n++) {109c = (z_crc_t)n;110for (k = 0; k < 8; k++)111c = c & 1 ? poly ^ (c >> 1) : c >> 1;112crc_table[0][n] = c;113}114115#ifdef BYFOUR116/* generate crc for each value followed by one, two, and three zeros,117and then the byte reversal of those as well as the first table */118for (n = 0; n < 256; n++) {119c = crc_table[0][n];120crc_table[4][n] = ZSWAP32(c);121for (k = 1; k < 4; k++) {122c = crc_table[0][c & 0xff] ^ (c >> 8);123crc_table[k][n] = c;124crc_table[k + 4][n] = ZSWAP32(c);125}126}127#endif /* BYFOUR */128129crc_table_empty = 0;130}131else { /* not first */132/* wait for the other guy to finish (not efficient, but rare) */133while (crc_table_empty)134;135}136137#ifdef MAKECRCH138/* write out CRC tables to crc32.h */139{140FILE *out;141142out = fopen("crc32.h", "w");143if (out == NULL) return;144fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");145fprintf(out, " * Generated automatically by crc32.c\n */\n\n");146fprintf(out, "local const z_crc_t FAR ");147fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");148write_table(out, crc_table[0]);149# ifdef BYFOUR150fprintf(out, "#ifdef BYFOUR\n");151for (k = 1; k < 8; k++) {152fprintf(out, " },\n {\n");153write_table(out, crc_table[k]);154}155fprintf(out, "#endif\n");156# endif /* BYFOUR */157fprintf(out, " }\n};\n");158fclose(out);159}160#endif /* MAKECRCH */161}162163#ifdef MAKECRCH164local void write_table(out, table)165FILE *out;166const z_crc_t FAR *table;167{168int n;169170for (n = 0; n < 256; n++)171fprintf(out, "%s0x%08lxUL%s", n % 5 ? "" : " ",172(unsigned long)(table[n]),173n == 255 ? "\n" : (n % 5 == 4 ? ",\n" : ", "));174}175#endif /* MAKECRCH */176177#else /* !DYNAMIC_CRC_TABLE */178/* ========================================================================179* Tables of CRC-32s of all single-byte values, made by make_crc_table().180*/181#include "crc32.h"182#endif /* DYNAMIC_CRC_TABLE */183184/* =========================================================================185* This function can be used by asm versions of crc32()186*/187const z_crc_t FAR * ZEXPORT get_crc_table()188{189#ifdef DYNAMIC_CRC_TABLE190if (crc_table_empty)191make_crc_table();192#endif /* DYNAMIC_CRC_TABLE */193return (const z_crc_t FAR *)crc_table;194}195196/* ========================================================================= */197#define DO1 crc = crc_table[0][((int)crc ^ (*buf++)) & 0xff] ^ (crc >> 8)198#define DO8 DO1; DO1; DO1; DO1; DO1; DO1; DO1; DO1199200/* ========================================================================= */201unsigned long ZEXPORT crc32_z(crc, buf, len)202unsigned long crc;203const unsigned char FAR *buf;204z_size_t len;205{206if (buf == Z_NULL) return 0UL;207208#ifdef DYNAMIC_CRC_TABLE209if (crc_table_empty)210make_crc_table();211#endif /* DYNAMIC_CRC_TABLE */212213#ifdef BYFOUR214if (sizeof(void *) == sizeof(ptrdiff_t)) {215z_crc_t endian;216217endian = 1;218if (*((unsigned char *)(&endian)))219return crc32_little(crc, buf, len);220else221return crc32_big(crc, buf, len);222}223#endif /* BYFOUR */224crc = crc ^ 0xffffffffUL;225while (len >= 8) {226DO8;227len -= 8;228}229if (len) do {230DO1;231} while (--len);232return crc ^ 0xffffffffUL;233}234235/* ========================================================================= */236unsigned long ZEXPORT crc32(crc, buf, len)237unsigned long crc;238const unsigned char FAR *buf;239uInt len;240{241return crc32_z(crc, buf, len);242}243244#ifdef BYFOUR245246/*247This BYFOUR code accesses the passed unsigned char * buffer with a 32-bit248integer pointer type. This violates the strict aliasing rule, where a249compiler can assume, for optimization purposes, that two pointers to250fundamentally different types won't ever point to the same memory. This can251manifest as a problem only if one of the pointers is written to. This code252only reads from those pointers. So long as this code remains isolated in253this compilation unit, there won't be a problem. For this reason, this code254should not be copied and pasted into a compilation unit in which other code255writes to the buffer that is passed to these routines.256*/257258/* ========================================================================= */259#define DOLIT4 c ^= *buf4++; \260c = crc_table[3][c & 0xff] ^ crc_table[2][(c >> 8) & 0xff] ^ \261crc_table[1][(c >> 16) & 0xff] ^ crc_table[0][c >> 24]262#define DOLIT32 DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4263264/* ========================================================================= */265local unsigned long crc32_little(crc, buf, len)266unsigned long crc;267const unsigned char FAR *buf;268z_size_t len;269{270register z_crc_t c;271register const z_crc_t FAR *buf4;272273c = (z_crc_t)crc;274c = ~c;275while (len && ((ptrdiff_t)buf & 3)) {276c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8);277len--;278}279280buf4 = (const z_crc_t FAR *)(const void FAR *)buf;281while (len >= 32) {282DOLIT32;283len -= 32;284}285while (len >= 4) {286DOLIT4;287len -= 4;288}289buf = (const unsigned char FAR *)buf4;290291if (len) do {292c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8);293} while (--len);294c = ~c;295return (unsigned long)c;296}297298/* ========================================================================= */299#define DOBIG4 c ^= *buf4++; \300c = crc_table[4][c & 0xff] ^ crc_table[5][(c >> 8) & 0xff] ^ \301crc_table[6][(c >> 16) & 0xff] ^ crc_table[7][c >> 24]302#define DOBIG32 DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4303304/* ========================================================================= */305local unsigned long crc32_big(crc, buf, len)306unsigned long crc;307const unsigned char FAR *buf;308z_size_t len;309{310register z_crc_t c;311register const z_crc_t FAR *buf4;312313c = ZSWAP32((z_crc_t)crc);314c = ~c;315while (len && ((ptrdiff_t)buf & 3)) {316c = crc_table[4][(c >> 24) ^ *buf++] ^ (c << 8);317len--;318}319320buf4 = (const z_crc_t FAR *)(const void FAR *)buf;321while (len >= 32) {322DOBIG32;323len -= 32;324}325while (len >= 4) {326DOBIG4;327len -= 4;328}329buf = (const unsigned char FAR *)buf4;330331if (len) do {332c = crc_table[4][(c >> 24) ^ *buf++] ^ (c << 8);333} while (--len);334c = ~c;335return (unsigned long)(ZSWAP32(c));336}337338#endif /* BYFOUR */339340#define GF2_DIM 32 /* dimension of GF(2) vectors (length of CRC) */341342/* ========================================================================= */343local unsigned long gf2_matrix_times(mat, vec)344unsigned long *mat;345unsigned long vec;346{347unsigned long sum;348349sum = 0;350while (vec) {351if (vec & 1)352sum ^= *mat;353vec >>= 1;354mat++;355}356return sum;357}358359/* ========================================================================= */360local void gf2_matrix_square(square, mat)361unsigned long *square;362unsigned long *mat;363{364int n;365366for (n = 0; n < GF2_DIM; n++)367square[n] = gf2_matrix_times(mat, mat[n]);368}369370/* ========================================================================= */371local uLong crc32_combine_(crc1, crc2, len2)372uLong crc1;373uLong crc2;374z_off64_t len2;375{376int n;377unsigned long row;378unsigned long even[GF2_DIM]; /* even-power-of-two zeros operator */379unsigned long odd[GF2_DIM]; /* odd-power-of-two zeros operator */380381/* degenerate case (also disallow negative lengths) */382if (len2 <= 0)383return crc1;384385/* put operator for one zero bit in odd */386odd[0] = 0xedb88320UL; /* CRC-32 polynomial */387row = 1;388for (n = 1; n < GF2_DIM; n++) {389odd[n] = row;390row <<= 1;391}392393/* put operator for two zero bits in even */394gf2_matrix_square(even, odd);395396/* put operator for four zero bits in odd */397gf2_matrix_square(odd, even);398399/* apply len2 zeros to crc1 (first square will put the operator for one400zero byte, eight zero bits, in even) */401do {402/* apply zeros operator for this bit of len2 */403gf2_matrix_square(even, odd);404if (len2 & 1)405crc1 = gf2_matrix_times(even, crc1);406len2 >>= 1;407408/* if no more bits set, then done */409if (len2 == 0)410break;411412/* another iteration of the loop with odd and even swapped */413gf2_matrix_square(odd, even);414if (len2 & 1)415crc1 = gf2_matrix_times(odd, crc1);416len2 >>= 1;417418/* if no more bits set, then done */419} while (len2 != 0);420421/* return combined crc */422crc1 ^= crc2;423return crc1;424}425426/* ========================================================================= */427uLong ZEXPORT crc32_combine(crc1, crc2, len2)428uLong crc1;429uLong crc2;430z_off_t len2;431{432return crc32_combine_(crc1, crc2, len2);433}434435uLong ZEXPORT crc32_combine64(crc1, crc2, len2)436uLong crc1;437uLong crc2;438z_off64_t len2;439{440return crc32_combine_(crc1, crc2, len2);441}442443444