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, 96, 1997, 1998 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)
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>. */
27 #include <sys/types.h>
29 #include "long-options.h"
35 /* Most systems do not distinguish between external and internal
36 text representations. */
37 /* FIXME: This begs for an autoconf test. */
38 #if UNIX || __UNIX__ || unix || __unix__ || _POSIX_VERSION
39 # define OPENOPTS(BINARY) "r"
41 # define OPENOPTS(BINARY) ((BINARY) != 0 ? TEXT1TO1 : TEXTCNVT)
43 # define TEXT1TO1 "rb"
47 # define TEXT1TO1 "rb", "ctx=stm"
48 # define TEXTCNVT "r", "ctx=stm"
50 /* The following line is intended to evoke an error.
51 Using #error is not portable enough. */
52 "Cannot determine system type."
57 #if _LIBC || STDC_HEADERS
58 # define TOLOWER(c) tolower (c)
60 # define TOLOWER(c) (ISUPPER (c) ? tolower (c) : (c))
63 /* The minimum length of a valid digest line in a file produced
64 by `md5sum FILE' and read by `md5sum --check'. This length does
65 not include any newline character at the end of a line. */
66 #define MIN_DIGEST_LINE_LENGTH (32 /* message digest length */ \
67 + 2 /* blank and binary indicator */ \
68 + 1 /* minimum filename length */ )
70 /* Nonzero if any of the files read were the standard input. */
71 static int have_read_stdin
;
73 /* With --check, don't generate any output.
74 The exit code indicates success or failure. */
75 static int status_only
= 0;
77 /* With --check, print a message to standard error warning about each
78 improperly formatted MD5 checksum line. */
81 /* The name this program was run with. */
84 static const struct option long_options
[] =
86 { "binary", no_argument
, 0, 'b' },
87 { "check", no_argument
, 0, 'c' },
88 { "status", no_argument
, 0, 2 },
89 { "string", required_argument
, 0, 1 },
90 { "text", no_argument
, 0, 't' },
91 { "warn", no_argument
, 0, 'w' },
99 fprintf (stderr
, _("Try `%s --help' for more information.\n"),
104 Usage: %s [OPTION] [FILE]...\n\
105 or: %s [OPTION] --check [FILE]\n\
106 Print or check MD5 checksums.\n\
107 With no FILE, or when FILE is -, read standard input.\n\
109 -b, --binary read files in binary mode\n\
110 -c, --check check MD5 sums against given list\n\
111 -t, --text read files in text mode (default)\n\
113 The following two options are useful only when verifying checksums:\n\
114 --status don't output anything, status code shows success\n\
115 -w, --warn warn about improperly formated MD5 checksum lines\n\
117 --help display this help and exit\n\
118 --version output version information and exit\n\
120 The sums are computed as described in RFC 1321. When checking, the input\n\
121 should be a former output of this program. The default mode is to print\n\
122 a line with checksum, a character indicating type (`*' for binary, ` ' for\n\
123 text), and name for each FILE.\n"),
124 program_name
, program_name
, program_name
);
125 puts (_("\nReport bugs to <textutils-bugs@gnu.org>."));
128 exit (status
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);
132 split_3 (char *s
, size_t s_len
, unsigned char **u
, int *binary
, char **w
)
135 int filename_has_newline
= 0;
137 #define ISWHITE(c) ((c) == ' ' || (c) == '\t')
140 while (ISWHITE (s
[i
]))
143 /* The line must have at least 35 (36 if the first is a backslash)
144 more characters to contain correct message digest information.
145 Ignore this line if it is too short. */
146 if (!(s_len
- i
>= MIN_DIGEST_LINE_LENGTH
147 || (s
[i
] == '\\' && s_len
- i
>= 1 + MIN_DIGEST_LINE_LENGTH
)))
153 filename_has_newline
= 1;
157 /* The first field has to be the 32-character hexadecimal
158 representation of the message digest. If it is not followed
159 immediately by a white space it's an error. */
166 if (s
[i
] != ' ' && s
[i
] != '*')
168 *binary
= (s
[i
++] == '*');
170 /* All characters between the type indicator and end of line are
171 significant -- that includes leading and trailing white space. */
174 if (filename_has_newline
)
176 /* Translate each `\n' string in the file name to a NEWLINE,
177 and each `\\' string to a backslash. */
188 /* A valid line does not end with a backslash. */
201 /* Only `\' or `n' may follow a backslash. */
207 /* The file name may not contain a NUL. */
222 hex_digits (unsigned char const *s
)
233 /* An interface to md5_stream. Operate on FILENAME (it may be "-") and
234 put the result in *MD5_RESULT. Return non-zero upon failure, zero
235 to indicate success. */
238 md5_file (const char *filename
, int binary
, unsigned char *md5_result
)
243 if (STREQ (filename
, "-"))
250 /* OPENOPTS is a macro. It varies with the system.
251 Some systems distinguish between internal and
252 external text representations. */
254 fp
= fopen (filename
, OPENOPTS (binary
));
257 error (0, errno
, "%s", filename
);
262 err
= md5_stream (fp
, md5_result
);
265 error (0, errno
, "%s", filename
);
271 if (fp
!= stdin
&& fclose (fp
) == EOF
)
273 error (0, errno
, "%s", filename
);
281 md5_check (const char *checkfile_name
)
283 FILE *checkfile_stream
;
284 int n_properly_formated_lines
= 0;
285 int n_mismatched_checksums
= 0;
286 int n_open_or_read_failures
= 0;
287 unsigned char md5buffer
[16];
290 size_t line_chars_allocated
;
292 if (STREQ (checkfile_name
, "-"))
295 checkfile_name
= _("standard input");
296 checkfile_stream
= stdin
;
300 checkfile_stream
= fopen (checkfile_name
, "r");
301 if (checkfile_stream
== NULL
)
303 error (0, errno
, "%s", checkfile_name
);
310 line_chars_allocated
= 0;
315 unsigned char *md5num
;
321 line_length
= getline (&line
, &line_chars_allocated
, checkfile_stream
);
322 if (line_length
<= 0)
325 /* Ignore comment lines, which begin with a '#' character. */
329 /* Remove any trailing newline. */
330 if (line
[line_length
- 1] == '\n')
331 line
[--line_length
] = '\0';
333 err
= split_3 (line
, line_length
, &md5num
, &binary
, &filename
);
334 if (err
|| !hex_digits (md5num
))
339 _("%s: %lu: improperly formatted MD5 checksum line"),
340 checkfile_name
, (unsigned long) line_number
);
345 static const char bin2hex
[] = { '0', '1', '2', '3',
348 'c', 'd', 'e', 'f' };
351 ++n_properly_formated_lines
;
353 fail
= md5_file (filename
, binary
, md5buffer
);
357 ++n_open_or_read_failures
;
360 printf (_("%s: FAILED open or read\n"), filename
);
367 /* Compare generated binary number with text representation
368 in check file. Ignore case of hex digits. */
369 for (cnt
= 0; cnt
< 16; ++cnt
)
371 if (TOLOWER (md5num
[2 * cnt
]) != bin2hex
[md5buffer
[cnt
] >> 4]
372 || (TOLOWER (md5num
[2 * cnt
+ 1])
373 != (bin2hex
[md5buffer
[cnt
] & 0xf])))
377 ++n_mismatched_checksums
;
381 printf ("%s: %s\n", filename
,
382 (cnt
!= 16 ? _("FAILED") : _("OK")));
388 while (!feof (checkfile_stream
) && !ferror (checkfile_stream
));
393 if (ferror (checkfile_stream
))
395 error (0, 0, _("%s: read error"), checkfile_name
);
399 if (checkfile_stream
!= stdin
&& fclose (checkfile_stream
) == EOF
)
401 error (0, errno
, "%s", checkfile_name
);
405 if (n_properly_formated_lines
== 0)
407 /* Warn if no tests are found. */
408 error (0, 0, _("%s: no properly formatted MD5 checksum lines found"),
415 int n_computed_checkums
= (n_properly_formated_lines
416 - n_open_or_read_failures
);
418 if (n_open_or_read_failures
> 0)
421 _("WARNING: %d of %d listed %s could not be read\n"),
422 n_open_or_read_failures
, n_properly_formated_lines
,
423 (n_properly_formated_lines
== 1
424 ? _("file") : _("files")));
427 if (n_mismatched_checksums
> 0)
430 _("WARNING: %d of %d computed %s did NOT match"),
431 n_mismatched_checksums
, n_computed_checkums
,
432 (n_computed_checkums
== 1
433 ? _("checksum") : _("checksums")));
438 return ((n_properly_formated_lines
> 0 && n_mismatched_checksums
== 0
439 && n_open_or_read_failures
== 0) ? 0 : 1);
443 main (int argc
, char **argv
)
445 unsigned char md5buffer
[16];
448 char **string
= NULL
;
449 size_t n_strings
= 0;
451 int file_type_specified
= 0;
453 /* Text is default of the Plumb/Lankester format. */
456 /* Setting values of global variables. */
457 program_name
= argv
[0];
458 setlocale (LC_ALL
, "");
459 bindtextdomain (PACKAGE
, LOCALEDIR
);
460 textdomain (PACKAGE
);
462 parse_long_options (argc
, argv
, "md5sum", GNU_PACKAGE
, VERSION
, usage
);
464 while ((opt
= getopt_long (argc
, argv
, "bctw", long_options
, NULL
)) != -1)
467 case 0: /* long option */
469 case 1: /* --string */
472 string
= (char **) xmalloc ((argc
- 1) * sizeof (char *));
476 string
[n_strings
++] = optarg
;
480 file_type_specified
= 1;
491 file_type_specified
= 1;
499 usage (EXIT_FAILURE
);
502 if (file_type_specified
&& do_check
)
504 error (0, 0, _("the --binary and --text options are meaningless when \
505 verifying checksums"));
506 usage (EXIT_FAILURE
);
509 if (n_strings
> 0 && do_check
)
512 _("the --string and --check options are mutually exclusive"));
513 usage (EXIT_FAILURE
);
516 if (status_only
&& !do_check
)
519 _("the --status option is meaningful only when verifying checksums"));
520 usage (EXIT_FAILURE
);
523 if (warn
&& !do_check
)
526 _("the --warn option is meaningful only when verifying checksums"));
527 usage (EXIT_FAILURE
);
536 error (0, 0, _("no files may be specified when using --string"));
537 usage (EXIT_FAILURE
);
539 for (i
= 0; i
< n_strings
; ++i
)
542 md5_buffer (string
[i
], strlen (string
[i
]), md5buffer
);
544 for (cnt
= 0; cnt
< 16; ++cnt
)
545 printf ("%02x", md5buffer
[cnt
]);
547 printf (" \"%s\"\n", string
[i
]);
552 if (optind
+ 1 < argc
)
555 _("only one argument may be specified when using --check"));
556 usage (EXIT_FAILURE
);
559 err
= md5_check ((optind
== argc
) ? "-" : argv
[optind
]);
566 for (; optind
< argc
; ++optind
)
569 char *file
= argv
[optind
];
571 fail
= md5_file (file
, binary
, md5buffer
);
577 /* Output a leading backslash if the file name contains
579 if (strchr (file
, '\n'))
582 for (i
= 0; i
< 16; ++i
)
583 printf ("%02x", md5buffer
[i
]);
591 /* Translate each NEWLINE byte to the string, "\\n",
592 and each backslash to "\\\\". */
593 for (i
= 0; i
< strlen (file
); ++i
)
598 fputs ("\\n", stdout
);
602 fputs ("\\\\", stdout
);
615 if (fclose (stdout
) == EOF
)
616 error (EXIT_FAILURE
, errno
, _("write error"));
618 if (have_read_stdin
&& fclose (stdin
) == EOF
)
619 error (EXIT_FAILURE
, errno
, _("standard input"));
621 exit (err
== 0 ? EXIT_SUCCESS
: EXIT_FAILURE
);