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


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>

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

<rfc ipr="trust200902" docName="draft-ietf-suit-manifest-27" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="CBOR-based SUIT Manifest">A Concise Binary Object Representation (CBOR)-based Serialization Format for the Software Updates for Internet of Things (SUIT) Manifest</title>

    <author initials="B." surname="Moran" fullname="Brendan Moran">
      <organization>Arm Limited</organization>
      <address>
        <email>brendan.moran.ietf@gmail.com</email>
      </address>
    </author>
    <author initials="H." surname="Tschofenig" fullname="Hannes Tschofenig">
      <organization></organization>
      <address>
        <email>hannes.tschofenig@gmx.net</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>
    <author initials="Ø." surname="Rønningstad" fullname="Øyvind Rønningstad">
      <organization>Nordic Semiconductor</organization>
      <address>
        <email>oyvind.ronningstad@gmail.com</email>
      </address>
    </author>

    <date year="2024" month="July" day="25"/>

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

    <abstract>


<?line 91?>
<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 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>


<?line 100?>

<section anchor="introduction"><name>Introduction</name>

<t>A firmware update mechanism is an essential security feature for IoT devices to deal with vulnerabilities. The transport of firmware images to the devices themselves is important security aspect. Luckily, there are already various device management solutions available offering the distribution of firmware images to IoT devices. 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. Firmware signing 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 and to distribute the content encryption key securely. The support for firmware and payload encryption via the SUIT manifest format is described in a companion document <xref target="I-D.ietf-suit-firmware-encryption"/>. 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 about the firmware for an IoT device, where to
find the firmware, and the devices to which it applies.</t>

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

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

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

<t><list style="symbols">
  <t>a Network Operator to reason about compatibility of a firmware, such as timing and acceptance of firmware updates.</t>
  <t>a Device Operator to reason about the impact of a firmware.</t>
  <t>a device to reason about the authority &amp; authenticity of a firmware prior to installation.</t>
  <t>a device to reason about the applicability of a firmware.</t>
  <t>a device to reason about the installation of a firmware.</t>
  <t>a device to reason about the authenticity &amp; encoding of a firmware at boot.</t>
</list></t>

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

<t>It is assumed that the reader is familiar with the high-level firmware update architecture <xref target="RFC9019"/> and the threats, requirements, and user stories in <xref target="RFC9124"/>.</t>

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

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

<t>In this document, these operations are called commands. Commands are classed as either conditions or directives. Conditions have no side-effects, while directives do have side-effects. Conceptually, a sequence of commands is like a script but the 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="RFC9124"/> 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="RFC9397"/>.</t>

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

<t>The key words "<bcp14>MUST</bcp14>", "<bcp14>MUST NOT</bcp14>", "<bcp14>REQUIRED</bcp14>", "<bcp14>SHALL</bcp14>", "<bcp14>SHALL
NOT</bcp14>", "<bcp14>SHOULD</bcp14>", "<bcp14>SHOULD NOT</bcp14>", "<bcp14>RECOMMENDED</bcp14>", "<bcp14>NOT RECOMMENDED</bcp14>",
"<bcp14>MAY</bcp14>", and "<bcp14>OPTIONAL</bcp14>" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>

<?line -18?>

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

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

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

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

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

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

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

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

<t>Additional specifications describe functionality needed to implement all of the requirements of <xref target="RFC9124"/>, such as:</t>

<t><list style="symbols">
  <t>Firmware encryption <xref target="I-D.ietf-suit-firmware-encryption"/></t>
  <t>Update management <xref target="I-D.ietf-suit-update-management"/></t>
  <t>Dependency manifests <xref target="I-D.ietf-suit-trust-domains"/></t>
  <t>Secure reporting of the update status <xref target="I-D.ietf-suit-report"/></t>
</list></t>

<t>A technique to compress firmware images may be standardized in the future.</t>

</section>
<section anchor="background"><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"/>. The security aspects are described in <xref target="RFC9124"/>.</t>

<section anchor="iot-firmware-update-constraints"><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>

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

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

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

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

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

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

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

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

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

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

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

<t>If verification and invocation is implemented in a bootloader, then the bootloader <bcp14>MUST</bcp14> also verify the signature of the manifest and the applicability of the manifest in order to implement secure boot workflows. Because signature verifications can be costly in constrained applications, the bootloader may add its own authentication, e.g. a Message Authentication Code (MAC), to the manifest in order to prevent further signature verifications and save energy, provided that the bootloader can protect its authentication key.</t>

</section>
</section>
<section anchor="metadata-structure-overview"><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"/></t>

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

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

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

