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