blob: 61ca582a1577863d039437a9f6a6474e0b2246b2 [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
Mike Frysingera80b2902005-09-10 02:47:19 +000016#include "busybox.h"
Mike Frysinger4a211702005-04-21 23:24:46 +000017
18/* 1 if any of the files read were the standard input */
19static int have_read_stdin;
20
21/* make a little more readable and avoid using strcmp for just 2 bytes */
22#define IS_STDIN(s) (s[0] == '-' && s[1] == '\0')
23
24/* Calculate and print the rotated checksum and the size in 1K blocks
25 of file FILE, or of the standard input if FILE is "-".
26 If PRINT_NAME is >1, print FILE next to the checksum and size.
27 The checksum varies depending on sizeof (int).
28 Return 1 if successful. */
29static int bsd_sum_file(const char *file, int print_name)
30{
Rob Landley02794e12006-02-14 17:47:05 +000031 FILE *fp;
32 int checksum = 0; /* The checksum mod 2^16. */
33 uintmax_t total_bytes = 0; /* The number of bytes. */
34 int ch; /* Each character read. */
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000035 int ret = 0;
Mike Frysinger4a211702005-04-21 23:24:46 +000036
37 if (IS_STDIN(file)) {
38 fp = stdin;
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000039 have_read_stdin++;
Mike Frysinger4a211702005-04-21 23:24:46 +000040 } else {
Mike Frysinger1fb79612005-05-16 22:35:59 +000041 fp = bb_wfopen(file, "r");
42 if (fp == NULL)
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000043 goto out;
Mike Frysinger4a211702005-04-21 23:24:46 +000044 }
45
46 while ((ch = getc(fp)) != EOF) {
47 ++total_bytes;
48 checksum = (checksum >> 1) + ((checksum & 1) << 15);
49 checksum += ch;
50 checksum &= 0xffff; /* Keep it within bounds. */
51 }
52
53 if (ferror(fp)) {
Mike Frysinger1fb79612005-05-16 22:35:59 +000054 bb_perror_msg(file);
55 bb_fclose_nonstdin(fp);
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000056 goto out;
Mike Frysinger4a211702005-04-21 23:24:46 +000057 }
58
Mike Frysinger1fb79612005-05-16 22:35:59 +000059 if (bb_fclose_nonstdin(fp) == EOF) {
60 bb_perror_msg(file);
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000061 goto out;
Mike Frysinger4a211702005-04-21 23:24:46 +000062 }
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000063 ret++;
Rob Landley02794e12006-02-14 17:47:05 +000064 printf("%05d %5ju ", checksum, (total_bytes+1023)/1024);
Mike Frysinger4a211702005-04-21 23:24:46 +000065 if (print_name > 1)
Mike Frysinger1fb79612005-05-16 22:35:59 +000066 puts(file);
67 else
68 printf("\n");
Bernhard Reutner-Fischer73561cc2006-08-28 23:31:54 +000069out:
70 return ret;
Mike Frysinger4a211702005-04-21 23:24:46 +000071}
72
73/* Calculate and print the checksum and the size in 512-byte blocks
74 of file FILE, or of the standard input if FILE is "-".
75 If PRINT_NAME is >0, print FILE next to the checksum and size.
76 Return 1 if successful. */
Mike Frysingerdb289b22005-09-10 04:10:18 +000077#define MY_BUF_SIZE 8192
Mike Frysinger4a211702005-04-21 23:24:46 +000078static int sysv_sum_file(const char *file, int print_name)
79{
Rob Landley998f4492006-04-10 16:40:47 +000080 RESERVE_CONFIG_BUFFER(buf, MY_BUF_SIZE);
Mike Frysinger4a211702005-04-21 23:24:46 +000081 int fd;
Mike Frysinger4a211702005-04-21 23:24:46 +000082 uintmax_t total_bytes = 0;
Mike Frysinger4a211702005-04-21 23:24:46 +000083
84 /* The sum of all the input bytes, modulo (UINT_MAX + 1). */
85 unsigned int s = 0;
86
87 if (IS_STDIN(file)) {
88 fd = 0;
89 have_read_stdin = 1;
90 } else {
91 fd = open(file, O_RDONLY);
Mike Frysingerdb289b22005-09-10 04:10:18 +000092 if (fd == -1)
93 goto release_and_ret;
Mike Frysinger4a211702005-04-21 23:24:46 +000094 }
95
96 while (1) {
Mike Frysingera80b2902005-09-10 02:47:19 +000097 size_t bytes_read = safe_read(fd, buf, MY_BUF_SIZE);
Mike Frysinger4a211702005-04-21 23:24:46 +000098
99 if (bytes_read == 0)
100 break;
101
102 if (bytes_read == -1) {
Mike Frysingerdb289b22005-09-10 04:10:18 +0000103release_and_ret:
Mike Frysinger1fb79612005-05-16 22:35:59 +0000104 bb_perror_msg(file);
Mike Frysingerdb289b22005-09-10 04:10:18 +0000105 RELEASE_CONFIG_BUFFER(buf);
Mike Frysinger4a211702005-04-21 23:24:46 +0000106 if (!IS_STDIN(file))
107 close(fd);
108 return 0;
109 }
110
Mike Frysinger4a211702005-04-21 23:24:46 +0000111 total_bytes += bytes_read;
Mike Frysingerdb289b22005-09-10 04:10:18 +0000112 while (bytes_read--)
113 s += buf[bytes_read];
Mike Frysinger4a211702005-04-21 23:24:46 +0000114 }
115
Mike Frysingerdb289b22005-09-10 04:10:18 +0000116 if (!IS_STDIN(file) && close(fd) == -1)
117 goto release_and_ret;
118 else
119 RELEASE_CONFIG_BUFFER(buf);
Mike Frysinger4a211702005-04-21 23:24:46 +0000120
Mike Frysingera80b2902005-09-10 02:47:19 +0000121 {
122 int r = (s & 0xffff) + ((s & 0xffffffff) >> 16);
Mike Frysingerdb289b22005-09-10 04:10:18 +0000123 s = (r & 0xffff) + (r >> 16);
Mike Frysinger4a211702005-04-21 23:24:46 +0000124
Rob Landley02794e12006-02-14 17:47:05 +0000125 printf("%d %ju ", s, (total_bytes+511)/512);
Mike Frysingerdb289b22005-09-10 04:10:18 +0000126 }
Mike Frysingera80b2902005-09-10 02:47:19 +0000127 puts(print_name ? file : "");
Mike Frysinger4a211702005-04-21 23:24:46 +0000128
129 return 1;
130}
131
132int sum_main(int argc, char **argv)
133{
134 int flags;
135 int ok;
Mike Frysinger4a211702005-04-21 23:24:46 +0000136 int (*sum_func)(const char *, int) = bsd_sum_file;
137
138 /* give the bsd func priority over sysv func */
Denis Vlasenko67b23e62006-10-03 21:00:06 +0000139 flags = getopt32(argc, argv, "sr");
Mike Frysinger4a211702005-04-21 23:24:46 +0000140 if (flags & 1)
141 sum_func = sysv_sum_file;
142 if (flags & 2)
143 sum_func = bsd_sum_file;
144
145 have_read_stdin = 0;
Mike Frysingerdb289b22005-09-10 04:10:18 +0000146 if ((argc - optind) == 0)
147 ok = sum_func("-", 0);
Mike Frysinger4a211702005-04-21 23:24:46 +0000148 else
149 for (ok = 1; optind < argc; optind++)
Mike Frysingerdb289b22005-09-10 04:10:18 +0000150 ok &= sum_func(argv[optind], 1);
Mike Frysinger4a211702005-04-21 23:24:46 +0000151
152 if (have_read_stdin && fclose(stdin) == EOF)
153 bb_perror_msg_and_die("-");
154
155 exit(ok ? EXIT_SUCCESS : EXIT_FAILURE);
156}