<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.2.12 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc rfcedstyle="yes"?>
<?rfc toc="yes"?>
<?rfc tocindent="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc strict="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc text-list-symbols="-o*+"?>
<?rfc docmapping="yes"?>
<?rfc toc_levels="4"?>

<rfc ipr="trust200902" docName="draft-ietf-suit-manifest-10" category="std">

  <front>
    <title abbrev="CBOR-based SUIT Manifest">A Concise Binary Object Representation (CBOR)-based Serialization Format for the Software Updates for Internet of Things (SUIT) Manifest</title>

    <author initials="B." surname="Moran" fullname="Brendan Moran">
      <organization>Arm Limited</organization>
      <address>
        <email>Brendan.Moran@arm.com</email>
      </address>
    </author>
    <author initials="H." surname="Tschofenig" fullname="Hannes Tschofenig">
      <organization>Arm Limited</organization>
      <address>
        <email>hannes.tschofenig@arm.com</email>
      </address>
    </author>
    <author initials="H." surname="Birkholz" fullname="Henk Birkholz">
      <organization>Fraunhofer SIT</organization>
      <address>
        <email>henk.birkholz@sit.fraunhofer.de</email>
      </address>
    </author>
    <author initials="K." surname="Zandberg" fullname="Koen Zandberg">
      <organization>Inria</organization>
      <address>
        <email>koen.zandberg@inria.fr</email>
      </address>
    </author>

    <date year="2020" month="November" day="02"/>

    <area>Security</area>
    <workgroup>SUIT</workgroup>
    <keyword>Internet-Draft</keyword>

    <abstract>


<t>This specification describes the format of a manifest.  A manifest is
a bundle of metadata about code/data obtained by a recipient (chiefly
the firmware for an IoT device), where to find the that code/data, the
devices to which it applies, and cryptographic information protecting
the manifest. Software updates and Trusted Invocation both tend to use
sequences of common operations, so the manifest encodes those sequences
of operations, rather than declaring the metadata.</t>



    </abstract>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>A firmware update mechanism is an essential security feature for IoT devices to deal with vulnerabilities. While the transport of firmware images to the devices themselves is important there are already various techniques available. Equally important is the inclusion of metadata about the conveyed firmware image (in the form of a manifest) and the use of a security wrapper to provide end-to-end security protection to detect modifications and (optionally) to make reverse engineering more difficult. End-to-end security allows the author, who builds the firmware image, to be sure that no other party (including potential adversaries) can install firmware updates on IoT devices without adequate privileges. For confidentiality protected firmware images it is additionally required to encrypt the firmware image. Starting security protection at the author is a risk mitigation technique so firmware images and manifests can be stored on untrusted repositories; it also reduces the scope of a compromise of any repository or intermediate system to be no worse than a denial of service.</t>

<t>A manifest is a bundle of metadata describing one or more code or data payloads and how to:</t>

<t><list style="symbols">
  <t>Obtain any dependencies</t>
  <t>Obtain the payload(s)</t>
  <t>Install them</t>
  <t>Verify them</t>
  <t>Load them into memory</t>
  <t>Invoke them</t>
</list></t>

<t>This specification defines the SUIT manifest format and it is intended to meet several goals:</t>

<t><list style="symbols">
  <t>Meet the requirements defined in <xref target="I-D.ietf-suit-information-model"/>.</t>
  <t>Simple to parse on a constrained node</t>
  <t>Simple to process on a constrained node</t>
  <t>Compact encoding</t>
  <t>Comprehensible by an intermediate system</t>
  <t>Expressive enough to enable advanced use cases on advanced nodes</t>
  <t>Extensible</t>
</list></t>

<t>The SUIT manifest can be used for a variety of purposes throughout its lifecycle, such as:</t>

<t><list style="symbols">
  <t>a Firmware Author to reason about releasing a firmware.</t>
  <t>a Network Operator to reason about compatibility of a firmware.</t>
  <t>a Device Operator to reason about the impact of a firmware.</t>
  <t>the Device Operator to manage distribution of firmware to devices.</t>
  <t>a Plant Manager to reason about timing and acceptance of firmware updates.</t>
  <t>a device to reason about the authority &amp; authenticity of a firmware prior to installation.</t>
  <t>a device to reason about the applicability of a firmware.</t>
  <t>a device to reason about the installation of a firmware.</t>
  <t>a device to reason about the authenticity &amp; encoding of a firmware at boot.</t>
</list></t>

<t>Each of these uses happens at a different stage of the manifest lifecycle, so each has different requirements.</t>

<t>It is assumed that the reader is familiar with the high-level firmware update architecture <xref target="I-D.ietf-suit-architecture"/> and the threats, requirements, and user stories in <xref target="I-D.ietf-suit-information-model"/>.</t>

<t>The design of this specification is based on an observation that the vast majority of operations that a device can perform during an update or Trusted Invocation are composed of a small group of operations:</t>

<t><list style="symbols">
  <t>Copy some data from one place to another</t>
  <t>Transform some data</t>
  <t>Digest some data and compare to an expected value</t>
  <t>Compare some system parameters to an expected value</t>
  <t>Run some code</t>
</list></t>

<t>In this document, these operations are called commands. Commands are classed as either conditions or directives. Conditions have no side-effects, while directives do have side-effects. Conceptually, a sequence of commands is like a script but the used language is tailored to software updates and Trusted Invocation.</t>

<t>The available commands support simple steps, such as copying a firmware image from one place to another, checking that a firmware image is correct, verifying that the specified firmware is the correct firmware for the device, or unpacking a firmware. By using these steps in different orders and changing the parameters they use, a broad range of use cases can be supported. The SUIT manifest uses this observation to optimize metadata for consumption by constrained devices.</t>

<t>While the SUIT manifest is informed by and optimized for firmware update and Trusted Invocation use cases, there is nothing in the <xref target="I-D.ietf-suit-information-model"/> that restricts its use to only those use cases. Other use cases include the management of trusted applications (TAs) in a Trusted Execution Environment (TEE), as discussed in <xref target="I-D.ietf-teep-architecture"/>.</t>

</section>
<section anchor="conventions-and-terminology" title="Conventions and Terminology">

<t>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 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>

<t>Additionally, the following terminology is used throughout this document:</t>

<t><list style="symbols">
  <t>SUIT: Software Update for the Internet of Things, also the IETF working group for this standard.</t>
  <t>Payload: A piece of information to be delivered. Typically Firmware for the purposes of SUIT.</t>
  <t>Resource: A piece of information that is used to construct a payload.</t>
  <t>Manifest: A manifest is a bundle of metadata about the firmware for an IoT device, where to
find the firmware, and the devices to which it applies.</t>
  <t>Envelope: A container with the manifest, an authentication wrapper with cryptographic information protecting the manifest, authorization information, and severable elements (see: TBD).</t>
  <t>Update: One or more manifests that describe one or more payloads.</t>
  <t>Update Authority: The owner of a cryptographic key used to sign updates, trusted by Recipients.</t>
  <t>Recipient: The system, typically an IoT device, that receives and processes a manifest.</t>
  <t>Manifest Processor: A component of the Recipient that consumes Manifests and executes the commands in the Manifest.</t>
  <t>Component: An updatable logical block of the Firmware, Software, configuration, or data of the Recipient.</t>
  <t>Component Set: A group of interdependent Components that must be updated simultaneously.</t>
  <t>Command: A Condition or a Directive.</t>
  <t>Condition: A test for a property of the Recipient or its Components.</t>
  <t>Directive: An action for the Recipient to perform.</t>
  <t>Trusted Invocation: A process by which a system ensures that only trusted code is executed, for example secure boot or launching a Trusted Application.</t>
  <t>A/B images: Dividing a Recipient’s storage into two or more bootable images, at different offsets, such that the active image can write to the inactive image(s).</t>
  <t>Record: The result of a Command and any metadata about it.</t>
  <t>Report: A list of Records.</t>
  <t>Procedure: The process of invoking one or more sequences of commands.</t>
  <t>Update Procedure: A procedure that updates a Recipient by fetching dependencies and images, and installing them.</t>
  <t>Invocation Procedure: A procedure in which a Recipient verifies dependencies and images, loading images, and invokes one or more image.</t>
  <t>Software: Instructions and data that allow a Recipient to perform a useful function.</t>
  <t>Firmware: Software that is typically changed infrequently, stored in nonvolatile memory, and small enough to apply to <xref target="RFC7228"/> Class 0-2 devices.</t>
  <t>Image: Information that a Recipient uses to perform its function, typically firmware/software, configuration, or resource data such as text or images. Also, a Payload, once installed is an Image.</t>
  <t>Slot: One of several possible storage locations for a given Component, typically used in A/B image systems</t>
  <t>Abort: An event in which the Manifest Processor immediately halts execution of the current Procedure. It creates a Record of an error condition.</t>
</list></t>

</section>
<section anchor="how-to-use-this-document" title="How to use this Document">

<t>This specification covers five aspects of firmware update:</t>

<t><list style="symbols">
  <t><xref target="background"/> describes the device constraints, use cases, and design principles that informed the structure of the manifest.</t>
  <t><xref target="metadata-structure-overview"/> gives a general overview of the metadata structure to inform the following sections</t>
  <t><xref target="interpreter-behavior"/> describes what actions a Manifest processor should take.</t>
  <t><xref target="creating-manifests"/> describes the process of creating a Manifest.</t>
  <t><xref target="metadata-structure"/> specifies the content of the Envelope and the Manifest.</t>
</list></t>

<t>To implement an updatable device, see <xref target="interpreter-behavior"/> and <xref target="metadata-structure"/>.
To implement a tool that generates updates, see <xref target="creating-manifests"/> and <xref target="metadata-structure"/>.</t>

<t>The IANA consideration section, see <xref target="iana"/>, provides instructions to IANA to create several registries. This section also provides the CBOR labels for the structures defined in this document.</t>

<t>The complete CDDL description is provided in <xref target="full-cddl"/>, examples are given in <xref target="examples"/> and a design rational is offered in <xref target="design-rationale"/>. Finally, <xref target="implementation-matrix"/> gives a summarize of the mandatory-to-implement features of this specification.</t>

</section>
<section anchor="background" title="Background">

<t>Distributing software updates to diverse devices with diverse trust anchors in a coordinated system presents unique challenges. Devices have a broad set of constraints, requiring different metadata to make appropriate decisions. There may be many actors in production IoT systems, each of whom has some authority. Distributing firmware in such a multi-party environment presents additional challenges. Each party requires a different subset of data. Some data may not be accessible to all parties. Multiple signatures may be required from parties with different authorities. This topic is covered in more depth in <xref target="I-D.ietf-suit-architecture"/>. The security aspects are described in <xref target="I-D.ietf-suit-information-model"/>.</t>

<section anchor="iot-firmware-update-constraints" title="IoT Firmware Update Constraints">

<t>The various constraints of IoT devices and the range of use cases that need to be supported create a broad set of requirements. For example, devices with:</t>

<t><list style="symbols">
  <t>limited processing power and storage may require a simple representation of metadata.</t>
  <t>bandwidth constraints may require firmware compression or partial update support.</t>
  <t>bootloader complexity constraints may require simple selection between two bootable images.</t>
  <t>small internal storage may require external storage support.</t>
  <t>multiple microcontrollers may require coordinated update of all applications.</t>
  <t>large storage and complex functionality may require parallel update of many software components.</t>
  <t>extra information may need to be conveyed in the manifest in the earlier stages of the device lifecycle before those data items are stripped when the manifest is delivered to a constrained device.</t>
</list></t>

<t>Supporting the requirements introduced by the constraints on IoT devices requires the flexibility to represent a diverse set of possible metadata, but also requires that the encoding is kept simple.</t>

</section>
<section anchor="suit-workflow-model" title="SUIT Workflow Model">

<t>There are several fundamental assumptions that inform the model of Update Procedure workflow:</t>

<t><list style="symbols">
  <t>Compatibility must be checked before any other operation is performed.</t>
  <t>All dependency manifests should be present before any payload is fetched.</t>
  <t>In some applications, payloads must be fetched and validated prior to installation.</t>
</list></t>

<t>There are several fundamental assumptions that inform the model of the Invocation Procedure workflow:</t>

<t><list style="symbols">
  <t>Compatibility must be checked before any other operation is performed.</t>
  <t>All dependencies and payloads must be validated prior to loading.</t>
  <t>All loaded images must be validated prior to execution.</t>
</list></t>

<t>Based on these assumptions, the manifest is structured to work with a pull parser, where each section of the manifest is used in sequence. The expected workflow for a Recipient installing an update can be broken down into five steps:</t>

<t><list style="numbers">
  <t>Verify the signature of the manifest.</t>
  <t>Verify the applicability of the manifest.</t>
  <t>Resolve dependencies.</t>
  <t>Fetch payload(s).</t>
  <t>Install payload(s).</t>
</list></t>

<t>When installation is complete, similar information can be used for validating and running images in a further three steps:</t>

<t><list style="numbers">
  <t>Verify image(s).</t>
  <t>Load image(s).</t>
  <t>Run image(s).</t>
</list></t>

<t>If verification and running is implemented in a bootloader, then the bootloader MUST also verify the signature of the manifest and the applicability of the manifest in order to implement secure boot workflows. The bootloader may add its own authentication, e.g. a Message Authentication Code (MAC), to the manifest in order to prevent further verifications.</t>

<t>When multiple manifests are used for an update, each manifest’s steps occur in a lockstep fashion; all manifests have dependency resolution performed before any manifest performs a payload fetch, etc.</t>

</section>
</section>
<section anchor="metadata-structure-overview" title="Metadata Structure Overview">

<t>This section provides a high level overview of the manifest structure. The full description of the manifest structure is in <xref target="manifest-structure"/></t>

<t>The manifest is structured from several key components:</t>

<t><list style="numbers">
  <t>The Envelope (see <xref target="ovr-envelope"/>) contains Delegation Chains, the Authentication Block, the Manifest, any Severable Elements, and any Integrated Payloads or Dependencies.</t>
  <t>Delegation Chains (see <xref target="ovr-delegation"/>) allow a Recipient to work from one of its Trust Anchors to an authority of the Authentication Block.</t>
  <t>The Authentication Block (see <xref target="ovr-auth"/>) contains a list of signatures or MACs of the manifest..</t>
  <t>The Manifest (see <xref target="ovr-manifest"/>) contains all critical, non-severable metadata that the Recipient requires. It is further broken down into:  <list style="numbers">
      <t>Critical metadata, such as sequence number.</t>
      <t>Common metadata, including lists of dependencies and affected components.</t>
      <t>Command sequences, directing the Recipient how to install and use the payload(s).</t>
      <t>Integrity check values for severable elements.</t>
    </list></t>
  <t>Severable elements (see <xref target="ovr-severable"/>).</t>
  <t>Integrated dependencies (see <xref target="ovr-integrated"/>).</t>
  <t>Integrated payloads (see <xref target="ovr-integrated"/>).</t>
</list></t>

<t>The diagram below illustrates the hierarchy of the Envelope.</t>

<figure><artwork><![CDATA[
+-------------------------+
| Envelope                |
+-------------------------+
| Delegation Chains       |
| Authentication Block    |
| Manifest           --------------> +------------------------------+
| Severable Elements      |          | Manifest                     |
| Human-Readable Text     |          +------------------------------+
| COSWID                  |          | Structure Version            |
| Integrated Dependencies |          | Sequence Number              |
| Integrated Payloads     |          | Reference to Full Manifest   |
+-------------------------+    +------ Common Structure             |
                               | +---- Command Sequences            |
+-------------------------+    | |   | Digests of Envelope Elements |
| Common Structure        | <--+ |   +------------------------------+
+-------------------------+      |
| Dependencies            |      +-> +-----------------------+
| Components IDs          |          | Command Sequence      |
| Common Command Sequence ---------> +-----------------------+
+-------------------------+          | List of ( pairs of (  |
                                     |   * command code      |
                                     |   * argument /        |
                                     |      reporting policy |
                                     | ))                    |
                                     +-----------------------+
]]></artwork></figure>

<section anchor="ovr-envelope" title="Envelope">

<t>The SUIT Envelope is a container that encloses Delegation Chains, the Authentication Block, the Manifest, any Severable Elements, and any integrated payloads or dependencies. The Envelope is used instead of conventional cryptographic envelopes, such as COSE_Envelope because it allows modular processing, severing of elements, and integrated payloads in a way that would add substantial complexity with existing solutions. See <xref target="design-rationale-envelope"/> for a description of the reasoning for this.</t>

<t>See <xref target="envelope"/> for more detail.</t>

</section>
<section anchor="ovr-delegation" title="Delegation Chains">

<t>Delegation Chains allow a Recipient to establish a chain of trust from a Trust Anchor to the signer of a manifest by validating delegation claims. Each delegation claim is a <xref target="RFC8392"/> CBOR Web Tokens (CWTs). The first claim in each list is signed by a Trust Anchor. Each subsequent claim in a list is signed by the public key claimed in the preceding list element. The last element in each list claims a public key that can be used to verify a signature in the Authentication Block (<xref target="ovr-auth"/>).</t>

<t>See <xref target="delegation-info"/> for more detail.</t>

</section>
<section anchor="ovr-auth" title="Authentication Block">

<t>The Authentication Block contains a bstr-wrapped <xref target="SUIT_Digest"></xref> and one or more <xref target="RFC8152"/> CBOR Object Signing and Encryption (COSE) authentication blocks. These blocks are one of:</t>

<t><list style="symbols">
  <t>COSE_Sign_Tagged</t>
  <t>COSE_Sign1_Tagged</t>
  <t>COSE_Mac_Tagged</t>
  <t>COSE_Mac0_Tagged</t>
</list></t>

<t>Each of these objects is used in detached payload mode. The payload is the bstr-wrapped SUIT_Digest.</t>

<t>See <xref target="authentication-info"/> for more detail.</t>

</section>
<section anchor="ovr-manifest" title="Manifest">

<t>The Manifest contains most metadata about one or more images. The Manifest is divided into Critical Metadata, Common Metadata, Command Sequences, and Integrity Check Values.</t>

<t>See <xref target="manifest-structure"/> for more detail.</t>

<section anchor="ovr-critical" title="Critical Metadata">

<t>Some metadata needs to be accessed before the manifest is processed. This metadata can be used to determine which manifest is newest and whether the structure version is supported. It also MAY provide a URI for obtaining a canonical copy of the manifest and Envelope.</t>

<t>See <xref target="manifest-version"/>, <xref target="manifest-seqnr"/>, and <xref target="manifest-reference-uri"/> for more detail.</t>

</section>
<section anchor="ovr-common" title="Common">

<t>Some metadata is used repeatedly and in more than one command sequence. In order to reduce the size of the manifest, this metadata is collected into the Common section. Common is composed of three parts: a list of dependencies, a list of components referenced by the manifest, and a command sequence to execute prior to each other command sequence. The common command sequence is typically used to set commonly used values and perform compatibility checks. The common command sequence MUST NOT have any side-effects outside of setting parameter values.</t>

<t>See <xref target="manifest-common"/>, and <xref target="SUIT_Dependency"/> for more detail.</t>

</section>
<section anchor="ovr-commands" title="Command Sequences">

<t>Command sequences provide the instructions that a Recipient requires in order to install or use an image. These sequences tell a device to set parameter values, test system parameters, copy data from one place to another, transform data, digest data, and run code.</t>

<t>Command sequences are broken up into three groups: Common Command Sequence (see <xref target="ovr-common"/>), update commands, and secure boot commands.</t>

<t>Update Command Sequences are: Dependency Resolution, Payload Fetch, and Payload Installation. An Update Procedure is the complete set of each Update Command Sequence, each preceded by the Common Command Sequence.</t>

<t>Invocation Command Sequences are: System Validation, Image Loading, and Image Invocation. A Invocation Procedure is the complete set of each Invocation Command Sequence, each preceded by the Common Command Sequence.</t>

<t>Command Sequences are grouped into these sets to ensure that there is common coordination between dependencies and dependents on when to execute each command.</t>

<t>See <xref target="manifest-commands"/> for more detail.</t>

</section>
<section anchor="ovr-integrity" title="Integrity Check Values">

<t>To enable <xref target="ovr-severable"/>, there needs to be a mechanism to verify integrity of any metadata outside the manifest. Integrity Check Values are used to verify the integrity of metadata that is not contained in the manifest. This MAY include Severable Command Sequences, Concise Software Identifiers (<xref target="I-D.ietf-sacm-coswid">CoSWID</xref>), or Text data. Integrated Dependencies and Integrated Payloads are integrity-checked using Command Sequences, so they do not have Integrity Check Values present in the Manifest.</t>

<t>See <xref target="integrity-checks"/> for more detail.</t>

</section>
<section anchor="ovr-text" title="Human-Readable Text">

<t>Text is typically a Severable Element (<xref target="ovr-severable"/>). It contains all the text that describes the update. Because text is explicitly for human consumption, it is all grouped together so that it can be Severed easily. The text section has space both for describing the manifest as a whole and for describing each individual component.</t>

<t>See <xref target="manifest-digest-text"/> for more detail.</t>

</section>
</section>
<section anchor="ovr-severable" title=" Severable Elements">

<t>Severable Elements are elements of the Envelope (<xref target="ovr-envelope"/>) that have Integrity Check Values (<xref target="ovr-integrity"/>) in the Manifest (<xref target="ovr-manifest"/>).</t>

<t>Because of this organisation, these elements can be discarded or “Severed” from the Envelope without changing the signature of the Manifest. This allows savings based on the size of the Envelope in several scenarios, for example:</t>

<t><list style="symbols">
  <t>A management system severs the Text and CoSWID sections before sending an Envelope to a constrained Recipient, which saves Recipient bandwidth.</t>
  <t>A Recipient severs the Installation section after installing the Update, which saves storage space.</t>
</list></t>

<t>See <xref target="severable-fields"/> for more detail.</t>

</section>
<section anchor="ovr-integrated" title="Integrated Dependencies and Payloads">

<t>In some cases, it is beneficial to include a dependency or a payload in the Envelope of a manifest. For example:</t>

<t><list style="symbols">
  <t>When an update is delivered via a comparatively unconstrained medium, such as a removable mass storage device, it may be beneficial to bundle updates into single files.</t>
  <t>When a manifest requires encryption, it must be referenced as a dependency, so a trivial manifest may be used to enclose the encrypted manifest. The encrypted manifest may be contained in the dependent manifest’s envelope.</t>
  <t>When a manifest transports a small payload, such as an encrypted key, that payload may be placed in the manifest’s envelope.</t>
</list></t>

<t>See <xref target="composite-manifests"/>, <xref target="encrypted-manifests"/> for more detail.</t>

</section>
</section>
<section anchor="interpreter-behavior" title="Manifest Processor Behavior">

<t>This section describes the behavior of the manifest processor and focuses primarily on interpreting commands in the manifest. However, there are several other important behaviors of the manifest processor: encoding version detection, rollback protection, and authenticity verification are chief among these.</t>

<section anchor="interpreter-setup" title="Manifest Processor Setup">

<t>Prior to executing any command sequence, the manifest processor or its host application MUST inspect the manifest version field and fail when it encounters an unsupported encoding version. Next, the manifest processor or its host application MUST extract the manifest sequence number and perform a rollback check using this sequence number. The exact logic of rollback protection may vary by application, but it has the following properties:</t>

<t><list style="symbols">
  <t>Whenever the manifest processor can choose between several manifests, it MUST select the latest valid, authentic manifest.</t>
  <t>If the latest valid, authentic manifest fails, it MAY select the next latest valid, authentic manifest, according to application-specific policy.</t>
</list></t>

<t>Here, valid means that a manifest has a supported encoding version and it has not been excluded for other reasons. Reasons for excluding typically involve first executing the manifest and may include:</t>

<t><list style="symbols">
  <t>Test failed (e.g. Vendor ID/Class ID).</t>
  <t>Unsupported command encountered.</t>
  <t>Unsupported parameter encountered.</t>
  <t>Unsupported Component Identifier encountered.</t>
  <t>Payload not available.</t>
  <t>Dependency not available.</t>
  <t>Application crashed when executed.</t>
  <t>Watchdog timeout occurred.</t>
  <t>Dependency or Payload verification failed.</t>
  <t>Missing component from a set.</t>
  <t>Required parameter not supplied.</t>
</list></t>

<t>These failure reasons MAY be combined with retry mechanisms prior to marking a manifest as invalid.</t>

<t>Selecting an older manifest in the event of failure of the latest valid manifest is a robustness mechanism that is necessary for supporting the requirements in <xref target="I-D.ietf-suit-architecture"/>, section 3.5. It may not be appropriate for all applications. In particular Trusted Execution Environments MAY require a failure to invoke a new installation, rather than a rollback approach. See <xref target="I-D.ietf-suit-information-model"/>, Section 4.2.1 for more discussion on the security considerations that apply to rollback.</t>

<t>Following these initial tests, the manifest processor clears all parameter storage. This ensures that the manifest processor begins without any leaked data.</t>

</section>
<section anchor="required-checks" title=" Required Checks">

<t>The RECOMMENDED process is to verify the signature of the manifest prior to parsing/executing any section of the manifest. This guards the parser against arbitrary input by unauthenticated third parties, but it costs extra energy when a Recipient receives an incompatible manifest.</t>

<t>When validating authenticity of manifests, the manifest processor MAY use an ACL (see <xref target="access-control-lists"/>) to determine the extent of the rights conferred by that authenticity. Where a device supports only one level of access, it MAY choose to skip signature verification of dependencies, since they are referenced by digest. Where a device supports more than one trusted party, it MAY choose to defer the verification of signatures of dependencies until the list of affected components is known so that it can skip redundant signature verifications. For example, a dependency signed by the same author as the dependent does not require a signature verification. Similarly, if the signer of the dependent has full rights to the device, according to the ACL, then no signature verification is necessary on the dependency.</t>

<t>Once a valid, authentic manifest has been selected, the manifest processor MUST examine the component list and verify that its maximum number of components is not exceeded and that each listed component is supported.</t>

<t>For each listed component, the manifest processor MUST provide storage for the supported parameters. If the manifest processor does not have sufficient temporary storage to process the parameters for all components, it MAY process components serially for each command sequence. See <xref target="serial-processing"/> for more details.</t>

<t>The manifest processor SHOULD check that the common sequence contains at least Check Vendor Identifier command and at least one Check Class Identifier command.</t>

<t>Because the common sequence contains Check Vendor Identifier and Check Class Identifier command(s), no custom commands are permitted in the common sequence. This ensures that any custom commands are only executed by devices that understand them.</t>

<t>If the manifest contains more than one component and/or dependency, each command sequence MUST begin with a Set Component Index or Set Dependency Index command.</t>

<t>If a dependency is specified, then the manifest processor MUST perform the following checks:</t>

<t><list style="numbers">
  <t>At the beginning of each section in the dependent: all previous sections of each dependency have been executed.</t>
  <t>At the end of each section in the dependent: The corresponding section in each dependency has been executed.</t>
</list></t>

