blob: 4a4d1a86638655fa62579d3bf5fa8c3568dcf735 [file] [log] [blame]
/*******************************************************************************
* Copyright 2017, 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 <stdlib.h>
#include "tss2_esys.h"
#include "esys_iutil.h"
#define LOGMODULE test
#include "util/log.h"
int
test_invoke_esapi(ESYS_CONTEXT * esys_context)
{
TSS2_RC r;
TPM2B_DIGEST *randomBytes;
r = Esys_GetRandom(esys_context, ESYS_TR_NONE, ESYS_TR_NONE, ESYS_TR_NONE,
48, &randomBytes);
if (r != TPM2_RC_SUCCESS) {
LOG_ERROR("GetRandom FAILED! Response Code : 0x%x", r);
goto error;
}
LOGBLOB_DEBUG(&randomBytes->buffer[0], randomBytes->size,
"Randoms (count=%i):", randomBytes->size);
free(randomBytes);
LOG_INFO("GetRandom Test Passed!");
ESYS_TR session;
const TPMT_SYM_DEF symmetric = {
.algorithm = TPM2_ALG_AES,
.keyBits = {.aes = 128},
.mode = {.aes = TPM2_ALG_CFB}
};
r = Esys_StartAuthSession(esys_context, ESYS_TR_NONE, ESYS_TR_NONE,
ESYS_TR_NONE, ESYS_TR_NONE, ESYS_TR_NONE,
NULL,
TPM2_SE_HMAC, &symmetric, TPM2_ALG_SHA1,
&session, NULL);
if (r != TPM2_RC_SUCCESS) {
LOG_ERROR("Esys_StartAuthSession FAILED! Response Code : 0x%x", r);
goto error;
}
r = Esys_TRSess_SetAttributes(esys_context, session, TPMA_SESSION_AUDIT,
TPMA_SESSION_AUDIT);
if (r != TPM2_RC_SUCCESS) {
LOG_ERROR("SetAttributes on session FAILED! Response Code : 0x%x", r);
goto error_cleansession;
}
r = Esys_GetRandom(esys_context, session, ESYS_TR_NONE, ESYS_TR_NONE, 48,
&randomBytes);
if (r != TPM2_RC_SUCCESS) {
LOG_ERROR("GetRandom with session FAILED! Response Code : 0x%x", r);
goto error_cleansession;
}
LOGBLOB_DEBUG(&randomBytes->buffer[0], randomBytes->size,
"Randoms (count=%i):", randomBytes->size);
free(randomBytes);
LOG_INFO("GetRandom with session Test Passed!");
return 0;
error_cleansession:
r = Esys_FlushContext(esys_context, session);
if (r != TPM2_RC_SUCCESS) {
LOG_ERROR("FlushContext FAILED! Response Code : 0x%x", r);
}
error:
return 1;
}