Giter Site home page Giter Site logo

libuta's Introduction

Unified Trust Anchor API

logo

This project is a proof-of-concept implementation of the Unified Trust Anchor API, allowing the usage of different hardware trust anchor and a software simulator with a uniform interface.

UTA Library

Contents

Design Concept

The Unified Trust Anchor API is designed to provide a small set of functions with only a few selectable parameters to support a large number of hardware trust anchor, even very small ones. This allows the user software to run on different hardware architectures and devices using the same API to access the hardware trust anchor, independent of the actually used trust anchor and how it has to be accessed. Another important goal was the design of an API which decreases the probability of using it the wrong way. The two main functions the trust anchor must support are a random number generator and a key derivation using the HMAC function. Currently two key slots are used to allow key derivations for different use-cases, so that one key slot could contain a device individual key, the other key slot could contain a preshared key used for secure communication.

Getting Started

The following instructions will get you a copy of the project up and running on your local machine.

Prerequisites

build-essential needs to be installed to build the project. The ./bootstrap command needs the package libtool. To use the library with a TPM, the IBM software stack has to be installed! (See Setting up the IBM software stack)

Installing

After cloning the repository, the necessary autotools files must be generated. Therefore, libtool has to be installed. This step is not needed if a release of this software is created with make dist.

./bootstrap

To see all the possible configuration options, run:

./configure -h

To additionally compile and install the command line tools add --enable-tools to the configuration arguments.

./configure HARDWARE=XXX --enable-tools

The configuration of the TPM_TCG and TPM_IBM variants need some handle numbers, which are defined during the provisioning of the TPM (see TPM-Provisioning). The default handle numbers are:

  • KEY0_HANDLE=0x81000000
  • KEY1_HANDLE=0x81000001
  • SALT_HANDLE=0x81000002

If one or more handle numbers are missing, the default values are used.

./configure HARDWARE=TPM_IBM KEY0_HANDLE=0x81000000 KEY1_HANDLE=0x81000001 SALT_HANDLE=0x81000002

Furthermore, the TPM device file can be specified for the TPM TCG and TPM IBM backends. The default is the following:

  • TPM_DEVICE_FILE=/dev/tpmrm0

There are additional configuration options for the IBM TSS. The default values are the following:

  • TPM_IBM_INTERFACE_TYPE=dev
  • TPM_IBM_DATA_DIR=/var/lib/tpm_ibm

If no TPM resource manager is available on the system, multiprocessing is not supported an has to be disabled using --without-multiprocessing to pass the regression tests.

To use the UTA software simulator run

./configure HARDWARE=UTA_SIM

After the configuration of the hardware variant the project can be compiled using

make

The project can be installed running

sudo make install

To update the systems shared library cache run

sudo ldconfig

Debian packaging

Dependencies

debhelper dpkg-dev autotools-dev pkg-config

For packaging the TPM_IBM variant of the library, the IBM TSS must be installed on the build machine.

Configuration

  • First ./bootstrap has to be invoked
  • For each hardware configuration, a separate Debian package has to be built
  • The configuration of the trust anchor type is done by calling the debian/configure script.
  • After valid configuration, build package using regular Debian package command: $ dpkg-buildpackage -us -uc
  • The resulting package is built into higher (../) directory
  • libuta-dev package is built in every case and contains the header files needed for development
  • libuta-derive-tool package contains the uta_get_passphrase tool described below
  • Platform-specific libuta libraries are set to conflict to each other, you may have only one installed at one platform.

Remarks

  • Currently the packaging does not contain the UTA uta_reg_test command line tool.

Tools

The project containes some command line tools, which can be compiled using the configuration flag --enable-tools during ./configure. After make install the tools are globally executable.

Regression tests

The regression tests can be started using

uta_reg_test [<key0_file.bin>] [<key1_file.bin>]

with the paths to the key files of slot 0 and slot 1 as optional parameters. If the key files are provided, the regression tests calculate the output of the key derivation in software and compare it with the output of the trust anchor. If uta_reg_test ist called without the key files, only the return codes of the trust anchor calles are checked. The RNG test is a statistical test, designed to find critical errors, such as implementation errors. If the test passes, it does NOT automatically mean that the random numbers have a high quality! Please refer to the NIST for details about testing random number generators. By default der following UTA API calles are tested:

  • get_version
  • get_device_uuid
  • self_test
  • get_random (64 Bytes of random numers are collected from the trust anchor and analyzed using a chi-squared test)
  • derive_key using key slot 0 and key slot 1 (checked against software implementation if the keys are provided to the regression test)

