# Copyright (c) 2015-2017, NORDUnet A/S # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # - Redistributions of source code must retain the above copyright notice, # this list of conditions and the following disclaimer. # # - 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. # # - Neither the name of the NORDUnet nor the names of its contributors may # be used to endorse or promote products derived from this software # without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT # HOLDER 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. # Number of various kinds of static state blocks to allocate. # Numbers pulled out of a hat, tune as we go. STATIC_CORE_STATE_BLOCKS = 32 STATIC_HASH_STATE_BLOCKS = 32 STATIC_HMAC_STATE_BLOCKS = 16 STATIC_PKEY_STATE_BLOCKS = 256 STATIC_KS_VOLATILE_SLOTS = 1280 LIB = libhal.a # Error checking on known control options, some of which allow the user entirely too much rope. USAGE := "usage: ${MAKE} [IO_BUS=eim|i2c|fmc] [RPC_MODE=none|server|client-simple|client-mixed] [RPC_TRANSPORT=none|loopback|serial|daemon] [MODEXP_CORE=no|yes] [HASH_CORES=no|yes] [ECDSA_CORES=no|yes]" IO_BUS ?= none RPC_MODE ?= none RPC_TRANSPORT ?= none MODEXP_CORE ?= yes HASH_CORES ?= no ECDSA_CORES ?= yes ifeq (,$(and \ $(filter none eim i2c fmc ,${IO_BUS}),\ $(filter none server client-simple client-mixed ,${RPC_MODE}),\ $(filter none loopback serial daemon ,${RPC_TRANSPORT}),\ $(filter no yes ,${MODEXP_CORE}),\ $(filter no yes ,${HASH_CORES}),\ $(filter no yes ,${ECDSA_CORES}))) $(error ${USAGE}) endif $(info Building libhal with configuration IO_BUS=${IO_BUS} RPC_MODE=${RPC_MODE} RPC_TRANSPORT=${RPC_TRANSPORT} MODEXP_CORE=${MODEXP_CORE} HASH_CORES=${HASH_CORES} ECDSA_CORES=${ECDSA_CORES}) # Whether the RSA code should use the ModExp | ModExpS6 | ModExpA7 core. ifeq "${MODEXP_CORE}" "yes" RSA_USE_MODEXP_CORE := 1 else RSA_USE_MODEXP_CORE := 0 endif # Whether the hash code should use the SHA-1 / SHA-256 / SHA-512 cores. ifeq "${HASH_CORES}" "yes" HASH_ONLY_USE_SOFT_CORES := 0 else HASH_ONLY_USE_SOFT_CORES := 1 endif # Whether the ECDSA code should use the ECDSA256 and ECDSA384 cores. ifeq "${ECDSA_CORES}" "yes" ECDSA_USE_ECDSA256_CORE := 1 ECDSA_USE_ECDSA384_CORE := 1 else ECDSA_USE_ECDSA256_CORE := 0 ECDSA_USE_ECDSA384_CORE := 0 endif # Object files to build, initialized with ones we always want. # There's a balance here between skipping files we don't strictly # need and reducing the number of unnecessary conditionals in this # makefile, so the working definition of "always want" is sometimes # just "building this is harmless even if we don't use it." OBJ += errorstrings.o hash.o asn1.o ecdsa.o rsa.o hashsig.o xdr.o slip.o OBJ += rpc_api.o rpc_hash.o uuid.o rpc_pkcs1.o crc32.o locks.o logging.o # Object files to build when we're on a platform with direct access # to our hardware (Verilog) cores. CORE_OBJ = core.o csprng.o pbkdf2.o aes_keywrap.o modexp.o mkmif.o ${IO_OBJ} # I/O bus to the FPGA # # IO_BUS = none | eim | i2c | fmc # none: No FPGA I/O bus # eim: EIM bus from Novena # i2c: Older I2C bus from Novena # fmc: FMC bus from dev-bridge and alpha boards IO_OBJ = hal_io.o ifeq "${IO_BUS}" "eim" IO_OBJ += hal_io_eim.o novena-eim.o else ifeq "${IO_BUS}" "i2c" IO_OBJ += hal_io_i2c.o else ifeq "${IO_BUS}" "fmc" IO_OBJ += hal_io_fmc.o endif # If we're building for STM32, position-independent code leads to some # hard-to-debug function pointer errors. OTOH, if we're building for Linux # (even on the Novena), we want to make it possible to build a shared library. ifneq "${IO_BUS}" "fmc" CFLAGS += -fPIC endif # The keystore code has mutated a bit with the new API, and the Makefile, # probably needs more extensive changes to track that. # # In the old world, the volatile keystore was for the client side, # while the flash and mmap keystores were for the server side (on the # Alpha and the Novena, respectively). # # In the new world, all keystores are on the server side, and the # volatile keystore is always present, to support things like PKCS #11 # "session" objects. KS_OBJ = ks.o ks_index.o ks_attribute.o ks_volatile.o ks_token.o mkm.o # RPC_MODE = none | server | client-simple | client-mixed # none: Build without RPC client, use cores directly. # server: Build for server side of RPC (HSM), use cores directly. # client-simple: Build for other host, communicate with cores via RPC server. # client-mixed: Like client-simple but do hashing locally in software and # support a local keystore (for PKCS #11 public keys, etc) # # RPC_TRANSPORT = none | loopback | serial | daemon # loopback: Communicate over loopback socket on Novena # serial: Communicate over USB in serial pass-through mode # daemon: Communicate over USB via a daemon, to arbitrate multiple clients # # Note that RPC_MODE setting also controls the RPC_CLIENT setting passed to the C # preprocessor via CFLAGS. Whatever we pass here must evaluate to an integer in # the C preprocessor: we can use symbolic names so long as they're defined as macros # in the C code, but we can't use things like C enum symbols. RPC_CLIENT_OBJ = rpc_client.o ifeq "${RPC_TRANSPORT}" "loopback" RPC_CLIENT_OBJ += rpc_client_loopback.o else ifeq "${RPC_TRANSPORT}" "serial" RPC_CLIENT_OBJ += rpc_serial.o rpc_client_serial.o else ifeq "${RPC_TRANSPORT}" "daemon" RPC_CLIENT_OBJ += rpc_client_daemon.o endif RPC_SERVER_OBJ = ${KS_OBJ} rpc_misc.o rpc_pkey.o rpc_server.o ifeq "${RPC_TRANSPORT}" "loopback" RPC_SERVER_OBJ += rpc_server_loopback.o else ifeq "${RPC_TRANSPORT}" "serial" RPC_SERVER_OBJ += rpc_server_serial.o endif ifeq "${RPC_MODE}" "none" OBJ += ${CORE_OBJ} CFLAGS += -DHAL_RSA_SIGN_USE_MODEXP=${RSA_USE_MODEXP_CORE} CFLAGS += -DHAL_ONLY_USE_SOFTWARE_HASH_CORES=${HASH_ONLY_USE_SOFT_CORES} CFLAGS += -DHAL_ECDSA_VERILOG_ECDSA256_MULTIPLIER=${ECDSA_USE_ECDSA256_CORE} CFLAGS += -DHAL_ECDSA_VERILOG_ECDSA384_MULTIPLIER=${ECDSA_USE_ECDSA384_CORE} else ifeq "${RPC_MODE}" "server" OBJ += ${CORE_OBJ} ${RPC_SERVER_OBJ} CFLAGS += -DRPC_CLIENT=RPC_CLIENT_LOCAL CFLAGS += -DHAL_RSA_SIGN_USE_MODEXP=${RSA_USE_MODEXP_CORE} CFLAGS += -DHAL_ONLY_USE_SOFTWARE_HASH_CORES=${HASH_ONLY_USE_SOFT_CORES} CFLAGS += -DHAL_ECDSA_VERILOG_ECDSA256_MULTIPLIER=${ECDSA_USE_ECDSA256_CORE} CFLAGS += -DHAL_ECDSA_VERILOG_ECDSA384_MULTIPLIER=${ECDSA_USE_ECDSA384_CORE} else ifeq "${RPC_MODE}" "client-simple" OBJ += ${RPC_CLIENT_OBJ} CFLAGS += -DRPC_CLIENT=RPC_CLIENT_REMOTE CFLAGS += -DHAL_RSA_SIGN_USE_MODEXP=0 CFLAGS += -DHAL_ONLY_USE_SOFTWARE_HASH_CORES=1 CFLAGS += -DHAL_ECDSA_VERILOG_ECDSA256_MULTIPLIER=0 CFLAGS += -DHAL_ECDSA_VERILOG_ECDSA384_MULTIPLIER=0 else ifeq "${RPC_MODE}" "client-mixed" OBJ += ${RPC_CLIENT_OBJ} CFLAGS += -DRPC_CLIENT=RPC_CLIENT_MIXED CFLAGS += -DHAL_RSA_SIGN_USE_MODEXP=0 CFLAGS += -DHAL_ONLY_USE_SOFTWARE_HASH_CORES=1 CFLAGS += -DHAL_ECDSA_VERILOG_ECDSA256_MULTIPLIER=0 CFLAGS += -DHAL_ECDSA_VERILOG_ECDSA384_MULTIPLIER=0 endif ifndef CRYPTECH_ROOT CRYPTECH_ROOT := $(abspath ../..) endif LIBTFM_SRC ?= ${CRYPTECH_ROOT}/sw/thirdparty/libtfm LIBTFM_BLD ?= ${LIBTFM_SRC} # tfm.h is a generated file, because our Makefile customizes a few # settings from the upstream libtfm distribution. Because of this, we # need to search the libtfm build directory, not the libtfm source # directory. CFLAGS += -g3 -Wall -std=c99 -Wno-strict-aliasing CFLAGS += -DHAL_STATIC_CORE_STATE_BLOCKS=${STATIC_CORE_STATE_BLOCKS} CFLAGS += -DHAL_STATIC_HASH_STATE_BLOCKS=${STATIC_HASH_STATE_BLOCKS} CFLAGS += -DHAL_STATIC_HMAC_STATE_BLOCKS=${STATIC_HMAC_STATE_BLOCKS} CFLAGS += -DHAL_STATIC_PKEY_STATE_BLOCKS=${STATIC_PKEY_STATE_BLOCKS} CFLAGS += -DHAL_STATIC_KS_VOLATILE_SLOTS=${STATIC_KS_VOLATILE_SLOTS} CFLAGS += -I${CRYPTECH_ROOT}/sw/libhal CFLAGS += -I${LIBTFM_BLD} # Enable software hash cores everywhere for now. In theory, there might be situations # where we don't want them on the HSM, but they're relatively harmless, and the bootstrap # sequence on new hardware works a lot better when we can log in before loading the FPGA. CFLAGS += -DHAL_ENABLE_SOFTWARE_HASH_CORES=1 # We used to "export CFLAGS" here, but for some reason that causes GNU # make to duplicate its value, sometimes with conflicting settings. # Weird, but this is complicated enough already, so we just pass # CFLAGS explicitly in the small number of cases where we run a # sub-make, below. #export CFLAGS export RPC_MODE all: ${LIB} ${MAKE} -C tests $@ CFLAGS='${CFLAGS}' ${MAKE} -C utils $@ CFLAGS='${CFLAGS}' client: ${MAKE} RPC_MODE=client-simple RPC_TRANSPORT=daemon mixed: ${MAKE} RPC_MODE=client-mixed RPC_TRANSPORT=daemon server: ${MAKE} RPC_MODE=server RPC_TRANSPORT=serial IO_BUS=fmc serial: ${MAKE} RPC_MODE=client-mixed RPC_TRANSPORT=serial daemon: mixed .PHONY: client mixed server serial daemon ${LIB}: ${OBJ} ${AR} rcs $@ $^ asn1.o rsa.o ecdsa.o: asn1_internal.h ecdsa.o: ecdsa_curves.h ${OBJ}: hal.h ${OBJ}: hal_internal.h ks.o ks_token.o ks_volatile.o ks_attribute.o ks_index.o: ks.h ks_token.o: last_gasp_pin_internal.h novena-eim.o hal_io_eim.o: novena-eim.h slip.o rpc_client_serial.o rpc_server_serial.o: slip_internal.h ${OBJ}: verilog_constants.h rpc_client.o rpc_server.o xdr.o: xdr_internal.h hashsig.o: hashsig.h last_gasp_pin_internal.h: ./utils/last_gasp_default_pin >$@ test: all ${MAKE} -C tests -k $@ CFLAGS='${CFLAGS}' clean: rm -f *.o ${LIB} ${MAKE} -C tests $@ CFLAGS='${CFLAGS}' ${MAKE} -C utils $@ CFLAGS='${CFLAGS}' distclean: clean rm -f TAGS tags: TAGS TAGS: *.[ch] tests/*.[ch] utils/*.[ch] etags $^ help usage: @echo ${USAGE} ss='sha1'>a478fe1
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457
490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531
/*
* test-rpc_hashsig.c
* ------------------
* Test code for RPC interface to Cryptech public key operations.
*
* Copyright (c) 2018, NORDUnet A/S
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* - 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.
*
* - Neither the name of the NORDUnet nor the names of its contributors may
* be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 COPYRIGHT
* HOLDER 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.
*/
/* Parts of this may eventually get folded into test-rpc_pkey.c,
* but for now I'd rather do it stand-alone.
*/
#include <stdio.h>
#include <stdlib.h>
#include <getopt.h>
#include <assert.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <hal.h>
#include <hashsig.h>
#include "test-hashsig.h"
#include <sys/time.h>
/* not included in my glibc, sigh... */
/* But it's a macro on *BSD including MacOS so don't conflict with that. */
#ifndef timersub
void timersub(struct timeval *a, struct timeval *b, struct timeval *res)
{
res->tv_sec = a->tv_sec - b->tv_sec;
res->tv_usec = a->tv_usec - b->tv_usec;
if (res->tv_usec < 0) {
res->tv_usec += 1000000;
--res->tv_sec;
}
if (res->tv_usec > 1000000) {
res->tv_usec -= 1000000;
++res->tv_sec;
}
}
#endif
static int debug = 0;
static int info = 0;
#define lose(...) do { printf(__VA_ARGS__); goto fail; } while (0)
static int test_hashsig_testvec_local(const hashsig_tc_t * const tc, hal_key_flags_t flags)
{
hal_error_t err;
assert(tc != NULL);
printf("Starting local hashsig test vector test\n");
uint8_t tc_keybuf[hal_hashsig_key_t_size];
hal_hashsig_key_t *tc_key = NULL;
if ((err = hal_hashsig_key_load_public_xdr(&tc_key,
tc_keybuf, sizeof(tc_keybuf),
tc->key.val, tc->key.len)) != HAL_OK)
lose("Could not load public key from test vector: %s\n", hal_error_string(err));
if ((err = hal_hashsig_verify(NULL, tc_key, tc->msg.val, tc->msg.len, tc->sig.val, tc->sig.len)) != HAL_OK)
lose("Verify failed: %s\n", hal_error_string(err));
printf("OK\n");
return 1;
fail:
return 0;
}
static int test_hashsig_testvec_remote(const hashsig_tc_t * const tc, hal_key_flags_t flags)
{
const hal_client_handle_t client = {HAL_HANDLE_NONE};
const hal_session_handle_t session = {HAL_HANDLE_NONE};
hal_pkey_handle_t public_key = {HAL_HANDLE_NONE};
hal_error_t err;
size_t len;
assert(tc != NULL);
{
flags |= HAL_KEY_FLAG_USAGE_DIGITALSIGNATURE;
printf("Starting remote hashsig test vector test, flags 0x%lx\n", (unsigned long) flags);
uint8_t tc_keybuf[hal_hashsig_key_t_size];
hal_hashsig_key_t *tc_key = NULL;
if ((err = hal_hashsig_key_load_public_xdr(&tc_key,
tc_keybuf, sizeof(tc_keybuf),
tc->key.val, tc->key.len)) != HAL_OK)
lose("Could not load public key from test vector: %s\n", hal_error_string(err));
hal_uuid_t public_name;
uint8_t public_der[hal_hashsig_public_key_to_der_len(tc_key)];
if ((err = hal_hashsig_public_key_to_der(tc_key, public_der, &len, sizeof(public_der))) != HAL_OK)
lose("Could not DER encode public key from test vector: %s\n", hal_error_string(err));
assert(len == sizeof(public_der));
if ((err = hal_rpc_pkey_load(client, session, &public_key, &public_name,
public_der, sizeof(public_der), flags)) != HAL_OK)
lose("Could not load public key into RPC: %s\n", hal_error_string(err));
if ((err = hal_rpc_pkey_verify(public_key, hal_hash_handle_none,
tc->msg.val, tc->msg.len, tc->sig.val, tc->sig.len)) != HAL_OK)
lose("Could not verify: %s\n", hal_error_string(err));
if ((err = hal_rpc_pkey_delete(public_key)) != HAL_OK)
lose("Could not delete public key: %s\n", hal_error_string(err));
printf("OK\n");
return 1;
}
fail:
if (public_key.handle != HAL_HANDLE_NONE &&
(err = hal_rpc_pkey_delete(public_key)) != HAL_OK)
printf("Warning: could not delete public key: %s\n", hal_error_string(err));
return 0;
}
static void hexdump(const char * const label, const uint8_t * const buf, const size_t len)
{
printf("%-11s ", label);
for (size_t i = 0; i < len; ++i) {
printf("%02x", buf[i]);
if ((i & 0x0f) == 0x0f) {
printf("\n");
if (i < len - 1)
printf(" ");
}
}
if ((len & 0x0f) != 0)
printf("\n");
}
static inline size_t lms_type_to_h(const lms_algorithm_t lms_type)
{
switch (lms_type) {
case lms_sha256_n32_h5: return 5;
case lms_sha256_n32_h10: return 10;
case lms_sha256_n32_h15: return 15;
case lms_sha256_n32_h20: return 20;
case lms_sha256_n32_h25: return 25;
default: return 0;
}
}
static inline size_t lmots_type_to_w(const lmots_algorithm_t lmots_type)
{
switch (lmots_type) {
case lmots_sha256_n32_w1: return 1;
case lmots_sha256_n32_w2: return 2;
case lmots_sha256_n32_w4: return 4;
case lmots_sha256_n32_w8: return 8;
default: return 0;
}
}
static inline size_t lmots_type_to_p(const lmots_algorithm_t lmots_type)
{
switch (lmots_type) {
case lmots_sha256_n32_w1: return 265;
case lmots_sha256_n32_w2: return 133;
case lmots_sha256_n32_w4: return 67;
case lmots_sha256_n32_w8: return 34;
default: return 0;
}
}
#include <xdr_internal.h>
static hal_error_t dump_hss_signature(const uint8_t * const sig, const size_t len)
{
const uint8_t *sigptr = sig;
const uint8_t * const siglim = sig + len;
hal_error_t err;
hexdump("Nspk", sigptr, 4);
uint32_t Nspk;
if ((err = hal_xdr_decode_int(&sigptr, siglim, &Nspk)) != HAL_OK) return err;
for (size_t i = 0; i < Nspk + 1; ++i) {
printf("--------------------------------------------\nsig[%lu]\n", i);
hexdump("q", sigptr, 4); sigptr += 4;
{
hexdump("lmots type", sigptr, 4);
uint32_t lmots_type;
if ((err = hal_xdr_decode_int(&sigptr, siglim, &lmots_type)) != HAL_OK) return err;
hexdump("C", sigptr, 32); sigptr += 32;
size_t p = lmots_type_to_p((const lmots_algorithm_t)lmots_type);
for (size_t j = 0; j < p; ++j) {
char label[16];
sprintf(label, "y[%lu]", j);
hexdump(label, sigptr, 32); sigptr += 32;
}
}
hexdump("lms type", sigptr, 4);
uint32_t lms_type;
if ((err = hal_xdr_decode_int(&sigptr, siglim, &lms_type)) != HAL_OK) return err;
size_t h = lms_type_to_h((const lms_algorithm_t)lms_type);
for (size_t j = 0; j < h; ++j) {
char label[16];
sprintf(label, "path[%lu]", j);
hexdump(label, sigptr, 32); sigptr += 32;
}
if (i == Nspk)
break;
printf("--------------------------------------------\npubkey[%lu]\n", i + 1);
hexdump("lms type", sigptr, 4); sigptr += 4;
hexdump("lmots type", sigptr, 4); sigptr += 4;
hexdump("I", sigptr, 16); sigptr += 16;
hexdump("T[1]", sigptr, 32); sigptr += 32;
}
if (sigptr < siglim) {
printf("--------------------------------------------\nextra\n");
hexdump("", sigptr, siglim - sigptr);
}
return HAL_OK;
}
static int test_hashsig_sign(const size_t L,
const lms_algorithm_t lms_type,
const lmots_algorithm_t lmots_type,
size_t iterations,
int save, int keep)
{
const hal_client_handle_t client = {HAL_HANDLE_NONE};
const hal_session_handle_t session = {HAL_HANDLE_NONE};
hal_pkey_handle_t private_key = {HAL_HANDLE_NONE};
hal_pkey_handle_t public_key = {HAL_HANDLE_NONE};
hal_error_t err;
size_t len;
{
char save_name[16];
if (save) {
sprintf(save_name, "L%d.lms%d.ots%d", (int)L, (int)lms_type, (int)lmots_type);
FILE *fp;
if ((fp = fopen(save_name, "wb")) == NULL)
lose("Error opening %s: %s\n", save_name, strerror(errno));
size_t len1;
if ((len1 = fwrite(tc1_msg, 1, sizeof(tc1_msg), fp)) != sizeof(tc1_msg))
lose("Wrote %lu bytes to %s, expected %lu\n", len1, save_name, sizeof(tc1_msg));
if (fclose(fp) != 0)
lose("Error closing %s: %s\n", save_name, strerror(errno));
}
hal_key_flags_t flags = HAL_KEY_FLAG_USAGE_DIGITALSIGNATURE | HAL_KEY_FLAG_TOKEN;
printf("Starting hashsig key test: L %lu, lms type %u (h=%lu), lmots type %u (w=%lu)\n",
L, lms_type, lms_type_to_h(lms_type), lmots_type, lmots_type_to_w(lmots_type));
if (info)
printf("Info: signature length %lu, lmots private key length %lu\n",
hal_hashsig_signature_len(L, lms_type, lmots_type),
hal_hashsig_lmots_private_key_len(lmots_type));
hal_uuid_t private_name, public_name;
struct timeval tv_start, tv_end, tv_diff;
size_t h = lms_type_to_h(lms_type);
if (info)
gettimeofday(&tv_start, NULL);
if ((err = hal_rpc_pkey_generate_hashsig(client, session, &private_key, &private_name,
L, lms_type, lmots_type, flags)) != HAL_OK)
lose("Could not generate hashsig private key: %s\n", hal_error_string(err));
if (info) {
gettimeofday(&tv_end, NULL);
timersub(&tv_end, &tv_start, &tv_diff);
long per_key = (tv_diff.tv_sec * 1000000 + tv_diff.tv_usec) / (L * (1 << h));
printf("Info: %ldm%ld.%03lds to generate key (%ld.%03lds per lmots key)\n",
tv_diff.tv_sec / 60, tv_diff.tv_sec % 60, tv_diff.tv_usec / 1000,
per_key / 1000000, (per_key % 1000000) / 1000);
}
uint8_t public_der[hal_rpc_pkey_get_public_key_len(private_key)];
if ((err = hal_rpc_pkey_get_public_key(private_key, public_der, &len, sizeof(public_der))) != HAL_OK)
lose("Could not DER encode public key from private key: %s\n", hal_error_string(err));
assert(len == sizeof(public_der));
if ((err = hal_rpc_pkey_load(client, session, &public_key, &public_name,
public_der, sizeof(public_der), flags)) != HAL_OK)
lose("Could not load public key into RPC: %s\n", hal_error_string(err));
if (save) {
char fn[strlen(save_name) + 5];
sprintf(fn, "%s.pub", save_name);
FILE *fp;
if ((fp = fopen(fn, "wb")) == NULL)
lose("Error opening %s: %s\n", fn, strerror(errno));
uint8_t pub[60];
if ((err = hal_hashsig_public_key_der_to_xdr(public_der, sizeof(public_der), pub, &len, sizeof(pub))) != HAL_OK)
lose("Could not XDR encode public key: %s\n", hal_error_string(err));
size_t len1;
if ((len1 = fwrite(pub, 1, len, fp)) != len)
lose("Wrote %lu bytes to %s, expected %lu\n", len1, fn, len);
if (fclose(fp) != 0)
lose("Error closing %s: %s\n", fn, strerror(errno));
}
if (iterations > 0) {
uint8_t sig[hal_hashsig_signature_len(L, lms_type, lmots_type)];
if (info)
gettimeofday(&tv_start, NULL);
int i;
for (i = 0; i < iterations; ++i) {
if ((err = hal_rpc_pkey_sign(private_key, hal_hash_handle_none,
tc1_msg, sizeof(tc1_msg), sig, &len, sizeof(sig))) == HAL_OK) {
assert(len == sizeof(sig));
if (debug) {
printf("Debug: received signature:\n");
dump_hss_signature(sig, len);
}
}
else {
if (i == (1 << (L * h)) && err == HAL_ERROR_HASHSIG_KEY_EXHAUSTED)
break;
else
lose("Could not sign (%d): %s\n", i, hal_error_string(err));
}
if (save) {
char fn[strlen(save_name) + 16];
sprintf(fn, "%s.%d.sig", save_name, i);
FILE *fp;
if ((fp = fopen(fn, "wb")) == NULL)
lose("Error opening %s: %s\n", fn, strerror(errno));
size_t len1;
if ((len1 = fwrite(sig, 1, len, fp)) != len)
lose("Wrote %lu bytes to %s, expected %lu\n", len1, fn, len);
if (fclose(fp) != 0)
lose("Error closing %s: %s\n", fn, strerror(errno));
}
}
if (info) {
gettimeofday(&tv_end, NULL);
timersub(&tv_end, &tv_start, &tv_diff);
long per_sig = (tv_diff.tv_sec * 1000000 + tv_diff.tv_usec) / i;
printf("Info: %ldm%ld.%03lds to generate %d signatures (%ld.%03lds per signature)\n",
tv_diff.tv_sec / 60, tv_diff.tv_sec % 60, tv_diff.tv_usec / 1000, i,
per_sig / 1000000, (per_sig % 1000000) / 1000);
}
if (info)
gettimeofday(&tv_start, NULL);
if ((err = hal_rpc_pkey_verify(public_key, hal_hash_handle_none,
tc1_msg, sizeof(tc1_msg), sig, len)) != HAL_OK)
lose("Could not verify: %s\n", hal_error_string(err));
if (info) {
gettimeofday(&tv_end, NULL);
timersub(&tv_end, &tv_start, &tv_diff);
printf("Info: %ldm%ld.%03lds to verify 1 signature\n",
tv_diff.tv_sec / 60, tv_diff.tv_sec % 60, tv_diff.tv_usec / 1000);
}
}
if (!keep) {
if ((err = hal_rpc_pkey_delete(private_key)) != HAL_OK)
lose("Could not delete private key: %s\n", hal_error_string(err));
}
if ((err = hal_rpc_pkey_delete(public_key)) != HAL_OK)
lose("Could not delete public key: %s\n", hal_error_string(err));
printf("OK\n");
return 1;
}
fail:
if (private_key.handle != HAL_HANDLE_NONE &&
(err = hal_rpc_pkey_delete(private_key)) != HAL_OK)
printf("Warning: could not delete private key: %s\n", hal_error_string(err));
if (public_key.handle != HAL_HANDLE_NONE &&
(err = hal_rpc_pkey_delete(public_key)) != HAL_OK)
printf("Warning: could not delete public key: %s\n", hal_error_string(err));
return 0;
}
static int read_sig(char *fn)
{
{
FILE *fp;
if ((fp = fopen(fn, "rb")) == NULL)
lose("Error opening %s: %s\n", fn, strerror(errno));
struct stat statbuf;
if (stat(fn, &statbuf) != 0)
lose("Error statting %s: %s\n", fn, strerror(errno));
uint8_t sig[statbuf.st_size];
size_t len;
if ((len = fread(sig, 1, sizeof(sig), fp)) != sizeof(sig))
lose("Read %lu bytes from %s, expected %lu\n", len, fn, sizeof(sig));
if (fclose(fp) != 0)
lose("Error closing %s: %s\n", fn, strerror(errno));
hal_error_t err;
if ((err = dump_hss_signature(sig, len)) != HAL_OK)
lose("Error parsing signature: %s\n", hal_error_string(err));
}
return 1;
fail:
return 0;
}
int main(int argc, char *argv[])
{
const hal_client_handle_t client = {HAL_HANDLE_NONE};
char *pin = "fnord";
int do_default = 1;
int do_testvec = 0;
size_t iterations = 1;
size_t L_lo = 0, L_hi = 0;
size_t lms_lo = 5, lms_hi = 0;
size_t lmots_lo = 3, lmots_hi = 0;
int save = 0, keep = 0;
char *p;
hal_error_t err;
int ok = 1;
char usage[] = "\
Usage: %s [-d] [-i] [-p pin] [-t] [-L n] [-l n] [-o n] [-n n] [-s] [-r file]\n\
-d: enable debugging - hexdump signatures\n\
-i: enable informational messages - runtimes and signature lengths\n\
-p: user PIN\n\
-t: verify test vectors\n\
-L: number of levels in the HSS scheme (1..8)\n\
-l: LMS type (5..9)\n\
-o: LM-OTS type (1..4)\n\
-n: number of signatures to generate (0..'max')\n\
-s: save generated public key and signatures\n\
-k: keep (don't delete) the generated keys on the hsm\n\
-r: read and pretty-print a saved signature file\n\
Numeric arguments can be a single number or a range, e.g. '1..4'\n";
int opt;
while ((opt = getopt(argc, argv, "ditp:L:l:o:n:skr:h?")) != -1) {
switch (opt) {
case 'd':
debug = 1;
break;
case 'i':
info = 1;
break;
case 't':
do_testvec = 1;
do_default = 0;
break;
case 'p':
pin = optarg;
break;
case 'n':
if (strcmp(optarg, "max") == 0)
iterations = (size_t)-1;
else
iterations = (size_t)atoi(optarg);
do_default = 0;
break;
case 'L':
if ((p = strtok(optarg, ".")) != NULL)
L_lo = (size_t)atoi(p);
if ((p = strtok(NULL, ".")) != NULL)
L_hi = (size_t)atoi(p);
do_default = 0;
break;
case 'l':
if ((p = strtok(optarg, ".")) != NULL)
lms_lo = (size_t)atoi(p);
if ((p = strtok(NULL, ".")) != NULL)
lms_hi = (size_t)atoi(p);
do_default = 0;
break;
case 'o':
if ((p = strtok(optarg, ".")) != NULL)
lmots_lo = (size_t)atoi(p);
if ((p = strtok(NULL, ".")) != NULL)
lmots_hi = (size_t)atoi(p);
do_default = 0;
break;
case's':
save = 1;
break;
case 'k':
keep = 1;
break;
case 'r':
ok &= read_sig(optarg);
do_default = 0;
break;
case 'h':
case '?':
fprintf(stdout, usage, argv[0]);
exit(EXIT_SUCCESS);
default:
fprintf(stderr, usage, argv[0]);
exit(EXIT_FAILURE);
}
}
if (do_default) {
do_testvec = 1;
L_lo = 1;
}
if (L_hi < L_lo) L_hi = L_lo;
if (lms_hi < lms_lo) lms_hi = lms_lo;
if (lmots_hi < lmots_lo) lmots_hi = lmots_lo;
if ((err = hal_rpc_client_init()) != HAL_OK)
printf("Warning: Trouble initializing RPC client: %s\n", hal_error_string(err));
if ((err = hal_rpc_login(client, HAL_USER_NORMAL, pin, strlen(pin))) != HAL_OK)
printf("Warning: Trouble logging into HSM: %s\n", hal_error_string(err));
if (do_testvec) {
for (int i = 0; i < (sizeof(hashsig_tc)/sizeof(*hashsig_tc)); i++)
ok &= test_hashsig_testvec_local(&hashsig_tc[i], 0);
for (int i = 0; i < (sizeof(hashsig_tc)/sizeof(*hashsig_tc)); i++)
for (int j = 0; j < 2; j++)
ok &= test_hashsig_testvec_remote(&hashsig_tc[i], j * HAL_KEY_FLAG_TOKEN);
}
/* signing/performance tests: run with -i */
/* A single test would be of the form '-L 2 -l 5 -o 3 -n 1' */
/* A range test of just keygen would be of the form '-o 1..4 -n 0' */
/* A test to key exhaustion would be of the form '-n max' */
if (L_lo > 0) {
for (size_t L = L_lo; L <= L_hi; ++L) {
for (lms_algorithm_t lms_type = lms_lo; lms_type <= lms_hi; ++lms_type) {
for (lmots_algorithm_t lmots_type = lmots_lo; lmots_type <= lmots_hi; ++lmots_type) {
ok &= test_hashsig_sign(L, lms_type, lmots_type, iterations, save, keep);
}
}
}
}
if ((err = hal_rpc_logout(client)) != HAL_OK)
printf("Warning: Trouble logging out of HSM: %s\n", hal_error_string(err));
if ((err = hal_rpc_client_close()) != HAL_OK)
printf("Warning: Trouble shutting down RPC client: %s\n", hal_error_string(err));
return !ok;
}