<figure><artwork><![CDATA[
+-------------------------+
| Envelope                |
+-------------------------+
| Authentication Block    |
| Manifest           --------------> +------------------------------+
| Severable Elements      |          | Manifest                     |
| Integrated Payloads     |          +------------------------------+
+-------------------------+          | Structure Version            |
                                     | 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></figure>

<section anchor="ovr-envelope"><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 avoids substantial complexity that would be needed with existing solutions. See <xref target="design-rationale-envelope"/> for a description of the reasoning for this.</t>

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

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

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

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

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

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

</section>
<section anchor="ovr-manifest"><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"/> for more detail.</t>

<section anchor="ovr-critical"><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 <bcp14>MAY</bcp14> provide a URI for obtaining a canonical copy of the manifest and Envelope.</t>

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

</section>
<section anchor="ovr-common"><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 <bcp14>MUST NOT</bcp14> have any side-effects outside of setting parameter values.</t>

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

</section>
<section anchor="ovr-commands"><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"/>), update commands, and secure boot commands.</t>

<t>Update Command Sequences are: Payload Fetch, Payload Installation and, System Validation. 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"/> for more detail.</t>

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

<t>To enable severable elements <xref target="ovr-severable"/>, there needs to be a mechanism to verify the integrity of the severed data. While the severed data stays outside the manifest, for efficiency reasons, Integrity Check Values are used to include the digest of the data in the manifest. Note that Integrated Payloads, see <xref target="ovr-integrated"/>, are integrity-checked using Command Sequences.</t>

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

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

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

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

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

<t>Severable Elements are elements of the Envelope (<xref target="ovr-envelope"/>) that have Integrity Check Values (<xref target="ovr-integrity"/>) in the Manifest (<xref target="ovr-manifest"/>). This is a form of elision of hashed data. The elements in the envelope are verified by Integrity Check Values and therefore cannot be replaced with other elements even if they are authenticated elements.</t>

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

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

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

</section>
<section anchor="ovr-integrated"><name>Integrated Payloads</name>

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

<t><list style="symbols">
  <t>When an update is delivered via a comparatively unconstrained medium, such as a removable mass storage device, it may be beneficial to bundle updates into single files.</t>
  <t>When a manifest transports a small payload, such as an encrypted key, that payload may be placed in the manifest's envelope.</t>
</list></t>

<t>See <xref target="template-integrated-payload"/> for more detail.</t>

</section>
</section>
<section anchor="interpreter-behavior"><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"><name>Manifest Processor Setup</name>

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

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

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

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

<t>These failure reasons <bcp14>MAY</bcp14> 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 one possible strategy to provide robustness of the firmware update process. It may not be appropriate for all applications. In particular Trusted Execution Environments <bcp14>MAY</bcp14> require a failure to invoke a new installation, rather than a rollback approach. See <xref section="4.2.1" sectionFormat="comma" target="RFC9124"/> 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"><name> Required Checks</name>

<t>The <bcp14>RECOMMENDED</bcp14> 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 <bcp14>MAY</bcp14> use an ACL (see <xref target="access-control-lists"/>) to determine the extent of the rights conferred by that authenticity.</t>

<t>Once a valid, authentic manifest has been selected, the manifest processor <bcp14>MUST</bcp14> examine the component list and
check that the number of components listed in the manifest is not larger than the number in the target system.</t>

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

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

<t>Because the shared sequence contains Check Vendor Identifier and Check Class Identifier command(s), no custom commands are permitted in the shared 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 <bcp14>MUST</bcp14> begin with a Set Component Index <xref target="suit-directive-set-component-index"/>.</t>

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

<t><list style="numbers" type="1">
  <t>the manifest Author has sufficient permissions for the requested operations (see <xref target="access-control-lists"/>) and</t>
  <t>the manifest specifies a digest and a payload for every Component in the Component Set.</t>
</list></t>

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

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

<t><list style="numbers" type="1">
  <t>Executing an update <bcp14>MUST</bcp14> either result in an error, or a correct system state that can be checked against known digests.</t>
  <t>Executing a Trusted Invocation <bcp14>MUST</bcp14> either result in an error, or an invoked image.</t>
  <t>Executing the same manifest on multiple Recipients <bcp14>MUST</bcp14> result in the same system state.</t>
</list></t>

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

<section anchor="resilience-to-disruption"><name>Resilience to Disruption</name>

<t>As required in <xref section="3" sectionFormat="of" target="RFC9019"/> and as an extension of design goal 1, devices must remain operable after a disruption, such as a power failure or network interruption, interrupts the update process.</t>

<t>The manifest processor must be resilient to these faults. In order to enable this resilience, systems implementing the manifest processor <bcp14>MUST</bcp14> make the following guarantees:</t>

<t>One of:
1. A fallback/recovery image is provided so that a disrupted system can apply the SUIT Manifest again.
2. Manifest Authors <bcp14>MUST</bcp14> construct Manifests in such a way that repeated partial invocations of any Manifest always results in a correct system state. Typically this is done by using Try-Each and Conditions to bypass operations that have already been completed.
3. A journal of manifest operations is stored in nonvolatile memory. The journal enables the parser to re-create the state just prior to the disruption. This journal can, for example, be a SUIT Report or a journaling file system.</t>

<figure><artwork><![CDATA[
AND
]]></artwork></figure>

<t><list style="numbers" type="1">
  <t>Where a command is not repeatable because of the way in which it alters system state (e.g. swapping images or in-place delta) it <bcp14>MUST</bcp14> be resumable or revertible. This applies to commands that modify at least one source component as well as the destination component.</t>
</list></t>

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

<t>Directives <bcp14>MAY</bcp14> have side-effects in the parameter table, the interpreter state, or the current component. The Interpreter <bcp14>MUST</bcp14> 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>

<figure><artwork><![CDATA[
current := components[component-index]
]]></artwork></figure>

<t>As a result, Set Component Index is described as current := components[arg].</t>

<t>The following table describes the semantics of each operation. The pseudo-code semantics are inspired by the Python programming language.</t>

<texttable>
      <ttcol align='left'>pseudo-code operation</ttcol>
      <ttcol align='left'>Semantics</ttcol>
      <c>assert(test)</c>
      <c>When test is false, causes an error return</c>
      <c>store(dest, source)</c>
      <c>Writes source into dest</c>
      <c>expression0 for-each e in l else expression1</c>
      <c>Performs expression0 once for each element in iterable l; performs expression1 if no break is encountered</c>
      <c>break</c>
      <c>halt a for-each loop</c>
      <c>now()</c>
      <c>return the current UTC time</c>
      <c>expression if test</c>
      <c>performs expression if test is true</c>
</texttable>

<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>

<texttable>
      <ttcol align='left'>Command Name</ttcol>
      <ttcol align='left'>Semantic of the Operation</ttcol>
      <c>Check Vendor Identifier</c>
      <c>assert(binary-match(current, current.params[vendor-id]))</c>
      <c>Check Class Identifier</c>
      <c>assert(binary-match(current, current.params[class-id]))</c>
      <c>Verify Image</c>
      <c>assert(binary-match(digest(current), current.params[digest]))</c>
      <c>Check Content</c>
      <c>assert(binary-match(current, current.params[content]))</c>
      <c>Set Component Index</c>
      <c>current := components[arg]</c>
      <c>Override Parameters</c>
      <c>current.params[k] := v for-each k,v in arg</c>
      <c>Invoke</c>
      <c>invoke(current)</c>
      <c>Fetch</c>
      <c>store(current, fetch(current.params[uri]))</c>
      <c>Write</c>
      <c>store(current, current.params[content])</c>
      <c>Use Before</c>
      <c>assert(now() &lt; arg)</c>
      <c>Check Component Slot</c>
      <c>assert(current.slot-index == arg)</c>
      <c>Check Device Identifier</c>
      <c>assert(binary-match(current, current.params[device-id]))</c>
      <c>Abort</c>
      <c>assert(0)</c>
      <c>Try Each</c>
      <c>(break if (exec(seq) is not error)) for-each seq in arg else assert(0)</c>
      <c>Copy</c>
      <c>store(current, current.params[src-component])</c>
      <c>Swap</c>
      <c>swap(current, current.params[src-component])</c>
      <c>Run Sequence</c>
      <c>exec(arg)</c>
      <c>Invoke with Arguments</c>
      <c>invoke(current, arg)</c>
</texttable>

</section>
<section anchor="index-true"><name>Special Cases of Component Index</name>

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

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

<t>Integers <bcp14>MUST</bcp14> always be supported by Set Component Index. Arrays of integers <bcp14>MUST</bcp14> be supported by Set Component Index if the Recipient supports 3 or more components. True <bcp14>MUST</bcp14> 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</t>

<t><list style="numbers" type="1">
  <t>operates on the component identified by the component index if that index is an integer, or</t>
  <t>it operates on each component identified by an array of indicies, or</t>
  <t>it operates on every component if the index is the boolean True.</t>
</list></t>

<t>This is described by the following pseudocode:</t>

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

<t>Try Each and Run Sequence are affected in the same way as other commands: they are invoked once for each possible Component. 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"><name>Serialized Processing Interpreter</name>

<t>In highly constrained devices, where storage for parameters is limited, the manifest processor <bcp14>MAY</bcp14> 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"><name>Parallel Processing Interpreter</name>

<t>To enable parallel or out-of-order processing of Command Sequences, Recipients <bcp14>MAY</bcp14> make use of the Strict Order parameter. The Strict Order parameter indicates to the Manifest Processor that Commands <bcp14>MUST</bcp14> be executed strictly in order. When the Strict Order parameter is False, this indicates to the Manifest Processor that Commands <bcp14>MAY</bcp14> be executed in parallel and/or out of order.</t>

<t>To perform parallel processing, once the Strict Order parameter is set to False, the Recipient <bcp14>MAY</bcp14> add each command to an issue queue for parallel processing or an issue pool for out-of-order processing. The Manifest Processor then executes these pending commands in whatever order or parallelism it deems appropriate. Once there are no more commands to add to the issue queue/pool, the Manifest Processor drains the issue queue/pool by issuing all pending commands and waits for every issued command to complete. The Manifest Processor <bcp14>MAY</bcp14> issue commands before it has completed adding all remaining commands to the issue queue/pool.</t>

<t>While adding commands to the issue queue or pool, if the Manifest Processor encounters any of the following commands, it <bcp14>MUST</bcp14> treat the command as a barrier, draining the issue queue/pool and waiting for all issued commands to complete.</t>

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

<t>Extensions <bcp14>MAY</bcp14> alter this list. Once all issued commands have completed, the Manifest Processor issues the barrier command, after which it may resume parallel processing if Strict Order is still False.</t>

<t>A Component <bcp14>MUST NOT</bcp14> be both a target of an operation and a source of data (for example, in Copy or Swap) in a Command Sequence where Strict Order is False. This would cause a race condition if the Component is written to, then later read from. The Manifest Processor <bcp14>MUST</bcp14> issue an Abort if it detects this exception.</t>

<t>To perform more useful parallel operations, a manifest author may collect sequences of commands in a Run Sequence command. Then, each of these sequences <bcp14>MAY</bcp14> be run in parallel. There are several invocation options for Run Sequence:</t>

<t><list style="symbols">
  <t>Component Index is a positive integer, Strict Order is False: Strict Order is set to True before the sequence argument is run. The sequence argument <bcp14>MUST</bcp14> begin with set-component-index.</t>
  <t>Component Index is true or an array of positive integers, Strict Order is False: The sequence argument is run once for each component (or each component in the array); the Manifest Processor presets the component index and Strict Order = True before each iteration of the sequence argument.</t>
  <t>Component Index is a positive integer, Strict Order is True: No special considerations</t>
  <t>Component Index is True or an array of positive integers, Strict Order is True: The sequence argument is run once for each component (or each component in the array); the Manifest Processor presets the component index before each iteration of the sequence argument.</t>
</list></t>

<t>These rules isolate each sequence from each other sequence, ensuring that they operate as expected. When Strict Order = False, any further Set Component Index directives in the Run Sequence command sequence argument <bcp14>MUST</bcp14> 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"><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="RFC9052"/>.</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 <bcp14>MUST</bcp14> 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 <bcp14>MUST</bcp14> 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 <bcp14>MUST</bcp14> always be set using Override Parameters.</strong></t>

<section anchor="template-compatibility-check"><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 shared sequence and the following sequence of commands is used:</t>

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

</section>
<section anchor="template-secure-boot"><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 shared sequence:</t>

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

<t>The system validation sequence contains the following commands:</t>

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

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

<t><list style="symbols">
  <t>Set Component Index directive (see <xref target="suit-directive-set-component-index"/>)</t>
  <t>Invoke directive (see <xref target="suit-directive-invoke"/>)</t>
</list></t>

</section>
<section anchor="firmware-download-template"><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 shared sequence:</t>

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

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

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

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

</section>
<section anchor="template-install"><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>

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

</section>
<section anchor="template-integrated-payload"><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"/>).</t>

<t>An Author <bcp14>MAY</bcp14> choose to place a payload in the envelope of a manifest. The payload envelope key <bcp14>MUST</bcp14> be a string. The payload <bcp14>MUST</bcp14> be serialized in a bstr element.</t>

<t>The URI for a payload enclosed in this way <bcp14>MAY</bcp14> be expressed as a fragment-only reference, as defined in <xref section="4.4" sectionFormat="comma" target="RFC3986"/>, for example: "#device-model-v1.2.3.bin".</t>

<t>An intermediary, such as a Network Operator, <bcp14>MAY</bcp14> 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"><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>

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

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

</section>
<section anchor="a-b-template"><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>

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

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

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

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

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

<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"><name>Metadata Structure</name>

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

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

<section anchor="encoding-considerations"><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"/>.</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>

<t>All CBOR maps in the Manifest and manifest envelope <bcp14>MUST</bcp14> be encoded with the canonical CBOR ordering as defined in <xref target="RFC8949"/>.</t>

</section>
<section anchor="envelope"><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"><name>Authenticated Manifests</name>

<t>SUIT_Authentication contains a list of elements, which consist of a SUIT_Digest calculated over the manifest, and zero or more SUIT_Authentication_Block's calculated over the SUIT_Digest.</t>

<figure><artwork><![CDATA[
SUIT_Authentication = [
    bstr .cbor SUIT_Digest,
    * bstr .cbor SUIT_Authentication_Block
]
SUIT_Authentication_Block /= COSE_Mac_Tagged
SUIT_Authentication_Block /= COSE_Sign_Tagged
SUIT_Authentication_Block /= COSE_Mac0_Tagged
SUIT_Authentication_Block /= COSE_Sign1_Tagged
]]></artwork></figure>

<t>The SUIT_Digest is computed over the bstr-wrapped SUIT_Manifest that is present in the SUIT_Envelope at the suit-manifest key. The SUIT_Digest <bcp14>MUST</bcp14> always be present. The Manifest Processor requires a SUIT_Authentication_Block to be present. The manifest <bcp14>MUST</bcp14> be protected from tampering between the time of creation and the time of signing/MACing.</t>

<t>The SUIT_Authentication_Block is computed using detached payloads, as described in RFC 9052 <xref target="RFC9052"/>. The detached payload in each case is the bstr-wrapped SUIT_Digest at the beginning of the list. Signers (or MAC calculators) <bcp14>MUST</bcp14> verify the SUIT_Digest prior to performing the cryptographic computation to avoid "Time-of-check to time-of-use" type of attack. When multiple SUIT_Authentication_Blocks are present, then each  SUIT_Authentication_Block <bcp14>MUST</bcp14> be computed over the same SUIT_Digest but using a different algorithm or signing/MAC authority. This feature also allows to transition to new algorithms, such as post-quantum cryptography (PQC) algorithms.</t>

<t>The SUIT_Authentication structure <bcp14>MUST</bcp14> come before the suit-manifest element, regardless of canonical encoding of CBOR. The algorithms used in SUIT_Authentication are defined by the profiles declared in <xref target="I-D.ietf-suit-mti"/>.</t>

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

<t>The manifest contains:</t>

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

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

<section anchor="manifest-version"><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 <bcp14>REQUIRED</bcp14> to implement.</t>

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

<t>The suit-manifest-sequence-number is a monotonically increasing anti-rollback counter. Each Recipient <bcp14>MUST</bcp14> reject any manifest that has a sequence number lower than its current sequence number. For convenience, an implementer <bcp14>MAY</bcp14> use a UTC timestamp in seconds as the sequence number. suit-manifest-sequence-number is <bcp14>REQUIRED</bcp14> to implement.</t>

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

<t>suit-reference-uri is 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.
This document is only concerned with the transport of a URI which is 
intended for machine readable uses, not human readable uses. The encoding is the same as CBOR
Tag 32, however the tag is omitted because it is implied by context.</t>

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

<t>suit-text <bcp14>SHOULD</bcp14> be a severable element. suit-text is a map of language identifiers (identical to Tag38 of RFC9290, Appendix A) to language-specific text maps. Each language-specific text map is a map containing two different types of pair:</t>

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

<t>The SUIT_Text_Map is defined in the following CDDL.</t>

<figure><artwork><![CDATA[
tag38-ltag = text .regexp "[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*"

SUIT_Text_Map = {
    + tag38-ltag => SUIT_Text_LMap
}
SUIT_Text_LMap = {
    SUIT_Text_Keys,
    * SUIT_Component_Identifier => {
        SUIT_Text_Component_Keys
    }
}
]]></artwork></figure>

<t>Each SUIT_Component_Identifier =&gt; map entry contains a map of integer =&gt; text values. All SUIT_Component_Identifiers present in suit-text <bcp14>MUST</bcp14> also be present in suit-common (<xref target="manifest-common"/>).</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 <bcp14>MAY</bcp14> be present. If present, each section <bcp14>MUST</bcp14> be as described. Negative integer IDs are reserved for application-specific text values.</t>

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

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

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

<texttable>
      <ttcol align='left'>CDDL Structure</ttcol>
      <ttcol align='left'>Description</ttcol>
      <c>suit-text-vendor-name</c>
      <c>Free text vendor name</c>
      <c>suit-text-model-name</c>
      <c>Free text model name</c>
      <c>suit-text-vendor-domain</c>
      <c>The domain used to create the vendor-id condition (see <xref target="uuid-identifiers"/>)</c>
      <c>suit-text-model-info</c>
      <c>The information used to create the class-id condition (see <xref target="uuid-identifiers"/>)</c>
      <c>suit-text-component-description</c>
      <c>Free text description of each component in the manifest</c>
      <c>suit-text-component-version</c>
      <c>A free text representation of the component version</c>
</texttable>

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

</section>
<section anchor="manifest-common"><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-shared-sequence. suit-common is <bcp14>REQUIRED</bcp14> to implement.</t>

<t>suit-components is a list of <xref target="suit-component-identifier">SUIT_Component_Identifier</xref> blocks that specify the component identifiers that will be affected by the content of the current manifest. suit-components is <bcp14>REQUIRED</bcp14> to implement.</t>

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

<section anchor="suit-component-identifier"><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"><name>SUIT_Command_Sequence</name>

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

<t><list style="numbers" type="1">
  <t>Payload Fetch: suit-payload-fetch is a SUIT_Command_Sequence to execute in order to obtain a payload. Some manifests may include these actions in the suit-install section instead if they operate in a streaming installation mode. This is particularly relevant for constrained devices without any temporary storage for staging the update. suit-payload-fetch is <bcp14>OPTIONAL</bcp14> to implement because it is not relevant in all bootloaders.</t>
  <t>Payload Installation: suit-install is a SUIT_Command_Sequence to execute in order to install a payload. Typical actions include verifying a payload stored in temporary storage, copying a staged payload from temporary storage, and unpacking a payload. suit-install is <bcp14>OPTIONAL</bcp14> to implement.</t>
  <t>Image Validation: suit-validate is a SUIT_Command_Sequence to execute in order to validate that the result of applying the update is correct. Typical actions involve image validation. suit-validate is <bcp14>REQUIRED</bcp14> to implement.</t>
  <t>Image Loading: suit-load is a SUIT_Command_Sequence to execute in order to prepare a payload for execution. Typical actions include copying an image from permanent storage into RAM, optionally including actions such as decryption or decompression. suit-load is <bcp14>OPTIONAL</bcp14> to implement.</t>
  <t>Invoke or Boot: suit-invoke is a SUIT_Command_Sequence to execute in order to invoke an image. suit-invoke typically contains a single instruction: the "invoke" directive, but may also contain an image condition. suit-invoke is <bcp14>OPTIONAL</bcp14> to implement because it not needed for restart-based invocation.</t>
</list></t>

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

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

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

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

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

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

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

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

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

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

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

<t>Many conditions and directives apply to a given component, and these generally grouped together. Therefore, a special command to set the current component index is provided. 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"/>), is provided. It runs several new lists of conditions/directives, one after another, that are contained as an argument to the directive. By default, it assumes that a failure of a condition should not indicate a failure of the update/invocation, but a parameter is provided to override this behavior. See suit-parameter-soft-failure (<xref target="suit-parameter-soft-failure"/>).</t>

</section>
<section anchor="reporting-policy"><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>

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

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

<t>At the completion of each command, a Manifest Processor <bcp14>MAY</bcp14> 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>

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

<t>The Reporting Engine consumes these information elements and decides whether to generate an entry in its report output and which information elements to include based on its internal policy decisions. The Reporting Engine uses the reporting policy provided to it by the SUIT Manifest Processor as a set of hints but <bcp14>MAY</bcp14> choose to ignore these hints and apply its own policy instead.</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 <bcp14>MUST</bcp14> receive one set of information elements 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 information elements it should aggregate into the Report.</t>

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

</section>
<section anchor="secparameters"><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>

<texttable>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>CDDL Structure</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>Vendor ID</c>
      <c>suit-parameter-vendor-identifier</c>
      <c><xref target="suit-parameter-vendor-identifier"/></c>
      <c>Class ID</c>
      <c>suit-parameter-class-identifier</c>
      <c><xref target="suit-parameter-class-identifier"/></c>
      <c>Device ID</c>
      <c>suit-parameter-device-identifier</c>
      <c><xref target="suit-parameter-device-identifier"/></c>
      <c>Image Digest</c>
      <c>suit-parameter-image-digest</c>
      <c><xref target="suit-parameter-image-digest"/></c>
      <c>Image Size</c>
      <c>suit-parameter-image-size</c>
      <c><xref target="suit-parameter-image-size"/></c>
      <c>Content</c>
      <c>suit-parameter-content</c>
      <c><xref target="suit-parameter-content"/></c>
      <c>Component Slot</c>
      <c>suit-parameter-component-slot</c>
      <c><xref target="suit-parameter-component-slot"/></c>
      <c>URI</c>
      <c>suit-parameter-uri</c>
      <c><xref target="suit-parameter-uri"/></c>
      <c>Source Component</c>
      <c>suit-parameter-source-component</c>
      <c><xref target="suit-parameter-source-component"/></c>
      <c>Invoke Args</c>
      <c>suit-parameter-invoke-args</c>
      <c><xref target="suit-parameter-invoke-args"/></c>
      <c>Fetch Arguments</c>
      <c>suit-parameter-fetch-arguments</c>
      <c><xref target="suit-parameter-fetch-arguments"/></c>
      <c>Strict Order</c>
      <c>suit-parameter-strict-order</c>
      <c><xref target="suit-parameter-strict-order"/></c>
      <c>Soft Failure</c>
      <c>suit-parameter-soft-failure</c>
      <c><xref target="suit-parameter-soft-failure"/></c>
      <c>Custom</c>
      <c>suit-parameter-custom</c>
      <c><xref target="suit-parameter-custom"/></c>
</texttable>

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

<section anchor="cbor-pen-uuid-namespace-identifier"><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 absolute OID encoding for the IANA PEN OID (1.3.6.1.4.1):</t>

<figure><artwork><![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></figure>

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

<figure><artwork><![CDATA[
NAMESPACE_CBOR_PEN = UUID5(NAMESPACE_OID, h'D86F452B06010401')
NAMESPACE_CBOR_PEN = 47fbdabb-f2e4-55f0-bb39-3620c2f6df4e
]]></artwork></figure>

</section>
<section anchor="uuid-identifiers"><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="I-D.ietf-uuidrev-rfc4122bis"/> UUIDs. These UUIDs are not human-readable and are therefore used for machine-based processing only.</t>

<t>A Recipient <bcp14>MAY</bcp14> 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 <bcp14>MUST NOT</bcp14> be used as assertions of identity. They are evaluated by identifier conditions (<xref target="identifier-conditions"/>).</t>

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

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

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

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

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

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

<t>UUIDs <bcp14>MUST</bcp14> be created according to versions 3, 4, or 5 of <xref target="I-D.ietf-uuidrev-rfc4122bis"/>. Versions 1 and 2 do not provide a tangible benefit over version 4 for this application.</t>

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

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

<t>In this case, the vendor domain name is a UTF-8 encoded string. Since UUID version 5
applies a digest, internationalization considerations are not applied. The native 
UTF-8 domain name is used.</t>

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

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

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

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

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

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

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

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

<t><list style="symbols">
  <t>A Private Enterprise Number</t>
  <t>A byte string containing a UUID <xref target="I-D.ietf-uuidrev-rfc4122bis"/></t>
</list></t>

<t>Private Enterprise Numbers are encoded as a relative OID, according to the definition in <xref target="RFC9090"/>. All PENs are relative to the IANA PEN: 1.3.6.1.4.1.</t>

</section>
<section anchor="suit-parameter-class-identifier"><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 <bcp14>MUST</bcp14> be constructed as described in <xref target="uuid-identifiers"/></t>

</section>
<section anchor="suit-parameter-device-identifier"><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 <bcp14>MUST</bcp14> be constructed as described in <xref target="uuid-identifiers"/></t>

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

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

</section>
<section anchor="suit-parameter-image-size"><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"><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 <bcp14>MUST</bcp14> be encoded as a positive integer.</t>

</section>
<section anchor="suit-parameter-content"><name>suit-parameter-content</name>

<t>A block of raw data for use with <xref target="suit-directive-write"/>. It contains a byte string of data to be written to a specified component ID in the same way as a fetch or a copy.</t>

<t>If data is encoded this way, it should be small, e.g. 10's of bytes. Large payloads, e.g. 1000's of bytes, written via this method might prevent the manifest from being held in memory during validation. Typical applications include small configuration parameters.</t>

<t>The size of payload embedded in suit-parameter-content impacts the security requirement defined in <xref target="RFC9124"/>, Section 4.3.21 REQ.SEC.MFST.CONST: Manifest Kept Immutable between Check and Use. Actual limitations on payload size for suit-parameter-content depend on the application, in particular the available memory that satisfies REQ.SEC.MFST.CONST. If the availability of tamper resistant memory is less than the manifest size, then REQ.SEC.MFST.CONST cannot be satisfied.</t>

<t>If suit-parameter-content is instantiated in a severable command sequence, then this becomes functionally very similar to an integrated payload, which may be a better choice.</t>

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

<t>A URI Reference <xref target="RFC3986"/> from which to fetch a resource. The encoding is the same as CBOR Tag 32, however the tag is omitted because it is implied by the context.
This document is only concerned with the transport of a URI which is 
intended for machine readable uses, not human readable uses.</t>

</section>
<section anchor="suit-parameter-source-component"><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"/>) or with suit-directive-swap (<xref target="suit-directive-swap"/>). The current Component, as set by suit-directive-set-component-index defines the destination, and suit-parameter-source-component defines the source.</t>

</section>
<section anchor="suit-parameter-invoke-args"><name>suit-parameter-invoke-args</name>

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

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

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

</section>
<section anchor="suit-parameter-strict-order"><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 <bcp14>MAY</bcp14> be set to False when the order of operations does not matter. When arriving at the end of a command sequence, ALL commands <bcp14>MUST</bcp14> have completed, regardless of the state of SUIT_Parameter_Strict_Order. If SUIT_Parameter_Strict_Order is returned to True, ALL preceding commands <bcp14>MUST</bcp14> complete before the next command is executed.</t>

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

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

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

<t>suit-parameter-soft-failure is scoped to the enclosing SUIT_Command_Sequence. Its value is discarded when the enclosing SUIT_Command_Sequence terminates and suit-parameter-soft-failure reverts to the value it had prior to the invocation of the SUIT_Command_Sequence. Nested SUIT_Command_Sequences do not inherit the enclosing sequence's suit-parameter-soft-failure. It <bcp14>MUST NOT</bcp14> be set outside of suit-directive-try-each or suit-directive-run-sequence, modifying suit-parameter-soft-failure outside of these circumstances causes an Abort.</t>

<t>When suit-directive-try-each is invoked, Soft Failure defaults to True in every SUIT_Command_Sequence in the suit-directive-try-each argument. An Update Author may choose to set Soft Failure to False if they require a failed condition in a sequence to force an Abort. When the enclosing SUIT_Command_Sequence terminates, suit-parameter-soft-failure reverts to the value it held before the SUIT_Command_Sequence was invoked.</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"><name>suit-parameter-custom</name>

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

<t>suit-parameter-custom <bcp14>MAY</bcp14> be consumed by any command, in an application-specific way, however if a suit-parameter-custom is absent, then all standardised suit-commands <bcp14>MUST</bcp14> execute correctly. In this respect, suit-parameter-custom <bcp14>MUST</bcp14> be treated as a hint by any standardised suit-command that consumes it.</t>

</section>
</section>
<section anchor="suitcondition"><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"/>. Conditions include:</t>

<texttable>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>CDDL Structure</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>Vendor Identifier</c>
      <c>suit-condition-vendor-identifier</c>
      <c><xref target="identifier-conditions"/></c>
      <c>Class Identifier</c>
      <c>suit-condition-class-identifier</c>
      <c><xref target="identifier-conditions"/></c>
      <c>Device Identifier</c>
      <c>suit-condition-device-identifier</c>
      <c><xref target="identifier-conditions"/></c>
      <c>Image Match</c>
      <c>suit-condition-image-match</c>
      <c><xref target="suit-condition-image-match"/></c>
      <c>Check Content</c>
      <c>suit-condition-check-content</c>
      <c><xref target="suit-condition-check-content"/></c>
      <c>Component Slot</c>
      <c>suit-condition-component-slot</c>
      <c><xref target="suit-condition-component-slot"/></c>
      <c>Abort</c>
      <c>suit-condition-abort</c>
      <c><xref target="suit-condition-abort"/></c>
      <c>Custom Condition</c>
      <c>suit-command-custom</c>
      <c><xref target="SUIT_Command_Custom"/></c>
</texttable>

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

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

<t>Each condition <bcp14>MUST</bcp14> report a result code on completion. If a condition reports failure, then the current sequence of commands <bcp14>MUST</bcp14> terminate. A subsequent command or command sequence <bcp14>MAY</bcp14> continue executing if suit-parameter-soft-failure (<xref target="suit-parameter-soft-failure"/>) is set. If a condition requires additional information, this <bcp14>MUST</bcp14> 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 <bcp14>MUST</bcp14> report a failure. If a Recipient encounters an unknown condition, it <bcp14>MUST</bcp14> report a failure.</t>

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

<section anchor="identifier-conditions"><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 UUID <xref target="I-D.ietf-uuidrev-rfc4122bis"/> that <bcp14>MUST</bcp14> have already been set as a parameter. The installing Recipient <bcp14>MUST</bcp14> match the specified UUID in order to consider the manifest valid. These identifiers are scoped by component in the manifest. Each component <bcp14>MAY</bcp14> 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 <bcp14>REQUIRED</bcp14> to implement. suit-condition-device-identifier is <bcp14>OPTIONAL</bcp14> to implement.</t>

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

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

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

</section>
<section anchor="suit-condition-check-content"><name>suit-condition-check-content</name>

<t>This directive compares the specified component identifier to the data indicated by suit-parameter-content. This functions similarly to suit-condition-image-match, however it does a direct, byte-by-byte comparison rather than a digest-based comparison. Because it is possible that an early stop to check-content could reveal information through timing, suit-condition-check-content <bcp14>MUST</bcp14> be constant time: no early exits.</t>

<t>The following pseudo-code described an example content checking algorithm:</t>

<figure><artwork><![CDATA[
// content & component must be same length
// returns 0 for match
int check_content(content, component, length) {
    int residual = 0;
    for (i = 0; i < length; i++) {
        residual |= content[i] ^ component[i];
    }
    return residual;
}
]]></artwork></figure>

</section>
<section anchor="suit-condition-component-slot"><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"/>). This condition allows a manifest to select between several images to match a target slot.</t>

</section>
<section anchor="suit-condition-abort"><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"/>).</t>

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

<texttable>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>CDDL Structure</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>Set Component Index</c>
      <c>suit-directive-set-component-index</c>
      <c><xref target="suit-directive-set-component-index"/></c>
      <c>Try Each</c>
      <c>suit-directive-try-each</c>
      <c><xref target="suit-directive-try-each"/></c>
      <c>Override Parameters</c>
      <c>suit-directive-override-parameters</c>
      <c><xref target="suit-directive-override-parameters"/></c>
      <c>Fetch</c>
      <c>suit-directive-fetch</c>
      <c><xref target="suit-directive-fetch"/></c>
      <c>Copy</c>
      <c>suit-directive-copy</c>
      <c><xref target="suit-directive-copy"/></c>
      <c>Write</c>
      <c>suit-directive-write</c>
      <c><xref target="suit-directive-write"/></c>
      <c>Invoke</c>
      <c>suit-directive-invoke</c>
      <c><xref target="suit-directive-invoke"/></c>
      <c>Run Sequence</c>
      <c>suit-directive-run-sequence</c>
      <c><xref target="suit-directive-run-sequence"/></c>
      <c>Swap</c>
      <c>suit-directive-swap</c>
      <c><xref target="suit-directive-swap"/></c>
      <c>Custom Directive</c>
      <c>suit-command-custom</c>
      <c><xref target="SUIT_Command_Custom"/></c>
</texttable>

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

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

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

<t>Set Component Index defines the component to which successive directives and conditions will apply. The Set Component Index arguments are described in <xref target="index-true"/>.</t>

<t>If the following commands apply to ONE component, an unsigned integer index into the component list is used. If the following commands apply to ALL components, then the boolean value "True" is used instead of an index. If the following commands apply to more than one, but not all components, then an array of unsigned integer indices into the component list is used.</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"><name>suit-directive-try-each</name>

<t>This command runs several SUIT_Command_Sequence instances, one after another, in a strict order, until one succeeds or the list is exhausted. Use this command to implement a "try/catch-try/catch" sequence. Manifest processors <bcp14>MAY</bcp14> implement this command.</t>

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

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

</section>
<section anchor="suit-directive-override-parameters"><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"/>.</t>

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

</section>
<section anchor="suit-directive-fetch"><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>

<t>The size and digest of the payload to be fetched are typically set prior to the invokation of suit-directive-fetch. If both suit-parameter-image-digest and suit-parameter-image-size are set for the current component when suit-directive-fetch is invoked, the Manifest Processor <bcp14>MAY</bcp14> choose to optimize the fetch by:</t>

<t><list style="symbols">
  <t>Checking if the target component matches the digest supplied before fetching.</t>
  <t>Checking if another component matches the digest supplied before fetching.</t>
</list></t>

<t>The exact mechanisms of these optimizations are implementation defined.</t>

</section>
<section anchor="suit-directive-copy"><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"/> 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"/>).</t>

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

<t>The size and digest of the payload to be fetched are typically set prior to the invokation of suit-directive-copy. If both suit-parameter-image-digest and suit-parameter-image-size are set for the current component when suit-directive-copy is invoked, the Manifest Processor <bcp14>MAY</bcp14> choose to optimize the copy by:</t>

<t><list style="symbols">
  <t>Checking if the target component matches the digest supplied before copying.</t>
  <t>Checking if the source component matches the digest supplied before copying.</t>
</list></t>

<t>The first optimization avoids a copy operation when the data is the same. The second optimization avoids a copy of a corrupted image. The exact mechanisms of these optimizations are implementation defined.</t>

</section>
<section anchor="suit-directive-write"><name>suit-directive-write</name>

<t>This directive writes a small block of data, specified in <xref target="suit-parameter-content"/>, to a component.</t>

<t>Encoding Considerations: Careful consideration must be taken to determine whether it is more appropriate to use an integrated payload or to use <xref target="suit-parameter-content"/> for a particular application. While the encoding of suit-directive-write is smaller than an integrated payload, a large suit-parameter-content payload may prevent the manifest processor from holding the command sequence in memory while executing it.</t>

</section>
<section anchor="suit-directive-invoke"><name>suit-directive-invoke</name>

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

<t>If the executable code at Component Index is constructed in such a way that it does not unload the manifest processor, then the manifest processor <bcp14>MAY</bcp14> 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"><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. This also allows a sequence of instructions to be iterated over, once for each current component index, when component-index = true or component-index = list. See <xref target="index-true"/>.</t>

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

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

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

</section>
<section anchor="suit-directive-swap"><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>

</section>
</section>
<section anchor="SUIT_Command_Custom"><name>suit-command-custom</name>

<t>suit-command-custom describes any experimental, proprietary, or application specific condition or directive. This is encoded as a negative integer, chosen by the firmware developer. If additional information must be provided, it should be encoded in a custom parameter (as described in <xref target="secparameters"/>). Any number of custom commands is permitted. SUIT_Command_Custom is <bcp14>OPTIONAL</bcp14> to implement.</t>

</section>
<section anchor="integrity-checks"><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"/>.</t>

</section>
</section>
<section anchor="severable-fields"><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>At time of manifest creation, the Author <bcp14>MAY</bcp14> chose to make a manifest element severable by removing it from the manifest, encoding it in a bstr, and placing a SUIT_Digest of the bstr in the manifest so that it can still be authenticated. Making an element severable changes the digest of the manifest, so the signature <bcp14>MUST</bcp14> be computed after manifest elements are made severable. Only Manifest Elements with corresponding elements in the SUIT_Envelope can be made severable (see <xref target="iana-envelope"/> for SUIT_Envelope elements). The SUIT_Digest typically consumes 4 bytes more than the size of the raw digest, therefore elements smaller than (Digest Bits)/8 + 4 <bcp14>SHOULD NOT</bcp14> be severable. Elements larger than (Digest Bits)/8 + 4 <bcp14>MAY</bcp14> be severable, while elements that are much larger than (Digest Bits)/8 + 4 <bcp14>SHOULD</bcp14> 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"><name>Access Control Lists</name>

<t>SUIT Manifest Processors are <bcp14>RECOMMENDED</bcp14> to use one of the following models for managing permissions in the manifest.</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"><name>SUIT Digest Container</name>

<t>The SUIT digest is a CBOR array 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 found in the IANA "COSE Algorithms" registry <xref target="COSE_Alg"/>, which was created by <xref target="RFC9054"/>. SHA-256 (-16) <bcp14>MUST</bcp14> be implemented by all Manifest Processors.</t>

<t>Any other algorithm defined in the IANA "COSE Algorithms" registry, such as SHA-512 (-44), <bcp14>MAY</bcp14> be implemented in a Manifest Processor.</t>

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

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

<t><list style="symbols">
  <t>allocate CBOR tag 107 (suggested) in the "CBOR Tags" registry for the SUIT Envelope.</t>
  <t>allocate CBOR tag 1070 (suggested) in the "CBOR Tags" registry for the SUIT Manifest.</t>
  <t>allocate media type application/suit-envelope in the "Media Types" registry, see below.</t>
  <t>setup several registries as described below.</t>
</list></t>

<t>IANA is requested to create a new category for Software Update for the Internet of Things (SUIT)
and a page within this category for SUIT manifests.</t>

<t>IANA is also requested to create several registries defined in the subsections below.</t>

<t>For each registry, values 0-255 are Standards Action and 256 or greater are Specification Required. Negative values -255 to 0 are Standards Action, and -256 and lower are Private Use.</t>

<t>New entries to those registries need to provide a label, a name and a reference to a specification that describes the functionality. More guidance on the expert review can be found below.</t>

<section anchor="iana-envelope"><name>SUIT Envelope Elements</name>

<t>IANA is requested to create a new registry for SUIT envelope elements.</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>Reserved</c>
      <c>Unset Detection</c>
      <c>1</c>
      <c>Reserved</c>
      <c>Future Delegation</c>
      <c>2</c>
      <c>Authentication Wrapper</c>
      <c><xref target="authentication-info"/> of [TBD: this document]</c>
      <c>3</c>
      <c>Manifest</c>
      <c><xref target="manifest-structure"/> of [TBD: this document]</c>
      <c>16</c>
      <c>Payload Fetch</c>
      <c><xref target="manifest-commands"/> of [TBD: this document]</c>
      <c>17</c>
      <c>Payload Installation</c>
      <c><xref target="manifest-commands"/> of [TBD: this document]</c>
      <c>23</c>
      <c>Text Description</c>
      <c><xref target="manifest-digest-text"/> of [TBD: this document]</c>
</texttable>

</section>
<section anchor="suit-manifest-elements"><name>SUIT Manifest Elements</name>

<t>IANA is requested to create a new registry for SUIT manifest elements.</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>Reserved</c>
      <c>Unset Detection</c>
      <c>1</c>
      <c>Encoding Version</c>
      <c><xref target="manifest-version"/> of [TBD: this document]</c>
      <c>2</c>
      <c>Sequence Number</c>
      <c><xref target="manifest-seqnr"/> of [TBD: this document]</c>
      <c>3</c>
      <c>Common Data</c>
      <c><xref target="manifest-common"/> of [TBD: this document]</c>
      <c>4</c>
      <c>Reference URI</c>
      <c><xref target="manifest-reference-uri"/> of [TBD: this document]</c>
      <c>7</c>
      <c>Image Validation</c>
      <c><xref target="manifest-commands"/> of [TBD: this document]</c>
      <c>8</c>
      <c>Image Loading</c>
      <c><xref target="manifest-commands"/> of [TBD: this document]</c>
      <c>9</c>
      <c>Image Invocation</c>
      <c><xref target="manifest-commands"/> of [TBD: this document]</c>
      <c>16</c>
      <c>Payload Fetch</c>
      <c><xref target="manifest-commands"/> of [TBD: this document]</c>
      <c>20</c>
      <c>Payload Installation</c>
      <c><xref target="manifest-commands"/> of [TBD: this document]</c>
      <c>23</c>
      <c>Text Description</c>
      <c><xref target="manifest-digest-text"/> of [TBD: this document]</c>
</texttable>

</section>
<section anchor="suit-common-elements"><name>SUIT Common Elements</name>

<t>IANA is requested to create a new registry for SUIT common elements.</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>Reserved</c>
      <c>Unset Detection</c>
      <c>2</c>
      <c>Component Identifiers</c>
      <c><xref target="manifest-common"/> of [TBD: this document]</c>
      <c>4</c>
      <c>Common Command Sequence</c>
      <c><xref target="manifest-common"/> of [TBD: this document]</c>
</texttable>

</section>
<section anchor="suit-commands"><name>SUIT Commands</name>

<t>IANA is requested to create a new registry for SUIT commands.</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>Reserved</c>
      <c>Unset Detection</c>
      <c>1</c>
      <c>Vendor Identifier</c>
      <c><xref target="identifier-conditions"/> of [TBD: this document]</c>
      <c>2</c>
      <c>Class Identifier</c>
      <c><xref target="identifier-conditions"/> of [TBD: this document]</c>
      <c>3</c>
      <c>Image Match</c>
      <c><xref target="suit-condition-image-match"/> of [TBD: this document]</c>
      <c>5</c>
      <c>Component Slot</c>
      <c><xref target="suit-condition-component-slot"/> of [TBD: this document]</c>
      <c>6</c>
      <c>Check Content</c>
      <c><xref target="suit-condition-check-content"/> of [TBD: this document]</c>
      <c>12</c>
      <c>Set Component Index</c>
      <c><xref target="suit-directive-set-component-index"/> of [TBD: this document]</c>
      <c>14</c>
      <c>Abort</c>
      <c>&#160;</c>
      <c>15</c>
      <c>Try Each</c>
      <c><xref target="suit-directive-try-each"/> of [TBD: this document]</c>
      <c>18</c>
      <c>Write Content</c>
      <c><xref target="suit-directive-write"/> of [TBD: this document]</c>
      <c>20</c>
      <c>Override Parameters</c>
      <c><xref target="suit-directive-override-parameters"/> of [TBD: this document]</c>
      <c>21</c>
      <c>Fetch</c>
      <c><xref target="suit-directive-fetch"/> of [TBD: this document]</c>
      <c>22</c>
      <c>Copy</c>
      <c><xref target="suit-directive-copy"/> of [TBD: this document]</c>
      <c>23</c>
      <c>Invoke</c>
      <c><xref target="suit-directive-invoke"/> of [TBD: this document]</c>
      <c>24</c>
      <c>Device Identifier</c>
      <c><xref target="identifier-conditions"/> of [TBD: this document]</c>
      <c>31</c>
      <c>Swap</c>
      <c><xref target="suit-directive-swap"/> of [TBD: this document]</c>
      <c>32</c>
      <c>Run Sequence</c>
      <c><xref target="suit-directive-run-sequence"/> of [TBD: this document]</c>
      <c>&lt; -255</c>
      <c>Custom Command</c>
      <c><xref target="SUIT_Command_Custom"/> of [TBD: this document]</c>
</texttable>

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

<t>IANA is requested to create a new registry for SUIT parameters.</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>Reserved</c>
      <c>Unset Detection</c>
      <c>1</c>
      <c>Vendor ID</c>
      <c><xref target="suit-parameter-vendor-identifier"/> of [TBD: this document]</c>
      <c>2</c>
      <c>Class ID</c>
      <c><xref target="suit-parameter-class-identifier"/> of [TBD: this document]</c>
      <c>3</c>
      <c>Image Digest</c>
      <c><xref target="suit-parameter-image-digest"/> of [TBD: this document]</c>
      <c>5</c>
      <c>Component Slot</c>
      <c><xref target="suit-parameter-component-slot"/> of [TBD: this document]</c>
      <c>12</c>
      <c>Strict Order</c>
      <c><xref target="suit-parameter-strict-order"/> of [TBD: this document]</c>
      <c>13</c>
      <c>Soft Failure</c>
      <c><xref target="suit-parameter-soft-failure"/> of [TBD: this document]</c>
      <c>14</c>
      <c>Image Size</c>
      <c><xref target="suit-parameter-image-size"/> of [TBD: this document]</c>
      <c>18</c>
      <c>Content</c>
      <c><xref target="suit-parameter-content"/> of [TBD: this document]</c>
      <c>21</c>
      <c>URI</c>
      <c><xref target="suit-parameter-uri"/> of [TBD: this document]</c>
      <c>22</c>
      <c>Source Component</c>
      <c><xref target="suit-parameter-source-component"/> of [TBD: this document]</c>
      <c>23</c>
      <c>Invoke Args</c>
      <c><xref target="suit-parameter-invoke-args"/> of [TBD: this document]</c>
      <c>24</c>
      <c>Device ID</c>
      <c><xref target="suit-parameter-device-identifier"/> of [TBD: this document]</c>
      <c>&lt; -255</c>
      <c>Custom</c>
      <c><xref target="suit-parameter-custom"/> of [TBD: this document]</c>
</texttable>

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

<t>IANA is requested to create a new registry for SUIT text values.</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>Reserved</c>
      <c>Unset Detection</c>
      <c>1</c>
      <c>Manifest Description</c>
      <c><xref target="manifest-digest-text"/> of [TBD: this document]</c>
      <c>2</c>
      <c>Update Description</c>
      <c><xref target="manifest-digest-text"/> of [TBD: this document]</c>
      <c>3</c>
      <c>Manifest JSON Source</c>
      <c><xref target="manifest-digest-text"/> of [TBD: this document]</c>
      <c>4</c>
      <c>Manifest YAML Source</c>
      <c><xref target="manifest-digest-text"/> of [TBD: this document]</c>
      <c>&lt; -255</c>
      <c>Custom</c>
      <c><xref target="manifest-digest-text"/> of [TBD: this document]</c>
</texttable>

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

<t>IANA is requested to create a new registry for SUIT component text values.</t>

<texttable>
      <ttcol align='left'>Label</ttcol>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <c>0</c>
      <c>Reserved</c>
      <c>Unset Detection</c>
      <c>1</c>
      <c>Vendor Name</c>
      <c><xref target="manifest-digest-text"/> of [TBD: this document]</c>
      <c>2</c>
      <c>Model Name</c>
      <c><xref target="manifest-digest-text"/> of [TBD: this document]</c>
      <c>3</c>
      <c>Vendor Domain</c>
      <c><xref target="manifest-digest-text"/> of [TBD: this document]</c>
      <c>4</c>
      <c>Model Info</c>
      <c><xref target="manifest-digest-text"/> of [TBD: this document]</c>
      <c>5</c>
      <c>Component Description</c>
      <c><xref target="manifest-digest-text"/> of [TBD: this document]</c>
      <c>6</c>
      <c>Component Version</c>
      <c><xref target="manifest-digest-text"/> of [TBD: this document]</c>
      <c>7</c>
      <c>Component Version Required</c>
      <c><xref target="manifest-digest-text"/> of [TBD: this document]</c>
      <c>&lt; -255</c>
      <c>Custom</c>
      <c><xref target="manifest-digest-text"/> of [TBD: this document]</c>
</texttable>

</section>
<section anchor="expert-review-instructions"><name>Expert Review Instructions</name>

<t>The IANA registries established in this document allow values to be added
based on expert review. This section gives some general guidelines for
what the experts should be looking for, but they are being designated
as experts for a reason, so they should be given substantial
latitude.</t>

<t>Expert reviewers should take into consideration the following points:</t>

<t><list style="symbols">
  <t>Point squatting should be discouraged.  Reviewers are encouraged
   to get sufficient information for registration requests to ensure
   that the usage is not going to duplicate one that is already
   registered, and that the point is likely to be used in
   deployments.  The zones tagged as private use
   are intended for testing purposes and closed environments;
   code points in other ranges should not be assigned for testing.</t>
  <t>Specifications are required for the standards track range of point
   assignment.  Specifications should exist for  all other ranges,
   but early assignment before a specification is
   available is considered to be permissible.
   When specifications are not provided, the description provided
   needs to have sufficient information to identify what the point is
   being used for.</t>
  <t>Experts should take into account the expected usage of fields when
   approving point assignment.  The fact that there is a range for
   standards track documents does not mean that a standards track
   document cannot have points assigned outside of that range.  The
   length of the encoded value should be weighed against how many
   code points of that length are left, the size of device it will be
   used on, and the number of code points left that encode to that
   size.</t>
</list></t>

</section>
<section anchor="media-type-registration"><name>Media Type Registration</name>

<t>This section registers the 'application/suit-envelope+cose' media type in the
"Media Types" registry.  This media type are used to indicate that
the content is a SUIT envelope.</t>

<figure><artwork><![CDATA[
      Type name: application

      Subtype name: suit-envelope+cose

      Required parameters: N/A

      Optional parameters: N/A

      Encoding considerations: binary

      Security considerations: See the Security Considerations section
      of [[This RFC]].

      Interoperability considerations: N/A

      Published specification: [[This RFC]]

      Applications that use this media type: Primarily used for
        Firmware and software updates although the content may
        also contain configuration data and other information
        related to software and firmware.

      Fragment identifier considerations: N/A

      Additional information:

      *  Deprecated alias names for this type: N/A

      *  Magic number(s): N/A

      *  File extension(s): cbor, suit

      *  Macintosh file type code(s): N/A

      Person & email address to contact for further information:
      iesg@ietf.org

      Intended usage: COMMON

      Restrictions on usage: N/A

      Author: Brendan Moran, <brendan.moran.ietf@gmail.com>

      Change Controller: IESG

      Provisional registration?  No
]]></artwork></figure>

</section>
</section>
<section anchor="security-considerations"><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"/> and in the information model <xref target="RFC9124"/> documents.</t>

<t>The security requirements outlined in <xref target="RFC9124"/> are addressed by this draft and its extensions.
The specific mapping of requirements and information elements in <xref target="RFC9124"/> to manifest data structures is
outlined in the table below:</t>

<texttable>
      <ttcol align='left'>Security Requirement</ttcol>
      <ttcol align='left'>Information Element</ttcol>
      <ttcol align='left'>Implementation</ttcol>
      <c>REQ.SEC.SEQUENCE</c>
      <c>Monotonic Sequence Number</c>
      <c><xref target="manifest-seqnr"/></c>
      <c>REQ.SEC.COMPATIBLE</c>
      <c>Vendor ID Condition, Class ID Condition</c>
      <c><xref target="identifier-conditions"/></c>
      <c>REQ.SEC.EXP</c>
      <c>Expiration Time</c>
      <c><xref target="I-D.ietf-suit-update-management"/></c>
      <c>REQ.SEC.AUTHENTIC</c>
      <c>Signature, Payload Digests</c>
      <c><xref target="authentication-info"/>, <xref target="suit-condition-image-match"/></c>
      <c>REQ.SEC.AUTH.IMG_TYPE</c>
      <c>Payload Format</c>
      <c><xref target="I-D.ietf-suit-update-management"/></c>
      <c>REQ.SEC.AUTH.IMG_LOC</c>
      <c>Storage Location</c>
      <c><xref target="suit-component-identifier"/></c>
      <c>REQ.SEC.AUTH.REMOTE_LOC</c>
      <c>Payload Indicator</c>
      <c><xref target="suit-parameter-uri"/></c>
      <c>REQ.SEC.AUTH.EXEC</c>
      <c>Payload Digests, Size</c>
      <c><xref target="suit-parameter-image-digest"/>, <xref target="suit-parameter-image-size"/></c>
      <c>REQ.SEC.AUTH.PRECURSOR</c>
      <c>Precursor Image Digest</c>
      <c><xref target="suit-parameter-image-digest"/></c>
      <c>REQ.SEC.AUTH.COMPATIBILITY</c>
      <c>Authenticated Vendor and Class IDs</c>
      <c><xref target="suit-parameter-vendor-identifier"/>, <xref target="suit-parameter-class-identifier"/></c>
      <c>REQ.SEC.RIGHTS</c>
      <c>Signature</c>
      <c><xref target="authentication-info"/>, <xref target="access-control-lists"/></c>
      <c>REQ.SEC.IMG.CONFIDENTIALITY</c>
      <c>Encryption Wrapper</c>
      <c><xref target="I-D.ietf-suit-firmware-encryption"/></c>
      <c>REQ.SEC.ACCESS_CONTROL: Access Control</c>
      <c>None</c>
      <c><xref target="access-control-lists"/></c>
      <c>REQ.SEC.MFST.CONFIDENTIALITY</c>
      <c>Manifest Encryption Wrapper / Transport Security</c>
      <c><xref target="I-D.ietf-suit-firmware-encryption"/></c>
      <c>REQ.SEC.IMG.COMPLETE_DIGEST</c>
      <c>Payload Digests</c>
      <c>Implementation Consideration</c>
      <c>REQ.SEC.REPORTING</c>
      <c>None</c>
      <c><xref target="I-D.ietf-suit-report"/>, <xref target="RFC9334"/></c>
      <c>REQ.SEC.KEY.PROTECTION</c>
      <c>None</c>
      <c>Implementation Consideration</c>
      <c>REQ.SEC.KEY.ROTATION</c>
      <c>None</c>
      <c><xref target="I-D.tschofenig-cose-cwt-chain"/>, Implementation Consideration</c>
      <c>REQ.SEC.MFST.CHECK</c>
      <c>None</c>
      <c>Deployment Consideration</c>
      <c>REQ.SEC.MFST.TRUSTED</c>
      <c>None</c>
      <c>Deployment Consideration</c>
      <c>REQ.SEC.MFST.CONST</c>
      <c>None</c>
      <c>Implementation Consideration</c>
      <c>REQ.USE.MFST.PRE_CHECK</c>
      <c>Additional Installation Instructions</c>
      <c><xref target="I-D.ietf-suit-update-management"/></c>
      <c>REQ.USE.MFST.TEXT</c>
      <c>Manifest Text Information</c>
      <c><xref target="manifest-digest-text"/></c>
      <c>REQ.USE.MFST.OVERRIDE_REMOTE</c>
      <c>Aliases</c>
      <c><xref target="RFC3986"/> Relative URIs, <xref target="I-D.ietf-suit-trust-domains"/></c>
      <c>REQ.USE.MFST.COMPONENT</c>
      <c>Dependencies, StorageIdentifier, ComponentIdentifier</c>
      <c><xref target="suit-component-identifier">SUIT_Component_Identifier</xref>, <xref target="I-D.ietf-suit-trust-domains"/></c>
      <c>REQ.USE.MFST.MULTI_AUTH</c>
      <c>Signature</c>
      <c><xref target="authentication-info"/></c>
      <c>REQ.USE.IMG.FORMAT</c>
      <c>Payload Format</c>
      <c><xref target="I-D.ietf-suit-update-management"/></c>
      <c>REQ.USE.IMG.NESTED</c>
      <c>Processing Steps</c>
      <c><xref target="I-D.ietf-suit-firmware-encryption"/> (Encryption Wrapper), <xref target="I-D.ietf-suit-update-management"/> (Payload Format)</c>
      <c>REQ.USE.IMG.VERSIONS</c>
      <c>Required Image Version List</c>
      <c><xref target="I-D.ietf-suit-update-management"/></c>
      <c>REQ.USE.IMG.SELECT</c>
      <c>XIP Address</c>
      <c><xref target="suit-condition-component-slot"/></c>
      <c>REQ.USE.EXEC</c>
      <c>Runtime Metadata</c>
      <c><xref target="manifest-commands"/> (suit-invoke)</c>
      <c>REQ.USE.LOAD</c>
      <c>Load-Time Metadata</c>
      <c><xref target="manifest-commands"/> (suit-load)</c>
      <c>REQ.USE.PAYLOAD</c>
      <c>Payload</c>
      <c><xref target="template-integrated-payload"/></c>
      <c>REQ.USE.PARSE</c>
      <c>Simple Parsing</c>
      <c><xref target="command-behavior"/></c>
      <c>REQ.USE.DELEGATION</c>
      <c>Delegation Chain</c>
      <c><xref target="I-D.tschofenig-cose-cwt-chain"/></c>
</texttable>

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

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

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

<t>We would like to thank our responsible area director, Roman Danyliw, for his detailed review.
Finally, we would like to thank our SUIT working group chairs (Dave Thaler, David Waltermire, Russ Housley)
for their feedback and support.</t>

</section>


  </middle>

  <back>


<references title='References' anchor="sec-combined-references">

    <references title='Normative References' anchor="sec-normative-references">




<reference anchor="I-D.ietf-uuidrev-rfc4122bis">
   <front>
      <title>Universally Unique IDentifiers (UUID)</title>
      <author fullname="Kyzer R. Davis" initials="K. R." surname="Davis">
         <organization>Cisco Systems</organization>
      </author>
      <author fullname="Brad Peabody" initials="B." surname="Peabody">
         <organization>Uncloud</organization>
      </author>
      <author fullname="P. Leach" initials="P." surname="Leach">
         <organization>University of Washington</organization>
      </author>
      <date day="6" month="November" year="2023"/>
      <abstract>
	 <t>   This specification defines the UUIDs (Universally Unique IDentifiers)
   and the UUID Uniform Resource Name (URN) namespace.  UUIDs are also
   known as GUIDs (Globally Unique IDentifiers).  A UUID is 128 bits
   long and is intended to guarantee uniqueness across space and time.
   UUIDs were originally used in the Apollo Network Computing System and
   later in the Open Software Foundation&#x27;s (OSF) Distributed Computing
   Environment (DCE), and then in Microsoft Windows platforms.

   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.  This document obsoletes RFC4122.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-uuidrev-rfc4122bis-14"/>
   
</reference>

<reference anchor="RFC9052">
  <front>
    <title>CBOR Object Signing and Encryption (COSE): Structures and Process</title>
    <author fullname="J. Schaad" initials="J." surname="Schaad"/>
    <date month="August" year="2022"/>
    <abstract>
      <t>Concise Binary Object Representation (CBOR) is a data format designed for small code size and small message size. There is a need to be able to define basic security services 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>
      <t>This document, along with RFC 9053, obsoletes RFC 8152.</t>
    </abstract>
  </front>
  <seriesInfo name="STD" value="96"/>
  <seriesInfo name="RFC" value="9052"/>
  <seriesInfo name="DOI" value="10.17487/RFC9052"/>
</reference>

<reference anchor="RFC3986">
  <front>
    <title>Uniform Resource Identifier (URI): Generic Syntax</title>
    <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
    <author fullname="R. Fielding" initials="R." surname="Fielding"/>
    <author fullname="L. Masinter" initials="L." surname="Masinter"/>
    <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="RFC8949">
  <front>
    <title>Concise Binary Object Representation (CBOR)</title>
    <author fullname="C. Bormann" initials="C." surname="Bormann"/>
    <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
    <date month="December" year="2020"/>
    <abstract>
      <t>The Concise Binary Object Representation (CBOR) 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. These design goals make it different from earlier binary serializations such as ASN.1 and MessagePack.</t>
      <t>This document obsoletes RFC 7049, providing editorial improvements, new details, and errata fixes while keeping full compatibility with the interchange format of RFC 7049. It does not create a new version of the format.</t>
    </abstract>
  </front>
  <seriesInfo name="STD" value="94"/>
  <seriesInfo name="RFC" value="8949"/>
  <seriesInfo name="DOI" value="10.17487/RFC8949"/>
</reference>

<reference anchor="RFC9019">
  <front>
    <title>A Firmware Update Architecture for Internet of Things</title>
    <author fullname="B. Moran" initials="B." surname="Moran"/>
    <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
    <author fullname="D. Brown" initials="D." surname="Brown"/>
    <author fullname="M. Meriac" initials="M." surname="Meriac"/>
    <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="RFC9124">
  <front>
    <title>A Manifest Information Model for Firmware Updates in Internet of Things (IoT) Devices</title>
    <author fullname="B. Moran" initials="B." surname="Moran"/>
    <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
    <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
    <date month="January" year="2022"/>
    <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 lifetime requires such an update mechanism to fix vulnerabilities, update configuration settings, and add new functionality.</t>
      <t>One component of such a firmware update is a concise and machine-processable metadata 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="RFC" value="9124"/>
  <seriesInfo name="DOI" value="10.17487/RFC9124"/>
</reference>


<reference anchor="I-D.ietf-suit-mti">
   <front>
      <title>Mandatory-to-Implement Algorithms for Authors and Recipients of Software Update for the Internet of Things manifests</title>
      <author fullname="Brendan Moran" initials="B." surname="Moran">
         <organization>Arm Limited</organization>
      </author>
      <author fullname="Øyvind Rønningstad" initials="O." surname="Rønningstad">
         <organization>Nordic Semiconductor</organization>
      </author>
      <author fullname="Akira Tsukamoto" initials="A." surname="Tsukamoto">
         <organization>ALAXALA Networks Corp.</organization>
      </author>
      <date day="8" month="July" year="2024"/>
      <abstract>
	 <t>   This document specifies algorithm profiles for SUIT manifest parsers
   and authors to ensure better interoperability.  These profiles apply
   specifically to a constrained node software update use case.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-suit-mti-06"/>
   
</reference>

<reference anchor="RFC9090">
  <front>
    <title>Concise Binary Object Representation (CBOR) Tags for Object Identifiers</title>
    <author fullname="C. Bormann" initials="C." surname="Bormann"/>
    <date month="July" 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.</t>
      <t>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="RFC" value="9090"/>
  <seriesInfo name="DOI" value="10.17487/RFC9090"/>
</reference>

<reference anchor="RFC9054">
  <front>
    <title>CBOR Object Signing and Encryption (COSE): Hash Algorithms</title>
    <author fullname="J. Schaad" initials="J." surname="Schaad"/>
    <date month="August" year="2022"/>
    <abstract>
      <t>The CBOR Object Signing and Encryption (COSE) syntax (see RFC 9052) 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 identification of an X.509 certificate or other object by the use of a fingerprint. This document defines hash algorithms that are identified by COSE algorithm identifiers.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9054"/>
  <seriesInfo name="DOI" value="10.17487/RFC9054"/>
</reference>

<reference anchor="RFC2119">
  <front>
    <title>Key words for use in RFCs to Indicate Requirement Levels</title>
    <author fullname="S. Bradner" initials="S." surname="Bradner"/>
    <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">
  <front>
    <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
    <author fullname="B. Leiba" initials="B." surname="Leiba"/>
    <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 title='Informative References' anchor="sec-informative-references">



<reference anchor="RFC9397">
  <front>
    <title>Trusted Execution Environment Provisioning (TEEP) Architecture</title>
    <author fullname="M. Pei" initials="M." surname="Pei"/>
    <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
    <author fullname="D. Thaler" initials="D." surname="Thaler"/>
    <author fullname="D. Wheeler" initials="D." surname="Wheeler"/>
    <date month="July" year="2023"/>
    <abstract>
      <t>A Trusted Execution Environment (TEE) is an environment that enforces the following: any code within the environment cannot be tampered with, and any data used by such code cannot be read or tampered with by any code outside the environment. This architecture document discusses the motivation for designing and standardizing a protocol for managing the lifecycle of Trusted Applications running inside such a TEE.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9397"/>
  <seriesInfo name="DOI" value="10.17487/RFC9397"/>
</reference>

<reference anchor="RFC9334">
  <front>
    <title>Remote ATtestation procedureS (RATS) Architecture</title>
    <author fullname="H. Birkholz" initials="H." surname="Birkholz"/>
    <author fullname="D. Thaler" initials="D." surname="Thaler"/>
    <author fullname="M. Richardson" initials="M." surname="Richardson"/>
    <author fullname="N. Smith" initials="N." surname="Smith"/>
    <author fullname="W. Pan" initials="W." surname="Pan"/>
    <date month="January" year="2023"/>
    <abstract>
      <t>In network protocol exchanges, it is often useful for one end of a communication to know whether the other end is in an intended operating state. This document provides an architectural overview of the entities involved that make such tests possible through the process of generating, conveying, and evaluating evidentiary Claims. It provides a model that is neutral toward processor architectures, the content of Claims, and protocols.</t>
    </abstract>
  </front>
  <seriesInfo name="RFC" value="9334"/>
  <seriesInfo name="DOI" value="10.17487/RFC9334"/>
</reference>


<reference anchor="I-D.ietf-suit-firmware-encryption">
   <front>
      <title>Encrypted Payloads in SUIT Manifests</title>
      <author fullname="Hannes Tschofenig" initials="H." surname="Tschofenig">
         </author>
      <author fullname="Russ Housley" initials="R." surname="Housley">
         <organization>Vigil Security, LLC</organization>
      </author>
      <author fullname="Brendan Moran" initials="B." surname="Moran">
         <organization>Arm Limited</organization>
      </author>
      <author fullname="David Brown" initials="D." surname="Brown">
         <organization>Linaro</organization>
      </author>
      <author fullname="Ken Takayama" initials="K." surname="Takayama">
         <organization>SECOM CO., LTD.</organization>
      </author>
      <date day="8" month="July" year="2024"/>
      <abstract>
	 <t>   This document specifies techniques for encrypting software, firmware,
   machine learning models, and personalization data by utilizing the
   IETF SUIT manifest.  Key agreement is provided by ephemeral-static
   (ES) Diffie-Hellman (DH) and AES Key Wrap (AES-KW).  ES-DH uses
   public key cryptography while AES-KW uses a pre-shared key.
   Encryption of the plaintext is accomplished with conventional
   symmetric key cryptography.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-suit-firmware-encryption-20"/>
   
</reference>


<reference anchor="I-D.ietf-suit-update-management">
   <front>
      <title>Update Management Extensions for Software Updates for Internet of Things (SUIT) Manifests</title>
      <author fullname="Brendan Moran" initials="B." surname="Moran">
         <organization>Arm Limited</organization>
      </author>
      <author fullname="Ken Takayama" initials="K." surname="Takayama">
         <organization>SECOM CO., LTD.</organization>
      </author>
      <date day="8" month="July" year="2024"/>
      <abstract>
	 <t>   This specification describes extensions to the SUIT manifest format
   defined in [I-D.ietf-suit-manifest].  These extensions allow an
   update author, update distributor or device operator to more
   precisely control the distribution and installation of updates to
   devices.  These extensions also provide a mechanism to inform a
   management system of Software Identifier and Software Bill Of
   Materials information about an updated device.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-suit-update-management-07"/>
   
</reference>


<reference anchor="I-D.ietf-suit-trust-domains">
   <front>
      <title>SUIT Manifest Extensions for Multiple Trust Domains</title>
      <author fullname="Brendan Moran" initials="B." surname="Moran">
         <organization>Arm Limited</organization>
      </author>
      <author fullname="Ken Takayama" initials="K." surname="Takayama">
         <organization>SECOM CO., LTD.</organization>
      </author>
      <date day="6" month="July" year="2024"/>
      <abstract>
	 <t>   This specification describes extensions to the SUIT Manifest format
   (as defined in [I-D.ietf-suit-manifest]) for use in deployments with
   multiple trust domains.  A device has more than one trust domain when
   it enables delegation of different rights to mutually distrusting
   entities for use for different purposes or Components in the context
   of firmware or software update.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-suit-trust-domains-07"/>
   
</reference>


<reference anchor="I-D.ietf-suit-report">
   <front>
      <title>Secure Reporting of Update Status</title>
      <author fullname="Brendan Moran" initials="B." surname="Moran">
         <organization>Arm Limited</organization>
      </author>
      <author fullname="Henk Birkholz" initials="H." surname="Birkholz">
         <organization>Fraunhofer SIT</organization>
      </author>
      <date day="8" month="July" year="2024"/>
      <abstract>
	 <t>   The Software Update for the Internet of Things (SUIT) manifest
   provides a way for many different update and boot workflows to be
   described by a common format.  However, this does not provide a
   feedback mechanism for developers in the event that an update or boot
   fails.

   This specification describes a lightweight feedback mechanism that
   allows a developer in possession of a manifest to reconstruct the
   decisions made and actions performed by a manifest processor.

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-ietf-suit-report-09"/>
   
</reference>


<reference anchor="I-D.tschofenig-cose-cwt-chain">
   <front>
      <title>CBOR Object Signing and Encryption (COSE): Header Parameters for Carrying and Referencing Chains of CBOR Web Tokens (CWTs)</title>
      <author fullname="Hannes Tschofenig" initials="H." surname="Tschofenig">
         </author>
      <author fullname="Brendan Moran" initials="B." surname="Moran">
         <organization>Arm Limited</organization>
      </author>
      <date day="8" month="July" year="2024"/>
      <abstract>
	 <t>   The CBOR Object Signing and Encryption (COSE) message structure uses
   references to keys and defines header parameters to carry chains of
   X.509 certificates.

   This specification extends this functionality to CBOR Web Tokens
   (CWTs).

	 </t>
      </abstract>
   </front>
   <seriesInfo name="Internet-Draft" value="draft-tschofenig-cose-cwt-chain-01"/>
   
</reference>

<reference anchor="RFC7228">
  <front>
    <title>Terminology for Constrained-Node Networks</title>
    <author fullname="C. Bormann" initials="C." surname="Bormann"/>
    <author fullname="M. Ersue" initials="M." surname="Ersue"/>
    <author fullname="A. Keranen" initials="A." surname="Keranen"/>
    <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/spec/1.2.2/">
  <front>
    <title>YAML Ain’t Markup Language (YAML™) version 1.2</title>
    <author >
      <organization></organization>
    </author>
    <date year="2021"/>
  </front>
</reference>
<reference anchor="COSE_Alg" target="https://www.iana.org/assignments/cose/cose.xhtml#algorithms">
  <front>
    <title>COSE Algorithms</title>
    <author >
      <organization></organization>
    </author>
    <date year="2023"/>
  </front>
</reference>


    </references>

</references>


<?line 1653?>

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

<t>To be valid, the following CDDL <bcp14>MUST</bcp14> have the COSE CDDL appended to it. The COSE CDDL can be obtained by following the directions in <xref section="1.4" sectionFormat="comma" target="RFC9052"/>.</t>

<figure><sourcecode type="CDDL"><![CDATA[
SUIT_Envelope_Tagged = #6.107(SUIT_Envelope)
SUIT_Envelope = {
  suit-authentication-wrapper => bstr .cbor SUIT_Authentication,
  suit-manifest  => bstr .cbor SUIT_Manifest,
  SUIT_Severable_Manifest_Members,
  * SUIT_Integrated_Payload,
  * $$SUIT_Envelope_Extensions,
}

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_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_Unseverable_Members,
    SUIT_Severable_Members_Choice,
    * $$SUIT_Manifest_Extensions,
}

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

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

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

SUIT_Components           = [ + SUIT_Component_Identifier ]

;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_Shared_Sequence = [
    + ( SUIT_Condition // SUIT_Shared_Commands )
]

SUIT_Shared_Commands //= (suit-directive-set-component-index,  IndexArg)
SUIT_Shared_Commands //= (suit-directive-run-sequence,
    bstr .cbor SUIT_Shared_Sequence)
SUIT_Shared_Commands //= (suit-directive-try-each,
    SUIT_Directive_Try_Each_Argument_Shared)
SUIT_Shared_Commands //= (suit-directive-override-parameters,
    {+ $$SUIT_Parameters})

IndexArg /= uint
IndexArg /= true
IndexArg /= [+uint]


SUIT_Directive_Try_Each_Argument_Shared = [
    2* bstr .cbor SUIT_Shared_Sequence,
    ?nil
]

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-check-content,     SUIT_Rep_Policy)
SUIT_Condition //= (suit-condition-abort,             SUIT_Rep_Policy)

