123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- /* SPDX-License-Identifier: BSD-3-Clause */
- #include <stdlib.h>
- #include "files.h"
- #include "tpm2.h"
- #include "tpm2_tool.h"
- #include "tpm2_nv_util.h"
- #include "tpm2_options.h"
- #include "tpm2_policy.h"
- typedef struct tpm_policynv_ctx tpm_policynv_ctx;
- struct tpm_policynv_ctx {
- struct {
- const char *ctx_path;
- const char *auth_str;
- tpm2_loaded_object object;
- } auth_hierarchy;
- TPM2_HANDLE nv_index;
- const char *policy_digest_path;
- const char *session_path;
- tpm2_session *session;
- TPM2B_OPERAND operand_b;
- UINT16 offset;
- TPM2_EO operation;
- char *cp_hash_path;
- };
- static tpm_policynv_ctx ctx = {
- .operand_b = { .size = BUFFER_SIZE(TPM2B_OPERAND, buffer) }
- };
- static bool on_arg(int argc, char **argv) {
- switch (argc) {
- case 2:
- break;
- default:
- goto on_arg_error;
- }
- uint8_t argv_index_ctr = argc;
- do {
- argv_index_ctr--;
- if (!strcmp(argv[argv_index_ctr], "eq")) {
- ctx.operation = TPM2_EO_EQ;
- } else if (!strcmp(argv[argv_index_ctr], "neq")) {
- ctx.operation = TPM2_EO_NEQ;
- } else if (!strcmp(argv[argv_index_ctr], "sgt")) {
- ctx.operation = TPM2_EO_SIGNED_GT;
- } else if (!strcmp(argv[argv_index_ctr], "ugt")) {
- ctx.operation = TPM2_EO_UNSIGNED_GT;
- } else if (!strcmp(argv[argv_index_ctr], "slt")) {
- ctx.operation = TPM2_EO_SIGNED_LT;
- } else if (!strcmp(argv[argv_index_ctr], "ult")) {
- ctx.operation = TPM2_EO_UNSIGNED_LT;
- } else if (!strcmp(argv[argv_index_ctr], "sge")) {
- ctx.operation = TPM2_EO_SIGNED_GE;
- } else if (!strcmp(argv[argv_index_ctr], "uge")) {
- ctx.operation = TPM2_EO_UNSIGNED_GE;
- } else if (!strcmp(argv[argv_index_ctr], "sle")) {
- ctx.operation = TPM2_EO_SIGNED_LE;
- } else if (!strcmp(argv[argv_index_ctr], "ule")) {
- ctx.operation = TPM2_EO_UNSIGNED_LE;
- } else if (!strcmp(argv[argv_index_ctr], "bs")) {
- ctx.operation = TPM2_EO_BITSET;
- } else if (!strcmp(argv[argv_index_ctr], "bc")) {
- ctx.operation = TPM2_EO_BITCLEAR;
- } else {
- // Process it as NV index instead
- /*
- * Use the index as an authorization hierarchy If the user doesn't specify
- */
- if (!ctx.auth_hierarchy.ctx_path) {
- ctx.auth_hierarchy.ctx_path = argv[argv_index_ctr];
- }
- return on_arg_nv_index( 1, argv, &ctx.nv_index); //Only 1 arg for NV index
- }
- } while(argv_index_ctr > 0); // Loop to iterate through the two arguments
- /*
- * Invalid argument specified
- */
- on_arg_error:
- LOG_ERR("Specify 2 arguments - NV-Index and Comparison-Operartion");
- return false;
- }
- static bool on_option(char key, char *value) {
- bool result = false;
- char *input_file;
- switch (key) {
- case 'C':
- ctx.auth_hierarchy.ctx_path = value;
- break;
- case 'P':
- ctx.auth_hierarchy.auth_str = value;
- break;
- case 'L':
- ctx.policy_digest_path = value;
- break;
- case 'S':
- ctx.session_path = value;
- break;
- case 'i':
- input_file = strcmp("-", value) ? value : NULL;
- if (input_file) {
- result = files_get_file_size_path(value,
- (long unsigned *) &ctx.operand_b.size);
- }
- if (input_file && !result) {
- return false;
- }
- result = files_load_bytes_from_buffer_or_file_or_stdin(NULL, input_file,
- &ctx.operand_b.size,
- ctx.operand_b.buffer);
- if (!result) {
- return false;
- }
- break;
- case 0:
- if (!tpm2_util_string_to_uint16(value, &ctx.offset)) {
- LOG_ERR("Could not convert starting offset, got: \"%s\"", value);
- return false;
- }
- break;
- case 1:
- ctx.cp_hash_path = value;
- break;
- default:
- return false;
- }
- return true;
- }
- static bool tpm2_tool_onstart(tpm2_options **opts) {
- const struct option topts[] = {
- { "hierarchy", required_argument, NULL, 'C' },
- { "auth", required_argument, NULL, 'P' },
- { "policy", required_argument, NULL, 'L' },
- { "session", required_argument, NULL, 'S' },
- { "input", required_argument, NULL, 'i' },
- { "offset", required_argument, NULL, 0 },
- { "cphash", required_argument, NULL, 1 },
- };
- *opts = tpm2_options_new("C:P:L:S:i:", ARRAY_LEN(topts), topts, on_option,
- on_arg, 0);
- return *opts != NULL;
- }
- static bool is_input_option_args_valid(void) {
- if (!ctx.session_path) {
- LOG_ERR("Must specify -S session file.");
- return false;
- }
- if (ctx.cp_hash_path && ctx.policy_digest_path) {
- LOG_WARN("Cannot output policyhash when calculating cphash.");
- return false;
- }
- return true;
- }
- static tool_rc tpm2_tool_onrun(ESYS_CONTEXT *ectx, tpm2_option_flags flags) {
- UNUSED(flags);
- bool retval = is_input_option_args_valid();
- if (!retval) {
- return tool_rc_option_error;
- }
- if (!ctx.operand_b.size) {
- LOG_WARN("Data to compare is of size 0");
- }
- /*
- * Ensure that NV index is large enough to compare the size of input data.
- */
- TPM2B_NV_PUBLIC *nv_public = NULL;
- tool_rc rc = tpm2_util_nv_read_public(ectx, ctx.nv_index, &nv_public);
- if (rc != tool_rc_success) {
- LOG_ERR("Failed to access NVRAM public area at index 0x%X",
- ctx.nv_index);
- free(nv_public);
- return rc;
- }
- if (ctx.operand_b.size > nv_public->nvPublic.dataSize - ctx.offset) {
- LOG_ERR("The operand size is larger than NV data"
- " starting at the offset");
- free(nv_public);
- return tool_rc_general_error;
- }
- free(nv_public);
- rc = tpm2_util_object_load_auth(ectx, ctx.auth_hierarchy.ctx_path,
- ctx.auth_hierarchy.auth_str, &ctx.auth_hierarchy.object, false,
- TPM2_HANDLE_FLAGS_NV | TPM2_HANDLE_FLAGS_O | TPM2_HANDLE_FLAGS_P);
- if (rc != tool_rc_success) {
- LOG_ERR("Invalid handle authorization");
- return rc;
- }
- rc = tpm2_session_restore(ectx, ctx.session_path, false, &ctx.session);
- if (rc != tool_rc_success) {
- return rc;
- }
- ESYS_TR policy_session_handle = tpm2_session_get_handle(ctx.session);
- if (!ctx.cp_hash_path) {
- rc = tpm2_policy_nv(ectx, &ctx.auth_hierarchy.object, ctx.nv_index,
- policy_session_handle, &ctx.operand_b, ctx.offset, ctx.operation,
- NULL);
- if (rc != tool_rc_success) {
- return rc;
- }
- return tpm2_policy_tool_finish(ectx, ctx.session, ctx.policy_digest_path);
- }
- TPM2B_DIGEST cp_hash = { .size = 0 };
- rc = tpm2_policy_nv(ectx, &ctx.auth_hierarchy.object, ctx.nv_index,
- policy_session_handle, &ctx.operand_b, ctx.offset, ctx.operation,
- &cp_hash);
- if (rc != tool_rc_success) {
- goto cphash_error_out;
- }
- bool result = files_save_digest(&cp_hash, ctx.cp_hash_path);
- if (!result) {
- rc = tool_rc_general_error;
- } else {
- goto cphash_out;
- }
- cphash_error_out:
- LOG_ERR("Failed cphash calculation operation");
- cphash_out:
- return rc;
- }
- static tool_rc tpm2_tool_onstop(ESYS_CONTEXT *ectx) {
- UNUSED(ectx);
- tool_rc rc = tool_rc_success;
- tool_rc tmp_rc = tool_rc_success;
- if (!ctx.cp_hash_path) {
- tmp_rc = tpm2_session_close(&ctx.auth_hierarchy.object.session);
- if (tmp_rc != tool_rc_success) {
- rc = tmp_rc;
- }
- }
- tmp_rc = tpm2_session_close(&ctx.session);
- if (tmp_rc != tool_rc_success) {
- rc = tmp_rc;
- }
- return rc;
- }
- // Register this tool with tpm2_tool.c
- TPM2_TOOL_REGISTER("policynv", tpm2_tool_onstart, tpm2_tool_onrun, tpm2_tool_onstop, NULL)
|