<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.5.12 -->
<?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 xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-suit-manifest-15" category="std" obsoletes="" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.10.0 -->
  <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>
    <seriesInfo name="Internet-Draft" value="draft-ietf-suit-manifest-15"/>
    <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="2021" month="October" day="26"/>
    <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" numbered="true" toc="default">
      <name>Introduction</name>
      <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>
      <ul spacing="normal">
        <li>Obtain any dependencies</li>
        <li>Obtain the payload(s)</li>
        <li>Install them</li>
        <li>Verify them</li>
        <li>Load them into memory</li>
        <li>Invoke them</li>
      </ul>
      <t>This specification defines the SUIT manifest format and it is intended to meet several goals:</t>
      <ul spacing="normal">
        <li>Meet the requirements defined in <xref target="I-D.ietf-suit-information-model" format="default"/>.</li>
        <li>Simple to parse on a constrained node</li>
        <li>Simple to process on a constrained node</li>
        <li>Compact encoding</li>
        <li>Comprehensible by an intermediate system</li>
        <li>Expressive enough to enable advanced use cases on advanced nodes</li>
        <li>Extensible</li>
      </ul>
      <t>The SUIT manifest can be used for a variety of purposes throughout its lifecycle, such as:</t>
      <ul spacing="normal">
        <li>a Firmware Author to reason about releasing a firmware.</li>
        <li>a Network Operator to reason about compatibility of a firmware.</li>
        <li>a Device Operator to reason about the impact of a firmware.</li>
        <li>the Device Operator to manage distribution of firmware to devices.</li>
        <li>a Plant Manager to reason about timing and acceptance of firmware updates.</li>
        <li>a device to reason about the authority &amp; authenticity of a firmware prior to installation.</li>
        <li>a device to reason about the applicability of a firmware.</li>
        <li>a device to reason about the installation of a firmware.</li>
        <li>a device to reason about the authenticity &amp; encoding of a firmware at boot.</li>
      </ul>
      <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="RFC9019" format="default"/> and the threats, requirements, and user stories in <xref target="I-D.ietf-suit-information-model" format="default"/>.</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>
      <ul spacing="normal">
        <li>Copy some data from one place to another</li>
        <li>Transform some data</li>
        <li>Digest some data and compare to an expected value</li>
        <li>Compare some system parameters to an expected value</li>
        <li>Run some code</li>
      </ul>
      <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 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 SUIT Information Model (<xref target="I-D.ietf-suit-information-model" format="default"/>) 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" format="default"/>.</t>
    </section>
    <section anchor="conventions-and-terminology" numbered="true" toc="default">
      <name>Conventions and Terminology</name>
      <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" format="default"/> <xref target="RFC8174" format="default"/> when, and only when, they
appear in all capitals, as shown here.</t>
      <t>Additionally, the following terminology is used throughout this document:</t>
      <ul spacing="normal">
        <li>SUIT: Software Update for the Internet of Things, also the IETF working group for this standard.</li>
        <li>Payload: A piece of information to be delivered. Typically Firmware for the purposes of SUIT.</li>
        <li>Resource: A piece of information that is used to construct a payload.</li>
        <li>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.</li>
        <li>Envelope: A container with the manifest, an authentication wrapper with cryptographic information protecting the manifest, authorization information, and severable elements (see: TBD).</li>
        <li>Update: One or more manifests that describe one or more payloads.</li>
        <li>Update Authority: The owner of a cryptographic key used to sign updates, trusted by Recipients.</li>
        <li>Recipient: The system, typically an IoT device, that receives and processes a manifest.</li>
        <li>Manifest Processor: A component of the Recipient that consumes Manifests and executes the commands in the Manifest.</li>
        <li>Component: An updatable logical block of the Firmware, Software, configuration, or data of the Recipient.</li>
        <li>Component Set: A group of interdependent Components that must be updated simultaneously.</li>
        <li>Command: A Condition or a Directive.</li>
        <li>Condition: A test for a property of the Recipient or its Components.</li>
        <li>Directive: An action for the Recipient to perform.</li>
        <li>Trusted Invocation: A process by which a system ensures that only trusted code is executed, for example secure boot or launching a Trusted Application.</li>
        <li>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).</li>
        <li>Record: The result of a Command and any metadata about it.</li>
        <li>Report: A list of Records.</li>
        <li>Procedure: The process of invoking one or more sequences of commands.</li>
        <li>Update Procedure: A procedure that updates a Recipient by fetching dependencies and images, and installing them.</li>
        <li>Invocation Procedure: A procedure in which a Recipient verifies dependencies and images, loading images, and invokes one or more image.</li>
        <li>Software: Instructions and data that allow a Recipient to perform a useful function.</li>
        <li>Firmware: Software that is typically changed infrequently, stored in nonvolatile memory, and small enough to apply to <xref target="RFC7228" format="default"/> Class 0-2 devices.</li>
        <li>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.</li>
        <li>Slot: One of several possible storage locations for a given Component, typically used in A/B image systems</li>
        <li>Abort: An event in which the Manifest Processor immediately halts execution of the current Procedure. It creates a Record of an error condition.</li>
      </ul>
    </section>
    <section anchor="how-to-use-this-document" numbered="true" toc="default">
      <name>How to use this Document</name>
      <t>This specification covers five aspects of firmware update:</t>
      <ul spacing="normal">
        <li>
          <xref target="background" format="default"/> describes the device constraints, use cases, and design principles that informed the structure of the manifest.</li>
        <li>
          <xref target="metadata-structure-overview" format="default"/> gives a general overview of the metadata structure to inform the following sections</li>
        <li>
          <xref target="interpreter-behavior" format="default"/> describes what actions a Manifest processor should take.</li>
        <li>
          <xref target="creating-manifests" format="default"/> describes the process of creating a Manifest.</li>
        <li>
          <xref target="metadata-structure" format="default"/> specifies the content of the Envelope and the Manifest.</li>
      </ul>
      <t>To implement an updatable device, see <xref target="interpreter-behavior" format="default"/> and <xref target="metadata-structure" format="default"/>.
To implement a tool that generates updates, see <xref target="creating-manifests" format="default"/> and <xref target="metadata-structure" format="default"/>.</t>
      <t>The IANA consideration section, see <xref target="iana" format="default"/>, 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" format="default"/>, examples are given in <xref target="examples" format="default"/> and a design rational is offered in <xref target="design-rationale" format="default"/>. Finally, <xref target="implementation-matrix" format="default"/> gives a summarize of the mandatory-to-implement features of this specification.</t>
      <t>This specification covers the core features of SUIT. Additional specifications will cover advanced use cases and update management needs:</t>
      <ul spacing="normal">
        <li>Firmware Encryption is covered in <xref target="I-D.ietf-suit-firmware-encryption" format="default"/></li>
        <li>Update Management is covered in (TBD) <!--{{I-D.moran-suit-update-management}}-->
        </li>
        <li>Multiple Trust Domains (dependencies, key delegation, multiple processors, TEEs, etc.) are covered in (TBD) <!--{{I-D.moran-suit-trust-domains}}-->
        </li>
        <li>Update Compression is covered in (TBD) <!--{{I-D.moran-suit-payload-compression}}-->
        </li>
      </ul>
    </section>
    <section anchor="background" numbered="true" toc="default">
      <name>Background</name>
      <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="RFC9019" format="default"/>. The security aspects are described in <xref target="I-D.ietf-suit-information-model" format="default"/>.</t>
      <section anchor="iot-firmware-update-constraints" numbered="true" toc="default">
        <name>IoT Firmware Update Constraints</name>
        <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>
        <ul spacing="normal">
          <li>limited processing power and storage may require a simple representation of metadata.</li>
          <li>bandwidth constraints may require firmware compression or partial update support.</li>
          <li>bootloader complexity constraints may require simple selection between two bootable images.</li>
          <li>small internal storage may require external storage support.</li>
          <li>multiple microcontrollers may require coordinated update of all applications.</li>
          <li>large storage and complex functionality may require parallel update of many software components.</li>
          <li>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.</li>
        </ul>
        <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" numbered="true" toc="default">
        <name>SUIT Workflow Model</name>
        <t>There are several fundamental assumptions that inform the model of Update Procedure workflow:</t>
        <ul spacing="normal">
          <li>Compatibility must be checked before any other operation is performed.</li>
          <li>In some applications, payloads must be fetched and validated prior to installation.</li>
        </ul>
        <t>There are several fundamental assumptions that inform the model of the Invocation Procedure workflow:</t>
        <ul spacing="normal">
          <li>Compatibility must be checked before any other operation is performed.</li>
          <li>All payloads must be validated prior to loading.</li>
          <li>All loaded images must be validated prior to execution.</li>
        </ul>
        <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>
        <ol spacing="normal" type="1"><li>Verify the signature of the manifest.</li>
          <li>Verify the applicability of the manifest.</li>
          <li>Fetch payload(s).</li>
          <li>Install payload(s).</li>
        </ol>
        <t>When installation is complete, similar information can be used for validating and running images in a further three steps:</t>
        <ol spacing="normal" type="1"><li>Verify image(s).</li>
          <li>Load image(s).</li>
          <li>Run image(s).</li>
        </ol>
        <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>
      </section>
    </section>
    <section anchor="metadata-structure-overview" numbered="true" toc="default">
      <name>Metadata Structure Overview</name>
      <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" format="default"/></t>
      <t>The manifest is structured from several key components:</t>
      <ol spacing="normal" type="1"><li>The Envelope (see <xref target="ovr-envelope" format="default"/>) contains the Authentication Block, the Manifest, any Severable Elements, and any Integrated Payloads.</li>
        <li>The Authentication Block (see <xref target="ovr-auth" format="default"/>) contains a list of signatures or MACs of the manifest..</li>
        <li>
          <t>The Manifest (see <xref target="ovr-manifest" format="default"/>) contains all critical, non-severable metadata that the Recipient requires. It is further broken down into:  </t>
          <ol spacing="normal" type="1"><li>Critical metadata, such as sequence number.</li>
            <li>Common metadata, such as affected components.</li>
            <li>Command sequences, directing the Recipient how to install and use the payload(s).</li>
            <li>Integrity check values for severable elements.</li>
          </ol>
        </li>
        <li>Severable elements (see <xref target="ovr-severable" format="default"/>).</li>
        <li>Integrated payloads (see <xref target="ovr-integrated" format="default"/>).</li>
      </ol>
      <t>The diagram below illustrates the hierarchy of the Envelope.</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
+-------------------------+
| Envelope                |
+-------------------------+
| Authentication Block    |
| Manifest           --------------> +------------------------------+
| Severable Elements      |          | Manifest                     |
| Human-Readable Text     |          +------------------------------+
| COSWID                  |          | Structure Version            |
| Integrated Payloads     |          | Sequence Number              |
+-------------------------+          | Reference to Full Manifest   |
                               +------ Common Structure             |
                               | +---- Command Sequences            |