SUIT_Directive //= (suit-directive-write,             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-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-invoke,            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-invoke-args => bstr)

$$SUIT_Parameters //= (suit-parameter-device-identifier => RFC4122_UUID)

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

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

RFC4122_UUID = bstr .size 16

tag38-ltag = text .regexp "[a-zA-Z]{1,8}(-[a-zA-Z0-9]{1,8})*"
SUIT_Text_Map = {
    + tag38-ltag => SUIT_Text_LMap
}
SUIT_Text_LMap = {
    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

;Unseverable, recipient-necessary
suit-manifest-version = 1
suit-manifest-sequence-number = 2
suit-common = 3
suit-reference-uri = 4
suit-validate = 7
suit-load = 8
suit-invoke = 9
;Severable, recipient-necessary
suit-payload-fetch = 16
suit-install = 20
;Severable, recipient-unnecessary
suit-text = 23

suit-components = 2
suit-shared-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-check-content     = 6

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

suit-directive-set-component-index      = 12
suit-directive-try-each                 = 15
suit-directive-write                    = 18
suit-directive-override-parameters      = 20
suit-directive-fetch                    = 21
suit-directive-copy                     = 22
suit-directive-invoke                   = 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-content           = 18

suit-parameter-uri               = 21
suit-parameter-source-component  = 22
suit-parameter-invoke-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></figure>

</section>
<section anchor="examples"><name>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>

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

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

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

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

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

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

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

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

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

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

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

<figure><artwork><![CDATA[
107({
        / authentication-wrapper / 2:<< [
            / digest: / << [
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'6658ea560262696dd1f13b782239a064da7c6c5cbaf52fded428a6fc83c7e5af'
            ] >>,
            / signature: / << 18([
                    / protected / << {
                        / alg / 1:-7 / "ES256" /,
                    } >>,
                    / unprotected / {
                    },
                    / payload / F6 / nil /,
                    / signature / h'56acf3c133338f558bbbac1e73a62bffac
2a0067d0f7a2e860e20b9119a61d964af04fb56c2c7618d3d74558c14f5daf7cafa877
1b34ec42160f5c94250a57eb'
                ]) >>
            ]
        ] >>,
        / manifest / 3:<< {
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:0,
            / common / 3:<< {
                / components / 2:[
                    [h'00']
                ],
                / shared-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 / 7:<< [
                / condition-image-match / 3,15
            ] >>,
            / run / 9:<< [
                / directive-run / 23,2
            ] >>,
        } >>,
    })
]]></artwork></figure>

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

<t>Envelope:</t>

<figure><artwork><![CDATA[
d86ba2025827815824822f58206658ea560262696dd1f13b782239a064da
7c6c5cbaf52fded428a6fc83c7e5af035871a50101020003585fa2028181
41000458568614a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492
af1425695e48bf429b2d51f2ab45035824822f5820001122334455667788
99aabbccddeeff0123456789abcdeffedcba98765432100e1987d0010f02
0f074382030f0943821702
]]></artwork></figure>

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

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

<figure><artwork><![CDATA[
d86ba2025873825824822f58206658ea560262696dd1f13b782239a064da
7c6c5cbaf52fded428a6fc83c7e5af584ad28443a10126a0f6584056acf3
c133338f558bbbac1e73a62bffac2a0067d0f7a2e860e20b9119a61d964a
f04fb56c2c7618d3d74558c14f5daf7cafa8771b34ec42160f5c94250a57
eb035871a50101020003585fa202818141000458568614a40150fa6b4a53
d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b2d51f2ab45
035824822f582000112233445566778899aabbccddeeff0123456789abcd
effedcba98765432100e1987d0010f020f074382030f0943821702
]]></artwork></figure>

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

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

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

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

<figure><artwork><![CDATA[
107({
        / authentication-wrapper / 2:<< [
            / digest: / << [
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'ef14b7091e8adae8aa3bb6fca1d64fb37e19dcf8b35714cfdddc5968c80ff50e'
            ] >>,
            / signature: / << 18([
                    / protected / << {
                        / alg / 1:-7 / "ES256" /,
                    } >>,
                    / unprotected / {
                    },
                    / payload / F6 / nil /,
                    / signature / h'9c44e07766a26fd33d41ded913363c0ec7
465c06c30be70df32a73a4dea1bbb353d880d9d1813f7b6f0c6987dc4b289838468477
9c17ca9062085487254cf203'
                ]) >>
            ]
        ] >>,
        / manifest / 3:<< {
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:1,
            / common / 3:<< {
                / components / 2:[
                    [h'00']
                ],
                / shared-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 / 7:<< [
                / condition-image-match / 3,15
            ] >>,
            / install / 17:<< [
                / directive-override-parameters / 20,{
                    / uri / 21:'http://example.com/file.bin',
                } ,
                / directive-fetch / 21,2 ,
                / condition-image-match / 3,15
            ] >>,
        } >>,
    })
]]></artwork></figure>

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

<t>Envelope:</t>

<figure><artwork><![CDATA[
d86ba2025827815824822f5820ef14b7091e8adae8aa3bb6fca1d64fb37e
19dcf8b35714cfdddc5968c80ff50e035894a50101020103585fa2028181
41000458568614a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492
af1425695e48bf429b2d51f2ab45035824822f5820001122334455667788
99aabbccddeeff0123456789abcdeffedcba98765432100e1987d0010f02
0f074382030f1158258614a115781b687474703a2f2f6578616d706c652e
636f6d2f66696c652e62696e1502030f
]]></artwork></figure>

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

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

<figure><artwork><![CDATA[
d86ba2025873825824822f5820ef14b7091e8adae8aa3bb6fca1d64fb37e
19dcf8b35714cfdddc5968c80ff50e584ad28443a10126a0f658409c44e0
7766a26fd33d41ded913363c0ec7465c06c30be70df32a73a4dea1bbb353
d880d9d1813f7b6f0c6987dc4b2898384684779c17ca9062085487254cf2
03035894a50101020103585fa202818141000458568614a40150fa6b4a53
d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b2d51f2ab45
035824822f582000112233445566778899aabbccddeeff0123456789abcd
effedcba98765432100e1987d0010f020f074382030f1158258614a11578
1b687474703a2f2f6578616d706c652e636f6d2f66696c652e62696e1502
030f
]]></artwork></figure>

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

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

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

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

<figure><artwork><![CDATA[
107({
        / authentication-wrapper / 2:<< [
            / digest: / << [
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'56c894f743ca34ff0ae76271f964dcb8c139edb4a8dc64b01444504620be28a8'
            ] >>,
            / signature: / << 18([
                    / protected / << {
                        / alg / 1:-7 / "ES256" /,
                    } >>,
                    / unprotected / {
                    },
                    / payload / F6 / nil /,
                    / signature / h'd6fc4cd4119a261c9e7f782226a235aa06
960781a537064131238203e9fcde17f9a04e09f6ace03ef861971ef3d4b519558cdd96
6a6303e7e82783d6b2a99cf2'
                ]) >>
            ]
        ] >>,
        / manifest / 3:<< {
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:2,
            / common / 3:<< {
                / components / 2:[
                    [h'00']
                ],
                / shared-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
                ] >>,
            } >>,
            / reference-uri / 4:'https://git.io/JJYoj',
            / validate / 7:<< [
                / condition-image-match / 3,15
            ] >>,
            / run / 9:<< [
                / directive-run / 23,2
            ] >>,
            / install / 17:[
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'cfa90c5c58595e7f5119a72f803fd0370b3e6abbec6315cd38f63135281bc498'
            ],
            / text / 23:[
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'302196d452bce5e8bfeaf71e395645ede6d365e63507a081379721eeecf00007'
            ],
        } >>,
    })
]]></artwork></figure>

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

