123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- /* SPDX-License-Identifier: BSD-3-Clause */
- #include <string.h>
- #include "files.h"
- #include "log.h"
- #include "object.h"
- #include "tpm2.h"
- #include "tpm2_tool.h"
- #include "tpm2_auth_util.h"
- #include "tpm2_options.h"
- typedef struct tpm_ecephemeral_ctx tpm_ecephemeral_ctx;
- struct tpm_ecephemeral_ctx {
- struct {
- const char *ctx_path;
- const char *auth_str;
- tpm2_loaded_object object;
- } signing_key;
- char *basepoint_x_coordinate_data_path;
- char *basepoint_y_data_path;
- char *eccpoint_M_data_path;
- char *eccpoint_K_data_path;
- char *eccpoint_L_data_path;
- char *eccpoint_E_data_path;
- char *commit_counter_path;
- TPM2B_ECC_POINT P1;
- TPM2B_SENSITIVE_DATA s2;
- TPM2B_ECC_PARAMETER y2;
- TPM2B_ECC_POINT *K;
- TPM2B_ECC_POINT *L;
- TPM2B_ECC_POINT *E;
- uint16_t counter;
- };
- static tpm_ecephemeral_ctx ctx;
- static bool on_option(char key, char *value) {
- switch (key) {
- case 'p':
- ctx.signing_key.auth_str = value;
- break;
- case 'c':
- ctx.signing_key.ctx_path = value;
- break;
- case 0:
- ctx.basepoint_y_data_path = value;
- break;
- case 1:
- ctx.eccpoint_M_data_path = value;
- break;
- case 2:
- ctx.eccpoint_K_data_path = value;
- break;
- case 3:
- ctx.eccpoint_L_data_path = value;
- break;
- case 'u':
- ctx.eccpoint_E_data_path = value;
- break;
- case 't':
- ctx.commit_counter_path = value;
- break;
- };
- return true;
- }
- static bool on_args(int argc, char **argv) {
- if (argc > 1) {
- LOG_ERR("Specify single argument with file input containing the "
- "octet array used to derive x-coordinate of a base point");
- return false;
- }
- ctx.basepoint_x_coordinate_data_path = strcmp("-", argv[0]) ? argv[0] : NULL;
- return files_load_bytes_from_buffer_or_file_or_stdin(NULL,
- ctx.basepoint_x_coordinate_data_path, &ctx.s2.size, ctx.s2.buffer);
- }
- static bool tpm2_tool_onstart(tpm2_options **opts) {
- static struct option topts[] = {
- { "auth", required_argument, NULL, 'p' },
- { "context", required_argument, NULL, 'c' },
- { "basepoint-y", required_argument, NULL, 0 },
- { "eccpoint-P", required_argument, NULL, 1 },
- { "eccpoint-K", required_argument, NULL, 2 },
- { "eccpoint-L", required_argument, NULL, 3 },
- { "public", required_argument, NULL, 'u' },
- { "counter", required_argument, NULL, 't' },
- };
- *opts = tpm2_options_new("p:c:t:u:", ARRAY_LEN(topts), topts,
- on_option, on_args, 0);
- return *opts != NULL;
- }
- static tool_rc check_options(void) {
- if (!ctx.signing_key.ctx_path) {
- LOG_ERR("Specify a signing key");
- return tool_rc_option_error;
- }
- if (ctx.basepoint_y_data_path && !ctx.basepoint_x_coordinate_data_path) {
- LOG_ERR("Specify parameter data for basepoint X coordinate derivation");
- return tool_rc_option_error;
- }
- return tool_rc_success;
- }
- static tool_rc process_inputs(ESYS_CONTEXT *ectx) {
- tool_rc rc = tpm2_util_object_load_auth(ectx, ctx.signing_key.ctx_path,
- ctx.signing_key.auth_str, &ctx.signing_key.object, false,
- TPM2_HANDLES_FLAGS_TRANSIENT|TPM2_HANDLES_FLAGS_PERSISTENT);
- if (rc != tool_rc_success) {
- return rc;
- }
- bool result = true;
- if (ctx.basepoint_x_coordinate_data_path) {
- result = files_load_ecc_point(ctx.eccpoint_M_data_path, &ctx.P1);
- }
- if (!result) {
- LOG_ERR("Failed to load input ECC point P1");
- return tool_rc_general_error;
- }
- if (ctx.basepoint_y_data_path) {
- result = files_load_ecc_parameter(ctx.basepoint_y_data_path, &ctx.y2);
- }
- if (!result) {
- LOG_ERR("Failed to load input ECC parameter y2");
- return tool_rc_general_error;
- }
- return tool_rc_success;
- }
- static tool_rc process_outputs(void) {
- bool result = files_save_ecc_point(ctx.K, ctx.eccpoint_K_data_path);
- if (!result) {
- LOG_ERR("Failed to write out the ECC point K");
- return tool_rc_general_error;
- }
- result = files_save_ecc_point(ctx.L, ctx.eccpoint_L_data_path);
- if (!result) {
- LOG_ERR("Failed to write out the ECC point L");
- return tool_rc_general_error;
- }
- result = files_save_ecc_point(ctx.E, ctx.eccpoint_E_data_path);
- if (!result) {
- LOG_ERR("Failed to write out the ECC point E");
- return tool_rc_general_error;
- }
- FILE *fp = fopen(ctx.commit_counter_path, "wb");
- result = files_write_16(fp, ctx.counter);
- fclose(fp);
- if (!result) {
- LOG_ERR("Failed to write out the ECC commit count");
- return tool_rc_general_error;
- }
- return tool_rc_success;
- }
- static tool_rc tpm2_tool_onrun(ESYS_CONTEXT *ectx, tpm2_option_flags flags) {
- UNUSED(flags);
- // Check input options and arguments
- tool_rc rc = check_options();
- if (rc != tool_rc_success) {
- return rc;
- }
- // Process inputs
- rc = process_inputs(ectx);
- if (rc != tool_rc_success) {
- return rc;
- }
- // ESAPI call
- rc = tpm2_commit(ectx, &ctx.signing_key.object, &ctx.P1, &ctx.s2, &ctx.y2,
- &ctx.K, &ctx.L, &ctx.E, &ctx.counter);
- if (rc != tool_rc_success) {
- return rc;
- }
- // Process outputs
- rc = process_outputs();
- return rc;
- }
- // Register this tool with tpm2_tool.c
- TPM2_TOOL_REGISTER("commit", tpm2_tool_onstart, tpm2_tool_onrun, NULL, NULL)
|