.\" Automatically generated by Pandoc 2.9.2.1 .\" .TH "tpm2_pcrread" "1" "" "tpm2-tools" "General Commands Manual" .hy .SH NAME .PP \f[B]tpm2_pcrread\f[R](1) - List PCR values. .SH SYNOPSIS .PP \f[B]tpm2_pcrread\f[R] [\f[I]OPTIONS\f[R]] \f[I]PCR_LIST_OR_ALG\f[R] .SH DESCRIPTION .PP \f[B]tpm2_pcrread\f[R](1) - Displays PCR values. Without any arguments, \f[B]tpm2_pcrread\f[R](1) outputs all PCRs and their hash banks. One can use specify the hash algorithm or a pcr list as an argument to filter the output. .PP To only output PCR banks with a given algorithm, specify the hashing algorithm as the argument. Algorithms should follow the \[lq]formatting standards\[rq], see section \[lq]Algorithm Specifiers\[rq]. Also, see section \[lq]Supported Hash Algorithms\[rq] for a list of supported hash algorithms. .PP To output a list of PCR banks (sha1, sha256, etc) and ids (0, 1, 2 etc) specify a PCR selection list as the argument as specified via section \[lq]PCR Bank Specifiers\[rq]. .PP Also read \f[B]NOTES\f[R] section below. .PP Output is written in a YAML format to stdout, with each algorithm followed by a PCR index and its value. As a simple example assume just sha1 and sha256 support and only 1 PCR. The output would be: .IP .nf \f[C] $ tpm2_pcrread sha1:0+sha256:0 sha1 : 0 : 0000000000000000000000000000000000000003 sha256 : 0 : 0000000000000000000000000000000000000000000000000000000000000003 \f[R] .fi .SH OPTIONS .IP \[bu] 2 \f[B]-o\f[R], \f[B]--output\f[R]=\f[I]FILE\f[R]: .RS 2 .PP The output file to write the PCR values in binary format, optional. .RE .IP \[bu] 2 \f[B]--cphash\f[R]=\f[I]FILE\f[R] .RS 2 .PP File path to record the hash of the command parameters. This is commonly termed as cpHash. NOTE: When this option is selected, The tool will not actually execute the command, it simply returns a cpHash. .RE .IP \[bu] 2 \f[B]-F\f[R], \f[B]--pcrs_format\f[R]=\f[I]FORMAT\f[R]: .RS 2 .PP Format selection for the binary blob in the PCR output file. `values' will output a binary blob of the PCR values. `serialized' will output a binary blob of the PCR values in the form of serialized data structure in little endian format. Optional. Default is `values'. .RE .SH COMMON OPTIONS .PP This collection of options are common to many programs and provide information that many users may expect. .IP \[bu] 2 \f[B]-h\f[R], \f[B]--help=[man|no-man]\f[R]: Display the tools manpage. By default, it attempts to invoke the manpager for the tool, however, on failure will output a short tool summary. This is the same behavior if the \[lq]man\[rq] option argument is specified, however if explicit \[lq]man\[rq] is requested, the tool will provide errors from man on stderr. If the \[lq]no-man\[rq] option if specified, or the manpager fails, the short options will be output to stdout. .RS 2 .PP To successfully use the manpages feature requires the manpages to be installed or on \f[I]MANPATH\f[R], See man(1) for more details. .RE .IP \[bu] 2 \f[B]-v\f[R], \f[B]--version\f[R]: Display version information for this tool, supported tctis and exit. .IP \[bu] 2 \f[B]-V\f[R], \f[B]--verbose\f[R]: Increase the information that the tool prints to the console during its execution. When using this option the file and line number are printed. .IP \[bu] 2 \f[B]-Q\f[R], \f[B]--quiet\f[R]: Silence normal tool output to stdout. .IP \[bu] 2 \f[B]-Z\f[R], \f[B]--enable-errata\f[R]: Enable the application of errata fixups. Useful if an errata fixup needs to be applied to commands sent to the TPM. Defining the environment TPM2TOOLS_ENABLE_ERRATA is equivalent. .SH TCTI Configuration .PP The TCTI or \[lq]Transmission Interface\[rq] is the communication mechanism with the TPM. TCTIs can be changed for communication with TPMs across different mediums. .PP To control the TCTI, the tools respect: .IP "1." 3 The command line option \f[B]-T\f[R] or \f[B]--tcti\f[R] .IP "2." 3 The environment variable: \f[I]TPM2TOOLS_TCTI\f[R]. .PP \f[B]Note:\f[R] The command line option always overrides the environment variable. .PP The current known TCTIs are: .IP \[bu] 2 tabrmd - The resource manager, called tabrmd (https://github.com/tpm2-software/tpm2-abrmd). Note that tabrmd and abrmd as a tcti name are synonymous. .IP \[bu] 2 mssim - Typically used for communicating to the TPM software simulator. .IP \[bu] 2 device - Used when talking directly to a TPM device file. .IP \[bu] 2 none - Do not initalize a connection with the TPM. Some tools allow for off-tpm options and thus support not using a TCTI. Tools that do not support it will error when attempted to be used without a TCTI connection. Does not support \f[I]ANY\f[R] options and \f[I]MUST BE\f[R] presented as the exact text of \[lq]none\[rq]. .PP The arguments to either the command line option or the environment variable are in the form: .PP \f[C]:\f[R] .PP Specifying an empty string for either the \f[C]\f[R] or \f[C]\f[R] results in the default being used for that portion respectively. .SS TCTI Defaults .PP When a TCTI is not specified, the default TCTI is searched for using \f[I]dlopen(3)\f[R] semantics. The tools will search for \f[I]tabrmd\f[R], \f[I]device\f[R] and \f[I]mssim\f[R] TCTIs \f[B]IN THAT ORDER\f[R] and \f[B]USE THE FIRST ONE FOUND\f[R]. You can query what TCTI will be chosen as the default by using the \f[B]-v\f[R] option to print the version information. The \[lq]default-tcti\[rq] key-value pair will indicate which of the aforementioned TCTIs is the default. .SS Custom TCTIs .PP Any TCTI that implements the dynamic TCTI interface can be loaded. The tools internally use \f[I]dlopen(3)\f[R], and the raw \f[I]tcti-name\f[R] value is used for the lookup. Thus, this could be a path to the shared library, or a library name as understood by \f[I]dlopen(3)\f[R] semantics. .SH TCTI OPTIONS .PP This collection of options are used to configure the various known TCTI modules available: .IP \[bu] 2 \f[B]device\f[R]: For the device TCTI, the TPM character device file for use by the device TCTI can be specified. The default is \f[I]/dev/tpm0\f[R]. .RS 2 .PP Example: \f[B]-T device:/dev/tpm0\f[R] or \f[B]export \f[BI]TPM2TOOLS_TCTI\f[B]=\[lq]device:/dev/tpm0\[rq]\f[R] .RE .IP \[bu] 2 \f[B]mssim\f[R]: For the mssim TCTI, the domain name or IP address and port number used by the simulator can be specified. The default are 127.0.0.1 and 2321. .RS 2 .PP Example: \f[B]-T mssim:host=localhost,port=2321\f[R] or \f[B]export \f[BI]TPM2TOOLS_TCTI\f[B]=\[lq]mssim:host=localhost,port=2321\[rq]\f[R] .RE .IP \[bu] 2 \f[B]abrmd\f[R]: For the abrmd TCTI, the configuration string format is a series of simple key value pairs separated by a `,' character. Each key and value string are separated by a `=' character. .RS 2 .IP \[bu] 2 TCTI abrmd supports two keys: .RS 2 .IP "1." 3 `bus_name' : The name of the tabrmd service on the bus (a string). .IP "2." 3 `bus_type' : The type of the dbus instance (a string) limited to `session' and `system'. .RE .PP Specify the tabrmd tcti name and a config string of \f[C]bus_name=com.example.FooBar\f[R]: .IP .nf \f[C] \[rs]--tcti=tabrmd:bus_name=com.example.FooBar \f[R] .fi .PP Specify the default (abrmd) tcti and a config string of \f[C]bus_type=session\f[R]: .IP .nf \f[C] \[rs]--tcti:bus_type=session \f[R] .fi .PP \f[B]NOTE\f[R]: abrmd and tabrmd are synonymous. .RE .PP PCR bank specifiers .SH Supported Hash Algorithms .PP Supported hash algorithms are: .IP \[bu] 2 \f[B]0x4\f[R] or \f[B]sha1\f[R] for \f[B]TPM_ALG_SHA1\f[R] .IP \[bu] 2 \f[B]0xB\f[R] or \f[B]sha256\f[R] for \f[B]TPM_ALG_SHA256\f[R] \f[B](default)\f[R] .IP \[bu] 2 \f[B]0xC\f[R] or \f[B]sha384\f[R] for \f[B]TPM_ALG_SHA384\f[R] .IP \[bu] 2 \f[B]0xD\f[R] or \f[B]sha512\f[R] for \f[B]TPM_ALG_SHA512\f[R] .IP \[bu] 2 \f[B]0x12\f[R] or \f[B]sm3_256\f[R] for \f[B]TPM_ALG_SM3_256\f[R] .PP \f[B]NOTE\f[R]: Your TPM may not support all algorithms. .SH Algorithm Specifiers .PP Options that take algorithms support \[lq]nice-names\[rq]. .PP There are two major algorithm specification string classes, simple and complex. Only certain algorithms will be accepted by the TPM, based on usage and conditions. .SS Simple specifiers .PP These are strings with no additional specification data. When creating objects, non-specified portions of an object are assumed to defaults. You can find the list of known \[lq]Simple Specifiers\[rq] below. .SS Asymmetric .IP \[bu] 2 rsa .IP \[bu] 2 ecc .SS Symmetric .IP \[bu] 2 aes .IP \[bu] 2 camellia .IP \[bu] 2 sm4 .SS Hashing Algorithms .IP \[bu] 2 sha1 .IP \[bu] 2 sha256 .IP \[bu] 2 sha384 .IP \[bu] 2 sha512 .IP \[bu] 2 sm3_256 .IP \[bu] 2 sha3_256 .IP \[bu] 2 sha3_384 .IP \[bu] 2 sha3_512 .SS Keyed Hash .IP \[bu] 2 hmac .IP \[bu] 2 xor .SS Signing Schemes .IP \[bu] 2 rsassa .IP \[bu] 2 rsapss .IP \[bu] 2 ecdsa .IP \[bu] 2 ecdaa .IP \[bu] 2 ecschnorr .IP \[bu] 2 sm2 .SS Asymmetric Encryption Schemes .IP \[bu] 2 oaep .IP \[bu] 2 rsaes .IP \[bu] 2 ecdh .SS Modes .IP \[bu] 2 ctr .IP \[bu] 2 ofb .IP \[bu] 2 cbc .IP \[bu] 2 cfb .IP \[bu] 2 ecb .SS Misc .IP \[bu] 2 null .SS Complex Specifiers .PP Objects, when specified for creation by the TPM, have numerous algorithms to populate in the public data. Things like type, scheme and asymmetric details, key size, etc. Below is the general format for specifying this data: \f[C]::\f[R] .SS Type Specifiers .PP This portion of the complex algorithm specifier is required. The remaining scheme and symmetric details will default based on the type specified and the type of the object being created. .IP \[bu] 2 aes - Default AES: aes128 .IP \[bu] 2 aes128\f[C]\f[R] - 128 bit AES with optional mode (\f[I]ctr\f[R]|\f[I]ofb\f[R]|\f[I]cbc\f[R]|\f[I]cfb\f[R]|\f[I]ecb\f[R]). If mode is not specified, defaults to \f[I]null\f[R]. .IP \[bu] 2 aes192\f[C]\f[R] - Same as aes128\f[C]\f[R], except for a 192 bit key size. .IP \[bu] 2 aes256\f[C]\f[R] - Same as aes128\f[C]\f[R], except for a 256 bit key size. .IP \[bu] 2 sm4 - Default SM4: sm4128 .IP \[bu] 2 sm4128 or sm4_128 \f[C]\f[R] - 128 bit SM4 with optional mode (\f[I]ctr\f[R]|\f[I]ofb\f[R]|\f[I]cbc\f[R]|\f[I]cfb\f[R]|\f[I]ecb\f[R]). If mode is not specified, defaults to \f[I]null\f[R]. .IP \[bu] 2 ecc - Elliptical Curve, defaults to ecc256. .IP \[bu] 2 ecc192 or ecc_nist_p192 - 192 bit ECC NIST curve .IP \[bu] 2 ecc224 or ecc_nist_p224 - 224 bit ECC NIST curve .IP \[bu] 2 ecc256 or ecc_nist_p256 - 256 bit ECC NIST curve .IP \[bu] 2 ecc384 or ecc_nist_p384 - 384 bit ECC NIST curve .IP \[bu] 2 ecc521 or ecc_nist_p521 - 521 bit ECC NIST curve .IP \[bu] 2 ecc_sm2 or ecc_sm2_p256 - 256 bit SM2 curve .IP \[bu] 2 rsa - Default RSA: rsa2048 .IP \[bu] 2 rsa1024 - RSA with 1024 bit keysize. .IP \[bu] 2 rsa2048 - RSA with 2048 bit keysize. .IP \[bu] 2 rsa3072 - RSA with 3072 bit keysize. .IP \[bu] 2 rsa4096 - RSA with 4096 bit keysize. .SS Scheme Specifiers .PP Next, is an optional field, it can be skipped. .PP Schemes are usually \f[B]Signing Schemes\f[R] or \f[B]Asymmetric Encryption Schemes\f[R]. Most signing schemes take a hash algorithm directly following the signing scheme. If the hash algorithm is missing, it defaults to \f[I]sha256\f[R]. Some take no arguments, and some take multiple arguments. .SS Hash Optional Scheme Specifiers .PP These scheme specifiers are followed by a dash and a valid hash algorithm, For example: \f[C]oaep-sha256\f[R]. .IP \[bu] 2 oaep .IP \[bu] 2 ecdh .IP \[bu] 2 rsassa .IP \[bu] 2 rsapss .IP \[bu] 2 ecdsa .IP \[bu] 2 ecschnorr .IP \[bu] 2 sm2 .SS Multiple Option Scheme Specifiers .PP This scheme specifier is followed by a count (max size UINT16) then followed by a dash(-) and a valid hash algorithm. * ecdaa For example, ecdaa4-sha256. If no count is specified, it defaults to 4. .SS No Option Scheme Specifiers .PP This scheme specifier takes NO arguments. * rsaes .SS Symmetric Details Specifiers .PP This field is optional, and defaults based on the \f[I]type\f[R] of object being created and it\[cq]s attributes. Generally, any valid \f[B]Symmetric\f[R] specifier from the \f[B]Type Specifiers\f[R] list should work. If not specified, an asymmetric objects symmetric details defaults to \f[I]aes128cfb\f[R]. .SS Examples .SS Create an rsa2048 key with an rsaes asymmetric encryption scheme .PP \f[C]tpm2_create -C parent.ctx -G rsa2048:rsaes -u key.pub -r key.priv\f[R] .SS Create an ecc256 key with an ecdaa signing scheme with a count of 4 and sha384 hash .PP \f[C]/tpm2_create -C parent.ctx -G ecc256:ecdaa4-sha384 -u key.pub -r key.priv\f[R] .SH EXAMPLES .SS Display all PCR values .IP .nf \f[C] tpm2_pcrread \f[R] .fi .SS Display the PCR values with a specified bank .IP .nf \f[C] tpm2_pcrread sha1 \f[R] .fi .SS Display the PCR values with specified banks and store in a file .IP .nf \f[C] tpm2_pcrread -o pcrs sha1:16,17,18+sha256:16,17,18 \f[R] .fi .SS Display the supported PCR bank algorithms and exit .IP .nf \f[C] tpm2_pcrread \f[R] .fi .SH NOTES .PP The maximum number of PCR that can be dumped at once is associated with the maximum length of a bank. .PP On most TPMs, it means that this tool can dump up to 24 PCRs at once. .SH Returns .PP Tools can return any of the following codes: .IP \[bu] 2 0 - Success. .IP \[bu] 2 1 - General non-specific error. .IP \[bu] 2 2 - Options handling error. .IP \[bu] 2 3 - Authentication error. .IP \[bu] 2 4 - TCTI related error. .IP \[bu] 2 5 - Non supported scheme. Applicable to tpm2_testparams. .SH BUGS .PP Github Issues (https://github.com/tpm2-software/tpm2-tools/issues) .SH HELP .PP See the Mailing List (https://lists.linuxfoundation.org/mailman/listinfo/tpm2)