mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-06 12:09:26 +08:00
5243990191
Signed-off-by: Ulf Samuelsson <ulf@emagii.com>
181 lines
4.9 KiB
C
181 lines
4.9 KiB
C
/*
|
|
* Library: ldlibcrc
|
|
* Author: Lammert Bies, Bastian Molkenthin, Ulf Samuelsson
|
|
*
|
|
* This file is licensed under the MIT License as stated below
|
|
*
|
|
* Copyright (c) 2016 Lammert Bies
|
|
* Copyright (c) 2021 Bastian Molkenthin
|
|
* Copyright (c) 2023 Ulf Samuelsson (ulf@emagii.com)
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*
|
|
*/
|
|
|
|
#include "sysdep.h"
|
|
#include "bfd.h"
|
|
#include "lddigest.h"
|
|
#include "ldreflect.h"
|
|
|
|
#define SHIFT(t) ((sizeof(t)-1)*8)
|
|
/* ============ CRC-64 LIBCRC functions ======================================*/
|
|
|
|
/*
|
|
* uint64_t *init_crc64_tab(algorithm_desc_t *dsc) ;
|
|
*
|
|
* For optimal speed, the CRC64 calculation uses a table with pre-calculated
|
|
* bit patterns which are used in the XOR operations in the program.
|
|
* init_crc64_tab is copyright (c) 2016 Lammert Bies
|
|
*/
|
|
static void
|
|
_init_crc64_tab (uint64_t * crc_tab, uint64_t poly)
|
|
{
|
|
uint64_t crc;
|
|
uint32_t shift = SHIFT (uint64_t);
|
|
for (uint64_t i = 0; i < 256; i++)
|
|
{
|
|
crc = i << shift;
|
|
for (uint64_t j = 0; j < 8; j++)
|
|
{
|
|
if ((crc & 0x8000000000000000ull) != 0)
|
|
{
|
|
crc = (crc << 1) ^ poly;
|
|
}
|
|
else
|
|
{
|
|
crc = crc << 1;
|
|
}
|
|
}
|
|
crc_tab[i] = crc;
|
|
}
|
|
} /* _init_crc64_tab */
|
|
|
|
/*
|
|
* _init_crc64_reciprocal_tab (uint64_t *crc_tab, uint64_t poly);
|
|
*
|
|
* For optimal speed, the CRC64 calculation uses a table with pre-calculated
|
|
* bit patterns which are used in the XOR operations in the program.
|
|
* _init_crc64_reciprocal_tab is copyright (c) 2021 Bastian Molkenthin
|
|
*/
|
|
|
|
static void
|
|
_init_crc64_reciprocal_tab (uint64_t * crc_tab, uint64_t poly)
|
|
{
|
|
uint64_t crc;
|
|
uint64_t reflected_poly = reflect64 (poly);
|
|
for (uint64_t i = 0; i < 256; i++)
|
|
{
|
|
crc = i;
|
|
for (uint64_t j = 0; j < 8; j++)
|
|
{
|
|
if ((crc & 0x0000000000000001ULL) != 0)
|
|
{
|
|
crc >>= 1;
|
|
crc ^= reflected_poly;
|
|
}
|
|
else
|
|
{
|
|
crc >>= 1;
|
|
}
|
|
}
|
|
crc_tab[i] = crc;
|
|
}
|
|
} /* _init_crc64_reciprocal_tab */
|
|
|
|
/*
|
|
* uint64_t *init_crc64_tab(algorithm_desc_t *dsc) ;
|
|
*
|
|
* For optimal speed, the CRC64 calculation uses a table with pre-calculated
|
|
* bit patterns which are used in the XOR operations in the program.
|
|
* init_crc64_tab is copyright (c) 2023 Ulf Samuelsson
|
|
*/
|
|
uint64_t *
|
|
init_crc64_tab (algorithm_desc_t * dsc)
|
|
{
|
|
uint64_t *crc_tab = malloc (256 * sizeof (uint64_t));
|
|
|
|
if (crc_tab == NULL)
|
|
return NULL;
|
|
|
|
if (dsc->reciprocal)
|
|
{
|
|
_init_crc64_reciprocal_tab (crc_tab, dsc->poly.d64);
|
|
}
|
|
else
|
|
{
|
|
_init_crc64_tab (crc_tab, dsc->poly.d64);
|
|
}
|
|
return crc_tab;
|
|
|
|
} /* init_crc64_tab */
|
|
|
|
/*
|
|
* uint64_t calc_crc64
|
|
* (algorithm_desc_t *dsc, const unsigned char *input_str, size_t num_bytes);
|
|
*
|
|
* The function calc_crc64() calculates in one pass the 64 bit CRC value
|
|
* for a byte string that is passed to the function together with a
|
|
* parameter indicating the length.
|
|
* calc_crc64 is
|
|
* copyright (c) 2016 Lammert Bies
|
|
* copyright (c) 2021 Bastian Molkenthin
|
|
* copyright (c) 2023 Ulf Samuelsson
|
|
*/
|
|
uint64_t calc_crc64
|
|
(algorithm_desc_t * dsc, const unsigned char *input_str, size_t num_bytes)
|
|
{
|
|
uint64_t crc;
|
|
const unsigned char *ptr;
|
|
uint64_t *crc_tab = dsc->crc_tab;
|
|
uint64_t index;
|
|
|
|
if ((ptr = input_str) == NULL)
|
|
return 0;
|
|
|
|
if (crc_tab == NULL)
|
|
return 0;
|
|
|
|
|
|
crc = dsc->initial.d64;
|
|
if (dsc->reciprocal)
|
|
{
|
|
for (uint32_t i = 0; i < num_bytes; i++)
|
|
{
|
|
index = ((crc >> 0) ^ (uint64_t) * ptr++) & 0x00000000000000FFull;
|
|
crc = (crc >> 8) ^ crc_tab[index];
|
|
}
|
|
}
|
|
else
|
|
{
|
|
uint32_t shift = SHIFT (uint64_t);
|
|
for (uint32_t i = 0; i < num_bytes; i++)
|
|
{
|
|
const unsigned char c = *ptr++;
|
|
uint64_t rc = (uint64_t) (dsc->ireflect ? reflect8 (c) : c);
|
|
crc = (crc ^ (rc << shift));
|
|
index = (uint32_t) (crc >> shift);
|
|
crc = (crc << 8);
|
|
crc = (crc ^ (crc_tab[index]));
|
|
}
|
|
}
|
|
crc = (dsc->oreflect ? reflect64 (crc) : crc);
|
|
crc = crc ^ dsc->xor_val.d64;
|
|
return crc;
|
|
} /* calc_crc64 */
|