After performing all the test once, multiple threads are spawned to check the thread safety. Fork() is used to create a child process and both processes create multiple threads. The threads perform the same tests as before.

Retrieve a passphrase from the trust anchor

The tool uta_get_passphrase can be used to retrieve a passphrase from the trust anchor. It basically derives a cryptographic key with a given derivation value and key slot and encodes the key to printable characters. The passphrase is printed to stdout and can easily be piped to other applications that accept a passphrase on stdin. For example the LUKS framework for hard disk encryption can receive a passphrase this way.

$ ./uta_get_passphrase -h
### Retrieve passphrase from the UTA trust anchor ###

Usage: uta_get_passphrase [-d <derivation_string>] [-e <encoding>] [-k <key slot>] [-h]

-d <derivation_string>: string used in the computation of passphrase,
   maximum length is 8 characters; (default value: 'default!')
-e <encoding>: select encoding of the passphrase from
   'base64' and 'hex'; (default: 'base64')
-k <key slot>: select the key slot;
   (default: 1)
-h This help message

The following two calls of the tool are equivalent:

$ ./uta_get_passphrase
FoqVaXPagmUfivixH4oG6LEZDNmY1tsJ4FsEKX8B/a8

$ ./uta_get_passphrase -d default! -e base64 -k 1
FoqVaXPagmUfivixH4oG6LEZDNmY1tsJ4FsEKX8B/a8

Library structure

This chapter describes the structure of the UTA library and gives examples on how to use it.

Return codes

The return codes of the functions are 32 bit unsigned integers called uta_rc.

typedef uint32_t uta_rc;

The following error codes are currently defined:

#define UTA_SUCCESS             0x00
#define UTA_INVALID_KEY_LENGTH  0x01
#define UTA_INVALID_DV_LENGTH   0x02
#define UTA_INVALID_KEY_SLOT    0x03
#define UTA_TA_ERROR            0x10

UTA version

The version of the library can be requested with get_version. It is defined as a struct containing the used trust anchor and the major, minor and patch number (See Versioning).

typedef struct {
      enum {UTA_SIM=0, TPM_IBM=1, TPM_TCG=2} uta_type;                
      uint32_t major;
      uint32_t minor;
      uint32_t patch;
} uta_version_t;

UTA context

The context of the UTA is used to get rid of global variables inside the library and to create a status free library. It is an opaque structure and therefore the elements are not known to the user.

typedef struct _uta_context_v1_t uta_context_v1_t;

UTA API

For higher extendibility and flexibility only an initilization function is exported. The user can request a certain version of the API with the corresponding init function. This function returns a struct with the function pointers of the desired version.

extern uta_rc uta_init_v1     (uta_api_v1_t *uta);

The struct with the v1 functions is shown here:

typedef struct {
   size_t (*context_v1_size)  (void);
   size_t (*len_key_max)      (void);
   uta_rc (*open)             (const uta_context_v1_t *uta_context);
   uta_rc (*close)            (const uta_context_v1_t *uta_context);
   uta_rc (*derive_key)       (const uta_context_v1_t *uta_context, uint8_t *key, size_t len_key, const uint8_t *dv, size_t len_dv, uint8_t key_slot);
   uta_rc (*get_random)       (const uta_context_v1_t *uta_context, uint8_t *random, size_t len_random);
   uta_rc (*get_device_uuid)  (const uta_context_v1_t *uta_context, uint8_t *uuid);
   uta_rc (*self_test)        (const uta_context_v1_t *uta_context);
   uta_rc (*get_version)      (const uta_context_v1_t *uta_context, uta_version_t *version);
} uta_api_v1_t;

For version 1 of the API, the following define contains the implemented dv length of 8 Bytes.

#define UTA_LEN_DV_V1   8

Function description

In the following subsections the implemented functions are desribed and minimal examples are given. NOTE that the return codes have to be evaluated by the user after each function call!

uta_init_v1

This function initializes the version 1 of the UTA API and returns a struct with the corresponding function pointers.

// Allocate memory for the struct with the function pointers
uta_api_v1_t uta;
// Initialize the v1 API
rc = uta_init_v1(&uta);

context_v1_size

This function is needed to allocate memory for the context, because the user does not know the size of the context. An example would be:

// Allocate memory for the pointer to the context
const uta_context_v1_t *uta_context;
// Allocate memory for the context
uta_context = malloc(uta.context_v1_size());

open

After allocationg memory for the context, the open function can be called. Depending on the underlying hardware trust anchor it could be that the open function blocks the device file and should be therefore called immediately before other requests to the trust anchor, followed by the close function. It can be done very local in the user code.

rc = uta.open(uta_context);

