source: MondoRescue/branches/3.2/mindi-busybox/coreutils/cksum.c

Last change on this file was 3232, checked in by Bruno Cornec, 10 years ago
  • Update mindi-busybox to 1.21.1
File size: 1.8 KB
RevLine 
[821]1/* vi: set sw=4 ts=4: */
2/*
3 * cksum - calculate the CRC32 checksum of a file
4 *
5 * Copyright (C) 2006 by Rob Sullivan, with ideas from code by Walter Harms
[1765]6 *
[2725]7 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
8 */
[3232]9
10//usage:#define cksum_trivial_usage
11//usage: "FILES..."
12//usage:#define cksum_full_usage "\n\n"
13//usage: "Calculate the CRC32 checksums of FILES"
14
[1765]15#include "libbb.h"
[821]16
[2725]17/* This is a NOEXEC applet. Be very careful! */
18
19int cksum_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
20int cksum_main(int argc UNUSED_PARAM, char **argv)
[1765]21{
22 uint32_t *crc32_table = crc32_filltable(NULL, 1);
[821]23 uint32_t crc;
[2725]24 off_t length, filesize;
[821]25 int bytes_read;
[2725]26 int exit_code = EXIT_SUCCESS;
[1765]27
[2725]28#if ENABLE_DESKTOP
29 getopt32(argv, ""); /* coreutils 6.9 compat */
30 argv += optind;
31#else
32 argv++;
33#endif
[1765]34
[821]35 do {
[2725]36 int fd = open_or_warn_stdin(*argv ? *argv : bb_msg_standard_input);
[1765]37
[2725]38 if (fd < 0) {
39 exit_code = EXIT_FAILURE;
40 continue;
41 }
[821]42 crc = 0;
43 length = 0;
[1765]44
45#define read_buf bb_common_bufsiz1
[2725]46 while ((bytes_read = safe_read(fd, read_buf, sizeof(read_buf))) > 0) {
[2859]47 length += bytes_read;
[2725]48 crc = crc32_block_endian1(crc, read_buf, bytes_read, crc32_table);
[821]49 }
[2725]50 close(fd);
[1765]51
[821]52 filesize = length;
[1765]53
[2725]54 while (length) {
55 crc = (crc << 8) ^ crc32_table[(uint8_t)(crc >> 24) ^ (uint8_t)length];
56 /* must ensure that shift is unsigned! */
57 if (sizeof(length) <= sizeof(unsigned))
58 length = (unsigned)length >> 8;
59 else if (sizeof(length) <= sizeof(unsigned long))
60 length = (unsigned long)length >> 8;
61 else
62 length = (unsigned long long)length >> 8;
[821]63 }
[2725]64 crc = ~crc;
[1765]65
[2725]66 printf((*argv ? "%"PRIu32" %"OFF_FMT"i %s\n" : "%"PRIu32" %"OFF_FMT"i\n"),
67 crc, filesize, *argv);
68 } while (*argv && *++argv);
[1765]69
[2725]70 fflush_stdout_and_exit(exit_code);
[821]71}
Note: See TracBrowser for help on using the repository browser.