<t>If the interpreter does not support dependencies and a manifest specifies a dependency, then the interpreter MUST reject the manifest.</t>

<t>If a Recipient supports groups of interdependent components (a Component Set), then it SHOULD verify that all Components in the Component Set are specified by one update, where an update is composed of all the
TODO: Wording</t>

<t>manifest and its dependencies. This manifest is called the Root Manifest.</t>

<section anchor="minimal-sigs" title="Minimizing Signature Verifications">

<t>Signature verification can be energy and time expensive on a constrained device. MAC verification is typically unaffected by these concerns. A Recipient MAY choose to parse and execute only the SUIT_Common section of the manifest prior to signature verification, if all of the below apply:</t>

<t><list style="symbols">
  <t>The Authentication Block contains a COSE_Sign_Tagged or COSE_Sign1_Tagged</t>
  <t>The Recipient receives manifests over an unauthenticated channel, exposing it to more inauthentic or incompatible manifests, and</t>
  <t>The Recipient has a power budget that makes signature verification undesirable</t>
</list></t>

<t>The guidelines in Creating Manifests (<xref target="creating-manifests"/>) require that the common section contains the applicability checks, so this section is sufficient for applicability verification. The parser MUST restrict acceptable commands to conditions and the following directives: Override Parameters, Set Parameters, Try Each, and Run Sequence ONLY. The manifest parser MUST NOT execute any command with side-effects outside the parser (for example, Run, Copy, Swap, or Fetch commands) prior to authentication and any such command MUST Abort. The Common Sequence MUST be executed again in its entirety after authenticity validation.</t>

<t>When executing Common prior to authenticity validation, the Manifest Processor MUST evaluate the integrity of the manifest using the SUIT_Digest present in the authentication block.</t>

<t>Alternatively, a Recipient MAY rely on network infrastructure to filter inapplicable manifests.</t>

</section>
</section>
<section anchor="interpreter-fundamental-properties" title="Interpreter Fundamental Properties">

<t>The interpreter has a small set of design goals:</t>

<t><list style="numbers">
  <t>Executing an update MUST either result in an error, or a verifiably correct system state.</t>
  <t>Executing a Trusted Invocation MUST either result in an error, or an invoked image.</t>
  <t>Executing the same manifest on multiple Recipients MUST result in the same system state.</t>
</list></t>

<t>NOTE: when using A/B images, the manifest functions as two (or more) logical manifests, each of which applies to a system in a particular starting state. With that provision, design goal 3 holds.</t>

</section>
<section anchor="command-behavior" title="Abstract Machine Description">

<t>The heart of the manifest is the list of commands, which are processed by a Manifest Processor–a form of interpreter. This Manifest Processor can be modeled as a simple abstract machine. This machine consists of several data storage locations that are modified by commands.</t>

<t>There are two types of commands, namely those that modify state (directives) and those that perform tests (conditions). Parameters are used as the inputs to commands. Some directives offer control flow operations. Directives target a specific component or dependency. A dependency is another SUIT_Envelope that describes additional components. Dependencies are identified by digest, but referenced in commands by Dependency Index, the index into the array of Dependencies. A component is a unit of code or data that can be targeted by an update. Components are identified by Component Identifiers, but referenced in commands by Component Index; Component Identifiers are arrays of binary strings and a Component Index is an index into the array of Component Identifiers.</t>

<t>Conditions MUST NOT have any side-effects other than informing the interpreter of success or failure. The Interpreter does not Abort if the Soft Failure flag (<xref target="suit-parameter-soft-failure"/>) is set when a Condition reports failure.</t>

<t>Directives MAY have side-effects in the parameter table, the interpreter state, or the current component. The Interpreter MUST Abort if a Directive reports failure regardless of the Soft Failure flag.</t>

<t>To simplify the logic describing the command semantics, the object “current” is used. It represents the component identified by the Component Index or the dependency identified by the Dependency Index:</t>

<figure><artwork><![CDATA[
current := components\[component-index\]
    if component-index is not false
    else dependencies\[dependency-index\]
]]></artwork></figure>

<t>As a result, Set Component Index is described as current := components[arg]. The actual operation performed for Set Component Index is described by the following pseudocode, however, because of the definition of current (above), these are semantically equivalent.</t>

<figure><artwork><![CDATA[
component-index := arg
dependency-index := false
]]></artwork></figure>

<t>Similarly, Set Dependency Index is semantically equivalent to current := dependencies[arg]</t>

<t>The following table describes the behavior of each command. “params” represents the parameters for the current component or dependency. Most commands operate on either a component or a dependency. Setting the Component Index clears the Dependency Index. Setting the Dependency Index clears the Component Index.</t>

<texttable>
      <ttcol align='left'>Command Name</ttcol>
      <ttcol align='left'>Semantic of the Operation</ttcol>
      <c>Check Vendor Identifier</c>
      <c>assert(binary-match(current, current.params[vendor-id]))</c>
      <c>Check Class Identifier</c>
      <c>assert(binary-match(current, current.params[class-id]))</c>
      <c>Verify Image</c>
      <c>assert(binary-match(digest(current), current.params[digest]))</c>
      <c>Set Component Index</c>
      <c>current := components[arg]</c>
      <c>Override Parameters</c>
      <c>current.params[k] := v for-each k,v in arg</c>
      <c>Set Dependency Index</c>
      <c>current := dependencies[arg]</c>
      <c>Set Parameters</c>
      <c>current.params[k] := v if not k in params for-each k,v in arg</c>
      <c>Process Dependency</c>
      <c>exec(current[common]); exec(current[current-segment])</c>
      <c>Run</c>
      <c>run(current)</c>
      <c>Fetch</c>
      <c>store(current, fetch(current.params[uri]))</c>
      <c>Use Before</c>
      <c>assert(now() &lt; arg)</c>
      <c>Check Component Offset</c>
      <c>assert(offsetof(current) == arg)</c>
      <c>Check Device Identifier</c>
      <c>assert(binary-match(current, current.params[device-id]))</c>
      <c>Check Image Not Match</c>
      <c>assert(not binary-match(digest(current), current.params[digest]))</c>
      <c>Check Minimum Battery</c>
      <c>assert(battery &gt;= arg)</c>
      <c>Check Update Authorized</c>
      <c>assert(isAuthorized())</c>
      <c>Check Version</c>
      <c>assert(version_check(current, arg))</c>
      <c>Abort</c>
      <c>assert(0)</c>
      <c>Try Each</c>
      <c>try-each-done if exec(seq) is not error for-each seq in arg</c>
      <c>Copy</c>
      <c>store(current, current.params[src-component])</c>
      <c>Swap</c>
      <c>swap(current, current.params[src-component])</c>
      <c>Wait For Event</c>
      <c>until event(arg), wait</c>
      <c>Run Sequence</c>
      <c>exec(arg)</c>
      <c>Run with Arguments</c>
      <c>run(current, arg)</c>
</texttable>

</section>
<section anchor="index-true" title="Special Cases of Component Index and Dependency Index">

<t>Component Index and Dependency Index can each take on one of three types:</t>

<t><list style="numbers">
  <t>Integer</t>
  <t>Array of integers</t>
  <t>True</t>
</list></t>

<t>Integers MUST always be supported by Set Component Index and Set Dependency Index. Arrays of integers MUST be supported by Set Component Index and Set Dependency Index if the Recipient supports 3 or more components or 3 or more dependencies, respectively. True MUST be supported by Set Component Index and Set Dependency Index if the Recipient supports 2 or more components or 2 or more dependencies, respectively. Each of these operates on the list of components or list of dependencies declared in the manifest.</t>

<t>Integer indices are the default case as described in the previous section. An array of integers represents a list of the components (Set Component Index) or a list of dependencies (Set Dependency Index) to which each subsequent command applies. The value True replaces the list of component indices or dependency indices with the full list of components or the full list of dependencies, respectively, as defined in the manifest.</t>

<t>When a command is executed, it either 1. operates on the component or dependency identified by the component index or dependency index if that index is an integer, or 2. it operates on each component or dependency identified by an array of indicies, or 3. it operates on every component or every dependency if the index is the boolean True. This is described by the following pseudocode:</t>

<figure><artwork><![CDATA[
if component-index is true:
    current-list = components
else if component-index is array:
    current-list = [ components[idx] for idx in component-index ]
else if component-index is integer:
    current-list = [ components[component-index] ]
else if dependency-index is true:
    current-list = dependencies
else if dependency-index is array:
    current-list = [ dependencies[idx] for idx in dependency-index ]
else:
    current-list = [ dependencies[dependency-index] ]
for current in current-list:
    cmd(current)
]]></artwork></figure>

<t>Try Each and Run Sequence are affected in the same way as other commands: they are invoked once for each possible Component or Dependency. This means that the sequences that are arguments to Try Each and Run Sequence are NOT invoked with Component Index = True or Dependency Index = True, nor are they invoked with array indices. They are only invoked with integer indices. The interpreter loops over the whole sequence, setting the Component Index or Dependency Index to each index in turn.</t>

</section>
<section anchor="serial-processing" title="Serialized Processing Interpreter">

<t>In highly constrained devices, where storage for parameters is limited, the manifest processor MAY handle one component at a time, traversing the manifest tree once for each listed component. In this mode, the interpreter ignores any commands executed while the component index is not the current component. This reduces the overall volatile storage required to process the update so that the only limit on number of components is the size of the manifest. However, this approach requires additional processing power.</t>

<t>In order to operate in this mode, the manifest processor loops on each section for every supported component, simply ignoring commands when the current component is not selected.</t>

<t>When a serialized Manifest Processor encounters a component or dependency index of True, it does not ignore any commands. It applies them to the current component or dependency on each iteration.</t>

</section>
<section anchor="parallel-processing" title="Parallel Processing Interpreter">

<t>Advanced Recipients MAY make use of the Strict Order parameter and enable parallel processing of some Command Sequences, or it may reorder some Command Sequences. To perform parallel processing, once the Strict Order parameter is set to False, the Recipient may issue each or every command concurrently until the Strict Order parameter is returned to True or the Command Sequence ends. Then, it waits for all issued commands to complete before continuing processing of commands. To perform out-of-order processing, a similar approach is used, except the Recipient consumes all commands after the Strict Order parameter is set to False, then it sorts these commands into its preferred order, invokes them all, then continues processing.</t>

<t>Under each of these scenarios the parallel processing MUST halt until all issued commands have completed:</t>

<t><list style="symbols">
  <t>Set Parameters.</t>
  <t>Override Parameters.</t>
  <t>Set Strict Order = True.</t>
  <t>Set Dependency Index.</t>
  <t>Set Component Index.</t>
</list></t>

<t>To perform more useful parallel operations, a manifest author may collect sequences of commands in a Run Sequence command. Then, each of these sequences MAY be run in parallel. Each sequence defaults to Strict Order = True. To isolate each sequence from each other sequence, each sequence MUST begin with a Set Component Index or Set Dependency Index directive with the following exception: when the index is either True or an array of indices, the Set Component Index or Set Dependency Index is implied. Any further Set Component Index directives MUST cause an Abort. This allows the interpreter that issues Run Sequence commands to check that the first element is correct, then issue the sequence to a parallel execution context to handle the remainder of the sequence.</t>

</section>
<section anchor="processing-dependencies" title="Processing Dependencies">

<t>As described in <xref target="required-checks"/>, each manifest must invoke each of its dependencies sections from the corresponding section of the dependent. Any changes made to parameters by the dependency persist in the dependent.</t>

<t>When a Process Dependency command is encountered, the interpreter loads the dependency identified by the Current Dependency Index. The interpreter first executes the common-sequence section of the identified dependency, then it executes the section of the dependency that corresponds to the currently executing section of the dependent.</t>

<t>If the specified dependency does not contain the current section, Process Dependency succeeds immediately.</t>

<t>The Manifest Processor MUST also support a Dependency Index of True, which applies to every dependency, as described in <xref target="index-true"/></t>

<t>The interpreter also performs the checks described in <xref target="required-checks"/> to ensure that the dependent is processing the dependency correctly.</t>

</section>
<section anchor="hierarchical-interpreters" title="Multiple Manifest Processors">

<t>When a system has multiple security domains, each domain might require independent verification of authenticity or security policies. Security domains might be divided by separation technology such as Arm TrustZone, Intel SGX, or another TEE technology. Security domains might also be divided into separate processors and memory spaces, with a communication interface between them.</t>

<t>For example, an application processor may have an attached communications module that contains a processor. The communications module might require metadata signed by a specific Trust Authority for regulatory approval. This may be a different Trust Authority than the application processor.</t>

<t>When there are two or more security domains (see <xref target="I-D.ietf-teep-architecture"/>), a manifest processor might be required in each. The first manifest processor is the normal manifest processor as described for the Recipient in <xref target="command-behavior"/>. The second manifest processor only executes sections when the first manifest processor requests it. An API interface is provided from the second manifest processor to the first. This allows the first manifest processor to request a limited set of operations from the second. These operations are limited to: setting parameters, inserting an Envelope, invoking a Manifest Command Sequence. The second manifest processor declares a prefix to the first, which tells the first manifest processor when it should delegate to the second. These rules are enforced by underlying separation of privilege infrastructure, such as TEEs, or physical separation.</t>

<t>When the first manifest processor encounters a dependency prefix, that informs the first manifest processor that it should provide the second manifest processor with the corresponding dependency Envelope. This is done when the dependency is fetched. The second manifest processor immediately verifies any authentication information in the dependency Envelope. When a parameter is set for any component that matches the prefix, this parameter setting is passed to the second manifest processor via an API. As the first manifest processor works through the Procedure (set of command sequences) it is executing, each time it sees a Process Dependency command that is associated with the prefix declared by the second manifest processor, it uses the API to ask the second manifest processor to invoke that dependency section instead.</t>

<t>This mechanism ensures that the two or more manifest processors do not need to trust each other, except in a very limited case. When parameter setting across security domains is used, it must be very carefully considered. Only parameters that do not have an effect on security properties should be allowed. The dependency manifest MAY control which parameters are allowed to be set by using the Override Parameters directive. The second manifest processor MAY also control which parameters may be set by the first manifest processor by means of an ACL that lists the allowed parameters. For example, a URI may be set by a dependent without a substantial impact on the security properties of the manifest.</t>

</section>
</section>
<section anchor="creating-manifests" title="Creating Manifests">

<t>Manifests are created using tools for constructing COSE structures, calculating cryptographic values and compiling desired system state into a sequence of operations required to achieve that state. The process of constructing COSE structures and the calculation of cryptographic values is covered in <xref target="RFC8152"/>.</t>

<t>Compiling desired system state into a sequence of operations can be accomplished in many ways. Several templates are provided below to cover common use-cases. These templates can be combined to produce more complex behavior.</t>

<t>The author MUST ensure that all parameters consumed by a command are set prior to invoking that command. Where Component Index = True or Dependency Index = True, this means that the parameters consumed by each command MUST have been set for each Component or Dependency, respectively.</t>

<t>This section details a set of templates for creating manifests. These templates explain which parameters, commands, and orders of commands are necessary to achieve a stated goal.</t>

<t>NOTE: On systems that support only a single component and no dependencies, Set Component Index has no effect and can be omitted.</t>

<t>NOTE: <spanx style="strong">A digest MUST always be set using Override Parameters, since this prevents a less-privileged dependent from replacing the digest.</spanx></t>

<section anchor="template-compatibility-check" title="Compatibility Check Template">

<t>The goal of the compatibility check template ensure that Recipients only install compatible images.</t>

<t>In this template all information is contained in the common sequence and the following sequence of commands is used:</t>

<t><list style="symbols">
  <t>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</t>
  <t>Set Parameters directive (see <xref target="suit-directive-set-parameters"/>) for Vendor ID and Class ID (see <xref target="secparameters"/>)</t>
  <t>Check Vendor Identifier condition (see <xref target="uuid-identifiers"/>)</t>
  <t>Check Class Identifier condition (see <xref target="uuid-identifiers"/>)</t>
</list></t>

</section>
<section anchor="template-secure-boot" title="Trusted Invocation Template">

<t>The goal of the Trusted Invocation template is to ensure that only authorized code is invoked; such as in Secure Boot or when a Trusted Application is loaded into a TEE.</t>

<t>The following commands are placed into the common sequence:</t>

<t><list style="symbols">
  <t>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</t>
  <t>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>) for Image Digest and Image Size (see <xref target="secparameters"/>)</t>
</list></t>

<t>Then, the run sequence contains the following commands:</t>

<t><list style="symbols">
  <t>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</t>
  <t>Check Image Match condition (see <xref target="suit-condition-image-match"/>)</t>
  <t>Run directive (see <xref target="suit-directive-run-sequence"/>)</t>
</list></t>

</section>
<section anchor="firmware-download-template" title="Component Download Template">

<t>The goal of the Component Download template is to acquire and store an image.</t>

<t>The following commands are placed into the common sequence:</t>

<t><list style="symbols">
  <t>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</t>
  <t>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>) for Image Digest and Image Size (see <xref target="secparameters"/>)</t>
</list></t>

<t>Then, the install sequence contains the following commands:</t>

<t><list style="symbols">
  <t>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</t>
  <t>Set Parameters directive (see <xref target="suit-directive-set-parameters"/>) for URI (see <xref target="suit-parameter-uri"/>)</t>
  <t>Fetch directive (see <xref target="suit-directive-fetch"/>)</t>
  <t>Check Image Match condition (see <xref target="suit-condition-image-match"/>)</t>
</list></t>

<t>The Fetch directive needs the URI parameter to be set to determine where the image is retrieved from. Additionally, the destination of where the component shall be stored has to be configured. The URI is configured via the Set Parameters directive while the destination is configured via the Set Component Index directive.</t>

<t>Optionally, the Set Parameters directive in the install sequence MAY also contain Encryption Info (see <xref target="suit-parameter-encryption-info"/>), Compression Info (see <xref target="suit-parameter-compression-info"/>), or Unpack Info (see <xref target="suit-parameter-unpack-info"/>) to perform simultaneous download and decryption, decompression, or unpacking, respectively.</t>

</section>
<section anchor="template-install" title="Install Template">

<t>The goal of the Install template is to use an image already stored in an identified component to copy into a second component.</t>

<t>This template is typically used with the Component Download template, however a modification to that template is required: the Component Download operations are moved from the Payload Install sequence to the Payload Fetch sequence.</t>

<t>Then, the install sequence contains the following commands:</t>

<t><list style="symbols">
  <t>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</t>
  <t>Set Parameters directive (see <xref target="suit-directive-set-parameters"/>) for Source Component (see <xref target="suit-parameter-source-component"/>)</t>
  <t>Copy directive (see <xref target="suit-directive-copy"/>)</t>
  <t>Check Image Match condition (see <xref target="suit-condition-image-match"/>)</t>
</list></t>

</section>
<section anchor="template-install-transform" title="Install and Transform Template">

<t>The goal of the Install and Transform template is to use an image already stored in an identified component to decompress, decrypt, or unpack at time of installation.</t>

<t>This template is typically used with the Component Download template, however a modification to that template is required: all Component Download operations are moved from the common sequence and the install sequence to the fetch sequence. The Component Download template targets a download component identifier, while the Install and Transform template uses an install component identifier. In-place unpacking, decompression, and decryption is complex and vulnerable to power failure. Therefore, these identifiers SHOULD be different; in-place installation SHOULD NOT be used without establishing guarantees of robustness to power failure.</t>

<t>The following commands are placed into the common sequence:</t>

<t><list style="symbols">
  <t>Set Component Index directive for install component identifier (see <xref target="suit-directive-set-component-index"/>)</t>
  <t>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>) for Image Digest and Image Size (see <xref target="secparameters"/>)</t>
</list></t>

<t>Then, the install sequence contains the following commands:</t>

<t><list style="symbols">
  <t>Set Component Index directive for install component identifier (see <xref target="suit-directive-set-component-index"/>)</t>
  <t>Set Parameters directive (see <xref target="suit-directive-set-parameters"/>) for:  <list style="symbols">
      <t>Source Component for download component identifier (see <xref target="suit-parameter-source-component"/>)</t>
      <t>Encryption Info (see <xref target="suit-parameter-encryption-info"/>)</t>
      <t>Compression Info (see <xref target="suit-parameter-compression-info"/>)</t>
      <t>Unpack Info (see <xref target="suit-parameter-unpack-info"/>)</t>
    </list></t>
  <t>Copy directive (see <xref target="suit-directive-copy"/>)</t>
  <t>Check Image Match condition (see <xref target="suit-condition-image-match"/>)</t>
</list></t>

</section>
<section anchor="template-integrated-payload" title="Integrated Payload Template">

<t>The goal of the Integrated Payload template is to install a payload that is included in the manifest envelope. It is identical to the Component Download template (<xref target="firmware-download-template"/>) except that it places an added restriction on the URI passed to the Set Parameters directive.</t>

<t>An implementer MAY choose to place a payload in the envelope of a manifest. The payload envelope key MAY be a positive or negative integer. The payload envelope key MUST NOT be a value between 0 and 24 and it MUST NOT be used by any other envelope element in the manifest. The payload MUST be serialized in a bstr element.</t>

<t>The URI for a payload enclosed in this way MUST be expressed as a fragment-only reference, as defined in <xref target="RFC3986"/>, Section 4.4. The fragment identifier is the stringified envelope key of the payload. For example, an envelope that contains a payload a key 42 would use a URI “#42”, key -73 would use a URI “#-73”.</t>

</section>
<section anchor="template-load-ext" title="Load from Nonvolatile Storage Template">

<t>The goal of the Load from Nonvolatile Storage template is to load an image from a non-volatile component into a volatile component, for example loading a firmware image from external Flash into RAM.</t>

<t>The following commands are placed into the load sequence:</t>

<t><list style="symbols">
  <t>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</t>
  <t>Set Parameters directive (see <xref target="suit-directive-set-parameters"/>) for Component Index (see <xref target="secparameters"/>)</t>
  <t>Copy directive (see <xref target="suit-directive-copy"/>)</t>
</list></t>

<t>As outlined in <xref target="command-behavior"/>, the Copy directive needs a source and a destination to be configured. The source is configured via Component Index (with the Set Parameters directive) and the destination is configured via the Set Component Index directive.</t>

</section>
<section anchor="template-load-decompress" title="Load &amp; Decompress from Nonvolatile Storage Template">

<t>The goal of the Load &amp; Decompress from Nonvolatile Storage template is to load an image from a non-volatile component into a volatile component, decompressing on-the-fly, for example loading a firmware image from external Flash into RAM.</t>

<t>The following commands are placed into the load sequence:</t>

<t><list style="symbols">
  <t>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</t>
  <t>Set Parameters directive (see <xref target="suit-directive-set-parameters"/>) for Source Component Index and Compression Info (see <xref target="secparameters"/>)</t>
  <t>Copy directive (see <xref target="suit-directive-copy"/>)</t>
</list></t>

<t>This template is similar to <xref target="template-load-ext"/> but additionally performs decompression. Hence, the only difference is in setting the Compression Info parameter.</t>

<t>This template can be modified for decryption or unpacking by adding Decryption Info or Unpack Info to the Set Parameters directive.</t>

</section>
<section anchor="template-dependency" title="Dependency Template">

<t>The goal of the Dependency template is to obtain, verify, and process a dependency manifest as appropriate.</t>

<t>The following commands are placed into the dependency resolution sequence:</t>

<t><list style="symbols">
  <t>Set Dependency Index directive (see <xref target="suit-directive-set-dependency-index"/>)</t>
  <t>Set Parameters directive (see <xref target="suit-directive-set-parameters"/>) for URI (see <xref target="secparameters"/>)</t>
  <t>Fetch directive (see <xref target="suit-directive-fetch"/>)</t>
  <t>Check Image Match condition (see <xref target="suit-condition-image-match"/>)</t>
  <t>Process Dependency directive (see <xref target="suit-directive-process-dependency"/>)</t>
</list></t>

<t>Then, the validate sequence contains the following operations:</t>

<t><list style="symbols">
  <t>Set Dependency Index directive (see <xref target="suit-directive-set-dependency-index"/>)</t>
  <t>Check Image Match condition (see <xref target="suit-condition-image-match"/>)</t>
  <t>Process Dependency directive (see <xref target="suit-directive-process-dependency"/>)</t>
</list></t>

<t>NOTE: Any changes made to parameters in a dependency persist in the dependent.</t>

<section anchor="composite-manifests" title="Composite Manifests">

<t>An implementer MAY choose to place a dependency’s envelope in the envelope of its dependent. The dependent envelope key for the dependency envelope MUST NOT be a value between 0 and 24 and it MUST NOT be used by any other envelope element in the dependent manifest.</t>

<t>The URI for a dependency enclosed in this way MUST be expressed as a fragment-only reference, as defined in <xref target="RFC3986"/>, Section 4.4. The fragment identifier is the stringified envelope key of the dependency. For example, an envelope that contains a dependency at key 42 would use a URI “#42”, key -73 would use a URI “#-73”.</t>

</section>
</section>
<section anchor="template-encrypted-manifest" title="Encrypted Manifest Template">

<t>The goal of the Encrypted Manifest template is to fetch and decrypt a manifest so that it can be used as a dependency. To use an encrypted manifest, create a plaintext dependent, and add the encrypted manifest as a dependency. The dependent can include very little information.</t>

<t>The following operations are placed into the dependency resolution block:</t>

<t><list style="symbols">
  <t>Set Dependency Index directive (see <xref target="suit-directive-set-dependency-index"/>)</t>
  <t>Set Parameters directive (see <xref target="suit-directive-set-parameters"/>) for
  <list style="symbols">
      <t>URI (see <xref target="secparameters"/>)</t>
      <t>Encryption Info (see <xref target="secparameters"/>)</t>
    </list></t>
  <t>Fetch directive (see <xref target="suit-directive-fetch"/>)</t>
  <t>Check Image Match condition (see <xref target="suit-condition-image-match"/>)</t>
  <t>Process Dependency directive (see <xref target="suit-directive-process-dependency"/>)</t>
</list></t>

<t>Then, the validate block contains the following operations:</t>

<t><list style="symbols">
  <t>Set Dependency Index directive (see <xref target="suit-directive-set-dependency-index"/>)</t>
  <t>Check Image Match condition (see <xref target="suit-condition-image-match"/>)</t>
  <t>Process Dependency directive (see <xref target="suit-directive-process-dependency"/>)</t>
</list></t>

<t>A plaintext manifest and its encrypted dependency may also form a composite manifest (<xref target="composite-manifests"/>).</t>

</section>
<section anchor="a-b-template" title="A/B Image Template">

<t>The goal of the A/B Image Template is to acquire, validate, and invoke one of two images, based on a test.</t>

<t>The following commands are placed in the common block:</t>

