blob: 9e6b0c5b164046cd4cd03a09985a2eccdad3b64c [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 */
15
Pere Orga34425382011-03-31 14:43:25 +020016//usage:#define sum_trivial_usage
17//usage: "[-rs] [FILE]..."
18//usage:#define sum_full_usage "\n\n"
19//usage: "Checksum and count the blocks in a file\n"
20//usage: "\nOptions:"
21//usage: "\n -r Use BSD sum algorithm (1K blocks)"
22//usage: "\n -s Use System V sum algorithm (512byte blocks)"
23
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000024#include "libbb.h"
Mike Frysinger4a211702005-04-21 23:24:46 +000025
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000026enum { SUM_BSD, PRINT_NAME, SUM_SYSV };
Mike Frysinger4a211702005-04-21 23:24:46 +000027
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000028/* BSD: calculate and print the rotated checksum and the size in 1K blocks
29 The checksum varies depending on sizeof (int). */
30/* SYSV: calculate and print the checksum and the size in 512-byte blocks */
31/* Return 1 if successful. */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000032static unsigned sum_file(const char *file, unsigned type)
Mike Frysinger4a211702005-04-21 23:24:46 +000033{
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000034#define buf bb_common_bufsiz1
Denis Vlasenko91e80c22007-10-05 20:29:31 +000035 unsigned long long total_bytes = 0;
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000036 int fd, r;
Mike Frysinger4a211702005-04-21 23:24:46 +000037 /* The sum of all the input bytes, modulo (UINT_MAX + 1). */
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000038 unsigned s = 0;
Mike Frysinger4a211702005-04-21 23:24:46 +000039
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000040 fd = open_or_warn_stdin(file);
41 if (fd == -1)
42 return 0;
Mike Frysinger4a211702005-04-21 23:24:46 +000043
44 while (1) {
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000045 size_t bytes_read = safe_read(fd, buf, BUFSIZ);
Mike Frysinger4a211702005-04-21 23:24:46 +000046
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000047 if ((ssize_t)bytes_read <= 0) {
48 r = (fd && close(fd) != 0);
49 if (!bytes_read && !r)
50 /* no error */
51 break;
Denys Vlasenko0939f2e2009-10-24 17:47:56 +020052 bb_simple_perror_msg(file);
Mike Frysinger4a211702005-04-21 23:24:46 +000053 return 0;
54 }
55
Mike Frysinger4a211702005-04-21 23:24:46 +000056 total_bytes += bytes_read;
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000057 if (type >= SUM_SYSV) {
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000058 do s += buf[--bytes_read]; while (bytes_read);
59 } else {
60 r = 0;
61 do {
62 s = (s >> 1) + ((s & 1) << 15);
63 s += buf[r++];
64 s &= 0xffff; /* Keep it within bounds. */
65 } while (--bytes_read);
66 }
Mike Frysinger4a211702005-04-21 23:24:46 +000067 }
68
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000069 if (type < PRINT_NAME)
70 file = "";
71 if (type >= SUM_SYSV) {
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000072 r = (s & 0xffff) + ((s & 0xffffffff) >> 16);
Mike Frysingerdb289b22005-09-10 04:10:18 +000073 s = (r & 0xffff) + (r >> 16);
Denis Vlasenko91e80c22007-10-05 20:29:31 +000074 printf("%d %llu %s\n", s, (total_bytes + 511) / 512, file);
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000075 } else
Denis Vlasenko91e80c22007-10-05 20:29:31 +000076 printf("%05d %5llu %s\n", s, (total_bytes + 1023) / 1024, file);
Mike Frysinger4a211702005-04-21 23:24:46 +000077 return 1;
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000078#undef buf
Mike Frysinger4a211702005-04-21 23:24:46 +000079}
80
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000081int sum_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000082int sum_main(int argc UNUSED_PARAM, char **argv)
Mike Frysinger4a211702005-04-21 23:24:46 +000083{
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000084 unsigned n;
85 unsigned type = SUM_BSD;
Mike Frysinger4a211702005-04-21 23:24:46 +000086
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000087 n = getopt32(argv, "sr");
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000088 argv += optind;
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000089 if (n & 1) type = SUM_SYSV;
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000090 /* give the bsd priority over sysv func */
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000091 if (n & 2) type = SUM_BSD;
Mike Frysinger4a211702005-04-21 23:24:46 +000092
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000093 if (!argv[0]) {
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000094 /* Do not print the name */
95 n = sum_file("-", type);
96 } else {
97 /* Need to print the name if either
98 - more than one file given
99 - doing sysv */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +0000100 type += (argv[1] || type == SUM_SYSV);
101 n = 1;
102 do {
103 n &= sum_file(*argv, type);
104 } while (*++argv);
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +0000105 }
Denis Vlasenko9ac9e552006-12-23 15:58:11 +0000106 return !n;
Mike Frysinger4a211702005-04-21 23:24:46 +0000107}