2006-04-19 02:27:28 +05:30
|
|
|
/* 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-29 05:01:54 +05:30
|
|
|
*
|
2009-11-26 10:13:16 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2006-04-19 02:27:28 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int cksum_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-07-05 14:48:54 +05:30
|
|
|
int cksum_main(int argc UNUSED_PARAM, char **argv)
|
2006-08-29 05:01:54 +05:30
|
|
|
{
|
2007-04-11 03:10:19 +05:30
|
|
|
uint32_t *crc32_table = crc32_filltable(NULL, 1);
|
2006-04-19 02:27:28 +05:30
|
|
|
uint32_t crc;
|
2008-08-28 03:01:23 +05:30
|
|
|
off_t length, filesize;
|
2006-04-19 02:27:28 +05:30
|
|
|
int bytes_read;
|
2008-11-12 04:29:41 +05:30
|
|
|
int exit_code = EXIT_SUCCESS;
|
2008-03-17 14:37:36 +05:30
|
|
|
uint8_t *cp;
|
2006-08-29 05:01:54 +05:30
|
|
|
|
2008-03-17 14:37:36 +05:30
|
|
|
#if ENABLE_DESKTOP
|
|
|
|
getopt32(argv, ""); /* coreutils 6.9 compat */
|
|
|
|
argv += optind;
|
|
|
|
#else
|
|
|
|
argv++;
|
|
|
|
#endif
|
2006-08-29 05:01:54 +05:30
|
|
|
|
2006-04-19 02:27:28 +05:30
|
|
|
do {
|
2008-03-17 14:37:36 +05:30
|
|
|
int fd = open_or_warn_stdin(*argv ? *argv : bb_msg_standard_input);
|
2006-08-29 05:01:54 +05:30
|
|
|
|
2008-11-12 04:29:41 +05:30
|
|
|
if (fd < 0) {
|
|
|
|
exit_code = EXIT_FAILURE;
|
2008-03-17 14:37:36 +05:30
|
|
|
continue;
|
2008-11-12 04:29:41 +05:30
|
|
|
}
|
2006-04-19 02:27:28 +05:30
|
|
|
crc = 0;
|
|
|
|
length = 0;
|
2006-08-29 05:01:54 +05:30
|
|
|
|
2007-06-04 15:46:52 +05:30
|
|
|
#define read_buf bb_common_bufsiz1
|
2008-03-17 14:37:36 +05:30
|
|
|
while ((bytes_read = safe_read(fd, read_buf, sizeof(read_buf))) > 0) {
|
2008-05-19 03:58:26 +05:30
|
|
|
cp = (uint8_t *) read_buf;
|
2006-04-19 02:27:28 +05:30
|
|
|
length += bytes_read;
|
2008-03-17 14:37:36 +05:30
|
|
|
do {
|
|
|
|
crc = (crc << 8) ^ crc32_table[(crc >> 24) ^ *cp++];
|
|
|
|
} while (--bytes_read);
|
2006-04-19 02:27:28 +05:30
|
|
|
}
|
2008-03-17 14:37:36 +05:30
|
|
|
close(fd);
|
2006-08-29 05:01:54 +05:30
|
|
|
|
2006-04-19 02:27:28 +05:30
|
|
|
filesize = length;
|
2006-08-29 05:01:54 +05:30
|
|
|
|
2008-08-28 03:01:23 +05:30
|
|
|
while (length) {
|
|
|
|
crc = (crc << 8) ^ crc32_table[(uint8_t)(crc >> 24) ^ (uint8_t)length];
|
|
|
|
/* must ensure that shift is unsigned! */
|
|
|
|
if (sizeof(length) <= sizeof(unsigned))
|
|
|
|
length = (unsigned)length >> 8;
|
|
|
|
else if (sizeof(length) <= sizeof(unsigned long))
|
|
|
|
length = (unsigned long)length >> 8;
|
|
|
|
else
|
|
|
|
length = (unsigned long long)length >> 8;
|
|
|
|
}
|
|
|
|
crc = ~crc;
|
2006-04-19 02:27:28 +05:30
|
|
|
|
2008-08-28 03:01:23 +05:30
|
|
|
printf((*argv ? "%"PRIu32" %"OFF_FMT"i %s\n" : "%"PRIu32" %"OFF_FMT"i\n"),
|
2008-03-17 14:37:36 +05:30
|
|
|
crc, filesize, *argv);
|
|
|
|
} while (*argv && *++argv);
|
2006-08-29 05:01:54 +05:30
|
|
|
|
2008-11-12 04:29:41 +05:30
|
|
|
fflush_stdout_and_exit(exit_code);
|
2006-04-19 02:27:28 +05:30
|
|
|
}
|