mbox series

[v5,ima-evm-utils,0/3] Add alternative calls to IBM TSS library

Message ID 20210803204008.29612-1-kgoldman@us.ibm.com (mailing list archive)
Headers show
Series Add alternative calls to IBM TSS library | expand

Message

Ken Goldman Aug. 3, 2021, 8:40 p.m. UTC
This patch set adds calls to C code.  This should be more stable and
easier to maintain.  INSTALL instructions are updated.

While the code is being touched, it changes the PCR handle from
a signed int to a uint32_t, removing the need for error checking.

Ken Goldman (3):
  Expand the INSTALL instructions.
  Change PCR iterator from int to uint32_t
  Create alternative tpm2_pcr_read() that uses IBM TSS

 INSTALL              |  27 +++++-
 configure.ac         |   8 ++
 src/Makefile.am      |  15 +++-
 src/evmctl.c         |  12 ++-
 src/pcr.h            |   2 +-
 src/pcr_ibmtss.c     | 192 +++++++++++++++++++++++++++++++++++++++++++
 src/pcr_tss.c        |   5 +-
 src/pcr_tsspcrread.c |   6 +-
 8 files changed, 253 insertions(+), 14 deletions(-)
 create mode 100644 src/pcr_ibmtss.c