5c67ea6cd9
* grub-core/commands/i386/pc/sendkey.c (grub_cmd_sendkey: find_key_code, find_ascii_code): Make static instead of nested. * grub-core/commands/legacycfg.c (legacy_file: getline): Likewise. Rename to ... (legacy_file_getline): ... this. * grub-core/commands/loadenv.c (grub_cmd_load_env: set_var): Likewise. * grub-core/kern/corecmd.c (grub_core_cmd_set: print_env): Likewise. * grub-core/kern/fs.c (grub_fs_probe: dummy_func): Likewise. Rename to ... (probe_dummy_iter): ... this. * grub-core/kern/i386/coreboot/mmap.c (grub_linuxbios_table_iterate: check_signature): Likewise. * grub-core/kern/parser.c (grub_parser_split_cmdline: check_varstate): Likewise. Mark inline. * grub-core/lib/arg.c (find_short: fnd_short): Likewise. Pass an additional parameter. (find_long: fnd_long): Likewise. Pass two additional parameters. * grub-core/lib/crc.c (init_crc32c_table: reflect): Likewise. * grub-core/lib/crc64.c (init_crc64_table: reflect): Likewise. * grub-core/lib/ieee1275/cmos.c (grub_cmos_find_port: hook): Likewise. Rename to ... (grub_cmos_find_port_iter): ... this. * grub-core/lib/ieee1275/datetime.c (find_rtc: hook): Likewise. Rename to ... (find_rtc_iter): ... this. * grub-core/normal/menu_entry.c (run): Fold nested editor_getsource function directly into the function body, since it is only called once.
76 lines
1.8 KiB
C
76 lines
1.8 KiB
C
/* crc.c - crc function */
|
|
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 2008 Free Software Foundation, Inc.
|
|
*
|
|
* GRUB is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* GRUB is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <grub/types.h>
|
|
#include <grub/lib/crc.h>
|
|
|
|
static grub_uint32_t crc32c_table [256];
|
|
|
|
/* Helper for init_crc32c_table. */
|
|
static grub_uint32_t
|
|
reflect (grub_uint32_t ref, int len)
|
|
{
|
|
grub_uint32_t result = 0;
|
|
int i;
|
|
|
|
for (i = 1; i <= len; i++)
|
|
{
|
|
if (ref & 1)
|
|
result |= 1 << (len - i);
|
|
ref >>= 1;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
static void
|
|
init_crc32c_table (void)
|
|
{
|
|
grub_uint32_t polynomial = 0x1edc6f41;
|
|
int i, j;
|
|
|
|
for(i = 0; i < 256; i++)
|
|
{
|
|
crc32c_table[i] = reflect(i, 8) << 24;
|
|
for (j = 0; j < 8; j++)
|
|
crc32c_table[i] = (crc32c_table[i] << 1) ^
|
|
(crc32c_table[i] & (1 << 31) ? polynomial : 0);
|
|
crc32c_table[i] = reflect(crc32c_table[i], 32);
|
|
}
|
|
}
|
|
|
|
grub_uint32_t
|
|
grub_getcrc32c (grub_uint32_t crc, const void *buf, int size)
|
|
{
|
|
int i;
|
|
const grub_uint8_t *data = buf;
|
|
|
|
if (! crc32c_table[1])
|
|
init_crc32c_table ();
|
|
|
|
crc^= 0xffffffff;
|
|
|
|
for (i = 0; i < size; i++)
|
|
{
|
|
crc = (crc >> 8) ^ crc32c_table[(crc & 0xFF) ^ *data];
|
|
data++;
|
|
}
|
|
|
|
return crc ^ 0xffffffff;
|
|
}
|