+-------------------------+    | |   | Digests of Envelope Elements |
| Common Structure        | <--+ |   +------------------------------+
+-------------------------+      |
| Components IDs          |      +-> +-----------------------+
| Common Command Sequence ---------> | Command Sequence      |
+-------------------------+          +-----------------------+
                                     | List of ( pairs of (  |
                                     |   * command code      |
                                     |   * argument /        |
                                     |      reporting policy |
                                     | ))                    |
                                     +-----------------------+
]]></artwork>
      <section anchor="ovr-envelope" numbered="true" toc="default">
        <name>Envelope</name>
        <t>The SUIT Envelope is a container that encloses the Authentication Block, the Manifest, any Severable Elements, and any integrated payloads. 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" format="default"/> for a description of the reasoning for this.</t>
        <t>See <xref target="envelope" format="default"/> for more detail.</t>
      </section>
      <section anchor="ovr-auth" numbered="true" toc="default">
        <name>Authentication Block</name>
        <t>The Authentication Block contains a bstr-wrapped SUIT Digest Container, see <xref target="SUIT_Digest" format="default"/>, and one or more <xref target="RFC8152" format="default"/> CBOR Object Signing and Encryption (COSE) authentication blocks. These blocks are one of:</t>
        <ul spacing="normal">
          <li>COSE_Sign_Tagged</li>
          <li>COSE_Sign1_Tagged</li>
          <li>COSE_Mac_Tagged</li>
          <li>COSE_Mac0_Tagged</li>
        </ul>
        <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" format="default"/> for more detail.</t>
      </section>
      <section anchor="ovr-manifest" numbered="true" toc="default">
        <name>Manifest</name>
        <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" format="default"/> for more detail.</t>
        <section anchor="ovr-critical" numbered="true" toc="default">
          <name>Critical Metadata</name>
          <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" format="default"/>, <xref target="manifest-seqnr" format="default"/>, and <xref target="manifest-reference-uri" format="default"/> for more detail.</t>
        </section>
        <section anchor="ovr-common" numbered="true" toc="default">
          <name>Common</name>
          <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 two parts: 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" format="default"/> for more detail.</t>
        </section>
        <section anchor="ovr-commands" numbered="true" toc="default">
          <name>Command Sequences</name>
          <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" format="default"/>), update commands, and secure boot commands.</t>
          <t>Update Command Sequences are: 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. An 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 (dependencies are not defined in this specification).</t>
          <t>See <xref target="manifest-commands" format="default"/> for more detail.</t>
        </section>
        <section anchor="ovr-integrity" numbered="true" toc="default">
          <name>Integrity Check Values</name>
          <t>To enable <xref target="ovr-severable" format="default"/>, 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, or Text data. 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" format="default"/> for more detail.</t>
        </section>
        <section anchor="ovr-text" numbered="true" toc="default">
          <name>Human-Readable Text</name>
          <t>Text is typically a Severable Element (<xref target="ovr-severable" format="default"/>). 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" format="default"/> for more detail.</t>
        </section>
      </section>
      <section anchor="ovr-severable" numbered="true" toc="default">
        <name> Severable Elements</name>
        <t>Severable Elements are elements of the Envelope (<xref target="ovr-envelope" format="default"/>) that have Integrity Check Values (<xref target="ovr-integrity" format="default"/>) in the Manifest (<xref target="ovr-manifest" format="default"/>).</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>
        <ul spacing="normal">
          <li>A management system severs the Text sections before sending an Envelope to a constrained Recipient, which saves Recipient bandwidth.</li>
          <li>A Recipient severs the Installation section after installing the Update, which saves storage space.</li>
        </ul>
        <t>See <xref target="severable-fields" format="default"/> for more detail.</t>
      </section>
      <section anchor="ovr-integrated" numbered="true" toc="default">
        <name>Integrated Payloads</name>
        <t>In some cases, it is beneficial to include a payload in the Envelope of a manifest. For example:</t>
        <ul spacing="normal">
          <li>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.</li>
          <li>When a manifest transports a small payload, such as an encrypted key, that payload may be placed in the manifest's envelope.</li>
        </ul>
        <t>See <xref target="template-integrated-payload" format="default"/> for more detail.</t>
      </section>
    </section>
    <section anchor="interpreter-behavior" numbered="true" toc="default">
      <name>Manifest Processor Behavior</name>
      <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" numbered="true" toc="default">
        <name>Manifest Processor Setup</name>
        <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>
        <ul spacing="normal">
          <li>Whenever the manifest processor can choose between several manifests, it MUST select the latest valid, authentic manifest.</li>
          <li>If the latest valid, authentic manifest fails, it MAY select the next latest valid, authentic manifest, according to application-specific policy.</li>
        </ul>
        <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>
        <ul spacing="normal">
          <li>Test failed (e.g. Vendor ID/Class ID).</li>
          <li>Unsupported command encountered.</li>
          <li>Unsupported parameter encountered.</li>
          <li>Unsupported Component Identifier encountered.</li>
          <li>Payload not available.</li>
          <li>Application crashed when executed.</li>
          <li>Watchdog timeout occurred.</li>
          <li>Payload verification failed.</li>
          <li>Missing required component from a Component Set.</li>
          <li>Required parameter not supplied.</li>
        </ul>
        <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="RFC9019" format="default"/>, 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" format="default"/>, 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" numbered="true" toc="default">
        <name> Required Checks</name>
        <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" format="default"/>) to determine the extent of the rights conferred by that authenticity.</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" format="default"/> 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, each command sequence MUST begin with a Set Component Index.</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, that is the manifest:</t>
        <ol spacing="normal" type="1"><li>has sufficient permissions imparted by its signatures</li>
          <li>specifies a digest and a payload for every Component in the Component Set.</li>
        </ol>
        <section anchor="minimal-sigs" numbered="true" toc="default">
          <name>Minimizing Signature Verifications</name>
          <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>
          <ul spacing="normal">
            <li>The Authentication Block contains a COSE_Sign_Tagged or COSE_Sign1_Tagged</li>
            <li>The Recipient receives manifests over an unauthenticated channel, exposing it to more inauthentic or incompatible manifests, and</li>
            <li>The Recipient has a power budget that makes signature verification undesirable</li>
          </ul>
          <t>When executing Common prior to authenticity validation, the Manifest Processor MUST first evaluate the integrity of the manifest using the SUIT_Digest present in the authentication block.</t>
          <t>The guidelines in Creating Manifests (<xref target="creating-manifests" format="default"/>) 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>A Recipient MAY rely on network infrastructure to filter inapplicable manifests.</t>
        </section>
      </section>
      <section anchor="interpreter-fundamental-properties" numbered="true" toc="default">
        <name>Interpreter Fundamental Properties</name>
        <t>The interpreter has a small set of design goals:</t>
        <ol spacing="normal" type="1"><li>Executing an update MUST either result in an error, or a verifiably correct system state.</li>
          <li>Executing a Trusted Invocation MUST either result in an error, or an invoked image.</li>
          <li>Executing the same manifest on multiple Recipients MUST result in the same system state.</li>
        </ol>
        <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" numbered="true" toc="default">
        <name>Abstract Machine Description</name>
        <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. 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" format="default"/>) 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:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