<t><list style="symbols">
  <t>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</t>
  <t>Try Each
  <list style="symbols">
      <t>First Sequence:
      <list style="symbols">
          <t>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>, <xref target="secparameters"/>) for Offset A</t>
          <t>Check Offset Condition (see <xref target="suit-condition-component-offset"/>)</t>
          <t>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>) for Image Digest A and Image Size A (see <xref target="secparameters"/>)</t>
        </list></t>
      <t>Second Sequence:
      <list style="symbols">
          <t>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>, <xref target="secparameters"/>) for Offset B</t>
          <t>Check Offset Condition (see <xref target="suit-condition-component-offset"/>)</t>
          <t>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>) for Image Digest B and Image Size B (see <xref target="secparameters"/>)</t>
        </list></t>
    </list></t>
</list></t>

<t>The following commands are placed in the fetch block or install block</t>

<t><list style="symbols">
  <t>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</t>
  <t>Try Each
  <list style="symbols">
      <t>First Sequence:
      <list style="symbols">
          <t>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>, <xref target="secparameters"/>) for Offset A</t>
          <t>Check Offset Condition (see <xref target="suit-condition-component-offset"/>)</t>
          <t>Set Parameters directive (see <xref target="suit-directive-override-parameters"/>) for URI A (see <xref target="secparameters"/>)</t>
        </list></t>
      <t>Second Sequence:
      <list style="symbols">
          <t>Override Parameters directive (see <xref target="suit-directive-override-parameters"/>, <xref target="secparameters"/>) for Offset B</t>
          <t>Check Offset Condition (see <xref target="suit-condition-component-offset"/>)</t>
          <t>Set Parameters directive (see <xref target="suit-directive-override-parameters"/>) for URI B (see <xref target="secparameters"/>)</t>
        </list></t>
    </list></t>
  <t>Fetch</t>
</list></t>

<t>If Trusted Invocation (<xref target="template-secure-boot"/>) is used, only the run sequence is added to this template, since the common sequence is populated by this template.</t>

<t>NOTE: Any test can be used to select between images, Check Offset Condition is used in this template because it is a typical test for execute-in-place devices.</t>

</section>
</section>
<section anchor="metadata-structure" title="Metadata Structure">

<t>The metadata for SUIT updates is composed of several primary constituent parts: the Envelope, Delegation Chains, Authentication Information, Manifest, and Severable Elements.</t>

<t>For a diagram of the metadata structure, see <xref target="metadata-structure-overview"/>.</t>

<section anchor="encoding-considerations" title="Encoding Considerations">

<t>The map indices in the envelope encoding are reset to 1 for each map within the structure. This is to keep the indices as small as possible. The goal is to keep the index objects to single bytes (CBOR positive integers 1-23).</t>

<t>Wherever enumerations are used, they are started at 1. This allows detection of several common software errors that are caused by uninitialized variables. Positive numbers in enumerations are reserved for IANA registration. Negative numbers are used to identify application-specific values, as described in <xref target="iana"/>.</t>

<t>All elements of the envelope must be wrapped in a bstr to minimize the complexity of the code that evaluates the cryptographic integrity of the element and to ensure correct serialization for integrity and authenticity checks.</t>

</section>
<section anchor="envelope" title="Envelope">

<t>The Envelope contains each of the other primary constituent parts of the SUIT metadata. It allows for modular processing of the manifest by ordering components in the expected order of processing.</t>

<t>The Envelope is encoded as a CBOR Map. Each element of the Envelope is enclosed in a bstr, which allows computation of a message digest against known bounds.</t>

</section>
<section anchor="delegation-info" title="Delegation Chains">

<t>The suit-delegation element MAY carry one or more CBOR Web Tokens (CWTs) <xref target="RFC8392"/>, with <xref target="RFC8747"/> cnf claims. They can be used to perform enhanced authorization decisions. The CWTs are arranged into a list of lists. Each list starts with a CWT authorized by a Trust Anchor, and finishes with a key used to authenticate the Manifest (see <xref target="authentication-info"/>). This allows an Update Authority to delegate from a long term Trust Anchor, down through intermediaries, to a delegate without any out-of-band provisioning of Trust Anchors or intermediary keys.</t>

<t>A Recipient MAY choose to cache intermediaries and/or delegates. If an Update Distributor knows that a targeted Recipient has cached some intermediaries or delegates, it MAY choose to strip any cached intermediaries or delegates from the Delegation Chains in order to reduce bandwidth and energy.</t>

</section>
<section anchor="authentication-info" title="Authenticated Manifests">

<t>The suit-authentication-wrapper contains a list containing a <xref target="SUIT_Digest"></xref> and one or more cryptographic authentication wrappers for the Manifest. These are implemented as COSE_Mac_Tagged or COSE_Sign_Tagged blocks. Each of these blocks contains a SUIT_Digest of the Manifest. This enables modular processing of the manifest. The COSE_Mac_Tagged and COSE_Sign_Tagged blocks are described in RFC 8152 <xref target="RFC8152"/>. The suit-authentication-wrapper MUST come before any element in the SUIT_Envelope, except for the OPTIONAL suit-delegation, regardless of canonical encoding of CBOR. All validators MUST reject any SUIT_Envelope that begins with any element other than a suit-authentication-wrapper or suit-delegation.</t>

<t>A SUIT_Envelope that has not had authentication information added MUST still contain the suit-authentication-wrapper element, but the content MUST be a list containing only the SUIT_Digest.</t>

<t>A signing application MUST verify the suit-manifest element against the SUIT_Digest prior to signing.</t>

</section>
<section anchor="encrypted-manifests" title="Encrypted Manifests">

<t>To use an encrypted manifest, it must be a dependency of a plaintext manifest. This allows fine-grained control of what information is accessible to intermediate systems for the purposes of management, while still preserving the confidentiality of the manifest contents. This also means that a Recipient can process an encrypted manifest in the same way as an encrypted payload, allowing code reuse.</t>

<t>A template for using an encrypted manifest is covered in Encrypted Manifest Template (<xref target="template-encrypted-manifest"/>).</t>

</section>
<section anchor="manifest-structure" title="Manifest">

<t>The manifest contains:</t>

<t><list style="symbols">
  <t>a version number (see <xref target="manifest-version"/>)</t>
  <t>a sequence number (see <xref target="manifest-seqnr"/>)</t>
  <t>a reference URI (see <xref target="manifest-reference-uri"/>)</t>
  <t>a common structure with information that is shared between command sequences (see <xref target="manifest-common"/>)</t>
  <t>one or more lists of commands that the Recipient should perform (see <xref target="manifest-commands"/>)</t>
  <t>a reference to the full manifest (see <xref target="manifest-reference-uri"/>)</t>
  <t>human-readable text describing the manifest found in the SUIT_Envelope (see <xref target="manifest-digest-text"/>)</t>
  <t>a Concise Software Identifier (CoSWID) found in the SUIT_Envelope (see <xref target="manifest-digest-coswid"/>)</t>
</list></t>

<t>The CoSWID, Text section, or any Command Sequence of the Update Procedure (Dependency Resolution, Image Fetch, Image Installation) can be either a CBOR structure or a SUIT_Digest. In each of these cases, the SUIT_Digest provides for a severable element. Severable elements are RECOMMENDED to implement. In particular, the human-readable text SHOULD be severable, since most useful text elements occupy more space than a SUIT_Digest, but are not needed by the Recipient. Because SUIT_Digest is a CBOR Array and each severable element is a CBOR bstr, it is straight-forward for a Recipient to determine whether an element has been severed. The key used for a severable element is the same in the SUIT_Manifest and in the SUIT_Envelope so that a Recipient can easily identify the correct data in the envelope. See <xref target="integrity-checks"/> for more detail.</t>

<section anchor="manifest-version" title="suit-manifest-version">

<t>The suit-manifest-version indicates the version of serialization used to encode the manifest. Version 1 is the version described in this document. suit-manifest-version is REQUIRED to implement.</t>

</section>
<section anchor="manifest-seqnr" title="suit-manifest-sequence-number">

<t>The suit-manifest-sequence-number is a monotonically increasing anti-rollback counter. It also helps Recipients to determine which in a set of manifests is the “root” manifest in a given update. Each manifest MUST have a sequence number higher than each of its dependencies. Each Recipient MUST reject any manifest that has a sequence number lower than its current sequence number. For convenience, an implementer MAY use a UTC timestamp in seconds as the sequence number. suit-manifest-sequence-number is REQUIRED to implement.</t>

</section>
<section anchor="manifest-reference-uri" title="suit-reference-uri">

<t>suit-reference-uri is a text string that encodes a URI where a full version of this manifest can be found. This is convenient for allowing management systems to show the severed elements of a manifest when this URI is reported by a Recipient after installation.</t>

</section>
<section anchor="manifest-digest-text" title="suit-text">

<t>suit-text SHOULD be a severable element. suit-text is a map containing two different types of pair:</t>

<t><list style="symbols">
  <t>integer =&gt; text</t>
  <t>SUIT_Component_Identifier =&gt; map</t>
</list></t>

<t>Each SUIT_Component_Identifier =&gt; map entry contains a map of integer =&gt; text values. All SUIT_Component_Identifiers present in suit-text MUST also be present in suit-common (<xref target="manifest-common"/>) or the suit-common of a dependency.</t>

<t>suit-text contains all the human-readable information that describes any and all parts of the manifest, its payload(s) and its resource(s). The text section is typically severable, allowing manifests to be distributed without the text, since end-nodes do not require text. The meaning of each field is described below.</t>

<t>Each section MAY be present. If present, each section MUST be as described. Negative integer IDs are reserved for application-specific text values.</t>

<t>The following table describes the text fields available in suit-text:</t>

<texttable>
      <ttcol align='left'>CDDL Structure</ttcol>
      <ttcol align='left'>Description</ttcol>
      <c>suit-text-manifest-description</c>
      <c>Free text description of the manifest</c>
      <c>suit-text-update-description</c>
      <c>Free text description of the update</c>
      <c>suit-text-manifest-json-source</c>
      <c>The JSON-formatted document that was used to create the manifest</c>
      <c>suit-text-manifest-yaml-source</c>
      <c>The YAML (<xref target="YAML"/>)-formatted document that was used to create the manifest</c>
</texttable>

<t>The following table describes the text fields available in each map identified by a SUIT_Component_Identifier.</t>

<texttable>
      <ttcol align='left'>CDDL Structure</ttcol>
      <ttcol align='left'>Description</ttcol>
      <c>suit-text-vendor-name</c>
      <c>Free text vendor name</c>
      <c>suit-text-model-name</c>
      <c>Free text model name</c>
      <c>suit-text-vendor-domain</c>
      <c>The domain used to create the vendor-id condition</c>
      <c>suit-text-model-info</c>
      <c>The information used to create the class-id condition</c>
      <c>suit-text-component-description</c>
      <c>Free text description of each component in the manifest</c>
      <c>suit-text-component-version</c>
      <c>A free text representation of the component version</c>
      <c>suit-text-version-required</c>
      <c>A free text expression of the required version number</c>
</texttable>

<t>suit-text is OPTIONAL to implement.</t>

</section>
</section>
<section anchor="text-version-required" title="text-version-required">

<t>suit-text-version-required is used to represent a version-based dependency on suit-parameter-version as described in <xref target="suit-parameter-version"/> and <xref target="suit-condition-version"/>. To describe a version dependency, a Manifest Author SHOULD populate the suit-text map with a SUIT_Component_Identifier key for the dependency component, and place in the corresponding map a suit-text-version-required key with a free text expression that is representative of the version constraints placed on the dependency. This text SHOULD be expressive enough that a device operator can be expected to understand the dependency. This is a free text field and there are no specific formatting rules.</t>

<t>By way of example only, to express a dependency on a component “[‘x’, ‘y’]”, where the version should be any v1.x later than v1.2.5, but not v2.0 or above, the author would add the following structure to the suit-text element. Note that this text is in cbor-diag notation.</t>

<figure><artwork><![CDATA[
[h'78',h'79'] : {
    7 : ">=1.2.5,<2"
}
]]></artwork></figure>

<section anchor="manifest-digest-coswid" title="suit-coswid">

<t>suit-coswid contains a Concise Software Identifier (CoSWID) as defined in <xref target="I-D.ietf-sacm-coswid"/>. This element SHOULD be made severable so that it can be discarded by the Recipient or an intermediary if it is not required by the Recipient.</t>

<t>suit-coswid typically requires no processing by the Recipient. However all Recipients MUST NOT fail if a suit-coswid is present.</t>

</section>
<section anchor="manifest-common" title="suit-common">

<t>suit-common encodes all the information that is shared between each of the command sequences, including: suit-dependencies, suit-components, and suit-common-sequence. suit-common is REQUIRED to implement.</t>

<t>suit-dependencies is a list of <xref target="SUIT_Dependency"></xref> blocks that specify manifests that must be present before the current manifest can be processed. suit-dependencies is OPTIONAL to implement.</t>

<t>suit-components is a list of <xref target="suit-component-identifier">SUIT_Component_Identifier</xref> blocks that specify the component identifiers that will be affected by the content of the current manifest. suit-components is REQUIRED to implement; at least one manifest in a dependency tree MUST contain a suit-components block.</t>

<t>suit-common-sequence is a SUIT_Command_Sequence to execute prior to executing any other command sequence. Typical actions in suit-common-sequence include setting expected Recipient identity and image digests when they are conditional (see <xref target="suit-directive-try-each"/> and <xref target="a-b-template"/> for more information on conditional sequences). suit-common-sequence is RECOMMENDED to implement. It is REQUIRED if the optimizations described in <xref target="minimal-sigs"/> will be used. Whenever a parameter or Try Each command is required by more than one Command Sequence, placing that parameter or commamd in suit-common-sequence results in a smaller encoding.</t>

<section anchor="SUIT_Dependency" title="Dependencies">

<t>SUIT_Dependency specifies a manifest that describes a dependency of the current manifest. The Manifest is identified, but the Recipient should expect an Envelope when it acquires the dependency. This is because the Manifest is the one invariant element of the Envelope, where other elements may change by countersigning, adding authentication blocks, or severing elements.</t>

<t>The suit-dependency-digest specifies the dependency manifest uniquely by identifying a particular Manifest structure. This is identical to the digest that would be present as the payload of any suit-authentication-block in the dependency’s Envelope. The digest is calculated over the Manifest structure instead of the COSE Sig_structure or Mac_structure. This is necessary to ensure that removing a signature from a manifest does not break dependencies due to missing signature elements. This is also necessary to support the trusted intermediary use case, where an intermediary re-signs the Manifest, removing the original signature, potentially with a different algorithm, or trading COSE_Sign for COSE_Mac.</t>

<t>The suit-dependency-prefix element contains a SUIT_Component_Identifier (see <xref target="suit-component-identifier"/>). This specifies the scope at which the dependency operates. This allows the dependency to be forwarded on to a component that is capable of parsing its own manifests. It also allows one manifest to be deployed to multiple dependent Recipients without those Recipients needing consistent component hierarchy. This element is OPTIONAL for Recipients to implement.</t>

<t>A dependency prefix can be used with a component identifier. This allows complex systems to understand where dependencies need to be applied. The dependency prefix can be used in one of two ways. The first simply prepends the prefix to all Component Identifiers in the dependency.</t>

<t>A dependency prefix can also be used to indicate when a dependency manifest needs to be processed by a secondary manifest processor, as described in <xref target="hierarchical-interpreters"/>.</t>

</section>
<section anchor="suit-component-identifier" title="SUIT_Component_Identifier">

<t>A component is a unit of code or data that can be targeted by an update. To facilitate composite devices, components are identified by a list of CBOR byte strings, which allows construction of hierarchical component structures. A dependency MAY declare a prefix to the components defined in the dependency manifest. Components are identified by Component Identifiers, but referenced in commands by Component Index; Component Identifiers are arrays of binary strings and a Component Index is an index into the array of Component Identifiers.</t>

<t>A Component Identifier can be trivial, such as the simple array [h’00’]. It can also represent a filesystem path by encoding each segment of the path as an element in the list. For example, the path “/usr/bin/env” would encode to [‘usr’,’bin’,’env’].</t>

<t>This hierarchical construction allows a component identifier to identify any part of a complex, multi-component system.</t>

</section>
</section>
<section anchor="manifest-commands" title="SUIT_Command_Sequence">

<t>A SUIT_Command_Sequence defines a series of actions that the Recipient MUST take to accomplish a particular goal. These goals are defined in the manifest and include:</t>

<t><list style="numbers">
  <t>Dependency Resolution: suit-dependency-resolution is a SUIT_Command_Sequence to execute in order to perform dependency resolution. Typical actions include configuring URIs of dependency manifests, fetching dependency manifests, and validating dependency manifests’ contents. suit-dependency-resolution is REQUIRED to implement and to use when suit-dependencies is present.</t>
  <t>Payload Fetch: suit-payload-fetch is a SUIT_Command_Sequence to execute in order to obtain a payload. Some manifests may include these actions in the suit-install section instead if they operate in a streaming installation mode. This is particularly relevant for constrained devices without any temporary storage for staging the update. suit-payload-fetch is OPTIONAL to implement.</t>
  <t>Payload Installation: suit-install is a SUIT_Command_Sequence to execute in order to install a payload. Typical actions include verifying a payload stored in temporary storage, copying a staged payload from temporary storage, and unpacking a payload. suit-install is OPTIONAL to implement.</t>
  <t>Image Validation: suit-validate is a SUIT_Command_Sequence to execute in order to validate that the result of applying the update is correct. Typical actions involve image validation and manifest validation. suit-validate is REQUIRED to implement. If the manifest contains dependencies, one process-dependency invocation per dependency or one process-dependency invocation targeting all dependencies SHOULD be present in validate.</t>
  <t>Image Loading: suit-load is a SUIT_Command_Sequence to execute in order to prepare a payload for execution. Typical actions include copying an image from permanent storage into RAM, optionally including actions such as decryption or decompression. suit-load is OPTIONAL to implement.</t>
  <t>Run or Boot: suit-run is a SUIT_Command_Sequence to execute in order to run an image. suit-run typically contains a single instruction: either the “run” directive for the invocable manifest or the “process dependencies” directive for any dependents of the invocable manifest. suit-run is OPTIONAL to implement.</t>
</list></t>

<t>Goals 1,2,3 form the Update Procedure. Goals 4,5,6 form the Invocation Procedure.</t>

<t>Each Command Sequence follows exactly the same structure to ensure that the parser is as simple as possible.</t>

<t>Lists of commands are constructed from two kinds of element:</t>

<t><list style="numbers">
  <t>Conditions that MUST be true and any failure is treated as a failure of the update/load/invocation</t>
  <t>Directives that MUST be executed.</t>
</list></t>

<t>Each condition is composed of:</t>

<t><list style="numbers">
  <t>A command code identifier</t>
  <t>A <xref target="reporting-policy">SUIT_Reporting_Policy</xref></t>
</list></t>

<t>Each directive is composed of:</t>

<t><list style="numbers">
  <t>A command code identifier</t>
  <t>An argument block or a <xref target="reporting-policy">SUIT_Reporting_Policy</xref></t>
</list></t>

<t>Argument blocks are consumed only by flow-control directives:</t>

<t><list style="symbols">
  <t>Set Component/Dependency Index</t>
  <t>Set/Override Parameters</t>
  <t>Try Each</t>
  <t>Run Sequence</t>
</list></t>

<t>Reporting policies provide a hint to the manifest processor of whether to add the success or failure of a command to any report that it generates.</t>

<t>Many conditions and directives apply to a given component, and these generally grouped together. Therefore, a special command to set the current component index is provided with a matching command to set the current dependency index. This index is a numeric index into the Component Identifier tables defined at the beginning of the manifest. For the purpose of setting the index, the two Component Identifier tables are considered to be concatenated together.</t>

<t>To facilitate optional conditions, a special directive, suit-directive-try-each (<xref target="suit-directive-try-each"/>), is provided. It runs several new lists of conditions/directives, one after another, that are contained as an argument to the directive. By default, it assumes that a failure of a condition should not indicate a failure of the update/invocation, but a parameter is provided to override this behavior. See suit-parameter-soft-failure (<xref target="suit-parameter-soft-failure"/>).</t>

</section>
<section anchor="reporting-policy" title="Reporting Policy">

<t>To facilitate construction of Reports that describe the success, or failure of a given Procedure, each command is given a Reporting Policy. This is an integer bitfield that follows the command and indicates what the Recipient should do with the Record of executing the command. The options are summarized in the table below.</t>

<texttable>
      <ttcol align='left'>Policy</ttcol>
      <ttcol align='left'>Description</ttcol>
      <c>suit-send-record-on-success</c>
      <c>Record when the command succeeds</c>
      <c>suit-send-record-on-failure</c>
      <c>Record when the command fails</c>
      <c>suit-send-sysinfo-success</c>
      <c>Add system information when the command succeeds</c>
      <c>suit-send-sysinfo-failure</c>
      <c>Add system information when the command fails</c>
</texttable>

<t>Any or all of these policies may be enabled at once.</t>

<t>At the completion of each command, a recipient MAY forward that command’s reporting policy, the result of the command, the current set of parameters, and the system information consumed by the command to a TODO</t>

<t>several information elements are provided to an implementation defined subsystem, the Reporting Engine:</t>

<t><list style="symbols">
  <t>The reporting policies</t>
  <t>The result of the command</t>
  <t>The parameters consumed by the command</t>
  <t>The system information consumed by the command</t>
</list></t>

<t>If the component index is set to True or an array when a command is executed with a non-zero reporting policy, then the Reporting Engine MUST receive one Record for each Component, in the order expressed in the Components list or the component index array, respectively. If the dependency index is set to True or an array when a command is executed with a non-zero reporting policy, then the Reporting Engine MUST receive one Record for each Dependency, in the order expressed in the Dependencies list or the component index array, respectively.</t>

<t>This specification does define a particular format of Records or Reports. This specification only defines hints to the Reporting Engine for which Records it should aggregate into the Report. The Reporting Engine MAY choose to ignore these hints and apply its own policy instead.</t>

<t>When used in a Invocation Process, the report MAY form the basis of an attestation report. When used in an Update Process, the report MAY form the basis for one or more log entries.</t>

</section>
<section anchor="secparameters" title="SUIT_Parameters">

<t>Many conditions and directives require additional information. That information is contained within parameters that can be set in a consistent way. This allows reduction of manifest size and replacement of parameters from one manifest to the next.</t>

<t>Most parameters are scoped to a specific component. This means that setting a parameter for one component has no effect on the parameters of any other component. The only exceptions to this are two Manifest Processor parameters: Strict Order and Soft Failure.</t>

<t>The defined manifest parameters are described below.</t>

<texttable>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>CDDL Structure</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>Vendor ID</c>
      <c>suit-parameter-vendor-identifier</c>
      <c><xref target="suit-parameter-vendor-identifier"/></c>
      <c>Class ID</c>
      <c>suit-parameter-class-identifier</c>
      <c><xref target="suit-parameter-class-identifier"/></c>
      <c>Device ID</c>
      <c>suit-parameter-device-identifier</c>
      <c><xref target="suit-parameter-device-identifier"/></c>
      <c>Image Digest</c>
      <c>suit-parameter-image-digest</c>
      <c><xref target="suit-parameter-image-digest"/></c>
      <c>Image Size</c>
      <c>suit-parameter-image-size</c>
      <c><xref target="suit-parameter-image-size"/></c>
      <c>Use Before</c>
      <c>suit-parameter-use-before</c>
      <c><xref target="suit-parameter-use-before"/></c>
      <c>Component Offset</c>
      <c>suit-parameter-component-offset</c>
      <c><xref target="suit-parameter-component-offset"/></c>
      <c>Encryption Info</c>
      <c>suit-parameter-encryption-info</c>
      <c><xref target="suit-parameter-encryption-info"/></c>
      <c>Compression Info</c>
      <c>suit-parameter-compression-info</c>
      <c><xref target="suit-parameter-compression-info"/></c>
      <c>Unpack Info</c>
      <c>suit-parameter-unpack-info</c>
      <c><xref target="suit-parameter-unpack-info"/></c>
      <c>URI</c>
      <c>suit-parameter-uri</c>
      <c><xref target="suit-parameter-uri"/></c>
      <c>Source Component</c>
      <c>suit-parameter-source-component</c>
      <c><xref target="suit-parameter-source-component"/></c>
      <c>Run Args</c>
      <c>suit-parameter-run-args</c>
      <c><xref target="suit-parameter-run-args"/></c>
      <c>Minimum Battery</c>
      <c>suit-parameter-minimum-battery</c>
      <c><xref target="suit-parameter-minimum-battery"/></c>
      <c>Update Priority</c>
      <c>suit-parameter-update-priority</c>
      <c><xref target="suit-parameter-update-priority"/></c>
      <c>Version</c>
      <c>suit-parameter-version</c>
      <c><xref target="suit-parameter-version"/></c>
      <c>Wait Info</c>
      <c>suit-parameter-wait-info</c>
      <c><xref target="suit-parameter-wait-info"/></c>
      <c>URI List</c>
      <c>suit-parameter-uri-list</c>
      <c><xref target="suit-parameter-uri-list"/></c>
      <c>Fetch Arguments</c>
      <c>suit-parameter-fetch-arguments</c>
      <c><xref target="suit-parameter-fetch-arguments"/></c>
      <c>Strict Order</c>
      <c>suit-parameter-strict-order</c>
      <c><xref target="suit-parameter-strict-order"/></c>
      <c>Soft Failure</c>
      <c>suit-parameter-soft-failure</c>
      <c><xref target="suit-parameter-soft-failure"/></c>
      <c>Custom</c>
      <c>suit-parameter-custom</c>
      <c><xref target="suit-parameter-custom"/></c>
</texttable>

<t>CBOR-encoded object parameters are still wrapped in a bstr. This is because it allows a parser that is aggregating parameters to reference the object with a single pointer and traverse it without understanding the contents. This is important for modularization and division of responsibility within a pull parser. The same consideration does not apply to Directives because those elements are invoked with their arguments immediately</t>

<section anchor="cbor-pen-uuid-namespace-identifier" title="CBOR PEN UUID Namespace Identifier">

<t>The CBOR PEN UUID Namespace Identifier is constructed as follows:</t>

<t>It uses the OID Namespace as a starting point, then uses the CBOR OID encoding for the IANA PEN OID (1.3.6.1.4.1):</t>

<figure><artwork><![CDATA[
D8 DE                # tag(111)
   45                # bytes(5)
      2B 06 01 04 01 # X.690 Clause 8.19
#    1.3  6  1  4  1  show component encoding
]]></artwork></figure>

<t>Computing a type 5 UUID from these produces:</t>

<figure><artwork><![CDATA[
NAMESPACE_CBOR_PEN = UUID5(NAMESPACE_OID, h'D86F452B06010401')
NAMESPACE_CBOR_PEN = 08cfcc43-47d9-5696-85b1-9c738465760e
]]></artwork></figure>

</section>
<section anchor="uuid-identifiers" title="Constructing UUIDs">

<t>Several conditions use identifiers to determine whether a manifest matches a given Recipient or not. These identifiers are defined to be RFC 4122 <xref target="RFC4122"/> UUIDs. These UUIDs are not human-readable and are therefore used for machine-based processing only.</t>

