safe_read and full_write + join patch
[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 int safe_read ();
44
45 /* The name this program was run with. */
46 char *program_name;
47
48 /* Nonzero if any of the files read were the standard input. */
49 static int have_read_stdin;
50
51 /* Right-rotate 32-bit integer variable C. */
52 #define ROTATE_RIGHT(c) if ((c) & 01) (c) = ((c) >>1) + 0x8000; else (c) >>= 1;
53
54 /* If non-zero, display usage information and exit.  */
55 static int show_help;
56
57 /* If non-zero, print the version on standard output then exit.  */
58 static int show_version;
59
60 static struct option const longopts[] =
61 {
62   {"sysv", no_argument, NULL, 's'},
63   {"help", no_argument, &show_help, 1},
64   {"version", no_argument, &show_version, 1},
65   {NULL, 0, NULL, 0}
66 };
67
68 static void
69 usage (status)
70      int status;
71 {
72   if (status != 0)
73     fprintf (stderr, "Try `%s --help' for more information.\n",
74              program_name);
75   else
76     {
77       printf ("\
78 Usage: %s [OPTION]... [FILE]...\n\
79 ",
80               program_name);
81       printf ("\
82 \n\
83   -r              defeat -s, use BSD sum algorithm, use 1K blocks\n\
84   -s, --sysv      use System V sum algorithm, use 512 bytes blocks\n\
85       --help      display this help and exit\n\
86       --version   output version information and exit\n\
87 \n\
88 With no FILE, or when FILE is -, read standard input.\n\
89 ");
90     }
91   exit (status);
92 }
93
94 void
95 main (argc, argv)
96      int argc;
97      char **argv;
98 {
99   int errors = 0;
100   int optc;
101   int files_given;
102   int (*sum_func) () = bsd_sum_file;
103
104   program_name = argv[0];
105   have_read_stdin = 0;
106
107   while ((optc = getopt_long (argc, argv, "rs", longopts, (int *) 0)) != -1)
108     {
109       switch (optc)
110         {
111         case 0:
112           break;
113
114         case 'r':               /* For SysV compatibility. */
115           sum_func = bsd_sum_file;
116           break;
117
118         case 's':
119           sum_func = sysv_sum_file;
120           break;
121
122         default:
123           usage (1);
124         }
125     }
126
127   if (show_version)
128     {
129       printf ("%s\n", version_string);
130       exit (0);
131     }
132
133   if (show_help)
134     usage (0);
135
136   files_given = argc - optind;
137   if (files_given == 0)
138     {
139       if ((*sum_func) ("-", files_given) < 0)
140         errors = 1;
141     }
142   else
143     for (; optind < argc; optind++)
144       if ((*sum_func) (argv[optind], files_given) < 0)
145         errors = 1;
146
147   if (have_read_stdin && fclose (stdin) == EOF)
148     error (1, errno, "-");
149   exit (errors);
150 }
151
152 /* Calculate and print the rotated checksum and the size in 1K blocks
153    of file FILE, or of the standard input if FILE is "-".
154    If PRINT_NAME is >1, print FILE next to the checksum and size.
155    The checksum varies depending on sizeof(int).
156    Return 0 if successful, -1 if an error occurs. */
157
158 static int
159 bsd_sum_file (file, print_name)
160      char *file;
161      int print_name;
162 {
163   register FILE *fp;
164   register unsigned long checksum = 0; /* The checksum mod 2^16. */
165   register long total_bytes = 0; /* The number of bytes. */
166   register int ch;              /* Each character read. */
167
168   if (!strcmp (file, "-"))
169     {
170       fp = stdin;
171       have_read_stdin = 1;
172     }
173   else
174     {
175       fp = fopen (file, "r");
176       if (fp == NULL)
177         {
178           error (0, errno, "%s", file);
179           return -1;
180         }
181     }
182
183   /* This algorithm seems to depend on sign extension in `ch' in order to
184      give the right results.  Ick.  */
185   while ((ch = getc (fp)) != EOF)
186     {
187       total_bytes++;
188       ROTATE_RIGHT (checksum);
189       checksum += ch;
190       checksum &= 0xffff;       /* Keep it within bounds. */
191     }
192
193   if (ferror (fp))
194     {
195       error (0, errno, "%s", file);
196       if (strcmp (file, "-"))
197         fclose (fp);
198       return -1;
199     }
200
201   if (strcmp (file, "-") && fclose (fp) == EOF)
202     {
203       error (0, errno, "%s", file);
204       return -1;
205     }
206
207   printf ("%05lu %5ld", checksum, (total_bytes + 1024 - 1) / 1024);
208   if (print_name > 1)
209     printf (" %s", file);
210   putchar ('\n');
211
212   return 0;
213 }
214
215 /* Calculate and print the checksum and the size in 512-byte blocks
216    of file FILE, or of the standard input if FILE is "-".
217    If PRINT_NAME is >0, print FILE next to the checksum and size.
218    Return 0 if successful, -1 if an error occurs. */
219
220 static int
221 sysv_sum_file (file, print_name)
222      char *file;
223      int print_name;
224 {
225   int fd;
226   unsigned char buf[8192];
227   register int bytes_read;
228   register unsigned long checksum = 0;
229   long total_bytes = 0;
230
231   if (!strcmp (file, "-"))
232     {
233       fd = 0;
234       have_read_stdin = 1;
235     }
236   else
237     {
238       fd = open (file, O_RDONLY);
239       if (fd == -1)
240         {
241           error (0, errno, "%s", file);
242           return -1;
243         }
244     }
245
246   while ((bytes_read = safe_read (fd, buf, sizeof buf)) > 0)
247     {
248       register int i;
249
250       for (i = 0; i < bytes_read; i++)
251         checksum += buf[i];
252       total_bytes += bytes_read;
253     }
254
255   if (bytes_read < 0)
256     {
257       error (0, errno, "%s", file);
258       if (strcmp (file, "-"))
259         close (fd);
260       return -1;
261     }
262
263   if (strcmp (file, "-") && close (fd) == -1)
264     {
265       error (0, errno, "%s", file);
266       return -1;
267     }
268
269   printf ("%lu %ld", checksum % 0xffff, (total_bytes + 512 - 1) / 512);
270   if (print_name)
271     printf (" %s", file);
272   putchar ('\n');
273
274   return 0;
275 }