.
[coreutils.git] / src / md5sum.c
blob2cdb4593e790c9123c5be58b913808c98def2c1c
1 /* Compute MD5 checksum of files or strings according to the definition
2 of MD5 in RFC 1321 from April 1992.
3 Copyright (C) 95, 1996 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
8 any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software Foundation,
17 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19 /* Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>. */
21 #ifdef HAVE_CONFIG_H
22 # include <config.h>
23 #endif
25 #include <getopt.h>
26 #include <stdio.h>
27 #include <sys/types.h>
29 #include "long-options.h"
30 #include "md5.h"
31 #include "getline.h"
32 #include "system.h"
33 #include "error.h"
35 /* Most systems do not distinguish between external and internal
36 text representations. */
37 #if UNIX || __UNIX__ || unix || __unix__ || _POSIX_VERSION
38 # define OPENOPTS(BINARY) "r"
39 #else
40 # ifdef MSDOS
41 # define TEXT1TO1 "rb"
42 # define TEXTCNVT "r"
43 # else
44 # if defined VMS
45 # define TEXT1TO1 "rb", "ctx=stm"
46 # define TEXTCNVT "r", "ctx=stm"
47 # else
48 /* The following line is intended to evoke an error.
49 Using #error is not portable enough. */
50 "Cannot determine system type."
51 # endif
52 # endif
53 # define OPENOPTS(BINARY) ((BINARY) != 0 ? TEXT1TO1 : TEXTCNVT)
54 #endif
56 #if _LIBC || STDC_HEADERS
57 # define TOLOWER(c) tolower (c)
58 #else
59 # define TOLOWER(c) (ISUPPER (c) ? tolower (c) : (c))
60 #endif
62 /* Nonzero if any of the files read were the standard input. */
63 static int have_read_stdin;
65 /* With --check, don't generate any output.
66 The exit code indicates success or failure. */
67 static int status_only = 0;
69 /* With --check, print a message to standard error warning about each
70 improperly formatted MD5 checksum line. */
71 static int warn = 0;
73 /* The name this program was run with. */
74 char *program_name;
76 static const struct option long_options[] =
78 { "binary", no_argument, 0, 'b' },
79 { "check", no_argument, 0, 'c' },
80 { "status", no_argument, 0, 2 },
81 { "string", required_argument, 0, 1 },
82 { "text", no_argument, 0, 't' },
83 { "warn", no_argument, 0, 'w' },
84 { NULL, 0, NULL, 0 }
87 char *xmalloc ();
89 static void
90 usage (int status)
92 if (status != 0)
93 fprintf (stderr, _("Try `%s --help' for more information.\n"),
94 program_name);
95 else
96 printf (_("\
97 Usage: %s [OPTION] [FILE]...\n\
98 or: %s [OPTION] --check [FILE]\n\
99 or: %s [OPTION] --string=STRING ...\n\
100 Print or check MD5 checksums.\n\
101 With no FILE, or when FILE is -, read standard input.\n\
103 -b, --binary read files in binary mode\n\
104 -t, --text read files in text mode (default)\n\
105 -c, --check check MD5 sums against given list\n\
107 The following two options are useful only when verifying checksums:\n\
108 --status don't output anything, status code shows success\n\
109 -w, --warn warn about improperly formated MD5 checksum lines\n\
111 --string=STRING compute checksum for STRING\n\
112 --help display this help and exit\n\
113 --version output version information and exit\n\
115 The sums are computed as described in RFC 1321. When checking, the input\n\
116 should be a former output of this program. The default mode is to print\n\
117 a line with checksum, a character indicating type (`*' for binary, ` ' for\n\
118 text), and name for each FILE.\n"),
119 program_name, program_name, program_name);
121 exit (status == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
124 /* FIXME: this format loses with filenames containing newline. */
126 static int
127 split_3 (char *s, char **u, int *binary, char **w)
129 size_t i;
131 #define ISWHITE(c) ((c) == ' ' || (c) == '\t')
133 i = 0;
134 while (ISWHITE (s[i]))
135 ++i;
137 /* The line has to be at least 35 characters long to contain correct
138 message digest information. */
139 if (strlen (&s[i]) >= 35)
141 *u = &s[i];
143 /* The first field has to be the 32-character hexadecimal
144 representation of the message digest. If it not immediately
145 followed by a white space it's an error. */
146 i += 32;
147 if (!ISWHITE (s[i]))
148 return 1;
150 s[i++] = '\0';
152 if (s[i] != ' ' && s[i] != '*')
153 return 1;
154 *binary = s[i++] == '*';
156 /* All characters between the type indicator and end of line are
157 significant -- that includes leading and trailing white space. */
158 *w = &s[i];
160 /* So this line is valid as long as there is at least one character
161 for the filename. */
162 return (**w ? 0 : 1);
164 return 1;
167 static int
168 hex_digits (const char *s)
170 while (*s)
172 if (!ISXDIGIT (*s))
173 return 0;
174 ++s;
176 return 1;
179 /* FIXME: allow newline in filename by encoding it. */
181 static int
182 md5_file (const char *filename, int binary, unsigned char *md5_result)
184 FILE *fp;
185 int err;
187 if (strcmp (filename, "-") == 0)
189 have_read_stdin = 1;
190 fp = stdin;
192 else
194 /* OPENOPTS is a macro. It varies with the system.
195 Some systems distinguish between internal and
196 external text representations. */
198 fp = fopen (filename, OPENOPTS (binary));
199 if (fp == NULL)
201 error (0, errno, "%s", filename);
202 return 1;
206 err = md5_stream (fp, md5_result);
207 if (err)
209 error (0, errno, "%s", filename);
210 if (fp != stdin)
211 fclose (fp);
212 return 1;
215 if (fp != stdin && fclose (fp) == EOF)
217 error (0, errno, "%s", filename);
218 return 1;
221 return 0;
224 static int
225 md5_check (const char *checkfile_name, int binary)
227 FILE *checkfile_stream;
228 int n_properly_formated_lines = 0;
229 int n_mismatched_checksums = 0;
230 int n_open_or_read_failures = 0;
231 unsigned char md5buffer[16];
232 size_t line_number;
233 char *line;
234 size_t line_chars_allocated;
236 if (strcmp (checkfile_name, "-") == 0)
238 have_read_stdin = 1;
239 checkfile_name = _("standard input");
240 checkfile_stream = stdin;
242 else
244 checkfile_stream = fopen (checkfile_name, "r");
245 if (checkfile_stream == NULL)
247 error (0, errno, "%s", checkfile_name);
248 return 1;
252 line_number = 0;
253 line = NULL;
254 line_chars_allocated = 0;
257 char *filename;
258 int type_flag;
259 char *md5num;
260 int err;
261 int line_length;
263 ++line_number;
265 line_length = getline (&line, &line_chars_allocated, checkfile_stream);
266 if (line_length <= 0)
267 break;
269 /* Ignore comment lines, which begin with a '#' character. */
270 if (line[0] == '#')
271 continue;
273 /* Remove any trailing newline. */
274 if (line[line_length - 1] == '\n')
275 line[--line_length] = '\0';
277 err = split_3 (line, &md5num, &type_flag, &filename);
278 if (err || !hex_digits (md5num))
280 if (warn)
282 error (0, 0,
283 _("%s: %lu: improperly formatted MD5 checksum line"),
284 checkfile_name, (unsigned long) line_number);
287 else
289 static const char bin2hex[] = { '0', '1', '2', '3',
290 '4', '5', '6', '7',
291 '8', '9', 'a', 'b',
292 'c', 'd', 'e', 'f' };
293 int fail;
295 ++n_properly_formated_lines;
297 fail = md5_file (filename, binary, md5buffer);
299 if (fail)
301 ++n_open_or_read_failures;
302 if (!status_only)
304 printf (_("%s: FAILED open or read\n"), filename);
305 fflush (stdout);
308 else
310 size_t cnt;
311 /* Compare generated binary number with text representation
312 in check file. Ignore case of hex digits. */
313 for (cnt = 0; cnt < 16; ++cnt)
315 if (TOLOWER (md5num[2 * cnt]) != bin2hex[md5buffer[cnt] >> 4]
316 || (TOLOWER (md5num[2 * cnt + 1])
317 != (bin2hex[md5buffer[cnt] & 0xf])))
318 break;
320 if (cnt != 16)
321 ++n_mismatched_checksums;
323 if (!status_only)
325 printf ("%s: %s\n", filename,
326 (cnt != 16 ? _("FAILED") : _("OK")));
327 fflush (stdout);
332 while (!feof (checkfile_stream) && !ferror (checkfile_stream));
334 if (line)
335 free (line);
337 if (ferror (checkfile_stream))
339 error (0, 0, _("%s: read error"), checkfile_name);
340 return 1;
343 if (checkfile_stream != stdin && fclose (checkfile_stream) == EOF)
345 error (0, errno, "%s", checkfile_name);
346 return 1;
349 if (n_properly_formated_lines == 0)
351 /* Warn if no tests are found. */
352 error (0, 0, _("%s: no properly formatted MD5 checksum lines found"),
353 checkfile_name);
355 else
357 if (!status_only)
359 int n_computed_checkums = (n_properly_formated_lines
360 - n_open_or_read_failures);
362 if (n_open_or_read_failures > 0)
364 error (0, 0,
365 _("WARNING: %d of %d listed %s could not be read\n"),
366 n_open_or_read_failures, n_properly_formated_lines,
367 (n_properly_formated_lines == 1
368 ? _("file") : _("files")));
371 if (n_mismatched_checksums > 0)
373 error (0, 0,
374 _("WARNING: %d of %d computed checksum%s did NOT match"),
375 n_mismatched_checksums, n_computed_checkums,
376 (n_computed_checkums == 1 ? "" : "s"));
381 return ((n_properly_formated_lines > 0 && n_mismatched_checksums == 0
382 && n_open_or_read_failures == 0) ? 0 : 1);
386 main (int argc, char **argv)
388 unsigned char md5buffer[16];
389 int do_check = 0;
390 int do_version = 0;
391 int opt;
392 char **string = NULL;
393 size_t n_strings = 0;
394 size_t i;
395 size_t err = 0;
397 /* Text is default of the Plumb/Lankester format. */
398 int binary = 0;
400 /* Setting values of global variables. */
401 program_name = argv[0];
402 setlocale (LC_ALL, "");
403 bindtextdomain (PACKAGE, LOCALEDIR);
404 textdomain (PACKAGE);
406 parse_long_options (argc, argv, "md5sum", PACKAGE_VERSION, usage);
408 while ((opt = getopt_long (argc, argv, "bctw", long_options, NULL))
409 != EOF)
410 switch (opt)
412 case 0: /* long option */
413 break;
414 case 1: /* --string */
416 if (string == NULL)
417 string = (char **) xmalloc ((argc - 1) * sizeof (char *));
419 if (optarg == NULL)
420 optarg = "";
421 string[n_strings++] = optarg;
423 break;
424 case 'b':
425 binary = 1;
426 break;
427 case 'c':
428 do_check = 1;
429 break;
430 case 2:
431 status_only = 1;
432 warn = 0;
433 break;
434 case 't':
435 binary = 0;
436 break;
437 case 'w':
438 status_only = 0;
439 warn = 1;
440 break;
441 default:
442 usage (EXIT_FAILURE);
445 if (do_version)
447 printf ("md5sum - %s\n", PACKAGE_VERSION);
448 exit (EXIT_SUCCESS);
451 if (n_strings > 0 && do_check)
453 error (0, 0,
454 _("the --string and --check options are mutually exclusive"));
455 usage (EXIT_FAILURE);
458 if (status_only && !do_check)
460 error (0, 0,
461 _("the --status option is meaningful only when verifying checksums"));
462 usage (EXIT_FAILURE);
465 if (warn && !do_check)
467 error (0, 0,
468 _("the --warn option is meaningful only when verifying checksums"));
469 usage (EXIT_FAILURE);
472 if (n_strings > 0)
474 if (optind < argc)
476 error (0, 0, _("no files may be specified when using --string"));
477 usage (EXIT_FAILURE);
479 for (i = 0; i < n_strings; ++i)
481 size_t cnt;
482 md5_buffer (string[i], strlen (string[i]), md5buffer);
484 for (cnt = 0; cnt < 16; ++cnt)
485 printf ("%02x", md5buffer[cnt]);
487 printf (" \"%s\"\n", string[i]);
490 else if (do_check)
492 if (optind + 1 < argc)
494 error (0, 0,
495 _("only one argument may be specified when using --check"));
496 usage (EXIT_FAILURE);
499 err = md5_check ((optind == argc) ? "-" : argv[optind], binary);
501 else
503 if (optind == argc)
504 argv[argc++] = "-";
506 for (; optind < argc; ++optind)
508 size_t i;
509 int fail;
511 fail = md5_file (argv[optind], binary, md5buffer);
512 err |= fail;
513 if (!fail)
515 for (i = 0; i < 16; ++i)
516 printf ("%02x", md5buffer[i]);
518 printf (" %c%s\n", binary ? '*' : ' ', argv[optind]);
523 if (fclose (stdout) == EOF)
524 error (EXIT_FAILURE, errno, _("write error"));
526 if (have_read_stdin && fclose (stdin) == EOF)
527 error (EXIT_FAILURE, errno, _("standard input"));
529 exit (err == 0 ? EXIT_SUCCESS : EXIT_FAILURE);