• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /*******************************************************************************
3  * Copyright 2017-2018, Fraunhofer SIT sponsored by Infineon Technologies AG
4  * All rights reserved.
5  ******************************************************************************/
6 
7 #ifdef HAVE_CONFIG_H
8 #include <config.h>
9 #endif
10 
11 #include "tss2_mu.h"
12 #include "tss2_sys.h"
13 #include "tss2_esys.h"
14 
15 #include "esys_types.h"
16 #include "esys_iutil.h"
17 #include "esys_mu.h"
18 #define LOGMODULE esys
19 #include "util/log.h"
20 #include "util/aux_util.h"
21 
22 /** One-Call function for TPM2_PolicyRestart
23  *
24  * This function invokes the TPM2_PolicyRestart command in a one-call
25  * variant. This means the function will block until the TPM response is
26  * available. All input parameters are const. The memory for non-simple output
27  * parameters is allocated by the function implementation.
28  *
29  * @param[in,out] esysContext The ESYS_CONTEXT.
30  * @param[in]  sessionHandle The handle for the policy session.
31  * @param[in]  shandle1 First session handle.
32  * @param[in]  shandle2 Second session handle.
33  * @param[in]  shandle3 Third session handle.
34  * @retval TSS2_RC_SUCCESS if the function call was a success.
35  * @retval TSS2_ESYS_RC_BAD_REFERENCE if the esysContext or required input
36  *         pointers or required output handle references are NULL.
37  * @retval TSS2_ESYS_RC_BAD_CONTEXT: if esysContext corruption is detected.
38  * @retval TSS2_ESYS_RC_MEMORY: if the ESAPI cannot allocate enough memory for
39  *         internal operations or return parameters.
40  * @retval TSS2_ESYS_RC_BAD_SEQUENCE: if the context has an asynchronous
41  *         operation already pending.
42  * @retval TSS2_ESYS_RC_INSUFFICIENT_RESPONSE: if the TPM's response does not
43  *          at least contain the tag, response length, and response code.
44  * @retval TSS2_ESYS_RC_MALFORMED_RESPONSE: if the TPM's response is corrupted.
45  * @retval TSS2_ESYS_RC_RSP_AUTH_FAILED: if the response HMAC from the TPM
46            did not verify.
47  * @retval TSS2_ESYS_RC_MULTIPLE_DECRYPT_SESSIONS: if more than one session has
48  *         the 'decrypt' attribute bit set.
49  * @retval TSS2_ESYS_RC_MULTIPLE_ENCRYPT_SESSIONS: if more than one session has
50  *         the 'encrypt' attribute bit set.
51  * @retval TSS2_ESYS_RC_BAD_TR: if any of the ESYS_TR objects are unknown
52  *         to the ESYS_CONTEXT or are of the wrong type or if required
53  *         ESYS_TR objects are ESYS_TR_NONE.
54  * @retval TSS2_ESYS_RC_NO_DECRYPT_PARAM: if one of the sessions has the
55  *         'decrypt' attribute set and the command does not support encryption
56  *         of the first command parameter.
57  * @retval TSS2_ESYS_RC_NO_ENCRYPT_PARAM: if one of the sessions has the
58  *         'encrypt' attribute set and the command does not support encryption
59  *          of the first response parameter.
60  * @retval TSS2_RCs produced by lower layers of the software stack may be
61  *         returned to the caller unaltered unless handled internally.
62  */
63 TSS2_RC
Esys_PolicyRestart(ESYS_CONTEXT * esysContext,ESYS_TR sessionHandle,ESYS_TR shandle1,ESYS_TR shandle2,ESYS_TR shandle3)64 Esys_PolicyRestart(
65     ESYS_CONTEXT *esysContext,
66     ESYS_TR sessionHandle,
67     ESYS_TR shandle1,
68     ESYS_TR shandle2,
69     ESYS_TR shandle3)
70 {
71     TSS2_RC r;
72 
73     r = Esys_PolicyRestart_Async(esysContext, sessionHandle, shandle1, shandle2,
74                                  shandle3);
75     return_if_error(r, "Error in async function");
76 
77     /* Set the timeout to indefinite for now, since we want _Finish to block */
78     int32_t timeouttmp = esysContext->timeout;
79     esysContext->timeout = -1;
80     /*
81      * Now we call the finish function, until return code is not equal to
82      * from TSS2_BASE_RC_TRY_AGAIN.
83      * Note that the finish function may return TSS2_RC_TRY_AGAIN, even if we
84      * have set the timeout to -1. This occurs for example if the TPM requests
85      * a retransmission of the command via TPM2_RC_YIELDED.
86      */
87     do {
88         r = Esys_PolicyRestart_Finish(esysContext);
89         /* This is just debug information about the reattempt to finish the
90            command */
91         if ((r & ~TSS2_RC_LAYER_MASK) == TSS2_BASE_RC_TRY_AGAIN)
92             LOG_DEBUG("A layer below returned TRY_AGAIN: %" PRIx32
93                       " => resubmitting command", r);
94     } while ((r & ~TSS2_RC_LAYER_MASK) == TSS2_BASE_RC_TRY_AGAIN);
95 
96     /* Restore the timeout value to the original value */
97     esysContext->timeout = timeouttmp;
98     return_if_error(r, "Esys Finish");
99 
100     return TSS2_RC_SUCCESS;
101 }
102 
103 /** Asynchronous function for TPM2_PolicyRestart
104  *
105  * This function invokes the TPM2_PolicyRestart command in a asynchronous
106  * variant. This means the function will return as soon as the command has been
107  * sent downwards the stack to the TPM. All input parameters are const.
108  * In order to retrieve the TPM's response call Esys_PolicyRestart_Finish.
109  *
110  * @param[in,out] esysContext The ESYS_CONTEXT.
111  * @param[in]  sessionHandle The handle for the policy session.
112  * @param[in]  shandle1 First session handle.
113  * @param[in]  shandle2 Second session handle.
114  * @param[in]  shandle3 Third session handle.
115  * @retval ESYS_RC_SUCCESS if the function call was a success.
116  * @retval TSS2_ESYS_RC_BAD_REFERENCE if the esysContext or required input
117  *         pointers or required output handle references are NULL.
118  * @retval TSS2_ESYS_RC_BAD_CONTEXT: if esysContext corruption is detected.
119  * @retval TSS2_ESYS_RC_MEMORY: if the ESAPI cannot allocate enough memory for
120  *         internal operations or return parameters.
121  * @retval TSS2_RCs produced by lower layers of the software stack may be
122            returned to the caller unaltered unless handled internally.
123  * @retval TSS2_ESYS_RC_MULTIPLE_DECRYPT_SESSIONS: if more than one session has
124  *         the 'decrypt' attribute bit set.
125  * @retval TSS2_ESYS_RC_MULTIPLE_ENCRYPT_SESSIONS: if more than one session has
126  *         the 'encrypt' attribute bit set.
127  * @retval TSS2_ESYS_RC_BAD_TR: if any of the ESYS_TR objects are unknown
128  *         to the ESYS_CONTEXT or are of the wrong type or if required
129  *         ESYS_TR objects are ESYS_TR_NONE.
130  * @retval TSS2_ESYS_RC_NO_DECRYPT_PARAM: if one of the sessions has the
131  *         'decrypt' attribute set and the command does not support encryption
132  *         of the first command parameter.
133  * @retval TSS2_ESYS_RC_NO_ENCRYPT_PARAM: if one of the sessions has the
134  *         'encrypt' attribute set and the command does not support encryption
135  *          of the first response parameter.
136  */
137 TSS2_RC
Esys_PolicyRestart_Async(ESYS_CONTEXT * esysContext,ESYS_TR sessionHandle,ESYS_TR shandle1,ESYS_TR shandle2,ESYS_TR shandle3)138 Esys_PolicyRestart_Async(
139     ESYS_CONTEXT *esysContext,
140     ESYS_TR sessionHandle,
141     ESYS_TR shandle1,
142     ESYS_TR shandle2,
143     ESYS_TR shandle3)
144 {
145     TSS2_RC r;
146     LOG_TRACE("context=%p, sessionHandle=%"PRIx32 "",
147               esysContext, sessionHandle);
148     TSS2L_SYS_AUTH_COMMAND auths;
149     RSRC_NODE_T *sessionHandleNode;
150 
151     /* Check context, sequence correctness and set state to error for now */
152     if (esysContext == NULL) {
153         LOG_ERROR("esyscontext is NULL.");
154         return TSS2_ESYS_RC_BAD_REFERENCE;
155     }
156     r = iesys_check_sequence_async(esysContext);
157     if (r != TSS2_RC_SUCCESS)
158         return r;
159     esysContext->state = _ESYS_STATE_INTERNALERROR;
160 
161     /* Check input parameters */
162     r = check_session_feasibility(shandle1, shandle2, shandle3, 0);
163     return_state_if_error(r, _ESYS_STATE_INIT, "Check session usage");
164 
165     /* Retrieve the metadata objects for provided handles */
166     r = esys_GetResourceObject(esysContext, sessionHandle, &sessionHandleNode);
167     return_state_if_error(r, _ESYS_STATE_INIT, "sessionHandle unknown.");
168 
169     /* Initial invocation of SAPI to prepare the command buffer with parameters */
170     r = Tss2_Sys_PolicyRestart_Prepare(esysContext->sys,
171                                        (sessionHandleNode == NULL) ? TPM2_RH_NULL
172                                         : sessionHandleNode->rsrc.handle);
173     return_state_if_error(r, _ESYS_STATE_INIT, "SAPI Prepare returned error.");
174 
175     /* Calculate the cpHash Values */
176     r = init_session_tab(esysContext, shandle1, shandle2, shandle3);
177     return_state_if_error(r, _ESYS_STATE_INIT, "Initialize session resources");
178     iesys_compute_session_value(esysContext->session_tab[0], NULL, NULL);
179     iesys_compute_session_value(esysContext->session_tab[1], NULL, NULL);
180     iesys_compute_session_value(esysContext->session_tab[2], NULL, NULL);
181 
182     /* Generate the auth values and set them in the SAPI command buffer */
183     r = iesys_gen_auths(esysContext, sessionHandleNode, NULL, NULL, &auths);
184     return_state_if_error(r, _ESYS_STATE_INIT,
185                           "Error in computation of auth values");
186 
187     esysContext->authsCount = auths.count;
188     if (auths.count > 0) {
189         r = Tss2_Sys_SetCmdAuths(esysContext->sys, &auths);
190         return_state_if_error(r, _ESYS_STATE_INIT, "SAPI error on SetCmdAuths");
191     }
192 
193     /* Trigger execution and finish the async invocation */
194     r = Tss2_Sys_ExecuteAsync(esysContext->sys);
195     return_state_if_error(r, _ESYS_STATE_INTERNALERROR,
196                           "Finish (Execute Async)");
197 
198     esysContext->state = _ESYS_STATE_SENT;
199 
200     return r;
201 }
202 
203 /** Asynchronous finish function for TPM2_PolicyRestart
204  *
205  * This function returns the results of a TPM2_PolicyRestart command
206  * invoked via Esys_PolicyRestart_Finish. All non-simple output parameters
207  * are allocated by the function's implementation. NULL can be passed for every
208  * output parameter if the value is not required.
209  *
210  * @param[in,out] esysContext The ESYS_CONTEXT.
211  * @retval TSS2_RC_SUCCESS on success
212  * @retval ESYS_RC_SUCCESS if the function call was a success.
213  * @retval TSS2_ESYS_RC_BAD_REFERENCE if the esysContext or required input
214  *         pointers or required output handle references are NULL.
215  * @retval TSS2_ESYS_RC_BAD_CONTEXT: if esysContext corruption is detected.
216  * @retval TSS2_ESYS_RC_MEMORY: if the ESAPI cannot allocate enough memory for
217  *         internal operations or return parameters.
218  * @retval TSS2_ESYS_RC_BAD_SEQUENCE: if the context has an asynchronous
219  *         operation already pending.
220  * @retval TSS2_ESYS_RC_TRY_AGAIN: if the timeout counter expires before the
221  *         TPM response is received.
222  * @retval TSS2_ESYS_RC_INSUFFICIENT_RESPONSE: if the TPM's response does not
223  *         at least contain the tag, response length, and response code.
224  * @retval TSS2_ESYS_RC_RSP_AUTH_FAILED: if the response HMAC from the TPM did
225  *         not verify.
226  * @retval TSS2_ESYS_RC_MALFORMED_RESPONSE: if the TPM's response is corrupted.
227  * @retval TSS2_RCs produced by lower layers of the software stack may be
228  *         returned to the caller unaltered unless handled internally.
229  */
230 TSS2_RC
Esys_PolicyRestart_Finish(ESYS_CONTEXT * esysContext)231 Esys_PolicyRestart_Finish(
232     ESYS_CONTEXT *esysContext)
233 {
234     TSS2_RC r;
235     LOG_TRACE("context=%p",
236               esysContext);
237 
238     if (esysContext == NULL) {
239         LOG_ERROR("esyscontext is NULL.");
240         return TSS2_ESYS_RC_BAD_REFERENCE;
241     }
242 
243     /* Check for correct sequence and set sequence to irregular for now */
244     if (esysContext->state != _ESYS_STATE_SENT &&
245         esysContext->state != _ESYS_STATE_RESUBMISSION) {
246         LOG_ERROR("Esys called in bad sequence.");
247         return TSS2_ESYS_RC_BAD_SEQUENCE;
248     }
249     esysContext->state = _ESYS_STATE_INTERNALERROR;
250 
251     /*Receive the TPM response and handle resubmissions if necessary. */
252     r = Tss2_Sys_ExecuteFinish(esysContext->sys, esysContext->timeout);
253     if ((r & ~TSS2_RC_LAYER_MASK) == TSS2_BASE_RC_TRY_AGAIN) {
254         LOG_DEBUG("A layer below returned TRY_AGAIN: %" PRIx32, r);
255         esysContext->state = _ESYS_STATE_SENT;
256         return r;
257     }
258     /* This block handle the resubmission of TPM commands given a certain set of
259      * TPM response codes. */
260     if (r == TPM2_RC_RETRY || r == TPM2_RC_TESTING || r == TPM2_RC_YIELDED) {
261         LOG_DEBUG("TPM returned RETRY, TESTING or YIELDED, which triggers a "
262             "resubmission: %" PRIx32, r);
263         if (esysContext->submissionCount++ >= _ESYS_MAX_SUBMISSIONS) {
264             LOG_WARNING("Maximum number of (re)submissions has been reached.");
265             esysContext->state = _ESYS_STATE_INIT;
266             return r;
267         }
268         esysContext->state = _ESYS_STATE_RESUBMISSION;
269         r = Tss2_Sys_ExecuteAsync(esysContext->sys);
270         if (r != TSS2_RC_SUCCESS) {
271             LOG_WARNING("Error attempting to resubmit");
272             /* We do not set esysContext->state here but inherit the most recent
273              * state of the _async function. */
274             return r;
275         }
276         r = TSS2_ESYS_RC_TRY_AGAIN;
277         LOG_DEBUG("Resubmission initiated and returning RC_TRY_AGAIN.");
278         return r;
279     }
280     /* The following is the "regular error" handling. */
281     if (iesys_tpm_error(r)) {
282         LOG_WARNING("Received TPM Error");
283         esysContext->state = _ESYS_STATE_INIT;
284         return r;
285     } else if (r != TSS2_RC_SUCCESS) {
286         LOG_ERROR("Received a non-TPM Error");
287         esysContext->state = _ESYS_STATE_INTERNALERROR;
288         return r;
289     }
290 
291     /*
292      * Now the verification of the response (hmac check) and if necessary the
293      * parameter decryption have to be done.
294      */
295     r = iesys_check_response(esysContext);
296     return_state_if_error(r, _ESYS_STATE_INTERNALERROR,
297                           "Error: check response");
298 
299     /*
300      * After the verification of the response we call the complete function
301      * to deliver the result.
302      */
303     r = Tss2_Sys_PolicyRestart_Complete(esysContext->sys);
304     return_state_if_error(r, _ESYS_STATE_INTERNALERROR,
305                           "Received error from SAPI unmarshaling" );
306 
307     esysContext->state = _ESYS_STATE_INIT;
308 
309     return TSS2_RC_SUCCESS;
310 }
311