123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- /* SPDX-License-Identifier: BSD-2-Clause */
- /*******************************************************************************
- * Copyright 2017-2018, Fraunhofer SIT sponsored by Infineon Technologies AG
- * All rights reserved.
- *******************************************************************************/
- #ifdef HAVE_CONFIG_H
- #include <config.h>
- #endif
- #include <stdlib.h>
- #include "tss2_esys.h"
- #include "tss2_mu.h"
- #include "esys_iutil.h"
- #include "test-esys.h"
- #define LOGMODULE test
- #include "util/log.h"
- #include "util/aux_util.h"
- #define FLUSH true
- #define NOT_FLUSH false
- /*
- * Function to compare policy digest with expected digest.
- * The digest is computed with Esys_PolicyGetDigest.
- */
- bool
- cmp_policy_digest(ESYS_CONTEXT * esys_context,
- ESYS_TR * session,
- TPM2B_DIGEST * expected_digest,
- char *comment, bool flush_session)
- {
- TSS2_RC r;
- TPM2B_DIGEST *policyDigest;
- r = Esys_PolicyGetDigest(esys_context,
- *session,
- ESYS_TR_NONE,
- ESYS_TR_NONE, ESYS_TR_NONE, &policyDigest);
- goto_if_error(r, "Error: PolicyGetDigest", error);
- LOGBLOB_DEBUG(&policyDigest->buffer[0], policyDigest->size,
- "POLICY DIGEST");
- if (policyDigest->size != 32
- || memcmp(&policyDigest->buffer[0], &expected_digest->buffer[0],
- policyDigest->size)) {
- free(policyDigest);
- LOG_ERROR("Error: Policy%s digest did not match expected policy.",
- comment);
- return false;
- }
- free(policyDigest);
- if (flush_session) {
- r = Esys_FlushContext(esys_context, *session);
- goto_if_error(r, "Error: PolicyGetDigest", error);
- *session = ESYS_TR_NONE;
- }
- return true;
- error:
- return false;
- }
- /** This test is intended to test the ESYS policy commands, not tested
- * in other test cases.
- * When possoble the commands are tested with a
- * trial session and the policy digest is compared with the expected digest.
- *
- * Tested ESYS commands:
- * - Esys_PolicyPhysicalPresence() (O)
- *
- * @param[in,out] esys_context The ESYS_CONTEXT.
- * @retval EXIT_FAILURE
- * @retval EXIT_SKIP
- * @retval EXIT_SUCCESS
- */
- int
- test_esys_policy_physical_presence_opt(ESYS_CONTEXT * esys_context)
- {
- TSS2_RC r;
- int failure_return = EXIT_FAILURE;
- /* Dummy parameters for trial sessoin */
- ESYS_TR sessionTrial = ESYS_TR_NONE;
- TPMT_SYM_DEF symmetricTrial = {.algorithm = TPM2_ALG_AES,
- .keyBits = {.aes = 128},
- .mode = {.aes = TPM2_ALG_CFB}
- };
- TPM2B_NONCE nonceCallerTrial = {
- .size = 32,
- .buffer = { 1, 2, 3, 4, 5, 6, 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 }
- };
- /*
- * Test PolicyPhysicalPresence
- */
- r = Esys_StartAuthSession(esys_context, ESYS_TR_NONE, ESYS_TR_NONE,
- ESYS_TR_NONE, ESYS_TR_NONE, ESYS_TR_NONE,
- &nonceCallerTrial,
- TPM2_SE_TRIAL, &symmetricTrial, TPM2_ALG_SHA256,
- &sessionTrial);
- goto_if_error(r, "Error: During initialization of policy trial session",
- error);
- r = Esys_PolicyPhysicalPresence(esys_context,
- sessionTrial,
- ESYS_TR_NONE, ESYS_TR_NONE, ESYS_TR_NONE);
- if ((r == TPM2_RC_COMMAND_CODE) ||
- (r == (TPM2_RC_COMMAND_CODE | TSS2_RESMGR_RC_LAYER)) ||
- (r == (TPM2_RC_COMMAND_CODE | TSS2_RESMGR_TPM_RC_LAYER))) {
- LOG_WARNING("Command TPM2_PolicyPhysicalPresence not supported by TPM.");
- failure_return = EXIT_SKIP;
- goto error;
- } else {
- goto_if_error(r, "Error: PolicyPhysicalPresence", error);
- }
- TPM2B_DIGEST expectedPolicyPhysicalPresence = {
- .size = 20,
- .buffer = { 0x0d, 0x7c, 0x67, 0x47, 0xb1, 0xb9, 0xfa, 0xcb, 0xba, 0x03, 0x49,
- 0x20, 0x97, 0xaa, 0x9d, 0x5a, 0xf7, 0x92, 0xe5, 0xef, 0xc0, 0x73,
- 0x46, 0xe0, 0x5f, 0x9d, 0xaa, 0x8b, 0x3d, 0x9e, 0x13, 0xb5
- }
- };
- if (!cmp_policy_digest
- (esys_context, &sessionTrial, &expectedPolicyPhysicalPresence,
- "PhysicalPresence", FLUSH))
- goto error;
- return EXIT_SUCCESS;
- error:
- if (sessionTrial != ESYS_TR_NONE) {
- if (Esys_FlushContext(esys_context, sessionTrial) != TSS2_RC_SUCCESS) {
- LOG_ERROR("Cleanup sessionTrial failed.");
- }
- }
- return failure_return;
- }
- int
- test_invoke_esys(ESYS_CONTEXT * esys_context) {
- return test_esys_policy_physical_presence_opt(esys_context);
- }
|