Mike Frysinger | a80b290 | 2005-09-10 02:47:19 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 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 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 13 | * Licensed under GPLv2 or later, see file LICENSE in this source tree. |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 14 | */ |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 15 | //config:config SUM |
Denys Vlasenko | b097a84 | 2018-12-28 03:20:17 +0100 | [diff] [blame] | 16 | //config: bool "sum (4 kb)" |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 17 | //config: default y |
| 18 | //config: help |
Denys Vlasenko | 72089cf | 2017-07-21 09:50:55 +0200 | [diff] [blame] | 19 | //config: checksum and count the blocks in a file |
Denys Vlasenko | af3f420 | 2016-11-23 14:46:56 +0100 | [diff] [blame] | 20 | |
| 21 | //applet:IF_SUM(APPLET(sum, BB_DIR_USR_BIN, BB_SUID_DROP)) |
| 22 | |
| 23 | //kbuild:lib-$(CONFIG_SUM) += sum.o |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 24 | |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 25 | //usage:#define sum_trivial_usage |
| 26 | //usage: "[-rs] [FILE]..." |
| 27 | //usage:#define sum_full_usage "\n\n" |
| 28 | //usage: "Checksum and count the blocks in a file\n" |
Pere Orga | 3442538 | 2011-03-31 14:43:25 +0200 | [diff] [blame] | 29 | //usage: "\n -r Use BSD sum algorithm (1K blocks)" |
| 30 | //usage: "\n -s Use System V sum algorithm (512byte blocks)" |
| 31 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 32 | #include "libbb.h" |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 33 | #include "common_bufsiz.h" |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 34 | |
Bernhard Reutner-Fischer | cd75a96 | 2007-01-27 22:11:28 +0000 | [diff] [blame] | 35 | enum { SUM_BSD, PRINT_NAME, SUM_SYSV }; |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 36 | |
Denis Vlasenko | 9ac9e55 | 2006-12-23 15:58:11 +0000 | [diff] [blame] | 37 | /* BSD: calculate and print the rotated checksum and the size in 1K blocks |
| 38 | The checksum varies depending on sizeof (int). */ |
| 39 | /* SYSV: calculate and print the checksum and the size in 512-byte blocks */ |
| 40 | /* Return 1 if successful. */ |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 41 | static unsigned sum_file(const char *file, unsigned type) |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 42 | { |
Denis Vlasenko | 91e80c2 | 2007-10-05 20:29:31 +0000 | [diff] [blame] | 43 | unsigned long long total_bytes = 0; |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 44 | int fd, r; |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 45 | /* The sum of all the input bytes, modulo (UINT_MAX + 1). */ |
Denis Vlasenko | 9ac9e55 | 2006-12-23 15:58:11 +0000 | [diff] [blame] | 46 | unsigned s = 0; |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 47 | |
Denys Vlasenko | 9de2e5a | 2016-04-21 18:38:51 +0200 | [diff] [blame] | 48 | #define buf bb_common_bufsiz1 |
| 49 | setup_common_bufsiz(); |
| 50 | |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 51 | fd = open_or_warn_stdin(file); |
| 52 | if (fd == -1) |
| 53 | return 0; |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 54 | |
| 55 | while (1) { |
Denys Vlasenko | e6a2f4c | 2016-04-21 16:26:30 +0200 | [diff] [blame] | 56 | size_t bytes_read = safe_read(fd, buf, COMMON_BUFSIZE); |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 57 | |
Denis Vlasenko | 9ac9e55 | 2006-12-23 15:58:11 +0000 | [diff] [blame] | 58 | if ((ssize_t)bytes_read <= 0) { |
| 59 | r = (fd && close(fd) != 0); |
| 60 | if (!bytes_read && !r) |
| 61 | /* no error */ |
| 62 | break; |
Denys Vlasenko | 0939f2e | 2009-10-24 17:47:56 +0200 | [diff] [blame] | 63 | bb_simple_perror_msg(file); |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 64 | return 0; |
| 65 | } |
| 66 | |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 67 | total_bytes += bytes_read; |
Bernhard Reutner-Fischer | cd75a96 | 2007-01-27 22:11:28 +0000 | [diff] [blame] | 68 | if (type >= SUM_SYSV) { |
Denis Vlasenko | 9ac9e55 | 2006-12-23 15:58:11 +0000 | [diff] [blame] | 69 | do s += buf[--bytes_read]; while (bytes_read); |
| 70 | } else { |
| 71 | r = 0; |
| 72 | do { |
| 73 | s = (s >> 1) + ((s & 1) << 15); |
| 74 | s += buf[r++]; |
| 75 | s &= 0xffff; /* Keep it within bounds. */ |
| 76 | } while (--bytes_read); |
| 77 | } |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 78 | } |
| 79 | |
Bernhard Reutner-Fischer | cd75a96 | 2007-01-27 22:11:28 +0000 | [diff] [blame] | 80 | if (type < PRINT_NAME) |
| 81 | file = ""; |
| 82 | if (type >= SUM_SYSV) { |
Denis Vlasenko | 9ac9e55 | 2006-12-23 15:58:11 +0000 | [diff] [blame] | 83 | r = (s & 0xffff) + ((s & 0xffffffff) >> 16); |
Mike Frysinger | db289b2 | 2005-09-10 04:10:18 +0000 | [diff] [blame] | 84 | s = (r & 0xffff) + (r >> 16); |
Denys Vlasenko | 327f550 | 2013-11-29 16:45:45 +0100 | [diff] [blame] | 85 | printf("%u %llu %s\n", s, (total_bytes + 511) / 512, file); |
Denis Vlasenko | 9ac9e55 | 2006-12-23 15:58:11 +0000 | [diff] [blame] | 86 | } else |
Denys Vlasenko | 327f550 | 2013-11-29 16:45:45 +0100 | [diff] [blame] | 87 | printf("%05u %5llu %s\n", s, (total_bytes + 1023) / 1024, file); |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 88 | return 1; |
Denis Vlasenko | 9ac9e55 | 2006-12-23 15:58:11 +0000 | [diff] [blame] | 89 | #undef buf |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 90 | } |
| 91 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 92 | int sum_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 93 | int sum_main(int argc UNUSED_PARAM, char **argv) |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 94 | { |
Bernhard Reutner-Fischer | cd75a96 | 2007-01-27 22:11:28 +0000 | [diff] [blame] | 95 | unsigned n; |
| 96 | unsigned type = SUM_BSD; |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 97 | |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 98 | n = getopt32(argv, "sr"); |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 99 | argv += optind; |
Bernhard Reutner-Fischer | cd75a96 | 2007-01-27 22:11:28 +0000 | [diff] [blame] | 100 | if (n & 1) type = SUM_SYSV; |
Denis Vlasenko | 9ac9e55 | 2006-12-23 15:58:11 +0000 | [diff] [blame] | 101 | /* give the bsd priority over sysv func */ |
Bernhard Reutner-Fischer | cd75a96 | 2007-01-27 22:11:28 +0000 | [diff] [blame] | 102 | if (n & 2) type = SUM_BSD; |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 103 | |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 104 | if (!argv[0]) { |
Bernhard Reutner-Fischer | cd75a96 | 2007-01-27 22:11:28 +0000 | [diff] [blame] | 105 | /* Do not print the name */ |
| 106 | n = sum_file("-", type); |
| 107 | } else { |
| 108 | /* Need to print the name if either |
Denys Vlasenko | 6830ade | 2013-01-15 13:58:01 +0100 | [diff] [blame] | 109 | * - more than one file given |
| 110 | * - doing sysv */ |
Denis Vlasenko | 62a90cd | 2008-03-17 09:07:36 +0000 | [diff] [blame] | 111 | type += (argv[1] || type == SUM_SYSV); |
| 112 | n = 1; |
| 113 | do { |
| 114 | n &= sum_file(*argv, type); |
| 115 | } while (*++argv); |
Bernhard Reutner-Fischer | cd75a96 | 2007-01-27 22:11:28 +0000 | [diff] [blame] | 116 | } |
Denis Vlasenko | 9ac9e55 | 2006-12-23 15:58:11 +0000 | [diff] [blame] | 117 | return !n; |
Mike Frysinger | 4a21170 | 2005-04-21 23:24:46 +0000 | [diff] [blame] | 118 | } |