123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- /* SPDX-License-Identifier: BSD-2-Clause */
- /***********************************************************************
- * Copyright (c) 2017-2018, Intel Corporation
- *
- * All rights reserved.
- ***********************************************************************/
- #ifdef HAVE_CONFIG_H
- #include <config.h>
- #endif
- #include "tss2_tpm2_types.h"
- #include "sys-util.h"
- #include "session-util.h"
- static ENTITY *entities = NULL;
- int
- AddEntity(TPM2_HANDLE handle, TPM2B_AUTH *auth)
- {
- ENTITY *e;
- HASH_FIND_INT(entities, &handle, e);
- if (!e) {
- e = calloc(1, sizeof(*e));
- if (!e)
- return -1;
- e->entityHandle = handle;
- HASH_ADD_INT(entities, entityHandle, e);
- }
- CopySizedByteBuffer((TPM2B *)&e->entityAuth, (TPM2B *)auth);
- return 0;
- }
- void
- DeleteEntity(TPM2_HANDLE handle)
- {
- ENTITY *e;
- HASH_FIND_INT(entities, &handle, e);
- if (!e)
- return;
- HASH_DEL(entities, e);
- free(e);
- }
- int
- GetEntityAuth(TPM2_HANDLE handle, TPM2B_AUTH *auth)
- {
- ENTITY *e;
- HASH_FIND_INT(entities, &handle, e);
- if (!e)
- return -1;
- CopySizedByteBuffer((TPM2B *)auth, (TPM2B *)&e->entityAuth);
- return 0;
- }
- ENTITY *
- GetEntity(TPM2_HANDLE handle)
- {
- ENTITY *e;
- HASH_FIND_INT(entities, &handle, e);
- return e;
- }
|