current := components\[component-index\]
]]></artwork>
        <t>As a result, Set Component Index is described as current := components[arg].</t>
        <t>The following table describes the behavior of each command. "params" represents the parameters for the current component. Most commands operate on a component.</t>
        <table align="center">
          <thead>
            <tr>
              <th align="left">Command Name</th>
              <th align="left">Semantic of the Operation</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">Check Vendor Identifier</td>
              <td align="left">assert(binary-match(current, current.params[vendor-id]))</td>
            </tr>
            <tr>
              <td align="left">Check Class Identifier</td>
              <td align="left">assert(binary-match(current, current.params[class-id]))</td>
            </tr>
            <tr>
              <td align="left">Verify Image</td>
              <td align="left">assert(binary-match(digest(current), current.params[digest]))</td>
            </tr>
            <tr>
              <td align="left">Set Component Index</td>
              <td align="left">current := components[arg]</td>
            </tr>
            <tr>
              <td align="left">Override Parameters</td>
              <td align="left">current.params[k] := v for-each k,v in arg</td>
            </tr>
            <tr>
              <td align="left">Set Parameters</td>
              <td align="left">current.params[k] := v if not k in params for-each k,v in arg</td>
            </tr>
            <tr>
              <td align="left">Run</td>
              <td align="left">run(current)</td>
            </tr>
            <tr>
              <td align="left">Fetch</td>
              <td align="left">store(current, fetch(current.params[uri]))</td>
            </tr>
            <tr>
              <td align="left">Use Before</td>
              <td align="left">assert(now() &lt; arg)</td>
            </tr>
            <tr>
              <td align="left">Check Component Slot</td>
              <td align="left">assert(current.slot-index == arg)</td>
            </tr>
            <tr>
              <td align="left">Check Device Identifier</td>
              <td align="left">assert(binary-match(current, current.params[device-id]))</td>
            </tr>
            <tr>
              <td align="left">Abort</td>
              <td align="left">assert(0)</td>
            </tr>
            <tr>
              <td align="left">Try Each</td>
              <td align="left">try-each-done if exec(seq) is not error for-each seq in arg</td>
            </tr>
            <tr>
              <td align="left">Copy</td>
              <td align="left">store(current, current.params[src-component])</td>
            </tr>
            <tr>
              <td align="left">Swap</td>
              <td align="left">swap(current, current.params[src-component])</td>
            </tr>
            <tr>
              <td align="left">Run Sequence</td>
              <td align="left">exec(arg)</td>
            </tr>
            <tr>
              <td align="left">Run with Arguments</td>
              <td align="left">run(current, arg)</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="index-true" numbered="true" toc="default">
        <name>Special Cases of Component Index</name>
        <t>Component Index can take on one of three types:</t>
        <ol spacing="normal" type="1"><li>Integer</li>
          <li>Array of integers</li>
          <li>True</li>
        </ol>
        <t>Integers MUST always be supported by Set Component Index. Arrays of integers MUST be supported by Set Component Index if the Recipient supports 3 or more components. True MUST be supported by Set Component Index if the Recipient supports 2 or more components. Each of these operates on the list of components 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) to which each subsequent command applies. The value True replaces the list of component indices with the full list of components, as defined in the manifest.</t>
        <t>When a command is executed, it either 1. operates on the component identified by the component index if that index is an integer, or 2. it operates on each component identified by an array of indicies, or 3. it operates on every component if the index is the boolean True. This is described by the following pseudocode:</t>
        <artwork name="" type="" align="left" alt=""><![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:
    current-list = [ components[component-index] ]
for current in current-list:
    cmd(current)
]]></artwork>
        <t>Try Each and Run Sequence are affected in the same way as other commands: they are invoked once for each possible Component. This means that the sequences that are arguments to Try Each and Run Sequence are NOT invoked with Component 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 to each index in turn.</t>
      </section>
      <section anchor="serial-processing" numbered="true" toc="default">
        <name>Serialized Processing Interpreter</name>
        <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 index of True, it does not ignore any commands. It applies them to the current component on each iteration.</t>
      </section>
      <section anchor="parallel-processing" numbered="true" toc="default">
        <name>Parallel Processing Interpreter</name>
        <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>When the manifest processor encounters any of these scenarios the parallel processing MUST halt until all issued commands have completed:</t>
        <ul spacing="normal">
          <li>Set Parameters.</li>
          <li>Override Parameters.</li>
          <li>Set Strict Order = True.</li>
          <li>Set Component Index.</li>
        </ul>
        <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 directive with the following exception: when the index is either True or an array of indices, the Set Component 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>
    <section anchor="creating-manifests" numbered="true" toc="default">
      <name>Creating Manifests</name>
      <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" format="default"/>.</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, this means that the parameters consumed by each command MUST have been set for each Component.</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, Set Component Index has no effect and can be omitted.</t>
      <t>NOTE: <strong>A digest MUST always be set using Override Parameters.</strong></t>
      <section anchor="template-compatibility-check" numbered="true" toc="default">
        <name>Compatibility Check Template</name>
        <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>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index" format="default"/>)</li>
          <li>Override Parameters directive (see <xref target="suit-directive-override-parameters" format="default"/>) for Vendor ID and Class ID (see <xref target="secparameters" format="default"/>)</li>
          <li>Check Vendor Identifier condition (see <xref target="uuid-identifiers" format="default"/>)</li>
          <li>Check Class Identifier condition (see <xref target="uuid-identifiers" format="default"/>)</li>
        </ul>
      </section>
      <section anchor="template-secure-boot" numbered="true" toc="default">
        <name>Trusted Invocation Template</name>
        <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>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index" format="default"/>)</li>
          <li>Override Parameters directive (see <xref target="suit-directive-override-parameters" format="default"/>) for Image Digest and Image Size (see <xref target="secparameters" format="default"/>)</li>
        </ul>
        <t>The system validation sequence contains the following commands:</t>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index" format="default"/>)</li>
          <li>Check Image Match condition (see <xref target="suit-condition-image-match" format="default"/>)</li>
        </ul>
        <t>Then, the run sequence contains the following commands:</t>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index" format="default"/>)</li>
          <li>Run directive (see <xref target="suit-directive-run-sequence" format="default"/>)</li>
        </ul>
      </section>
      <section anchor="firmware-download-template" numbered="true" toc="default">
        <name>Component Download Template</name>
        <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>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index" format="default"/>)</li>
          <li>Override Parameters directive (see <xref target="suit-directive-override-parameters" format="default"/>) for Image Digest and Image Size (see <xref target="secparameters" format="default"/>)</li>
        </ul>
        <t>Then, the install sequence contains the following commands:</t>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index" format="default"/>)</li>
          <li>Override Parameters directive (see <xref target="suit-directive-override-parameters" format="default"/>) for URI (see <xref target="suit-parameter-uri" format="default"/>)</li>
          <li>Fetch directive (see <xref target="suit-directive-fetch" format="default"/>)</li>
          <li>Check Image Match condition (see <xref target="suit-condition-image-match" format="default"/>)</li>
        </ul>
        <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>
      </section>
      <section anchor="template-install" numbered="true" toc="default">
        <name>Install Template</name>
        <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>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index" format="default"/>)</li>
          <li>Override Parameters directive (see <xref target="suit-directive-override-parameters" format="default"/>) for Source Component (see <xref target="suit-parameter-source-component" format="default"/>)</li>
          <li>Copy directive (see <xref target="suit-directive-copy" format="default"/>)</li>
          <li>Check Image Match condition (see <xref target="suit-condition-image-match" format="default"/>)</li>
        </ul>
      </section>
      <section anchor="template-integrated-payload" numbered="true" toc="default">
        <name>Integrated Payload Template</name>
        <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" format="default"/>).</t>
        <t>An implementer MAY choose to place a payload in the envelope of a manifest. The payload envelope key MUST be a string. The payload MUST be serialized in a bstr element.</t>
        <t>The URI for a payload enclosed in this way MAY be expressed as a fragment-only reference, as defined in <xref target="RFC3986" format="default"/>, Section 4.4.</t>
        <t>A distributor MAY choose to pre-fetch a payload and add it to the manifest envelope, using the URI as the key.</t>
      </section>
      <section anchor="template-load-ext" numbered="true" toc="default">
        <name>Load from Nonvolatile Storage Template</name>
        <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>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index" format="default"/>)</li>
          <li>Override Parameters directive (see <xref target="suit-directive-override-parameters" format="default"/>) for Source Component (see <xref target="secparameters" format="default"/>)</li>
          <li>Copy directive (see <xref target="suit-directive-copy" format="default"/>)</li>
        </ul>
        <t>As outlined in <xref target="command-behavior" format="default"/>, 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="a-b-template" numbered="true" toc="default">
        <name>A/B Image Template</name>
        <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>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index" format="default"/>)</li>
          <li>
            <t>Try Each
            </t>
            <ul spacing="normal">
              <li>
                <t>First Sequence:
                </t>
                <ul spacing="normal">
                  <li>Override Parameters directive (see <xref target="suit-directive-override-parameters" format="default"/>, <xref target="secparameters" format="default"/>) for Slot A</li>
                  <li>Check Slot Condition (see <xref target="suit-condition-component-slot" format="default"/>)</li>
                  <li>Override Parameters directive (see <xref target="suit-directive-override-parameters" format="default"/>) for Image Digest A and Image Size A (see <xref target="secparameters" format="default"/>)</li>
                </ul>
              </li>
              <li>
                <t>Second Sequence:
                </t>
                <ul spacing="normal">
                  <li>Override Parameters directive (see <xref target="suit-directive-override-parameters" format="default"/>, <xref target="secparameters" format="default"/>) for Slot B</li>
                  <li>Check Slot Condition (see <xref target="suit-condition-component-slot" format="default"/>)</li>
                  <li>Override Parameters directive (see <xref target="suit-directive-override-parameters" format="default"/>) for Image Digest B and Image Size B (see <xref target="secparameters" format="default"/>)</li>
                </ul>
              </li>
            </ul>
          </li>
        </ul>
        <t>The following commands are placed in the fetch block or install block</t>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index" format="default"/>)</li>
          <li>
            <t>Try Each
            </t>
            <ul spacing="normal">
              <li>
                <t>First Sequence:
                </t>
                <ul spacing="normal">
                  <li>Override Parameters directive (see <xref target="suit-directive-override-parameters" format="default"/>, <xref target="secparameters" format="default"/>) for Slot A</li>
                  <li>Check Slot Condition (see <xref target="suit-condition-component-slot" format="default"/>)</li>
                  <li>Set Parameters directive (see <xref target="suit-directive-override-parameters" format="default"/>) for URI A (see <xref target="secparameters" format="default"/>)</li>
                </ul>
              </li>
              <li>
                <t>Second Sequence:
                </t>
                <ul spacing="normal">
                  <li>Override Parameters directive (see <xref target="suit-directive-override-parameters" format="default"/>, <xref target="secparameters" format="default"/>) for Slot B</li>
                  <li>Check Slot Condition (see <xref target="suit-condition-component-slot" format="default"/>)</li>
                  <li>Set Parameters directive (see <xref target="suit-directive-override-parameters" format="default"/>) for URI B (see <xref target="secparameters" format="default"/>)</li>
                </ul>
              </li>
            </ul>
          </li>
          <li>Fetch</li>
        </ul>
        <t>If Trusted Invocation (<xref target="template-secure-boot" format="default"/>) is used, only the run sequence is added to this template, since the common sequence is populated by this template:</t>
        <ul spacing="normal">
          <li>Set Component Index directive (see <xref target="suit-directive-set-component-index" format="default"/>)</li>
          <li>
            <t>Try Each
            </t>
            <ul spacing="normal">
              <li>
                <t>First Sequence:
                </t>
                <ul spacing="normal">
                  <li>Override Parameters directive (see <xref target="suit-directive-override-parameters" format="default"/>, <xref target="secparameters" format="default"/>) for Slot A</li>
                  <li>Check Slot Condition (see <xref target="suit-condition-component-slot" format="default"/>)</li>
                </ul>
              </li>
              <li>
                <t>Second Sequence:
                </t>
                <ul spacing="normal">
                  <li>Override Parameters directive (see <xref target="suit-directive-override-parameters" format="default"/>, <xref target="secparameters" format="default"/>) for Slot B</li>
                  <li>Check Slot Condition (see <xref target="suit-condition-component-slot" format="default"/>)</li>
                </ul>
              </li>
            </ul>
          </li>
          <li>Run</li>
        </ul>
        <t>NOTE: Any test can be used to select between images, Check Slot Condition is used in this template because it is a typical test for execute-in-place devices.</t>
      </section>
    </section>
    <section anchor="metadata-structure" numbered="true" toc="default">
      <name>Metadata Structure</name>
      <t>The metadata for SUIT updates is composed of several primary constituent parts: the Envelope, Authentication Information, Manifest, and Severable Elements.</t>
      <t>For a diagram of the metadata structure, see <xref target="metadata-structure-overview" format="default"/>.</t>
      <section anchor="encoding-considerations" numbered="true" toc="default">
        <name>Encoding Considerations</name>
        <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" format="default"/>.</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" numbered="true" toc="default">
        <name>Envelope</name>
        <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="authentication-info" numbered="true" toc="default">
        <name>Authenticated Manifests</name>
        <t>The suit-authentication-wrapper contains a list containing a SUIT Digest Container (see <xref target="SUIT_Digest" format="default"/>) and one or more cryptographic authentication wrappers for the Manifest. These blocks are implemented as COSE_Mac_Tagged or COSE_Sign_Tagged structures with null payloads, indicating that the payload to be used is the SUIT Digest Container. This enables modular processing of the manifest. The COSE_Mac_Tagged and COSE_Sign_Tagged blocks are described in RFC 8152 <xref target="RFC8152" format="default"/>. The suit-authentication-wrapper MUST come before any element in the SUIT_Envelope, regardless of canonical encoding of CBOR. All validators MUST reject any SUIT_Envelope that begins with any element other than a suit-authentication-wrapper (NOTE: key delegation MAY relax this requirement to include a delegation structure as well).</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="manifest-structure" numbered="true" toc="default">
        <name>Manifest</name>
        <t>The manifest contains:</t>
        <ul spacing="normal">
          <li>a version number (see <xref target="manifest-version" format="default"/>)</li>
          <li>a sequence number (see <xref target="manifest-seqnr" format="default"/>)</li>
          <li>a reference URI (see <xref target="manifest-reference-uri" format="default"/>)</li>
          <li>a common structure with information that is shared between command sequences (see <xref target="manifest-common" format="default"/>)</li>
          <li>one or more lists of commands that the Recipient should perform (see <xref target="manifest-commands" format="default"/>)</li>
          <li>a reference to the full manifest (see <xref target="manifest-reference-uri" format="default"/>)</li>
          <li>human-readable text describing the manifest found in the SUIT_Envelope (see <xref target="manifest-digest-text" format="default"/>)</li>
        </ul>
        <t>The Text section, or any Command Sequence of the Update Procedure (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" format="default"/> for more detail.</t>
        <section anchor="manifest-version" numbered="true" toc="default">
          <name>suit-manifest-version</name>
          <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" numbered="true" toc="default">
          <name>suit-manifest-sequence-number</name>
          <t>The suit-manifest-sequence-number is a monotonically increasing anti-rollback counter. 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" numbered="true" toc="default">
          <name>suit-reference-uri</name>
          <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" numbered="true" toc="default">
          <name>suit-text</name>
          <t>suit-text SHOULD be a severable element. suit-text is a map containing two different types of pair:</t>
          <ul spacing="normal">
            <li>integer =&gt; text</li>
            <li>SUIT_Component_Identifier =&gt; map</li>
          </ul>
          <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" format="default"/>).</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>
          <table align="center">
            <thead>
              <tr>
                <th align="left">CDDL Structure</th>
                <th align="left">Description</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">suit-text-manifest-description</td>
                <td align="left">Free text description of the manifest</td>
              </tr>
              <tr>
                <td align="left">suit-text-update-description</td>
                <td align="left">Free text description of the update</td>
              </tr>
              <tr>
                <td align="left">suit-text-manifest-json-source</td>
                <td align="left">The JSON-formatted document that was used to create the manifest</td>
              </tr>
              <tr>
                <td align="left">suit-text-manifest-yaml-source</td>
                <td align="left">The YAML (<xref target="YAML" format="default"/>)-formatted document that was used to create the manifest</td>
              </tr>
            </tbody>
          </table>
          <t>The following table describes the text fields available in each map identified by a SUIT_Component_Identifier.</t>
          <table align="center">
            <thead>
              <tr>
                <th align="left">CDDL Structure</th>
                <th align="left">Description</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">suit-text-vendor-name</td>
                <td align="left">Free text vendor name</td>
              </tr>
              <tr>
                <td align="left">suit-text-model-name</td>
                <td align="left">Free text model name</td>
              </tr>
              <tr>
                <td align="left">suit-text-vendor-domain</td>
                <td align="left">The domain used to create the vendor-id condition</td>
              </tr>
              <tr>
                <td align="left">suit-text-model-info</td>
                <td align="left">The information used to create the class-id condition</td>
              </tr>
              <tr>
                <td align="left">suit-text-component-description</td>
                <td align="left">Free text description of each component in the manifest</td>
              </tr>
              <tr>
                <td align="left">suit-text-component-version</td>
                <td align="left">A free text representation of the component version</td>
              </tr>
            </tbody>
          </table>
          <t>suit-text is OPTIONAL to implement.</t>
        </section>
        <section anchor="manifest-common" numbered="true" toc="default">
          <name>suit-common</name>
          <t>suit-common encodes all the information that is shared between each of the command sequences, including: suit-components, and suit-common-sequence. suit-common is REQUIRED to implement.</t>
          <t>suit-components is a list of <xref target="suit-component-identifier" format="default">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.</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" format="default"/> and <xref target="a-b-template" format="default"/> 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" format="default"/> will be used. Whenever a parameter or Try Each command is required by more than one Command Sequence, placing that parameter or command in suit-common-sequence results in a smaller encoding.</t>
          <section anchor="suit-component-identifier" numbered="true" toc="default">
            <name>SUIT_Component_Identifier</name>
            <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. 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" numbered="true" toc="default">
          <name>SUIT_Command_Sequence</name>
          <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>
          <ol spacing="normal" type="1"><li>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.</li>
            <li>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.</li>
            <li>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. suit-validate is REQUIRED to implement.</li>
            <li>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.</li>
            <li>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: the "run" directive. suit-run is OPTIONAL to implement.</li>
          </ol>
          <t>Goals 1,2 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>
          <ol spacing="normal" type="1"><li>Conditions that MUST be true and any failure is treated as a failure of the update/load/invocation</li>
            <li>Directives that MUST be executed.</li>
          </ol>
          <t>Each condition is composed of:</t>
          <ol spacing="normal" type="1"><li>A command code identifier</li>
            <li>A <xref target="reporting-policy" format="default">SUIT_Reporting_Policy</xref></li>
          </ol>
          <t>Each directive is composed of:</t>
          <ol spacing="normal" type="1"><li>A command code identifier</li>
            <li>An argument block or a <xref target="reporting-policy" format="default">SUIT_Reporting_Policy</xref></li>
          </ol>
          <t>Argument blocks are consumed only by flow-control directives:</t>
          <ul spacing="normal">
            <li>Set Component Index</li>
            <li>Set/Override Parameters</li>
            <li>Try Each</li>
            <li>Run Sequence</li>
          </ul>
          <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. This index is a numeric index into the Component Identifier table defined at the beginning of the manifest.</t>
          <t>To facilitate optional conditions, a special directive, suit-directive-try-each (<xref target="suit-directive-try-each" format="default"/>), 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" format="default"/>).</t>
        </section>
        <section anchor="reporting-policy" numbered="true" toc="default">
          <name>Reporting Policy</name>
          <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>
          <table align="center">
            <thead>
              <tr>
                <th align="left">Policy</th>
                <th align="left">Description</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">suit-send-record-on-success</td>
                <td align="left">Record when the command succeeds</td>
              </tr>
              <tr>
                <td align="left">suit-send-record-on-failure</td>
                <td align="left">Record when the command fails</td>
              </tr>
              <tr>
                <td align="left">suit-send-sysinfo-success</td>
                <td align="left">Add system information when the command succeeds</td>
              </tr>
              <tr>
                <td align="left">suit-send-sysinfo-failure</td>
                <td align="left">Add system information when the command fails</td>
              </tr>
            </tbody>
          </table>
          <t>Any or all of these policies may be enabled at once.</t>
          <t>At the completion of each command, a Manifest Processor MAY forward information about the command to a Reporting Engine, which is responsible for reporting boot or update status to a third party. The Reporting Engine is entirely implementation-defined, the reporting policy simply facilitates the Reporting Engine's interface to the SUIT Manifest Processor.</t>
          <t>The information elements provided to the Reporting Engine are:</t>
          <ul spacing="normal">
            <li>The reporting policy</li>
            <li>The result of the command</li>
            <li>The values of parameters consumed by the command</li>
            <li>The system information consumed by the command</li>
          </ul>
          <t>Together, these elements are called a Record. A group of Records is a Report.</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.</t>
          <t>This specification does not 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 Procedure, 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" numbered="true" toc="default">
          <name>SUIT_Parameters</name>
          <t>Many conditions and directives require additional information. That information is contained within parameters that can be set in a consistent way. This allows reuse of parameters between commands, thus reducing manifest size.</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>
          <table align="center">
            <thead>
              <tr>
                <th align="left">Name</th>
                <th align="left">CDDL Structure</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">Vendor ID</td>
                <td align="left">suit-parameter-vendor-identifier</td>
                <td align="left">
                  <xref target="suit-parameter-vendor-identifier" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Class ID</td>
                <td align="left">suit-parameter-class-identifier</td>
                <td align="left">
                  <xref target="suit-parameter-class-identifier" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Device ID</td>
                <td align="left">suit-parameter-device-identifier</td>
                <td align="left">
                  <xref target="suit-parameter-device-identifier" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Image Digest</td>
                <td align="left">suit-parameter-image-digest</td>
                <td align="left">
                  <xref target="suit-parameter-image-digest" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Image Size</td>
                <td align="left">suit-parameter-image-size</td>
                <td align="left">
                  <xref target="suit-parameter-image-size" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Component Slot</td>
                <td align="left">suit-parameter-component-slot</td>
                <td align="left">
                  <xref target="suit-parameter-component-slot" format="default"/></td>
              </tr>
              <tr>
                <td align="left">URI</td>
                <td align="left">suit-parameter-uri</td>
                <td align="left">
                  <xref target="suit-parameter-uri" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Source Component</td>
                <td align="left">suit-parameter-source-component</td>
                <td align="left">
                  <xref target="suit-parameter-source-component" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Run Args</td>
                <td align="left">suit-parameter-run-args</td>
                <td align="left">
                  <xref target="suit-parameter-run-args" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Fetch Arguments</td>
                <td align="left">suit-parameter-fetch-arguments</td>
                <td align="left">
                  <xref target="suit-parameter-fetch-arguments" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Strict Order</td>
                <td align="left">suit-parameter-strict-order</td>
                <td align="left">
                  <xref target="suit-parameter-strict-order" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Soft Failure</td>
                <td align="left">suit-parameter-soft-failure</td>
                <td align="left">
                  <xref target="suit-parameter-soft-failure" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Custom</td>
                <td align="left">suit-parameter-custom</td>
                <td align="left">
                  <xref target="suit-parameter-custom" format="default"/></td>
              </tr>
            </tbody>
          </table>
          <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" numbered="true" toc="default">
            <name>CBOR PEN UUID Namespace Identifier</name>
            <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>
            <artwork name="" type="" align="left" alt=""><![CDATA[
D8 6F                # tag(111)
   45                # bytes(5)
# Absolute OID encoding of IANA Private Enterprise Number:
#    1.3. 6. 1. 4. 1
      2B 06 01 04 01 # X.690 Clause 8.19
]]></artwork>
            <t>Computing a type 5 UUID from these produces:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
NAMESPACE_CBOR_PEN = UUID5(NAMESPACE_OID, h'D86F452B06010401')
NAMESPACE_CBOR_PEN = 47fbdabb-f2e4-55f0-bb39-3620c2f6df4e
]]></artwork>
          </section>
          <section anchor="uuid-identifiers" numbered="true" toc="default">
            <name>Constructing UUIDs</name>
            <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" format="default"/> 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" format="default"/>).</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>
            <ol spacing="normal" type="1"><li>Hardware model/revision</li>
              <li>OS</li>
              <li>WiFi module model/revision</li>
              <li>Application</li>
            </ol>
            <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" format="default"/>. 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>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Vendor ID = UUID5(DNS_PREFIX, vendor domain name)
]]></artwork>
            <t>If the Vendor ID is a UUID, the RECOMMENDED method to create a Class ID is:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Class ID = UUID5(Vendor ID, Class-Specific-Information)
]]></artwork>
            <t>If the Vendor ID is a CBOR PEN (see <xref target="suit-parameter-vendor-identifier" format="default"/>), the RECOMMENDED method to create a Class ID is:</t>
            <artwork name="" type="" align="left" alt=""><![CDATA[
Class ID = UUID5(
    UUID5(NAMESPACE_CBOR_PEN, CBOR_PEN),
    Class-Specific-Information)
]]></artwork>
            <t>Class-specific-information is composed of a variety of data, for example:</t>
            <ul spacing="normal">
              <li>Model number.</li>
              <li>Hardware revision.</li>
              <li>Bootloader version (for immutable bootloaders).</li>
            </ul>
          </section>
          <section anchor="suit-parameter-vendor-identifier" numbered="true" toc="default">
            <name>suit-parameter-vendor-identifier</name>
            <t>suit-parameter-vendor-identifier may be presented in one of two ways:</t>
            <ul spacing="normal">
              <li>A Private Enterprise Number</li>
              <li>A byte string containing a UUID (<xref target="RFC4122" format="default"/>)</li>
            </ul>
            <t>Private Enterprise Numbers are encoded as a relative OID, according to the definition in <xref target="I-D.ietf-cbor-tags-oid" format="default"/>. All PENs are relative to the IANA PEN: 1.3.6.1.4.1.</t>
          </section>
          <section anchor="suit-parameter-class-identifier" numbered="true" toc="default">
            <name>suit-parameter-class-identifier</name>
            <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" format="default"/></t>
          </section>
          <section anchor="suit-parameter-device-identifier" numbered="true" toc="default">
            <name>suit-parameter-device-identifier</name>
            <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" format="default"/></t>
          </section>
          <section anchor="suit-parameter-image-digest" numbered="true" toc="default">
            <name>suit-parameter-image-digest</name>
            <t>A fingerprint computed over the component itself, encoded in the SUIT_Digest <xref target="SUIT_Digest" format="default"/> structure. The SUIT_Digest is wrapped in a bstr, as required in <xref target="secparameters" format="default"/>.</t>
          </section>
          <section anchor="suit-parameter-image-size" numbered="true" toc="default">
            <name>suit-parameter-image-size</name>
            <t>The size of the firmware image in bytes. This size is encoded as a positive integer.</t>
          </section>
          <section anchor="suit-parameter-component-slot" numbered="true" toc="default">
            <name>suit-parameter-component-slot</name>
            <t>This parameter sets the slot index of a component. Some components support multiple possible Slots (offsets into a storage area). This parameter describes the intended Slot to use, identified by its index into the component's storage area. This slot MUST be encoded as a positive integer.</t>
          </section>
          <section anchor="suit-parameter-uri" numbered="true" toc="default">
            <name>suit-parameter-uri</name>
            <t>A URI Reference (<xref target="RFC3986" format="default"/>) 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" numbered="true" toc="default">
            <name>suit-parameter-source-component</name>
            <t>This parameter sets the source component to be used with either suit-directive-copy (<xref target="suit-directive-copy" format="default"/>) or with suit-directive-swap (<xref target="suit-directive-swap" format="default"/>). 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" numbered="true" toc="default">
            <name>suit-parameter-run-args</name>
            <t>This parameter contains an encoded set of arguments for suit-directive-run (<xref target="suit-directive-run" format="default"/>). The arguments MUST be provided as an implementation-defined bstr.</t>
          </section>
          <section anchor="suit-parameter-fetch-arguments" numbered="true" toc="default">
            <name>suit-parameter-fetch-arguments</name>
            <t>An implementation-defined set of arguments to suit-directive-fetch (<xref target="suit-directive-fetch" format="default"/>). Arguments are encoded in a bstr.</t>
          </section>
          <section anchor="suit-parameter-strict-order" numbered="true" toc="default">
            <name>suit-parameter-strict-order</name>
            <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. 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" format="default"/> for behavioral description of Strict Order.</t>
          </section>
          <section anchor="suit-parameter-soft-failure" numbered="true" toc="default">
            <name>suit-parameter-soft-failure</name>
            <t>When executing a command sequence inside suit-directive-try-each (<xref target="suit-directive-try-each" format="default"/>) or suit-directive-run-sequence (<xref target="suit-directive-run-sequence" format="default"/>) 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" numbered="true" toc="default">
            <name>suit-parameter-custom</name>
            <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" numbered="true" toc="default">
          <name>SUIT_Condition</name>
          <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" format="default"/>. Conditions include:</t>
          <table align="center">
            <thead>
              <tr>
                <th align="left">Name</th>
                <th align="left">CDDL Structure</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">Vendor Identifier</td>
                <td align="left">suit-condition-vendor-identifier</td>
                <td align="left">
                  <xref target="identifier-conditions" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Class Identifier</td>
                <td align="left">suit-condition-class-identifier</td>
                <td align="left">
                  <xref target="identifier-conditions" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Device Identifier</td>
                <td align="left">suit-condition-device-identifier</td>
                <td align="left">
                  <xref target="identifier-conditions" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Image Match</td>
                <td align="left">suit-condition-image-match</td>
                <td align="left">
                  <xref target="suit-condition-image-match" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Component Slot</td>
                <td align="left">suit-condition-component-slot</td>
                <td align="left">
                  <xref target="suit-condition-component-slot" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Abort</td>
                <td align="left">suit-condition-abort</td>
                <td align="left">
                  <xref target="suit-condition-abort" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Custom Condition</td>
                <td align="left">suit-condition-custom</td>
                <td align="left">
                  <xref target="SUIT_Condition_Custom" format="default"/></td>
              </tr>
            </tbody>
          </table>
          <t>The abstract description of these conditions is defined in <xref target="command-behavior" format="default"/>.</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" format="default"/>) 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" format="default"/> for more details.</t>
          <section anchor="identifier-conditions" numbered="true" toc="default">
            <name>suit-condition-vendor-identifier, suit-condition-class-identifier, and suit-condition-device-identifier</name>
            <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" format="default"/> 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" numbered="true" toc="default">
            <name>suit-condition-image-match</name>
            <t>Verify that the current component matches the suit-parameter-image-digest (<xref target="suit-parameter-image-digest" format="default"/>) 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-component-slot" numbered="true" toc="default">
            <name>suit-condition-component-slot</name>
            <t>Verify that the slot index of the current component matches the slot index set in suit-parameter-component-slot (<xref target="suit-parameter-component-slot" format="default"/>). This condition allows a manifest to select between several images to match a target slot.</t>
          </section>
          <section anchor="suit-condition-abort" numbered="true" toc="default">
            <name>suit-condition-abort</name>
            <t>Unconditionally fail. This operation is typically used in conjunction with suit-directive-try-each (<xref target="suit-directive-try-each" format="default"/>).</t>
          </section>
          <section anchor="SUIT_Condition_Custom" numbered="true" toc="default">
            <name>suit-condition-custom</name>
            <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" format="default"/>. SUIT_Condition_Custom is OPTIONAL to implement.</t>
          </section>
        </section>
        <section anchor="suitdirective" numbered="true" toc="default">
          <name>SUIT_Directive</name>
          <t>Directives are used to define the behavior of the recipient. Directives include:</t>
          <table align="center">
            <thead>
              <tr>
                <th align="left">Name</th>
                <th align="left">CDDL Structure</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">Set Component Index</td>
                <td align="left">suit-directive-set-component-index</td>
                <td align="left">
                  <xref target="suit-directive-set-component-index" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Try Each</td>
                <td align="left">suit-directive-try-each</td>
                <td align="left">
                  <xref target="suit-directive-try-each" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Override Parameters</td>
                <td align="left">suit-directive-override-parameters</td>
                <td align="left">
                  <xref target="suit-directive-override-parameters" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Fetch</td>
                <td align="left">suit-directive-fetch</td>
                <td align="left">
                  <xref target="suit-directive-fetch" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Copy</td>
                <td align="left">suit-directive-copy</td>
                <td align="left">
                  <xref target="suit-directive-copy" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Run</td>
                <td align="left">suit-directive-run</td>
                <td align="left">
                  <xref target="suit-directive-run" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Run Sequence</td>
                <td align="left">suit-directive-run-sequence</td>
                <td align="left">
                  <xref target="suit-directive-run-sequence" format="default"/></td>
              </tr>
              <tr>
                <td align="left">Swap</td>
                <td align="left">suit-directive-swap</td>
                <td align="left">
                  <xref target="suit-directive-swap" format="default"/></td>
              </tr>
            </tbody>
          </table>
          <t>The abstract description of these commands is defined in <xref target="command-behavior" format="default"/>.</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" numbered="true" toc="default">
            <name>suit-directive-set-component-index</name>
            <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>
            <ol spacing="normal" type="1"><li>An unsigned integer (REQUIRED to implement in parser)</li>
              <li>A boolean (REQUIRED to implement in parser ONLY IF 2 or more components supported)</li>
              <li>An array of unsigned integers (REQUIRED to implement in parser ONLY IF 3 or more components supported)</li>
            </ol>
            <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.