<t>Envelope:</t>

<figure><artwork><![CDATA[
d86ba2025827815824822f582056c894f743ca34ff0ae76271f964dcb8c1
39edb4a8dc64b01444504620be28a80358d1a80101020203585fa2028181
41000458568614a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492
af1425695e48bf429b2d51f2ab45035824822f5820001122334455667788
99aabbccddeeff0123456789abcdeffedcba98765432100e1987d0010f02
0f047468747470733a2f2f6769742e696f2f4a4a596f6a074382030f0943
82170211822f5820cfa90c5c58595e7f5119a72f803fd0370b3e6abbec63
15cd38f63135281bc49817822f5820302196d452bce5e8bfeaf71e395645
ede6d365e63507a081379721eeecf00007
]]></artwork></figure>
<t>Total size of the Envelope with COSE authentication object but without Severable Elements:  333</t>

<t>Envelope:</t>

<figure><artwork><![CDATA[
d86ba2025873825824822f582056c894f743ca34ff0ae76271f964dcb8c1
39edb4a8dc64b01444504620be28a8584ad28443a10126a0f65840d6fc4c
d4119a261c9e7f782226a235aa06960781a537064131238203e9fcde17f9
a04e09f6ace03ef861971ef3d4b519558cdd966a6303e7e82783d6b2a99c
f20358d1a80101020203585fa202818141000458568614a40150fa6b4a53
d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b2d51f2ab45
035824822f582000112233445566778899aabbccddeeff0123456789abcd
effedcba98765432100e1987d0010f020f047468747470733a2f2f676974
2e696f2f4a4a596f6a074382030f094382170211822f5820cfa90c5c5859
5e7f5119a72f803fd0370b3e6abbec6315cd38f63135281bc49817822f58
20302196d452bce5e8bfeaf71e395645ede6d365e63507a081379721eeec
f00007
]]></artwork></figure>

