/* SPDX-License-Identifier: BSD-3-Clause */ #include "files.h" #include "log.h" #include "tpm2.h" #include "tpm2_tool.h" typedef struct clear_ctx clear_ctx; struct clear_ctx { struct { const char *ctx_path; const char *auth_str; tpm2_loaded_object object; } auth_hierarchy; char *cp_hash_path; }; static clear_ctx ctx = { .auth_hierarchy.ctx_path = "l", }; static bool on_option(char key, char *value) { switch (key) { case 'c': ctx.auth_hierarchy.ctx_path = value; break; case 0: ctx.cp_hash_path = value; break; } return true; } static bool on_arg(int argc, char **argv) { if (argc > 1) { LOG_ERR("Specify a single auth value"); return false; } if (!argc) { //empty auth return true; } ctx.auth_hierarchy.auth_str = argv[0]; return true; } static bool tpm2_tool_onstart(tpm2_options **opts) { const struct option topts[] = { { "auth-hierarchy", no_argument, NULL, 'c' }, { "cphash", required_argument, NULL, 0 }, }; *opts = tpm2_options_new("c:", ARRAY_LEN(topts), topts, on_option, on_arg, 0); return *opts != NULL; } static tool_rc tpm2_tool_onrun(ESYS_CONTEXT *ectx, tpm2_option_flags flags) { UNUSED(flags); tool_rc 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_L | TPM2_HANDLE_FLAGS_P); if (rc != tool_rc_success) { LOG_ERR("Invalid lockout authorization"); return rc; } if (ctx.cp_hash_path) { LOG_WARN("Generating cpHash. Exiting without executing clear."); TPM2B_DIGEST cp_hash = { .size = 0 }; tool_rc rc = tpm2_clear(ectx, &ctx.auth_hierarchy.object, &cp_hash); if (rc != tool_rc_success) { return rc; } bool result = files_save_digest(&cp_hash, ctx.cp_hash_path); if (!result) { rc = tool_rc_general_error; } return rc; } return tpm2_clear(ectx, &ctx.auth_hierarchy.object, NULL); } static tool_rc tpm2_tool_onstop(ESYS_CONTEXT *ectx) { UNUSED(ectx); return tpm2_session_close(&ctx.auth_hierarchy.object.session); } // Register this tool with tpm2_tool.c TPM2_TOOL_REGISTER("clear", tpm2_tool_onstart, tpm2_tool_onrun, tpm2_tool_onstop, NULL)