See <xref target="index-true" format="default"/> for more details.</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-try-each" numbered="true" toc="default">
            <name>suit-directive-try-each</name>
            <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" format="default"/>) 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-override-parameters" numbered="true" toc="default">
            <name>suit-directive-override-parameters</name>
            <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" format="default"/>.</t>
            <t>suit-directive-override-parameters does not specify a reporting policy.</t>
          </section>
          <section anchor="suit-directive-fetch" numbered="true" toc="default">
            <name>suit-directive-fetch</name>
            <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 payloads. suit-directive-fetch retrieves each component listed in component-index. If component-index is True, instead of an integer, then all current manifest components are fetched. If component-index is an array, then all listed components are fetched.</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>
          </section>
          <section anchor="suit-directive-copy" numbered="true" toc="default">
            <name>suit-directive-copy</name>
            <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" format="default"/> 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.</t>
            <t>suit-directive-copy reads its source from suit-parameter-source-component (<xref target="suit-parameter-source-component" format="default"/>).</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" numbered="true" toc="default">
            <name>suit-directive-run</name>
            <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" format="default"/>) 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-run-sequence" numbered="true" toc="default">
            <name>suit-directive-run-sequence</name>
            <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" format="default"/>) 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" numbered="true" toc="default">
            <name>suit-directive-swap</name>
            <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" numbered="true" toc="default">
          <name>Integrity Check Values</name>
          <t>When the 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" format="default"/>.</t>
        </section>
      </section>
      <section anchor="severable-fields" numbered="true" toc="default">
        <name>Severable Elements</name>
        <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" numbered="true" toc="default">
      <name>Access Control Lists</name>
      <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" numbered="true" toc="default">
      <name>SUIT Digest Container</name>
      <t>The SUIT digest is a CBOR List containing two elements: an algorithm identifier and a bstr containing the bytes of the digest. Some forms of digest may require additional parameters. These can be added following the digest.</t>
      <t>The values of the algorithm identifier are defined by <xref target="I-D.ietf-cose-hash-algs" format="default"/>. The following algorithms MUST be implemented by all Manifest Processors:</t>
      <ul spacing="normal">
        <li>SHA-256 (-16)</li>
      </ul>
      <t>The following algorithms MAY be implemented in a Manifest Processor:</t>
      <ul spacing="normal">
        <li>SHAKE128 (-18)</li>
        <li>SHA-384 (-43)</li>
        <li>SHA-512 (-44)</li>
        <li>SHAKE256 (-45)</li>
      </ul>
    </section>
    <section anchor="iana" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <t>IANA is requested to:</t>
      <ul spacing="normal">
        <li>allocate CBOR tag 107 in the CBOR Tags registry for the SUIT Envelope.</li>
        <li>allocate CBOR tag 1070 in the CBOR Tags registry for the SUIT Manifest.</li>
        <li>allocate media type application/suit-envelope in the Media Types registry.</li>
        <li>setup several registries as described below.</li>
      </ul>
      <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" numbered="true" toc="default">
        <name>SUIT Commands</name>
        <table align="center">
          <thead>
            <tr>
              <th align="left">Label</th>
              <th align="left">Name</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">1</td>
              <td align="left">Vendor Identifier</td>
              <td align="left">
                <xref target="identifier-conditions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">2</td>
              <td align="left">Class Identifier</td>
              <td align="left">
                <xref target="identifier-conditions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">3</td>
              <td align="left">Image Match</td>
              <td align="left">
                <xref target="suit-condition-image-match" format="default"/></td>
            </tr>
            <tr>
              <td align="left">4</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">5</td>
              <td align="left">Component Slot</td>
              <td align="left">
                <xref target="suit-condition-component-slot" format="default"/></td>
            </tr>
            <tr>
              <td align="left">12</td>
              <td align="left">Set Component Index</td>
              <td align="left">
                <xref target="suit-directive-set-component-index" format="default"/></td>
            </tr>
            <tr>
              <td align="left">13</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">14</td>
              <td align="left">Abort</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">15</td>
              <td align="left">Try Each</td>
              <td align="left">
                <xref target="suit-directive-try-each" format="default"/></td>
            </tr>
            <tr>
              <td align="left">16</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">17</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">18</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">19</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">20</td>
              <td align="left">Override Parameters</td>
              <td align="left">
                <xref target="suit-directive-override-parameters" format="default"/></td>
            </tr>
            <tr>
              <td align="left">21</td>
              <td align="left">Fetch</td>
              <td align="left">
                <xref target="suit-directive-fetch" format="default"/></td>
            </tr>
            <tr>
              <td align="left">22</td>
              <td align="left">Copy</td>
              <td align="left">
                <xref target="suit-directive-copy" format="default"/></td>
            </tr>
            <tr>
              <td align="left">23</td>
              <td align="left">Run</td>
              <td align="left">
                <xref target="suit-directive-run" format="default"/></td>
            </tr>
            <tr>
              <td align="left">24</td>
              <td align="left">Device Identifier</td>
              <td align="left">
                <xref target="identifier-conditions" format="default"/></td>
            </tr>
            <tr>
              <td align="left">25</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">26</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">27</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">28</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">29</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">30</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">31</td>
              <td align="left">Swap</td>
              <td align="left">
                <xref target="suit-directive-swap" format="default"/></td>
            </tr>
            <tr>
              <td align="left">32</td>
              <td align="left">Run Sequence</td>
              <td align="left">
                <xref target="suit-directive-run-sequence" format="default"/></td>
            </tr>
            <tr>
              <td align="left">33</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">nint</td>
              <td align="left">Custom Condition</td>
              <td align="left">
                <xref target="SUIT_Condition_Custom" format="default"/></td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="suit-parameters" numbered="true" toc="default">
        <name>SUIT Parameters</name>
        <table align="center">
          <thead>
            <tr>
              <th align="left">Label</th>
              <th align="left">Name</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">1</td>
              <td align="left">Vendor ID</td>
              <td align="left">
                <xref target="suit-parameter-vendor-identifier" format="default"/></td>
            </tr>
            <tr>
              <td align="left">2</td>
              <td align="left">Class ID</td>
              <td align="left">
                <xref target="suit-parameter-class-identifier" format="default"/></td>
            </tr>
            <tr>
              <td align="left">3</td>
              <td align="left">Image Digest</td>
              <td align="left">
                <xref target="suit-parameter-image-digest" format="default"/></td>
            </tr>
            <tr>
              <td align="left">4</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">5</td>
              <td align="left">Component Slot</td>
              <td align="left">
                <xref target="suit-parameter-component-slot" format="default"/></td>
            </tr>
            <tr>
              <td align="left">12</td>
              <td align="left">Strict Order</td>
              <td align="left">
                <xref target="suit-parameter-strict-order" format="default"/></td>
            </tr>
            <tr>
              <td align="left">13</td>
              <td align="left">Soft Failure</td>
              <td align="left">
                <xref target="suit-parameter-soft-failure" format="default"/></td>
            </tr>
            <tr>
              <td align="left">14</td>
              <td align="left">Image Size</td>
              <td align="left">
                <xref target="suit-parameter-image-size" format="default"/></td>
            </tr>
            <tr>
              <td align="left">18</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">19</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">20</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">21</td>
              <td align="left">URI</td>
              <td align="left">
                <xref target="suit-parameter-uri" format="default"/></td>
            </tr>
            <tr>
              <td align="left">22</td>
              <td align="left">Source Component</td>
              <td align="left">
                <xref target="suit-parameter-source-component" format="default"/></td>
            </tr>
            <tr>
              <td align="left">23</td>
              <td align="left">Run Args</td>
              <td align="left">
                <xref target="suit-parameter-run-args" format="default"/></td>
            </tr>
            <tr>
              <td align="left">24</td>
              <td align="left">Device ID</td>
              <td align="left">
                <xref target="suit-parameter-device-identifier" format="default"/></td>
            </tr>
            <tr>
              <td align="left">26</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">27</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">28</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">29</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">30</td>
              <td align="left">Reserved</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">nint</td>
              <td align="left">Custom</td>
              <td align="left">
                <xref target="suit-parameter-custom" format="default"/></td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="suit-text-values" numbered="true" toc="default">
        <name>SUIT Text Values</name>
        <table align="center">
          <thead>
            <tr>
              <th align="left">Label</th>
              <th align="left">Name</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">1</td>
              <td align="left">Manifest Description</td>
              <td align="left">
                <xref target="manifest-digest-text" format="default"/></td>
            </tr>
            <tr>
              <td align="left">2</td>
              <td align="left">Update Description</td>
              <td align="left">
                <xref target="manifest-digest-text" format="default"/></td>
            </tr>
            <tr>
              <td align="left">3</td>
              <td align="left">Manifest JSON Source</td>
              <td align="left">
                <xref target="manifest-digest-text" format="default"/></td>
            </tr>
            <tr>
              <td align="left">4</td>
              <td align="left">Manifest YAML Source</td>
              <td align="left">
                <xref target="manifest-digest-text" format="default"/></td>
            </tr>
            <tr>
              <td align="left">nint</td>
              <td align="left">Custom</td>
              <td align="left">
                <xref target="manifest-digest-text" format="default"/></td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="suit-component-text-values" numbered="true" toc="default">
        <name> SUIT Component Text Values</name>
        <table align="center">
          <thead>
            <tr>
              <th align="left">Label</th>
              <th align="left">Name</th>
              <th align="left">Reference</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">1</td>
              <td align="left">Vendor Name</td>
              <td align="left">
                <xref target="manifest-digest-text" format="default"/></td>
            </tr>
            <tr>
              <td align="left">2</td>
              <td align="left">Model Name</td>
              <td align="left">
                <xref target="manifest-digest-text" format="default"/></td>
            </tr>
            <tr>
              <td align="left">3</td>
              <td align="left">Vendor Domain</td>
              <td align="left">
                <xref target="manifest-digest-text" format="default"/></td>
            </tr>
            <tr>
              <td align="left">4</td>
              <td align="left">Model Info</td>
              <td align="left">
                <xref target="manifest-digest-text" format="default"/></td>
            </tr>
            <tr>
              <td align="left">5</td>
              <td align="left">Component Description</td>
              <td align="left">
                <xref target="manifest-digest-text" format="default"/></td>
            </tr>
            <tr>
              <td align="left">6</td>
              <td align="left">Component Version</td>
              <td align="left">
                <xref target="manifest-digest-text" format="default"/></td>
            </tr>
            <tr>
              <td align="left">7</td>
              <td align="left">Component Version Required</td>
              <td align="left">
                <xref target="manifest-digest-text" format="default"/></td>
            </tr>
            <tr>
              <td align="left">nint</td>
              <td align="left">Custom</td>
              <td align="left">
                <xref target="manifest-digest-text" format="default"/></td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
    <section anchor="security-considerations" numbered="true" toc="default">
      <name>Security Considerations</name>
      <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="RFC9019" format="default"/> and in the information model <xref target="I-D.ietf-suit-information-model" format="default"/> documents.</t>
    </section>
    <section anchor="acknowledgements" numbered="true" toc="default">
      <name>Acknowledgements</name>
      <t>We would like to thank the following persons for their support in designing this mechanism:</t>
      <ul spacing="normal">
        <li>Milosch Meriac</li>
        <li>Geraint Luff</li>
        <li>Dan Ros</li>
        <li>John-Paul Stanford</li>
        <li>Hugo Vincent</li>
        <li>Carsten Bormann</li>
        <li>Oeyvind Roenningstad</li>
        <li>Frank Audun Kvamtroe</li>
        <li>Krzysztof Chru&amp;#347;ci&amp;#324;ski</li>
        <li>Andrzej Puzdrowski</li>
        <li>Michael Richardson</li>
        <li>David Brown</li>
        <li>Emmanuel Baccelli</li>
      </ul>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC4122" target="https://www.rfc-editor.org/info/rfc4122">
          <front>
            <title>A Universally Unique IDentifier (UUID) URN Namespace</title>
            <author fullname="P. Leach" initials="P." surname="Leach">
              <organization/>
            </author>
            <author fullname="M. Mealling" initials="M." surname="Mealling">
              <organization/>
            </author>
            <author fullname="R. Salz" initials="R." surname="Salz">
              <organization/>
            </author>
            <date month="July" year="2005"/>
            <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 fullname="J. Schaad" initials="J." surname="Schaad">
              <organization/>
            </author>
            <date month="July" year="2017"/>
            <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 fullname="T. Berners-Lee" initials="T." surname="Berners-Lee">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <author fullname="L. Masinter" initials="L." surname="Masinter">
              <organization/>
            </author>
            <date month="January" year="2005"/>
            <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="RFC9019" target="https://www.rfc-editor.org/info/rfc9019">
          <front>
            <title>A Firmware Update Architecture for Internet of Things</title>
            <author fullname="B. Moran" initials="B." surname="Moran">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <author fullname="D. Brown" initials="D." surname="Brown">
              <organization/>
            </author>
            <author fullname="M. Meriac" initials="M." surname="Meriac">
              <organization/>
            </author>
            <date month="April" year="2021"/>
            <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 and adding new functionality.</t>
              <t>In addition to the definition of terminology and an architecture, this document provides the motivation for the standardization of a manifest format as a transport-agnostic means for describing and protecting firmware updates.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9019"/>
          <seriesInfo name="DOI" value="10.17487/RFC9019"/>
        </reference>
        <reference anchor="I-D.ietf-suit-information-model" target="https://www.ietf.org/archive/id/draft-ietf-suit-information-model-13.txt">
          <front>
            <title>A Manifest Information Model for Firmware Updates in IoT Devices</title>
            <author fullname="Brendan Moran">
              <organization>Arm Limited</organization>
            </author>
            <author fullname="Hannes Tschofenig">
              <organization>Arm Limited</organization>
            </author>
            <author fullname="Henk Birkholz">
              <organization>Fraunhofer SIT</organization>
            </author>
            <date day="8" month="July" year="2021"/>
            <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-13"/>
        </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 fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <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 fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <date month="May" year="2017"/>
            <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>
        <name>Informative References</name>
        <reference anchor="I-D.ietf-cose-hash-algs" target="https://www.ietf.org/archive/id/draft-ietf-cose-hash-algs-09.txt">
          <front>
            <title>CBOR Object Signing and Encryption (COSE): Hash Algorithms</title>
            <author fullname="Jim Schaad">
              <organization>August Cellars</organization>
            </author>
            <date day="14" month="September" year="2020"/>
            <abstract>
              <t>   The CBOR Object Signing and Encryption (COSE) syntax
   [I-D.ietf-cose-rfc8152bis-struct] does not define any direct methods
   for using hash algorithms.  There are, however, circumstances where
   hash algorithms are used, such as indirect signatures where the hash
   of one or more contents are signed, and X.509 certificate or other
   object identification by the use of a fingerprint.  This document
   defines a set of hash algorithms that are identified by COSE
   Algorithm Identifiers.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-cose-hash-algs-09"/>
        </reference>
        <reference anchor="I-D.ietf-teep-architecture" target="https://www.ietf.org/archive/id/draft-ietf-teep-architecture-15.txt">
          <front>
            <title>Trusted Execution Environment Provisioning (TEEP) Architecture</title>
            <author fullname="Mingliang Pei">
              <organization>Broadcom</organization>
            </author>
            <author fullname="Hannes Tschofenig">
              <organization>Arm Limited</organization>
            </author>
            <author fullname="Dave Thaler">
              <organization>Microsoft</organization>
            </author>
            <author fullname="David Wheeler">
              <organization>Amazon</organization>
            </author>
            <date day="12" month="July" year="2021"/>
            <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-15"/>
        </reference>
        <reference anchor="I-D.ietf-cbor-tags-oid" target="https://www.ietf.org/archive/id/draft-ietf-cbor-tags-oid-08.txt">
          <front>
            <title>Concise Binary Object Representation (CBOR) Tags for Object Identifiers</title>
            <author fullname="Carsten Bormann">
              <organization>Universität Bremen TZI</organization>
            </author>
            <date day="21" month="May" year="2021"/>
            <abstract>
              <t>The Concise Binary Object Representation (CBOR), defined in RFC 8949, 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.

 This document defines CBOR tags for object identifiers (OIDs) and is 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-08"/>
        </reference>
        <reference anchor="I-D.ietf-suit-firmware-encryption" target="https://www.ietf.org/archive/id/draft-ietf-suit-firmware-encryption-02.txt">
          <front>
            <title>Firmware Encryption with SUIT Manifests</title>
            <author fullname="Hannes Tschofenig">
              <organization>Arm Limited</organization>
            </author>
            <author fullname="Russ Housley">
              <organization>Vigil Security, LLC</organization>
            </author>
            <author fullname="Brendan Moran">
              <organization>Arm Limited</organization>
            </author>
            <date day="25" month="October" year="2021"/>
            <abstract>
              <t>   This document specifies a firmware update mechanism where the
   firmware image is encrypted.  Firmware encryption uses the IETF SUIT
   manifest with key establishment provided by the hybrid public-key
   encryption (HPKE) scheme and the AES Key Wrap (AES-KW) with a pre-
   shared key-encryption key.  Encryption of the firmware image is
   encrypted using AES-GCM or AES-CCM.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-suit-firmware-encryption-02"/>
        </reference>
        <reference anchor="RFC7228" target="https://www.rfc-editor.org/info/rfc7228">
          <front>
            <title>Terminology for Constrained-Node Networks</title>
            <author fullname="C. Bormann" initials="C." surname="Bormann">
              <organization/>
            </author>
            <author fullname="M. Ersue" initials="M." surname="Ersue">
              <organization/>
            </author>
            <author fullname="A. Keranen" initials="A." surname="Keranen">
              <organization/>
            </author>
            <date month="May" year="2014"/>
            <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="YAML" target="https://yaml.org/">
          <front>
            <title>YAML Ain't Markup Language</title>
            <author>
              <organization/>
            </author>
            <date year="2020"/>
          </front>
        </reference>
      </references>
    </references>
    <section anchor="full-cddl" numbered="true" toc="default">
      <name>A. Full CDDL</name>
      <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>
      <t>To be valid, the following CDDL MUST have the COSE CDDL appended to it. The COSE CDDL can be obtained by following the directions in <xref target="RFC8152" format="default"/>, section 1.4.</t>
      <sourcecode type="CDDL"><![CDATA[
SUIT_Envelope_Tagged = #6.107(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_Envelope_Extensions,
  * (int => bstr)
}

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

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

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

SUIT_Severable_Manifest_Members = (
  ? 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-payload-key = tstr

SUIT_Manifest_Tagged = #6.1070(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_Members_Choice,
    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,
  * $$unseverable-manifest-member-extensions,
)

SUIT_Severable_Members_Choice = (
  ? suit-payload-fetch => \
    bstr .cbor SUIT_Command_Sequence / SUIT_Digest,
  ? suit-install => bstr .cbor SUIT_Command_Sequence / SUIT_Digest,
  ? suit-text => bstr .cbor SUIT_Command_Sequence / SUIT_Digest,
  * $$severable-manifest-members-choice-extensions
)

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

SUIT_Components           = [ + SUIT_Component_Identifier ]

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

;REQUIRED to implement:
suit-cose-hash-algs /= cose-alg-sha-256

;OPTIONAL to implement:
suit-cose-hash-algs /= cose-alg-shake128
suit-cose-hash-algs /= cose-alg-sha-384
suit-cose-hash-algs /= cose-alg-sha-512
suit-cose-hash-algs /= cose-alg-shake256

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-run-sequence,
    bstr .cbor SUIT_Command_Sequence)
