blob: e6cfbfd806a4d9354918d50d823aa23776c03e75 [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 *
Bernhard Reutner-Fischer7fee0c42006-09-13 16:39:19 +000013 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Mike Frysinger4a211702005-04-21 23:24:46 +000014 */
15
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000016#include "libbb.h"
Mike Frysinger4a211702005-04-21 23:24:46 +000017
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000018enum { SUM_BSD, PRINT_NAME, SUM_SYSV };
Mike Frysinger4a211702005-04-21 23:24:46 +000019
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000020/* BSD: calculate and print the rotated checksum and the size in 1K blocks
21 The checksum varies depending on sizeof (int). */
22/* SYSV: calculate and print the checksum and the size in 512-byte blocks */
23/* Return 1 if successful. */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000024static unsigned sum_file(const char *file, unsigned type)
Mike Frysinger4a211702005-04-21 23:24:46 +000025{
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000026#define buf bb_common_bufsiz1
Denis Vlasenko91e80c22007-10-05 20:29:31 +000027 unsigned long long total_bytes = 0;
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000028 int fd, r;
Mike Frysinger4a211702005-04-21 23:24:46 +000029 /* The sum of all the input bytes, modulo (UINT_MAX + 1). */
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000030 unsigned s = 0;
Mike Frysinger4a211702005-04-21 23:24:46 +000031
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000032 fd = open_or_warn_stdin(file);
33 if (fd == -1)
34 return 0;
Mike Frysinger4a211702005-04-21 23:24:46 +000035
36 while (1) {
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000037 size_t bytes_read = safe_read(fd, buf, BUFSIZ);
Mike Frysinger4a211702005-04-21 23:24:46 +000038
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000039 if ((ssize_t)bytes_read <= 0) {
40 r = (fd && close(fd) != 0);
41 if (!bytes_read && !r)
42 /* no error */
43 break;
Mike Frysinger1fb79612005-05-16 22:35:59 +000044 bb_perror_msg(file);
Mike Frysinger4a211702005-04-21 23:24:46 +000045 return 0;
46 }
47
Mike Frysinger4a211702005-04-21 23:24:46 +000048 total_bytes += bytes_read;
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000049 if (type >= SUM_SYSV) {
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000050 do s += buf[--bytes_read]; while (bytes_read);
51 } else {
52 r = 0;
53 do {
54 s = (s >> 1) + ((s & 1) << 15);
55 s += buf[r++];
56 s &= 0xffff; /* Keep it within bounds. */
57 } while (--bytes_read);
58 }
Mike Frysinger4a211702005-04-21 23:24:46 +000059 }
60
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000061 if (type < PRINT_NAME)
62 file = "";
63 if (type >= SUM_SYSV) {
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000064 r = (s & 0xffff) + ((s & 0xffffffff) >> 16);
Mike Frysingerdb289b22005-09-10 04:10:18 +000065 s = (r & 0xffff) + (r >> 16);
Denis Vlasenko91e80c22007-10-05 20:29:31 +000066 printf("%d %llu %s\n", s, (total_bytes + 511) / 512, file);
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000067 } else
Denis Vlasenko91e80c22007-10-05 20:29:31 +000068 printf("%05d %5llu %s\n", s, (total_bytes + 1023) / 1024, file);
Mike Frysinger4a211702005-04-21 23:24:46 +000069 return 1;
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000070#undef buf
Mike Frysinger4a211702005-04-21 23:24:46 +000071}
72
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000073int sum_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000074int sum_main(int argc ATTRIBUTE_UNUSED, char **argv)
Mike Frysinger4a211702005-04-21 23:24:46 +000075{
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000076 unsigned n;
77 unsigned type = SUM_BSD;
Mike Frysinger4a211702005-04-21 23:24:46 +000078
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000079 n = getopt32(argv, "sr");
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000080 argv += optind;
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000081 if (n & 1) type = SUM_SYSV;
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000082 /* give the bsd priority over sysv func */
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000083 if (n & 2) type = SUM_BSD;
Mike Frysinger4a211702005-04-21 23:24:46 +000084
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000085 if (!argv[0]) {
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000086 /* Do not print the name */
87 n = sum_file("-", type);
88 } else {
89 /* Need to print the name if either
90 - more than one file given
91 - doing sysv */
Denis Vlasenko62a90cd2008-03-17 09:07:36 +000092 type += (argv[1] || type == SUM_SYSV);
93 n = 1;
94 do {
95 n &= sum_file(*argv, type);
96 } while (*++argv);
Bernhard Reutner-Fischercd75a962007-01-27 22:11:28 +000097 }
Denis Vlasenko9ac9e552006-12-23 15:58:11 +000098 return !n;
Mike Frysinger4a211702005-04-21 23:24:46 +000099}