sum.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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 the GPL v2 or later, see the file LICENSE in this tarball.
  14. */
  15. #include "libbb.h"
  16. enum { SUM_BSD, PRINT_NAME, SUM_SYSV };
  17. /* BSD: calculate and print the rotated checksum and the size in 1K blocks
  18. The checksum varies depending on sizeof (int). */
  19. /* SYSV: calculate and print the checksum and the size in 512-byte blocks */
  20. /* Return 1 if successful. */
  21. static unsigned sum_file(const char *file, unsigned type)
  22. {
  23. #define buf bb_common_bufsiz1
  24. unsigned long long total_bytes = 0;
  25. int fd, r;
  26. /* The sum of all the input bytes, modulo (UINT_MAX + 1). */
  27. unsigned s = 0;
  28. fd = open_or_warn_stdin(file);
  29. if (fd == -1)
  30. return 0;
  31. while (1) {
  32. size_t bytes_read = safe_read(fd, buf, BUFSIZ);
  33. if ((ssize_t)bytes_read <= 0) {
  34. r = (fd && close(fd) != 0);
  35. if (!bytes_read && !r)
  36. /* no error */
  37. break;
  38. bb_simple_perror_msg(file);
  39. return 0;
  40. }
  41. total_bytes += bytes_read;
  42. if (type >= SUM_SYSV) {
  43. do s += buf[--bytes_read]; while (bytes_read);
  44. } else {
  45. r = 0;
  46. do {
  47. s = (s >> 1) + ((s & 1) << 15);
  48. s += buf[r++];
  49. s &= 0xffff; /* Keep it within bounds. */
  50. } while (--bytes_read);
  51. }
  52. }
  53. if (type < PRINT_NAME)
  54. file = "";
  55. if (type >= SUM_SYSV) {
  56. r = (s & 0xffff) + ((s & 0xffffffff) >> 16);
  57. s = (r & 0xffff) + (r >> 16);
  58. printf("%d %llu %s\n", s, (total_bytes + 511) / 512, file);
  59. } else
  60. printf("%05d %5llu %s\n", s, (total_bytes + 1023) / 1024, file);
  61. return 1;
  62. #undef buf
  63. }
  64. int sum_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
  65. int sum_main(int argc UNUSED_PARAM, char **argv)
  66. {
  67. unsigned n;
  68. unsigned type = SUM_BSD;
  69. n = getopt32(argv, "sr");
  70. argv += optind;
  71. if (n & 1) type = SUM_SYSV;
  72. /* give the bsd priority over sysv func */
  73. if (n & 2) type = SUM_BSD;
  74. if (!argv[0]) {
  75. /* Do not print the name */
  76. n = sum_file("-", type);
  77. } else {
  78. /* Need to print the name if either
  79. - more than one file given
  80. - doing sysv */
  81. type += (argv[1] || type == SUM_SYSV);
  82. n = 1;
  83. do {
  84. n &= sum_file(*argv, type);
  85. } while (*++argv);
  86. }
  87. return !n;
  88. }