summaryrefslogtreecommitdiffstats
path: root/misc-utils/mcookie.c
diff options
context:
space:
mode:
authorSami Kerola2014-03-08 22:43:30 +0100
committerKarel Zak2014-03-26 12:08:57 +0100
commitf7bac5731bf559216aa2f0e8be1d7f477e7cf41a (patch)
tree010c73584379c981852b0e85c47b6a2f6b6a2e9f /misc-utils/mcookie.c
parentmcookie: use control structure, and fix usage() (diff)
downloadkernel-qcow2-util-linux-f7bac5731bf559216aa2f0e8be1d7f477e7cf41a.tar.gz
kernel-qcow2-util-linux-f7bac5731bf559216aa2f0e8be1d7f477e7cf41a.tar.xz
kernel-qcow2-util-linux-f7bac5731bf559216aa2f0e8be1d7f477e7cf41a.zip
mcookie: add --max-size option
Just in case someone wants to add entropy from device with invocation demonstrated below. $ mcookie --file /dev/urandom --max-size 64k [kzak@redhat.com: - use all-io.h] Signed-off-by: Sami Kerola <kerolasa@iki.fi> Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'misc-utils/mcookie.c')
-rw-r--r--misc-utils/mcookie.c32
1 files changed, 27 insertions, 5 deletions
diff --git a/misc-utils/mcookie.c b/misc-utils/mcookie.c
index 494c1cf89..7b60dd825 100644
--- a/misc-utils/mcookie.c
+++ b/misc-utils/mcookie.c
@@ -23,7 +23,9 @@
#include "nls.h"
#include "closestream.h"
#include "randutils.h"
+#include "strutils.h"
#include "xalloc.h"
+#include "all-io.h"
#include <fcntl.h>
#include <getopt.h>
@@ -42,18 +44,29 @@ struct mcookie_control {
struct MD5Context ctx;
char **files;
size_t nfiles;
+ uint64_t maxsz;
unsigned int verbose:1;
};
/* The basic function to hash a file */
-static size_t hash_file(struct mcookie_control *ctl, int fd)
+static uint64_t hash_file(struct mcookie_control *ctl, int fd)
{
- size_t count = 0;
- ssize_t r;
unsigned char buf[BUFFERSIZE];
+ uint64_t wanted, count;
- while ((r = read(fd, buf, sizeof(buf))) > 0) {
+ wanted = ctl->maxsz ? ctl->maxsz : sizeof(buf);
+
+ for (count = 0; count < wanted; ) {
+ size_t rdsz = sizeof(buf);
+ ssize_t r;
+
+ if (wanted - count < rdsz)
+ rdsz = wanted - count;
+
+ r = read_all(fd, (char *) buf, rdsz);
+ if (r < 0)
+ break;
MD5Update(&ctl->ctx, buf, r);
count += r;
}
@@ -70,6 +83,7 @@ static void __attribute__ ((__noreturn__)) usage(FILE * out)
fputs(USAGE_OPTIONS, out);
fputs(_(" -f, --file <file> use file as a cookie seed\n"), out);
+ fputs(_(" -m, --max-size <num> limit how much is read from seed files\n"), out);
fputs(_(" -v, --verbose explain what is being done\n"), out);
fputs(USAGE_SEPARATOR, out);
@@ -122,6 +136,7 @@ int main(int argc, char **argv)
static const struct option longopts[] = {
{"file", required_argument, NULL, 'f'},
+ {"max-size", required_argument, NULL, 'm'},
{"verbose", no_argument, NULL, 'v'},
{"version", no_argument, NULL, 'V'},
{"help", no_argument, NULL, 'h'},
@@ -136,7 +151,7 @@ int main(int argc, char **argv)
if (2 < argc)
ctl.files = xmalloc(sizeof(char *) * argc);
- while ((c = getopt_long(argc, argv, "f:vVh", longopts, NULL)) != -1) {
+ while ((c = getopt_long(argc, argv, "f:m:vVh", longopts, NULL)) != -1) {
switch (c) {
case 'v':
ctl.verbose = 1;
@@ -144,6 +159,10 @@ int main(int argc, char **argv)
case 'f':
ctl.files[ctl.nfiles++] = optarg;
break;
+ case 'm':
+ ctl.maxsz = strtosize_or_err(optarg,
+ _("failed to parse length"));
+ break;
case 'V':
printf(UTIL_LINUX_VERSION);
return EXIT_SUCCESS;
@@ -154,6 +173,9 @@ int main(int argc, char **argv)
}
}
+ if (ctl.maxsz && ctl.nfiles == 0)
+ warnx(_("--max-size ignored when used without --file."));
+
randomness_from_files(&ctl);
free(ctl.files);