cksum.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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
  6. *
  7. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  8. */
  9. //usage:#define cksum_trivial_usage
  10. //usage: "FILES..."
  11. //usage:#define cksum_full_usage "\n\n"
  12. //usage: "Calculate the CRC32 checksums of FILES"
  13. #include "libbb.h"
  14. /* This is a NOEXEC applet. Be very careful! */
  15. int cksum_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  16. int cksum_main(int argc UNUSED_PARAM, char **argv)
  17. {
  18. uint32_t *crc32_table = crc32_filltable(NULL, 1);
  19. uint32_t crc;
  20. off_t length, filesize;
  21. int bytes_read;
  22. int exit_code = EXIT_SUCCESS;
  23. #if ENABLE_DESKTOP
  24. getopt32(argv, ""); /* coreutils 6.9 compat */
  25. argv += optind;
  26. #else
  27. argv++;
  28. #endif
  29. do {
  30. int fd = open_or_warn_stdin(*argv ? *argv : bb_msg_standard_input);
  31. if (fd < 0) {
  32. exit_code = EXIT_FAILURE;
  33. continue;
  34. }
  35. crc = 0;
  36. length = 0;
  37. #define read_buf bb_common_bufsiz1
  38. while ((bytes_read = safe_read(fd, read_buf, sizeof(read_buf))) > 0) {
  39. length += bytes_read;
  40. crc = crc32_block_endian1(crc, read_buf, bytes_read, crc32_table);
  41. }
  42. close(fd);
  43. filesize = length;
  44. while (length) {
  45. crc = (crc << 8) ^ crc32_table[(uint8_t)(crc >> 24) ^ (uint8_t)length];
  46. /* must ensure that shift is unsigned! */
  47. if (sizeof(length) <= sizeof(unsigned))
  48. length = (unsigned)length >> 8;
  49. else if (sizeof(length) <= sizeof(unsigned long))
  50. length = (unsigned long)length >> 8;
  51. else
  52. length = (unsigned long long)length >> 8;
  53. }
  54. crc = ~crc;
  55. printf((*argv ? "%"PRIu32" %"OFF_FMT"i %s\n" : "%"PRIu32" %"OFF_FMT"i\n"),
  56. crc, filesize, *argv);
  57. } while (*argv && *++argv);
  58. fflush_stdout_and_exit(exit_code);
  59. }