<t>Total size of Envelope with COSE authentication object and Severable Elements:  923</t>

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

<figure><artwork><![CDATA[
d86ba4025873825824822f582056c894f743ca34ff0ae76271f964dcb8c1
39edb4a8dc64b01444504620be28a8584ad28443a10126a0f65840d6fc4c
d4119a261c9e7f782226a235aa06960781a537064131238203e9fcde17f9
a04e09f6ace03ef861971ef3d4b519558cdd966a6303e7e82783d6b2a99c
f20358d1a80101020203585fa202818141000458568614a40150fa6b4a53
d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b2d51f2ab45
035824822f582000112233445566778899aabbccddeeff0123456789abcd
effedcba98765432100e1987d0010f020f047468747470733a2f2f676974
2e696f2f4a4a596f6a074382030f094382170211822f5820cfa90c5c5859
5e7f5119a72f803fd0370b3e6abbec6315cd38f63135281bc49817822f58
20302196d452bce5e8bfeaf71e395645ede6d365e63507a081379721eeec
f0000711583c8614a1157832687474703a2f2f6578616d706c652e636f6d
2f766572792f6c6f6e672f706174682f746f2f66696c652f66696c652e62
696e1502030f1759020ba165656e2d5553a20179019d2323204578616d70
6c6520323a2053696d756c74616e656f757320446f776e6c6f61642c2049
6e7374616c6c6174696f6e2c2053656375726520426f6f742c2053657665
726564204669656c64730a0a2020202054686973206578616d706c652063
6f766572732074686520666f6c6c6f77696e672074656d706c617465733a
0a202020200a202020202a20436f6d7061746962696c6974792043686563
6b20287b7b74656d706c6174652d636f6d7061746962696c6974792d6368
65636b7d7d290a202020202a2053656375726520426f6f7420287b7b7465
6d706c6174652d7365637572652d626f6f747d7d290a202020202a204669
726d7761726520446f776e6c6f616420287b7b6669726d776172652d646f
776e6c6f61642d74656d706c6174657d7d290a202020200a202020205468
6973206578616d706c6520616c736f2064656d6f6e737472617465732073
6576657261626c6520656c656d656e747320287b7b6f76722d7365766572
61626c657d7d292c20616e64207465787420287b7b6d616e69666573742d
6469676573742d746578747d7d292e814100a2036761726d2e636f6d0578
525468697320636f6d706f6e656e7420697320612064656d6f6e73747261
74696f6e2e205468652064696765737420697320612073616d706c652070
61747465726e2c206e6f742061207265616c206f6e652e
]]></artwork></figure>

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

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

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

