hush/coreutils/cksum.c

55 lines
1.2 KiB
C
Raw Normal View History

2006-04-18 20:57:28 +00:00
/* vi: set sw=4 ts=4: */
/*
* cksum - calculate the CRC32 checksum of a file
*
* Copyright (C) 2006 by Rob Sullivan, with ideas from code by Walter Harms
*
2006-04-18 20:57:28 +00:00
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */
#include "busybox.h"
int cksum_main(int argc, char **argv);
int cksum_main(int argc, char **argv)
{
2006-09-17 16:28:10 +00:00
uint32_t *crc32_table = crc32_filltable(1);
2006-04-18 20:57:28 +00:00
FILE *fp;
uint32_t crc;
long length, filesize;
int bytes_read;
char *cp;
2006-04-18 20:57:28 +00:00
int inp_stdin = (argc == optind) ? 1 : 0;
2006-04-18 20:57:28 +00:00
do {
fp = fopen_or_warn_stdin((inp_stdin) ? bb_msg_standard_input : *++argv);
2006-04-18 20:57:28 +00:00
crc = 0;
length = 0;
while ((bytes_read = fread(bb_common_bufsiz1, 1, BUFSIZ, fp)) > 0) {
cp = bb_common_bufsiz1;
2006-04-18 20:57:28 +00:00
length += bytes_read;
while (bytes_read--)
crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ (*cp++)) & 0xffL];
}
2006-04-18 20:57:28 +00:00
filesize = length;
2006-04-18 20:57:28 +00:00
for (; length; length >>= 8)
crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ length) & 0xffL];
crc ^= 0xffffffffL;
if (inp_stdin) {
2006-10-26 23:21:47 +00:00
printf("%" PRIu32 " %li\n", crc, filesize);
2006-04-18 20:57:28 +00:00
break;
}
2006-10-26 23:21:47 +00:00
printf("%" PRIu32 " %li %s\n", crc, filesize, *argv);
2006-04-18 20:57:28 +00:00
fclose(fp);
} while (*(argv + 1));
2006-10-26 23:21:47 +00:00
fflush_stdout_and_exit(EXIT_SUCCESS);
2006-04-18 20:57:28 +00:00
}