SUIT_Common_Commands //= (suit-directive-try-each,
    SUIT_Directive_Try_Each_Argument)
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-component-slot,    SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-abort,             SUIT_Rep_Policy)

SUIT_Directive //= (suit-directive-set-component-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-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_Try_Each_Argument = [
    2* bstr .cbor SUIT_Command_Sequence,
    ?nil
]

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_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-component-slot => uint)

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-custom => int/bool/tstr/bstr)

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

RFC4122_UUID = bstr .size 16

SUIT_Text_Map = {
    SUIT_Text_Keys,
    * SUIT_Component_Identifier => {
        SUIT_Text_Component_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-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-authentication-wrapper = 2
suit-manifest = 3

;REQUIRED to implement:
cose-alg-sha-256 = -16

;OPTIONAL to implement:
cose-alg-shake128 = -18
cose-alg-sha-384 = -43
cose-alg-sha-512 = -44
cose-alg-shake256 = -45

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

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

suit-command-custom = nint

suit-condition-vendor-identifier = 1
suit-condition-class-identifier  = 2
suit-condition-image-match       = 3
suit-condition-component-slot    = 5

suit-condition-abort                    = 14
suit-condition-device-identifier        = 24

suit-directive-set-component-index      = 12
suit-directive-try-each                 = 15
suit-directive-override-parameters      = 20
suit-directive-fetch                    = 21
suit-directive-copy                     = 22
suit-directive-run                      = 23

suit-directive-swap                     = 31
suit-directive-run-sequence             = 32

suit-parameter-vendor-identifier = 1
suit-parameter-class-identifier  = 2
suit-parameter-image-digest      = 3
suit-parameter-component-slot    = 5

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

suit-parameter-uri               = 21
suit-parameter-source-component  = 22
suit-parameter-run-args          = 23

suit-parameter-device-identifier = 24

suit-parameter-custom = nint

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
]]></sourcecode>
    </section>
    <section anchor="examples" numbered="true" toc="default">
      <name>B. Examples</name>
      <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>
      <artwork name="" type="" align="left" alt=""><![CDATA[
-----BEGIN PRIVATE KEY-----
MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgApZYjZCUGLM50VBC
CjYStX+09jGmnyJPrpDLTz/hiXOhRANCAASEloEarguqq9JhVxie7NomvqqL8Rtv
P+bitWWchdvArTsfKktsCYExwKNtrNHXi9OB3N+wnAUtszmR23M4tKiW
-----END PRIVATE KEY-----
]]></artwork>
      <t>The corresponding public key can be used to verify these examples:</t>
      <artwork name="" type="" align="left" alt=""><![CDATA[
-----BEGIN PUBLIC KEY-----
MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEhJaBGq4LqqvSYVcYnuzaJr6qi/Eb
bz/m4rVlnIXbwK07HypLbAmBMcCjbazR14vTgdzfsJwFLbM5kdtzOLSolg==
-----END PUBLIC KEY-----
]]></artwork>
      <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>
      <table align="center">
        <thead>
          <tr>
            <th align="left">Policy</th>
            <th align="left">Label</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">suit-send-record-on-success</td>
            <td align="left">Rec-Pass</td>
          </tr>
          <tr>
            <td align="left">suit-send-record-on-failure</td>
            <td align="left">Rec-Fail</td>
          </tr>
          <tr>
            <td align="left">suit-send-sysinfo-success</td>
            <td align="left">Sys-Pass</td>
          </tr>
          <tr>
            <td align="left">suit-send-sysinfo-failure</td>
            <td align="left">Sys-Fail</td>
          </tr>
        </tbody>
      </table>
      <table align="center">
        <thead>
          <tr>
            <th align="left">Command</th>
            <th align="left">Sys-Fail</th>
            <th align="left">Sys-Pass</th>
            <th align="left">Rec-Fail</th>
            <th align="left">Rec-Pass</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">suit-condition-vendor-identifier</td>
            <td align="left">1</td>
            <td align="left">1</td>
            <td align="left">1</td>
            <td align="left">1</td>
          </tr>
          <tr>
            <td align="left">suit-condition-class-identifier</td>
            <td align="left">1</td>
            <td align="left">1</td>
            <td align="left">1</td>
            <td align="left">1</td>
          </tr>
          <tr>
            <td align="left">suit-condition-image-match</td>
            <td align="left">1</td>
            <td align="left">1</td>
            <td align="left">1</td>
            <td align="left">1</td>
          </tr>
          <tr>
            <td align="left">suit-condition-component-slot</td>
            <td align="left">0</td>
            <td align="left">1</td>
            <td align="left">0</td>
            <td align="left">1</td>
          </tr>
          <tr>
            <td align="left">suit-directive-fetch</td>
            <td align="left">0</td>
            <td align="left">0</td>
            <td align="left">1</td>
            <td align="left">0</td>
          </tr>
          <tr>
            <td align="left">suit-directive-copy</td>
            <td align="left">0</td>
            <td align="left">0</td>
            <td align="left">1</td>
            <td align="left">0</td>
          </tr>
          <tr>
            <td align="left">suit-directive-run</td>
            <td align="left">0</td>
            <td align="left">0</td>
            <td align="left">1</td>
            <td align="left">0</td>
          </tr>
        </tbody>
      </table>
      <section anchor="example-0-secure-boot" numbered="true" toc="default">
        <name>Example 0: Secure Boot</name>
        <t>This example covers the following templates:</t>
        <ul spacing="normal">
          <li>Compatibility Check (<xref target="template-compatibility-check" format="default"/>)</li>
          <li>Secure Boot (<xref target="template-secure-boot" format="default"/>)</li>
        </ul>
        <t>It also serves as the minimum example.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
