diff options
author | Jim Meyering <jim@meyering.net> | 2003-05-24 16:51:52 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-05-24 16:51:52 +0000 |
commit | 75247be90cd8c55b44e52d792e6f20d5ee490951 (patch) | |
tree | a457a90ec5e5e4acb7dd5395320b9b96f5f8fdb1 /src/md5sum.c | |
parent | 92359d2df0801ffcbf461588214451b8acffb762 (diff) | |
download | coreutils-75247be90cd8c55b44e52d792e6f20d5ee490951.tar.gz |
(bsd_split_3): New function.
(split_3): Detect checksums from BSD 'md5' command and handle them
using bsd_split_3.
Diffstat (limited to 'src/md5sum.c')
-rw-r--r-- | src/md5sum.c | 48 |
1 files changed, 46 insertions, 2 deletions
diff --git a/src/md5sum.c b/src/md5sum.c index 32ead0dc3..2d6778b74 100644 --- a/src/md5sum.c +++ b/src/md5sum.c @@ -160,6 +160,45 @@ text), and name for each FILE.\n"), exit (status == 0 ? EXIT_SUCCESS : EXIT_FAILURE); } +#define ISWHITE(c) ((c) == ' ' || (c) == '\t') + +/* Split the checksum string S (of length S_LEN) from a BSD 'md5' + command into two parts: a hexadecimal digest, and the file name. S + is modified. */ + +static int +bsd_split_3 (char *s, size_t s_len, unsigned char **hex_digest, char **file_name) +{ + size_t i; + + *file_name = s; + + /* Find end of filename. The BSD 'md5' does not escape filenames, so + search backwards for the last ')'. */ + i = s_len - 1; + while (i && s[i] != ')') + i--; + + if (s[i] != ')') + return 1; + + s[i++] = '\0'; + + while (ISWHITE (s[i])) + i++; + + if (s[i] != '=') + return 1; + + i++; + + while (ISWHITE (s[i])) + i++; + + *hex_digest = (unsigned char *) &s[i]; + return 0; +} + /* Split the string S (of length S_LEN) into three parts: a hexadecimal digest, binary flag, and the file name. S is modified. */ @@ -171,12 +210,17 @@ split_3 (char *s, size_t s_len, size_t i; int escaped_filename = 0; -#define ISWHITE(c) ((c) == ' ' || (c) == '\t') - i = 0; while (ISWHITE (s[i])) ++i; + /* Check for BSD-style checksum line. */ + if (strncmp (s + i, "MD5 (", 5) == 0) + { + *binary = 0; + return bsd_split_3 (s + i + 5, s_len - i - 5, hex_digest, file_name); + } + /* Ignore this line if it is too short. Each line must have at least `min_digest_line_length - 1' (or one more, if the first is a backslash) more characters to contain correct message digest |