<t>A Recipient MAY match any number of UUIDs for vendor or class identifier. This may be relevant to physical or software modules. For example, a Recipient that has an OS and one or more applications might list one Vendor ID for the OS and one or more additional Vendor IDs for the applications. This Recipient might also have a Class ID that must be matched for the OS and one or more Class IDs for the applications.</t>

<t>Identifiers are used for compatibility checks. They MUST NOT be used as assertions of identity. They are evaluated by identifier conditions (<xref target="identifier-conditions"/>).</t>

<t>A more complete example: Imagine a device has the following physical components:
1. A host MCU
2. A WiFi module</t>

<t>This same device has three software modules:
1. An operating system
2. A WiFi module interface driver
3. An application</t>

<t>Suppose that the WiFi module’s firmware has a proprietary update mechanism and doesn’t support manifest processing. This device can report four class IDs:</t>

<t><list style="numbers">
  <t>Hardware model/revision</t>
  <t>OS</t>
  <t>WiFi module model/revision</t>
  <t>Application</t>
</list></t>

<t>This allows the OS, WiFi module, and application to be updated independently. To combat possible incompatibilities, the OS class ID can be changed each time the OS has a change to its API.</t>

<t>This approach allows a vendor to target, for example, all devices with a particular WiFi module with an update, which is a very powerful mechanism, particularly when used for security updates.</t>

<t>UUIDs MUST be created according to RFC 4122 <xref target="RFC4122"/>. UUIDs SHOULD use versions 3, 4, or 5, as described in RFC4122. Versions 1 and 2 do not provide a tangible benefit over version 4 for this application.</t>

<t>The RECOMMENDED method to create a vendor ID is:</t>

<figure><artwork><![CDATA[
Vendor ID = UUID5(DNS_PREFIX, vendor domain name)
]]></artwork></figure>

<t>If the Vendor ID is a UUID, the RECOMMENDED method to create a Class ID is:</t>

<figure><artwork><![CDATA[
Class ID = UUID5(Vendor ID, Class-Specific-Information)
]]></artwork></figure>

<t>If the Vendor ID is a CBOR PEN (see <xref target="suit-parameter-vendor-identifier"/>), the RECOMMENDED method to create a Class ID is:</t>

<figure><artwork><![CDATA[
Class ID = UUID5(
    UUID5(NAMESPACE_CBOR_PEN, CBOR_PEN),
    Class-Specific-Information)
]]></artwork></figure>

<t>Class-specific-information is composed of a variety of data, for example:</t>

<t><list style="symbols">
  <t>Model number.</t>
  <t>Hardware revision.</t>
  <t>Bootloader version (for immutable bootloaders).</t>
</list></t>

</section>
<section anchor="suit-parameter-vendor-identifier" title="suit-parameter-vendor-identifier">

<t>suit-parameter-vendor-identifier may be presented in one of two ways:</t>

<t><list style="symbols">
  <t>A Private Enterprise Number</t>
  <t>A byte string containing a UUID (<xref target="RFC4122"/>)</t>
</list></t>

<t>Private Enterprise Numbers are encoded as a relative OID, according to the definition in <xref target="I-D.ietf-cbor-tags-oid"/>. All PENs are relative to the IANA PEN: 1.3.6.1.4.1.</t>

</section>
<section anchor="suit-parameter-class-identifier" title="suit-parameter-class-identifier">

<t>A RFC 4122 UUID representing the class of the device or component. The UUID is encoded as a 16 byte bstr, containing the raw bytes of the UUID. It MUST be constructed as described in <xref target="uuid-identifiers"/></t>

</section>
<section anchor="suit-parameter-device-identifier" title="suit-parameter-device-identifier">

<t>A RFC 4122 UUID representing the specific device or component. The UUID is encoded as a 16 byte bstr, containing the raw bytes of the UUID. It MUST be constructed as described in <xref target="uuid-identifiers"/></t>

</section>
<section anchor="suit-parameter-image-digest" title="suit-parameter-image-digest">

<t>A fingerprint computed over the component itself, encoded in the SUIT_Digest <xref target="SUIT_Digest"/> structure. The SUIT_Digest is wrapped in a bstr, as required in <xref target="secparameters"/>.</t>

</section>
<section anchor="suit-parameter-image-size" title="suit-parameter-image-size">

<t>The size of the firmware image in bytes. This size is encoded as a positive integer.</t>

</section>
<section anchor="suit-parameter-use-before" title="suit-parameter-use-before">

<t>An expiry date for the use of the manifest encoded as the positive integer number of seconds since 1970-01-01. Implementations that use this parameter MUST use a 64-bit internal representation of the integer.</t>

</section>
<section anchor="suit-parameter-component-offset" title="suit-parameter-component-offset">

<t>This parameter sets the offset in a component. Some components support multiple possible Slots (offsets into a storage area). This parameter describes the intended Slot to use, identified by its offset into the component’s storage area. This offset MUST be encoded as a positive integer.</t>

</section>
<section anchor="suit-parameter-encryption-info" title="suit-parameter-encryption-info">

<t>Encryption Info defines the mechanism that Fetch or Copy should use to decrypt the data they transfer. SUIT_Parameter_Encryption_Info is encoded as a COSE_Encrypt_Tagged or a COSE_Encrypt0_Tagged, wrapped in a bstr.</t>

</section>
<section anchor="suit-parameter-compression-info" title="suit-parameter-compression-info">

<t>SUIT_Compression_Info defines any information that is required for a Recipient to perform decompression operations. SUIT_Compression_Info is a map containing this data. The only element defined for the map in this specification is the suit-compression-algorithm. This document defines the following suit-compression-algorithm’s: ZLIB <xref target="RFC1950"/>, Brotli <xref target="RFC7932"/>, and ZSTD <xref target="I-D.kucherawy-rfc8478bis"/>.</t>

<t>Additional suit-compression-algorithm’s can be registered through the IANA-maintained registry. If such a format requires more data than an algorithm identifier, one or more new elements MUST be introduced by specifying an element for SUIT_Compression_Info-extensions.</t>

</section>
<section anchor="suit-parameter-unpack-info" title="suit-parameter-unpack-info">

<t>SUIT_Unpack_Info defines the information required for a Recipient to interpret a packed format. This document defines the use of the following binary encodings: Intel HEX <xref target="HEX"/>, Motorola S-record <xref target="SREC"/>,  Executable and Linkable Format (ELF) <xref target="ELF"/>, and Common Object File Format (COFF) <xref target="COFF"/>.</t>

<t>Additional packing formats can be registered through the IANA-maintained registry.</t>

</section>
<section anchor="suit-parameter-uri" title="suit-parameter-uri">

<t>A URI from which to fetch a resource, encoded as a text string. CBOR Tag 32 is not used because the meaning of the text string is unambiguous in this context.</t>

</section>
<section anchor="suit-parameter-source-component" title="suit-parameter-source-component">

<t>This parameter sets the source component to be used with either suit-directive-copy (<xref target="suit-directive-copy"/>) or with suit-directive-swap (<xref target="suit-directive-swap"/>). The current Component, as set by suit-directive-set-component-index defines the destination, and suit-parameter-source-component defines the source.</t>

</section>
<section anchor="suit-parameter-run-args" title="suit-parameter-run-args">

<t>This parameter contains an encoded set of arguments for suit-directive-run (<xref target="suit-directive-run"/>). The arguments MUST be provided as an implementation-defined bstr.</t>

</section>
<section anchor="suit-parameter-minimum-battery" title="suit-parameter-minimum-battery">

<t>This parameter sets the minimum battery level in mWh. This parameter is encoded as a positive integer. Used with suit-condition-minimum-battery (<xref target="suit-condition-minimum-battery"/>).</t>

</section>
<section anchor="suit-parameter-update-priority" title="suit-parameter-update-priority">

<t>This parameter sets the priority of the update. This parameter is encoded as an integer. It is used along with suit-condition-update-authorized (<xref target="suit-condition-update-authorized"/>) to ask an application for permission to initiate an update. This does not constitute a privilege inversion because an explicit request for authorization has been provided by the Update Authority in the form of the suit-condition-update-authorized command.</t>

<t>Applications MAY define their own meanings for the update priority. For example, critical reliability &amp; vulnerability fixes MAY be given negative numbers, while bug fixes MAY be given small positive numbers, and feature additions MAY be given larger positive numbers, which allows an application to make an informed decision about whether and when to allow an update to proceed.</t>

</section>
<section anchor="suit-parameter-version" title="suit-parameter-version">

<t>Indicates allowable versions for the specified component. Allowable versions can be specified, either with a list or with range matching. This parameter is compared with version asserted by the current component when suit-condition-version (<xref target="suit-condition-version"/>) is invoked. The current component may assert the current version in many ways, including storage in a parameter storage database, in a metadata object, or in a known location within the component itself.</t>

<t>The component version can be compared as:</t>

<t><list style="symbols">
  <t>Greater.</t>
  <t>Greater or Equal.</t>
  <t>Equal.</t>
  <t>Lesser or Equal.</t>
  <t>Lesser.</t>
</list></t>

<t>Versions are encoded as a CBOR list of integers. Comparisons are done on each integer in sequence. Comparison stops after all integers in the list defined by the manifest have been consumed OR after a non-equal match has occurred. For example, if the manifest defines a comparison, “Equal [1]”, then this will match all version sequences starting with 1. If a manifest defines both “Greater or Equal [1,0]” and “Lesser [1,10]”, then it will match versions 1.0.x up to, but not including 1.10.</t>

<t>While the exact encoding of versions is application-defined, semantic versions map conveniently. For example,</t>

<t><list style="symbols">
  <t>1.2.3 = [1,2,3].</t>
  <t>1.2-rc3 = [1,2,-1,3].</t>
  <t>1.2-beta = [1,2,-2].</t>
  <t>1.2-alpha = [1,2,-3].</t>
  <t>1.2-alpha4 = [1,2,-3,4].</t>
</list></t>

<t>suit-condition-version is OPTIONAL to implement.</t>

<t>Versions SHOULD be provided as follows:</t>

<t><list style="numbers">
  <t>The first integer represents the major number. This indicates breaking changes to the component.</t>
  <t>The second integer represents the minor number. This is typically reserved for new features or large, non-breaking changes.</t>
  <t>The third integer is the patch version. This is typically reserved for bug fixes.</t>
  <t>The fourth integer is the build number.</t>
</list></t>

<t>Where Alpha (-3), Beta (-2), and Release Candidate (-1) are used, they are inserted as a negative number between Minor and Patch numbers. This allows these releases to compare correctly with final releases. For example, Version 2.0, RC1 should be lower than Version 2.0.0 and higher than any Version 1.x. By encoding RC as -1, this works correctly: [2,0,-1,1] compares as lower than [2,0,0]. Similarly, beta (-2) is lower than RC and alpha (-3) is lower than RC.</t>

</section>
<section anchor="suit-parameter-wait-info" title="suit-parameter-wait-info">

<t>suit-directive-wait (<xref target="suit-directive-wait"/>) directs the manifest processor to pause until a specified event occurs. The suit-parameter-wait-info encodes the parameters needed for the directive.</t>

<t>The exact implementation of the pause is implementation-defined. For example, this could be done by blocking on a semaphore, registering an event handler and suspending the manifest processor, polling for a notification, or aborting the update entirely, then restarting when a notification is received.</t>

<t>suit-parameter-wait-info is encoded as a map of wait events. When ALL wait events are satisfied, the Manifest Processor continues. The wait events currently defined are described in the following table.</t>

<texttable>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Encoding</ttcol>
      <ttcol align='left'>Description</ttcol>
      <c>suit-wait-event-authorization</c>
      <c>int</c>
      <c>Same as suit-parameter-update-priority</c>
      <c>suit-wait-event-power</c>
      <c>int</c>
      <c>Wait until power state</c>
      <c>suit-wait-event-network</c>
      <c>int</c>
      <c>Wait until network state</c>
      <c>suit-wait-event-other-device-version</c>
      <c>See below</c>
      <c>Wait for other device to match version</c>
      <c>suit-wait-event-time</c>
      <c>uint</c>
      <c>Wait until time (seconds since 1970-01-01)</c>
      <c>suit-wait-event-time-of-day</c>
      <c>uint</c>
      <c>Wait until seconds since 00:00:00</c>
      <c>suit-wait-event-time-of-day-utc</c>
      <c>uint</c>
      <c>Wait until seconds since 00:00:00 UTC</c>
      <c>suit-wait-event-day-of-week</c>
      <c>uint</c>
      <c>Wait until days since Sunday</c>
      <c>suit-wait-event-day-of-week-utc</c>
      <c>uint</c>
      <c>Wait until days since Sunday UTC</c>
</texttable>

<t>suit-wait-event-other-device-version reuses the encoding of suit-parameter-version-match. It is encoded as a sequence that contains an implementation-defined bstr identifier for the other device, and a list of one or more SUIT_Parameter_Version_Match.</t>

</section>
<section anchor="suit-parameter-uri-list" title="suit-parameter-uri-list">

<t>Indicates a list of URIs from which to fetch a resource. The URI list is encoded as a list of text string, in priority order. CBOR Tag 32 is not used because the meaning of the text string is unambiguous in this context. The Recipient should attempt to fetch the resource from each URI in turn, ruling out each, in order, if the resource is inaccessible or it is otherwise undesirable to fetch from that URI. suit-parameter-uri-list is consumed by suit-directive-fetch-uri-list (<xref target="suit-directive-fetch-uri-list"/>).</t>

</section>
<section anchor="suit-parameter-fetch-arguments" title="suit-parameter-fetch-arguments">

<t>An implementation-defined set of arguments to suit-directive-fetch (<xref target="suit-directive-fetch"/>). Arguments are encoded in a bstr.</t>

</section>
<section anchor="suit-parameter-strict-order" title="suit-parameter-strict-order">

<t>The Strict Order Parameter allows a manifest to govern when directives can be executed out-of-order. This allows for systems that have a sensitivity to order of updates to choose the order in which they are executed. It also allows for more advanced systems to parallelize their handling of updates. Strict Order defaults to True. It MAY be set to False when the order of operations does not matter. When arriving at the end of a command sequence, ALL commands MUST have completed, regardless of the state of SUIT_Parameter_Strict_Order. SUIT_Process_Dependency must preserve and restore the state of SUIT_Parameter_Strict_Order. If SUIT_Parameter_Strict_Order is returned to True, ALL preceding commands MUST complete before the next command is executed.</t>

<t>See <xref target="parallel-processing"/> for behavioral description of Strict Order.</t>

</section>
<section anchor="suit-parameter-soft-failure" title="suit-parameter-soft-failure">

<t>When executing a command sequence inside suit-directive-try-each (<xref target="suit-directive-try-each"/>) or suit-directive-run-sequence (<xref target="suit-directive-run-sequence"/>) and a condition failure occurs, the manifest processor aborts the sequence. For suit-directive-try-each, if Soft Failure is True, the next sequence in Try Each is invoked, otherwise suit-directive-try-each fails with the condition failure code. In suit-directive-run-sequence, if Soft Failure is True the suit-directive-run-sequence simply halts with no side-effects and the Manifest Processor continues with the following command, otherwise, the suit-directive-run-sequence fails with the condition failure code.</t>

<t>suit-parameter-soft-failure is scoped to the enclosing SUIT_Command_Sequence. Its value is discarded when SUIT_Command_Sequence terminates. It MUST NOT be set outside of suit-directive-try-each or suit-directive-run-sequence.</t>

<t>When suit-directive-try-each is invoked, Soft Failure defaults to True. An Update Author may choose to set Soft Failure to False if they require a failed condition in a sequence to force an Abort.</t>

<t>When suit-directive-run-sequence is invoked, Soft Failure defaults to False. An Update Author may choose to make failures soft within a suit-directive-run-sequence.</t>

</section>
<section anchor="suit-parameter-custom" title="suit-parameter-custom">

<t>This parameter is an extension point for any proprietary, application specific conditions and directives. It MUST NOT be used in the common sequence. This effectively scopes each custom command to a particular Vendor Identifier/Class Identifier pair.</t>

</section>
</section>
<section anchor="suitcondition" title="SUIT_Condition">

<t>Conditions are used to define mandatory properties of a system in order for an update to be applied. They can be pre-conditions or post-conditions of any directive or series of directives, depending on where they are placed in the list. All Conditions specify a Reporting Policy as described <xref target="reporting-policy"/>. Conditions include:</t>

<texttable>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>CDDL Structure</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>Vendor Identifier</c>
      <c>suit-condition-vendor-identifier</c>
      <c><xref target="identifier-conditions"/></c>
      <c>Class Identifier</c>
      <c>suit-condition-class-identifier</c>
      <c><xref target="identifier-conditions"/></c>
      <c>Device Identifier</c>
      <c>suit-condition-device-identifier</c>
      <c><xref target="identifier-conditions"/></c>
      <c>Image Match</c>
      <c>suit-condition-image-match</c>
      <c><xref target="suit-condition-image-match"/></c>
      <c>Image Not Match</c>
      <c>suit-condition-image-not-match</c>
      <c><xref target="suit-condition-image-not-match"/></c>
      <c>Use Before</c>
      <c>suit-condition-use-before</c>
      <c><xref target="suit-condition-use-before"/></c>
      <c>Component Offset</c>
      <c>suit-condition-component-offset</c>
      <c><xref target="suit-condition-component-offset"/></c>
      <c>Minimum Battery</c>
      <c>suit-condition-minimum-battery</c>
      <c><xref target="suit-condition-minimum-battery"/></c>
      <c>Update Authorized</c>
      <c>suit-condition-update-authorized</c>
      <c><xref target="suit-condition-update-authorized"/></c>
      <c>Version</c>
      <c>suit-condition-version</c>
      <c><xref target="suit-condition-version"/></c>
      <c>Abort</c>
      <c>suit-condition-abort</c>
      <c><xref target="suit-condition-abort"/></c>
      <c>Custom Condition</c>
      <c>suit-condition-custom</c>
      <c><xref target="SUIT_Condition_Custom "/></c>
</texttable>

<t>The abstract description of these conditions is defined in <xref target="command-behavior"/>.</t>

<t>Conditions compare parameters against properties of the system. These properties may be asserted in many different ways, including: calculation on-demand, volatile definition in memory, static definition within the manifest processor, storage in known location within an image, storage within a key storage system, storage in One-Time-Programmable memory, inclusion in mask ROM, or inclusion as a register in hardware. Some of these assertion methods are global in scope, such as a hardware register, some are scoped to an individual component, such as storage at a known location in an image, and some assertion methods can be either global or component-scope, based on implementation.</t>

<t>Each condition MUST report a result code on completion. If a condition reports failure, then the current sequence of commands MUST terminate. A subsequent command or command sequence MAY continue executing if suit-parameter-soft-failure (<xref target="suit-parameter-soft-failure"/>) is set. If a condition requires additional information, this MUST be specified in one or more parameters before the condition is executed. If a Recipient attempts to process a condition that expects additional information and that information has not been set, it MUST report a failure. If a Recipient encounters an unknown condition, it MUST report a failure.</t>

<t>Condition labels in the positive number range are reserved for IANA registration while those in the negative range are custom conditions reserved for proprietary definition by the author of a manifest processor. See <xref target="iana"/> for more details.</t>

<section anchor="identifier-conditions" title="suit-condition-vendor-identifier, suit-condition-class-identifier, and suit-condition-device-identifier">

<t>There are three identifier-based conditions: suit-condition-vendor-identifier, suit-condition-class-identifier, and suit-condition-device-identifier. Each of these conditions match a RFC 4122 <xref target="RFC4122"/> UUID that MUST have already been set as a parameter. The installing Recipient MUST match the specified UUID in order to consider the manifest valid. These identifiers are scoped by component in the manifest. Each component MAY match more than one identifier. Care is needed to ensure that manifests correctly identify their targets using these conditions. Using only a generic class ID for a device-specific firmware could result in matching devices that are not compatible.</t>

<t>The Recipient uses the ID parameter that has already been set using the Set Parameters directive. If no ID has been set, this condition fails. suit-condition-class-identifier and suit-condition-vendor-identifier are REQUIRED to implement. suit-condition-device-identifier is OPTIONAL to implement.</t>

<t>Each identifier condition compares the corresponding identifier parameter to a parameter asserted to the Manifest Processor by the Recipient. Identifiers MUST be known to the Manifest Processor in order to evaluate compatibility.</t>

</section>
<section anchor="suit-condition-image-match" title="suit-condition-image-match">

<t>Verify that the current component matches the suit-parameter-image-digest (<xref target="suit-parameter-image-digest"/>) for the current component. The digest is verified against the digest specified in the Component’s parameters list. If no digest is specified, the condition fails. suit-condition-image-match is REQUIRED to implement.</t>

</section>
<section anchor="suit-condition-image-not-match" title="suit-condition-image-not-match">

<t>Verify that the current component does not match the suit-parameter-image-digest (<xref target="suit-parameter-image-digest"/>). If no digest is specified, the condition fails. suit-condition-image-not-match is OPTIONAL to implement.</t>

</section>
<section anchor="suit-condition-use-before" title="suit-condition-use-before">

<t>Verify that the current time is BEFORE the specified time. suit-condition-use-before is used to specify the last time at which an update should be installed. The recipient evaluates the current time against the suit-parameter-use-before parameter (<xref target="suit-parameter-use-before"/>), which must have already been set as a parameter, encoded as seconds after 1970-01-01 00:00:00 UTC. Timestamp conditions MUST be evaluated in 64 bits, regardless of encoded CBOR size. suit-condition-use-before is OPTIONAL to implement.</t>

</section>
<section anchor="suit-condition-component-offset" title="suit-condition-component-offset">

<t>Verify that the offset of the current component matches the offset set in suit-parameter-component-offset (<xref target="suit-parameter-component-offset"/>). This condition allows a manifest to select between several images to match a target offset.</t>

</section>
<section anchor="suit-condition-minimum-battery" title="suit-condition-minimum-battery">

<t>suit-condition-minimum-battery provides a mechanism to test a Recipient’s battery level before installing an update. This condition is primarily for use in primary-cell applications, where the battery is only ever discharged. For batteries that are charged, suit-directive-wait is more appropriate, since it defines a “wait” until the battery level is sufficient to install the update. suit-condition-minimum-battery is specified in mWh. suit-condition-minimum-battery is OPTIONAL to implement. suit-condition-minimum-battery consumes suit-parameter-minimum-battery (<xref target="suit-parameter-minimum-battery"/>).</t>

</section>
<section anchor="suit-condition-update-authorized" title="suit-condition-update-authorized">

<t>Request Authorization from the application and fail if not authorized. This can allow a user to decline an update. suit-parameter-update-priority (<xref target="suit-parameter-update-priority"/>) provides an integer priority level that the application can use to determine whether or not to authorize the update. Priorities are application defined. suit-condition-update-authorized is OPTIONAL to implement.</t>

</section>
<section anchor="suit-condition-version" title="suit-condition-version">

<t>suit-condition-version allows comparing versions of firmware. Verifying image digests is preferred to version checks because digests are more precise. suit-condition-version examines a component’s version against the version info specified in suit-parameter-version (<xref target="suit-parameter-version"/>)</t>

</section>
<section anchor="suit-condition-abort" title="suit-condition-abort">

<t>Unconditionally fail. This operation is typically used in conjunction with suit-directive-try-each (<xref target="suit-directive-try-each"/>).</t>

</section>
<section anchor="SUIT_Condition_Custom" title="suit-condition-custom">

<t>suit-condition-custom describes any proprietary, application specific condition. This is encoded as a negative integer, chosen by the firmware developer. If additional information must be provided to the condition, it should be encoded in a custom parameter (a nint) as described in <xref target="secparameters"/>. SUIT_Condition_Custom is OPTIONAL to implement.</t>

</section>
</section>
<section anchor="suitdirective" title="SUIT_Directive">
<t>Directives are used to define the behavior of the recipient. Directives include:</t>

<texttable>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>CDDL Structure</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>Set Component Index</c>
      <c>suit-directive-set-component-index</c>
      <c><xref target="suit-directive-set-component-index"/></c>
      <c>Set Dependency Index</c>
      <c>suit-directive-set-dependency-index</c>
      <c><xref target="suit-directive-set-dependency-index"/></c>
      <c>Try Each</c>
      <c>suit-directive-try-each</c>
      <c><xref target="suit-directive-try-each"/></c>
      <c>Process Dependency</c>
      <c>suit-directive-process-dependency</c>
      <c><xref target="suit-directive-process-dependency"/></c>
      <c>Set Parameters</c>
      <c>suit-directive-set-parameters</c>
      <c><xref target="suit-directive-set-parameters"/></c>
      <c>Override Parameters</c>
      <c>suit-directive-override-parameters</c>
      <c><xref target="suit-directive-override-parameters"/></c>
      <c>Fetch</c>
      <c>suit-directive-fetch</c>
      <c><xref target="suit-directive-fetch"/></c>
      <c>Fetch URI list</c>
      <c>suit-directive-fetch-uri-list</c>
      <c><xref target="suit-directive-fetch-uri-list"/></c>
      <c>Copy</c>
      <c>suit-directive-copy</c>
      <c><xref target="suit-directive-copy"/></c>
      <c>Run</c>
      <c>suit-directive-run</c>
      <c><xref target="suit-directive-run"/></c>
      <c>Wait For Event</c>
      <c>suit-directive-wait</c>
      <c><xref target="suit-directive-wait"/></c>
      <c>Run Sequence</c>
      <c>suit-directive-run-sequence</c>
      <c><xref target="suit-directive-run-sequence"/></c>
      <c>Swap</c>
      <c>suit-directive-swap</c>
      <c><xref target="suit-directive-swap"/></c>
</texttable>

<t>The abstract description of these commands is defined in <xref target="command-behavior"/>.</t>

<t>When a Recipient executes a Directive, it MUST report a result code. If the Directive reports failure, then the current Command Sequence MUST be terminated.</t>

<section anchor="suit-directive-set-component-index" title="suit-directive-set-component-index">

<t>Set Component Index defines the component to which successive directives and conditions will apply. The supplied argument MUST be one of three types:</t>

<t><list style="numbers">
  <t>An unsigned integer (REQUIRED to implement in parser)</t>
  <t>A boolean (REQUIRED to implement in parser ONLY IF 2 or more components supported)</t>
  <t>An array of unsigned integers (REQUIRED to implement in parser ONLY IF 3 or more components supported)</t>
</list></t>

<t>If the following commands apply to ONE component, an unsigned integer index into the component list is used. If the following commands apply to ALL components, then the boolean value “True” is used instead of an index. If the following commands apply to more than one, but not all components, then an array of unsigned integer indices into the component list is used.
TODO: Component list</t>

<t>If the following commands apply to NO components, then the boolean value “False” is used. When suit-directive-set-dependency-index is used, suit-directive-set-component-index = False is implied. When suit-directive-set-component-index is used, suit-directive-set-dependency-index = False is implied.</t>