107({
        / authentication-wrapper / 2:<<[
            digest: <<[
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'a6c4590ac53043a98e8c4106e1e31b305516d7cf0a655eddfac6d45c810e036a'
            ]>>,
            signature: <<18([
                    / protected / <<{
                        / alg / 1:-7 / "ES256" /,
                    }>>,
                    / unprotected / {
                    },
                    / payload / F6 / nil /,
                    / signature / h'd11a2dd9610fb62a707335f58407922570
9f96e8117e7eeed98a2f207d05c8ecfba1755208f6abea977b8a6efe3bc2ca3215e119
3be201467d052b42db6b7287'
                ])>>
            ]
        ]>>,
        / manifest / 3:<<{
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:0,
            / common / 3:<<{
                / components / 2:[
                    [h'00']
                ],
                / common-sequence / 4:<<[
                    / 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:<<[
                            / algorithm-id / -16 / "sha256" /,
                            / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                        ]>>,
                        / image-size / 14:34768,
                    } ,
                    / condition-vendor-identifier / 1,15 ,
                    / condition-class-identifier / 2,15
                ]>>,
            }>>,
            / validate / 10:<<[
                / condition-image-match / 3,15
            ]>>,
            / run / 12:<<[
                / directive-run / 23,2
            ]>>,
        }>>,
    })
]]></artwork>
        <t>Total size of Envelope without COSE authentication object:  161</t>
        <t>Envelope:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
d86ba2025827815824822f5820a6c4590ac53043a98e8c4106e1e31b3055
16d7cf0a655eddfac6d45c810e036a035871a50101020003585fa2028181
41000458568614a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492
af1425695e48bf429b2d51f2ab45035824822f5820001122334455667788
99aabbccddeeff0123456789abcdeffedcba98765432100e1987d0010f02
0f0a4382030f0c43821702
]]></artwork>
        <t>Total size of Envelope with COSE authentication object:  237</t>
        <t>Envelope with COSE authentication object:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
d86ba2025873825824822f5820a6c4590ac53043a98e8c4106e1e31b3055
16d7cf0a655eddfac6d45c810e036a584ad28443a10126a0f65840d11a2d
d9610fb62a707335f584079225709f96e8117e7eeed98a2f207d05c8ecfb
a1755208f6abea977b8a6efe3bc2ca3215e1193be201467d052b42db6b72
87035871a50101020003585fa202818141000458568614a40150fa6b4a53
d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b2d51f2ab45
035824822f582000112233445566778899aabbccddeeff0123456789abcd
effedcba98765432100e1987d0010f020f0a4382030f0c43821702
]]></artwork>
      </section>
      <section anchor="example-1-simultaneous-download-and-installation-of-payload" numbered="true" toc="default">
        <name>Example 1: Simultaneous Download and Installation of Payload</name>
        <t>This example covers the following templates:</t>
        <ul spacing="normal">
          <li>Compatibility Check (<xref target="template-compatibility-check" format="default"/>)</li>
          <li>Firmware Download (<xref target="firmware-download-template" format="default"/>)</li>
        </ul>
        <t>Simultaneous download and installation of payload. No secure boot is present in this example to demonstrate a download-only manifest.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
107({
        / authentication-wrapper / 2:<<[
            digest: <<[
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'60c61d6eb7a1aaeddc49ce8157a55cff0821537eeee77a4ded44155b03045132'
            ]>>,
            signature: <<18([
                    / protected / <<{
                        / alg / 1:-7 / "ES256" /,
                    }>>,
                    / unprotected / {
                    },
                    / payload / F6 / nil /,
                    / signature / h'5249dacaf0ffc8326931b09586eb7e3769
e71a0e6a40ad8153db4980db9b05bd1742ddb46085fa11e62b65a79895c12ac7abe266
8ccc5afdd74466aed7bca389'
                ])>>
            ]
        ]>>,
        / manifest / 3:<<{
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:1,
            / common / 3:<<{
                / components / 2:[
                    [h'00']
                ],
                / common-sequence / 4:<<[
                    / 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:<<[
                            / algorithm-id / -16 / "sha256" /,
                            / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                        ]>>,
                        / image-size / 14:34768,
                    } ,
                    / condition-vendor-identifier / 1,15 ,
                    / condition-class-identifier / 2,15
                ]>>,
            }>>,
            / install / 9:<<[
                / directive-set-parameters / 19,{
                    / uri / 21:'http://example.com/file.bin',
                } ,
                / directive-fetch / 21,2 ,
                / condition-image-match / 3,15
            ]>>,
            / validate / 10:<<[
                / condition-image-match / 3,15
            ]>>,
        }>>,
    })
]]></artwork>
        <t>Total size of Envelope without COSE authentication object:  196</t>
        <t>Envelope:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
d86ba2025827815824822f582060c61d6eb7a1aaeddc49ce8157a55cff08
21537eeee77a4ded44155b03045132035894a50101020103585fa2028181
41000458568614a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492
af1425695e48bf429b2d51f2ab45035824822f5820001122334455667788
99aabbccddeeff0123456789abcdeffedcba98765432100e1987d0010f02
0f0958258613a115781b687474703a2f2f6578616d706c652e636f6d2f66
696c652e62696e1502030f0a4382030f
]]></artwork>
        <t>Total size of Envelope with COSE authentication object:  272</t>
        <t>Envelope with COSE authentication object:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
d86ba2025873825824822f582060c61d6eb7a1aaeddc49ce8157a55cff08
21537eeee77a4ded44155b03045132584ad28443a10126a0f658405249da
caf0ffc8326931b09586eb7e3769e71a0e6a40ad8153db4980db9b05bd17
42ddb46085fa11e62b65a79895c12ac7abe2668ccc5afdd74466aed7bca3
89035894a50101020103585fa202818141000458568614a40150fa6b4a53
d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b2d51f2ab45
035824822f582000112233445566778899aabbccddeeff0123456789abcd
effedcba98765432100e1987d0010f020f0958258613a115781b68747470
3a2f2f6578616d706c652e636f6d2f66696c652e62696e1502030f0a4382
030f
]]></artwork>
      </section>
      <section anchor="example-2-simultaneous-download-installation-secure-boot-severed-fields" numbered="true" toc="default">
        <name>Example 2: Simultaneous Download, Installation, Secure Boot, Severed Fields</name>
        <t>This example covers the following templates:</t>
        <ul spacing="normal">
          <li>Compatibility Check (<xref target="template-compatibility-check" format="default"/>)</li>
          <li>Secure Boot (<xref target="template-secure-boot" format="default"/>)</li>
          <li>Firmware Download (<xref target="firmware-download-template" format="default"/>)</li>
        </ul>
        <t>This example also demonstrates severable elements (<xref target="ovr-severable" format="default"/>), and text (<xref target="manifest-digest-text" format="default"/>).</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
