blob: f5bcd18da5ae393e64e9d77841f0266cda7e2d8b [file] [log] [blame]
/*******************************************************************************
* Copyright 2017-2018, Fraunhofer SIT sponsored by Infineon Technologies AG All
* rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. 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.
*
* 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 HOLDER 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.
*******************************************************************************/
#include "tss2_esys.h"
#include "esys_iutil.h"
#define LOGMODULE test
#include "util/log.h"
/*
* This test is intended to test the ESAPI command Esys_UndefineSpaceSpecial,
* The NV space attributes TPMA_NV_PLATFORMCREATE and TPMA_NV_POLICY_DELETE
* have to be set.
* A policy has to be defined for the command UndefineSpaceSpecial.
* The special handling whether the auth value is not used in the HMAC
* response verification will be checked.
*/
int
test_invoke_esapi(ESYS_CONTEXT * esys_context)
{
uint32_t r = 0;
/*
* First the policy value for NV_UndefineSpaceSpecial has to be
* determined with a policy trial session.
*/
ESYS_TR sessionTrial;
TPMT_SYM_DEF symmetricTrial = {.algorithm = TPM2_ALG_AES,
.keyBits = {.aes = 128},
.mode = {.aes = TPM2_ALG_CFB}
};
TPM2B_NONCE *nonceTpmTrial;
TPM2B_NONCE nonceCallerTrial = {
.size = 20,
.buffer = {11, 12, 13, 14, 15, 16, 17, 18, 19, 11,
21, 22, 23, 24, 25, 26, 27, 28, 29, 30}
};
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_SHA1, &sessionTrial,
&nonceTpmTrial);
goto_if_error(r, "Error: During initialization of policy trial session", error);
r = Esys_PolicyAuthValue(esys_context,
sessionTrial,
ESYS_TR_NONE,
ESYS_TR_NONE,
ESYS_TR_NONE
);
goto_if_error(r, "Error: PolicyAuthValue", error);
r = Esys_PolicyCommandCode(esys_context,
sessionTrial,
ESYS_TR_NONE,
ESYS_TR_NONE,
ESYS_TR_NONE,
TPM2_CC_NV_UndefineSpaceSpecial
);
goto_if_error(r, "Error: PolicyCommandCode", error);
TPM2B_DIGEST *policyDigestTrial;
r = Esys_PolicyGetDigest(esys_context,
sessionTrial,
ESYS_TR_NONE,
ESYS_TR_NONE,
ESYS_TR_NONE,
&policyDigestTrial
);
goto_if_error(r, "Error: PolicyGetDigest", error);
ESYS_TR nvHandle_handle;
TPM2B_AUTH auth = {.size = 20,
.buffer={10, 11, 12, 13, 14, 15, 16, 17, 18, 19,
20, 21, 22, 23, 24, 25, 26, 27, 28, 29}};
TPM2B_NV_PUBLIC publicInfo = {
.size = 0,
.nvPublic = {
.nvIndex =TPM2_NV_INDEX_FIRST,
.nameAlg = TPM2_ALG_SHA1,
.attributes = (
TPMA_NV_PLATFORMCREATE |
TPMA_NV_PPWRITE |
TPMA_NV_AUTHWRITE |
TPMA_NV_WRITE_STCLEAR |
TPMA_NV_READ_STCLEAR |
TPMA_NV_AUTHREAD |
TPMA_NV_PPREAD |
TPMA_NV_POLICY_DELETE /**< Undefine will only possible with policy */
),
.authPolicy = *policyDigestTrial,
.dataSize = 32,
}
};
r = Esys_NV_DefineSpace(esys_context,
ESYS_TR_RH_PLATFORM,
ESYS_TR_PASSWORD,
ESYS_TR_NONE,
ESYS_TR_NONE,
&auth,
&publicInfo,
&nvHandle_handle);
goto_if_error(r, "Error esys define nv space", error);
ESYS_TR policySession;
TPMT_SYM_DEF policySymmetric = {.algorithm = TPM2_ALG_AES,
.keyBits = {.aes = 128},
.mode = {.aes = TPM2_ALG_CFB}
};
TPM2B_NONCE *policyNonceTpm;
TPM2B_NONCE policyNonceCaller = {
.size = 20,
.buffer = {11, 12, 13, 14, 15, 16, 17, 18, 19, 11,
21, 22, 23, 24, 25, 26, 27, 28, 29, 30}
};
r = Esys_StartAuthSession(esys_context, ESYS_TR_NONE, ESYS_TR_NONE,
ESYS_TR_NONE, ESYS_TR_NONE, ESYS_TR_NONE,
&policyNonceCaller,
TPM2_SE_POLICY, &policySymmetric, TPM2_ALG_SHA1, &policySession,
&policyNonceTpm);
goto_if_error(r, "Error: During initialization of policy trial session", error);
r = Esys_PolicyAuthValue(esys_context,
policySession,
ESYS_TR_NONE,
ESYS_TR_NONE,
ESYS_TR_NONE
);
goto_if_error(r, "Error: PolicyAuthValue", error);
r = Esys_PolicyCommandCode(esys_context,
policySession,
ESYS_TR_NONE,
ESYS_TR_NONE,
ESYS_TR_NONE,
TPM2_CC_NV_UndefineSpaceSpecial
);
goto_if_error(r, "Error: PolicyCommandCode", error);
r = Esys_NV_UndefineSpaceSpecial(esys_context,
nvHandle_handle,
ESYS_TR_RH_PLATFORM,
policySession,
ESYS_TR_PASSWORD,
ESYS_TR_NONE
);
goto_if_error(r, "Error: NV_UndefineSpace", error);
return 0;
error:
return 1;
}