<t>If component index is set to True when a command is invoked, then the command applies to all components, in the order they appear in suit-common-components. When the Manifest Processor invokes a command while the component index is set to True, it must execute the command once for each possible component index, ensuring that the command receives the parameters corresponding to that component index.</t>

</section>
<section anchor="suit-directive-set-dependency-index" title="suit-directive-set-dependency-index">

<t>Set Dependency Index defines the manifest to which successive directives and conditions will apply. The supplied argument MUST be either a boolean or an unsigned integer index into the dependencies. If the following directives apply to ALL dependencies, then the boolean value “True” is used instead of an index. If the following directives apply to NO dependencies, then the boolean value “False” is used. When suit-directive-set-component-index is used, suit-directive-set-dependency-index = False is implied. When suit-directive-set-dependency-index is used, suit-directive-set-component-index = False is implied.
TODO: Component list|Dependency List</t>

<t>If dependency index is set to True when a command is invoked, then the command applies to all dependencies, in the order they appear in suit-common-components. When the Manifest Processor invokes a command while the dependency index is set to True, it must execute the command once for each possible dependency index, ensuring that the command receives the parameters corresponding to that dependency index.</t>

<t>Typical operations that require suit-directive-set-dependency-index include setting a source URI or Encryption Information, invoking “Fetch,” or invoking “Process Dependency” for an individual dependency.</t>

</section>
<section anchor="suit-directive-try-each" title="suit-directive-try-each">

<t>This command runs several SUIT_Command_Sequence instances, one after another, in a strict order. Use this command to implement a “try/catch-try/catch” sequence. Manifest processors MAY implement this command.</t>

<t>suit-parameter-soft-failure (<xref target="suit-parameter-soft-failure"/>) is initialized to True at the beginning of each sequence. If one sequence aborts due to a condition failure, the next is started. If no sequence completes without condition failure, then suit-directive-try-each returns an error. If a particular application calls for all sequences to fail and still continue, then an empty sequence (nil) can be added to the Try Each Argument.</t>

<t>The argument to suit-directive-try-each is a list of SUIT_Command_Sequence. suit-directive-try-each does not specify a reporting policy.</t>

</section>
<section anchor="suit-directive-process-dependency" title="suit-directive-process-dependency">

<t>Execute the commands in the common section of the current dependency, followed by the commands in the equivalent section of the current dependency. For example, if the current section is “fetch payload,” this will execute “common” in the current dependency, then “fetch payload” in the current dependency. Once this is complete, the command following suit-directive-process-dependency will be processed.</t>

<t>If the current dependency is False, this directive has no effect. If the current dependency is True, then this directive applies to all dependencies. If the current section is “common,” then the command sequence MUST be terminated with an error.</t>

<t>When SUIT_Process_Dependency completes, it forwards the last status code that occurred in the dependency.</t>

</section>
<section anchor="suit-directive-set-parameters" title="suit-directive-set-parameters">

<t>suit-directive-set-parameters allows the manifest to configure behavior of future directives by changing parameters that are read by those directives. When dependencies are used, suit-directive-set-parameters also allows a manifest to modify the behavior of its dependencies.</t>

<t>Available parameters are defined in <xref target="secparameters"/>.</t>

<t>If a parameter is already set, suit-directive-set-parameters will skip setting the parameter to its argument. This provides the core of the override mechanism, allowing dependent manifests to change the behavior of a manifest.</t>

<t>suit-directive-set-parameters does not specify a reporting policy.</t>

</section>
<section anchor="suit-directive-override-parameters" title="suit-directive-override-parameters">

<t>suit-directive-override-parameters replaces any listed parameters that are already set with the values that are provided in its argument. This allows a manifest to prevent replacement of critical parameters.</t>

<t>Available parameters are defined in <xref target="secparameters"/>.</t>

<t>suit-directive-override-parameters does not specify a reporting policy.</t>

</section>
<section anchor="suit-directive-fetch" title="suit-directive-fetch">

<t>suit-directive-fetch instructs the manifest processor to obtain one or more manifests or payloads, as specified by the manifest index and component index, respectively.</t>

<t>suit-directive-fetch can target one or more manifests and one or more payloads. suit-directive-fetch retrieves each component and each manifest listed in component-index and dependency-index, respectively. If component-index or dependency-index is True, instead of an integer, then all current manifest components/manifests are fetched. The current manifest’s dependent-components are not automatically fetched. In order to pre-fetch these, they MUST be specified in a component-index integer.</t>

<t>suit-directive-fetch typically takes no arguments unless one is needed to modify fetch behavior. If an argument is needed, it must be wrapped in a bstr and set in suit-parameter-fetch-arguments.</t>

<t>suit-directive-fetch reads the URI parameter to find the source of the fetch it performs.</t>

<t>The behavior of suit-directive-fetch can be modified by setting one or more of SUIT_Parameter_Encryption_Info, SUIT_Parameter_Compression_Info, SUIT_Parameter_Unpack_Info. These three parameters each activate and configure a processing step that can be applied to the data that is transferred during suit-directive-fetch.</t>

</section>
<section anchor="suit-directive-fetch-uri-list" title="suit-directive-fetch-uri-list">

<t>suit-directive-fetch-uri-list uses the same semantics as suit-directive-fetch (<xref target="suit-directive-fetch"/>), except that it iterates over the URI List (<xref target="suit-parameter-uri-list"/>) to select a URI to fetch from.</t>

</section>
<section anchor="suit-directive-copy" title="suit-directive-copy">

<t>suit-directive-copy instructs the manifest processor to obtain one or more payloads, as specified by the component index. As described in <xref target="index-true"/> component index may be a single integer, a list of integers, or True. suit-directive-copy retrieves each component specified by the current component-index, respectively. The current manifest’s dependent-components are not automatically copied. In order to copy these, they MUST be specified in a component-index integer.</t>

<t>The behavior of suit-directive-copy can be modified by setting one or more of SUIT_Parameter_Encryption_Info, SUIT_Parameter_Compression_Info, SUIT_Parameter_Unpack_Info. These three parameters each activate and configure a processing step that can be applied to the data that is transferred during suit-directive-copy.</t>

<t>suit-directive-copy reads its source from suit-parameter-source-component (<xref target="suit-parameter-source-component"/>).</t>

<t>If either the source component parameter or the source component itself is absent, this command fails.</t>

</section>
<section anchor="suit-directive-run" title="suit-directive-run">

<t>suit-directive-run directs the manifest processor to transfer execution to the current Component Index. When this is invoked, the manifest processor MAY be unloaded and execution continues in the Component Index. Arguments are provided to suit-directive-run through suit-parameter-run-arguments (<xref target="suit-parameter-run-args"/>) and are forwarded to the executable code located in Component Index in an application-specific way. For example, this could form the Linux Kernel Command Line if booting a Linux device.</t>

<t>If the executable code at Component Index is constructed in such a way that it does not unload the manifest processor, then the manifest processor may resume execution after the executable completes. This allows the manifest processor to invoke suitable helpers and to verify them with image conditions.</t>

</section>
<section anchor="suit-directive-wait" title="suit-directive-wait">

<t>suit-directive-wait directs the manifest processor to pause until a specified event occurs. Some possible events include:</t>

<t><list style="numbers">
  <t>Authorization</t>
  <t>External Power</t>
  <t>Network availability</t>
  <t>Other Device Firmware Version</t>
  <t>Time</t>
  <t>Time of Day</t>
  <t>Day of Week</t>
</list></t>

</section>
<section anchor="suit-directive-run-sequence" title="suit-directive-run-sequence">

<t>To enable conditional commands, and to allow several strictly ordered sequences to be executed out-of-order, suit-directive-run-sequence allows the manifest processor to execute its argument as a SUIT_Command_Sequence. The argument must be wrapped in a bstr.</t>

<t>When a sequence is executed, any failure of a condition causes immediate termination of the sequence.</t>

<t>When suit-directive-run-sequence completes, it forwards the last status code that occurred in the sequence. If the Soft Failure parameter is true, then suit-directive-run-sequence only fails when a directive in the argument sequence fails.</t>

<t>suit-parameter-soft-failure (<xref target="suit-parameter-soft-failure"/>) defaults to False when suit-directive-run-sequence begins. Its value is discarded when suit-directive-run-sequence terminates.</t>

</section>
<section anchor="suit-directive-swap" title="suit-directive-swap">

<t>suit-directive-swap instructs the manifest processor to move the source to the destination and the destination to the source simultaneously. Swap has nearly identical semantics to suit-directive-copy except that suit-directive-swap replaces the source with the current contents of the destination in an application-defined way. As with suit-directive-copy, if the source component is missing, this command fails.</t>

<t>If SUIT_Parameter_Compression_Info or SUIT_Parameter_Encryption_Info are present, they MUST be handled in a symmetric way, so that the source is decompressed into the destination and the destination is compressed into the source. The source is decrypted into the destination and the destination is encrypted into the source. suit-directive-swap is OPTIONAL to implement.</t>

</section>
</section>
<section anchor="integrity-checks" title="Integrity Check Values">

<t>When the CoSWID, Text section, or any Command Sequence of the Update Procedure is made severable, it is moved to the Envelope and replaced with a SUIT_Digest. The SUIT_Digest is computed over the entire bstr enclosing the Manifest element that has been moved to the Envelope. Each element that is made severable from the Manifest is placed in the Envelope. The keys for the envelope elements have the same values as the keys for the manifest elements.</t>

<t>Each Integrity Check Value covers the corresponding Envelope Element as described in <xref target="severable-fields"/>.</t>

</section>
</section>
<section anchor="severable-fields" title="Severable Elements">

<t>Because the manifest can be used by different actors at different times, some parts of the manifest can be removed or “Severed” without affecting later stages of the lifecycle. Severing of information is achieved by separating that information from the signed container so that removing it does not affect the signature. This means that ensuring integrity of severable parts of the manifest is a requirement for the signed portion of the manifest. Severing some parts makes it possible to discard parts of the manifest that are no longer necessary. This is important because it allows the storage used by the manifest to be greatly reduced. For example, no text size limits are needed if text is removed from the manifest prior to delivery to a constrained device.</t>

<t>Elements are made severable by removing them from the manifest, encoding them in a bstr, and placing a SUIT_Digest of the bstr in the manifest so that they can still be authenticated. The SUIT_Digest typically consumes 4 bytes more than the size of the raw digest, therefore elements smaller than (Digest Bits)/8 + 4 SHOULD NOT be severable. Elements larger than (Digest Bits)/8 + 4 MAY be severable, while elements that are much larger than (Digest Bits)/8 + 4 SHOULD be severable.</t>

<t>Because of this, all command sequences in the manifest are encoded in a bstr so that there is a single code path needed for all command sequences.</t>

</section>
</section>
<section anchor="access-control-lists" title="Access Control Lists">

<t>To manage permissions in the manifest, there are three models that can be used.</t>

<t>First, the simplest model requires that all manifests are authenticated by a single trusted key. This mode has the advantage that only a root manifest needs to be authenticated, since all of its dependencies have digests included in the root manifest.</t>

<t>This simplest model can be extended by adding key delegation without much increase in complexity.</t>

<t>A second model requires an ACL to be presented to the Recipient, authenticated by a trusted party or stored on the Recipient. This ACL grants access rights for specific component IDs or Component Identifier prefixes to the listed identities or identity groups. Any identity can verify an image digest, but fetching into or fetching from a Component Identifier requires approval from the ACL.</t>

<t>A third model allows a Recipient to provide even more fine-grained controls: The ACL lists the Component Identifier or Component Identifier prefix that an identity can use, and also lists the commands and parameters that the identity can use in combination with that Component Identifier.</t>

</section>
<section anchor="SUIT_Digest" title="SUIT Digest Container">

<t>RFC 8152 <xref target="RFC8152"/> provides containers for signature, MAC, and encryption, but no basic digest container. The container needed for a digest requires a type identifier and a container for the raw digest data. Some forms of digest may require additional parameters. These can be added following the digest.</t>

<t>The SUIT digest is a CBOR List containing two elements: a suit-digest-algorithm-id and a bstr containing the bytes of the digest.</t>

</section>
<section anchor="iana" title="IANA Considerations">

<t>IANA is requested to:</t>

<t><list style="symbols">
  <t>allocate CBOR tag 48 in the CBOR Tags registry for the SUIT Envelope.</t>
  <t>allocate CBOR tag 480 in the CBOR Tags registry for the SUIT Manifest.</t>
  <t>allocate media type application/suit-envelope in the Media Types registry.</t>
  <t>setup several registries as described below.</t>
</list></t>

<t>IANA is requested to setup a registry for SUIT manifests.
Several registries defined in the subsections below need to be created.</t>

<t>For each registry, values 0-23 are Standards Action, 24-255 are IETF Review, 256-65535 are Expert Review, and 65536 or greater are First Come First Served.</t>

<t>Negative values -23 to 0 are Experimental Use, -24 and lower are Private Use.</t>

<section anchor="suit-commands" title="SUIT Commands">

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <ttcol align='left'>&#160;</ttcol>
      <c>1</c>
      <c>Vendor Identifier</c>
      <c><xref target="identifier-conditions"/></c>
      <c>&#160;</c>
      <c>2</c>
      <c>Class Identifier</c>
      <c><xref target="identifier-conditions"/></c>
      <c>&#160;</c>
      <c>3</c>
      <c>Image Match</c>
      <c><xref target="suit-condition-image-match"/></c>
      <c>&#160;</c>
      <c>4</c>
      <c>Use Before</c>
      <c><xref target="suit-condition-use-before"/></c>
      <c>&#160;</c>
      <c>5</c>
      <c>Component Offset</c>
      <c><xref target="suit-condition-component-offset"/></c>
      <c>&#160;</c>
      <c>12</c>
      <c>Set Component Index</c>
      <c><xref target="suit-directive-set-component-index"/></c>
      <c>&#160;</c>
      <c>13</c>
      <c>Set Dependency Index</c>
      <c><xref target="suit-directive-set-dependency-index"/></c>
      <c>&#160;</c>
      <c>14</c>
      <c>Abort</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>15</c>
      <c>Try Each</c>
      <c><xref target="suit-directive-try-each"/></c>
      <c>&#160;</c>
      <c>16</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>17</c>
      <c>Reserved</c>
      <c>&#160;</c>
      <c>&#160;</c>
      <c>18</c>
      <c>Process Dependency</c>
      <c>suit-directive-process-dependency</c>
      <c><xref target="suit-directive-process-dependency"/></c>
      <c>19</c>
      <c>Set Parameters</c>
      <c><xref target="suit-directive-set-parameters"/></c>
      <c>&#160;</c>
      <c>20</c>
      <c>Override Parameters</c>
      <c><xref target="suit-directive-override-parameters"/></c>
      <c>&#160;</c>
      <c>21</c>
      <c>Fetch</c>
      <c><xref target="suit-directive-fetch"/></c>
      <c>&#160;</c>
      <c>22</c>
      <c>Copy</c>
      <c><xref target="suit-directive-copy"/></c>
      <c>&#160;</c>
      <c>23</c>
      <c>Run</c>
      <c><xref target="suit-directive-run"/></c>
      <c>&#160;</c>
      <c>24</c>
      <c>Device Identifier</c>
      <c><xref target="identifier-conditions"/></c>
      <c>&#160;</c>
      <c>25</c>
      <c>Image Not Match</c>
      <c><xref target="suit-condition-image-not-match"/></c>
      <c>&#160;</c>
      <c>26</c>
      <c>Minimum Battery</c>
      <c><xref target="suit-condition-minimum-battery"/></c>
      <c>&#160;</c>
      <c>27</c>
      <c>Update Authorized</c>
      <c><xref target="suit-condition-update-authorized"/></c>
      <c>&#160;</c>
      <c>28</c>
      <c>Version</c>
      <c><xref target="suit-condition-version"/></c>
      <c>&#160;</c>
      <c>29</c>
      <c>Wait For Event</c>
      <c><xref target="suit-directive-wait"/></c>
      <c>&#160;</c>
      <c>30</c>
      <c>Fetch URI List</c>
      <c><xref target="suit-directive-fetch-uri-list"/></c>
      <c>&#160;</c>
      <c>31</c>
      <c>Swap</c>
      <c><xref target="suit-directive-swap"/></c>
      <c>&#160;</c>
      <c>32</c>
      <c>Run Sequence</c>
      <c><xref target="suit-directive-run-sequence"/></c>
      <c>&#160;</c>
      <c>nint</c>
      <c>Custom Condition</c>
      <c><xref target="SUIT_Condition_Custom"/></c>
      <c>&#160;</c>
</texttable>

