blob: 28ed2d977a3bb4901658af8880ca7e6379f53f2c [file] [log] [blame] [view]
Andrey Marochkobcad02c2020-10-16 16:01:56 -07001# Official TPM 2.0 Reference Implementation (by Microsoft) #
Brian Telfer5e0fa6b2018-02-22 00:08:02 +00002
Andrey Marochkodaf52092018-12-14 22:22:15 -08003[![Build Status](https://travis-ci.org/Microsoft/ms-tpm-20-ref.svg?branch=master)](https://travis-ci.org/Microsoft/ms-tpm-20-ref)
Andrey Marochkob8e59922017-06-29 17:13:14 -07004
Andrey Marochkodaf52092018-12-14 22:22:15 -08005This is the official TCG reference implementation of the [TPM 2.0 Specification](https://trustedcomputinggroup.org/tpm-library-specification). The project contains complete source code of the reference implementation with a Microsoft Visual Studio solution and Linux autotools build scripts.
Andrey Marochkob8e59922017-06-29 17:13:14 -07006
Andrey Marochkodaf52092018-12-14 22:22:15 -08007See the definition of the `SPEC_VERSION`, `SPEC_YEAR` and `SPEC_DAY_OF_YEAR` values in the [TpmTypes.h](TPMCmd/tpm/include/TpmTypes.h) header for the exact revision/date of the TPM 2.0 specification, which the given source tree snapshot corresponds to.
Andrey Marochkob8e59922017-06-29 17:13:14 -07008
Andrey Marochkobcad02c2020-10-16 16:01:56 -07009The reference implementation can be directly used via the [TPM 2.0 simulator](TPMCmd/Simulator) that emulates a TPM 2.0 device and can be accessed via a custom TCP based protocol. The simplest way to work with the simulator is to use a [TSS library](https://github.com/Microsoft/TSS.MSR) for the programming language of your choice - C#/.Net, C++, Java, Python, JavaScript/Node.js are currently supported. The C language TSS implementing the TCG's TSS API specifiaction is available [here](https://github.com/tpm2-software/tpm2-tss).
10
Andrey Marochkof640b4b2020-12-09 12:36:43 -080011## Windows build ##
Andrey Marochkodaf52092018-12-14 22:22:15 -080012
Andrey Marochkof640b4b2020-12-09 12:36:43 -080013Windows build is implemented as a Visual Studio 2017 solution. Before building it:
Andrey Marochkodaf52092018-12-14 22:22:15 -080014
Andrey Marochkobcad02c2020-10-16 16:01:56 -070015* Setup one or both of the following underlying cryptographic libraries:
Andrey Marochkod81005b2017-07-24 18:16:24 -070016
Andrey Marochkobcad02c2020-10-16 16:01:56 -070017 ### OpenSSL library ###
Andrey Marochkod81005b2017-07-24 18:16:24 -070018
Andrey Marochkobcad02c2020-10-16 16:01:56 -070019 1. Create `TPMCmd/lib` folder and place a static OpenSSL library (`libcrypto.lib`) built for the `x86` architecture there. For the `x64` architecture use the `TPMCmd/lib/x64` folder.
Brian Telfer5e0fa6b2018-02-22 00:08:02 +000020
Andrey Marochkobcad02c2020-10-16 16:01:56 -070021 The static libs can be either static libraries proper, or import libraries accompanying the corresponding DLLs. In the latter case you'll need to ensure that ther is a matching copy of the OpenSSL DLL in the standard Windows search path, so that it is available when you run the simulator executable (e.g. copy it into the same folder where `simulator.exe` is located).
Brian Telfer5e0fa6b2018-02-22 00:08:02 +000022
Andrey Marochkobcad02c2020-10-16 16:01:56 -070023 Recommended version of OpenSSL is `1.1.1d` or higher.
Andrey Marochko37055a62020-04-13 23:19:14 -070024
Andrey Marochkobcad02c2020-10-16 16:01:56 -070025 2. Create `TPMCmd/OsslInclude/openssl` folder and copy there the contents of the `openssl/include/openssl` folder in the OpenSSL source tree used to build the OpenSSL library.
Brian Telfer5e0fa6b2018-02-22 00:08:02 +000026
Andrey Marochkof640b4b2020-12-09 12:36:43 -080027 If you enable SM{2,3,4} algorithms in `TpmProfile.h`, the build may fail because of missing `SM{2,3,4}.h` headers. In this case you will need to manually copy them over from OpenSSL’s `include/crypt` folder.
Brian Telfer5e0fa6b2018-02-22 00:08:02 +000028
Andrey Marochkobcad02c2020-10-16 16:01:56 -070029 3. Build the solution with either Debug or Release as the active configuration.
Brian Telfer5e0fa6b2018-02-22 00:08:02 +000030
Andrey Marochkobcad02c2020-10-16 16:01:56 -070031 ### Wolfcrypt library (wolfSSL) ###
Brian Telfer5e0fa6b2018-02-22 00:08:02 +000032
Andrey Marochkobcad02c2020-10-16 16:01:56 -070033 1. WolfSSL is included as a submodule. Initialize and update the submodule to fetch the project and checkout the appropriate commit.
Brian Telfer5e0fa6b2018-02-22 00:08:02 +000034
Andrey Marochkobcad02c2020-10-16 16:01:56 -070035 > git submodule init
36 > git submodule update
Brian Telfer5e0fa6b2018-02-22 00:08:02 +000037
Andrey Marochkobcad02c2020-10-16 16:01:56 -070038 The current commit will point the minimum recommended version of wolfSSL. Moving to a more recent tag or commit should also be supported but might not be tested.
Brian Telfer5e0fa6b2018-02-22 00:08:02 +000039
Andrey Marochkobcad02c2020-10-16 16:01:56 -070040 2. Build the solution with either WolfDebug or WolfRelease as the active configuration, either from inside the Visual Studio or with the following command line:
Brian Telfer5e0fa6b2018-02-22 00:08:02 +000041
Andrey Marochkofc98d142018-04-05 23:59:45 -070042 > msbuild TPMCmd\simulator.sln /p:Configuration=WolfDebug
Andrey Marochkobcad02c2020-10-16 16:01:56 -070043
44* If necessary, update the definitions of the following macros in the [VendorString.h](TPMCmd/tpm/include/VendorString.h) header: `MANUFACTURER`, `VENDOR_STRING_1`, `FIRMWARE_V1 and FIRMWARE_V2`
45
Andrey Marochkodaf52092018-12-14 22:22:15 -080046## Linux build
47
48Follows the common `./bootstrap && ./configure && make` convention.
49
Andrey Marochko9f79f0f2020-05-04 17:18:24 -070050Note that autotools scripts require the following prerequisite packages: `autoconf-archive`, `pkg-config`, and sometimes `build-essential` and `automake`. Their absence is not automatically detected. The build also needs `gcc` and `libssl-dev` packages.
Andrey Marochkobcad02c2020-10-16 16:01:56 -070051
Andrey Marochkof640b4b2020-12-09 12:36:43 -080052Similarly to the Windows build, if you enable SM{2,3,4} algorithms in `TpmProfile.h`, the build may fail because of missing `SM{2,3,4}.h` headers. In this case you will need to manually copy them over from OpenSSL’s `include/crypt` folder.