3
0

sum.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * sum -- checksum and count the blocks in a file
  4. * Like BSD sum or SysV sum -r, except like SysV sum if -s option is given.
  5. *
  6. * Copyright (C) 86, 89, 91, 1995-2002, 2004 Free Software Foundation, Inc.
  7. * Copyright (C) 2005 by Erik Andersen <andersen@codepoet.org>
  8. * Copyright (C) 2005 by Mike Frysinger <vapier@gentoo.org>
  9. *
  10. * Written by Kayvan Aghaiepour and David MacKenzie
  11. * Taken from coreutils and turned into a busybox applet by Mike Frysinger
  12. *
  13. * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  14. */
  15. //usage:#define sum_trivial_usage
  16. //usage: "[-rs] [FILE]..."
  17. //usage:#define sum_full_usage "\n\n"
  18. //usage: "Checksum and count the blocks in a file\n"
  19. //usage: "\n -r Use BSD sum algorithm (1K blocks)"
  20. //usage: "\n -s Use System V sum algorithm (512byte blocks)"
  21. #include "libbb.h"
  22. #include "common_bufsiz.h"
  23. enum { SUM_BSD, PRINT_NAME, SUM_SYSV };
  24. /* BSD: calculate and print the rotated checksum and the size in 1K blocks
  25. The checksum varies depending on sizeof (int). */
  26. /* SYSV: calculate and print the checksum and the size in 512-byte blocks */
  27. /* Return 1 if successful. */
  28. static unsigned sum_file(const char *file, unsigned type)
  29. {
  30. unsigned long long total_bytes = 0;
  31. int fd, r;
  32. /* The sum of all the input bytes, modulo (UINT_MAX + 1). */
  33. unsigned s = 0;
  34. #define buf bb_common_bufsiz1
  35. setup_common_bufsiz();
  36. fd = open_or_warn_stdin(file);
  37. if (fd == -1)
  38. return 0;
  39. while (1) {
  40. size_t bytes_read = safe_read(fd, buf, COMMON_BUFSIZE);
  41. if ((ssize_t)bytes_read <= 0) {
  42. r = (fd && close(fd) != 0);
  43. if (!bytes_read && !r)
  44. /* no error */
  45. break;
  46. bb_simple_perror_msg(file);
  47. return 0;
  48. }
  49. total_bytes += bytes_read;
  50. if (type >= SUM_SYSV) {
  51. do s += buf[--bytes_read]; while (bytes_read);
  52. } else {
  53. r = 0;
  54. do {
  55. s = (s >> 1) + ((s & 1) << 15);
  56. s += buf[r++];
  57. s &= 0xffff; /* Keep it within bounds. */
  58. } while (--bytes_read);
  59. }
  60. }
  61. if (type < PRINT_NAME)
  62. file = "";
  63. if (type >= SUM_SYSV) {
  64. r = (s & 0xffff) + ((s & 0xffffffff) >> 16);
  65. s = (r & 0xffff) + (r >> 16);
  66. printf("%u %llu %s\n", s, (total_bytes + 511) / 512, file);
  67. } else
  68. printf("%05u %5llu %s\n", s, (total_bytes + 1023) / 1024, file);
  69. return 1;
  70. #undef buf
  71. }
  72. int sum_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  73. int sum_main(int argc UNUSED_PARAM, char **argv)
  74. {
  75. unsigned n;
  76. unsigned type = SUM_BSD;
  77. n = getopt32(argv, "sr");
  78. argv += optind;
  79. if (n & 1) type = SUM_SYSV;
  80. /* give the bsd priority over sysv func */
  81. if (n & 2) type = SUM_BSD;
  82. if (!argv[0]) {
  83. /* Do not print the name */
  84. n = sum_file("-", type);
  85. } else {
  86. /* Need to print the name if either
  87. * - more than one file given
  88. * - doing sysv */
  89. type += (argv[1] || type == SUM_SYSV);
  90. n = 1;
  91. do {
  92. n &= sum_file(*argv, type);
  93. } while (*++argv);
  94. }
  95. return !n;
  96. }