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-08-28 23:31:54 +00:00
|
|
|
*
|
2006-04-18 20:57:28 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */
|
|
|
|
|
|
|
|
#include "busybox.h"
|
|
|
|
|
2007-02-03 17:28:39 +00:00
|
|
|
int cksum_main(int argc, char **argv);
|
2006-08-28 23:31:54 +00:00
|
|
|
int cksum_main(int argc, char **argv)
|
|
|
|
{
|
2007-04-10 21:40:19 +00:00
|
|
|
uint32_t *crc32_table = crc32_filltable(NULL, 1);
|
2006-04-18 20:57:28 +00:00
|
|
|
|
|
|
|
FILE *fp;
|
|
|
|
uint32_t crc;
|
|
|
|
long length, filesize;
|
|
|
|
int bytes_read;
|
|
|
|
char *cp;
|
2006-08-28 23:31:54 +00:00
|
|
|
|
2006-04-18 20:57:28 +00:00
|
|
|
int inp_stdin = (argc == optind) ? 1 : 0;
|
2006-08-28 23:31:54 +00:00
|
|
|
|
2006-04-18 20:57:28 +00:00
|
|
|
do {
|
2006-10-26 23:25:17 +00:00
|
|
|
fp = fopen_or_warn_stdin((inp_stdin) ? bb_msg_standard_input : *++argv);
|
2006-08-28 23:31:54 +00:00
|
|
|
|
2006-04-18 20:57:28 +00:00
|
|
|
crc = 0;
|
|
|
|
length = 0;
|
2006-08-28 23:31:54 +00:00
|
|
|
|
|
|
|
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-08-28 23:31:54 +00:00
|
|
|
|
2006-04-18 20:57:28 +00:00
|
|
|
filesize = length;
|
2006-08-28 23:31:54 +00:00
|
|
|
|
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-08-28 23:31:54 +00:00
|
|
|
|
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);
|
2006-08-28 23:31:54 +00:00
|
|
|
} 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
|
|
|
}
|