mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-12 15:06:44 +02:00
* src/cksum.c (min_digest_line_length, digest_hex_bytes) (digest_length, md5_sum_stream, sha1_sum_stream) (sha224_sum_stream, sha256_sum_stream, sha384_sum_stream) (sha512_sum_stream, sha2_sum_stream, sha3_sum_stream) (blake2b_sum_stream, sm3_sum_stream, problematic_chars) (filename_unescape, valid_digits, bsd_split_3) (algorithm_from_tag, split_3, digest_file, output_file) (b64_equal, hex_equal, digest_check, main): * src/cksum_avx2.c (cksum_avx2): * src/cksum_avx512.c (cksum_avx512): * src/cksum_crc.c (cksum_fp_t, cksum_slice8, crc_sum_stream) (crc32b_sum_stream, output_crc): * src/cksum_pclmul.c (cksum_pclmul): * src/cksum_vmull.c (cksum_vmull): * src/sum.c (bsd_sum_stream, sysv_sum_stream, output_bsd, output_sysv): Prefer signed to unsigned int where either will do. This allows better checking with -fsanitize=undefined. It should also help simplify future patches, so that they needn’t worry whether comparisons like ‘i < len - 2’ will misbehave.
230 lines
5.5 KiB
C
230 lines
5.5 KiB
C
/* sum -- checksum and count the blocks in a file
|
|
Copyright (C) 1986-2026 Free Software Foundation, Inc.
|
|
|
|
This program 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.
|
|
|
|
This program 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 this program. If not, see <https://www.gnu.org/licenses/>. */
|
|
|
|
/* Like BSD sum or SysV sum -r, except like SysV sum if -s option is given. */
|
|
|
|
/* Written by Kayvan Aghaiepour and David MacKenzie. */
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
#include <sys/types.h>
|
|
#include <endian.h>
|
|
#include "system.h"
|
|
#include "human.h"
|
|
#include "sum.h"
|
|
|
|
/* Calculate the checksum and the size in bytes of stream STREAM.
|
|
Return -1 on error, 0 on success. */
|
|
|
|
int
|
|
bsd_sum_stream (FILE *stream, void *resstream, intmax_t *length)
|
|
{
|
|
int ret = -1;
|
|
idx_t sum;
|
|
int checksum = 0; /* The checksum mod 2^16. */
|
|
intmax_t total_bytes = 0; /* The number of bytes. */
|
|
enum { buffer_length = 32768 };
|
|
uint8_t *buffer = malloc (buffer_length);
|
|
|
|
if (! buffer)
|
|
return -1;
|
|
|
|
/* Process file */
|
|
while (true)
|
|
{
|
|
sum = 0;
|
|
|
|
/* Read block */
|
|
while (true)
|
|
{
|
|
size_t n = fread (buffer + sum, 1, buffer_length - sum, stream);
|
|
if (n == 0)
|
|
{
|
|
if (ferror (stream))
|
|
goto cleanup_buffer;
|
|
goto final_process;
|
|
}
|
|
|
|
sum += n;
|
|
|
|
if (buffer_length == sum)
|
|
break;
|
|
|
|
if (feof (stream))
|
|
goto final_process;
|
|
}
|
|
|
|
for (size_t i = 0; i < sum; i++)
|
|
{
|
|
checksum = (checksum >> 1) + ((checksum & 1) << 15);
|
|
checksum += buffer[i];
|
|
checksum &= 0xffff; /* Keep it within bounds. */
|
|
}
|
|
if (ckd_add (&total_bytes, total_bytes, sum))
|
|
{
|
|
errno = EOVERFLOW;
|
|
goto cleanup_buffer;
|
|
}
|
|
}
|
|
|
|
final_process:;
|
|
|
|
for (idx_t i = 0; i < sum; i++)
|
|
{
|
|
checksum = (checksum >> 1) + ((checksum & 1) << 15);
|
|
checksum += buffer[i];
|
|
checksum &= 0xffff; /* Keep it within bounds. */
|
|
}
|
|
if (ckd_add (&total_bytes, total_bytes, sum))
|
|
{
|
|
errno = EOVERFLOW;
|
|
goto cleanup_buffer;
|
|
}
|
|
|
|
memcpy (resstream, &checksum, sizeof checksum);
|
|
*length = total_bytes;
|
|
ret = 0;
|
|
cleanup_buffer:
|
|
free (buffer);
|
|
return ret;
|
|
}
|
|
|
|
/* Calculate the checksum and the size in bytes of stream STREAM.
|
|
Return -1 on error, 0 on success. */
|
|
|
|
int
|
|
sysv_sum_stream (FILE *stream, void *resstream, intmax_t *length)
|
|
{
|
|
int ret = -1;
|
|
idx_t sum;
|
|
intmax_t total_bytes = 0;
|
|
enum { buffer_length = 32768 };
|
|
uint8_t *buffer = malloc (buffer_length);
|
|
|
|
if (! buffer)
|
|
return -1;
|
|
|
|
/* The sum of all the input bytes, modulo (UINT_MAX + 1). */
|
|
unsigned int s = 0;
|
|
|
|
/* Process file */
|
|
while (true)
|
|
{
|
|
sum = 0;
|
|
|
|
/* Read block */
|
|
while (true)
|
|
{
|
|
size_t n = fread (buffer + sum, 1, buffer_length - sum, stream);
|
|
if (n == 0)
|
|
{
|
|
if (ferror (stream))
|
|
goto cleanup_buffer;
|
|
goto final_process;
|
|
}
|
|
|
|
sum += n;
|
|
|
|
if (buffer_length == sum)
|
|
break;
|
|
|
|
if (feof (stream))
|
|
goto final_process;
|
|
}
|
|
|
|
for (size_t i = 0; i < sum; i++)
|
|
s += buffer[i];
|
|
if (total_bytes + sum < total_bytes)
|
|
{
|
|
errno = EOVERFLOW;
|
|
goto cleanup_buffer;
|
|
}
|
|
total_bytes += sum;
|
|
}
|
|
|
|
final_process:;
|
|
|
|
for (size_t i = 0; i < sum; i++)
|
|
s += buffer[i];
|
|
if (total_bytes + sum < total_bytes)
|
|
{
|
|
errno = EOVERFLOW;
|
|
goto cleanup_buffer;
|
|
}
|
|
total_bytes += sum;
|
|
|
|
int r = (s & 0xffff) + ((s & 0xffffffff) >> 16);
|
|
int checksum = (r & 0xffff) + (r >> 16);
|
|
|
|
memcpy (resstream, &checksum, sizeof checksum);
|
|
*length = total_bytes;
|
|
ret = 0;
|
|
cleanup_buffer:
|
|
free (buffer);
|
|
return ret;
|
|
}
|
|
|
|
/* Print the checksum and size (in 1024 byte blocks) to stdout.
|
|
If ARGS is true, also print the FILE name. */
|
|
|
|
void
|
|
output_bsd (char const *file, MAYBE_UNUSED int binary_file, void const *digest,
|
|
bool raw, MAYBE_UNUSED bool tagged, unsigned char delim, bool args,
|
|
intmax_t length)
|
|
{
|
|
if (raw)
|
|
{
|
|
/* Output in network byte order (big endian). */
|
|
uint16_t out_int = *(int *)digest;
|
|
out_int = htobe16 (out_int);
|
|
fwrite (&out_int, 1, 16/8, stdout);
|
|
return;
|
|
}
|
|
|
|
char hbuf[LONGEST_HUMAN_READABLE + 1];
|
|
printf ("%05d %5s", *(int *)digest,
|
|
human_readable (length, hbuf, human_ceiling, 1, 1024));
|
|
if (args)
|
|
printf (" %s", file);
|
|
putchar (delim);
|
|
}
|
|
|
|
/* Print the checksum and size (in 512 byte blocks) to stdout.
|
|
If ARGS is true, also print the FILE name. */
|
|
|
|
void
|
|
output_sysv (char const *file, MAYBE_UNUSED int binary_file,
|
|
void const *digest, bool raw, MAYBE_UNUSED bool tagged,
|
|
unsigned char delim, bool args, intmax_t length)
|
|
{
|
|
if (raw)
|
|
{
|
|
/* Output in network byte order (big endian). */
|
|
uint16_t out_int = *(int *)digest;
|
|
out_int = htobe16 (out_int);
|
|
fwrite (&out_int, 1, 16/8, stdout);
|
|
return;
|
|
}
|
|
|
|
char hbuf[LONGEST_HUMAN_READABLE + 1];
|
|
printf ("%d %s", *(int *)digest,
|
|
human_readable (length, hbuf, human_ceiling, 1, 512));
|
|
if (args)
|
|
printf (" %s", file);
|
|
putchar (delim);
|
|
}
|