From: Sami Kerola <kerolasa@iki.fi>
To: util-linux@vger.kernel.org
Cc: kerolasa@iki.fi
Subject: [PATCH 5/5] mcookie: add --max-size option
Date: Sat, 8 Mar 2014 15:43:30 -0600 [thread overview]
Message-ID: <1394315010-22481-5-git-send-email-kerolasa@iki.fi> (raw)
In-Reply-To: <1394315010-22481-1-git-send-email-kerolasa@iki.fi>
Just in case someone wants to add entropy from device with invocation
demonstrated below.
$ mcookie --file /dev/urandom --max-size 64k
Signed-off-by: Sami Kerola <kerolasa@iki.fi>
---
misc-utils/mcookie.1 | 15 +++++++++++++++
misc-utils/mcookie.c | 29 ++++++++++++++++++++++++-----
2 files changed, 39 insertions(+), 5 deletions(-)
diff --git a/misc-utils/mcookie.1 b/misc-utils/mcookie.1
index df6137f..1b6ac76 100644
--- a/misc-utils/mcookie.1
+++ b/misc-utils/mcookie.1
@@ -27,6 +27,21 @@ in this preference order.
Use additional file as a macig cookie random seed. When file is defined
as '-' character input is read from stdin.
.TP
+\fB\-m\fR, \fB\-\-max\-size\fR=\fInumber\fR
+Read form
+.I FILE
+only
+.I number
+of bytes. This option is meant to be used when reading additional
+randomness from a device.
+.IP
+The
+.I number
+argument may be followed by the multiplicative suffixes KiB=1024,
+MiB=1024*1024, and so on for GiB, TiB, PiB, EiB, ZiB and YiB (the "iB" is
+optional, e.g., "K" has the same meaning as "KiB") or the suffixes
+KB=1000, MB=1000*1000, and so on for GB, TB, PB, EB, ZB and YB.
+.TP
\fB\-v\fR, \fB\-\-verbose\fR
Inform where randomness originated, with amount of entropy read from each
source.
diff --git a/misc-utils/mcookie.c b/misc-utils/mcookie.c
index 31f33e4..caa1b8f 100644
--- a/misc-utils/mcookie.c
+++ b/misc-utils/mcookie.c
@@ -23,6 +23,7 @@
#include "nls.h"
#include "closestream.h"
#include "randutils.h"
+#include "strutils.h"
#include "xalloc.h"
#include <fcntl.h>
@@ -43,6 +44,7 @@ struct mcookie_control {
char **files;
int nfiles;
int fd;
+ uint64_t maxsz;
unsigned int
verbose:1;
};
@@ -50,11 +52,22 @@ struct mcookie_control {
/* The basic function to hash a file */
static size_t hash_file(struct mcookie_control *ctl)
{
- size_t count = 0;
- ssize_t r;
+ size_t count = 0, read_sz;
+ ssize_t r = 1;
unsigned char buf[BUFFERSIZE];
-
- while ((r = read(ctl->fd, buf, sizeof(buf))) > 0) {
+ int stop = 0;
+
+ read_sz = sizeof(buf);
+ while (!stop) {
+ if (ctl->maxsz) {
+ if (ctl->maxsz <= read_sz) {
+ read_sz = ctl->maxsz;
+ stop = 1;
+ } else
+ ctl->maxsz -= read_sz;
+ }
+ if ((r = read(ctl->fd, buf, read_sz)) == 0)
+ break;
MD5Update(&(ctl->ctx), buf, r);
count += r;
}
@@ -70,6 +83,7 @@ static void __attribute__((__noreturn__)) usage(FILE * out)
fprintf(out, _(" %s [options]\n"), program_invocation_short_name);
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);
fputs(USAGE_HELP, out);
@@ -117,6 +131,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'},
@@ -135,7 +150,7 @@ int main(int argc, char **argv)
ctl.files = xmalloc(sizeof(char *) * argc);
while ((c =
- getopt_long(argc, argv, "f:vVh", longopts, NULL)) != -1)
+ 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)
ctl.files[ctl.nfiles] = optarg;
ctl.nfiles++;
break;
+ case 'm':
+ ctl.maxsz = strtosize_or_err(optarg,
+ _("failed to parse length"));
+ break;
case 'V':
printf(UTIL_LINUX_VERSION);
return EXIT_SUCCESS;
--
1.9.0
next prev parent reply other threads:[~2014-03-08 21:43 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-03-08 21:43 [PATCH 1/5] mcookie: use lib/randutils Sami Kerola
2014-03-08 21:43 ` [PATCH 2/5] mcookie: allow --file option be defined multiple times Sami Kerola
2014-03-08 21:43 ` [PATCH 3/5] mcookie: use same variable type consistently Sami Kerola
2014-03-08 21:43 ` [PATCH 4/5] mcookie: use control structure, and fix usage() Sami Kerola
2014-03-08 21:43 ` Sami Kerola [this message]
2014-03-26 11:12 ` [PATCH 1/5] mcookie: use lib/randutils Karel Zak
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1394315010-22481-5-git-send-email-kerolasa@iki.fi \
--to=kerolasa@iki.fi \
--cc=util-linux@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox