merge with 1.8d
[platform/upstream/coreutils.git] / src / sum.c
1 /* sum -- checksum and count the blocks in a file
2    Copyright (C) 1986, 1989, 1991 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software
16    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
17
18 /* Like BSD sum or SysV sum -r, except like SysV sum if -s option is given. */
19
20 /* Written by Kayvan Aghaiepour and David MacKenzie. */
21
22 #ifdef HAVE_CONFIG_H
23 #if defined (CONFIG_BROKETS)
24 /* We use <config.h> instead of "config.h" so that a compilation
25    using -I. -I$srcdir will use ./config.h rather than $srcdir/config.h
26    (which it would do because it found this file in $srcdir).  */
27 #include <config.h>
28 #else
29 #include "config.h"
30 #endif
31 #endif
32
33 #include <stdio.h>
34 #include <sys/types.h>
35 #include <getopt.h>
36 #include "system.h"
37 #include "version.h"
38
39 static int bsd_sum_file ();
40 static int sysv_sum_file ();
41
42 void error ();
43
44 /* The name this program was run with. */
45 char *program_name;
46
47 /* Nonzero if any of the files read were the standard input. */
48 static int have_read_stdin;
49
50 /* Right-rotate 32-bit integer variable C. */
51 #define ROTATE_RIGHT(c) if ((c) & 01) (c) = ((c) >>1) + 0x8000; else (c) >>= 1;
52
53 /* If non-zero, display usage information and exit.  */
54 static int show_help;
55
56 /* If non-zero, print the version on standard output then exit.  */
57 static int show_version;
58
59 static struct option const longopts[] =
60 {
61   {"sysv", no_argument, NULL, 's'},
62   {"help", no_argument, &show_help, 1},
63   {"version", no_argument, &show_version, 1},
64   {NULL, 0, NULL, 0}
65 };
66
67 static void
68 usage ()
69 {
70   fprintf (stderr, "\
71 Usage: %s [-rs] [--help] [--version] [--sysv] [file...]\n", program_name);
72   exit (1);
73 }
74
75 void
76 main (argc, argv)
77      int argc;
78      char **argv;
79 {
80   int errors = 0;
81   int optc;
82   int files_given;
83   int (*sum_func) () = bsd_sum_file;
84
85   program_name = argv[0];
86   have_read_stdin = 0;
87
88   while ((optc = getopt_long (argc, argv, "rs", longopts, (int *) 0)) != -1)
89     {
90       switch (optc)
91         {
92         case 0:
93           break;
94
95         case 'r':               /* For SysV compatibility. */
96           sum_func = bsd_sum_file;
97           break;
98
99         case 's':
100           sum_func = sysv_sum_file;
101           break;
102
103         default:
104           usage ();
105         }
106     }
107
108   if (show_version)
109     {
110       printf ("%s\n", version_string);
111       exit (0);
112     }
113
114   if (show_help)
115     usage ();
116
117   files_given = argc - optind;
118   if (files_given == 0)
119     {
120       if ((*sum_func) ("-", files_given) < 0)
121         errors = 1;
122     }
123   else
124     for (; optind < argc; optind++)
125       if ((*sum_func) (argv[optind], files_given) < 0)
126         errors = 1;
127
128   if (have_read_stdin && fclose (stdin) == EOF)
129     error (1, errno, "-");
130   exit (errors);
131 }
132
133 /* Calculate and print the rotated checksum and the size in 1K blocks
134    of file FILE, or of the standard input if FILE is "-".
135    If PRINT_NAME is >1, print FILE next to the checksum and size.
136    The checksum varies depending on sizeof(int).
137    Return 0 if successful, -1 if an error occurs. */
138
139 static int
140 bsd_sum_file (file, print_name)
141      char *file;
142      int print_name;
143 {
144   register FILE *fp;
145   register unsigned long checksum = 0; /* The checksum mod 2^16. */
146   register long total_bytes = 0; /* The number of bytes. */
147   register int ch;              /* Each character read. */
148
149   if (!strcmp (file, "-"))
150     {
151       fp = stdin;
152       have_read_stdin = 1;
153     }
154   else
155     {
156       fp = fopen (file, "r");
157       if (fp == NULL)
158         {
159           error (0, errno, "%s", file);
160           return -1;
161         }
162     }
163
164   /* This algorithm seems to depend on sign extension in `ch' in order to
165      give the right results.  Ick.  */
166   while ((ch = getc (fp)) != EOF)
167     {
168       total_bytes++;
169       ROTATE_RIGHT (checksum);
170       checksum += ch;
171       checksum &= 0xffff;       /* Keep it within bounds. */
172     }
173
174   if (ferror (fp))
175     {
176       error (0, errno, "%s", file);
177       if (strcmp (file, "-"))
178         fclose (fp);
179       return -1;
180     }
181
182   if (strcmp (file, "-") && fclose (fp) == EOF)
183     {
184       error (0, errno, "%s", file);
185       return -1;
186     }
187
188   printf ("%05lu %5ld", checksum, (total_bytes + 1024 - 1) / 1024);
189   if (print_name > 1)
190     printf (" %s", file);
191   putchar ('\n');
192
193   return 0;
194 }
195
196 /* Calculate and print the checksum and the size in 512-byte blocks
197    of file FILE, or of the standard input if FILE is "-".
198    If PRINT_NAME is >0, print FILE next to the checksum and size.
199    Return 0 if successful, -1 if an error occurs. */
200
201 static int
202 sysv_sum_file (file, print_name)
203      char *file;
204      int print_name;
205 {
206   int fd;
207   unsigned char buf[8192];
208   register int bytes_read;
209   register unsigned long checksum = 0;
210   long total_bytes = 0;
211
212   if (!strcmp (file, "-"))
213     {
214       fd = 0;
215       have_read_stdin = 1;
216     }
217   else
218     {
219       fd = open (file, O_RDONLY);
220       if (fd == -1)
221         {
222           error (0, errno, "%s", file);
223           return -1;
224         }
225     }
226
227   while ((bytes_read = read (fd, buf, sizeof buf)) > 0)
228     {
229       register int i;
230
231       for (i = 0; i < bytes_read; i++)
232         checksum += buf[i];
233       total_bytes += bytes_read;
234     }
235
236   if (bytes_read < 0)
237     {
238       error (0, errno, "%s", file);
239       if (strcmp (file, "-"))
240         close (fd);
241       return -1;
242     }
243
244   if (strcmp (file, "-") && close (fd) == -1)
245     {
246       error (0, errno, "%s", file);
247       return -1;
248     }
249
250   printf ("%lu %ld", checksum % 0xffff, (total_bytes + 512 - 1) / 512);
251   if (print_name)
252     printf (" %s", file);
253   putchar ('\n');
254
255   return 0;
256 }