107({
        / authentication-wrapper / 2:<<[
            digest: <<[
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'e45dcdb2074b951f1c88b866469939c2a83ed433a31fc7dfcb3f63955bd943ec'
            ]>>,
            signature: <<18([
                    / protected / <<{
                        / alg / 1:-7 / "ES256" /,
                    }>>,
                    / unprotected / {
                    },
                    / payload / F6 / nil /,
                    / signature / h'b4fd3a6a18fe1062573488cf24ac96ef9f
30ac746696e50be96533b356b8156e4332587fe6f4e8743ae525d72005fddd4c1213d5
5a8061b2ce67b83640f4777c'
                ])>>
            ]
        ]>>,
        / manifest / 3:<<{
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:2,
            / common / 3:<<{
                / components / 2:[
                    [h'00']
                ],
                / common-sequence / 4:<<[
                    / 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:<<[
                            / algorithm-id / -16 / "sha256" /,
                            / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                        ]>>,
                        / image-size / 14:34768,
                    } ,
                    / condition-vendor-identifier / 1,15 ,
                    / condition-class-identifier / 2,15
                ]>>,
            }>>,
            / install / 9:[
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'3ee96dc79641970ae46b929ccf0b72ba9536dd846020dbdc9f949d84ea0e18d2'
            ],
            / validate / 10:<<[
                / condition-image-match / 3,15
            ]>>,
            / run / 12:<<[
                / directive-run / 23,2
            ]>>,
            / text / 13:[
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'2bfc4d0cc6680be7dd9f5ca30aa2bb5d1998145de33d54101b80e2ca49faf918'
            ],
        }>>,
        / install / 9:<<[
            / 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:<<{
            [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>
        <t>Total size of the Envelope without COSE authentication object or Severable Elements:  235</t>
        <t>Envelope:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
d86ba2025827815824822f5820e45dcdb2074b951f1c88b866469939c2a8
3ed433a31fc7dfcb3f63955bd943ec0358bba70101020203585fa2028181
41000458568614a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492
af1425695e48bf429b2d51f2ab45035824822f5820001122334455667788
99aabbccddeeff0123456789abcdeffedcba98765432100e1987d0010f02
0f09822f58203ee96dc79641970ae46b929ccf0b72ba9536dd846020dbdc
9f949d84ea0e18d20a4382030f0c438217020d822f58202bfc4d0cc6680b
e7dd9f5ca30aa2bb5d1998145de33d54101b80e2ca49faf918
]]></artwork>
        <t>Total size of the Envelope with COSE authentication object but without Severable Elements:  311</t>
        <t>Envelope:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
d86ba2025873825824822f5820e45dcdb2074b951f1c88b866469939c2a8
3ed433a31fc7dfcb3f63955bd943ec584ad28443a10126a0f65840b4fd3a
6a18fe1062573488cf24ac96ef9f30ac746696e50be96533b356b8156e43
32587fe6f4e8743ae525d72005fddd4c1213d55a8061b2ce67b83640f477
7c0358bba70101020203585fa202818141000458568614a40150fa6b4a53
d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b2d51f2ab45
035824822f582000112233445566778899aabbccddeeff0123456789abcd
effedcba98765432100e1987d0010f020f09822f58203ee96dc79641970a
e46b929ccf0b72ba9536dd846020dbdc9f949d84ea0e18d20a4382030f0c
438217020d822f58202bfc4d0cc6680be7dd9f5ca30aa2bb5d1998145de3
3d54101b80e2ca49faf918
]]></artwork>
        <t>Total size of Envelope with COSE authentication object and Severable Elements:  894</t>
        <t>Envelope with COSE authentication object:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
d86ba4025873825824822f5820e45dcdb2074b951f1c88b866469939c2a8
3ed433a31fc7dfcb3f63955bd943ec584ad28443a10126a0f65840b4fd3a
6a18fe1062573488cf24ac96ef9f30ac746696e50be96533b356b8156e43
32587fe6f4e8743ae525d72005fddd4c1213d55a8061b2ce67b83640f477
7c0358bba70101020203585fa202818141000458568614a40150fa6b4a53
d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b2d51f2ab45
035824822f582000112233445566778899aabbccddeeff0123456789abcd
effedcba98765432100e1987d0010f020f09822f58203ee96dc79641970a
e46b929ccf0b72ba9536dd846020dbdc9f949d84ea0e18d20a4382030f0c
438217020d822f58202bfc4d0cc6680be7dd9f5ca30aa2bb5d1998145de3
3d54101b80e2ca49faf91809583c8613a1157832687474703a2f2f657861
6d706c652e636f6d2f766572792f6c6f6e672f706174682f746f2f66696c
652f66696c652e62696e1502030f0d590204a20179019d2323204578616d
706c6520323a2053696d756c74616e656f757320446f776e6c6f61642c20
496e7374616c6c6174696f6e2c2053656375726520426f6f742c20536576
65726564204669656c64730a0a2020202054686973206578616d706c6520
636f766572732074686520666f6c6c6f77696e672074656d706c61746573
3a0a202020200a202020202a20436f6d7061746962696c69747920436865
636b20287b7b74656d706c6174652d636f6d7061746962696c6974792d63
6865636b7d7d290a202020202a2053656375726520426f6f7420287b7b74
656d706c6174652d7365637572652d626f6f747d7d290a202020202a2046
69726d7761726520446f776e6c6f616420287b7b6669726d776172652d64
6f776e6c6f61642d74656d706c6174657d7d290a202020200a2020202054
686973206578616d706c6520616c736f2064656d6f6e7374726174657320
736576657261626c6520656c656d656e747320287b7b6f76722d73657665
7261626c657d7d292c20616e64207465787420287b7b6d616e6966657374
2d6469676573742d746578747d7d292e814100a2036761726d2e636f6d05
78525468697320636f6d706f6e656e7420697320612064656d6f6e737472
6174696f6e2e205468652064696765737420697320612073616d706c6520
7061747465726e2c206e6f742061207265616c206f6e652e
]]></artwork>
      </section>
      <section anchor="example-3-ab-images" numbered="true" toc="default">
        <name>Example 3: A/B images</name>
        <t>This example covers the following templates:</t>
        <ul spacing="normal">
          <li>Compatibility Check (<xref target="template-compatibility-check" format="default"/>)</li>
          <li>Secure Boot (<xref target="template-secure-boot" format="default"/>)</li>
          <li>Firmware Download (<xref target="firmware-download-template" format="default"/>)</li>
          <li>A/B Image Template (<xref target="a-b-template" format="default"/>)</li>
        </ul>
        <artwork name="" type="" align="left" alt=""><![CDATA[
107({
        / authentication-wrapper / 2:<<[
            digest: <<[
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'7c9b3cb72c262608a42f944d59d659ff2b801c78af44def51b8ff51e9f45721b'
            ]>>,
            signature: <<18([
                    / protected / <<{
                        / alg / 1:-7 / "ES256" /,
                    }>>,
                    / unprotected / {
                    },
                    / payload / F6 / nil /,
                    / signature / h'e33d618df0ad21e609529ab1a876afb231
faff1d6a3189b5360324c2794250b87cf00cf83be50ea17dc721ca85393cd8e839a066
d5dec0ad87a903ab31ea9afa'
                ])>>
            ]
        ]>>,
        / manifest / 3:<<{
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:3,
            / common / 3:<<{
                / components / 2:[
                    [h'00']
                ],
                / common-sequence / 4:<<[
                    / 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,[
                        <<[
                            / directive-override-parameters / 20,{
                                / offset / 5:33792,
                            } ,
                            / condition-component-offset / 5,5 ,
                            / directive-override-parameters / 20,{
                                / image-digest / 3:<<[
                                    / algorithm-id / -16 / "sha256" /,
                                    / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                                ]>>,
                                / image-size / 14:34768,
                            }
                        ]>> ,
                        <<[
                            / directive-override-parameters / 20,{
                                / offset / 5:541696,
                            } ,
                            / condition-component-offset / 5,5 ,
                            / directive-override-parameters / 20,{
                                / image-digest / 3:<<[
                                    / algorithm-id / -16 / "sha256" /,
                                    / digest-bytes /
h'0123456789abcdeffedcba987654321000112233445566778899aabbccddeeff'
                                ]>>,
                                / image-size / 14:76834,
                            }
                        ]>>
                    ] ,
                    / condition-vendor-identifier / 1,15 ,
                    / condition-class-identifier / 2,15
                ]>>,
            }>>,
            / install / 9:<<[
                / directive-try-each / 15,[
                    <<[
                        / directive-set-parameters / 19,{
                            / offset / 5:33792,
                        } ,
                        / condition-component-offset / 5,5 ,
                        / directive-set-parameters / 19,{
                            / uri / 21:'http://example.com/file1.bin',
                        }
                    ]>> ,
                    <<[
                        / 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:<<[
                / condition-image-match / 3,15
            ]>>,
        }>>,
    })
]]></artwork>
        <t>Total size of Envelope without COSE authentication object:  332</t>
        <t>Envelope:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
d86ba2025827815824822f58207c9b3cb72c262608a42f944d59d659ff2b
801c78af44def51b8ff51e9f45721b0359011ba5010102030358aaa20281
8141000458a18814a20150fa6b4a53d5ad5fdfbe9de663e4d41ffe025014
92af1425695e48bf429b2d51f2ab450f8258368614a105198400050514a2
035824822f582000112233445566778899aabbccddeeff0123456789abcd
effedcba98765432100e1987d0583a8614a1051a00084400050514a20358
24822f58200123456789abcdeffedcba9876543210001122334455667788
99aabbccddeeff0e1a00012c22010f020f095861860f82582a8613a10519
8400050513a115781c687474703a2f2f6578616d706c652e636f6d2f6669
6c65312e62696e582c8613a1051a00084400050513a115781c687474703a
2f2f6578616d706c652e636f6d2f66696c65322e62696e1502030f0a4382
030f
]]></artwork>
        <t>Total size of Envelope with COSE authentication object:  408</t>
        <t>Envelope with COSE authentication object:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
d86ba2025873825824822f58207c9b3cb72c262608a42f944d59d659ff2b
801c78af44def51b8ff51e9f45721b584ad28443a10126a0f65840e33d61
8df0ad21e609529ab1a876afb231faff1d6a3189b5360324c2794250b87c
f00cf83be50ea17dc721ca85393cd8e839a066d5dec0ad87a903ab31ea9a
fa0359011ba5010102030358aaa202818141000458a18814a20150fa6b4a
53d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b2d51f2ab
450f8258368614a105198400050514a2035824822f582000112233445566
778899aabbccddeeff0123456789abcdeffedcba98765432100e1987d058
3a8614a1051a00084400050514a2035824822f58200123456789abcdeffe
dcba987654321000112233445566778899aabbccddeeff0e1a00012c2201
0f020f095861860f82582a8613a105198400050513a115781c687474703a
2f2f6578616d706c652e636f6d2f66696c65312e62696e582c8613a1051a
00084400050513a115781c687474703a2f2f6578616d706c652e636f6d2f
66696c65322e62696e1502030f0a4382030f
]]></artwork>
      </section>
      <section anchor="example-4-load-from-external-storage" numbered="true" toc="default">
        <name>Example 4: Load from External Storage</name>
        <t>This example covers the following templates:</t>
        <ul spacing="normal">
          <li>Compatibility Check (<xref target="template-compatibility-check" format="default"/>)</li>
          <li>Secure Boot (<xref target="template-secure-boot" format="default"/>)</li>
          <li>Firmware Download (<xref target="firmware-download-template" format="default"/>)</li>
          <li>Install (<xref target="template-install" format="default"/>)</li>
          <li>Load (<xref target="template-load-ext" format="default"/>)</li>
        </ul>
        <artwork name="" type="" align="left" alt=""><![CDATA[
107({
        / authentication-wrapper / 2:<<[
            digest: <<[
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'15736702a00f510805dcf89d6913a2cfb417ed414faa760f974d6755c68ba70a'
            ]>>,
            signature: <<18([
                    / protected / <<{
                        / alg / 1:-7 / "ES256" /,
                    }>>,
                    / unprotected / {
                    },
                    / payload / F6 / nil /,
                    / signature / h'3ada2532326d512132c388677798c24ffd
cc979bfae2a26b19c8c8bbf511fd7dd85f1501662c1a9e1976b759c4019bab44ba5434
efb45d3868aedbca593671f3'
                ])>>
            ]
        ]>>,
        / manifest / 3:<<{
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:4,
            / common / 3:<<{
                / components / 2:[
                    [h'00'] ,
                    [h'02'] ,
                    [h'01']
                ],
                / common-sequence / 4:<<[
                    / 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:<<[
                            / algorithm-id / -16 / "sha256" /,
                            / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                        ]>>,
                        / image-size / 14:34768,
                    } ,
                    / condition-vendor-identifier / 1,15 ,
                    / condition-class-identifier / 2,15
                ]>>,
            }>>,
            / payload-fetch / 8:<<[
                / 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:<<[
                / 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:<<[
                / directive-set-component-index / 12,0 ,
                / condition-image-match / 3,15
            ]>>,
            / load / 11:<<[
                / directive-set-component-index / 12,2 ,
                / directive-set-parameters / 19,{
                    / image-digest / 3:<<[
                        / algorithm-id / -16 / "sha256" /,
                        / digest-bytes /
h'0123456789abcdeffedcba987654321000112233445566778899aabbccddeeff'
                    ]>>,
                    / image-size / 14:76834,
                    / source-component / 22:0 / [h'00'] /,
                    / compression-info / 19:<<{
                        / compression-algorithm / 1:1 / "gzip" /,
                    }>>,
                } ,
                / directive-copy / 22,2 ,
                / condition-image-match / 3,15
            ]>>,
            / run / 12:<<[
                / directive-set-component-index / 12,2 ,
                / directive-run / 23,2
            ]>>,
        }>>,
    })
]]></artwork>
        <t>Total size of Envelope without COSE authentication object:  292</t>
        <t>Envelope:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
d86ba2025827815824822f582015736702a00f510805dcf89d6913a2cfb4
17ed414faa760f974d6755c68ba70a0358f4a801010204035867a2028381
4100814102814101045858880c0014a40150fa6b4a53d5ad5fdfbe9de663
e4d41ffe02501492af1425695e48bf429b2d51f2ab45035824822f582000
112233445566778899aabbccddeeff0123456789abcdeffedcba98765432
100e1987d0010f020f085827880c0113a115781b687474703a2f2f657861
6d706c652e636f6d2f66696c652e62696e1502030f094b880c0013a11601
1602030f0a45840c00030f0b583d880c0213a4035824822f582001234567
89abcdeffedcba987654321000112233445566778899aabbccddeeff0e1a
00012c221343a1010116001602030f0c45840c021702
]]></artwork>
        <t>Total size of Envelope with COSE authentication object:  368</t>
        <t>Envelope with COSE authentication object:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
d86ba2025873825824822f582015736702a00f510805dcf89d6913a2cfb4
17ed414faa760f974d6755c68ba70a584ad28443a10126a0f658403ada25
32326d512132c388677798c24ffdcc979bfae2a26b19c8c8bbf511fd7dd8
5f1501662c1a9e1976b759c4019bab44ba5434efb45d3868aedbca593671
f30358f4a801010204035867a20283814100814102814101045858880c00
14a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af1425695e48
bf429b2d51f2ab45035824822f582000112233445566778899aabbccddee
ff0123456789abcdeffedcba98765432100e1987d0010f020f085827880c
0113a115781b687474703a2f2f6578616d706c652e636f6d2f66696c652e
62696e1502030f094b880c0013a116011602030f0a45840c00030f0b583d
880c0213a4035824822f58200123456789abcdeffedcba98765432100011
2233445566778899aabbccddeeff0e1a00012c221343a101011600160203
0f0c45840c021702
]]></artwork>
      </section>
      <section anchor="example-5-two-images" numbered="true" toc="default">
        <name>Example 5: Two Images</name>
        <t>This example covers the following templates:</t>
        <ul spacing="normal">
          <li>Compatibility Check (<xref target="template-compatibility-check" format="default"/>)</li>
          <li>Secure Boot (<xref target="template-secure-boot" format="default"/>)</li>
          <li>Firmware Download (<xref target="firmware-download-template" format="default"/>)</li>
        </ul>
        <t>Furthermore, it shows using these templates with two images.</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