close

The close function deletes the context variables and frees the device file. It should be called immediately after the last request to the trust anchor.

rc = uta.close(uta_context);

len_key_max

This function can be used to request the highest key length (in Bytes), which can be returned by the derive key function.

size_t len_key_max = uta.len_key_max();

derive_key

Derives a key from the trust anchor using the derivation value given in dv and it's length len_dv. The trust anchor uses the key inside the given key_slot. Currently the trust anchor uses SHA256 as the HMAC hash function. The user can request a number of bytes between 0 and 32 given in len_key. The number of bytes are written to key. The in version 1 implemented dv length is 8 Bytes. If key_slot, len_key or len_dv are outside their defined range, the function returns the corresponding uta_rc error value. The function len_key_max() can be used to request the highest key length of each version. The define UTA_LEN_DV_V1 contains the implemented dv length (8 Bytes) of version 1.

uint8_t key[32];
uint8_t *dv = (unsigned char *)"*passwd*";
rc = uta.derive_key(uta_context, key, 32, dv, 8, 0);

The example returns 32 Bytes to key by calculating a HMAC over the 8 Byte derivation value dv using the key in slot 0.

get_random

Writes len_random number of random bytes to random.

PLEASE NOTE: The quality of the random data depends on the used hardware trust anchor. So we cannot guarantee that the retrieved random data is suitable for cryptographic applications. Therefore, we strongly recommend to use the output of this function exclusively for seeding of cryptographically secure pseudorandom number generators (CSPRNGs) such as implemented in the Linux kernel or in OpenSSL.

uint8_t random[20];
rc = uta.get_random(uta_context, random, 20);

get_device_uuid

Returns a 16 Byte uuid which is formatted as defined by RFC4122. The creation of the UUID depends on the trust anchor.

uint8_t uuid[16];
rc = uta.get_device_uuid(uta_context, uuid);

self_test

Performs a self test on the trust anchor and returns the result as uta_rc.

rc = uta.self_test(uta_context);

get_version

Returns a struct uta_version_t containing the used trust anchor and version number.

uta_version_t version;
rc = uta.get_version(uta_context, &version);

Setting up the TCG software stack

  • The TCG software stack (tpm2-tss) is currently only available as source code package in debian. Alternatively, it can be found here.
  • To automatically setup the necessary udev rules, it is recommended to use the option --with-udevrulesdir during configure, e.g.:
    ./bootstrap
    ./configure --with-udevrulesdir=/etc/udev/rules.d
    make
    sudo make install
    

Setting up the IBM software stack

  • The software stack comes packaged in debian. The package libtss0 needs to be installed. When building libuta from source, the package libtss-dev is needed as well
  • In order to allow non-root users the access to the TPM, we create a group tpm and setup udev rules. The following configuration steps are only for reference and should be adjusted during integration:
    • Add group tpm sudo groupadd tpm
    • Add tpm group to user sudo usermod -aG tpm <username>
    • Create a udev rule file under /etc/udev/rules.d/80-tpm-2.rules and add the following lines:
      KERNEL=="tpm[0-9]*", MODE="0660", OWNER="root", GROUP="tpm"
      KERNEL=="tpmrm[0-9]*", MODE="0660", OWNER="root", GROUP="tpm"
      
    • Create the data directory for the IBM TSS as configured during the libuta build:
      sudo mkdir -p /var/lib/tpm_ibm
      chown root:tpm /var/lib/tpm_ibm
      chmod 0770 /var/lib/tpm_ibm
      

TPM-Provisioning

The provisioning for the TPM_TCG and TPM_IBM backend works in a similar way. The TPM_TCG provisioning additionally depends on the package tpm2-tools while the TPM_IBM backend requires the tss2 package. The provisioning scripts can be found in src/provisioning/tpm_tcg and src/provisionig/tpm_ibm respectively. The keys to be provisioned can either be generated randomly on the TPM itself or provided by the user. The default handle numbers of the keys (for TPM_TCG and TPM_IBM) and further configuration options (for the IBM TSS only) are hardcoded in the provisioning scripts and must match the configuration of the libuta.

Usage:
TPM provisioning with random keys for slot0 and slot1:
./provisioning.sh

TPM provisioning with external key for slot0 and random key for slot1
./provisioning.sh <key0_file.bin>

TPM provisioning with external keys for slot0 and slot1
./provisioning.sh <key0_file.bin> <key1_file.bin>

Migration from TPM_IBM to TPM_TCG

It is possible to switch from the TPM_IBM backend to the TPM_TCG backend without additional migration steps. If the TPM_IBM provisioning script has been used, the TPM works as well with the TPM_TCG backend as long as the handle numbers are configured the same way in the libuta configuration.