</section>
<section anchor="suit-parameters" title="SUIT Parameters">

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>1</c>
      <c>Vendor ID</c>
      <c><xref target="suit-parameter-vendor-identifier"/></c>
      <c>2</c>
      <c>Class ID</c>
      <c><xref target="suit-parameter-class-identifier"/></c>
      <c>3</c>
      <c>Image Digest</c>
      <c><xref target="suit-parameter-image-digest"/></c>
      <c>4</c>
      <c>Use Before</c>
      <c><xref target="suit-parameter-use-before"/></c>
      <c>5</c>
      <c>Component Offset</c>
      <c><xref target="suit-parameter-component-offset"/></c>
      <c>12</c>
      <c>Strict Order</c>
      <c><xref target="suit-parameter-strict-order"/></c>
      <c>13</c>
      <c>Soft Failure</c>
      <c><xref target="suit-parameter-soft-failure"/></c>
      <c>14</c>
      <c>Image Size</c>
      <c><xref target="suit-parameter-image-size"/></c>
      <c>18</c>
      <c>Encryption Info</c>
      <c><xref target="suit-parameter-encryption-info"/></c>
      <c>19</c>
      <c>Compression Info</c>
      <c><xref target="suit-parameter-compression-info"/></c>
      <c>20</c>
      <c>Unpack Info</c>
      <c><xref target="suit-parameter-unpack-info"/></c>
      <c>21</c>
      <c>URI</c>
      <c><xref target="suit-parameter-uri"/></c>
      <c>22</c>
      <c>Source Component</c>
      <c><xref target="suit-parameter-source-component"/></c>
      <c>23</c>
      <c>Run Args</c>
      <c><xref target="suit-parameter-run-args"/></c>
      <c>24</c>
      <c>Device ID</c>
      <c><xref target="suit-parameter-device-identifier"/></c>
      <c>26</c>
      <c>Minimum Battery</c>
      <c><xref target="suit-parameter-minimum-battery"/></c>
      <c>27</c>
      <c>Update Priority</c>
      <c><xref target="suit-parameter-update-priority"/></c>
      <c>28</c>
      <c>Version</c>
      <c>{{suit-parameter-version}</c>
      <c>29</c>
      <c>Wait Info</c>
      <c><xref target="suit-parameter-wait-info"/></c>
      <c>30</c>
      <c>URI List</c>
      <c><xref target="suit-parameter-uri-list"/></c>
      <c>nint</c>
      <c>Custom</c>
      <c><xref target="suit-parameter-custom"/></c>
</texttable>

</section>
<section anchor="suit-text-values" title="SUIT Text Values">

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>1</c>
      <c>Manifest Description</c>
      <c><xref target="manifest-digest-text"/></c>
      <c>2</c>
      <c>Update Description</c>
      <c><xref target="manifest-digest-text"/></c>
      <c>3</c>
      <c>Manifest JSON Source</c>
      <c><xref target="manifest-digest-text"/></c>
      <c>4</c>
      <c>Manifest YAML Source</c>
      <c><xref target="manifest-digest-text"/></c>
      <c>nint</c>
      <c>Custom</c>
      <c><xref target="manifest-digest-text"/></c>
</texttable>

</section>
<section anchor="suit-component-text-values" title=" SUIT Component Text Values">

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>1</c>
      <c>Vendor Name</c>
      <c><xref target="manifest-digest-text"/></c>
      <c>2</c>
      <c>Model Name</c>
      <c><xref target="manifest-digest-text"/></c>
      <c>3</c>
      <c>Vendor Domain</c>
      <c><xref target="manifest-digest-text"/></c>
      <c>4</c>
      <c>Model Info</c>
      <c><xref target="manifest-digest-text"/></c>
      <c>5</c>
      <c>Component Description</c>
      <c><xref target="manifest-digest-text"/></c>
      <c>6</c>
      <c>Component Version</c>
      <c><xref target="manifest-digest-text"/></c>
      <c>7</c>
      <c>Component Version Required</c>
      <c><xref target="manifest-digest-text"/></c>
      <c>nint</c>
      <c>Custom</c>
      <c><xref target="manifest-digest-text"/></c>
</texttable>

</section>
<section anchor="suit-algorithm-identifiers" title="SUIT Algorithm Identifiers">

<section anchor="suit-digest-algorithm-identifiers" title="SUIT Digest Algorithm Identifiers">

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>&#160;</ttcol>
      <c>1</c>
      <c>SHA224</c>
      <c><xref target="SUIT_Digest"/></c>
      <c>2</c>
      <c>SHA256</c>
      <c><xref target="SUIT_Digest"/></c>
      <c>3</c>
      <c>SHA384</c>
      <c><xref target="SUIT_Digest"/></c>
      <c>4</c>
      <c>SHA512</c>
      <c><xref target="SUIT_Digest"/></c>
      <c>5</c>
      <c>SHA3-224</c>
      <c><xref target="SUIT_Digest"/></c>
      <c>6</c>
      <c>SHA3-256</c>
      <c><xref target="SUIT_Digest"/></c>
      <c>7</c>
      <c>SHA3-384</c>
      <c><xref target="SUIT_Digest"/></c>
      <c>8</c>
      <c>SHA3-512</c>
      <c><xref target="SUIT_Digest"/></c>
</texttable>

</section>
<section anchor="suit-compression-algorithm-identifiers" title="SUIT Compression Algorithm Identifiers">

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>1</c>
      <c>zlib</c>
      <c><xref target="suit-parameter-compression-info"/></c>
      <c>2</c>
      <c>Brotli</c>
      <c><xref target="suit-parameter-compression-info"/></c>
      <c>3</c>
      <c>zstd</c>
      <c><xref target="suit-parameter-compression-info"/></c>
</texttable>

</section>
<section anchor="unpack-algorithms" title="Unpack Algorithms">

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>1</c>
      <c>HEX</c>
      <c><xref target="suit-parameter-unpack-info"/></c>
      <c>2</c>
      <c>ELF</c>
      <c><xref target="suit-parameter-unpack-info"/></c>
      <c>3</c>
      <c>COFF</c>
      <c><xref target="suit-parameter-unpack-info"/></c>
      <c>4</c>
      <c>SREC</c>
      <c><xref target="suit-parameter-unpack-info"/></c>
</texttable>

</section>
</section>
</section>
<section anchor="security-considerations" title="Security Considerations">

<t>This document is about a manifest format protecting and describing how to retrieve, install, and invoke firmware images and as such it is part of a larger solution for delivering firmware updates to IoT devices. A detailed security treatment can be found in the architecture <xref target="I-D.ietf-suit-architecture"/> and in the information model <xref target="I-D.ietf-suit-information-model"/> documents.</t>

</section>
<section anchor="acknowledgements" title="Acknowledgements">

<t>We would like to thank the following persons for their support in designing this mechanism:</t>

<t><list style="symbols">
  <t>Milosch Meriac</t>
  <t>Geraint Luff</t>
  <t>Dan Ros</t>
  <t>John-Paul Stanford</t>
  <t>Hugo Vincent</t>
  <t>Carsten Bormann</t>
  <t>Øyvind Rønningstad</t>
  <t>Frank Audun Kvamtrø</t>
  <t>Krzysztof Chruściński</t>
  <t>Andrzej Puzdrowski</t>
  <t>Michael Richardson</t>
  <t>David Brown</t>
  <t>Emmanuel Baccelli</t>
</list></t>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference  anchor="RFC4122" target='https://www.rfc-editor.org/info/rfc4122'>
<front>
<title>A Universally Unique IDentifier (UUID) URN Namespace</title>
<author initials='P.' surname='Leach' fullname='P. Leach'><organization /></author>
<author initials='M.' surname='Mealling' fullname='M. Mealling'><organization /></author>
<author initials='R.' surname='Salz' fullname='R. Salz'><organization /></author>
<date year='2005' month='July' />
<abstract><t>This specification defines a Uniform Resource Name namespace for UUIDs (Universally Unique IDentifier), also known as GUIDs (Globally Unique IDentifier).  A UUID is 128 bits long, and can guarantee uniqueness across space and time.  UUIDs were originally used in the Apollo Network Computing System and later in the Open Software Foundation\'s (OSF) Distributed Computing Environment (DCE), and then in Microsoft Windows platforms.</t><t>This specification is derived from the DCE specification with the kind permission of the OSF (now known as The Open Group).  Information from earlier versions of the DCE specification have been incorporated into this document.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4122'/>
<seriesInfo name='DOI' value='10.17487/RFC4122'/>
</reference>



<reference  anchor="RFC8152" target='https://www.rfc-editor.org/info/rfc8152'>
<front>
<title>CBOR Object Signing and Encryption (COSE)</title>
<author initials='J.' surname='Schaad' fullname='J. Schaad'><organization /></author>
<date year='2017' month='July' />
<abstract><t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size.  There is a need for the ability to have basic security services defined for this data format. This document defines the CBOR Object Signing and Encryption (COSE) protocol.  This specification describes how to create and process signatures, message authentication codes, and encryption using CBOR for serialization.  This specification additionally describes how to represent cryptographic keys using CBOR.</t></abstract>
</front>
<seriesInfo name='RFC' value='8152'/>
<seriesInfo name='DOI' value='10.17487/RFC8152'/>
</reference>



<reference  anchor="RFC3986" target='https://www.rfc-editor.org/info/rfc3986'>
<front>
<title>Uniform Resource Identifier (URI): Generic Syntax</title>
<author initials='T.' surname='Berners-Lee' fullname='T. Berners-Lee'><organization /></author>
<author initials='R.' surname='Fielding' fullname='R. Fielding'><organization /></author>
<author initials='L.' surname='Masinter' fullname='L. Masinter'><organization /></author>
<date year='2005' month='January' />
<abstract><t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource.  This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet.  The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier.  This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='STD' value='66'/>
<seriesInfo name='RFC' value='3986'/>
<seriesInfo name='DOI' value='10.17487/RFC3986'/>
</reference>



<reference  anchor="RFC2119" target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



<reference  anchor="RFC8174" target='https://www.rfc-editor.org/info/rfc8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<date year='2017' month='May' />
<abstract><t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='8174'/>
<seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>




    </references>

    <references title='Informative References'>





<reference anchor="I-D.ietf-suit-architecture">
<front>
<title>A Firmware Update Architecture for Internet of Things</title>

<author initials='B' surname='Moran' fullname='Brendan Moran'>
    <organization />
</author>

<author initials='H' surname='Tschofenig' fullname='Hannes Tschofenig'>
    <organization />
</author>

<author initials='D' surname='Brown' fullname='David Brown'>
    <organization />
</author>

<author initials='M' surname='Meriac' fullname='Milosch Meriac'>
    <organization />
</author>

<date month='October' day='21' year='2020' />

<abstract><t>Vulnerabilities in Internet of Things (IoT) devices have raised the need for a reliable and secure firmware update mechanism suitable for devices with resource constraints.  Incorporating such an update mechanism is a fundamental requirement for fixing vulnerabilities but it also enables other important capabilities such as updating configuration settings as well as adding new functionality.  In addition to the definition of terminology and an architecture this document motivates the standardization of a manifest format as a transport-agnostic means for describing and protecting firmware updates.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-suit-architecture-14' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-suit-architecture-14.txt' />
</reference>



<reference anchor="I-D.ietf-suit-information-model">
<front>
<title>An Information Model for Firmware Updates in IoT Devices</title>

<author initials='B' surname='Moran' fullname='Brendan Moran'>
    <organization />
</author>

<author initials='H' surname='Tschofenig' fullname='Hannes Tschofenig'>
    <organization />
</author>

<author initials='H' surname='Birkholz' fullname='Henk Birkholz'>
    <organization />
</author>

<date month='October' day='28' year='2020' />

<abstract><t>Vulnerabilities with Internet of Things (IoT) devices have raised the need for a reliable and secure firmware update mechanism that is also suitable for constrained devices.  Ensuring that devices function and remain secure over their service life requires such an update mechanism to fix vulnerabilities, to update configuration settings, as well as adding new functionality.  One component of such a firmware update is a concise and machine- processable meta-data document, or manifest, that describes the firmware image(s) and offers appropriate protection.  This document describes the information that must be present in the manifest.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-suit-information-model-08' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-suit-information-model-08.txt' />
</reference>



<reference anchor="I-D.ietf-teep-architecture">
<front>
<title>Trusted Execution Environment Provisioning (TEEP) Architecture</title>

<author initials='M' surname='Pei' fullname='Mingliang Pei'>
    <organization />
</author>

<author initials='H' surname='Tschofenig' fullname='Hannes Tschofenig'>
    <organization />
</author>

<author initials='D' surname='Thaler' fullname='Dave Thaler'>
    <organization />
</author>

<author initials='D' surname='Wheeler' fullname='David Wheeler'>
    <organization />
</author>

<date month='July' day='13' year='2020' />

<abstract><t>A Trusted Execution Environment (TEE) is an environment that enforces that any code within that environment cannot be tampered with, and that any data used by such code cannot be read or tampered with by any code outside that environment.  This architecture document motivates the design and standardization of a protocol for managing the lifecycle of trusted applications running inside such a TEE.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-teep-architecture-12' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-teep-architecture-12.txt' />
</reference>



<reference anchor="I-D.ietf-sacm-coswid">
<front>
<title>Concise Software Identification Tags</title>

<author initials='H' surname='Birkholz' fullname='Henk Birkholz'>
    <organization />
</author>

<author initials='J' surname='Fitzgerald-McKay' fullname='Jessica Fitzgerald-McKay'>
    <organization />
</author>

<author initials='C' surname='Schmidt' fullname='Charles Schmidt'>
    <organization />
</author>

<author initials='D' surname='Waltermire' fullname='David Waltermire'>
    <organization />
</author>

<date month='May' day='1' year='2020' />

<abstract><t>ISO/IEC 19770-2:2015 Software Identification (SWID) tags provide an extensible XML-based structure to identify and describe individual software components, patches, and installation bundles.  SWID tag representations can be too large for devices with network and storage constraints.  This document defines a concise representation of SWID tags: Concise SWID (CoSWID) tags.  CoSWID supports the same features as SWID tags, as well as additional semantics that allow CoSWIDs to describe additional types of information, all in a more memory efficient format.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-sacm-coswid-15' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-sacm-coswid-15.txt' />
</reference>



<reference anchor="I-D.ietf-cbor-tags-oid">
<front>
<title>Concise Binary Object Representation (CBOR) Tags for Object Identifiers</title>

<author initials='C' surname='Bormann' fullname='Carsten Bormann'>
    <organization />
</author>

<author initials='S' surname='Leonard' fullname='Sean Leonard'>
    <organization />
</author>

<date month='October' day='28' year='2020' />

<abstract><t>The Concise Binary Object Representation (CBOR, draft-ietf-cbor- 7049bis) is a data format whose design goals include the possibility of extremely small code size, fairly small message size, and extensibility without the need for version negotiation.  The present document defines CBOR tags for object identifiers (OIDs). It is intended as the reference document for the IANA registration of the CBOR tags so defined.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-ietf-cbor-tags-oid-02' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-cbor-tags-oid-02.txt' />
</reference>



<reference  anchor="RFC7932" target='https://www.rfc-editor.org/info/rfc7932'>
<front>
<title>Brotli Compressed Data Format</title>
<author initials='J.' surname='Alakuijala' fullname='J. Alakuijala'><organization /></author>
<author initials='Z.' surname='Szabadka' fullname='Z. Szabadka'><organization /></author>
<date year='2016' month='July' />
<abstract><t>This specification defines a lossless compressed data format that compresses data using a combination of the LZ77 algorithm and Huffman coding, with efficiency comparable to the best currently available general-purpose compression methods.</t></abstract>
</front>
<seriesInfo name='RFC' value='7932'/>
<seriesInfo name='DOI' value='10.17487/RFC7932'/>
</reference>



<reference  anchor="RFC1950" target='https://www.rfc-editor.org/info/rfc1950'>
<front>
<title>ZLIB Compressed Data Format Specification version 3.3</title>
<author initials='P.' surname='Deutsch' fullname='P. Deutsch'><organization /></author>
<author initials='J-L.' surname='Gailly' fullname='J-L. Gailly'><organization /></author>
<date year='1996' month='May' />
<abstract><t>This specification defines a lossless compressed data format.  This memo provides information for the Internet community.  This memo does not specify an Internet standard of any kind.</t></abstract>
</front>
<seriesInfo name='RFC' value='1950'/>
<seriesInfo name='DOI' value='10.17487/RFC1950'/>
</reference>



<reference  anchor="RFC8392" target='https://www.rfc-editor.org/info/rfc8392'>
<front>
<title>CBOR Web Token (CWT)</title>
<author initials='M.' surname='Jones' fullname='M. Jones'><organization /></author>
<author initials='E.' surname='Wahlstroem' fullname='E. Wahlstroem'><organization /></author>
<author initials='S.' surname='Erdtman' fullname='S. Erdtman'><organization /></author>
<author initials='H.' surname='Tschofenig' fullname='H. Tschofenig'><organization /></author>
<date year='2018' month='May' />
<abstract><t>CBOR Web Token (CWT) is a compact means of representing claims to be transferred between two parties.  The claims in a CWT are encoded in the Concise Binary Object Representation (CBOR), and CBOR Object Signing and Encryption (COSE) is used for added application-layer security protection.  A claim is a piece of information asserted about a subject and is represented as a name/value pair consisting of a claim name and a claim value.  CWT is derived from JSON Web Token (JWT) but uses CBOR rather than JSON.</t></abstract>
</front>
<seriesInfo name='RFC' value='8392'/>
<seriesInfo name='DOI' value='10.17487/RFC8392'/>
</reference>



<reference  anchor="RFC7228" target='https://www.rfc-editor.org/info/rfc7228'>
<front>
<title>Terminology for Constrained-Node Networks</title>
<author initials='C.' surname='Bormann' fullname='C. Bormann'><organization /></author>
<author initials='M.' surname='Ersue' fullname='M. Ersue'><organization /></author>
<author initials='A.' surname='Keranen' fullname='A. Keranen'><organization /></author>
<date year='2014' month='May' />
<abstract><t>The Internet Protocol Suite is increasingly used on small devices with severe constraints on power, memory, and processing resources, creating constrained-node networks.  This document provides a number of basic terms that have been useful in the standardization work for constrained-node networks.</t></abstract>
</front>
<seriesInfo name='RFC' value='7228'/>
<seriesInfo name='DOI' value='10.17487/RFC7228'/>
</reference>



<reference  anchor="RFC8747" target='https://www.rfc-editor.org/info/rfc8747'>
<front>
<title>Proof-of-Possession Key Semantics for CBOR Web Tokens (CWTs)</title>
<author initials='M.' surname='Jones' fullname='M. Jones'><organization /></author>
<author initials='L.' surname='Seitz' fullname='L. Seitz'><organization /></author>
<author initials='G.' surname='Selander' fullname='G. Selander'><organization /></author>
<author initials='S.' surname='Erdtman' fullname='S. Erdtman'><organization /></author>
<author initials='H.' surname='Tschofenig' fullname='H. Tschofenig'><organization /></author>
<date year='2020' month='March' />
<abstract><t>This specification describes how to declare in a CBOR Web Token (CWT) (which is defined by RFC 8392) that the presenter of the CWT possesses a particular proof-of-possession key. Being able to prove possession of a key is also sometimes described as being the holder-of-key. This specification provides equivalent functionality to &quot;Proof-of-Possession Key Semantics for JSON Web Tokens (JWTs)&quot; (RFC 7800) but using Concise Binary Object Representation (CBOR) and CWTs rather than JavaScript Object Notation (JSON) and JSON Web Tokens (JWTs).</t></abstract>
</front>
<seriesInfo name='RFC' value='8747'/>
<seriesInfo name='DOI' value='10.17487/RFC8747'/>
</reference>



<reference anchor="I-D.kucherawy-rfc8478bis">
<front>
<title>Zstandard Compression and the application/zstd Media Type</title>

<author initials='Y' surname='Collet' fullname='Yann Collet'>
    <organization />
</author>

<author initials='M' surname='Kucherawy' fullname='Murray Kucherawy'>
    <organization />
</author>

<date month='April' day='23' year='2020' />

<abstract><t>Zstandard, or "zstd" (pronounced "zee standard"), is a data compression mechanism.  This document describes the mechanism and registers a media type and content encoding to be used when transporting zstd-compressed content via Multipurpose Internet Mail Extensions (MIME).  It also registers a corresponding media type, content encoding, and structured syntax suffix.  Despite use of the word "standard" as part of its name, readers are advised that this document is not an Internet Standards Track specification; it is being published for informational purposes only.  This document replaces and obsoletes RFC 8478.</t></abstract>

</front>

<seriesInfo name='Internet-Draft' value='draft-kucherawy-rfc8478bis-05' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-kucherawy-rfc8478bis-05.txt' />
</reference>


<reference anchor="YAML" target="https://yaml.org/">
  <front>
    <title>YAML Ain't Markup Language</title>
    <author >
      <organization></organization>
    </author>
    <date year="2020"/>
  </front>
</reference>
<reference anchor="HEX" target="https://en.wikipedia.org/wiki/Intel_HEX">
  <front>
    <title>Intel HEX</title>
    <author initials="." surname="Wikipedia">
      <organization></organization>
    </author>
    <date year="2020"/>
  </front>
</reference>
<reference anchor="SREC" target="https://en.wikipedia.org/wiki/SREC_(file_format)">
  <front>
    <title>SREC (file format)</title>
    <author initials="." surname="Wikipedia">
      <organization></organization>
    </author>
    <date year="2020"/>
  </front>
</reference>
<reference anchor="ELF" target="https://en.wikipedia.org/wiki/Executable_and_Linkable_Format">
  <front>
    <title>Executable and Linkable Format (ELF)</title>
    <author initials="." surname="Wikipedia">
      <organization></organization>
    </author>
    <date year="2020"/>
  </front>
</reference>
<reference anchor="COFF" target="https://en.wikipedia.org/wiki/COFF">
  <front>
    <title>Common Object File Format (COFF)</title>
    <author initials="." surname="Wikipedia">
      <organization></organization>
    </author>
    <date year="2020"/>
  </front>
</reference>


    </references>


<section anchor="full-cddl" title="A. Full CDDL">
<t>In order to create a valid SUIT Manifest document the structure of the corresponding CBOR message MUST adhere to the following CDDL data definition.</t>

<figure><artwork type="CDDL"><![CDATA[
SUIT_Envelope_Tagged = #6.48(SUIT_Envelope)
SUIT_Envelope = {
  ? suit-delegation => bstr .cbor SUIT_Delegation,
  suit-authentication-wrapper => bstr .cbor SUIT_Authentication,
  suit-manifest  => bstr .cbor SUIT_Manifest,
  SUIT_Severable_Manifest_Members,
  * SUIT_Integrated_Payload,
  * SUIT_Integrated_Dependency,
  * $$SUIT_Envelope_Extensions,
  * (int => bstr)
}

SUIT_Delegation = [ + [ + bstr .cbor CWT ] ]

CWT = SUIT_Authentication_Block

SUIT_Authentication = [
    bstr .cbor SUIT_Digest,
    * bstr .cbor SUIT_Authentication_Block
]

SUIT_Digest = [
  suit-digest-algorithm-id : suit-digest-algorithm-ids,
  suit-digest-bytes : bstr,
  * $$SUIT_Digest-extensions
]

; Named Information Hash Algorithm Identifiers
suit-digest-algorithm-ids /= algorithm-id-sha224
suit-digest-algorithm-ids /= algorithm-id-sha256
suit-digest-algorithm-ids /= algorithm-id-sha384
suit-digest-algorithm-ids /= algorithm-id-sha512
suit-digest-algorithm-ids /= algorithm-id-sha3-224
suit-digest-algorithm-ids /= algorithm-id-sha3-256
suit-digest-algorithm-ids /= algorithm-id-sha3-384
suit-digest-algorithm-ids /= algorithm-id-sha3-512

SUIT_Authentication_Block /= COSE_Mac_Tagged
SUIT_Authentication_Block /= COSE_Sign_Tagged
SUIT_Authentication_Block /= COSE_Mac0_Tagged
SUIT_Authentication_Block /= COSE_Sign1_Tagged

COSE_Mac_Tagged = any
COSE_Sign_Tagged = any
COSE_Mac0_Tagged = any
COSE_Sign1_Tagged = any
COSE_Encrypt_Tagged = any
COSE_Encrypt0_Tagged = any

SUIT_Severable_Manifest_Members = (
  ? suit-dependency-resolution => bstr .cbor SUIT_Command_Sequence,
  ? suit-payload-fetch => bstr .cbor SUIT_Command_Sequence,
  ? suit-install => bstr .cbor SUIT_Command_Sequence,
  ? suit-text => bstr .cbor SUIT_Text_Map,
  ? suit-coswid => bstr .cbor concise-software-identity,
  * $$SUIT_severable-members-extensions,
)

SUIT_Integrated_Payload = (suit-integrated-payload-key => bstr)
SUIT_Integrated_Dependency = (
    suit-integrated-payload-key => bstr .cbor SUIT_Envelope
)
suit-integrated-payload-key = nint / uint .ge 24

SUIT_Manifest_Tagged = #6.480(SUIT_Manifest)

SUIT_Manifest = {
    suit-manifest-version         => 1,
    suit-manifest-sequence-number => uint,
    suit-common                   => bstr .cbor SUIT_Common,
    ? suit-reference-uri          => tstr,
    SUIT_Severable_Manifest_Members,
    SUIT_Severable_Members_Digests,
    SUIT_Unseverable_Members,
    * $$SUIT_Manifest_Extensions,
}

SUIT_Unseverable_Members = (
  ? suit-validate => bstr .cbor SUIT_Command_Sequence,
  ? suit-load => bstr .cbor SUIT_Command_Sequence,
  ? suit-run => bstr .cbor SUIT_Command_Sequence,
  * $$unserverble-manifest-member-extensions,
)

SUIT_Severable_Members_Digests = (
  ? suit-dependency-resolution => SUIT_Digest,
  ? suit-payload-fetch => SUIT_Digest,
  ? suit-install => SUIT_Digest,
  ? suit-text => SUIT_Digest,
  ? suit-coswid => SUIT_Digest,
  * $$severable-manifest-members-digests-extensions
)

SUIT_Common = {
    ? suit-dependencies           => SUIT_Dependencies,
    ? suit-components             => SUIT_Components,
    ? suit-common-sequence        => bstr .cbor SUIT_Common_Sequence,
    * $$SUIT_Common-extensions,
}

SUIT_Dependencies         = [ + SUIT_Dependency ]
SUIT_Components           = [ + SUIT_Component_Identifier ]

concise-software-identity = any

SUIT_Dependency = {
    suit-dependency-digest => SUIT_Digest,
    ? suit-dependency-prefix => SUIT_Component_Identifier,
    * $$SUIT_Dependency-extensions,
}

SUIT_Component_Identifier =  [* bstr]

SUIT_Common_Sequence = [
    + ( SUIT_Condition // SUIT_Common_Commands )
]

SUIT_Common_Commands //= (suit-directive-set-component-index,  IndexArg)
SUIT_Common_Commands //= (suit-directive-set-dependency-index, IndexArg)
SUIT_Common_Commands //= (suit-directive-run-sequence,
    bstr .cbor SUIT_Command_Sequence)
SUIT_Common_Commands //= (suit-directive-try-each,
    SUIT_Directive_Try_Each_Argument)
SUIT_Common_Commands //= (suit-directive-set-parameters,
    {+ SUIT_Parameters})
SUIT_Common_Commands //= (suit-directive-override-parameters,
    {+ SUIT_Parameters})

IndexArg /= uint
IndexArg /= bool
IndexArg /= [+uint]

SUIT_Command_Sequence = [ + (
    SUIT_Condition // SUIT_Directive // SUIT_Command_Custom
) ]

SUIT_Command_Custom = (suit-command-custom, bstr/tstr/int/nil)
SUIT_Condition //= (suit-condition-vendor-identifier, SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-class-identifier,  SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-device-identifier, SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-image-match,       SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-image-not-match,   SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-use-before,        SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-minimum-battery,   SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-update-authorized, SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-version,           SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-component-offset,  SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-abort,             SUIT_Rep_Policy)

SUIT_Directive //= (suit-directive-set-component-index,  IndexArg)
SUIT_Directive //= (suit-directive-set-dependency-index, IndexArg)
SUIT_Directive //= (suit-directive-run-sequence,
    bstr .cbor SUIT_Command_Sequence)
SUIT_Directive //= (suit-directive-try-each,
    SUIT_Directive_Try_Each_Argument)
SUIT_Directive //= (suit-directive-process-dependency, SUIT_Rep_Policy)
SUIT_Directive //= (suit-directive-set-parameters,
    {+ SUIT_Parameters})
SUIT_Directive //= (suit-directive-override-parameters,
    {+ SUIT_Parameters})
SUIT_Directive //= (suit-directive-fetch,             SUIT_Rep_Policy)
SUIT_Directive //= (suit-directive-copy,              SUIT_Rep_Policy)
SUIT_Directive //= (suit-directive-swap,              SUIT_Rep_Policy)
SUIT_Directive //= (suit-directive-run,               SUIT_Rep_Policy)
SUIT_Directive //= (suit-directive-wait,              SUIT_Rep_Policy)
SUIT_Directive //= (suit-directive-fetch-uri-list,    SUIT_Rep_Policy)

SUIT_Directive_Try_Each_Argument = [
    + bstr .cbor SUIT_Command_Sequence,
    nil / bstr .cbor SUIT_Command_Sequence
]

SUIT_Rep_Policy = uint .bits suit-reporting-bits

suit-reporting-bits = &(
    suit-send-record-success : 0,
    suit-send-record-failure : 1,
    suit-send-sysinfo-success : 2,
    suit-send-sysinfo-failure : 3
)

SUIT_Wait_Event = { + SUIT_Wait_Events }

SUIT_Wait_Events //= (suit-wait-event-authorization => int)
SUIT_Wait_Events //= (suit-wait-event-power => int)
SUIT_Wait_Events //= (suit-wait-event-network => int)
SUIT_Wait_Events //= (suit-wait-event-other-device-version
    => SUIT_Wait_Event_Argument_Other_Device_Version)
SUIT_Wait_Events //= (suit-wait-event-time => uint); Timestamp
SUIT_Wait_Events //= (suit-wait-event-time-of-day
    => uint); Time of Day (seconds since 00:00:00)
SUIT_Wait_Events //= (suit-wait-event-day-of-week
    => uint); Days since Sunday

SUIT_Wait_Event_Argument_Other_Device_Version = [
    other-device: bstr,
    other-device-version: [ + SUIT_Parameter_Version_Match ]
]

SUIT_Parameters //= (suit-parameter-vendor-identifier =>
    (RFC4122_UUID / cbor-pen))
cbor-pen = #6.112(bstr)

SUIT_Parameters //= (suit-parameter-class-identifier => RFC4122_UUID)
SUIT_Parameters //= (suit-parameter-image-digest
    => bstr .cbor SUIT_Digest)
SUIT_Parameters //= (suit-parameter-image-size => uint)
SUIT_Parameters //= (suit-parameter-use-before => uint)
SUIT_Parameters //= (suit-parameter-component-offset => uint)

SUIT_Parameters //= (suit-parameter-encryption-info
    => bstr .cbor SUIT_Encryption_Info)
SUIT_Parameters //= (suit-parameter-compression-info
    => bstr .cbor SUIT_Compression_Info)
SUIT_Parameters //= (suit-parameter-unpack-info
    => bstr .cbor SUIT_Unpack_Info)

SUIT_Parameters //= (suit-parameter-uri => tstr)
SUIT_Parameters //= (suit-parameter-source-component => uint)
SUIT_Parameters //= (suit-parameter-run-args => bstr)

SUIT_Parameters //= (suit-parameter-device-identifier => RFC4122_UUID)
SUIT_Parameters //= (suit-parameter-minimum-battery => uint)
SUIT_Parameters //= (suit-parameter-update-priority => uint)
SUIT_Parameters //= (suit-parameter-version =>
    SUIT_Parameter_Version_Match)
SUIT_Parameters //= (suit-parameter-wait-info =>
    bstr .cbor SUIT_Wait_Event)

SUIT_Parameters //= (suit-parameter-custom => int/bool/tstr/bstr)

SUIT_Parameters //= (suit-parameter-strict-order => bool)
SUIT_Parameters //= (suit-parameter-soft-failure => bool)

SUIT_Parameters //= (suit-parameter-uri-list =>
    bstr .cbor SUIT_URI_List)

RFC4122_UUID = bstr .size 16

SUIT_Parameter_Version_Match = [
    suit-condition-version-comparison-type:
        SUIT_Condition_Version_Comparison_Types,
    suit-condition-version-comparison-value:
        SUIT_Condition_Version_Comparison_Value
]
SUIT_Condition_Version_Comparison_Types /=
    suit-condition-version-comparison-greater
SUIT_Condition_Version_Comparison_Types /=
    suit-condition-version-comparison-greater-equal
SUIT_Condition_Version_Comparison_Types /=
    suit-condition-version-comparison-equal
SUIT_Condition_Version_Comparison_Types /=
    suit-condition-version-comparison-lesser-equal
SUIT_Condition_Version_Comparison_Types /=
    suit-condition-version-comparison-lesser

suit-condition-version-comparison-greater = 1
suit-condition-version-comparison-greater-equal = 2
suit-condition-version-comparison-equal = 3
suit-condition-version-comparison-lesser-equal = 4
suit-condition-version-comparison-lesser = 5

SUIT_Condition_Version_Comparison_Value = [+int]

SUIT_Encryption_Info = COSE_Encrypt_Tagged/COSE_Encrypt0_Tagged
SUIT_Compression_Info = {
    suit-compression-algorithm => SUIT_Compression_Algorithms,
    * $$SUIT_Compression_Info-extensions,
}

SUIT_Compression_Algorithms /= SUIT_Compression_Algorithm_zlib
SUIT_Compression_Algorithms /= SUIT_Compression_Algorithm_brotli
SUIT_Compression_Algorithms /= SUIT_Compression_Algorithm_zstd

SUIT_Compression_Algorithm_zlib = 1
SUIT_Compression_Algorithm_brotli = 2
SUIT_Compression_Algorithm_zstd = 3

SUIT_Unpack_Info = {
    suit-unpack-algorithm => SUIT_Unpack_Algorithms,
    * $$SUIT_Unpack_Info-extensions,

}

SUIT_Unpack_Algorithms /= SUIT_Unpack_Algorithm_Hex
SUIT_Unpack_Algorithms /= SUIT_Unpack_Algorithm_Elf
SUIT_Unpack_Algorithms /= SUIT_Unpack_Algorithm_Coff
SUIT_Unpack_Algorithms /= SUIT_Unpack_Algorithm_Srec

SUIT_Unpack_Algorithm_Hex = 1
SUIT_Unpack_Algorithm_Elf = 2
SUIT_Unpack_Algorithm_Coff = 3
SUIT_Unpack_Algorithm_Srec = 4

SUIT_URI_List = [+ tstr ]

SUIT_Text_Map = {
    * SUIT_Component_Identifier => {
        SUIT_Text_Component_Keys
    },
    SUIT_Text_Keys
}

SUIT_Text_Component_Keys = (
    ? suit-text-vendor-name           => tstr,
    ? suit-text-model-name            => tstr,
    ? suit-text-vendor-domain         => tstr,
    ? suit-text-model-info            => tstr,
    ? suit-text-component-description => tstr,
    ? suit-text-component-version     => tstr,
    ? suit-text-version-required      => tstr,
    * $$suit-text-component-key-extensions
)

SUIT_Text_Keys = (
    ? suit-text-manifest-description => tstr,
    ? suit-text-update-description   => tstr,
    ? suit-text-manifest-json-source => tstr,
    ? suit-text-manifest-yaml-source => tstr,
    * $$suit-text-key-extensions
)

suit-delegation = 1
suit-authentication-wrapper = 2
suit-manifest = 3

algorithm-id-sha224 = 1
algorithm-id-sha256 = 2
algorithm-id-sha384 = 3
algorithm-id-sha512 = 4
algorithm-id-sha3-224 = 5
algorithm-id-sha3-256 = 6
algorithm-id-sha3-384 = 7
algorithm-id-sha3-512 = 8

suit-manifest-version = 1
suit-manifest-sequence-number = 2
suit-common = 3
suit-reference-uri = 4
suit-dependency-resolution = 7
suit-payload-fetch = 8
suit-install = 9
suit-validate = 10
suit-load = 11
suit-run = 12
suit-text = 13
suit-coswid = 14

suit-dependencies = 1
suit-components = 2
suit-common-sequence = 4

suit-dependency-digest = 1
suit-dependency-prefix = 2

suit-command-custom = nint

suit-condition-vendor-identifier = 1
suit-condition-class-identifier  = 2
suit-condition-image-match       = 3
suit-condition-use-before        = 4
suit-condition-component-offset  = 5

suit-condition-abort                    = 14
suit-condition-device-identifier        = 24
suit-condition-image-not-match          = 25
suit-condition-minimum-battery          = 26
suit-condition-update-authorized        = 27
suit-condition-version                  = 28

suit-directive-set-component-index      = 12
suit-directive-set-dependency-index     = 13
suit-directive-try-each                 = 15
;suit-directive-do-each                  = 16 ; TBD
;suit-directive-map-filter               = 17 ; TBD
suit-directive-process-dependency       = 18
suit-directive-set-parameters           = 19
suit-directive-override-parameters      = 20
suit-directive-fetch                    = 21
suit-directive-copy                     = 22
suit-directive-run                      = 23