<figure><artwork><![CDATA[
107({
        / authentication-wrapper / 2:<< [
            / digest: / << [
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'b3e6a52776bf3ed218feba031c609c98260e1a52fc1f019683edb6d1c5c4a379'
            ] >>,
            / signature: / << 18([
                    / protected / << {
                        / alg / 1:-7 / "ES256" /,
                    } >>,
                    / unprotected / {
                    },
                    / payload / F6 / nil /,
                    / signature / h'a72d9dabc04af139a0a5b3ef775234b9ed
1c2390e03ffa1454458b2394cca16aced37039bbf84ea898a54a242d0d04883f22135a
9b98efe042015041f0142d4e'
                ]) >>
            ]
        ] >>,
        / manifest / 3:<< {
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:3,
            / common / 3:<< {
                / components / 2:[
                    [h'00']
                ],
                / shared-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,{
                                / slot / 5:0,
                            } ,
                            / condition-component-slot / 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,{
                                / slot / 5:1,
                            } ,
                            / condition-component-slot / 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
                ] >>,
            } >>,
            / validate / 7:<< [
                / condition-image-match / 3,15
            ] >>,
            / install / 17:<< [
                / directive-try-each / 15,[
                    << [
                        / directive-override-parameters / 20,{
                            / slot / 5:0,
                        } ,
                        / condition-component-slot / 5,5 ,
                        / directive-override-parameters / 20,{
                            / uri / 21:'http://example.com/file1.bin',
                        }
                    ] >> ,
                    << [
                        / directive-override-parameters / 20,{
                            / slot / 5:1,
                        } ,
                        / condition-component-slot / 5,5 ,
                        / directive-override-parameters / 20,{
                            / uri / 21:'http://example.com/file2.bin',
                        }
                    ] >>
                ] ,
                / directive-fetch / 21,2 ,
                / condition-image-match / 3,15
            ] >>,
        } >>,
    })
]]></artwork></figure>

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

