mirror of
https://github.com/cryb-to/cryb-otp.git
synced 2024-11-22 05:25:46 +00:00
545 lines
12 KiB
C
545 lines
12 KiB
C
/*-
|
|
* Copyright (c) 2013-2016 The University of Oslo
|
|
* Copyright (c) 2016-2018 Dag-Erling Smørgrav
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. The name of the author may not be used to endorse or promote
|
|
* products derived from this software without specific prior written
|
|
* permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*/
|
|
|
|
#include "cryb/impl.h"
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <err.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <limits.h>
|
|
#include <pwd.h>
|
|
#include <stdint.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
#include <cryb/ctype.h>
|
|
#include <cryb/oath.h>
|
|
#include <cryb/otp.h>
|
|
#include <cryb/strlcmp.h>
|
|
|
|
#define MAX_KEYURI_SIZE 4096
|
|
|
|
/* XXX hardcoded windows */
|
|
#define HOTP_WINDOW 9
|
|
#define TOTP_WINDOW 2
|
|
|
|
enum { RET_SUCCESS, RET_FAILURE, RET_ERROR, RET_USAGE, RET_UNAUTH };
|
|
|
|
static char *user;
|
|
static char *keyfile;
|
|
static int verbose;
|
|
static int readonly;
|
|
static int numbered;
|
|
|
|
static int isroot; /* running as root */
|
|
static int issameuser; /* real user same as target user */
|
|
|
|
/*
|
|
* Print key in hexadecimal form
|
|
*/
|
|
static int
|
|
otpkey_print_hex(oath_key *key)
|
|
{
|
|
unsigned int i;
|
|
|
|
for (i = 0; i < key->keylen; ++i)
|
|
printf("%02x", key->key[i]);
|
|
printf("\n");
|
|
return (RET_SUCCESS);
|
|
}
|
|
|
|
/*
|
|
* Print key in otpauth URI form
|
|
*/
|
|
static int
|
|
otpkey_print_uri(oath_key *key)
|
|
{
|
|
char keyuri[MAX_KEYURI_SIZE];
|
|
size_t len;
|
|
|
|
len = sizeof keyuri;
|
|
if (oath_key_to_uri(key, keyuri, &len) != 0) {
|
|
warnx("failed to convert key to otpauth URI");
|
|
return (RET_ERROR);
|
|
}
|
|
printf("%s\n", keyuri);
|
|
return (RET_SUCCESS);
|
|
}
|
|
|
|
/*
|
|
* Load key from file
|
|
*/
|
|
static int
|
|
otpkey_load(oath_key *key)
|
|
{
|
|
char keyuri[MAX_KEYURI_SIZE];
|
|
ssize_t rlen;
|
|
size_t len;
|
|
int fd;
|
|
|
|
if (verbose)
|
|
warnx("loading key from %s", keyfile);
|
|
/* read from file */
|
|
if ((fd = open(keyfile, O_RDONLY)) < 0)
|
|
return (-1);
|
|
if ((rlen = read(fd, keyuri, sizeof keyuri - 1)) < 0) {
|
|
warn("%s", keyfile);
|
|
close(fd);
|
|
return (-1);
|
|
}
|
|
close(fd);
|
|
/* cut off at the first newline character */
|
|
for (len = 0; len < (size_t)rlen; len++)
|
|
if (keyuri[len] == '\n')
|
|
break;
|
|
while (len > 0 && is_ws(keyuri[len - 1]))
|
|
len--;
|
|
keyuri[len] = '\0';
|
|
/* check and parse */
|
|
if (strlcmp("otpauth://", keyuri, 10) != 0) {
|
|
warnx("%s: unrecognized key file format", keyfile);
|
|
return (RET_ERROR);
|
|
}
|
|
if (oath_key_from_uri(key, keyuri) != 0) {
|
|
warnx("%s: invalid key URI", keyfile);
|
|
if (errno == EACCES || errno == EPERM)
|
|
return (RET_UNAUTH);
|
|
return (RET_ERROR);
|
|
}
|
|
return (RET_SUCCESS);
|
|
}
|
|
|
|
/*
|
|
* Save key to file
|
|
* XXX liboath should take care of this for us
|
|
*/
|
|
static int
|
|
otpkey_save(oath_key *key)
|
|
{
|
|
char keyuri[MAX_KEYURI_SIZE];
|
|
ssize_t wlen;
|
|
size_t len;
|
|
int fd;
|
|
|
|
if (verbose)
|
|
warnx("saving key to %s", keyfile);
|
|
len = sizeof keyuri;
|
|
if (oath_key_to_uri(key, keyuri, &len) != 0) {
|
|
warnx("failed to convert key to otpauth URI");
|
|
return (-1);
|
|
}
|
|
keyuri[len - 1] = '\n';
|
|
if ((fd = open(keyfile, O_WRONLY|O_CREAT|O_TRUNC, 0600)) < 0) {
|
|
warn("%s", keyfile);
|
|
return (-1);
|
|
}
|
|
if ((wlen = write(fd, keyuri, len)) < 0 || (size_t)wlen < len) {
|
|
warn("%s", keyfile);
|
|
close(fd);
|
|
return (-1);
|
|
}
|
|
close(fd);
|
|
return (0);
|
|
}
|
|
|
|
/*
|
|
* Generate a new key
|
|
*/
|
|
static int
|
|
otpkey_genkey(int argc, char *argv[])
|
|
{
|
|
oath_key key;
|
|
oath_mode mode;
|
|
int ret;
|
|
|
|
if (argc != 1)
|
|
return (RET_USAGE);
|
|
if ((mode = oath_mode_value(argv[0])) == om_undef)
|
|
return (RET_USAGE);
|
|
if (!isroot && !issameuser)
|
|
return (RET_UNAUTH);
|
|
if (oath_key_create(&key, mode, oh_undef, 0, "", user, NULL, 0) != 0)
|
|
return (RET_ERROR);
|
|
ret = readonly ? otpkey_print_uri(&key) : otpkey_save(&key);
|
|
oath_key_destroy(&key);
|
|
return (ret);
|
|
}
|
|
|
|
/*
|
|
* Set a user's key
|
|
*/
|
|
static int
|
|
otpkey_setkey(int argc, char *argv[])
|
|
{
|
|
oath_key key;
|
|
int ret;
|
|
|
|
/* XXX add parameters later */
|
|
if (argc != 1)
|
|
return (RET_USAGE);
|
|
(void)argv;
|
|
if (!isroot && !issameuser)
|
|
return (RET_UNAUTH);
|
|
if (oath_key_from_uri(&key, argv[0]) != 0)
|
|
return (RET_ERROR);
|
|
ret = otpkey_save(&key);
|
|
oath_key_destroy(&key);
|
|
return (ret);
|
|
}
|
|
|
|
/*
|
|
* Print raw key in hexadecimal
|
|
*/
|
|
static int
|
|
otpkey_getkey(int argc, char *argv[])
|
|
{
|
|
oath_key key;
|
|
int ret;
|
|
|
|
if (argc != 0)
|
|
return (RET_USAGE);
|
|
(void)argv;
|
|
if (!isroot && !issameuser)
|
|
return (RET_UNAUTH);
|
|
if ((ret = otpkey_load(&key)) != RET_SUCCESS)
|
|
return (ret);
|
|
ret = otpkey_print_hex(&key);
|
|
oath_key_destroy(&key);
|
|
return (ret);
|
|
}
|
|
|
|
/*
|
|
* Print the otpauth URI for a key
|
|
*/
|
|
static int
|
|
otpkey_geturi(int argc, char *argv[])
|
|
{
|
|
oath_key key;
|
|
int ret;
|
|
|
|
if (argc != 0)
|
|
return (RET_USAGE);
|
|
(void)argv;
|
|
if (!isroot && !issameuser)
|
|
return (RET_UNAUTH);
|
|
if ((ret = otpkey_load(&key)) != RET_SUCCESS)
|
|
return (ret);
|
|
ret = otpkey_print_uri(&key);
|
|
oath_key_destroy(&key);
|
|
return (ret);
|
|
}
|
|
|
|
/*
|
|
* Check whether a given response is correct for the given keyfile.
|
|
*/
|
|
static int
|
|
otpkey_verify(int argc, char *argv[])
|
|
{
|
|
oath_key key;
|
|
unsigned long counter;
|
|
unsigned long response;
|
|
char *end;
|
|
int match, ret;
|
|
|
|
if (argc < 1)
|
|
return (RET_USAGE);
|
|
if ((ret = otpkey_load(&key)) != RET_SUCCESS)
|
|
return (ret);
|
|
response = strtoul(*argv, &end, 10);
|
|
if (end == *argv || *end != '\0')
|
|
response = UINT_MAX; /* never valid */
|
|
if (key.mode == om_hotp)
|
|
counter = key.counter;
|
|
match = otp_verify(&key, response);
|
|
if (match < 0) {
|
|
warnx("OATH error");
|
|
match = 0;
|
|
}
|
|
if (verbose) {
|
|
warnx("response %s", match ? "matched" : "did not match");
|
|
if (key.mode == om_hotp && key.counter > counter + 1)
|
|
warnx("skipped %lu codes", key.counter - counter - 1);
|
|
}
|
|
ret = match ? readonly ? RET_SUCCESS : otpkey_save(&key) : RET_FAILURE;
|
|
oath_key_destroy(&key);
|
|
return (ret);
|
|
}
|
|
|
|
/*
|
|
* Compute the current code
|
|
*/
|
|
static int
|
|
otpkey_calc(int argc, char *argv[])
|
|
{
|
|
oath_key key;
|
|
unsigned int current;
|
|
unsigned long i, n;
|
|
uintmax_t count;
|
|
char *end;
|
|
int ret;
|
|
|
|
if (argc > 1)
|
|
return (RET_USAGE);
|
|
if (argc > 0) {
|
|
n = strtoul(argv[0], &end, 10);
|
|
if (end == argv[0] || *end != '\0' || n < 1 || n > 1000)
|
|
return (RET_USAGE);
|
|
} else {
|
|
n = 1;
|
|
}
|
|
if ((ret = otpkey_load(&key)) != RET_SUCCESS)
|
|
return (ret);
|
|
for (i = 0; i < n; ++i) {
|
|
switch (key.mode) {
|
|
case om_hotp:
|
|
current = oath_hotp_current(&key);
|
|
count = key.counter;
|
|
break;
|
|
case om_totp:
|
|
current = oath_totp_current(&key);
|
|
count = key.lastused * key.timestep;
|
|
break;
|
|
default:
|
|
current = UINT_MAX;
|
|
count = 0;
|
|
}
|
|
if (current == UINT_MAX) {
|
|
warnx("OATH error");
|
|
ret = RET_ERROR;
|
|
break;
|
|
}
|
|
if (numbered)
|
|
printf("%6ju ", count);
|
|
printf("%.*d\n", (int)key.digits, current);
|
|
}
|
|
if (ret == RET_SUCCESS && !readonly)
|
|
ret = otpkey_save(&key);
|
|
oath_key_destroy(&key);
|
|
return (ret);
|
|
}
|
|
|
|
/*
|
|
* Resynchronize
|
|
*/
|
|
static int
|
|
otpkey_resync(int argc, char *argv[])
|
|
{
|
|
oath_key key;
|
|
unsigned long counter;
|
|
unsigned long response[3];
|
|
char *end;
|
|
int i, match, n, ret, w;
|
|
|
|
if (argc < 2 || argc > 3)
|
|
return (RET_USAGE);
|
|
n = argc;
|
|
for (i = 0, w = 1; i < n; ++i) {
|
|
response[i] = strtoul(argv[i], &end, 10);
|
|
if (end == argv[i] || *end != '\0')
|
|
response[i] = UINT_MAX; /* never valid */
|
|
w = w * (HOTP_WINDOW + 1);
|
|
}
|
|
w -= n;
|
|
if ((ret = otpkey_load(&key)) != RET_SUCCESS)
|
|
return (ret);
|
|
if (key.mode == om_hotp)
|
|
counter = key.counter;
|
|
match = otp_resync(&key, response, n);
|
|
if (match < 0) {
|
|
warnx("OATH error");
|
|
match = 0;
|
|
}
|
|
if (verbose) {
|
|
warnx("resynchronization %s", match ? "succeeded" : "failed");
|
|
if (counter > key.counter + 1)
|
|
warnx("skipped %lu codes", key.counter - counter);
|
|
}
|
|
ret = match ? readonly ? RET_SUCCESS : otpkey_save(&key) : RET_FAILURE;
|
|
oath_key_destroy(&key);
|
|
return (ret);
|
|
}
|
|
|
|
/*
|
|
* Print usage string and exit.
|
|
*/
|
|
static void
|
|
usage(void)
|
|
{
|
|
fprintf(stderr,
|
|
"usage: otpkey [-hnrvw] [-u user] [-k keyfile] command\n"
|
|
"\n"
|
|
"Commands:\n"
|
|
" calc [count]\n"
|
|
" Print the next code(s)\n"
|
|
" genkey hotp | totp\n"
|
|
" Generate a new key\n"
|
|
" getkey Print the key in hexadecimal form\n"
|
|
" geturi Print the key in otpauth URI form\n"
|
|
" resync code1 code2 [code3]\n"
|
|
" Resynchronize an HOTP token\n"
|
|
" setkey Generate a new key\n"
|
|
" verify code\n"
|
|
" Verify an HOTP or TOTP code\n");
|
|
exit(1);
|
|
}
|
|
|
|
int
|
|
main(int argc, char *argv[])
|
|
{
|
|
struct passwd *pw;
|
|
int opt, ret;
|
|
char *cmd;
|
|
|
|
/*
|
|
* Parse command-line options
|
|
*/
|
|
while ((opt = getopt(argc, argv, "hk:nru:vw")) != -1)
|
|
switch (opt) {
|
|
case 'k':
|
|
keyfile = optarg;
|
|
break;
|
|
case 'n':
|
|
numbered = 1;
|
|
break;
|
|
case 'r':
|
|
readonly = 1;
|
|
break;
|
|
case 'u':
|
|
user = optarg;
|
|
break;
|
|
case 'v':
|
|
++verbose;
|
|
break;
|
|
case 'w':
|
|
readonly = 0;
|
|
break;
|
|
case 'h':
|
|
default:
|
|
usage();
|
|
}
|
|
|
|
argc -= optind;
|
|
argv += optind;
|
|
|
|
if (argc-- < 1)
|
|
usage();
|
|
cmd = *argv++;
|
|
|
|
/*
|
|
* Check whether we are (really!) root.
|
|
*/
|
|
if (getuid() == 0)
|
|
isroot = 1;
|
|
|
|
/*
|
|
* If a user was specified on the command line, check whether it
|
|
* matches our real UID.
|
|
*/
|
|
if (user != NULL) {
|
|
if ((pw = getpwnam(user)) == NULL)
|
|
errx(1, "no such user");
|
|
if (getuid() == pw->pw_uid)
|
|
issameuser = 1;
|
|
}
|
|
|
|
/*
|
|
* If no user was specified on the command line, look up the user
|
|
* that corresponds to our real UID.
|
|
*/
|
|
if (user == NULL) {
|
|
if ((pw = getpwuid(getuid())) == NULL)
|
|
errx(1, "who are you?");
|
|
if (asprintf(&user, "%s", pw->pw_name) < 0)
|
|
err(1, "asprintf()");
|
|
issameuser = 1;
|
|
}
|
|
|
|
/*
|
|
* If no keyfile was specified on the command line, derive it from
|
|
* the user name.
|
|
*/
|
|
if (keyfile == NULL)
|
|
/* XXX replace with a function that searches multiple locations? */
|
|
if (asprintf(&keyfile, "/var/oath/%s.otpauth", user) < 0)
|
|
err(1, "asprintf()");
|
|
|
|
/*
|
|
* Execute the requested command
|
|
*/
|
|
if (strcmp(cmd, "help") == 0)
|
|
ret = RET_USAGE;
|
|
else if (strcmp(cmd, "calc") == 0)
|
|
ret = otpkey_calc(argc, argv);
|
|
else if (strcmp(cmd, "genkey") == 0)
|
|
ret = otpkey_genkey(argc, argv);
|
|
else if (strcmp(cmd, "getkey") == 0)
|
|
ret = otpkey_getkey(argc, argv);
|
|
else if (strcmp(cmd, "geturi") == 0 || strcmp(cmd, "uri") == 0)
|
|
ret = otpkey_geturi(argc, argv);
|
|
else if (strcmp(cmd, "resync") == 0)
|
|
ret = otpkey_resync(argc, argv);
|
|
else if (strcmp(cmd, "setkey") == 0)
|
|
ret = otpkey_setkey(argc, argv);
|
|
else if (strcmp(cmd, "verify") == 0)
|
|
ret = otpkey_verify(argc, argv);
|
|
else
|
|
ret = RET_USAGE;
|
|
|
|
/*
|
|
* Check result and act accordingly
|
|
*/
|
|
switch (ret) {
|
|
case RET_UNAUTH:
|
|
errno = EPERM;
|
|
err(1, "%s", cmd);
|
|
break;
|
|
case RET_USAGE:
|
|
usage();
|
|
break;
|
|
case RET_SUCCESS:
|
|
exit(0);
|
|
break;
|
|
case RET_FAILURE:
|
|
exit(1);
|
|
break;
|
|
case RET_ERROR:
|
|
exit(2);
|
|
break;
|
|
default:
|
|
exit(3);
|
|
break;
|
|
}
|
|
/* not reached */
|
|
exit(255);
|
|
}
|