The migration from the TPM_TCG backend to the TPM_IBM backend is currently not supported.

Thread safety

The hardware trust anchor are shared resources and therefore, the access must be controlled. This highly depends on the used hardware trust anchor, e.g. the TPM_TCG provides an optinal ABRMD (Access Broker and Resource Manager Daemon), which handles the access. In newer Linux Kernel implementations there is also a TPM resource manager available.

NOTE: If no TPM resource manager is available on the system, multiprocessing is not supported an has to be disabled using --without-multiprocessing to pass the regression tests.

UTA Key Hierarchy

Due to different trust anchor architectures, the key hierarchy differs in the implementation. For the end user it does not make a difference.

TPM TCG and TPM IBM

The TPM uses the storage hierarchy to store the keys of slot 0 and slot 1. They are inserted during provisioning and stored in persistent key slots. During provisioning an ECC key pair is generated and stored in a persistent key slot as well. It is used for parameter encryption. The device UUID is derived from the primary HMAC key in the endorsement hierarchy using the 8 Byte string "DEVICEID".

 Endorsement hierarchy           Storage hierarchy
+----------------------+ +-------------------------------+
| +------------------+ | |    +---------------------+    |
| | Primary HMAC key | | |    | Primary storage key |    |
| +---------+--------+ | |    +----+-----------+----+    |
|           |          | |         |           |         |
|       DEVICEID       | |         |           |         |
|           |          | |         |           |         |
|       +---v--+       | |     +---+---+   +---+---+     |
|       | UUID |       | |     | Key 0 |   | Key 1 |     |
|       +------+       | |     +-------+   +-------+     |
+----------------------+ +-------------------------------+

Coding Standard

The UTA library code is oriented to the Barr Group's Embedded C Coding Standard.

https://barrgroup.com/Embedded-Systems/Books/Embedded-C-Coding-Standard

Versioning

We use SemVer for versioning.

libuta's People

Contributors

benjamin-schilling avatar zeschg avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

Forkers

nejch ralisi yevginx

libuta's Issues

Build separate Debian package for libuta provisioning tools

Currently the TPM implementation needs the installation of further tools and helper scripts for key provisioning. After the provisioning step, these tools are not needed anymore. We should consider to implement an option to uninstall the provisioning tools.

To avoid the installation of the Debian package "tss2", we could implement our own provisioning tool based on libtss0 instead of using the shell script.

Add OpenSSF Scorecard

As suggested by

https://openssf.org/blog/2020/11/06/security-scorecards-for-open-source-projects/

add a scorecard:

https://github.com/ossf/scorecard

We can break this down into several sub-tasks:

  • Security-MD | Does the project contain a security policy?
  • Contributors | Does the project have contributors from at least two different organizations?
  • Frozen-Deps | Does the project declare and freeze dependencies?
  • Signed-Releases | Does the project cryptographically sign releases?
  • Signed-Tags | Does the project cryptographically sign release tags?
  • CI-Tests | Does the project run tests in CI?
  • Code-Review | Does the project require code review before code is merged?
  • CII-Best-Practices | Does the project have a CII Best Practices Badge?
  • Pull-Requests | Does the project use Pull Requests for all code changes?
  • Fuzzing | Does the project use OSS-Fuzz?
  • SAST | Does the project use static code analysis tools, e.g. CodeQL?
  • Active | Did the project get any commits and releases in last 90 days?

Build fails

If I clone this repo and call "./bootstrap" I get the following error:

libtoolize: putting auxiliary files in '.'.
libtoolize: linking file './ltmain.sh'
libtoolize: Consider adding 'AC_CONFIG_MACRO_DIRS([m4])' to configure.ac,
libtoolize: and rerunning libtoolize and aclocal.
libtoolize: Consider adding '-I m4' to ACLOCAL_AMFLAGS in Makefile.am.
configure.ac:31: installing './ar-lib'
configure.ac:31: installing './compile'
configure.ac:36: installing './config.guess'
configure.ac:36: installing './config.sub'
configure.ac:24: installing './install-sh'
configure.ac:24: installing './missing'
configure.ac:116: error: required file 'src/tools/uta_get_passphrase/Makefile.in' not found
configure.ac:116: error: required file 'src/tools/uta_reg_test/Makefile.in' not found
Makefile.am:13: error: required directory ./src/tools/uta_reg_test does not exist
Makefile.am:13: error: required directory ./src/tools/uta_get_passphrase does not exist
autoreconf: automake failed with exit status: 1

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.