<t>Envelope:</t>

<figure><artwork><![CDATA[
d86ba2025827815824822f5820b3e6a52776bf3ed218feba031c609c9826
0e1a52fc1f019683edb6d1c5c4a3790359010fa5010102030358a4a20281
81410004589b8814a20150fa6b4a53d5ad5fdfbe9de663e4d41ffe025014
92af1425695e48bf429b2d51f2ab450f8258348614a10500050514a20358
24822f582000112233445566778899aabbccddeeff0123456789abcdeffe
dcba98765432100e1987d058368614a10501050514a2035824822f582001
23456789abcdeffedcba987654321000112233445566778899aabbccddee
ff0e1a00012c22010f020f074382030f11585b860f8258288614a1050005
0514a115781c687474703a2f2f6578616d706c652e636f6d2f66696c6531
2e62696e58288614a10501050514a115781c687474703a2f2f6578616d70
6c652e636f6d2f66696c65322e62696e1502030f
]]></artwork></figure>

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

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

<figure><artwork><![CDATA[
d86ba2025873825824822f5820b3e6a52776bf3ed218feba031c609c9826
0e1a52fc1f019683edb6d1c5c4a379584ad28443a10126a0f65840a72d9d
abc04af139a0a5b3ef775234b9ed1c2390e03ffa1454458b2394cca16ace
d37039bbf84ea898a54a242d0d04883f22135a9b98efe042015041f0142d
4e0359010fa5010102030358a4a2028181410004589b8814a20150fa6b4a
53d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf429b2d51f2ab
450f8258348614a10500050514a2035824822f5820001122334455667788
99aabbccddeeff0123456789abcdeffedcba98765432100e1987d0583686
14a10501050514a2035824822f58200123456789abcdeffedcba98765432
1000112233445566778899aabbccddeeff0e1a00012c22010f020f074382
030f11585b860f8258288614a10500050514a115781c687474703a2f2f65
78616d706c652e636f6d2f66696c65312e62696e58288614a10501050514
a115781c687474703a2f2f6578616d706c652e636f6d2f66696c65322e62
696e1502030f
]]></artwork></figure>

</section>
<section anchor="example-4-load-from-external-storage"><name>Example 4: Load from External Storage</name>

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

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

<figure><artwork><![CDATA[
107({
        / authentication-wrapper / 2:<< [
            / digest: / << [
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'838eb848698c9d9dd29b5930102ea1f29743857d975f52ed4d19589b821e82cf'
            ] >>,
            / signature: / << 18([
                    / protected / << {
                        / alg / 1:-7 / "ES256" /,
                    } >>,
                    / unprotected / {
                    },
                    / payload / F6 / nil /,
                    / signature / h'42e4185517635842a5715c63772436588c
c366d6a4c2beff3f3e0736806062c4208a756da9cfb0cc1325168eb3c743834b5f5a5d
c00b33acd2a9073c6eb09e5c'
                ]) >>
            ]
        ] >>,
        / manifest / 3:<< {
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:4,
            / common / 3:<< {
                / components / 2:[
                    [h'00'] ,
                    [h'02'] ,
                    [h'01']
                ],
                / shared-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
                ] >>,
            } >>,
            / validate / 7:<< [
                / directive-set-component-index / 12,0 ,
                / condition-image-match / 3,15
            ] >>,
            / load / 8:<< [
                / directive-set-component-index / 12,2 ,
                / directive-override-parameters / 20,{
                    / image-digest / 3:<< [
                        / algorithm-id / -16 / "sha256" /,
                        / digest-bytes /
h'0123456789abcdeffedcba987654321000112233445566778899aabbccddeeff'
                    ] >>,
                    / image-size / 14:76834,
                    / source-component / 22:0 / [h'00'] /,
                } ,
                / directive-copy / 22,2 ,
                / condition-image-match / 3,15
            ] >>,
            / run / 9:<< [
                / directive-set-component-index / 12,2 ,
                / directive-run / 23,2
            ] >>,
            / payload-fetch / 16:<< [
                / directive-set-component-index / 12,1 ,
                / directive-override-parameters / 20,{
                    / image-digest / 3:<< [
                        / algorithm-id / -16 / "sha256" /,
                        / digest-bytes /
h'00112233445566778899aabbccddeeff0123456789abcdeffedcba9876543210'
                    ] >>,
                    / uri / 21:'http://example.com/file.bin',
                } ,
                / directive-fetch / 21,2 ,
                / condition-image-match / 3,15
            ] >>,
            / install / 17:<< [
                / directive-set-component-index / 12,0 ,
                / directive-override-parameters / 20,{
                    / source-component / 22:1 / [h'02'] /,
                } ,
                / directive-copy / 22,2 ,
                / condition-image-match / 3,15
            ] >>,
        } >>,
    })
]]></artwork></figure>

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

<t>Envelope:</t>

<figure><artwork><![CDATA[
d86ba2025827815824822f5820838eb848698c9d9dd29b5930102ea1f297
43857d975f52ed4d19589b821e82cf03590116a801010204035867a20283
814100814102814101045858880c0014a40150fa6b4a53d5ad5fdfbe9de6
63e4d41ffe02501492af1425695e48bf429b2d51f2ab45035824822f5820
00112233445566778899aabbccddeeff0123456789abcdeffedcba987654
32100e1987d0010f020f0745840c00030f085838880c0214a3035824822f
58200123456789abcdeffedcba987654321000112233445566778899aabb
ccddeeff0e1a00012c2216001602030f0945840c02170210584e880c0114
a2035824822f582000112233445566778899aabbccddeeff0123456789ab
cdeffedcba987654321015781b687474703a2f2f6578616d706c652e636f
6d2f66696c652e62696e1502030f114b880c0014a116011602030f
]]></artwork></figure>

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

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

<figure><artwork><![CDATA[
d86ba2025873825824822f5820838eb848698c9d9dd29b5930102ea1f297
43857d975f52ed4d19589b821e82cf584ad28443a10126a0f6584042e418
5517635842a5715c63772436588cc366d6a4c2beff3f3e0736806062c420
8a756da9cfb0cc1325168eb3c743834b5f5a5dc00b33acd2a9073c6eb09e
5c03590116a801010204035867a20283814100814102814101045858880c
0014a40150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af1425695e
48bf429b2d51f2ab45035824822f582000112233445566778899aabbccdd
eeff0123456789abcdeffedcba98765432100e1987d0010f020f0745840c
00030f085838880c0214a3035824822f58200123456789abcdeffedcba98
7654321000112233445566778899aabbccddeeff0e1a00012c2216001602
030f0945840c02170210584e880c0114a2035824822f5820001122334455
66778899aabbccddeeff0123456789abcdeffedcba987654321015781b68
7474703a2f2f6578616d706c652e636f6d2f66696c652e62696e1502030f
114b880c0014a116011602030f
]]></artwork></figure>

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

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

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

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

<figure><artwork><![CDATA[
107({
        / authentication-wrapper / 2:<< [
            / digest: / << [
                / algorithm-id / -16 / "sha256" /,
                / digest-bytes /
h'264dc89eb4a39ae7a8ed05e4d6232153bce4fb9a111a31310b90627d1edfc3bb'
            ] >>,
            / signature: / << 18([
                    / protected / << {
                        / alg / 1:-7 / "ES256" /,
                    } >>,
                    / unprotected / {
                    },
                    / payload / F6 / nil /,
                    / signature / h'9350fcb80d59f9be2a923bc144c5f64022
b57d18ccddd9c0477a5be608b04200689373d42fc42fc154dce2d54255d64be9f5bd55
efddb5de22354ec0894e979a'
                ]) >>
            ]
        ] >>,
        / manifest / 3:<< {
            / manifest-version / 1:1,
            / manifest-sequence-number / 2:5,
            / common / 3:<< {
                / components / 2:[
                    [h'00'] ,
                    [h'01']
                ],
                / shared-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,
                    }
                ] >>,
            } >>,
            / validate / 7:<< [
                / directive-set-component-index / 12,0 ,
                / condition-image-match / 3,15 ,
                / directive-set-component-index / 12,1 ,
                / condition-image-match / 3,15
            ] >>,
            / run / 9:<< [
                / directive-set-component-index / 12,0 ,
                / directive-run / 23,2
            ] >>,
            / install / 17:<< [
                / directive-set-component-index / 12,0 ,
                / directive-override-parameters / 20,{
                    / uri / 21:'http://example.com/file1.bin',
                } ,
                / directive-fetch / 21,2 ,
                / condition-image-match / 3,15 ,
                / directive-set-component-index / 12,1 ,
                / directive-override-parameters / 20,{
                    / uri / 21:'http://example.com/file2.bin',
                } ,
                / directive-fetch / 21,2 ,
                / condition-image-match / 3,15
            ] >>,
        } >>,
    })
]]></artwork></figure>

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

<t>Envelope:</t>