suit-directive-wait                     = 29
suit-directive-fetch-uri-list           = 30
suit-directive-swap                     = 31
suit-directive-run-sequence             = 32

suit-wait-event-authorization = 1
suit-wait-event-power = 2
suit-wait-event-network = 3
suit-wait-event-other-device-version = 4
suit-wait-event-time = 5
suit-wait-event-time-of-day = 6
suit-wait-event-day-of-week = 7

suit-parameter-vendor-identifier = 1
suit-parameter-class-identifier  = 2
suit-parameter-image-digest      = 3
suit-parameter-use-before        = 4
suit-parameter-component-offset  = 5

suit-parameter-strict-order      = 12
suit-parameter-soft-failure      = 13
suit-parameter-image-size        = 14

suit-parameter-encryption-info   = 18
suit-parameter-compression-info  = 19
suit-parameter-unpack-info       = 20
suit-parameter-uri               = 21
suit-parameter-source-component  = 22
suit-parameter-run-args          = 23

suit-parameter-device-identifier = 24
suit-parameter-minimum-battery   = 26
suit-parameter-update-priority   = 27
suit-parameter-version           = 28
suit-parameter-wait-info         = 29
suit-parameter-uri-list          = 30

suit-parameter-custom = nint

suit-compression-algorithm = 1

suit-unpack-algorithm  = 1

suit-text-manifest-description  = 1
suit-text-update-description    = 2
suit-text-manifest-json-source  = 3
suit-text-manifest-yaml-source  = 4

suit-text-vendor-name           = 1
suit-text-model-name            = 2
suit-text-vendor-domain         = 3
suit-text-model-info            = 4
suit-text-component-description = 5
suit-text-component-version     = 6
suit-text-version-required      = 7
]]></artwork></figure>

</section>
<section anchor="examples" title="B. Examples">

<t>The following examples demonstrate a small subset of the functionality of the manifest. Even a simple manifest processor can execute most of these manifests.</t>

<t>The examples are signed using the following ECDSA secp256r1 key:</t>

<figure><artwork><![CDATA[
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgApZYjZCUGLM50VBC
CjYStX+09jGmnyJPrpDLTz/hiXOhRANCAASEloEarguqq9JhVxie7NomvqqL8Rtv
P+bitWWchdvArTsfKktsCYExwKNtrNHXi9OB3N+wnAUtszmR23M4tKiW
-----END PRIVATE KEY-----
]]></artwork></figure>

<t>The corresponding public key can be used to verify these examples:</t>

<figure><artwork><![CDATA[
-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEhJaBGq4LqqvSYVcYnuzaJr6qi/Eb
bz/m4rVlnIXbwK07HypLbAmBMcCjbazR14vTgdzfsJwFLbM5kdtzOLSolg==
-----END PUBLIC KEY-----
]]></artwork></figure>

<t>Each example uses SHA256 as the digest function.</t>

<t>Note that reporting policies are declared for each non-flow-control command in these examples. The reporting policies used in the examples are described in the following tables.</t>

<texttable>
      <ttcol align='left'>Policy</ttcol>
      <ttcol align='left'>Label</ttcol>
      <c>suit-send-record-on-success</c>
      <c>Rec-Pass</c>
      <c>suit-send-record-on-failure</c>
      <c>Rec-Fail</c>
      <c>suit-send-sysinfo-success</c>
      <c>Sys-Pass</c>
      <c>suit-send-sysinfo-failure</c>
      <c>Sys-Fail</c>
</texttable>

<texttable>
      <ttcol align='left'>Command</ttcol>
      <ttcol align='left'>Sys-Fail</ttcol>
      <ttcol align='left'>Sys-Pass</ttcol>
      <ttcol align='left'>Rec-Fail</ttcol>
      <ttcol align='left'>Rec-Pass</ttcol>
      <c>suit-condition-vendor-identifier</c>
      <c>1</c>
      <c>1</c>
      <c>1</c>
      <c>1</c>
      <c>suit-condition-class-identifier</c>
      <c>1</c>
      <c>1</c>
      <c>1</c>
      <c>1</c>
      <c>suit-condition-image-match</c>
      <c>1</c>
      <c>1</c>
      <c>1</c>
      <c>1</c>
      <c>suit-condition-component-offset</c>
      <c>0</c>
      <c>1</c>
      <c>0</c>
      <c>1</c>
      <c>suit-directive-fetch</c>
      <c>0</c>
      <c>0</c>
      <c>1</c>
      <c>0</c>
      <c>suit-directive-copy</c>
      <c>0</c>
      <c>0</c>
      <c>1</c>
      <c>0</c>
      <c>suit-directive-run</c>
      <c>0</c>
      <c>0</c>
      <c>1</c>
      <c>0</c>
</texttable>

<section anchor="example-0-secure-boot" title="Example 0: Secure Boot">

<t>This example covers the following templates:</t>

<t><list style="symbols">
  <t>Compatibility Check (<xref target="template-compatibility-check"/>)</t>
  <t>Secure Boot (<xref target="template-secure-boot"/>)</t>
</list></t>

<t>It also serves as the minimum example.</t>

<figure><artwork><![CDATA[
{
    / authentication-wrapper / 2:bstr .cbor ({        digest: bstr
.cbor ([
            / algorithm-id / 2 / "sha256" /,
            / digest-bytes /
h'5c097ef64bf3bb9b494e71e1f2418eef8d466cc902f639a855ec9af3e9eddb99'
        ])        signatures: [
            bstr .cbor (18([
                    / protected / bstr .cbor ({
                        / alg / 1:-7 / "ES256" /,
                    }),
                    / unprotected / {
                    },
                    / payload / bstr .cbor ([
                        / algorithm-id / 2 / "sha256" /,
                        / digest-bytes /
h'5c097ef64bf3bb9b494e71e1f2418eef8d466cc902f639a855ec9af3e9eddb99'
                    ]),
                    / signature / h'60f5c3d03a3aa759bfef2ef0f5f97a93b1
f5e741f7463f4385af88513a5c2957bea2d6c4cfddd03392a267aab0fc0fd515560ed5
8e33fad26ac32a024c5a7143'
                ]))
        ]
    }),
    / manifest / 3:bstr .cbor ({
        / manifest-version / 1:1,
        / manifest-sequence-number / 2:0,
        / common / 3:bstr .cbor ({
            / components / 2:[
                [h'00']
            ],
            / common-sequence / 4:bstr .cbor ([
                / directive-override-parameters / 20,{
                    / vendor-id /
1:h'fa6b4a53d5ad5fdfbe9de663e4d41ffe' / fa6b4a53-d5ad-5fdf-
be9d-e663e4d41ffe /,
                    / class-id / 2:h'1492af1425695e48bf429b2d51f2ab45'
/ 1492af14-2569-5e48-bf42-9b2d51f2ab45 /,
                    / image-digest / 3:bstr .cbor ([
                        / algorithm-id / 2 / "sha256" /,
                        / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                    ]),
                    / image-size / 14:34768,
                } ,
                / condition-vendor-identifier / 1,15 ,
                / condition-class-identifier / 2,15
            ]),
        }),
        / validate / 10:bstr .cbor ([
            / condition-image-match / 3,15
        ]),
        / run / 12:bstr .cbor ([
            / directive-run / 23,2
        ]),
    }),
}
]]></artwork></figure>

<t>Total size of Envelope without COSE authentication object:  159</t>

<t>Envelope:</t>

<figure><artwork><![CDATA[
a2025827815824820258205c097ef64bf3bb9b494e71e1f2418eef8d466c
c902f639a855ec9af3e9eddb99035871a50101020003585fa20281814100
0458568614a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af14
25695e48bf429b2d51f2ab450358248202582000112233445566778899aa
bbccddeeff0123456789abcdeffedcba98765432100e1987d0010f020f0a
4382030f0c43821702
]]></artwork></figure>

<t>Total size of Envelope with COSE authentication object:  272</t>

<t>Envelope with COSE authentication object:</t>

<figure><artwork><![CDATA[
a2025898825824820258205c097ef64bf3bb9b494e71e1f2418eef8d466c
c902f639a855ec9af3e9eddb99586fd28443a10126a05824820258205c09
7ef64bf3bb9b494e71e1f2418eef8d466cc902f639a855ec9af3e9eddb99
584060f5c3d03a3aa759bfef2ef0f5f97a93b1f5e741f7463f4385af8851
3a5c2957bea2d6c4cfddd03392a267aab0fc0fd515560ed58e33fad26ac3
2a024c5a7143035871a50101020003585fa202818141000458568614a401
50fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b
2d51f2ab450358248202582000112233445566778899aabbccddeeff0123
456789abcdeffedcba98765432100e1987d0010f020f0a4382030f0c4382
1702
]]></artwork></figure>

</section>
<section anchor="example-1-simultaneous-download-and-installation-of-payload" title="Example 1: Simultaneous Download and Installation of Payload">

<t>This example covers the following templates:</t>

<t><list style="symbols">
  <t>Compatibility Check (<xref target="template-compatibility-check"/>)</t>
  <t>Firmware Download (<xref target="firmware-download-template"/>)</t>
</list></t>

<t>Simultaneous download and installation of payload. No secure boot is present in this example to demonstrate a download-only manifest.</t>

<figure><artwork><![CDATA[
{
    / authentication-wrapper / 2:bstr .cbor ({        digest: bstr
.cbor ([
            / algorithm-id / 2 / "sha256" /,
            / digest-bytes /
h'987eec85fa99fd31d332381b9810f90b05c2e0d4f284a6f4211207ed00fff750'
        ])        signatures: [
            bstr .cbor (18([
                    / protected / bstr .cbor ({
                        / alg / 1:-7 / "ES256" /,
                    }),
                    / unprotected / {
                    },
                    / payload / bstr .cbor ([
                        / algorithm-id / 2 / "sha256" /,
                        / digest-bytes /
h'987eec85fa99fd31d332381b9810f90b05c2e0d4f284a6f4211207ed00fff750'
                    ]),
                    / signature / h'750141d65b4f20a88dc70c6785a67e0f4f
085aead83ba2289d6e37271508cc91e0a0592f5c940c2257c9c0b26403c0ba4477f2ce
37b60089fe02cde7911d1c15'
                ]))
        ]
    }),
    / manifest / 3:bstr .cbor ({
        / manifest-version / 1:1,
        / manifest-sequence-number / 2:1,
        / common / 3:bstr .cbor ({
            / components / 2:[
                [h'00']
            ],
            / common-sequence / 4:bstr .cbor ([
                / directive-override-parameters / 20,{
                    / vendor-id /
1:h'fa6b4a53d5ad5fdfbe9de663e4d41ffe' / fa6b4a53-d5ad-5fdf-
be9d-e663e4d41ffe /,
                    / class-id / 2:h'1492af1425695e48bf429b2d51f2ab45'
/ 1492af14-2569-5e48-bf42-9b2d51f2ab45 /,
                    / image-digest / 3:bstr .cbor ([
                        / algorithm-id / 2 / "sha256" /,
                        / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                    ]),
                    / image-size / 14:34768,
                } ,
                / condition-vendor-identifier / 1,15 ,
                / condition-class-identifier / 2,15
            ]),
        }),
        / install / 9:bstr .cbor ([
            / directive-set-parameters / 19,{
                / uri / 21:'http://example.com/file.bin',
            } ,
            / directive-fetch / 21,2 ,
            / condition-image-match / 3,15
        ]),
        / validate / 10:bstr .cbor ([
            / condition-image-match / 3,15
        ]),
    }),
}
]]></artwork></figure>

<t>Total size of Envelope without COSE authentication object:  194</t>

<t>Envelope:</t>

<figure><artwork><![CDATA[
a202582781582482025820987eec85fa99fd31d332381b9810f90b05c2e0
d4f284a6f4211207ed00fff750035894a50101020103585fa20281814100
0458568614a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af14
25695e48bf429b2d51f2ab450358248202582000112233445566778899aa
bbccddeeff0123456789abcdeffedcba98765432100e1987d0010f020f09
58258613a115781b687474703a2f2f6578616d706c652e636f6d2f66696c
652e62696e1502030f0a4382030f
]]></artwork></figure>

<t>Total size of Envelope with COSE authentication object:  307</t>

<t>Envelope with COSE authentication object:</t>

<figure><artwork><![CDATA[
a202589882582482025820987eec85fa99fd31d332381b9810f90b05c2e0
d4f284a6f4211207ed00fff750586fd28443a10126a0582482025820987e
ec85fa99fd31d332381b9810f90b05c2e0d4f284a6f4211207ed00fff750
5840750141d65b4f20a88dc70c6785a67e0f4f085aead83ba2289d6e3727
1508cc91e0a0592f5c940c2257c9c0b26403c0ba4477f2ce37b60089fe02
cde7911d1c15035894a50101020103585fa202818141000458568614a401
50fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b
2d51f2ab450358248202582000112233445566778899aabbccddeeff0123
456789abcdeffedcba98765432100e1987d0010f020f0958258613a11578
1b687474703a2f2f6578616d706c652e636f6d2f66696c652e62696e1502
030f0a4382030f
]]></artwork></figure>

</section>
<section anchor="example-2-simultaneous-download-installation-secure-boot-severed-fields" title="Example 2: Simultaneous Download, Installation, Secure Boot, Severed Fields">

<t>This example covers the following templates:</t>

<t><list style="symbols">
  <t>Compatibility Check (<xref target="template-compatibility-check"/>)</t>
  <t>Secure Boot (<xref target="template-secure-boot"/>)</t>
  <t>Firmware Download (<xref target="firmware-download-template"/>)</t>
</list></t>

<t>This example also demonstrates severable elements (<xref target="ovr-severable"/>), and text (<xref target="manifest-digest-text"/>).</t>

<figure><artwork><![CDATA[
{
    / authentication-wrapper / 2:bstr .cbor ({        digest: bstr
.cbor ([
            / algorithm-id / 2 / "sha256" /,
            / digest-bytes /
h'75685579a83babd71ec8ef22fa49ac873f78a708a43a674e782ad30b6598d17a'
        ])        signatures: [
            bstr .cbor (18([
                    / protected / bstr .cbor ({
                        / alg / 1:-7 / "ES256" /,
                    }),
                    / unprotected / {
                    },
                    / payload / bstr .cbor ([
                        / algorithm-id / 2 / "sha256" /,
                        / digest-bytes /
h'75685579a83babd71ec8ef22fa49ac873f78a708a43a674e782ad30b6598d17a'
                    ]),
                    / signature / h'861b9bfb449125742baa648bc9d148cba4
5519cca8efecf705c2165ecdecaeba8b6ce2131284e66708788d741e8779d5973fa8e2
5da49eb203c81920719da949'
                ]))
        ]
    }),
    / manifest / 3:bstr .cbor ({
        / manifest-version / 1:1,
        / manifest-sequence-number / 2:2,
        / common / 3:bstr .cbor ({
            / components / 2:[
                [h'00']
            ],
            / common-sequence / 4:bstr .cbor ([
                / directive-override-parameters / 20,{
                    / vendor-id /
1:h'fa6b4a53d5ad5fdfbe9de663e4d41ffe' / fa6b4a53-d5ad-5fdf-
be9d-e663e4d41ffe /,
                    / class-id / 2:h'1492af1425695e48bf429b2d51f2ab45'
/ 1492af14-2569-5e48-bf42-9b2d51f2ab45 /,
                    / image-digest / 3:bstr .cbor ([
                        / algorithm-id / 2 / "sha256" /,
                        / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                    ]),
                    / image-size / 14:34768,
                } ,
                / condition-vendor-identifier / 1,15 ,
                / condition-class-identifier / 2,15
            ]),
        }),
        / install / 9:[
            / algorithm-id / 2 / "sha256" /,
            / digest-bytes /
h'3ee96dc79641970ae46b929ccf0b72ba9536dd846020dbdc9f949d84ea0e18d2'
        ],
        / validate / 10:bstr .cbor ([
            / condition-image-match / 3,15
        ]),
        / run / 12:bstr .cbor ([
            / directive-run / 23,2
        ]),
        / text / 13:[
            / algorithm-id / 2 / "sha256" /,
            / digest-bytes /
h'23f48b2e2838650f43c144234aee18401ffe3cce4733b23881c3a8ae2d2b66e8'
        ],
    }),
    / install / 9:bstr .cbor ([
        / directive-set-parameters / 19,{
            / uri /
21:'http://example.com/very/long/path/to/file/file.bin',
        } ,
        / directive-fetch / 21,2 ,
        / condition-image-match / 3,15
    ]),
    / text / 13:bstr .cbor ({
        [h'00']:{
                / vendor-domain / 3:'arm.com',
                / component-description / 5:'This component is a
demonstration. The digest is a sample pattern, not a real one.',
            }
    }),
}
]]></artwork></figure>

<t>Total size of the Envelope without COSE authentication object or Severable Elements:  233</t>

<t>Envelope:</t>

<figure><artwork><![CDATA[
a20258278158248202582075685579a83babd71ec8ef22fa49ac873f78a7
08a43a674e782ad30b6598d17a0358bba70101020203585fa20281814100
0458568614a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af14
25695e48bf429b2d51f2ab450358248202582000112233445566778899aa
bbccddeeff0123456789abcdeffedcba98765432100e1987d0010f020f09
820258203ee96dc79641970ae46b929ccf0b72ba9536dd846020dbdc9f94
9d84ea0e18d20a4382030f0c438217020d8202582023f48b2e2838650f43
c144234aee18401ffe3cce4733b23881c3a8ae2d2b66e8
]]></artwork></figure>
<t>Total size of the Envelope with COSE authentication object but without Severable Elements:  346</t>

<t>Envelope:</t>

<figure><artwork><![CDATA[
a20258988258248202582075685579a83babd71ec8ef22fa49ac873f78a7
08a43a674e782ad30b6598d17a586fd28443a10126a05824820258207568
5579a83babd71ec8ef22fa49ac873f78a708a43a674e782ad30b6598d17a
5840861b9bfb449125742baa648bc9d148cba45519cca8efecf705c2165e
cdecaeba8b6ce2131284e66708788d741e8779d5973fa8e25da49eb203c8
1920719da9490358bba70101020203585fa202818141000458568614a401
50fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b
2d51f2ab450358248202582000112233445566778899aabbccddeeff0123
456789abcdeffedcba98765432100e1987d0010f020f09820258203ee96d
c79641970ae46b929ccf0b72ba9536dd846020dbdc9f949d84ea0e18d20a
4382030f0c438217020d8202582023f48b2e2838650f43c144234aee1840
1ffe3cce4733b23881c3a8ae2d2b66e8
]]></artwork></figure>

<t>Total size of Envelope with COSE authentication object:  929</t>

<t>Envelope with COSE authentication object:</t>

<figure><artwork><![CDATA[
a40258988258248202582075685579a83babd71ec8ef22fa49ac873f78a7
08a43a674e782ad30b6598d17a586fd28443a10126a05824820258207568
5579a83babd71ec8ef22fa49ac873f78a708a43a674e782ad30b6598d17a
5840861b9bfb449125742baa648bc9d148cba45519cca8efecf705c2165e
cdecaeba8b6ce2131284e66708788d741e8779d5973fa8e25da49eb203c8
1920719da9490358bba70101020203585fa202818141000458568614a401
50fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b
2d51f2ab450358248202582000112233445566778899aabbccddeeff0123
456789abcdeffedcba98765432100e1987d0010f020f09820258203ee96d
c79641970ae46b929ccf0b72ba9536dd846020dbdc9f949d84ea0e18d20a
4382030f0c438217020d8202582023f48b2e2838650f43c144234aee1840
1ffe3cce4733b23881c3a8ae2d2b66e809583c8613a1157832687474703a
2f2f6578616d706c652e636f6d2f766572792f6c6f6e672f706174682f74
6f2f66696c652f66696c652e62696e1502030f0d590204a20179019d2323
204578616d706c6520323a2053696d756c74616e656f757320446f776e6c
6f61642c20496e7374616c6c6174696f6e2c2053656375726520426f6f74
2c2053657665726564204669656c64730a0a202020205468697320657861
6d706c6520636f766572732074686520666f6c6c6f77696e672074656d70
6c617465733a0a202020200a202020202a20436f6d7061746962696c6974
7920436865636b20287b7b74656d706c6174652d636f6d7061746962696c
6974792d636865636b7d7d290a202020202a2053656375726520426f6f74
20287b7b74656d706c6174652d7365637572652d626f6f747d7d290a2020
20202a204669726d7761726520446f776e6c6f616420287b7b6669726d77
6172652d646f776e6c6f61642d74656d706c6174657d7d290a202020200a
2020202054686973206578616d706c6520616c736f2064656d6f6e737472
6174657320736576657261626c6520656c656d656e747320287b7b6f7672
2d736576657261626c657d7d292c20616e64207465787420287b7b6d616e
69666573742d6469676573742d746578747d7d292e814100a2036761726d
2e636f6d0578525468697320636f6d706f6e656e7420697320612064656d
6f6e7374726174696f6e2e20546865206469676573742069732061207361
6d706c65207061747465726e2c206e6f742061207265616c206f6e652e
]]></artwork></figure>

</section>
<section anchor="example-3-ab-images" title="Example 3: A/B images">

<t>This example covers the following templates:</t>

<t><list style="symbols">
  <t>Compatibility Check (<xref target="template-compatibility-check"/>)</t>
  <t>Secure Boot (<xref target="template-secure-boot"/>)</t>
  <t>Firmware Download (<xref target="firmware-download-template"/>)</t>
  <t>A/B Image Template (<xref target="a-b-template"/>)</t>
</list></t>

<figure><artwork><![CDATA[
{
    / authentication-wrapper / 2:bstr .cbor ({        digest: bstr
.cbor ([
            / algorithm-id / 2 / "sha256" /,
            / digest-bytes /
h'ae0c1ea689c9800a843550f38796b6fdbd52a0c78be5d26011d8e784da43d47c'
        ])        signatures: [
            bstr .cbor (18([
                    / protected / bstr .cbor ({
                        / alg / 1:-7 / "ES256" /,
                    }),
                    / unprotected / {
                    },
                    / payload / bstr .cbor ([
                        / algorithm-id / 2 / "sha256" /,
                        / digest-bytes /
h'ae0c1ea689c9800a843550f38796b6fdbd52a0c78be5d26011d8e784da43d47c'
                    ]),
                    / signature / h'359960bae5a7de2457c8f48d3250d96d1a
f2d36e08764b62d76f8a3f3041774b150b2c835bb1b2d7b1b2e629e1f08cc3b1b48fce
bb8fb38182c116161e02b33f'
                ]))
        ]
    }),
    / manifest / 3:bstr .cbor ({
        / manifest-version / 1:1,
        / manifest-sequence-number / 2:3,
        / common / 3:bstr .cbor ({
            / components / 2:[
                [h'00']
            ],
            / common-sequence / 4:bstr .cbor ([
                / directive-override-parameters / 20,{
                    / vendor-id /
1:h'fa6b4a53d5ad5fdfbe9de663e4d41ffe' / fa6b4a53-d5ad-5fdf-
be9d-e663e4d41ffe /,
                    / class-id / 2:h'1492af1425695e48bf429b2d51f2ab45'
/ 1492af14-2569-5e48-bf42-9b2d51f2ab45 /,
                } ,
                / directive-try-each / 15,[
                    bstr .cbor ([
                        / directive-override-parameters / 20,{
                            / offset / 5:33792,
                        } ,
                        / condition-component-offset / 5,5 ,
                        / directive-override-parameters / 20,{
                            / image-digest / 3:bstr .cbor ([
                                / algorithm-id / 2 / "sha256" /,
                                / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                            ]),
                            / image-size / 14:34768,
                        }
                    ]) ,
                    bstr .cbor ([
                        / directive-override-parameters / 20,{
                            / offset / 5:541696,
                        } ,
                        / condition-component-offset / 5,5 ,
                        / directive-override-parameters / 20,{
                            / image-digest / 3:bstr .cbor ([
                                / algorithm-id / 2 / "sha256" /,
                                / digest-bytes /
h'0123456789abcdeffedcba987654321000112233445566778899aabbccddeeff'
                            ]),
                            / image-size / 14:76834,
                        }
                    ])
                ] ,
                / condition-vendor-identifier / 1,15 ,
                / condition-class-identifier / 2,15
            ]),
        }),
        / install / 9:bstr .cbor ([
            / directive-try-each / 15,[
                bstr .cbor ([
                    / directive-set-parameters / 19,{
                        / offset / 5:33792,
                    } ,
                    / condition-component-offset / 5,5 ,
                    / directive-set-parameters / 19,{
                        / uri / 21:'http://example.com/file1.bin',
                    }
                ]) ,
                bstr .cbor ([
                    / directive-set-parameters / 19,{
                        / offset / 5:541696,
                    } ,
                    / condition-component-offset / 5,5 ,
                    / directive-set-parameters / 19,{
                        / uri / 21:'http://example.com/file2.bin',
                    }
                ])
            ] ,
            / directive-fetch / 21,2 ,
            / condition-image-match / 3,15
        ]),
        / validate / 10:bstr .cbor ([
            / condition-image-match / 3,15
        ]),
    }),
}
]]></artwork></figure>

<t>Total size of Envelope without COSE authentication object:  330</t>

<t>Envelope:</t>

<figure><artwork><![CDATA[
a202582781582482025820ae0c1ea689c9800a843550f38796b6fdbd52a0
c78be5d26011d8e784da43d47c0359011ba5010102030358aaa202818141
000458a18814a20150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af
1425695e48bf429b2d51f2ab450f8258368614a105198400050514a20358
248202582000112233445566778899aabbccddeeff0123456789abcdeffe
dcba98765432100e1987d0583a8614a1051a00084400050514a203582482
0258200123456789abcdeffedcba987654321000112233445566778899aa
bbccddeeff0e1a00012c22010f020f095861860f82582a8613a105198400
050513a115781c687474703a2f2f6578616d706c652e636f6d2f66696c65
312e62696e582c8613a1051a00084400050513a115781c687474703a2f2f
6578616d706c652e636f6d2f66696c65322e62696e1502030f0a4382030f
]]></artwork></figure>

<t>Total size of Envelope with COSE authentication object:  443</t>

<t>Envelope with COSE authentication object:</t>

<figure><artwork><![CDATA[
a202589882582482025820ae0c1ea689c9800a843550f38796b6fdbd52a0
c78be5d26011d8e784da43d47c586fd28443a10126a0582482025820ae0c
1ea689c9800a843550f38796b6fdbd52a0c78be5d26011d8e784da43d47c
5840359960bae5a7de2457c8f48d3250d96d1af2d36e08764b62d76f8a3f
3041774b150b2c835bb1b2d7b1b2e629e1f08cc3b1b48fcebb8fb38182c1
16161e02b33f0359011ba5010102030358aaa202818141000458a18814a2
0150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf42
9b2d51f2ab450f8258368614a105198400050514a2035824820258200011
2233445566778899aabbccddeeff0123456789abcdeffedcba9876543210
0e1987d0583a8614a1051a00084400050514a20358248202582001234567
89abcdeffedcba987654321000112233445566778899aabbccddeeff0e1a
00012c22010f020f095861860f82582a8613a105198400050513a115781c
687474703a2f2f6578616d706c652e636f6d2f66696c65312e62696e582c
8613a1051a00084400050513a115781c687474703a2f2f6578616d706c65
2e636f6d2f66696c65322e62696e1502030f0a4382030f
]]></artwork></figure>

