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.
132 lines
3.5 KiB
132 lines
3.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 PASSWORD "abc"
|
|
|
|
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_NvSetBits.
|
|
*
|
|
* Tested FAPI commands:
|
|
* - Fapi_Provision()
|
|
* - Fapi_CreateNv()
|
|
* - Fapi_NvSetBits()
|
|
* - Fapi_Delete()
|
|
* - Fapi_SetAuthCB()
|
|
*
|
|
* @param[in,out] context The FAPI_CONTEXT.
|
|
* @retval EXIT_FAILURE
|
|
* @retval EXIT_SUCCESS
|
|
*/
|
|
int
|
|
test_fapi_nv_set_bits(FAPI_CONTEXT *context)
|
|
{
|
|
TSS2_RC r;
|
|
char *nvPathBitMap = "/nv/Owner/myNV_BitMap";
|
|
|
|
r = Fapi_Provision(context, NULL, NULL, NULL);
|
|
goto_if_error(r, "Error Fapi_Provision", error);
|
|
|
|
/* Test no password, noda set */
|
|
r = Fapi_CreateNv(context, nvPathBitMap, "bitfield, noda", 0, "", "");
|
|
goto_if_error(r, "Error Fapi_CreateNv", error);
|
|
|
|
uint64_t bitmap = 0x0102030405060608;
|
|
|
|
r = Fapi_NvSetBits(context, nvPathBitMap, bitmap);
|
|
goto_if_error(r, "Error Fapi_SetBits", error);
|
|
|
|
r = Fapi_Delete(context, nvPathBitMap);
|
|
goto_if_error(r, "Error Fapi_Delete", error);
|
|
|
|
/* Test with password noda set */
|
|
r = Fapi_CreateNv(context, nvPathBitMap, "bitfield, 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_NvSetBits(context, nvPathBitMap, bitmap);
|
|
goto_if_error(r, "Error Fapi_CreateNv", error);
|
|
|
|
r = Fapi_Delete(context, nvPathBitMap);
|
|
goto_if_error(r, "Error Fapi_Delete", error);
|
|
|
|
/* Cleanup */
|
|
r = Fapi_Delete(context, "/HS/SRK");
|
|
goto_if_error(r, "Error Fapi_Delete", error);
|
|
|
|
r = Fapi_Provision(context, NULL, NULL, NULL);
|
|
goto_if_error(r, "Error Fapi_Provision", error);
|
|
|
|
/* Test no password, noda set */
|
|
r = Fapi_CreateNv(context, nvPathBitMap, "bitfield, noda", 0, "", "");
|
|
goto_if_error(r, "Error Fapi_CreateNv", error);
|
|
|
|
r = Fapi_NvSetBits(context, nvPathBitMap, bitmap);
|
|
goto_if_error(r, "Error Fapi_NvSetbits", error);
|
|
|
|
r = Fapi_Delete(context, nvPathBitMap);
|
|
goto_if_error(r, "Error Fapi_Delete", error);
|
|
|
|
/* Test with password noda set */
|
|
r = Fapi_CreateNv(context, nvPathBitMap, "bitfield, 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_NvSetBits(context, nvPathBitMap, bitmap);
|
|
goto_if_error(r, "Error Fapi_SetBits", error);
|
|
|
|
r = Fapi_Delete(context, nvPathBitMap);
|
|
goto_if_error(r, "Error Fapi_Delete", error);
|
|
|
|
|
|
r = Fapi_Delete(context, "/");
|
|
|
|
goto_if_error(r, "Error Fapi_Delete", error);
|
|
|
|
return EXIT_SUCCESS;
|
|
|
|
error:
|
|
Fapi_Delete(context, "/HS/SRK");
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
int
|
|
test_invoke_fapi(FAPI_CONTEXT *context)
|
|
{
|
|
return test_fapi_nv_set_bits(context);
|
|
}
|