<figure><artwork><![CDATA[
d86ba2025827815824822f5820264dc89eb4a39ae7a8ed05e4d6232153bc
e4fb9a111a31310b90627d1edfc3bb03590101a601010205035895a20282
8141008141010458898c0c0014a40150fa6b4a53d5ad5fdfbe9de663e4d4
1ffe02501492af1425695e48bf429b2d51f2ab45035824822f5820001122
33445566778899aabbccddeeff0123456789abcdeffedcba98765432100e
1987d0010f020f0c0114a2035824822f58200123456789abcdeffedcba98
7654321000112233445566778899aabbccddeeff0e1a00012c220749880c
00030f0c01030f0945840c00170211584f900c0014a115781c687474703a
2f2f6578616d706c652e636f6d2f66696c65312e62696e1502030f0c0114
a115781c687474703a2f2f6578616d706c652e636f6d2f66696c65322e62
696e1502030f
]]></artwork></figure>

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

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

<figure><artwork><![CDATA[
d86ba2025873825824822f5820264dc89eb4a39ae7a8ed05e4d6232153bc
e4fb9a111a31310b90627d1edfc3bb584ad28443a10126a0f658409350fc
b80d59f9be2a923bc144c5f64022b57d18ccddd9c0477a5be608b0420068
9373d42fc42fc154dce2d54255d64be9f5bd55efddb5de22354ec0894e97
9a03590101a601010205035895a202828141008141010458898c0c0014a4
0150fa6b4a53d5ad5fdfbe9de663e4d41ffe02501492af1425695e48bf42
9b2d51f2ab45035824822f582000112233445566778899aabbccddeeff01
23456789abcdeffedcba98765432100e1987d0010f020f0c0114a2035824
822f58200123456789abcdeffedcba987654321000112233445566778899
aabbccddeeff0e1a00012c220749880c00030f0c01030f0945840c001702
11584f900c0014a115781c687474703a2f2f6578616d706c652e636f6d2f
66696c65312e62696e1502030f0c0114a115781c687474703a2f2f657861
6d706c652e636f6d2f66696c65322e62696e1502030f
]]></artwork></figure>

</section>
</section>
<section anchor="design-rationale"><name>Design Rationale</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. Dependency handling is covered in <xref target="I-D.ietf-suit-trust-domains"/>.</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"><name>C.1 Design Rationale: Envelope</name>

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

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

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

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

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

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

</section>
<section anchor="c2-byte-string-wrappers"><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 shared sequence. The shared 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"><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>

<texttable>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <ttcol align='left'>Implementation</ttcol>
      <c>Vendor Identifier</c>
      <c><xref target="uuid-identifiers"/></c>
      <c><bcp14>REQUIRED</bcp14></c>
      <c>Class Identifier</c>
      <c><xref target="uuid-identifiers"/></c>
      <c><bcp14>REQUIRED</bcp14></c>
      <c>Device Identifier</c>
      <c><xref target="uuid-identifiers"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
      <c>Image Match</c>
      <c><xref target="suit-condition-image-match"/></c>
      <c><bcp14>REQUIRED</bcp14></c>
      <c>Check Content</c>
      <c><xref target="suit-condition-check-content"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
      <c>Component Slot</c>
      <c><xref target="suit-condition-component-slot"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
      <c>Abort</c>
      <c><xref target="suit-condition-abort"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
      <c>Custom Condition</c>
      <c><xref target="SUIT_Command_Custom"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
</texttable>

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

<texttable>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <ttcol align='left'>Implementation</ttcol>
      <c>Set Component Index</c>
      <c><xref target="suit-directive-set-component-index"/></c>
      <c><bcp14>REQUIRED</bcp14> if more than one component</c>
      <c>Write Content</c>
      <c><xref target="suit-directive-write"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
      <c>Try Each</c>
      <c><xref target="suit-directive-try-each"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
      <c>Override Parameters</c>
      <c><xref target="suit-directive-override-parameters"/></c>
      <c><bcp14>REQUIRED</bcp14></c>
      <c>Fetch</c>
      <c><xref target="suit-directive-fetch"/></c>
      <c><bcp14>REQUIRED</bcp14> for Updater</c>
      <c>Copy</c>
      <c><xref target="suit-directive-copy"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
      <c>Invoke</c>
      <c><xref target="suit-directive-invoke"/></c>
      <c><bcp14>REQUIRED</bcp14> for Bootloader</c>
      <c>Run Sequence</c>
      <c><xref target="suit-directive-run-sequence"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
      <c>Swap</c>
      <c><xref target="suit-directive-swap"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
</texttable>

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

<texttable>
      <ttcol align='left'>Name</ttcol>
      <ttcol align='left'>Reference</ttcol>
      <ttcol align='left'>Implementation</ttcol>
      <c>Vendor ID</c>
      <c><xref target="suit-parameter-vendor-identifier"/></c>
      <c><bcp14>REQUIRED</bcp14></c>
      <c>Class ID</c>
      <c><xref target="suit-parameter-class-identifier"/></c>
      <c><bcp14>REQUIRED</bcp14></c>
      <c>Image Digest</c>
      <c><xref target="suit-parameter-image-digest"/></c>
      <c><bcp14>REQUIRED</bcp14></c>
      <c>Image Size</c>
      <c><xref target="suit-parameter-image-size"/></c>
      <c><bcp14>REQUIRED</bcp14></c>
      <c>Component Slot</c>
      <c><xref target="suit-parameter-component-slot"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
      <c>Content</c>
      <c><xref target="suit-parameter-content"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
      <c>URI</c>
      <c><xref target="suit-parameter-uri"/></c>
      <c><bcp14>REQUIRED</bcp14> for Updater</c>
      <c>Source Component</c>
      <c><xref target="suit-parameter-source-component"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
      <c>Invoke Args</c>
      <c><xref target="suit-parameter-invoke-args"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
      <c>Device ID</c>
      <c><xref target="suit-parameter-device-identifier"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
      <c>Strict Order</c>
      <c><xref target="suit-parameter-strict-order"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
      <c>Soft Failure</c>
      <c><xref target="suit-parameter-soft-failure"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
      <c>Custom</c>
      <c><xref target="suit-parameter-custom"/></c>
      <c><bcp14>OPTIONAL</bcp14></c>
</texttable>

</section>


  </back>

<!-- ##markdown-source:
H4sIADOfomYAA+y963YcV3Ym+D+fIoZcywJUmcmrVBKqVG0QBC20eTMBVbla
pdEKZEYCUcyMyIqIBJhFymt+zEP0/POap5jf3W/STzL7fvaJSwKk5Lbdba1l
F5ERca777LOv355MJqOrg+TRaNTkzTI7SA6To7KY5XWWPMmLtNomr87/nM2a
5E22rrI6K5q0ycsi2Tt68urN/uQ8rbN5cppVebrM/8qPnpXVKm2SRVklzWWW
nJaL5jqtsuS79TxtspoenBRNVhVZk5SL5OwyLy7qZO/0u5Oz/eRFWuSLrG5G
6fl5lcHQsCPtB94IL8zLWZGuYMjzKl00kzxrFpN6kzeTlbwxefjrUb6uDpKm
2tTNw/v3v77/cDSDMVyU1fYgqZv5qG6qLF0dJCfHZ89GIxhlegCzmW2qvNmO
rsvq7UVVbtYH1PPobbaFn+YHNvrJU+x5NFrnB6MkqRazbF43W1zFbVbDL005
c//Mizksn/5QlxX0vajt7+0q+rOp8pm9PCtXK/jWnubFMi9CN9m7ZrLMYcLQ
yHm5hNcm5ee/giewRKt0vYb1deP4cZldZfjSY5jxprksKxj9BJ7hf3kBD55M
kxdllRbyG6/ykyor5mkRPSmrC1hr3ncgnWqVPM9XeZPN5Xm2SvPlQXLOn05X
+OkUN+pvL/DJFOY1avX97TQ5q2eX5SIr8otoAN+mRQHk03kqnVzS42ljj6GP
d1PYpZ4enuTV28ty+de4/ax4234ST/BZlW4KbL1KToEe4u7h6+m5fP23dd5M
F/b2dJ61B/H30+S/pMX8PKviSf59mRXtJ/EgTgo4bHHfb+Gj6V/lo7/N8QXo
vd3lf/+v0+TNf///igKPW5POo37/+3/dXgGB9r0Qd/8STkA+g0OyymdlMd/M
mrKKR1NSS9OqtIb8bhfEHfKrDI/MyeQpkcNks8nncNoncIYeP3j48Dyv8fGb
Z0df3//i4QHQf52N7uoPj/iHSbq8qPmtR19/9aV88NXXj7+2bx/YPx88fBx1
yIyiye3Vr+/DyPO59foYKaq+5E5Go7xY+IHjO4++/rX981FP64u8WiHjm2TF
rNquafk6L22IKSLLSi8yPOPdV4h7TeYlrGFRdx9X2RpYif4eyH9CazS7biaz
S/hShvrrhw+/wn/+8fDF8wPaN+H7d/CX5DAv/sf/9f80wGSrt5t18jwtLjYw
sGQPn/6P//v/3U+usqpGLv9g+vAOfW8sBP7DuRwkD+8/fMBNp9VFBkzssmnW
9cG9e9t0tZwCOd2r19nsHrQwfXgPXjx6dXr84+HyIh4P/prAryXw4stVvaOz
R72dXV9fT3NYVuowrev8oiAeeg/Xhf7f9N1ls1reTa2P0WgymSTpOTDfdNaM
4GKqExxqvshnfLfNs3pW5efAhvBqY5LAOyxN9NKZJnCF6h9JXo/S5HxTzJcZ
vrbK4DSkTQp9lJsGqHie3aO/y/MG9giuuPMttFVBl+scBpvszS7zbLHcjqg7
ISi6QYETn5RnMKCrfJbtj5PrywyeNCW8BccYX7fWx/jniN+s8ZXry3x2meRN
AnfDMs/qMbQ2T4hIy4sqXcPjxAgeZr2uygZkADjNNI4wVbvbN3K3YztnSK8w
lZPiqpRlOy+bS7imcGBlsoGzXGd/2cCxgC9gVfB2g5fKdVbR6zCeukx8Twm8
C7PBVYd9S+zrEXztP4N/wDLAWylu1WyZVjBmbklWfsp7vMrnsCUj5ClwmVcl
8jFoYjQ6DKvMc4Iv4fwUeb2CzcRVz2qUgkDegWGwoJAssrTZyL6ETaGlnmfw
4jVQV3K1WRYw0vN8mTew5nDNwbCA0Ioazy+ug/Wcr+DM0ec4dGvtMlvV2fIK
/gkjyVf4WQo0YsNIkVZhV55vZm/z5Za2HVrDFtMliDbzbXIFK1JuamkzCWwH
Vny5oVVM0itg1uk5USxcXrqC8xxlknN6aWC0bu7T5Pgvm3S53LqB5nxq8mK2
3NTSSutEMN0WV9kWCCjuIdnLCzt18ZnbJ7rDZ0Bb/MgW5RroeY00USIZX+Xz
DIhpPmnKCZKjvaYkDqOiXcM/klU5t6PPtL1XEh/Hie3ji6v0bQbHFZkitnsB
Z5hXDEQdXLIFfL5Zwp4807kgH8IXoInymheEmRoe4RJ4Rb6cC3eJpj/G7s7h
eyQ0IPAmKcqkJHJfpxXMYI/WdY5tr2EuTKLpHIcGm57V+8kMqBeukAa6blM5
nMMiIl0kWdyQdA5nDY/Busqv8mV2gVsLEj7u0iKfczduATvbViOfwZMzn+e6
dLBif9nkVUbsQG7HninzrpaB8jKlD5xeEq7VBCRz3spsueWDVW/WdKzwSFqr
2N463S7LdO6/vspT1lRQvTCWI8w9r43pz2H1gLSAXa3hJbwNytmGDs/79zde
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
P8M2F0CajxuwRLzPsJ0q6YiKcpXdbAbXsGOdKUruG2OMCKh3Cz3baowX+62G
Pswd7qTSIWrsFzmLopDXKqS7ghKS38Kce3pGxw90wG0Wbk/gZWHbbWfoaXtt
JWi7WbhM8N6Bh9csLJIOdiMdrpKkXCFtdqdu7oRsW51JXxcUbnVQikBnYac7
u1E3aKeFRy3JUqOw3coT1cOrPcZ2xasL8rOqBluQOnm1lbxKN6oUKVsN1swn
VarVomaOV2zhtvGqBENjnmax2rJSgxN6rGqNBbpt5xbte83kSrzaNrCukRZP
3hWRF0/ZFY0XT9QViRdPz5r67DPUaggtsM5qCC0wyeoIddthaqLqM76UCu2z
uECDykM7+yJXCN54KtOGFPJ+7GqjhnphpOxcpP3ge1ZEwll+m22Z3aJ2MWs7
vcr+W5FDT2wtK62VKtEZbhhRaQfPJ2XWjILVLuE94cdtJVI8Z7I4rjovsyBV
yO/v7h3zK+wvwOSYWngH/pY4DTnEn539hwdPjGdHBz9vn+wbj/Zf8Kfk8ODh
D9un+9uHO4cPd67ePDw+dCP4/nB3V36+3P9h56F5SS8PdrZ/+ul0++IfL179
Y/f5w8eHnvnzzi7ZffXiePbrd2b06uH5+OrHZ9OLvccn7zbP8l+fnh1tP9nd
3j7eH032MS3emzfRj2c//5Gz4Mnk/O2bN4/Do9lb8uy7OJ/98ktylr7dnp4U
2aPXs2L3xf4fl4+ezKZPfvg1j57uOE++uxxvP58V786PbOfQnT3KfxHd2n+y
1+4UJ/lJa+/QBZ5rTHhyAD1TUS0fZlENeMfoPd95fLCrDd6D15f7ly9+eDT5
x8G7V+bu9k8vDuTnve2fkj0Yrv2zH+nOwzfu4zdv3h6/+Dl5MZ6/oz9O/Tf5
5n5M4neb5+7059H44Nf48pEZ/HB18TjePt85THZfxfTdkeW+PTlN32XFj5cP
HseH3ut09u7p4+PJ6PT+fa3/DbR490WiK9EVgydmPP5hm19yXEvWovgYbzie
yDO2Rhn0Mi4wWJZL5ksZTDPqhD6f/MegaDLgP3UcoEyvIU43aYMpNkx1AJYX
GsiT5Rqr1xJW1VmdH5pC+ZCxvA8GvxtGHYEirdAb6kMZWsONtcnwGUyXncWy
8lIsLIZXZGnFmmG6D8bxVdGE1QzUiUIcEqmuc1PPNBhamzqW2rmuD7UO9pmz
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
DwxgpKipbAIA

-->

</rfc>

