You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
160 lines
4.5 KiB
160 lines
4.5 KiB
/* 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 <stdio.h>
|
|
#include <inttypes.h>
|
|
#include <string.h>
|
|
|
|
#include "tss2_fapi.h"
|
|
|
|
#define LOGMODULE test
|
|
#include "util/log.h"
|
|
#include "util/aux_util.h"
|
|
|
|
#define NV_SIZE 32
|
|
|
|
#define PASSWORD "abc"
|
|
|
|
static char *password;
|
|
|
|
static TSS2_RC
|
|
auth_callback(
|
|
FAPI_CONTEXT *context,
|
|
char const *description,
|
|
char **auth,
|
|
void *userData)
|
|
{
|
|
(void)description;
|
|
(void)userData;
|
|
*auth = strdup(password);
|
|
return_if_null(*auth, "Out of memory.", TSS2_FAPI_RC_MEMORY);
|
|
return TSS2_RC_SUCCESS;
|
|
}
|
|
|
|
|
|
/** Test the FAPI function FAPI_NvExtend.
|
|
*
|
|
* Tested FAPI commands:
|
|
* - Fapi_Provision()
|
|
* - Fapi_CreateNv()
|
|
* - Fapi_NvExtend()
|
|
* - Fapi_Delete()
|
|
* - Fapi_SetAuthCB()
|
|
*
|
|
* @param[in,out] context The FAPI_CONTEXT.
|
|
* @retval EXIT_FAILURE
|
|
* @retval EXIT_SUCCESS
|
|
*/
|
|
int
|
|
test_fapi_nv_extend(FAPI_CONTEXT *context)
|
|
{
|
|
TSS2_RC r;
|
|
char *nvPathExtend = "/nv/Owner/myNVextend";
|
|
uint8_t *data_dest = NULL;
|
|
char *log = NULL;
|
|
size_t dest_size;
|
|
|
|
r = Fapi_Provision(context, NULL, NULL, NULL);
|
|
goto_if_error(r, "Error Fapi_Provision", error);
|
|
|
|
/* Test no password, noda set */
|
|
r = Fapi_CreateNv(context, nvPathExtend, "pcr, noda", 0, "", "");
|
|
goto_if_error(r, "Error Fapi_CreateNv", error);
|
|
|
|
uint8_t data_src[NV_SIZE] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
|
|
0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
|
|
0, 1, 2, 3, 4, 5, 6, 7, 8, 9,
|
|
0, 1
|
|
};
|
|
|
|
|
|
r = Fapi_NvExtend(context, nvPathExtend, &data_src[0], NV_SIZE, "{ \"test\": \"myfile\" }");
|
|
goto_if_error(r, "Error Fapi_NV_EXTEND", error);
|
|
|
|
r = Fapi_NvRead(context, nvPathExtend, &data_dest, &dest_size, &log);
|
|
goto_if_error(r, "Error Fapi_NvRead", error);
|
|
|
|
fprintf(stderr, "\nLog:\n%s\n", log);
|
|
SAFE_FREE(data_dest);
|
|
|
|
r = Fapi_NvExtend(context, nvPathExtend, &data_src[0], NV_SIZE, "{ \"test\": \"myfile\" }");
|
|
goto_if_error(r, "Error Fapi_NV_EXTEND", error);
|
|
|
|
SAFE_FREE(log);
|
|
r = Fapi_NvRead(context, nvPathExtend, &data_dest, &dest_size, &log);
|
|
goto_if_error(r, "Error Fapi_NvRead", error);
|
|
|
|
fprintf(stderr, "\nLog:\n%s\n", log);
|
|
|
|
r = Fapi_Delete(context, nvPathExtend);
|
|
goto_if_error(r, "Error Fapi_NV_Undefine", error);
|
|
|
|
r = Fapi_SetAuthCB(context, auth_callback, "");
|
|
goto_if_error(r, "Error SetPolicyAuthCallback", error);
|
|
|
|
/* Test with password noda set */
|
|
password = PASSWORD;
|
|
r = Fapi_CreateNv(context, nvPathExtend, "pcr, noda", 0, "", PASSWORD);
|
|
goto_if_error(r, "Error Fapi_CreateNv", error);
|
|
|
|
r = Fapi_SetAuthCB(context, auth_callback, "");
|
|
goto_if_error(r, "Error SetPolicyAuthCallback", error);
|
|
|
|
r = Fapi_NvExtend(context, nvPathExtend, &data_src[0], NV_SIZE, "{ \"test\": \"myfile\" }");
|
|
goto_if_error(r, "Error Fapi_NV_EXTEN", error);
|
|
|
|
r = Fapi_Delete(context, nvPathExtend);
|
|
goto_if_error(r, "Error Fapi_NV_Undefine", error);
|
|
|
|
/* Test no password, noda clear */
|
|
password = "";
|
|
r = Fapi_CreateNv(context, nvPathExtend, "pcr", 0, "", "");
|
|
goto_if_error(r, "Error Fapi_CreateNv", error);
|
|
|
|
r = Fapi_NvExtend(context, nvPathExtend, &data_src[0], NV_SIZE, "{ \"test\": \"myfile\" }");
|
|
goto_if_error(r, "Error Fapi_NV_EXTEN", error);
|
|
|
|
r = Fapi_Delete(context, nvPathExtend);
|
|
goto_if_error(r, "Error Fapi_NV_Undefine", error);
|
|
|
|
/* Test with password noda clear */
|
|
password = PASSWORD;
|
|
r = Fapi_CreateNv(context, nvPathExtend, "pcr", 0, "", PASSWORD);
|
|
goto_if_error(r, "Error Fapi_CreateNv", error);
|
|
|
|
r = Fapi_SetAuthCB(context, auth_callback, "");
|
|
goto_if_error(r, "Error SetPolicyAuthCallback", error);
|
|
|
|
r = Fapi_NvExtend(context, nvPathExtend, &data_src[0], NV_SIZE, "{ \"test\": \"myfile\" }");
|
|
goto_if_error(r, "Error Fapi_NV_EXTEN", error);
|
|
|
|
r = Fapi_Delete(context, nvPathExtend);
|
|
goto_if_error(r, "Error Fapi_NV_Undefine", error);
|
|
|
|
r = Fapi_Delete(context, "/");
|
|
goto_if_error(r, "Error Fapi_Delete", error);
|
|
|
|
SAFE_FREE(log);
|
|
SAFE_FREE(data_dest);
|
|
return EXIT_SUCCESS;
|
|
|
|
error:
|
|
SAFE_FREE(log);
|
|
SAFE_FREE(data_dest);
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
int
|
|
test_invoke_fapi(FAPI_CONTEXT *context)
|
|
{
|
|
return test_fapi_nv_extend(context);
|
|
}
|