</section>
<section anchor="example-4-load-and-decompress-from-external-storage" title="Example 4: Load and Decompress from External Storage">

<t>This example covers the following templates:</t>

<t><list style="symbols">
  <t>Compatibility Check (<xref target="template-compatibility-check"/>)</t>
  <t>Secure Boot (<xref target="template-secure-boot"/>)</t>
  <t>Firmware Download (<xref target="firmware-download-template"/>)</t>
  <t>Install (<xref target="template-install"/>)</t>
  <t>Load &amp; Decompress (<xref target="template-load-decompress"/>)</t>
</list></t>

<figure><artwork><![CDATA[
{
    / authentication-wrapper / 2:bstr .cbor ({        digest: bstr
.cbor ([
            / algorithm-id / 2 / "sha256" /,
            / digest-bytes /
h'4b4c7c8c0fda76c9c9591a9db160918e2b3c96a58b0a5e4984fd4e8f9359a928'
        ])        signatures: [
            bstr .cbor (18([
                    / protected / bstr .cbor ({
                        / alg / 1:-7 / "ES256" /,
                    }),
                    / unprotected / {
                    },
                    / payload / bstr .cbor ([
                        / algorithm-id / 2 / "sha256" /,
                        / digest-bytes /
h'4b4c7c8c0fda76c9c9591a9db160918e2b3c96a58b0a5e4984fd4e8f9359a928'
                    ]),
                    / signature / h'd721cb3415f27cfeb8ef066bb6312ba758
32b57410a0c700de71cf8004ea23b9dd3c912a99fab111e9b8f2cc55c7dffcc37012de
cf72e44f69b3d3db8cc98cb6'
                ]))
        ]
    }),
    / manifest / 3:bstr .cbor ({
        / manifest-version / 1:1,
        / manifest-sequence-number / 2:4,
        / common / 3:bstr .cbor ({
            / components / 2:[
                [h'00'] ,
                [h'02'] ,
                [h'01']
            ],
            / common-sequence / 4:bstr .cbor ([
                / directive-set-component-index / 12,0 ,
                / directive-override-parameters / 20,{
                    / vendor-id /
1:h'fa6b4a53d5ad5fdfbe9de663e4d41ffe' / fa6b4a53-d5ad-5fdf-
be9d-e663e4d41ffe /,
                    / class-id / 2:h'1492af1425695e48bf429b2d51f2ab45'
/ 1492af14-2569-5e48-bf42-9b2d51f2ab45 /,
                    / image-digest / 3:bstr .cbor ([
                        / algorithm-id / 2 / "sha256" /,
                        / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                    ]),
                    / image-size / 14:34768,
                } ,
                / condition-vendor-identifier / 1,15 ,
                / condition-class-identifier / 2,15
            ]),
        }),
        / payload-fetch / 8:bstr .cbor ([
            / directive-set-component-index / 12,1 ,
            / directive-set-parameters / 19,{
                / uri / 21:'http://example.com/file.bin',
            } ,
            / directive-fetch / 21,2 ,
            / condition-image-match / 3,15
        ]),
        / install / 9:bstr .cbor ([
            / directive-set-component-index / 12,0 ,
            / directive-set-parameters / 19,{
                / source-component / 22:1 / [h'02'] /,
            } ,
            / directive-copy / 22,2 ,
            / condition-image-match / 3,15
        ]),
        / validate / 10:bstr .cbor ([
            / directive-set-component-index / 12,0 ,
            / condition-image-match / 3,15
        ]),
        / load / 11:bstr .cbor ([
            / directive-set-component-index / 12,2 ,
            / directive-set-parameters / 19,{
                / image-digest / 3:bstr .cbor ([
                    / algorithm-id / 2 / "sha256" /,
                    / digest-bytes /
h'0123456789abcdeffedcba987654321000112233445566778899aabbccddeeff'
                ]),
                / image-size / 14:76834,
                / source-component / 22:0 / [h'00'] /,
                / compression-info / 19:1 / "gzip" /,
            } ,
            / directive-copy / 22,2 ,
            / condition-image-match / 3,15
        ]),
        / run / 12:bstr .cbor ([
            / directive-set-component-index / 12,2 ,
            / directive-run / 23,2
        ]),
    }),
}
]]></artwork></figure>

<t>Total size of Envelope without COSE authentication object:  287</t>

<t>Envelope:</t>

<figure><artwork><![CDATA[
a2025827815824820258204b4c7c8c0fda76c9c9591a9db160918e2b3c96
a58b0a5e4984fd4e8f9359a9280358f1a801010204035867a20283814100
814102814101045858880c0014a40150fa6b4a53d5ad5fdfbe9de663e4d4
1ffe02501492af1425695e48bf429b2d51f2ab4503582482025820001122
33445566778899aabbccddeeff0123456789abcdeffedcba98765432100e
1987d0010f020f085827880c0113a115781b687474703a2f2f6578616d70
6c652e636f6d2f66696c652e62696e1502030f094b880c0013a116011602
030f0a45840c00030f0b583a880c0213a4035824820258200123456789ab
cdeffedcba987654321000112233445566778899aabbccddeeff0e1a0001
2c22130116001602030f0c45840c021702
]]></artwork></figure>

<t>Total size of Envelope with COSE authentication object:  400</t>

<t>Envelope with COSE authentication object:</t>

<figure><artwork><![CDATA[
a2025898825824820258204b4c7c8c0fda76c9c9591a9db160918e2b3c96
a58b0a5e4984fd4e8f9359a928586fd28443a10126a05824820258204b4c
7c8c0fda76c9c9591a9db160918e2b3c96a58b0a5e4984fd4e8f9359a928
5840d721cb3415f27cfeb8ef066bb6312ba75832b57410a0c700de71cf80
04ea23b9dd3c912a99fab111e9b8f2cc55c7dffcc37012decf72e44f69b3
d3db8cc98cb60358f1a801010204035867a2028381410081410281410104
5858880c0014a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af
1425695e48bf429b2d51f2ab450358248202582000112233445566778899
aabbccddeeff0123456789abcdeffedcba98765432100e1987d0010f020f
085827880c0113a115781b687474703a2f2f6578616d706c652e636f6d2f
66696c652e62696e1502030f094b880c0013a116011602030f0a45840c00
030f0b583a880c0213a4035824820258200123456789abcdeffedcba9876
54321000112233445566778899aabbccddeeff0e1a00012c221301160016
02030f0c45840c021702
]]></artwork></figure>

</section>
<section anchor="example-5-two-images" title="Example 5: Two Images">

<t>This example covers the following templates:</t>

<t><list style="symbols">
  <t>Compatibility Check (<xref target="template-compatibility-check"/>)</t>
  <t>Secure Boot (<xref target="template-secure-boot"/>)</t>
  <t>Firmware Download (<xref target="firmware-download-template"/>)</t>
</list></t>

<t>Furthermore, it shows using these templates with two images.</t>

<figure><artwork><![CDATA[
{
    / authentication-wrapper / 2:bstr .cbor ({        digest: bstr
.cbor ([
            / algorithm-id / 2 / "sha256" /,
            / digest-bytes /
h'de7c7927a15bd2eda59cab1512875f17c9f1e9e23885ce1ac6d671eefcefa37a'
        ])        signatures: [
            bstr .cbor (18([
                    / protected / bstr .cbor ({
                        / alg / 1:-7 / "ES256" /,
                    }),
                    / unprotected / {
                    },
                    / payload / bstr .cbor ([
                        / algorithm-id / 2 / "sha256" /,
                        / digest-bytes /
h'de7c7927a15bd2eda59cab1512875f17c9f1e9e23885ce1ac6d671eefcefa37a'
                    ]),
                    / signature / h'e71e332c985fb0479f296685669d05348b
cdba8e186f25a5418f4682ea168df61661f54bf48f964577225ed455b22d277dd94de8
7c57f1baceedd6719f3d56ec'
                ]))
        ]
    }),
    / manifest / 3:bstr .cbor ({
        / manifest-version / 1:1,
        / manifest-sequence-number / 2:5,
        / common / 3:bstr .cbor ({
            / components / 2:[
                [h'00'] ,
                [h'01']
            ],
            / common-sequence / 4:bstr .cbor ([
                / directive-set-component-index / 12,0 ,
                / directive-override-parameters / 20,{
                    / vendor-id /
1:h'fa6b4a53d5ad5fdfbe9de663e4d41ffe' / fa6b4a53-d5ad-5fdf-
be9d-e663e4d41ffe /,
                    / class-id / 2:h'1492af1425695e48bf429b2d51f2ab45'
/ 1492af14-2569-5e48-bf42-9b2d51f2ab45 /,
                    / image-digest / 3:bstr .cbor ([
                        / algorithm-id / 2 / "sha256" /,
                        / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                    ]),
                    / image-size / 14:34768,
                } ,
                / condition-vendor-identifier / 1,15 ,
                / condition-class-identifier / 2,15 ,
                / directive-set-component-index / 12,1 ,
                / directive-override-parameters / 20,{
                    / image-digest / 3:bstr .cbor ([
                        / algorithm-id / 2 / "sha256" /,
                        / digest-bytes /
h'0123456789abcdeffedcba987654321000112233445566778899aabbccddeeff'
                    ]),
                    / image-size / 14:76834,
                }
            ]),
        }),
        / install / 9:bstr .cbor ([
            / directive-set-component-index / 12,0 ,
            / directive-set-parameters / 19,{
                / uri / 21:'http://example.com/file1.bin',
            } ,
            / directive-fetch / 21,2 ,
            / condition-image-match / 3,15 ,
            / directive-set-component-index / 12,1 ,
            / directive-set-parameters / 19,{
                / uri / 21:'http://example.com/file2.bin',
            } ,
            / directive-fetch / 21,2 ,
            / condition-image-match / 3,15
        ]),
        / validate / 10:bstr .cbor ([
            / directive-set-component-index / 12,0 ,
            / condition-image-match / 3,15 ,
            / directive-set-component-index / 12,1 ,
            / condition-image-match / 3,15
        ]),
        / run / 12:bstr .cbor ([
            / directive-set-component-index / 12,0 ,
            / directive-run / 23,2
        ]),
    }),
}
]]></artwork></figure>

<t>Total size of Envelope without COSE authentication object:  304</t>

<t>Envelope:</t>

<figure><artwork><![CDATA[
a202582781582482025820de7c7927a15bd2eda59cab1512875f17c9f1e9
e23885ce1ac6d671eefcefa37a03590101a601010205035895a202828141
008141010458898c0c0014a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe
02501492af1425695e48bf429b2d51f2ab45035824820258200011223344
5566778899aabbccddeeff0123456789abcdeffedcba98765432100e1987
d0010f020f0c0114a2035824820258200123456789abcdeffedcba987654
321000112233445566778899aabbccddeeff0e1a00012c2209584f900c00
13a115781c687474703a2f2f6578616d706c652e636f6d2f66696c65312e
62696e1502030f0c0113a115781c687474703a2f2f6578616d706c652e63
6f6d2f66696c65322e62696e1502030f0a49880c00030f0c01030f0c4584
0c001702
]]></artwork></figure>

<t>Total size of Envelope with COSE authentication object:  417</t>

<t>Envelope with COSE authentication object:</t>

<figure><artwork><![CDATA[
a202589882582482025820de7c7927a15bd2eda59cab1512875f17c9f1e9
e23885ce1ac6d671eefcefa37a586fd28443a10126a0582482025820de7c
7927a15bd2eda59cab1512875f17c9f1e9e23885ce1ac6d671eefcefa37a
5840e71e332c985fb0479f296685669d05348bcdba8e186f25a5418f4682
ea168df61661f54bf48f964577225ed455b22d277dd94de87c57f1baceed
d6719f3d56ec03590101a601010205035895a20282814100814101045889
8c0c0014a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af1425
695e48bf429b2d51f2ab450358248202582000112233445566778899aabb
ccddeeff0123456789abcdeffedcba98765432100e1987d0010f020f0c01
14a2035824820258200123456789abcdeffedcba98765432100011223344
5566778899aabbccddeeff0e1a00012c2209584f900c0013a115781c6874
74703a2f2f6578616d706c652e636f6d2f66696c65312e62696e1502030f
0c0113a115781c687474703a2f2f6578616d706c652e636f6d2f66696c65
322e62696e1502030f0a49880c00030f0c01030f0c45840c001702
]]></artwork></figure>

</section>
</section>
<section anchor="design-rationale" title="C. Design Rational">

<t>In order to provide flexible behavior to constrained devices, while still allowing more powerful devices to use their full capabilities, the SUIT manifest encodes the required behavior of a Recipient device. Behavior is encoded as a specialized byte code, contained in a CBOR list. This promotes a flat encoding, which simplifies the parser. The information encoded by this byte code closely matches the operations that a device will perform, which promotes ease of processing. The core operations used by most update and trusted invocation operations are represented in the byte code. The byte code can be extended by registering new operations.</t>

<t>The specialized byte code approach gives benefits equivalent to those provided by a scripting language or conventional byte code, with two substantial differences. First, the language is extremely high level, consisting of only the operations that a device may perform during update and trusted invocation of a firmware image. Second, the language specifies linear behavior, without reverse branches. Conditional processing is supported, and parallel and out-of-order processing may be performed by sufficiently capable devices.</t>

<t>By structuring the data in this way, the manifest processor becomes a very simple engine that uses a pull parser to interpret the manifest. This pull parser invokes a series of command handlers that evaluate a Condition or execute a Directive. Most data is structured in a highly regular pattern, which simplifies the parser.</t>

<t>The results of this allow a Recipient to implement a very small parser for constrained applications. If needed, such a parser also allows the Recipient to perform complex updates with reduced overhead. Conditional execution of commands allows a simple device to perform important decisions at validation-time.</t>

<t>Dependency handling is vastly simplified as well. Dependencies function like subroutines of the language. When a manifest has a dependency, it can invoke that dependency’s commands and modify their behavior by setting parameters. Because some parameters come with security implications, the dependencies also have a mechanism to reject modifications to parameters on a fine-grained level.</t>

<t>Developing a robust permissions system works in this model too. The Recipient can use a simple ACL that is a table of Identities and Component Identifier permissions to ensure that operations on components fail unless they are permitted by the ACL. This table can be further refined with individual parameters and commands.</t>

<t>Capability reporting is similarly simplified. A Recipient can report the Commands, Parameters, Algorithms, and Component Identifiers that it supports. This is sufficiently precise for a manifest author to create a manifest that the Recipient can accept.</t>

<t>The simplicity of design in the Recipient due to all of these benefits allows even a highly constrained platform to use advanced update capabilities.</t>

<section anchor="design-rationale-envelope" title="C.1 Design Rationale: Envelope">

<t>The Envelope is used instead of a COSE structure for several reasons:</t>

<t><list style="numbers">
  <t>This enables the use of Severable Elements (<xref target="severable-fields"/>)</t>
  <t>This enables modular processing of manifests, particularly with large signatures.</t>
  <t>This enables multiple authentication schemes.</t>
  <t>This allows integrity verification by a dependent to be unaffected by adding or removing authentication structures.</t>
</list></t>

<t>Modular processing is important because it allows a Manifest Processor to iterate forward over an Envelope, processing Delegation Chains and Authentication Blocks, retaining only intermediate values, without any need to seek forward and backwards in a stream until it gets to the Manifest itself. This allows the use of large, Post-Quantum signatures without requiring retention of the signature itself, or seeking forward and back.</t>

<t>Four authentication objects are supported by the Envelope:</t>

<t><list style="symbols">
  <t>COSE_Sign_Tagged</t>
  <t>COSE_Sign1_Tagged</t>
  <t>COSE_Mac_Tagged</t>
  <t>COSE_Mac0_Tagged</t>
</list></t>

<t>The SUIT Envelope allows an Update Authority or intermediary to mix and match any number of different authentication blocks it wants without any concern for modifying the integrity of another authentication block. This also allows the addition or removal of an authentication blocks without changing the integrity check of the Manifest, which is important for dependency handling. See <xref target="required-checks"/></t>

</section>
<section anchor="c2-byte-string-wrappers" title="C.2 Byte String Wrappers">

<t>Byte string wrappers are used in several places in the suit manifest. The primary reason for wrappers it to limit the parser extent when invoked at different times, with a possible loss of context.</t>

<t>The elements of the suit envelope are wrapped both to set the extents used by the parser and to simplify integrity checks by clearly defining the length of each element.</t>

<t>The common block is re-parsed in order to find components identifiers from their indices, to find dependency prefixes and digests from their identifiers, and to find the common sequence. The common sequence is wrapped so that it matches other sequences, simplifying the code path.</t>

<t>A severed SUIT command sequence will appear in the envelope, so it must be wrapped as with all envelope elements. For consistency, command sequences are also wrapped in the manifest. This also allows the parser to discern the difference between a command sequence and a SUIT_Digest.</t>

<t>Parameters that are structured types (arrays and maps) are also wrapped in a bstr. This is so that parser extents can be set correctly using only a reference to the beginning of the parameter. This enables a parser to store a simple list of references to parameters that can be retrieved when needed.</t>

</section>
</section>
<section anchor="implementation-matrix" title="D. Implementation Conformance Matrix">

<t>This section summarizes the functionality a minimal implementation needs
to offer to claim conformance to this specification, in the absence of
an application profile standard specifying otherwise.</t>

<t>The subsequent table shows the conditions.</t>

<texttable>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <ttcol align='left'>Implementation</ttcol>
      <c>Vendor Identifier</c>
      <c><xref target="uuid-identifiers"/></c>
      <c>REQUIRED</c>
      <c>Class Identifier</c>
      <c><xref target="uuid-identifiers"/></c>
      <c>REQUIRED</c>
      <c>Device Identifier</c>
      <c><xref target="uuid-identifiers"/></c>
      <c>OPTIONAL</c>
      <c>Image Match</c>
      <c><xref target="suit-condition-image-match"/></c>
      <c>REQUIRED</c>
      <c>Image Not Match</c>
      <c><xref target="suit-condition-image-not-match"/></c>
      <c>OPTIONAL</c>
      <c>Use Before</c>
      <c><xref target="suit-condition-use-before"/></c>
      <c>OPTIONAL</c>
      <c>Component Offset</c>
      <c><xref target="suit-condition-component-offset"/></c>
      <c>OPTIONAL</c>
      <c>Abort</c>
      <c><xref target="suit-condition-abort"/></c>
      <c>OPTIONAL</c>
      <c>Minimum Battery</c>
      <c><xref target="suit-condition-minimum-battery"/></c>
      <c>OPTIONAL</c>
      <c>Update Authorized</c>
      <c><xref target="suit-condition-update-authorized"/></c>
      <c>OPTIONAL</c>
      <c>Version</c>
      <c><xref target="suit-condition-version"/></c>
      <c>OPTIONAL</c>
      <c>Custom Condition</c>
      <c><xref target="SUIT_Condition_Custom"/></c>
      <c>OPTIONAL</c>
</texttable>

<t>The subsequent table shows the directives.</t>

<texttable>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <ttcol align='left'>Implementation</ttcol>
      <c>Set Component Index</c>
      <c><xref target="suit-directive-set-component-index"/></c>
      <c>REQUIRED if more than one component</c>
      <c>Set Dependency Index</c>
      <c><xref target="suit-directive-set-dependency-index"/></c>
      <c>REQUIRED if dependencies used</c>
      <c>Try Each</c>
      <c><xref target="suit-directive-try-each"/></c>
      <c>OPTIONAL</c>
      <c>Process Dependency</c>
      <c><xref target="suit-directive-process-dependency"/></c>
      <c>OPTIONAL</c>
      <c>Set Parameters</c>
      <c><xref target="suit-directive-set-parameters"/></c>
      <c>OPTIONAL</c>
      <c>Override Parameters</c>
      <c><xref target="suit-directive-override-parameters"/></c>
      <c>REQUIRED</c>
      <c>Fetch</c>
      <c><xref target="suit-directive-fetch"/></c>
      <c>REQUIRED for Updater</c>
      <c>Copy</c>
      <c><xref target="suit-directive-copy"/></c>
      <c>OPTIONAL</c>
      <c>Run</c>
      <c><xref target="suit-directive-run"/></c>
      <c>REQUIRED for Bootloader</c>
      <c>Wait For Event</c>
      <c><xref target="suit-directive-wait"/></c>
      <c>OPTIONAL</c>
      <c>Run Sequence</c>
      <c><xref target="suit-directive-run-sequence"/></c>
      <c>OPTIONAL</c>
      <c>Swap</c>
      <c><xref target="suit-directive-swap"/></c>
      <c>OPTIONAL</c>
      <c>Fetch URI List</c>
      <c><xref target="suit-directive-fetch-uri-list"/></c>
      <c>OPTIONAL</c>
</texttable>

<t>The subsequent table shows the parameters.</t>

<texttable>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <ttcol align='left'>Implementation</ttcol>
      <c>Vendor ID</c>
      <c><xref target="suit-parameter-vendor-identifier"/></c>
      <c>REQUIRED</c>
      <c>Class ID</c>
      <c><xref target="suit-parameter-class-identifier"/></c>
      <c>REQUIRED</c>
      <c>Image Digest</c>
      <c><xref target="suit-parameter-image-digest"/></c>
      <c>REQUIRED</c>
      <c>Image Size</c>
      <c><xref target="suit-parameter-image-size"/></c>
      <c>REQUIRED</c>
      <c>Use Before</c>
      <c><xref target="suit-parameter-use-before"/></c>
      <c>RECOMMENDED</c>
      <c>Component Offset</c>
      <c><xref target="suit-parameter-component-offset"/></c>
      <c>OPTIONAL</c>
      <c>Encryption Info</c>
      <c><xref target="suit-parameter-encryption-info"/></c>
      <c>RECOMMENDED</c>
      <c>Compression Info</c>
      <c><xref target="suit-parameter-compression-info"/></c>
      <c>RECOMMENDED</c>
      <c>Unpack Info</c>
      <c><xref target="suit-parameter-unpack-info"/></c>
      <c>RECOMMENDED</c>
      <c>URI</c>
      <c><xref target="suit-parameter-uri"/></c>
      <c>REQUIRED for Updater</c>
      <c>Source Component</c>
      <c><xref target="suit-parameter-source-component"/></c>
      <c>OPTIONAL</c>
      <c>Run Args</c>
      <c><xref target="suit-parameter-run-args"/></c>
      <c>OPTIONAL</c>
      <c>Device ID</c>
      <c><xref target="suit-parameter-device-identifier"/></c>
      <c>OPTIONAL</c>
      <c>Minimum Battery</c>
      <c><xref target="suit-parameter-minimum-battery"/></c>
      <c>OPTIONAL</c>
      <c>Update Priority</c>
      <c><xref target="suit-parameter-update-priority"/></c>
      <c>OPTIONAL</c>
      <c>Version Match</c>
      <c><xref target="suit-parameter-version"/></c>
      <c>OPTIONAL</c>
      <c>Wait Info</c>
      <c><xref target="suit-parameter-wait-info"/></c>
      <c>OPTIONAL</c>
      <c>URI List</c>
      <c><xref target="suit-parameter-uri-list"/></c>
      <c>OPTIONAL</c>
      <c>Strict Order</c>
      <c><xref target="suit-parameter-strict-order"/></c>
      <c>OPTIONAL</c>
      <c>Soft Failure</c>
      <c><xref target="suit-parameter-soft-failure"/></c>
      <c>OPTIONAL</c>
      <c>Custom</c>
      <c><xref target="suit-parameter-custom"/></c>
      <c>OPTIONAL</c>
</texttable>

</section>


  </back>

<!-- ##markdown-source:
H4sIAOyWoF8AA+y963Yb2XUu+h9PUUcaIyJtABIl9Y2OM0JRVJpn69JbVLvj
dPfQKABFsiygCq4qkIIl5Vn2s+wnO/O+5qoLSLXbTnISj8QWUVXrOtdc8/rN
yWQyavJmmR0mR8lxWczzOkue5EVabZNXsz9l8yZ5na2rrM6KJm3yskj2jp+8
er0/maV1tkjOsipPl/lf+NGzslqlTXJeVklzmSVn5XlznVZZ8v16kTZZTQ9O
iyariqxJyvPkzWVeXNTJ3tn3p2/2kxdpkZ9ndTNKZ7MquzpMsCPtB94ILyzK
eZGuYMiLKj1vJnnWnE/qTd5MVvLG5ODBaA5dXpTV9jCpm8VolK+rw6SpNnXz
8MGDbx48HMHA0kOYwHxT5c12dF1W7y6qcrM+pM5G77It/LQ4tAFPnmJno1Hd
pMXibbosCxjANqtH6/xwlCTV+Txb1M12Kb8mSVPO3T/zYgFLqD/UZdVU2Xlt
f29X0Z9Nlc/t5Xm5WsG39jQvlnkRusneN5NlDpOGRmblEl6blL/5LTyBZVql
6zWssRvH22V2leFLj0ejdNNclhWMfgLP8D95AQ+eTJMXZZUW8huv9JMqKxZp
ET0pqwtYb957IJ9qlTzPV3mTLeR5tkrzpX06pU//Oa1WU5jQqNXpt9PkTT2/
LM+zIr+Iev42LQqgnc7TW/Z+SZ9PG/t8xwie5NW7y3L5l7j/rHjXfhL3/axK
NwW2XiVnQDlx9/D1dCZf/3OdN9Nze3u6yNqD+F/T5N+AvGZZFS/C/yqzov0k
HsRpAScx7vsdfDT9i3z0zzm+AL2PRgUd0/wqQ7p9/ez48cHDh/LPrw++0H8+
+ubrLw9HcHCKc//+6eTpNBy4tJpfwprPm03V89Q+LYvJqlxky+iVJsvWOxpI
56vJvKyv80X0+3xWVpMmvagnJT+BoX71zSMd9cE3XzzQuTz6Rn/96uHDr/XX
rx5/pQ2+28wvsyq93k7g9H79+KuvZ3mNz/549OL5Ia2lsMY7+EtylBf3GuBC
1bvNOnmeFheb9CK7Q+/ZSYL/IK87TB4+ePiAm0iriwzO8mXTrOvD+/e36Wo5
hb27D0+/PfnXuB9kNkv8udtsRCd3fsjf5etskad3btMn0MG1fkB941/3qbO3
0Bl8c/b65DgeCv6S7J3nyyzhXdz/e4wJe31Lvb6VXuHjk+fP4rGdvAe23aQz
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
PihZuVFqMZG6QVb5/5dzAe0Y0gIA

-->

</rfc>

