diff --git a/bash-completion/p11-kit b/bash-completion/p11-kit index 550fbdbf..00dd694c 100644 --- a/bash-completion/p11-kit +++ b/bash-completion/p11-kit @@ -10,7 +10,7 @@ _p11-kit() COMPREPLY=( $(compgen -W "$opts" -- "$cur") ) return elif [[ $cword -eq 1 ]]; then - local commands='export-object delete-object list-objects add-profile delete-profile list-profiles list-modules print-config extract server remote' + local commands='generate-keypair export-object delete-object list-objects add-profile delete-profile list-profiles list-modules print-config extract server remote' COMPREPLY=( $(compgen -W "$commands" -- "$cur") ) fi } && diff --git a/common/compat.c b/common/compat.c index 4e0c89c1..3bdf05a1 100644 --- a/common/compat.c +++ b/common/compat.c @@ -1051,3 +1051,13 @@ p11_ascii_toupper (int c) return 'A' + (c - 'a'); return c; } + +bool +p11_ascii_strcaseeq (const char *s1, + const char *s2) +{ + while (p11_ascii_tolower (*s1) == p11_ascii_tolower (*s2++)) + if (*s1++ == '\0') + return true; + return !(p11_ascii_tolower (*s1) - p11_ascii_tolower (*--s2)); +} diff --git a/common/compat.h b/common/compat.h index 643e7c8a..14092b0b 100644 --- a/common/compat.h +++ b/common/compat.h @@ -394,11 +394,14 @@ int isatty (int fd); #endif -void p11_strerror_r (int errnum, - char *buf, - size_t buflen); +void p11_strerror_r (int errnum, + char *buf, + size_t buflen); -int p11_ascii_tolower (int c); -int p11_ascii_toupper (int c); +int p11_ascii_tolower (int c); +int p11_ascii_toupper (int c); + +bool p11_ascii_strcaseeq (const char *s1, + const char *s2); #endif /* __COMPAT_H__ */ diff --git a/doc/manual/p11-kit.xml b/doc/manual/p11-kit.xml index 42e1336b..b323d1c3 100644 --- a/doc/manual/p11-kit.xml +++ b/doc/manual/p11-kit.xml @@ -41,6 +41,9 @@ p11-kit delete-object ... + + p11-kit generate-keypair ... + p11-kit list-profiles ... @@ -140,6 +143,44 @@ $ p11-kit delete-object pkcs11:token + + Generate Key-pair + + Generate key-pair on a PKCS#11 token. + + + $ p11-kit generate-keypair [--label=label] --type=algorithm {--bits=n|--curve=name} pkcs11:token + + + Generate private-public key-pair of given type on specified PKCS#11 token. + Should be used together with --type option and one of --bits or --curve options. + + + + + Assigns label to the generated key-pair objects. + + + + Specify the type of keys to generate. + Supported values are rsa, ecdsa, ed25519. + This option is required. + + + + Specify the number of bits for the key-pair generation. + Cannot be used together with --curve option. + + + + Specify an elliptic curve for the key-pair generation. + Supported values are secp256r1, secp384r1, secp521r1. + Cannot be used together with --bits option. + + + + + List Profiles diff --git a/p11-kit/Makefile.am b/p11-kit/Makefile.am index 8926fcb7..23a16cd4 100644 --- a/p11-kit/Makefile.am +++ b/p11-kit/Makefile.am @@ -267,6 +267,7 @@ p11_kit_p11_kit_SOURCES = \ p11-kit/delete-object.c \ p11-kit/delete-profile.c \ p11-kit/export-object.c \ + p11-kit/generate-keypair.c \ p11-kit/list-objects.c \ p11-kit/list-profiles.c \ p11-kit/lists.c \ @@ -292,6 +293,7 @@ p11_kit_p11_kit_testable_SOURCES = \ p11-kit/delete-object.c \ p11-kit/delete-profile.c \ p11-kit/export-object.c \ + p11-kit/generate-keypair.c \ p11-kit/list-objects.c \ p11-kit/list-profiles.c \ p11-kit/lists.c \ @@ -306,6 +308,7 @@ p11_kit_p11_kit_testable_LDADD = \ $(NULL) p11_kit_p11_kit_testable_CFLAGS = \ + -DP11_KIT_TESTABLE \ $(COMMON_CFLAGS) \ $(NULL) diff --git a/p11-kit/generate-keypair.c b/p11-kit/generate-keypair.c new file mode 100644 index 00000000..865ecc87 --- /dev/null +++ b/p11-kit/generate-keypair.c @@ -0,0 +1,450 @@ +/* + * Copyright (c) 2023, Red Hat Inc. + * + * 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. + * * The names of contributors to this software may not 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 OWNER 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. + * + * Author: Zoltan Fridrich + */ + +#include "config.h" + +#include "attrs.h" +#include "buffer.h" +#include "compat.h" +#include "debug.h" +#include "iter.h" +#include "message.h" +#include "tool.h" + +#ifdef P11_KIT_TESTABLE +#include "mock.h" +#endif + +#include +#include +#include +#include + +#ifdef ENABLE_NLS +#include +#define _(x) dgettext(PACKAGE_NAME, x) +#else +#define _(x) (x) +#endif + +int +p11_kit_generate_keypair (int argc, + char *argv[]); + +static bool +get_mechanism (CK_MECHANISM *m, + const char *type) +{ +#ifdef P11_KIT_TESTABLE + if (p11_ascii_strcaseeq (type, "mock")) { + m->mechanism = CKM_MOCK_GENERATE; + m->pParameter = "generate"; + m->ulParameterLen = 9; + return true; + } +#endif + if (p11_ascii_strcaseeq (type, "rsa")) + m->mechanism = CKM_RSA_PKCS_KEY_PAIR_GEN; + else if (p11_ascii_strcaseeq (type, "ecdsa")) + m->mechanism = CKM_ECDSA_KEY_PAIR_GEN; + else if (p11_ascii_strcaseeq (type, "ed25519")) + m->mechanism = CKM_EC_EDWARDS_KEY_PAIR_GEN; + else + return false; + + m->pParameter = NULL_PTR; + m->ulParameterLen = 0; + + return true; +} + +static bool +get_ec_params (const char *curve, + p11_buffer *ec_params) +{ + static const uint8_t OID_SECP256R1[] = { 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, 0x3d, 0x03, 0x01, 0x07 }; + static const uint8_t OID_SECP384R1[] = { 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22 }; + static const uint8_t OID_SECP521R1[] = { 0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x23 }; + const uint8_t *data = NULL; + size_t len = 0; + bool ok = true; + + if (p11_ascii_strcaseeq (curve, "secp256r1")) { + data = OID_SECP256R1; + len = sizeof (OID_SECP256R1); + } else if (p11_ascii_strcaseeq (curve, "secp384r1")) { + data = OID_SECP384R1; + len = sizeof (OID_SECP384R1); + } else if (p11_ascii_strcaseeq (curve, "secp521r1")) { + data = OID_SECP521R1; + len = sizeof (OID_SECP521R1); + } else + ok = false; + + p11_buffer_init_full (ec_params, (void *)data, len, 0, NULL, NULL); + return ok; +} + +static bool +check_args (CK_MECHANISM_TYPE type, + CK_ULONG bits, + const p11_buffer *ec_params) +{ + if (type == CKA_INVALID) { + p11_message (_("no type specified")); + return false; + } + + switch (type) { +#ifdef P11_KIT_TESTABLE + case CKM_MOCK_GENERATE: + break; +#endif + case CKM_RSA_PKCS_KEY_PAIR_GEN: + if (bits == 0) { + p11_message (_("no bits specified")); + return false; + } + break; + case CKM_ECDSA_KEY_PAIR_GEN: + case CKM_EC_EDWARDS_KEY_PAIR_GEN: + if (ec_params->data == NULL) { + p11_message (_("no curve specified")); + return false; + } + break; + default: + p11_message (_("unkwnown mechanism type in %s"), __func__); + return false; + } + + if (bits != 0 && ec_params->data != NULL) { + p11_message (_("both %s and %s cannot be specified at once"), "--bits", "--curve"); + return false; + } + + return true; +} + +static bool +get_templates (const char *label, + CK_MECHANISM_TYPE type, + const CK_ULONG *bits, + const p11_buffer *ec_params, + CK_ATTRIBUTE *pubkey, + CK_ULONG *pubkey_len, + CK_ATTRIBUTE *privkey, + CK_ULONG *privkey_len) +{ + static const CK_BBOOL TVAL = CK_TRUE; + static const CK_BBOOL FVAL = CK_FALSE; + int i = 0, j = 0; + + if (label != NULL) { + pubkey[i].type = privkey[j].type = CKA_LABEL; + pubkey[i].pValue = privkey[j].pValue = (void *)label; + pubkey[i].ulValueLen = privkey[j].ulValueLen = strlen (label); + ++i; ++j; + } + + pubkey[i].type = privkey[j].type = CKA_TOKEN; + pubkey[i].pValue = privkey[j].pValue = (void *)&TVAL; + pubkey[i].ulValueLen = privkey[j].ulValueLen = sizeof (TVAL); + ++i; ++j; + + pubkey[i].type = privkey[j].type = CKA_PRIVATE; + pubkey[i].pValue = (void *)&FVAL; privkey[j].pValue = (void *)&TVAL; + pubkey[i].ulValueLen = privkey[j].ulValueLen = sizeof (TVAL); + ++i; ++j; + + privkey[j].type = CKA_SIGN; + privkey[j].pValue = (void *)&TVAL; + privkey[j].ulValueLen = sizeof (TVAL); + ++j; + + pubkey[i].type = CKA_VERIFY; + pubkey[i].pValue = (void *)&TVAL; + pubkey[i].ulValueLen = sizeof (TVAL); + ++i; + + switch (type) { +#ifdef P11_KIT_TESTABLE + case CKM_MOCK_GENERATE: + break; +#endif + case CKM_RSA_PKCS_KEY_PAIR_GEN: + privkey[j].type = CKA_DECRYPT; + privkey[j].pValue = (void *)&TVAL; + privkey[j].ulValueLen = sizeof (TVAL); + ++j; + + pubkey[i].type = CKA_ENCRYPT; + pubkey[i].pValue = (void *)&TVAL; + pubkey[i].ulValueLen = sizeof (TVAL); + ++i; + + pubkey[i].type = CKA_MODULUS_BITS; + pubkey[i].pValue = (void *)bits; + pubkey[i].ulValueLen = sizeof (*bits); + ++i; + break; + case CKM_ECDSA_KEY_PAIR_GEN: + case CKM_EC_EDWARDS_KEY_PAIR_GEN: + pubkey[i].type = CKA_EC_PARAMS; + pubkey[i].pValue = ec_params->data; + pubkey[i].ulValueLen = ec_params->len; + ++i; + break; + default: + return false; + } + + *pubkey_len = i; + *privkey_len = j; + + return true; +} + +static int +generate_keypair (const char *token_str, + const char *label, + CK_MECHANISM *mechanism, + CK_ULONG bits, + const p11_buffer *ec_params) +{ + int ret = 1; + CK_RV rv; + const char *pin = NULL; + P11KitUri *uri = NULL; + P11KitIter *iter = NULL; + CK_FUNCTION_LIST **modules = NULL; + CK_FUNCTION_LIST *module = NULL; + CK_SESSION_HANDLE session = 0; + CK_SLOT_ID slot = 0; + CK_OBJECT_HANDLE pubkey_obj, privkey_obj; + CK_ATTRIBUTE pubkey[16], privkey[16]; + CK_ULONG pubkey_len, privkey_len; + + if (!get_templates (label, mechanism->mechanism, &bits, ec_params, + pubkey, &pubkey_len, privkey, &privkey_len)) { + p11_message (_("failed to create key templates")); + goto cleanup; + } + + uri = p11_kit_uri_new (); + if (uri == NULL) { + p11_message (_("failed to allocate memory for URI")); + goto cleanup; + } + + if (p11_kit_uri_parse (token_str, P11_KIT_URI_FOR_TOKEN, uri) != P11_KIT_URI_OK) { + p11_message (_("failed to parse the token URI")); + goto cleanup; + } + + modules = p11_kit_modules_load_and_initialize (0); + if (modules == NULL) { + p11_message (_("failed to load and initialize modules")); + goto cleanup; + } + + iter = p11_kit_iter_new (uri, P11_KIT_ITER_WITH_TOKENS | P11_KIT_ITER_WITHOUT_OBJECTS); + if (iter == NULL) { + p11_message (_("failed to initialize iterator")); + goto cleanup; + } + + p11_kit_iter_begin (iter, modules); + rv = p11_kit_iter_next (iter); + if (rv != CKR_OK) { + p11_message (_("failed to find the token: %s"), p11_kit_strerror (rv)); + goto cleanup; + } + + module = p11_kit_iter_get_module (iter); + if (module == NULL) { + p11_message (_("failed to obtain module")); + goto cleanup; + } + + slot = p11_kit_iter_get_slot (iter); + if (slot == 0) { + p11_message (_("failed to obtain slot")); + goto cleanup; + } + + rv = module->C_OpenSession (slot, CKF_SERIAL_SESSION | CKF_RW_SESSION, NULL, NULL, &session); + if (rv != CKR_OK) { + p11_message (_("failed to open session: %s"), p11_kit_strerror (rv)); + goto cleanup; + } + + pin = p11_kit_uri_get_pin_value (uri); + if (pin != NULL) { + rv = module->C_Login (session, CKU_USER, (unsigned char *)pin, strlen (pin)); + if (rv != CKR_OK) { + p11_message (_("failed to login: %s"), p11_kit_strerror (rv)); + goto cleanup; + } + } + + rv = module->C_GenerateKeyPair (session, mechanism, pubkey, pubkey_len, + privkey, privkey_len, &pubkey_obj, &privkey_obj); + if (rv != CKR_OK) { + p11_message (_("key-pair generation failed: %s"), p11_kit_strerror (rv)); + goto cleanup; + } + + ret = 0; + +cleanup: + if (session != 0) + module->C_CloseSession (session); + p11_kit_iter_free (iter); + p11_kit_uri_free (uri); + if (modules != NULL) + p11_kit_modules_finalize_and_release (modules); + + return ret; +} + +int +p11_kit_generate_keypair (int argc, + char *argv[]) +{ + int opt, ret = 2; + char *label = NULL; + CK_ULONG bits = 0; + p11_buffer ec_params; + CK_MECHANISM mechanism = { CKA_INVALID, NULL_PTR, 0 }; + + enum { + opt_verbose = 'v', + opt_quiet = 'q', + opt_help = 'h', + opt_label = 'l', + opt_type = 't', + opt_bits = 'b', + opt_curve = 'c', + }; + + struct option options[] = { + { "verbose", no_argument, NULL, opt_verbose }, + { "quiet", no_argument, NULL, opt_quiet }, + { "help", no_argument, NULL, opt_help }, + { "label", required_argument, NULL, opt_label }, + { "type", required_argument, NULL, opt_type }, + { "bits", required_argument, NULL, opt_bits }, + { "curve", required_argument, NULL, opt_curve }, + { 0 }, + }; + + p11_tool_desc usages[] = { + { 0, "usage: p11-kit generate-keypair [--label=