aboutsummaryrefslogtreecommitdiffstats
path: root/src/autopasswd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/autopasswd.c')
-rw-r--r--src/autopasswd.c383
1 files changed, 354 insertions, 29 deletions
diff --git a/src/autopasswd.c b/src/autopasswd.c
index adec52f..cfbf586 100644
--- a/src/autopasswd.c
+++ b/src/autopasswd.c
@@ -1,5 +1,5 @@
/**
- * autopasswd – On the fly password generator
+ * autopasswd – Reproducible password generator
*
* Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)
*
@@ -16,14 +16,13 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-
-
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <passphrase.h>
+#include <argparser.h>
#include "sha3.h"
@@ -44,39 +43,351 @@
# define SITE_PROMPT_STRING "[autopasswd] Enter site: "
#endif
+/**
+ * The radix 64 characters (66 characters), the two last ones are for padding
+ */
+#ifndef BASE64
+# define BASE64 "0123456789qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM,.-="
+#endif
+/**
+ * The number of squeezes to do at bump level zero
+ */
+#ifndef KECCAK_SQUEEZES
+# define KECCAK_SQUEEZES 300000
+#endif
+/**
+ * The default output parameter for the Keccak sponge
+ */
#ifndef KECCAK_OUTPUT
# define KECCAK_OUTPUT 512
#endif
-#ifndef KECCAK_BITRATE
-# define KECCAK_BITRATE (KECCAK_OUTPUT * 2)
-#endif
-#ifndef KECCAK_CAPACITY
-# define KECCAK_CAPACITY (1600 - KECCAK_BITRATE)
-#endif
-#ifndef KECCAK_SQUEEZES
-# define KECCAK_SQUEEZES 300000
+/**
+ * The default state size parameter for the Keccak sponge
+ */
+#ifndef KECCAK_STATE_SIZE
+# define KECCAK_STATE_SIZE 1600
#endif
-#define KECCAK_BYTE_OUTPUT ((KECCAK_OUTPUT + 7) / 8)
-
-#ifndef BASE64
-# define BASE64 "0123456789qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM,.-="
+/**
+ * The number of addition squeezes to perform per bump level
+ */
+#ifndef BUMP_LEVEL_MULTIPLIER
+# define BUMP_LEVEL_MULTIPLIER 5000
#endif
+static inline char* last_arg(char* arg)
+{
+ return *(args_opts_get(arg) + (args_opts_get_count(arg) - 1));
+}
+
+/**
+ * Here we go!
+ */
int main(int argc, char** argv)
{
- size_t ptr = 0;
size_t site_size = 64;
+ long bump_level = 0;
+ int clear_mode = 0;
+ int verbose_mode = 0;
+ long keccak_output_ = KECCAK_OUTPUT;
+ long keccak_state_size_ = KECCAK_STATE_SIZE;
+ long keccak_capacity_ = keccak_state_size_ - (keccak_output_ << 1);
+ long keccak_bitrate_ = keccak_state_size_ - keccak_capacity_;
+ long keccak_word_size_ = keccak_state_size_ / 25;
+ long keccak_squeezes = KECCAK_SQUEEZES;
+ int output__ = 0;
+ int state_size__ = 0;
+ int capacity__ = 0;
+ int bitrate__ = 0;
+ int word_size__ = 0;
+ int squeezes__ = 0;
+ long output_, keccak_output;
+ long state_size_, keccak_state_size;
+ long capacity_, keccak_capacity;
+ long bitrate_, keccak_bitrate;
+ long word_size_, keccak_word_size;
+ long squeezes_;
char* site;
char* passphrase;
uint8_t* digest;
char* base64;
size_t ptr64;
+ size_t ptr;
+
+ /* Parse command line arguments. */
+ args_init("Reproducible password generator", "autopasswd [options...]",
+ "TODO", 0, 1, 0, args_standard_abbreviations);
+
+ args_add_option(args_new_argumentless(NULL, 0, "-h", "-?", "--help", NULL),
+ "Display this help message");
+ args_add_option(args_new_argumentless(NULL, 0, "+c", "--copyright", "--copying", NULL),
+ "Display copyright information");
+ args_add_option(args_new_argumentless(NULL, 0, "+w", "--warranty", NULL),
+ "Display warranty disclaimer");
+ args_add_option(args_new_argumentless(NULL, 0, "+v", "--verbose", NULL),
+ "Display extra information");
+ args_add_option(args_new_argumented(NULL, "INT", 0, "-b", "--bump-level", NULL),
+ "Select bump level, can contain + or - to perform accumulated adjustment");
+ args_add_option(args_new_argumentless(NULL, 0, "-c", "--clear-mode", NULL),
+ "Do not hide the output, but rather make it ease to pass into another program\n"
+ "Use twice to suppress terminal line break");
+ args_add_option(args_new_argumented(NULL, "INT", 0, "-O", "--output", NULL),
+ "Select output parameter for Keccak sponge");
+ args_add_option(args_new_argumented(NULL, "INT", 0, "-S", "--state-size", NULL),
+ "Select state size parameter for Keccak sponge");
+ args_add_option(args_new_argumented(NULL, "INT", 0, "-C", "--capacity", NULL),
+ "Select capacity parameter for Keccak sponge");
+ args_add_option(args_new_argumented(NULL, "INT", 0, "-R", "--rate", "--bitrate", NULL),
+ "Select bitrate parameter for Keccak sponge");
+ args_add_option(args_new_argumented(NULL, "INT", 0, "-W", "--word-size", NULL),
+ "Select word size parameter for Keccak sponge");
+ args_add_option(args_new_argumented(NULL, "INT", 0, "-Z", "--squeezes", NULL),
+ "Select the number squeezes performe on the Keccak sponge at bump level zero");
+
+ args_parse(argc, argv);
+ args_support_alternatives();
+
+ if (args_opts_used("--help"))
+ {
+ args_help();
+ args_dispose();
+ return 0;
+ }
+ if (args_opts_used("--copyright"))
+ {
+ printf("autopasswd – Reproducible password generator\n");
+ printf("\n");
+ printf("Copyright © 2014 Mattias Andrée (maandree@member.fsf.org)\n");
+ printf("\n");
+ printf("This program is free software: you can redistribute it and/or modify\n");
+ printf("it under the terms of the GNU Affero General Public License as published by\n");
+ printf("the Free Software Foundation, either version 3 of the License, or\n");
+ printf("(at your option) any later version.\n");
+ printf("\n");
+ printf("This program is distributed in the hope that it will be useful,\n");
+ printf("but WITHOUT ANY WARRANTY; without even the implied warranty of\n");
+ printf("MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n");
+ printf("GNU Affero General Public License for more details.\n");
+ printf("\n");
+ printf("You should have received a copy of the GNU Affero General Public License\n");
+ printf("along with this program. If not, see <http://www.gnu.org/licenses/>.\n");
+ args_dispose();
+ return 0;
+ }
+ if (args_opts_used("--warranty"))
+ {
+ printf("This program is distributed in the hope that it will be useful,\n");
+ printf("but WITHOUT ANY WARRANTY; without even the implied warranty of\n");
+ printf("MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n");
+ printf("GNU Affero General Public License for more details.\n");
+ args_dispose();
+ return 0;
+ }
+ if (args_opts_used("--clear-mode"))
+ {
+ clear_mode = args_opts_get_count("--clear-mode");
+ }
+ if (args_opts_used("--verbose"))
+ {
+ verbose_mode = 1;
+ }
+ if (args_opts_used("--bump-level"))
+ {
+ size_t n = args_opts_get_count("--bump-level");
+ char** arr = args_opts_get("--bump-level");
+ char* arg;
+ for (ptr = 0; ptr < n; ptr++)
+ if ((arg = *(arr + ptr)))
+ switch (*arg)
+ {
+ case 0:
+ break;
+ case '+':
+ bump_level += atol(arg);
+ break;
+ case '-':
+ bump_level -= atol(arg);
+ break;
+ default:
+ bump_level = atol(arg);
+ break;
+ }
+ }
+ if (args_opts_used("--output"))
+ {
+ output__ = 1;
+ output_ = atol(last_arg("--output"));
+ }
+ if (args_opts_used("--state-size"))
+ {
+ state_size__ = 1;
+ state_size_ = atol(last_arg("--state-size"));
+ }
+ if (args_opts_used("--capacity"))
+ {
+ capacity__ = 1;
+ capacity_ = atol(last_arg("--capacity"));
+ }
+ if (args_opts_used("--bitrate"))
+ {
+ bitrate__ = 1;
+ bitrate_ = atol(last_arg("--bitrate"));
+ }
+ if (args_opts_used("--word-size"))
+ {
+ word_size__ = 1;
+ word_size_ = atol(last_arg("--word-size"));
+ }
+ if (args_opts_used("--squeezes"))
+ {
+ squeezes__ = 1;
+ squeezes_ = atol(last_arg("--squeezes"));
+ }
+
+ args_dispose();
+
+ /* Get Keccak sponge parameters. */
+ if (squeezes__)
+ {
+ keccak_squeezes = squeezes_;
+ if (keccak_squeezes == 0)
+ {
+ fprintf(stderr, "%s: do you really want your passphrase included in plain text?", *argv);
+ return 1;
+ }
+ else if (keccak_squeezes < 1)
+ {
+ fprintf(stderr, "%s: the squeeze count must be positive.", *argv);
+ return 1;
+ }
+ }
+ if (state_size__)
+ {
+ keccak_state_size = state_size_;
+ if ((keccak_state_size <= 0) || (keccak_state_size > 1600) || (keccak_state_size % 25))
+ {
+ fprintf(stderr, "%s: the state size must be a positive multiple of 25 and is limited to 1600.", *argv);
+ return 1;
+ }
+ }
+ if (word_size__)
+ {
+ keccak_word_size = word_size_;
+ if ((keccak_word_size <= 0) || (keccak_word_size > 64))
+ {
+ fprintf(stderr, "%s: the word size must be positive and is limited to 64.", *argv);
+ return 1;
+ }
+ if (state_size__ && (keccak_state_size != keccak_word_size * 25))
+ {
+ fprintf(stderr, "%s: the state size must be 25 times of the word size.", *argv);
+ return 1;
+ }
+ else if (state_size__ == 0)
+ {
+ state_size__ = 1;
+ keccak_state_size = keccak_word_size * 25;
+ }
+ }
+ if (capacity__)
+ {
+ keccak_capacity = capacity_;
+ if ((keccak_capacity <= 0) || (keccak_capacity & 7))
+ {
+ fprintf(stderr, "%s: the capacity must be a positive multiple of 8.", *argv);
+ return 1;
+ }
+ }
+ if (bitrate__)
+ {
+ keccak_bitrate = bitrate_;
+ if ((keccak_bitrate <= 0) || (keccak_bitrate & 7))
+ {
+ fprintf(stderr, "%s: the bitrate must be a positive multiple of 8.", *argv);
+ return 1;
+ }
+ }
+ if (output__)
+ {
+ keccak_output = output_;
+ if (keccak_output <= 0)
+ {
+ fprintf(stderr, "%s: the output size must be positive.", *argv);
+ return 1;
+ }
+ }
+ if ((bitrate__ & capacity__ & output__) == 0) /* state_size? */
+ {
+ keccak_state_size = state_size__ ? keccak_state_size : keccak_state_size_;
+ keccak_output = (((keccak_state_size << 5) / 100 + 7) >> 3) << 3;
+ keccak_bitrate = keccak_output << 1;
+ keccak_capacity = keccak_state_size - keccak_bitrate;
+ keccak_output = keccak_output < 8 ? 8 : keccak_output;
+ }
+ else if ((bitrate__ & capacity__) == 0) /* !output state_size? */
+ {
+ keccak_bitrate = keccak_bitrate_;
+ keccak_capacity = keccak_capacity_;
+ keccak_state_size = state_size__ ? keccak_state_size : (keccak_bitrate + keccak_capacity);
+ }
+ else if (bitrate__ == 0) /* !bitrate output? state_size? */
+ {
+ keccak_state_size = state_size__ ? keccak_state_size : keccak_state_size_;
+ keccak_bitrate = keccak_state_size - keccak_capacity;
+ keccak_output = output__ ? keccak_output : (keccak_capacity == 8 ? 8 : (keccak_capacity << 1));
+ }
+ else if (capacity__ == 0) /* !bitrate output? state_size? */
+ {
+ keccak_state_size = state_size__ ? keccak_state_size : keccak_state_size_;
+ keccak_capacity = keccak_state_size - keccak_bitrate;
+ keccak_output = output__ ? keccak_output : (keccak_capacity == 8 ? 8 : (keccak_capacity << 1));
+ }
+ else /* !bitrate !capacity output? state_size? */
+ {
+ keccak_state_size = state_size__ ? keccak_state_size : (keccak_bitrate + keccak_capacity);
+ keccak_output = output__ ? keccak_output : (keccak_capacity == 8 ? 8 : (keccak_capacity << 1));
+ }
+ if (keccak_bitrate > keccak_state_size)
+ {
+ fprintf(stderr, "%s: the bitrate must not be higher than the state size.", *argv);
+ return 1;
+ }
+ if (keccak_capacity > keccak_state_size)
+ {
+ fprintf(stderr, "%s: the capacity must not be higher than the state size.", *argv);
+ return 1;
+ }
+ if (keccak_bitrate + keccak_capacity != keccak_state_size)
+ {
+ fprintf(stderr, "%s: the sum of the bitrate and the capacity must equal the state size.", *argv);
+ return 1;
+ }
+ keccak_squeezes += bump_level * BUMP_LEVEL_MULTIPLIER;
+ if (keccak_squeezes < 1)
+ {
+ fprintf(stderr, "%s: bump level is too low.", *argv);
+ return 1;
+ }
+ keccak_word_size = keccak_state_size / 25;
+
+ /* Display verbose information. */
+ if (verbose_mode)
+ {
+ fprintf(stderr, "Bump level: %li\n", bump_level);
+ fprintf(stderr, "Bitrate: %li\n", keccak_bitrate);
+ fprintf(stderr, "Capacity: %li\n", keccak_capacity);
+ fprintf(stderr, "Word size: %li\n", keccak_word_size);
+ fprintf(stderr, "State size: %li\n", keccak_state_size);
+ fprintf(stderr, "Output size: %li\n", keccak_output);
+ fprintf(stderr, "Squeezes (excluding bump level): %li\n",
+ keccak_squeezes - bump_level * BUMP_LEVEL_MULTIPLIER);
+ fprintf(stderr, "Squeezes (including bump level): %li\n", keccak_squeezes);
+ }
/* Read site. */
site = malloc(site_size * sizeof(char));
@@ -87,7 +398,7 @@ int main(int argc, char** argv)
}
fprintf(stderr, "%s", SITE_PROMPT_STRING);
fflush(stderr);
- for (;;)
+ for (ptr = 0;;)
{
int c = getchar();
if (c == -1)
@@ -107,7 +418,7 @@ int main(int argc, char** argv)
passphrase_disable_echo();
/* Initialise Keccak sponge. */
- sha3_initialise(KECCAK_BITRATE, KECCAK_CAPACITY, KECCAK_OUTPUT);
+ sha3_initialise(keccak_bitrate, keccak_capacity, keccak_output);
/* Read passphrease. */
fprintf(stderr, "%s", PASSPHRASE_PROMPT_STRING);
@@ -133,31 +444,33 @@ int main(int argc, char** argv)
free(passphrase);
/* Add site to Keccak sponge input. */
- sha3_digest(site, strlen(site), 0);
+ digest = sha3_digest(site, strlen(site), keccak_squeezes == 1);
/* Release resources. */
free(site);
/* Squeeze that sponge. */
- sha3_fastSqueeze(KECCAK_SQUEEZES);
- digest = sha3_squeeze();
+ if (keccak_squeezes > 2)
+ sha3_fastSqueeze(keccak_squeezes - 2);
+ if (keccak_squeezes > 1)
+ digest = sha3_squeeze();
/* Release resources. */
sha3_dispose();
/* Encode with base64 (no invalid character, shorter than hexadecimal.) */
- base64 = malloc((4 * ((KECCAK_BYTE_OUTPUT + 2) / 3) + 2) * sizeof(char));
+ base64 = malloc((4 * ((((keccak_output + 7) / 8) + 2) / 3) + 2) * sizeof(char));
if (base64 == NULL)
{
perror(*argv);
free(digest);
free(base64);
}
- for (ptr = ptr64 = 0; ptr < KECCAK_BYTE_OUTPUT; ptr64 += 4)
+ for (ptr = ptr64 = 0; ptr < (keccak_output + 7) / 8; ptr64 += 4)
{
- uint32_t a = ptr < KECCAK_BYTE_OUTPUT ? digest[ptr++] : 0;
- uint32_t b = ptr < KECCAK_BYTE_OUTPUT ? digest[ptr++] : 0;
- uint32_t c = ptr < KECCAK_BYTE_OUTPUT ? digest[ptr++] : 0;
+ uint32_t a = ptr < ((keccak_output + 7) / 8) ? digest[ptr++] : 0;
+ uint32_t b = ptr < ((keccak_output + 7) / 8) ? digest[ptr++] : 0;
+ uint32_t c = ptr < ((keccak_output + 7) / 8) ? digest[ptr++] : 0;
uint32_t abc = (a << 16) | (b << 8) | (c << 0);
@@ -166,12 +479,24 @@ int main(int argc, char** argv)
base64[ptr64 | 2] = BASE64[(abc >> (1 * 6)) & 63];
base64[ptr64 | 3] = BASE64[(abc >> (0 * 6)) & 63];
}
- if ((KECCAK_BYTE_OUTPUT % 3) == 1) base64[ptr64++] = BASE64[64];
- if ((KECCAK_BYTE_OUTPUT % 3) == 2) base64[ptr64++] = BASE64[65];
+ if ((((keccak_output + 7) / 8) % 3) == 1) base64[ptr64++] = BASE64[64];
+ if ((((keccak_output + 7) / 8) % 3) == 2) base64[ptr64++] = BASE64[65];
base64[ptr64++] = 0;
+ /* Display verbose information. */
+ if (verbose_mode)
+ {
+ fprintf(stderr, "Password length (before base64): %li\n", (keccak_output + 7) / 8);
+ fprintf(stderr, "Password length (after base64): %li\n", strlen(base64));
+ }
+
/* Print generated password. */
- printf("\033[00m>\033[00;30;40m%s\033[00m<\n", base64);
+ if (clear_mode > 1)
+ printf("%s", base64);
+ else if (clear_mode)
+ printf("%s\n", base64);
+ else
+ printf("\033[00m>\033[00;30;40m%s\033[00m<\n", base64);
/* Release resources. */
free(digest);