blob: ac9836cc9e61b185e08687e75c73c380fc751762 [file] [log] [blame]
Rob Landleyc57ec372006-04-10 17:07:15 +00001/* vi: set sw=4 ts=4: */
2/*
3 * CRC32 table fill function
4 * Copyright (C) 2006 by Rob Sullivan <cogito.ergo.cogito@gmail.com>
5 * (I can't really claim much credit however, as the algorithm is
6 * very well-known)
7 *
8 * The following function creates a CRC32 table depending on whether
Denis Vlasenko9213a9e2006-09-17 16:28:10 +00009 * a big-endian (0x04c11db7) or little-endian (0xedb88320) CRC32 is
Rob Landleyc57ec372006-04-10 17:07:15 +000010 * required. Admittedly, there are other CRC32 polynomials floating
11 * around, but Busybox doesn't use them.
12 *
13 * endian = 1: big-endian
14 * endian = 0: little-endian
Denis Vlasenkodb12d1d2008-12-07 00:52:58 +000015 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +020016 * Licensed under GPLv2, see file LICENSE in this source tree.
Rob Landleyc57ec372006-04-10 17:07:15 +000017 */
18
Rob Landleyc57ec372006-04-10 17:07:15 +000019#include "libbb.h"
20
Denys Vlasenko9ce642f2010-10-27 15:26:45 +020021uint32_t *global_crc32_table;
22
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000023uint32_t* FAST_FUNC crc32_filltable(uint32_t *crc_table, int endian)
Rob Landleyd921b2e2006-08-03 15:41:12 +000024{
Rob Landleyc57ec372006-04-10 17:07:15 +000025 uint32_t polynomial = endian ? 0x04c11db7 : 0xedb88320;
26 uint32_t c;
27 int i, j;
Denis Vlasenko9213a9e2006-09-17 16:28:10 +000028
Denis Vlasenkoc6758a02007-04-10 21:40:19 +000029 if (!crc_table)
30 crc_table = xmalloc(256 * sizeof(uint32_t));
31
Rob Landleyc57ec372006-04-10 17:07:15 +000032 for (i = 0; i < 256; i++) {
33 c = endian ? (i << 24) : i;
34 for (j = 8; j; j--) {
35 if (endian)
36 c = (c&0x80000000) ? ((c << 1) ^ polynomial) : (c << 1);
37 else
38 c = (c&1) ? ((c >> 1) ^ polynomial) : (c >> 1);
39 }
40 *crc_table++ = c;
41 }
42
43 return crc_table - 256;
44}
Denys Vlasenko9ce642f2010-10-27 15:26:45 +020045
46uint32_t FAST_FUNC crc32_block_endian1(uint32_t val, const void *buf, unsigned len, uint32_t *crc_table)
47{
48 const void *end = (uint8_t*)buf + len;
49
50 while (buf != end) {
51 val = (val << 8) ^ crc_table[(val >> 24) ^ *(uint8_t*)buf];
52 buf = (uint8_t*)buf + 1;
53 }
54 return val;
55}
56
57uint32_t FAST_FUNC crc32_block_endian0(uint32_t val, const void *buf, unsigned len, uint32_t *crc_table)
58{
59 const void *end = (uint8_t*)buf + len;
60
61 while (buf != end) {
Denys Vlasenkob7c9fb22011-02-03 00:05:48 +010062 val = crc_table[(uint8_t)val ^ *(uint8_t*)buf] ^ (val >> 8);
Denys Vlasenko9ce642f2010-10-27 15:26:45 +020063 buf = (uint8_t*)buf + 1;
64 }
65 return val;
66}