blob: 16ec44540b3fe81bc5eb3195e159657662a81824 [file] [log] [blame]
Mike Frysingera80b2902005-09-10 02:47:19 +00001/* vi: set sw=4 ts=4: */
Mike Frysinger4a211702005-04-21 23:24:46 +00002/*
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 Vlasenko0ef64bd2010-08-16 20:14:46 +020013 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Mike Frysinger4a211702005-04-21 23:24:46 +000014 */
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010015//config:config SUM
Denys Vlasenkob097a842018-12-28 03:20:17 +010016//config: bool "sum (4 kb)"
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010017//config: default y
18//config: help
Denys Vlasenko72089cf2017-07-21 09:50:55 +020019//config: checksum and count the blocks in a file
Denys Vlasenkoaf3f4202016-11-23 14:46:56 +010020
21//applet:IF_SUM(APPLET(sum, BB_DIR_USR_BIN, BB_SUID_DROP))
22
23//kbuild:lib-$(CONFIG_SUM) += sum.o
Mike Frysinger4a211702005-04-21 23:24:46 +000024
Pere Orga34425382011-03-31 14:43:25 +020025//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 Orga34425382011-03-31 14:43:25 +020029//usage: "\n -r Use BSD sum algorithm (1K blocks)"
30//usage: "\n -s Use System V sum algorithm (512byte blocks)"
31
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000032#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020033#include "common_bufsiz.h"
Mike Frysinger4a211702005-04-21 23:24:46 +000034
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000035enum { SUM_BSD, PRINT_NAME, SUM_SYSV };
Mike Frysinger4a211702005-04-21 23:24:46 +000036
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000037/* 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 Vlasenko62a90cd2008-03-17 09:07:36 +000041static unsigned sum_file(const char *file, unsigned type)
Mike Frysinger4a211702005-04-21 23:24:46 +000042{
Denis Vlasenko91e80c22007-10-05 20:29:31 +000043 unsigned long long total_bytes = 0;
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000044 int fd, r;
Mike Frysinger4a211702005-04-21 23:24:46 +000045 /* The sum of all the input bytes, modulo (UINT_MAX + 1). */
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000046 unsigned s = 0;
Mike Frysinger4a211702005-04-21 23:24:46 +000047
Denys Vlasenko9de2e5a2016-04-21 18:38:51 +020048#define buf bb_common_bufsiz1
49 setup_common_bufsiz();
50
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000051 fd = open_or_warn_stdin(file);
52 if (fd == -1)
53 return 0;
Mike Frysinger4a211702005-04-21 23:24:46 +000054
55 while (1) {
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020056 size_t bytes_read = safe_read(fd, buf, COMMON_BUFSIZE);
Mike Frysinger4a211702005-04-21 23:24:46 +000057
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000058 if ((ssize_t)bytes_read <= 0) {
59 r = (fd && close(fd) != 0);
60 if (!bytes_read && !r)
61 /* no error */
62 break;
Denys Vlasenko0939f2e2009-10-24 17:47:56 +020063 bb_simple_perror_msg(file);
Mike Frysinger4a211702005-04-21 23:24:46 +000064 return 0;
65 }
66
Mike Frysinger4a211702005-04-21 23:24:46 +000067 total_bytes += bytes_read;
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000068 if (type >= SUM_SYSV) {
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000069 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 Frysinger4a211702005-04-21 23:24:46 +000078 }
79
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000080 if (type < PRINT_NAME)
81 file = "";
82 if (type >= SUM_SYSV) {
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000083 r = (s & 0xffff) + ((s & 0xffffffff) >> 16);
Mike Frysingerdb289b22005-09-10 04:10:18 +000084 s = (r & 0xffff) + (r >> 16);
Denys Vlasenko327f5502013-11-29 16:45:45 +010085 printf("%u %llu %s\n", s, (total_bytes + 511) / 512, file);
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000086 } else
Denys Vlasenko327f5502013-11-29 16:45:45 +010087 printf("%05u %5llu %s\n", s, (total_bytes + 1023) / 1024, file);
Mike Frysinger4a211702005-04-21 23:24:46 +000088 return 1;
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000089#undef buf
Mike Frysinger4a211702005-04-21 23:24:46 +000090}
91
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000092int sum_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000093int sum_main(int argc UNUSED_PARAM, char **argv)
Mike Frysinger4a211702005-04-21 23:24:46 +000094{
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000095 unsigned n;
96 unsigned type = SUM_BSD;
Mike Frysinger4a211702005-04-21 23:24:46 +000097
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000098 n = getopt32(argv, "sr");
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000099 argv += optind;
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +0000100 if (n & 1) type = SUM_SYSV;
Denis Vlasenko9ac9e552006-12-23 15:58:11 +0000101 /* give the bsd priority over sysv func */
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +0000102 if (n & 2) type = SUM_BSD;
Mike Frysinger4a211702005-04-21 23:24:46 +0000103
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000104 if (!argv[0]) {
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +0000105 /* Do not print the name */
106 n = sum_file("-", type);
107 } else {
108 /* Need to print the name if either
Denys Vlasenko6830ade2013-01-15 13:58:01 +0100109 * - more than one file given
110 * - doing sysv */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000111 type += (argv[1] || type == SUM_SYSV);
112 n = 1;
113 do {
114 n &= sum_file(*argv, type);
115 } while (*++argv);
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +0000116 }
Denis Vlasenko9ac9e552006-12-23 15:58:11 +0000117 return !n;
Mike Frysinger4a211702005-04-21 23:24:46 +0000118}