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. */
|
|
|
|
|
2007-05-26 19:00:18 +00:00
|
|
|
#include "libbb.h"
|
2006-04-18 20:57:28 +00:00
|
|
|
|
2007-10-11 10:05:36 +00:00
|
|
|
int cksum_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-03-17 09:07:36 +00:00
|
|
|
int cksum_main(int argc ATTRIBUTE_UNUSED, char **argv)
|
2006-08-28 23:31:54 +00:00
|
|
|
{
|
2007-04-10 21:40:19 +00:00
|
|
|
uint32_t *crc32_table = crc32_filltable(NULL, 1);
|
2006-04-18 20:57:28 +00:00
|
|
|
uint32_t crc;
|
|
|
|
long length, filesize;
|
|
|
|
int bytes_read;
|
2008-03-17 09:07:36 +00:00
|
|
|
uint8_t *cp;
|
2006-08-28 23:31:54 +00:00
|
|
|
|
2008-03-17 09:07:36 +00:00
|
|
|
#if ENABLE_DESKTOP
|
|
|
|
getopt32(argv, ""); /* coreutils 6.9 compat */
|
|
|
|
argv += optind;
|
|
|
|
#else
|
|
|
|
argv++;
|
|
|
|
#endif
|
2006-08-28 23:31:54 +00:00
|
|
|
|
2006-04-18 20:57:28 +00:00
|
|
|
do {
|
2008-03-17 09:07:36 +00:00
|
|
|
int fd = open_or_warn_stdin(*argv ? *argv : bb_msg_standard_input);
|
2006-08-28 23:31:54 +00:00
|
|
|
|
2008-03-17 09:07:36 +00:00
|
|
|
if (fd < 0)
|
|
|
|
continue;
|
2006-04-18 20:57:28 +00:00
|
|
|
crc = 0;
|
|
|
|
length = 0;
|
2006-08-28 23:31:54 +00:00
|
|
|
|
2007-06-04 10:16:52 +00:00
|
|
|
#define read_buf bb_common_bufsiz1
|
2008-03-17 09:07:36 +00:00
|
|
|
while ((bytes_read = safe_read(fd, read_buf, sizeof(read_buf))) > 0) {
|
2008-05-18 22:28:26 +00:00
|
|
|
cp = (uint8_t *) read_buf;
|
2006-04-18 20:57:28 +00:00
|
|
|
length += bytes_read;
|
2008-03-17 09:07:36 +00:00
|
|
|
do {
|
|
|
|
crc = (crc << 8) ^ crc32_table[(crc >> 24) ^ *cp++];
|
|
|
|
} while (--bytes_read);
|
2006-04-18 20:57:28 +00:00
|
|
|
}
|
2008-03-17 09:07:36 +00:00
|
|
|
close(fd);
|
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)
|
2008-03-17 09:07:36 +00:00
|
|
|
crc = (crc << 8) ^ crc32_table[((crc >> 24) ^ length) & 0xff];
|
2006-04-18 20:57:28 +00:00
|
|
|
crc ^= 0xffffffffL;
|
|
|
|
|
2008-03-17 09:07:36 +00:00
|
|
|
printf((*argv ? "%" PRIu32 " %li %s\n" : "%" PRIu32 " %li\n"),
|
|
|
|
crc, filesize, *argv);
|
|
|
|
} while (*argv && *++argv);
|
2006-08-28 23:31:54 +00:00
|
|
|
|
2006-10-26 23:21:47 +00:00
|
|
|
fflush_stdout_and_exit(EXIT_SUCCESS);
|
2006-04-18 20:57:28 +00:00
|
|
|
}
|