aboutsummaryrefslogtreecommitdiff
path: root/src/tss2-esys/api/Esys_PolicyPassword.c
diff options
context:
space:
mode:
authorTadeusz Struk <tadeusz.struk@intel.com>2019-04-17 14:04:12 -0700
committerAndreas Fuchs <andreas.fuchs@sit.fraunhofer.de>2019-04-23 10:05:53 +0200
commit511e6d3cea483bd880fba72a8b01be2fb1fc7259 (patch)
tree83c112e7c9cd4a4782d52d70139e2cd4b1d91c79 /src/tss2-esys/api/Esys_PolicyPassword.c
parent393b7eff5d8ea8a65c9ed5a9e6b23703acf8a67e (diff)
downloadtpm2-tss-511e6d3cea483bd880fba72a8b01be2fb1fc7259.tar.gz
esys: simplify resubmit path
Recent System API spec (v1.1 rev 24) simplifies command re-submission in case of TPM RC_RETRY, RC_TESTING or RC_YIELDED by storing the command header and parameters at the SAPI layer and allowing the ESAPI invoke TSS_Sys_ExecuteAsync multiple times. Change the re-submission logic in ESAPI to leverage this new feature. By doing that, many of the <TYPE>_IN data structures are no longer needed and can be removed. Only the input parameters that are used in _Finish() functions for purposes other than re-submission need to be stored. Signed-off-by: Tadeusz Struk <tadeusz.struk@intel.com>
Diffstat (limited to 'src/tss2-esys/api/Esys_PolicyPassword.c')
-rw-r--r--src/tss2-esys/api/Esys_PolicyPassword.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/src/tss2-esys/api/Esys_PolicyPassword.c b/src/tss2-esys/api/Esys_PolicyPassword.c
index 08a28731..c34e5891 100644
--- a/src/tss2-esys/api/Esys_PolicyPassword.c
+++ b/src/tss2-esys/api/Esys_PolicyPassword.c
@@ -20,7 +20,7 @@ static void store_input_parameters (
ESYS_CONTEXT *esysContext,
ESYS_TR policySession)
{
- esysContext->in.PolicyPassword.policySession = policySession;
+ esysContext->in.Policy.policySession = policySession;
}
/** One-Call function for TPM2_PolicyPassword
@@ -162,7 +162,7 @@ Esys_PolicyPassword_Async(
return r;
esysContext->state = _ESYS_STATE_INTERNALERROR;
- /* Check and store input parameters */
+ /* Check input parameters */
r = check_session_feasibility(shandle1, shandle2, shandle3, 0);
return_state_if_error(r, _ESYS_STATE_INIT, "Check session usage");
store_input_parameters(esysContext, policySession);
@@ -247,7 +247,8 @@ Esys_PolicyPassword_Finish(
}
/* Check for correct sequence and set sequence to irregular for now */
- if (esysContext->state != _ESYS_STATE_SENT) {
+ if (esysContext->state != _ESYS_STATE_SENT &&
+ esysContext->state != _ESYS_STATE_RESUBMISSION) {
LOG_ERROR("Esys called in bad sequence.");
return TSS2_ESYS_RC_BAD_SEQUENCE;
}
@@ -265,17 +266,13 @@ Esys_PolicyPassword_Finish(
if (r == TPM2_RC_RETRY || r == TPM2_RC_TESTING || r == TPM2_RC_YIELDED) {
LOG_DEBUG("TPM returned RETRY, TESTING or YIELDED, which triggers a "
"resubmission: %" PRIx32, r);
- if (esysContext->submissionCount >= _ESYS_MAX_SUBMISSIONS) {
+ if (esysContext->submissionCount++ >= _ESYS_MAX_SUBMISSIONS) {
LOG_WARNING("Maximum number of (re)submissions has been reached.");
esysContext->state = _ESYS_STATE_INIT;
return r;
}
esysContext->state = _ESYS_STATE_RESUBMISSION;
- r = Esys_PolicyPassword_Async(esysContext,
- esysContext->in.PolicyPassword.policySession,
- esysContext->session_type[0],
- esysContext->session_type[1],
- esysContext->session_type[2]);
+ r = Tss2_Sys_ExecuteAsync(esysContext->sys);
if (r != TSS2_RC_SUCCESS) {
LOG_WARNING("Error attempting to resubmit");
/* We do not set esysContext->state here but inherit the most recent
@@ -313,7 +310,7 @@ Esys_PolicyPassword_Finish(
return_state_if_error(r, _ESYS_STATE_INTERNALERROR,
"Received error from SAPI unmarshaling" );
- ESYS_TR policySession = esysContext->in.PolicyPassword.policySession;
+ ESYS_TR policySession = esysContext->in.Policy.policySession;
RSRC_NODE_T *policySessionNode;
r = esys_GetResourceObject(esysContext, policySession, &policySessionNode);
return_if_error(r, "get resource");