107({
        / authentication-wrapper / 2:<<[
            digest: <<[
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'd1e73f16e4126007bc4d804cd33b0209fbab34728e60ee8c00f3387126748dd2'
            ]>>,
            signature: <<18([
                    / protected / <<{
                        / alg / 1:-7 / "ES256" /,
                    }>>,
                    / unprotected / {
                    },
                    / payload / F6 / nil /,
                    / signature / h'b7ae0a46a28f02e25cda6d9a255bbaf863
30141831fae5a78012d648bc6cee55102e0f1890bdeacc3adaa4fae0560f83a45eecae
65cabce642f56d84ab97ef8d'
                ])>>
            ]
        ]>>,
        / manifest / 3:<<{
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:5,
            / common / 3:<<{
                / components / 2:[
                    [h'00'] ,
                    [h'01']
                ],
                / common-sequence / 4:<<[
                    / 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:<<[
                            / algorithm-id / -16 / "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:<<[
                            / algorithm-id / -16 / "sha256" /,
                            / digest-bytes /
h'0123456789abcdeffedcba987654321000112233445566778899aabbccddeeff'
                        ]>>,
                        / image-size / 14:76834,
                    }
                ]>>,
            }>>,
            / install / 9:<<[
                / 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:<<[
                / directive-set-component-index / 12,0 ,
                / condition-image-match / 3,15 ,
                / directive-set-component-index / 12,1 ,
                / condition-image-match / 3,15
            ]>>,
            / run / 12:<<[
                / directive-set-component-index / 12,0 ,
                / directive-run / 23,2
            ]>>,
        }>>,
    })
]]></artwork>
        <t>Total size of Envelope without COSE authentication object:  306</t>
        <t>Envelope:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
d86ba2025827815824822f5820d1e73f16e4126007bc4d804cd33b0209fb
ab34728e60ee8c00f3387126748dd203590101a601010205035895a20282
8141008141010458898c0c0014a40150fa6b4a53d5ad5fdfbe9de663e4d4
1ffe02501492af1425695e48bf429b2d51f2ab45035824822f5820001122
33445566778899aabbccddeeff0123456789abcdeffedcba98765432100e
1987d0010f020f0c0114a2035824822f58200123456789abcdeffedcba98
7654321000112233445566778899aabbccddeeff0e1a00012c2209584f90
0c0013a115781c687474703a2f2f6578616d706c652e636f6d2f66696c65
312e62696e1502030f0c0113a115781c687474703a2f2f6578616d706c65
2e636f6d2f66696c65322e62696e1502030f0a49880c00030f0c01030f0c
45840c001702
]]></artwork>
        <t>Total size of Envelope with COSE authentication object:  382</t>
        <t>Envelope with COSE authentication object:</t>
        <artwork name="" type="" align="left" alt=""><![CDATA[
d86ba2025873825824822f5820d1e73f16e4126007bc4d804cd33b0209fb
ab34728e60ee8c00f3387126748dd2584ad28443a10126a0f65840b7ae0a
46a28f02e25cda6d9a255bbaf86330141831fae5a78012d648bc6cee5510
2e0f1890bdeacc3adaa4fae0560f83a45eecae65cabce642f56d84ab97ef
8d03590101a601010205035895a202828141008141010458898c0c0014a4
0150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf42
9b2d51f2ab45035824822f582000112233445566778899aabbccddeeff01
23456789abcdeffedcba98765432100e1987d0010f020f0c0114a2035824
822f58200123456789abcdeffedcba987654321000112233445566778899
aabbccddeeff0e1a00012c2209584f900c0013a115781c687474703a2f2f
6578616d706c652e636f6d2f66696c65312e62696e1502030f0c0113a115
781c687474703a2f2f6578616d706c652e636f6d2f66696c65322e62696e
1502030f0a49880c00030f0c01030f0c45840c001702
]]></artwork>
      </section>
    </section>
    <section anchor="design-rationale" numbered="true" toc="default">
      <name>C. Design Rational</name>
      <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" numbered="true" toc="default">
        <name>C.1 Design Rationale: Envelope</name>
        <t>The Envelope is used instead of a COSE structure for several reasons:</t>
        <ol spacing="normal" type="1"><li>This enables the use of Severable Elements (<xref target="severable-fields" format="default"/>)</li>
          <li>This enables modular processing of manifests, particularly with large signatures.</li>
          <li>This enables multiple authentication schemes.</li>
          <li>This allows integrity verification by a dependent to be unaffected by adding or removing authentication structures.</li>
        </ol>
        <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>
        <ul spacing="normal">
          <li>COSE_Sign_Tagged</li>
          <li>COSE_Sign1_Tagged</li>
          <li>COSE_Mac_Tagged</li>
          <li>COSE_Mac0_Tagged</li>
        </ul>
        <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" format="default"/></t>
      </section>
      <section anchor="c2-byte-string-wrappers" numbered="true" toc="default">
        <name>C.2 Byte String Wrappers</name>
        <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" numbered="true" toc="default">
      <name>D. Implementation Conformance Matrix</name>
      <t>This section summarizes the functionality a minimal manifest processor
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>
      <table align="center">
        <thead>
          <tr>
            <th align="left">Name</th>
            <th align="left">Reference</th>
            <th align="left">Implementation</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">Vendor Identifier</td>
            <td align="left">
              <xref target="uuid-identifiers" format="default"/></td>
            <td align="left">REQUIRED</td>
          </tr>
          <tr>
            <td align="left">Class Identifier</td>
            <td align="left">
              <xref target="uuid-identifiers" format="default"/></td>
            <td align="left">REQUIRED</td>
          </tr>
          <tr>
            <td align="left">Device Identifier</td>
            <td align="left">
              <xref target="uuid-identifiers" format="default"/></td>
            <td align="left">OPTIONAL</td>
          </tr>
          <tr>
            <td align="left">Image Match</td>
            <td align="left">
              <xref target="suit-condition-image-match" format="default"/></td>
            <td align="left">REQUIRED</td>
          </tr>
          <tr>
            <td align="left">Component Slot</td>
            <td align="left">
              <xref target="suit-condition-component-slot" format="default"/></td>
            <td align="left">OPTIONAL</td>
          </tr>
          <tr>
            <td align="left">Abort</td>
            <td align="left">
              <xref target="suit-condition-abort" format="default"/></td>
            <td align="left">OPTIONAL</td>
          </tr>
          <tr>
            <td align="left">Custom Condition</td>
            <td align="left">
              <xref target="SUIT_Condition_Custom" format="default"/></td>
            <td align="left">OPTIONAL</td>
          </tr>
        </tbody>
      </table>
      <t>The subsequent table shows the directives.</t>
      <table align="center">
        <thead>
          <tr>
            <th align="left">Name</th>
            <th align="left">Reference</th>
            <th align="left">Implementation</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">Set Component Index</td>
            <td align="left">
              <xref target="suit-directive-set-component-index" format="default"/></td>
            <td align="left">REQUIRED if more than one component</td>
          </tr>
          <tr>
            <td align="left">Try Each</td>
            <td align="left">
              <xref target="suit-directive-try-each" format="default"/></td>
            <td align="left">OPTIONAL</td>
          </tr>
          <tr>
            <td align="left">Override Parameters</td>
            <td align="left">
              <xref target="suit-directive-override-parameters" format="default"/></td>
            <td align="left">REQUIRED</td>
          </tr>
          <tr>
            <td align="left">Fetch</td>
            <td align="left">
              <xref target="suit-directive-fetch" format="default"/></td>
            <td align="left">REQUIRED for Updater</td>
          </tr>
          <tr>
            <td align="left">Copy</td>
            <td align="left">
              <xref target="suit-directive-copy" format="default"/></td>
            <td align="left">OPTIONAL</td>
          </tr>
          <tr>
            <td align="left">Run</td>
            <td align="left">
              <xref target="suit-directive-run" format="default"/></td>
            <td align="left">REQUIRED for Bootloader</td>
          </tr>
          <tr>
            <td align="left">Run Sequence</td>
            <td align="left">
              <xref target="suit-directive-run-sequence" format="default"/></td>
            <td align="left">OPTIONAL</td>
          </tr>
          <tr>
            <td align="left">Swap</td>
            <td align="left">
              <xref target="suit-directive-swap" format="default"/></td>
            <td align="left">OPTIONAL</td>
          </tr>
        </tbody>
      </table>
      <t>The subsequent table shows the parameters.</t>
      <table align="center">
        <thead>
          <tr>
            <th align="left">Name</th>
            <th align="left">Reference</th>
            <th align="left">Implementation</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">Vendor ID</td>
            <td align="left">
              <xref target="suit-parameter-vendor-identifier" format="default"/></td>
            <td align="left">REQUIRED</td>
          </tr>
          <tr>
            <td align="left">Class ID</td>
            <td align="left">
              <xref target="suit-parameter-class-identifier" format="default"/></td>
            <td align="left">REQUIRED</td>
          </tr>
          <tr>
            <td align="left">Image Digest</td>
            <td align="left">
              <xref target="suit-parameter-image-digest" format="default"/></td>
            <td align="left">REQUIRED</td>
          </tr>
          <tr>
            <td align="left">Image Size</td>
            <td align="left">
              <xref target="suit-parameter-image-size" format="default"/></td>
            <td align="left">REQUIRED</td>
          </tr>
          <tr>
            <td align="left">Component Slot</td>
            <td align="left">
              <xref target="suit-parameter-component-slot" format="default"/></td>
            <td align="left">OPTIONAL</td>
          </tr>
          <tr>
            <td align="left">URI</td>
            <td align="left">
              <xref target="suit-parameter-uri" format="default"/></td>
            <td align="left">REQUIRED for Updater</td>
          </tr>
          <tr>
            <td align="left">Source Component</td>
            <td align="left">
              <xref target="suit-parameter-source-component" format="default"/></td>
            <td align="left">OPTIONAL</td>
          </tr>
          <tr>
            <td align="left">Run Args</td>
            <td align="left">
              <xref target="suit-parameter-run-args" format="default"/></td>
            <td align="left">OPTIONAL</td>
          </tr>
          <tr>
            <td align="left">Device ID</td>
            <td align="left">
              <xref target="suit-parameter-device-identifier" format="default"/></td>
            <td align="left">OPTIONAL</td>
          </tr>
          <tr>
            <td align="left">Strict Order</td>
            <td align="left">
              <xref target="suit-parameter-strict-order" format="default"/></td>
            <td align="left">OPTIONAL</td>
          </tr>
          <tr>
            <td align="left">Soft Failure</td>
            <td align="left">
              <xref target="suit-parameter-soft-failure" format="default"/></td>
            <td align="left">OPTIONAL</td>
          </tr>
          <tr>
            <td align="left">Custom</td>
            <td align="left">
              <xref target="suit-parameter-custom" format="default"/></td>
            <td align="left">OPTIONAL</td>
          </tr>
        </tbody>
      </table>
    </section>
  </back>
  <!-- ##markdown-source:
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
7te9jzjd/bCED+jSPkWig0Ssvk1qVODt20yxic7cW6N2oTO6mhD7yolD1YQ4
rpyYriZEckDZv2F0Zpeui1Pzj7Gui0PKvk/XxR5lvyMQ6eiTHic0PM3Cu+GT
4aMFPFrA57UAglKDYoBSA38K5RfbUGoS45afZHikwBVIFtcgZahLip/CuLJw
q0Cz3chrGWX4KYTMvYQ+o1z6Af5C7BrBFWZcF1fxDLgFfiZRTGrpYdQorhLo
LRpgxCTBFaLGi0O/8F0RYqQk4EcL/CXiMiKWbqKrKA7Q2KfuQx/XQba9k8Qi
5lvoyWULwJhxmICzLukn/40w1zij0TcAZ1cQmwyLAjJdPIjL4ELFlBCpGTON
7kWmIdGHyYhgNMbwk4+fQua+4XPGrCxAQQg50D0MQiPnZEBJjr8bfftlvLsD
3BPUA3WQlEnpZ+tj72BYP5TYHCsZNyhj02Cq65DWjPBYCbZ4pv9NeZpxSJHW
nixjjLz+aLnF040xxyIUu2RISoMpVPiJuyPFIWXCqEZQkHPCusKq4mGGuiGp
CjWAj8TjQU86NCLxNV+ojRgaaQJJ+VirQ60WSTrwF93RnSymwUCFoInj10T/
qudMDUxXSvtPTDSINatKa7wuRk7hqAfttUpRsUUpGtXc8bZnL0Z2pIwRRPzY
QM2oOWY7Ngytekysrw0RY7Ie8cNkceC7b2jx1fZ6TPDUefbkufk0/HeysvIP
npI+7eOtuU6t5Hm+vgLz1S+KJEWWBwViW+FDtd1Uhj5CWgg3D3vIqspHAPKK
JJUVLqoqQkCq8K/KKrh838sfF0VOWhShMi5GolC5yPE8FSOe+0hTPInkRFa5
H3gCgb7yyhjpYZrlcOIIpWGByI30yM1T2s3sFlUa5EjxlPQSZCu+V8g0CrKg
KFOVBplE4ELCVaI+l2WayAzJQR54Smaykl/3okjwuCjyPS6K7Mb5J75bAq2J
znavlhxeSbmXSIZullVFnykgtDAIkHDtX4HZNcWhv6k3e4cxznYtaHzyeZ28
NjU0vdca1Xgin22tyv7Zu2a1yZuj1q7sn48772LMPTL9EnqMkhJZ36MiP5wi
H0KaDyj6gyky1DgI76HIk/f+820u3x5anjwmEu1TtbvtMh5aHx949tnqvez0
vlM4uGHa27Fjup/ZtMLt9KifSR6HHOi3KxD/rgLZNsfHTe8HN70HgX/COu3h
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
d17p+5M+dEoaE57z/wFgPLE0jRkCAA==

-->

</rfc>
