RATS Working Group | G. Mandyam |
Internet-Draft | Qualcomm Technologies Inc. |
Intended status: Standards Track | L. Lundblade |
Expires: July 12, 2020 | Security Theory LLC |
M. Ballesteros | |
J. O'Donoghue | |
Qualcomm Technologies Inc. | |
January 09, 2020 |
The Entity Attestation Token (EAT)
draft-ietf-rats-eat-02
An Entity Attestation Token (EAT) provides a signed (attested) set of claims that describe state and characteristics of an entity, typically a device like a phone or an IoT device. These claims are used by a relying party to determine how much it wishes to trust the entity.
An EAT is either a CWT or JWT with some attestation-oriented claims. To a large degree, all this document does is extend CWT and JWT.
TBD
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is at https://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as "work in progress."
This Internet-Draft will expire on July 12, 2020.
Copyright (c) 2020 IETF Trust and the persons identified as the document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.
Remote device attestation is a fundamental service that allows a remote device such as a mobile phone, an Internet-of-Things (IoT) device, or other endpoint to prove itself to a relying party, a server or a service. This allows the relying party to know some characteristics about the device and decide whether it trusts the device.
Remote attestation is a fundamental service that can underlie other protocols and services that need to know about the trustworthiness of the device before proceeding. One good example is biometric authentication where the biometric matching is done on the device. The relying party needs to know that the device is one that is known to do biometric matching correctly. Another example is content protection where the relying party wants to know the device will protect the data. This generalizes on to corporate enterprises that might want to know that a device is trustworthy before allowing corporate data to be accessed by it.
The notion of attestation here is large and may include, but is not limited to the following:
An EAT token is either a CWT as defined in [RFC8392] or a JWT as defined in [RFC7519]. This specification defines additional claims for entity attestation.
This specification uses CDDL, [RFC8610], as the primary formalism to define each claim. The implementor then interprets the CDDL to come to either the CBOR [RFC7049] or JSON [ECMAScript] representation. In the case of JSON, Appendix E of [RFC8610] is followed. Additional rules are given in Section 4.3.2 of this document where Appendix E is insufficient. (Note that this is not to define a general means to translate between CBOR and JSON, but only to define enough such that the claims defined in this document can be rendered unambiguously in JSON).
An “entity” can be any device or device subassembly (“submodule”) that can generate its own attestation in the form of an EAT. The attestation should be cryptographically verifiable by the EAT consumer. An EAT at the device-level can be composed of several submodule EAT’s. It is assumed that any entity that can create an EAT does so by means of a dedicated root-of-trust (RoT).
Modern devices such as a mobile phone have many different execution environments operating with different security levels. For example, it is common for a mobile phone to have an “apps” environment that runs an operating system (OS) that hosts a plethora of downloadable apps. It may also have a TEE (Trusted Execution Environment) that is distinct, isolated, and hosts security-oriented functionality like biometric authentication. Additionally, it may have an eSE (embedded Secure Element) - a high security chip with defenses against HW attacks that can serve as a RoT. This device attestation format allows the attested data to be tagged at a security level from which it originates. In general, any discrete execution environment that has an identifiable security level can be considered an entity.
At least the following three participants exist in all EAT operating models. Some operating models have additional participants.
In all operating models, the manufacturer provisions some secret attestation key material (AKM) into the entity during manufacturing. This might be during the manufacturer of a chip at a fabrication facility (fab) or during final assembly of a consumer product or any time in between. This attestation key material is used for signing EATs.
In all operating models, hardware and/or software on the entity create an EAT of the format described in this document. The EAT is always signed by the attestation key material provisioned by the manufacturer.
In all operating models, the relying party must end up knowing that the signature on the EAT is valid and consistent with data from claims in the EAT. This can happen in many different ways. Here are some examples.
All these operating models are supported and there is no preference of one over the other. It is important to support this variety of operating models to generally facilitate deployment and to allow for some special scenarios. One special scenario has a validation service that is monetized, most likely by the manufacturer. In another, a privacy proxy service processes the EAT before it is transmitted to the relying party. In yet another, symmetric key material is used for signing. In this case the manufacturer should perform the verification, because any release of the key material would enable a participant other than the entity to create valid signed EATs.
The following is not standardized for EAT, just the same they are not standardized for CWT or JWT.
EATs may be transmitted by any protocol the same as CWTs and JWTs. For example, they might be added in extension fields of other protocols, bundled into an HTTP header, or just transmitted as files. This flexibility is intentional to allow broader adoption. This flexibility is possible because EAT’s are self-secured with signing (and possibly additionally with encryption and anti-replay). The transmission protocol is not required to fulfill any additional security requirements.
For certain devices, a direct connection may not exist between the EAT-producing device and the Relying Party. In such cases, the EAT should be protected against malicious access. The use of COSE and JOSE allows for signing and encryption of the EAT. Therefore, even if the EAT is conveyed through intermediaries between the device and Relying Party, such intermediaries cannot easily modify the EAT payload or alter the signature.
The term “signing scheme” is used to refer to the system that includes end-end process of establishing signing attestation key material in the entity, signing the EAT, and verifying it. This might involve key IDs and X.509 certificate chains or something similar but different. The term “signing algorithm” refers just to the algorithm ID in the COSE signing structure. No particular signing algorithm or signing scheme is required by this standard.
There are three main implementation issues driving this. First, secure non-volatile storage space in the entity for the attestation key material may be highly limited, perhaps to only a few hundred bits, on some small IoT chips. Second, the factory cost of provisioning key material in each chip or device may be high, with even millisecond delays adding to the cost of a chip. Third, privacy-preserving signing schemes like ECDAA (Elliptic Curve Direct Anonymous Attestation) are complex and not suitable for all use cases.
Over time to faciliate interoperability, some signing schemes may be defined in EAT profiles or other documents either in the IETF or outside.
The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “NOT RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.
This document reuses terminology from JWT [RFC7519], COSE [RFC8152], and CWT [RFC8392].
This section describes new claims defined for attestation. It also mentions several claims defined by CWT and JWT that are particularly important for EAT.
Note also: * Any claim defined for CWT or JWT may be used in an EAT including those in the CWT [IANA.CWT.Claims] and JWT IANA [IANA.JWT.Claims] claims registries.
CDDL along with text descriptions is used to define the information model. Each claim is defined as a CDDL group (the group is a general aggregation and type definition feature of CDDL). In the data model, described in the Section 4, the CDDL groups turn into CBOR map entries and JSON name/value pairs.
CWT defines the “cti” claim. JWT defines the “jti” claim. These are equivalent to each other in EAT and carry a unique token identifier as they do in JWT and CWT. They may be used to defend against re use of the token but are distinct from the nonce that is used by the relying party to guarantee freshness and defend against replay.
The “iat” claim defined in CWT and JWT is used to indicate the date-of-creation of the token.
All EATs should have a nonce to prevent replay attacks. The nonce is generated by the relying party, the end consumer of the token. It is conveyed to the entity over whatever transport is in use before the token is generated and then included in the token as the nonce claim.
This documents the nonce claim for registration in the IANA CWT claims registry. This is equivalent to the JWT nonce claim that is already registered.
The nonce must be at least 8 bytes (64 bits) as fewer are unlikely to be secure. A maximum of 64 bytes is set to limit the memory a constrained implementation uses. This size range is not set for the already-registered JWT nonce, but it should follow this size recommendation when used in an EAT.
nonce_claim = ( nonce => bstr .size (8..64) )
UEID’s identify individual manufactured entities / devices such as a mobile phone, a water meter, a Bluetooth speaker or a networked security camera. It may identify the entire device or a submodule or subsystem. It does not identify types, models or classes of devices. It is akin to a serial number, though it does not have to be sequential.
UEID’s must be universally and globally unique across manufacturers and countries. UEIDs must also be unique across protocols and systems, as tokens are intended to be embedded in many different protocols and systems. No two products anywhere, even in completely different industries made by two different manufacturers in two different countries should have the same UEID (if they are not global and universal in this way, then relying parties receiving them will have to track other characteristics of the device to keep devices distinct between manufacturers).
There are privacy considerations for UEID’s. See Section 6.1.
The UEID should be permanent. It should never change for a given device / entity. In addition, it should not be reprogrammable. UEID’s are variable length. The recommended maximum is 33 bytes (1 type byte and 256 bits). The recommended minimum is 17 bytes (1 type and 128 bits) because fewer bytes endanger the universal uniqueness.
When the entity constructs the UEID, the first byte is a type and the following bytes the ID for that type. Several types are allowed to accommodate different industries and different manufacturing processes and to give options to avoid paying fees for certain types of manufacturer registrations.
Creation of new types requires a Standards Action [RFC8126].
Type Byte | Type Name | Specification |
---|---|---|
0x01 | RAND | This is a 128- to 256-bit random number generated once and stored in the device. This may be constructed by concatenating enough identifiers to be universally unique and then feeding the concatenation through a cryptographic hash function. It may also be a cryptographic quality random number generate once at the beginning of the life of the device and stored. |
0x02 | IEEE EUI | This makes use of the IEEE company identification registry. An EUI is made up of an OUI and OUI-36 or a CID, different registered company identifiers, and some unique per-device identifier. EUIs are often the same as or similar to MAC addresses. (Note that while devices with multiple network interfaces may have multiple MAC addresses, there is only one UEID for a device) TODO: normative references to IEEE. |
0x03 | IMEI | This is a 14-digit identifier consisting of an 8-digit Type Allocation Code and a 6-digit serial number allocated by the manufacturer, which SHALL be encoded as a binary integer over 48 bits. The IMEI value encoded SHALL NOT include Luhn checksum or SVN information. |
0x04 | EUI-48 | This is a 48-bit identifier formed by concatenating the 24-bit OUI with a 24-bit identifier assigned by the organisation that purchased the OUI. |
0x05 | EUI-60 | This is a 60-bit identifier formed by concatenating the 24-bit OUI with a 36-bit identifier assigned by the organisation that purchased the OUI. |
0x06 | EUI-64 | This is a 64-bit identifier formed by concatenating the 24-bit OUI with a 40-bit identifier assigned by the organisation that purchased the OUI. |
UEID’s are not designed for direct use by humans (e.g., printing on the case of a device), so no textual representation is defined.
The consumer (the relying party) of a UEID MUST treat a UEID as a completely opaque string of bytes and not make any use of its internal structure. For example, they should not use the OUI part of a type 0x02 UEID to identify the manufacturer of the device. Instead they should use the OUI claim that is defined elsewhere. The reasons for this are:
ueid_claim = ( ueid: bstr )
This claim describes the parts of the device or entity that are creating the EAT. Often it will be tied back to the device or chip manufacturer. The following table gives some examples:
Name | Description |
---|---|
Acme-TEE | The EATs are generated in the TEE authored and configured by “Acme” |
Acme-TPM | The EATs are generated in a TPM manufactured by “Acme” |
Acme-Linux-Kernel | The EATs are generated in a Linux kernel configured and shipped by “Acme” |
Acme-TA | The EATs are generated in a Trusted Application (TA) authored by “Acme” |
TODO: consider a more structure approach where the name and the URI and other are in separate fields.
TODO: This needs refinement. It is somewhat parallel to issuer claim in CWT in that it describes the authority that created the token.
origination_claim = ( origination: string_or_uri )
The IEEE operates a global registry for MAC addresses and company IDs. This claim uses that database to identify OEMs. The contents of the claim may be either an IEEE MA-L, MA-M, MA-S or an IEEE CID [IEEE.RA]. An MA-L, formerly known as an OUI, is a 24-bit value used as the first half of a MAC address. MA-M similarly is a 28-bit value uses as the first part of a MAC address, and MA-S, formerly known as OUI-36, a 36-bit value. Many companies already have purchased one of these. A CID is also a 24-bit value from the same space as an MA-L, but not for use as a MAC address. IEEE has published Guidelines for Use of EUI, OUI, and CID [OUI.Guide] and provides a lookup services [OUI.Lookup]
Companies that have more than one of these IDs or MAC address blocks should pick one and prefer that for all their devices.
Commonly, these are expressed in Hexadecimal Representation [IEEE.802-2001] also called the Canonical format. When this claim is encoded order of bytes in the bstr are the same as the order in the Hexadecimal Representation. For example, an MA-L like “AC-DE-48” would be encoded in 3 bytes with values 0xAC, 0xDE, 0x48. For JSON encoded tokens, this is further base64url encoded.
oemid_claim = ( oemid: bstr )
EATs have a claim that roughly characterizes the device / entities ability to defend against attacks aimed at capturing the signing key, forging claims and at forging EATs. This is done by roughly defining four security levels as described below. This is similar to the security levels defined in the Metadata Service defined by the Fast Identity Online (FIDO) Alliance (TODO: reference).
These claims describe security environment and countermeasures available on the end-entity / client device where the attestation key reside and the claims originate.
This claim is not intended as a replacement for a proper end-device security certification schemes such as those based on FIPS (TODO: reference) or those based on Common Criteria (TODO: reference). The claim made here is solely a self-claim made by the Entity Originator.
security_level_type = ( unrestricted: 1, restricted: 2, secure_restricted: 3, hardware: 4 ) security_level_claim = ( security_level: security_level_type )
This claim is an array of five Boolean values indicating the boot and debug state of the entity.
This indicates whether secure boot is enabled either for an entire device or an individual submodule. If it appears at the device level, then this means that secure boot is enabled for all submodules. Secure boot enablement allows a secure boot loader to authenticate software running either in a device or a submodule prior allowing execution.
This indicates whether debug capabilities are disabled for an entity (i.e. value of ‘true’). Debug disablement is considered a prerequisite before an entity is considered operational.
This claim indicates whether debug capabilities for the entity were not disabled in any way since boot (i.e. value of ‘true’).
This claim indicates whether debug capabilities for the entity are permanently disabled (i.e. value of ‘true’). This value can be set to ‘true’ also if only the manufacturer is allowed to enabled debug, but the end user is not.
This claim indicates whether debug capabilities for the entity are permanently disabled (i.e. value of ‘true’). This value can only be set to ‘true’ if no party can enable debug capabilities for the entity. Often this is implemented by blowing a fuse on a chip as fuses cannot be restored once blown.
boot_state_type = [ secure_boot_enabled=> bool, debug_disabled=> bool, debug_disabled_since_boot=> bool, debug_permanent_disable=> bool, debug_full_permanent_disable=> bool ] boot_state_claim = ( boot_state: boot_state_type )
The location claim is a CBOR-formatted object that describes the location of the device entity from which the attestation originates. It is comprised of a map of additional sub claims that represent the actual location coordinates (latitude, longitude and altitude). The location coordinate claims are consistent with the WGS84 coordinate system [WGS84]. In addition, a sub claim providing the estimated accuracy of the location measurement is defined.
location_type = { latitude => number, longitude => number, altitude => number, accuracy => number, altitude_accuracy => number, heading => number, speed => number } location_claim = ( location: location_type )
The “age” claim contains a value that represents the number of seconds that have elapsed since the token was created, measurement was made, or location was obtained. Typical attestable values are sent as soon as they are obtained. However, in the case that such a value is buffered and sent at a later time and a sufficiently accurate time reference is unavailable for creation of a timestamp, then the age claim is provided.
age_claim = ( age: uint)
The “uptime” claim contains a value that represents the number of seconds that have elapsed since the entity or submod was last booted.
uptime_claim = ( uptime: uint )
It is allowed for one EAT to be embedded in another. This is for complex devices that have more than one subsystem capable of generating an EAT. For example, one might be the device-wide EAT that is low to medium security and another from a Secure Element or similar that is high security.
The contents of the “nested_eat” claim must be a fully signed, optionally encrypted, EAT token.
nested_eat_claim = ( nested_eat: nested_eat_type)
A nested_eat_type is defined in words rather than CDDL. It is either a full CWT or JWT including the COSE or JOSE signing.
Some devices are complex, having many subsystems or submodules. A mobile phone is a good example. It may have several connectivity submodules for communications (e.g., Wi-Fi and cellular). It may have subsystems for low-power audio and video playback. It may have one or more security-oriented subsystems like a TEE or a Secure Element.
The claims for each these can be grouped together in a submodule.
Specifically, the “submods” claim is an array. Each item in the array is a CBOR map containing all the claims for a particular submodule.
The security level of the submod is assumed to be at the same level as the main entity unless there is a security level claim in that submodule indicating otherwise. The security level of a submodule can never be higher (more secure) than the security level of the EAT it is a part of.
Each submodule should have a submod_name claim that is descriptive name. This name should be the CBOR txt type.
In the following a generic_claim_type is any CBOR map entry or JSON name/value pair.
submod_name_type = ( submod_name: tstr ) submods_type = [ * submod_claims ] submod_claims = { submod_name_type, * generic_claim_type } submods_claim = ( submods: submod_type )
This makes use of the types defined in CDDL Appendix D, Standard Prelude.
string_or_uri = #6.32(tstr) / tstr; See JSON section below for JSON encoding of string_or_uri
This section provides CDDL for the claims defined in CWT. It is non-normative as [RFC8392] is the authoritative definition of these claims.
cwt_claim = ( issuer_claim // subject_claim // audience_claim // expiration_claim // not_before_claim // issued_at_calim // cwt_id_claim ) issuer_claim = ( issuer: string_or_uri ) subject_claim = ( subject: string_or_uri ) audience_claim = ( audience: string_or_uri ) expiration_claim = ( expiration: time ) not_before_claim = ( not_before: time ) issued_at_calim = ( issued_at: time ) cwt_id_claim = ( cwt_id: bstr ) issuer = 1 subject = 2 audience = 3 expiration = 4 not_before = 5 issued_at = 6 cwt_id = 7
ueid = "ueid" origination = "origination" oemid = "oemid" security_level = "security_level" boot_state = "boot_state" location = "location" age = "age" uptime = "uptime" nested_eat = "nested_eat" submods = "submods" latitude = "lat"" longitude = "long"" altitude = "alt" accuracy = "accry" altitude_accuracy = "alt_accry" heading = "heading" speed = "speed"
JSON should be encoded per RFC 8610 Appendix E. In addition, the following CDDL types are encoded in JSON as follows:
ueid = 8 origination = 9 oemid = 10 security_level = 11 boot_state = 12 location = 13 age = 14 uptime = 15 nested_eat = 16 submods = 17 submod_name = 18 nonce = 19 latitude = 1 longitude = 2 altitude = 3 accuracy = 4 altitude_accuracy = 5 heading = 6 speed = 7
Variations in the CBOR serializations supported in CBOR encoding and decoding are allowed and suggests that CBOR-based protocols specify how this variation is handled. This section specifies what formats MUST be supported in order to achieve interoperability.
The assumption is that the entity is likely to be a constrained device and relying party is likely to be a very capable server. The approach taken is that the entity generating the token can use whatever encoding it wants, specifically encodings that are easier to implement such as indefinite lengths. The relying party receiving the token must support decoding all encodings.
These rules cover all types used in the claims in this document. They also are recommendations for additional claims.
Canonical CBOR encoding, Preferred Serialization and Deterministically Encoded CBOR are explicitly NOT required as they would place an unnecessary burden on the entity implementation, particularly if the entity implementation is implemented in hardware.
A generic_claim is any CBOR map entry or JSON name/value pair.
eat_claims = { ; the top-level payload that is signed using COSE or JOSE * claim } claim = ( ueid_claim // origination_claim // oemid_claim // security_level_claim // boot_state_claim // location_claim // age_claim // uptime_claim // nested_eat_claim // cwt_claim // generic_claim_type // )
TODO: copy the rest of the CDDL here (wait until the CDDL is more settled so as to avoid copying multiple times)
Claims defined for EAT are compatible with those of CWT so the CWT Claims Registry is re used. No new IANA registry is created. All EAT claims should be registered in the CWT and JWT Claims Registries.
TODO: add the rest of the claims in here
Certain EAT claims can be used to track the owner of an entity and therefore, implementations should consider providing privacy-preserving options dependent on the intended usage of the EAT. Examples would include suppression of location claims for EAT’s provided to unauthenticated consumers.
A UEID is usually not privacy-preserving. Any set of relying parties that receives tokens that happen to be from a single device will be able to know the tokens are all from the same device and be able to track the device. Thus, in many usage situations ueid violates governmental privacy regulation. In other usage situations UEID will not be allowed for certain products like browsers that give privacy for the end user. It will often be the case that tokens will not have a UEID for these reasons.
There are several strategies that can be used to still be able to put UEID’s in tokens:
Note that some of these privacy preservation strategies result in multiple UEIDs per device. Each UEID is used in a different context, use case or system on the device. However, from the view of the relying party, there is just one UEID and it is still globally universal across manufacturers.
TODO: Perhaps this can be the same as CWT / COSE, but not sure yet because it involves so much entity / device security that those do not.
[ASN.1] | International Telecommunication Union, "Information Technology -- ASN.1 encoding rules: Specification of Basic Encoding Rules (BER), Canonical Encoding Rules (CER) and Distinguished Encoding Rules (DER)", ITU-T Recommendation X.690, 1994. |
[ECMAScript] | "Ecma International, "ECMAScript Language Specification, 5.1 Edition", ECMA Standard 262", June 2011. |
[IDevID] | "IEEE Standard, "IEEE 802.1AR Secure Device Identifier"", December 2009. |
[IEEE.802-2001] | "IEEE Standard For Local And Metropolitan Area Networks Overview And Architecture", 2007. |
[IEEE.RA] | "IEEE Registration Authority" |
[OUI.Guide] | "Guidelines for Use of Extended Unique Identifier (EUI), Organizationally Unique Identifier (OUI), and Company ID (CID)", August 2017. |
[OUI.Lookup] | "IEEE Registration Authority Assignments" |
[Webauthn] | Worldwide Web Consortium, "Web Authentication: A Web API for accessing scoped credentials", 2016. |
This is shown in CBOR diagnostic form. Only the payload signed by COSE is shown.
{ / nonce (cti) / 7:h'948f8860d13a463e8e', / UEID / 8:h'0198f50a4ff6c05861c8860d13a638ea4fe2f', / boot_state / 12:{true, true, true, true, false} / time stamp (iat) / 6:1526542894, }
{ / nonce / 7:h'948f8860d13a463e8e', / UEID / 8:h'0198f50a4ff6c05861c8860d13a638ea4fe2f', / boot_state / 12:{true, true, true, true, false} / time stamp (iat) / 6:1526542894, / seclevel / 11:3, / secure restricted OS / / submods / 17: [ / 1st submod, an Android Application / { / submod_name / 18:'Android App "Foo"', / seclevel / 11:1, / unrestricted / / app data / -70000:'text string' }, / 2nd submod, A nested EAT from a secure element / { / submod_name / 18:'Secure Element EAT', / eat / 16:61( 18( / an embedded EAT / [ /...COSE_Sign1 bytes with payload.../ ] )) } / 3rd submod, information about Linux Android / { / submod_name/ 18:'Linux Android', / seclevel / 11:1, / unrestricted / / custom - release / -80000:'8.0.0', / custom - version / -80001:'4.9.51+' } ] }
The following is a list of known changes from the previous drafts. This list is non-authoritative. It is meant to help reviewers see the significant differences.
This is a fairly large change in the orientation of the document, but not new claims have been added.