1 /* sum -- checksum and count the blocks in a file
2 Copyright (C) 1986-2015 Free Software Foundation, Inc.
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 3 of the License, or
7 (at your option) any later version.
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.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <http://www.gnu.org/licenses/>. */
17 /* Like BSD sum or SysV sum -r, except like SysV sum if -s option is given. */
19 /* Written by Kayvan Aghaiepour and David MacKenzie. */
24 #include <sys/types.h>
30 #include "safe-read.h"
33 /* The official name of this program (e.g., no 'g' prefix). */
34 #define PROGRAM_NAME "sum"
37 proper_name ("Kayvan Aghaiepour"), \
38 proper_name ("David MacKenzie")
40 /* True if any of the files read were the standard input. */
41 static bool have_read_stdin
;
43 static struct option
const longopts
[] =
45 {"sysv", no_argument
, NULL
, 's'},
46 {GETOPT_HELP_OPTION_DECL
},
47 {GETOPT_VERSION_OPTION_DECL
},
54 if (status
!= EXIT_SUCCESS
)
59 Usage: %s [OPTION]... [FILE]...\n\
63 Print checksum and block counts for each FILE.\n\
70 -r use BSD sum algorithm, use 1K blocks\n\
71 -s, --sysv use System V sum algorithm, use 512 bytes blocks\n\
73 fputs (HELP_OPTION_DESCRIPTION
, stdout
);
74 fputs (VERSION_OPTION_DESCRIPTION
, stdout
);
75 emit_ancillary_info (PROGRAM_NAME
);
80 /* Calculate and print the rotated checksum and the size in 1K blocks
81 of file FILE, or of the standard input if FILE is "-".
82 If PRINT_NAME is >1, print FILE next to the checksum and size.
83 The checksum varies depending on sizeof (int).
84 Return true if successful. */
87 bsd_sum_file (const char *file
, int print_name
)
90 int checksum
= 0; /* The checksum mod 2^16. */
91 uintmax_t total_bytes
= 0; /* The number of bytes. */
92 int ch
; /* Each character read. */
93 char hbuf
[LONGEST_HUMAN_READABLE
+ 1];
94 bool is_stdin
= STREQ (file
, "-");
99 have_read_stdin
= true;
100 if (O_BINARY
&& ! isatty (STDIN_FILENO
))
101 xfreopen (NULL
, "rb", stdin
);
105 fp
= fopen (file
, (O_BINARY
? "rb" : "r"));
108 error (0, errno
, "%s", quotef (file
));
113 fadvise (fp
, FADVISE_SEQUENTIAL
);
115 while ((ch
= getc (fp
)) != EOF
)
118 checksum
= (checksum
>> 1) + ((checksum
& 1) << 15);
120 checksum
&= 0xffff; /* Keep it within bounds. */
125 error (0, errno
, "%s", quotef (file
));
131 if (!is_stdin
&& fclose (fp
) != 0)
133 error (0, errno
, "%s", quotef (file
));
137 printf ("%05d %5s", checksum
,
138 human_readable (total_bytes
, hbuf
, human_ceiling
, 1, 1024));
140 printf (" %s", file
);
146 /* Calculate and print the checksum and the size in 512-byte blocks
147 of file FILE, or of the standard input if FILE is "-".
148 If PRINT_NAME is >0, print FILE next to the checksum and size.
149 Return true if successful. */
152 sysv_sum_file (const char *file
, int print_name
)
155 unsigned char buf
[8192];
156 uintmax_t total_bytes
= 0;
157 char hbuf
[LONGEST_HUMAN_READABLE
+ 1];
161 /* The sum of all the input bytes, modulo (UINT_MAX + 1). */
164 bool is_stdin
= STREQ (file
, "-");
169 have_read_stdin
= true;
170 if (O_BINARY
&& ! isatty (STDIN_FILENO
))
171 xfreopen (NULL
, "rb", stdin
);
175 fd
= open (file
, O_RDONLY
| O_BINARY
);
178 error (0, errno
, "%s", quotef (file
));
186 size_t bytes_read
= safe_read (fd
, buf
, sizeof buf
);
191 if (bytes_read
== SAFE_READ_ERROR
)
193 error (0, errno
, "%s", quotef (file
));
199 for (i
= 0; i
< bytes_read
; i
++)
201 total_bytes
+= bytes_read
;
204 if (!is_stdin
&& close (fd
) != 0)
206 error (0, errno
, "%s", quotef (file
));
210 r
= (s
& 0xffff) + ((s
& 0xffffffff) >> 16);
211 checksum
= (r
& 0xffff) + (r
>> 16);
213 printf ("%d %s", checksum
,
214 human_readable (total_bytes
, hbuf
, human_ceiling
, 1, 512));
216 printf (" %s", file
);
223 main (int argc
, char **argv
)
228 bool (*sum_func
) (const char *, int) = bsd_sum_file
;
230 initialize_main (&argc
, &argv
);
231 set_program_name (argv
[0]);
232 setlocale (LC_ALL
, "");
233 bindtextdomain (PACKAGE
, LOCALEDIR
);
234 textdomain (PACKAGE
);
236 atexit (close_stdout
);
238 /* Line buffer stdout to ensure lines are written atomically and immediately
239 so that processes running in parallel do not intersperse their output. */
240 setvbuf (stdout
, NULL
, _IOLBF
, 0);
242 have_read_stdin
= false;
244 while ((optc
= getopt_long (argc
, argv
, "rs", longopts
, NULL
)) != -1)
248 case 'r': /* For SysV compatibility. */
249 sum_func
= bsd_sum_file
;
253 sum_func
= sysv_sum_file
;
256 case_GETOPT_HELP_CHAR
;
258 case_GETOPT_VERSION_CHAR (PROGRAM_NAME
, AUTHORS
);
261 usage (EXIT_FAILURE
);
265 files_given
= argc
- optind
;
266 if (files_given
<= 0)
267 ok
= sum_func ("-", files_given
);
269 for (ok
= true; optind
< argc
; optind
++)
270 ok
&= sum_func (argv
[optind
], files_given
);
272 if (have_read_stdin
&& fclose (stdin
) == EOF
)
273 error (EXIT_FAILURE
, errno
, "%s", quotef ("-"));
274 return ok
? EXIT_SUCCESS
: EXIT_FAILURE
;