commit | b7b42326ecfb139e09847e2188d2f2a911aa16af | [log] [tgz] |
---|---|---|
author | Joshua Lock <joshua.g.lock@intel.com> | Fri Jan 25 16:10:14 2019 +0000 |
committer | Tadeusz Struk <tadeusz.struk@intel.com> | Mon Jan 28 09:18:47 2019 -0800 |
tree | 05920ba5e3507a052074cd63a4be6878611e7771 | |
parent | c6793f3ba0271098d019e48b3b79ac77c6caf0df [diff] |
build: ensure aminclude_static.am always exists Since #1238 landed I'm seeing: $ ./bootstrap -I /usr/share/gnulib/m4/ Generating file lists: src_vars.mk automake: error: cannot open < aminclude_static.am: No such file or directory autoreconf: automake failed with exit status: 1 This is because Automake supports an include directive[1] while generating the Makefile. The preprocessing step of running automake over the Makefile.am is trying to include the file (regardless of the conditional, because this isn't make which is running) and dies because the aminclude_static.am doesn't exist. Therefore call AX_ADD_AM_MACRO_STATIC with an empty argument in configure.ac to ensure the file is always present. Thanks to Jonas Witschel for the pointer to AX_ADD_AM_MACRO_STATIC Fixes #1255 Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
This repository hosts source code implementing the Trusted Computing Group's (TCG) TPM2 Software Stack (TSS). This stack consists of the following layers from top to bottom:
Instructions to build and install tpm2-tss are available in the INSTALL file.
If you're looking to discuss the source code in this project or get some questions answered you should join the 01.org TPM2 mailing list: https://lists.01.org/mailman/listinfo/tpm2. We also have an IRC channel set up on FreeNode called #tpm2.0-tss.
In case you want to contribute to the project, please also have a look at the Contribution Guidelines.
This repository contains a test suite intended to exercise the TCTI, SAPI and ESAPI code. This test suite is not intended to test a TPM implementation, so this test suite should only be run against a TPM simulator. If this test suite is executed against a TPM other than the software simulator it may cause damage to the TPM (NV storage wear out, etc.). You have been warned.
The TPM library specification contains reference code sufficient to construct a software TPM 2.0 simulator. This code was provided by Microsoft and they provide a binary download for Windows here. IBM has repackaged this code with a few Makefiles so that the Microsoft code can be built and run on Linux systems. The Linux version of the Microsoft TPM 2.0 simulator can be obtained here. Once you've downloaded and successfully built and execute the simulator it will, by default, be accepting connections on the localhost, TCP ports 2321 and 2322.
Issues building or running the simulator should be reported to the IBM software TPM2 project.
NOTE: The Intel TCG TSS is currently tested against version 974 of the simulator. Compatibility with later versions has not yet been tested.
To test the various TCTI, SAPI and ESAPI api calls, unit and integration tests can be run by configuring the build to enable unit testing and running the "check" build target. It is recommended to use a simulator for testing, and the simulator will be automatically launched by the tests. Please review the dependency list in INSTALL for dependencies when building the test suite.
$ ./configure --enable-unit --enable-integration $ make -j$(nproc) check
This will generate a file called "test-suite.log" in the root of the build directory.
Please report failures in a Github 'issue' with a full log of the test run.
NOTE: The unit and integration tests can be enabled independently. The --enable-unit option controls unit tests, and --enable-integration controls the integration tests.
SAPI library, TAB/RM, and Test Code Block Diagram:
├── doc : various bits of documentation
├── include : header files installed in $(includedir)
│ └── tss2 : all public headers for this project
├── lib : data files used by the build or installed into $(libdir)
├── m4 : autoconf support macros
├── man : man pages
├── script : scripts used by the build or CI
├── src : all source files
│ ├── tss2-esys : enhanced system API (ESAPI) implementation
│ │ └── api : ESAPI TPM API implementation
│ ├── tss2-mu : TPM2 type marshaling/unmarshaling (MU) API implementation
│ ├── tss2-sys : system API (SAPI) implementation
│ │ └── api : SAPI public API implementation
│ ├── tss2-tcti : TCTI implementations for device and mssim
│ └── util : Internal utility library (e.g. logging framework)
└── test : test code
├── integration : integration test harness and test cases
├── tpmclient : monolithic, legacy test application
└── unit : unit tests