<?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.6.31 (Ruby 3.2.2) -->


<!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-29" 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="November" day="07"/>

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

    <abstract>


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



    </abstract>



  </front>

  <middle>


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

<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">
  <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">
  <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">
  <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">
      <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">
  <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">
  <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">
  <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">
  <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">
  <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"><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">
  <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">
  <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">
  <t>A command code identifier</t>
  <t>A <xref target="reporting-policy">SUIT_Reporting_Policy</xref></t>
</list></t>

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

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

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

<t><list style="symbols">
  <t>Set Component 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">
  <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. The CBOR Tag's Data Item is a SUIT_Envelope as defined in <xref target="full-cddl"/></t>
  <t>allocate CBOR tag 1070 (suggested) in the "CBOR Tags" registry for the SUIT Manifest. The CBOR Tag's Data Item is a SUIT_Manifest as defined in <xref target="full-cddl"/></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 (Unset Detection)</c>
      <c><xref target="encoding"/> of [TBD: this document]</c>
      <c>1</c>
      <c>Reserved (Delegation)</c>
      <c>&#160;</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>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-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='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='21' month='October' 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-08'/>
   
</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'>



<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'>
         <organization>University of Applied Sciences Bonn-Rhein-Sieg</organization>
      </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='21' month='October' 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-21'/>
   
</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='21' month='October' year='2024'/>
      <abstract>
	 <t>   This specification describes extensions to the SUIT Manifest format
   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-08'/>
   
</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='21' month='October' 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-10'/>
   
</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>


<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">
  <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:
H4sIAAAAAAAAA+y963IcV3Ym+r+eIg8ZYQHqquJVagnd6mMQBC2MeTMBdbtH
raNIVGUB2azKrM7MAlhNyjE/5iFm/jnOU5zf9pvMk5x132vnpQCy5fFlrAi3
icrMfV177XX91mQyGV0dJI9GoyZvltlBcpgclcUsr7PkSV6k1TZ5df7HbNYk
b7J1ldVZ0aRNXhbJ3tGTV2/2J+dpnc2T06zK02X+Z370rKxWaZMsyippLrPk
tFw012mVJd+t52mT1fTgpGiyqsiapFwkZ5d5cVEne6ffnZztJy/SIl9kdTNK
z8+rDIaGHWk/8EZ4YV7OinQFQ55X6aKZ5FmzmNSbvJms5I3Jw69H+bo6SJpq
UzcP79//+v7D0QzGcFFW24OkbuajuqmydHWQnByfPRuNYJTpAcxmtqnyZju6
Lqu3F1W5WR9Qz6O32RZ+mh/Y6CdPsefRaJ0fjJKkWsyyed1scRW3WQ2/NOXM
/TMv5rB8+kNdVtD3ora/t6voz6bKZ/byrFyt4Ft7mhfLvAjdZO+ayTKHCUMj
5+USXpuUn/8CnsASrdL1GtbXjePHZXaV4UuPYcab5rKsYPQTeIb/5QU8eDJN
XpRVWshvvMpPqqyYp0X0pKwuYK1534F0qlXyPF/lTTaX59kqzZcHyTl/Ol3h
p1PcqL++wCdTmNeo1fe30+Ssnl2Wi6zIL6IBfJsWBZBP56l0ckmPp409hj7e
TWGXenp4kldvL8vln+P2s+Jt+0k8wWdVuimw9So5BXqIu4evp+fy9V/XeTNd
2NvTedYexN9Ok/+aFvPzrIon+bdlVrSfxIM4KeCwxX2/hY+mf5aP/jrHF6D3
dpf//D+myZt//v+KAo9bk86jfv/5f2yvgED7Xoi7fwknIJ/BIVnls7KYb2ZN
WcWjKamlaVVaQ363C+IO+VWGR+Zk8pTIYbLZ5HM47RM4Q48fPHx4ntf4+M2z
o6/vf/HwAOi/zkZ39YdH/MMkXV7U/Najr7/6Uj746uvHX9u3D+yfDx4+jjpk
RtHk9urX92Hk+dx6fYwUVV9yJ6NRXiz8wPGdR1//0v75qKf1RV6tkPFNsmJW
bde0fJ2XNsQUkWWlFxme8e4rxL0m8xLWsKi7j6tsDaxEfw/kP6E1ml03k9kl
fClD/eXDh1/hP39/+OL5Ae2b8P07+EtymBf/67/9zwaYbPV2s06ep8XFBgaW
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
GF0bikax0xtvE9LpIp01nXgz3mHkX9xKmwKUffpqrFkqvrW0/bqeEeW5Upmc
1k3I1wg0quWHscc4Eh6qNMP4uRoWoeFznAkUuNB1ll9cOqjrS+DycNdse46O
diUNIyEss4XFpHEwI0v3GFN6zeGk0tCGb4mxZe+45AjXBzaYSEQ0p3ZxkJ+u
L/TCDsTg+AbWGTifhorJvaO8it2Xnw36038xA+bxmXe9s9N41O9gp3WmAO7g
qncgsoqCzSPnmCCrHZ/GPsopAzHz9Gg66J898K7/kTw93Zw34YXu+PU9Ez2C
IeQgeXnvUJ+/WndCbqLn5pSatVLiMUKp2tpwstmGAtXbr2FeIYVK6AutUBLZ
HGkGJZjvaTXfPDv64YepNk8BBIRwwGjynW7ciF9vVG6JmNVB1LK+fBhWVoKy
NgqZF/bzAP3tq7TKFY44nPEkeaa5Rlz1RwIgtJp0usRwwwurukobv0q39jnF
MEj4FP7/RX6xkXub4BsIDpF4vuOQDv96mYpaYl1TapcMyhbwGcgPjKEUlRkY
WsPD3kypA338eQICN9Zf5tJ9yxyz6dJVpukreS3r5pqEb16kF/lMzvpevd9+
/Ixz/aXKI70wOy8loTdqZoZcvb6EaS4zPnHIHtpNvgZahmX8qyRbEXbefF5h
GGUj6z3jW3WxqdrLeyANgBx88ddYuGRaVheeFEn4oPvjIMEQ31cvw3FjQxbR
U1noS35pKRvgIHkC2t8cuP+LErj1OPn1Of89XeHfVC7lry9w3FNQKH+jHx9R
iL0GJy8zaOfk+PRvbMZ4a9W8b14E/L+T5GUpQOfJ0FFUlA29cAhshvJqgteb
lwgv9UZSbQhphuNC8E+8MZrSQHvGWqmFWb2kolt6ngCMU/xJzQFrArufVly3
XkPL63K5MelWsjJIDdCmXPn2k/JM65NgfSou5kPp4zJvqjmpl2qISLGs3dll
jtND6+L798Auvr7/4GtQr9LwTpQ+SGosv/jg4WN40S56heTRjl12To2X9jLE
f4WvUw6FRFrVFBjclipdMJIOBk/bKYEuqAeNB17BVSGZTVFnPPYwaJ8P4Tun
1BTZbOI/FjuC2TsjP2ZcB0YUoFCeAwQ4lnm+cVlIH0jD1341Cw0Nrx4eJrKC
vDn+u+np8RH83999d/zy6JhsBSD8lAXM8FYRDh+sDTierw/PTp48P47s9lbL
ahzs774q4bAPJjR9/Pev4U0QOnNh2Fj/jr61gkd0LzNpTii0n2YctXL43dm3
xy/PTo7QkKtpMWNz+T+VoPjBeKDxTe7RuKvpyYu/+fHs96+PfWQCn+pPGTk1
9/wVDV4yt577aAnNFVbnpbPzxu28OX7x6uxYmgrxDiQ7lb0eAzaMt4Zz/PfH
vgFZvfENBn71iIyHXhAPQKuz12+Oj757c/rqDfZYIfFj3vpHOmFabSq9njw/
Oft9EoWHwbETAsbTrGTba57v8UH1zK3HuxRG8+bkb749O/VEuZsGexNkfINA
KTC7l89OniK5H8r8QL6stutO6FtMh8rlQcTVt+OVOzo6Pj39EVo/e/Pq+UE7
h+cD3H6FDP+mUb54dnrWM8wQPtYd7//f3pctx20sib7XVyCOJ64ku5vEvnBG
PsFNMi1RkknKto7DoSgABRJSs5tqdIumlvM0f3Ff7mfc5zsx/zWZtQCFpdHd
pOQj65IMUd1AVVZW5VKZWUtuGid4SRC/mr5Uget3QozP4bPH+yAHewcP949P
2pzcUpz1SVyn3/6zp0cnB08e6t2vYyQudxXkwynAcVxNLB/tvwAOB6HcxZPn
FZQV28fqUHu7XlmgMCuSs0nGxvnpEH2VYXIJSuIMLGDEZUX4glA/7O8+qqDv
lQGl/monR8+PT/b31q8IjMGpsvpQPD/eF1VBWbxU6GrmdW1Llx6WXU0d19s4
2f/1RGdWvpihT7+Lg8d1QE9/3j86Agl4KdQyooxGPhNYAa84UegD9x6h/4Hb
mZ8fHRSDFsL8yNMw5asElZiVrSC3P30CYiYoUB4HG6i5pNoWMaii6rW9Er+p
bQXi3cvq5e93v1k4+dxbG9XD549PDl6ihl5NI2r1Ua4fPD063NbF+RpTroL1
ZF/yrjyogebe8YxddHFMt86521ZiHSPShcndOv73GqgB1xyDuB/zVSwZd5B7
OeVKCB6nvFavj/cfgyKCqr8ePEP54a7cKtu5KjDSNjjCG/TBUDsEvyDt3OYq
N1Le5aCFz6L39PHTbRx+3FnKUx6vCgkHTofzbPuFBKVGFetjzlh06ofVLXxD
ebterTfPto+O9zkz8uxez+i0UPtc1d0sVaoVrd4eDORDpZWr/ejoWsqlvCUa
GmCJc7KYFBD8qlO1+/MXZlzySCKG/GWsbvy6uRzCnfLynot8yu+9xKkzH8vF
G3Gui0dg5D2T/EjR//s/ZAuwe3+YjyaAHYz6NKfJR35eRr17yPDQ38x4PM+y
+ps98PSOJkX94Y+Ts/HwGZ2P+MkLQCmtv/9hfjoxfsaTq8iR+ptdGG5wwYwd
lIPxuP7ywRT7vT1P52Pj0Vt6Ppv+1/+tl3g0fXdVvJuBl7Z7Np3/9/9O8v/+
z+J1Xi+0PU6n79gr49n8XTqdXLbeH+YwPOB6HuH/07SYjJtdfpunxg5UbbzY
R/aYQ80dNIdGIw53Efkm86khDtKLeyBAm6irrjA2cwQaE7eLj69G+eWAk5W7
q8rpliuA5EHOE34NjMvFzfBY6OVkyhf4+ClUvFMgnxbG3T0Me5+c0RFOBaJj
v9ARv5UKvaWjOWiDH/CCJ3Z1j1S8lTGWxhh7F1fQckbD1HngZRr4HBn5wXw0
Eom63n9TncIiB3q+WLXkz1PENg4UlAETseqjcn2pjG+1awj46bBzvBPjVF59
QFO+gCAP5lZywhHiSqVKarzBL9KLmUBj0FWjyqPLj7fi6UD+HJX8WF7SmKuj
auVbGQYRt0SLoEPziOVUnZbiAQOuFAZo7XLdYW24/NKYf/7znxwgqZ3Fe3ki
1vPuG9/4G5YZ3K29vVcvDKUwvR9XmI2Z9VLa2/e/F4dONzA6KI7V1Q/RDBSA
MpTRVUcREEvzB+V9N+Wrl4cMYwx8oe1bUeig1MovpdYWL//t3+p93i8jNAMi
7wloYAk9/Y3H7ZqICVNfLO59u6SrL3fw7lvyu2xBep0CstzDyY288hgpWEFG
mSIaFHt5anXQqCHO8G6JS0X0Loo2hlUIqmy9CzVj8z5nNBjTRDLCCoXRwlq9
NIA214NtqeJkCeVhKO9C5/+u7kvlFJe33XfwVPN6yEFVVwZC16zF9xB1VEHL
HpC9qFGmupvpXGCvEWlA7snOtjkYOylxbJocQ7w+QbZ/j/QWMmZQRrZRDmND
9M27tdf3GsWl8DekVx19UoseiI816CindigP5XIilJsDtlpRedik/bOAKkKX
lNSonWGqVZ5JKZGqBDdulSxV6ZC2ohHvXu6eTXJBd42c5SB26ZKOFuq8+lac
nmJrMpzghzU5m0f1V6yE3ZuPNVZV1BM828myiwZsiXTqKnHTUBsHriWydVDX
EOB+AE1xXjg8BVjh2HNd/apRkueUlAz93aj7v0WT4euuc1Hj9AIsShDw8v7P
xWJyzEvWuq7xsMCpRtSPFbptxGDmMr5rYKY59QZMNf/emfl6i3TMaajz+RP4
gl3Ck9QAoPMuxZUAvGaWHa7UkhO6K5XzLHu1hjnqiwfmvmH8JowFNRs3CFOa
G98Zd9UAq/WOzc0aLdUJNeMeaQAr32xuqjmj95zSwBDHmranp/dWB6SfNhl0
mkiNvq0BWx150tRxmTj05cn06iWelXqpblWXINeA33F6STT1/jslE9WRlo8g
ump8kOI4W9Ue4F3EtQe/fYdl8GDziqiXZLfbpmSn6P59nI9KsrfSFQr5vFsN
XpuJqjys6kn91A+5ZzTBy62tajTrd8sOON6bOMNuQt83Ma8dabVd1VWRoNYa
yEBgc8QuXj7jycxWAtNcJBkY1wLTOuhwPWy0pb2BVJnX6lQtSja4Nhj9tOPg
2tjwZI0DQ/9pgSEt3mrLHj+FuATOCmBW0mP9IJZrsKZkrQR2PeW1Esh19dUK
ILn9dXMyiFutb07NSzCrbg5GGLmDXjBLdXKfMu6yIRvauGrLEHOFsRHzlFXV
Yl4+Ph3iM3lLd/0h1PpfdytnqAAFCSWSyRQMPZFoGvx9c9BdQl1Pv1XzvXiJ
4qrAVQ8NiL2oSAXFQbu1xWHa2PesZoMdyuHfPXqw61q2/fL584M9MKtxNIcX
bHwPQKvP0ve07LvCh12xzabaR9NXb+3einD01X6ywIQWbsF6EPkWW+ngrlqz
rvWr2itWR59XurqrttjKmLYmxtoxwyoKsWLd1ozbJuGq4ybNk+9xN/kmZh0X
1sh6DCU3f5bdWHEEtXOxvC60vvroa2klyrqkJjT3JTdyfrLAxZjRUyccjvBO
tPviCNvGlJ2yPy6Mv/1Gh++2h//4/b01CD/eHcqv5jAST+59+zdS82ZLV/Q7
Q4f6vebzPoZi4BHWH5T1qseP2FWhXMseJ+h7WbFeuSqLYHiBj6Ub2lFChhVq
PrxSQvzCrOqnFvrRi/Ndgc3Si4tL6GL9eVXoqFFXgl4Jvn40Y4XieuStVpwH
KToqvGZXXaGJkoadQ1vtSFgFO7lWrJftGykF+1WB6aXEcdPlpa/o+aizdL3j
7e72LlwY0tc/r+KdzuKARjNyAaWHVk/8ohWo4BVC0oxL4GPXIc0wBH/sklbU
gT/3oFkt5Ig5NeUNrMPykvd630reuW9YjTetOK1hV0lFeA1HmS96vPW+IUMq
VWjTCIgWtTRCFaEWAUkjIv9+vALKjcAhqsF6/M+wzQWQ5uMGLBHvM2ynypOi
olxlN5vBNexYZ1aV+8YYIwLq3ULPthrjxX6roQ9zhzupdIga+0XOoijktQrp
rqCE5Lcw556e0fEDHXCbhdsTeFnYdttJhdpeWwnabhYuc9J34OE1C4s8id1I
h6vkVVdIm93Zpjsh21ZnntoFhVsdlCLQWdjpTsjUDdpp4VHLC9UobLdSW/Xw
ao+xXfHqgpSyqsEWpE5ebeXb0o0qRcpWgzXzSZVqtaiZ4xVbuG28KsHQmKdZ
rLas1OCEHqtaY4Fu27lF+14zuRKvtg2sa6TFk3dF5MVTdkXjxRN1ReLF07Om
PvsMtRpCC6yzGkILTLI6Qt12mJqo+owvpUL7LC7QoPLQzr5Ib4KXospMJ4W8
0rvaqKFeGCk7F5lK+J4VkSOXX3hbJuSo3d3azgiz/1ak/RNby0prpcrNhhtG
VKbE80mZ6KNgtXt6T/hxW4kUT/MsjqvOy8RNFfL7u3vH/Nb9CzA5phZe278l
TkMO8Wdn/+HBE+PZ0cHP2yf7xqP9F/wpOTx4+MP26f724c7hw52rNw+PD90I
vj/c3ZWfL/d/2HloXtLLg53tn3463b74x4tX/9h9/vDxoWf+vLNLdl+9OJ79
+p0ZvXp4Pr768dn0Yu/xybvNs/zXp2dH2092t7eP90eTfczk9+ZN9OPZz3/k
LHgyOX/75s3j8Gj2ljz7Ls5nv/ySnKVvt6cnRfbo9azYfbH/x+WjJ7Ppkx9+
zaOnO86T7y7H289nxbvzI9s5dGeP8l9Et/af7LU7xUl+0to7dIHnGhOez0BP
rlRL4VlUA94xes93Hh/saoP34PXl/uWLHx5N/nHw7pW5u/3TiwP5eW/7p2QP
hmv/7Ee68/CN+/jNm7fHL35OXozn7+iPU/9Nvrkfk/jd5rk7/Xk0Pvg1vnxk
Bj9cXTyOt893DpPdVzF9d2S5b09O03dZ8ePlg8fxofc6nb17+vh4Mjq9f1/r
fwMt3n2Rm0t0xeC5JI9/2Ob3INfyyyg+xkuQJ/KMrVEGvYwLDJblkvlSBtOM
OqHPJ/8xKJoM+E8dBygzgojTTdpgig1THYDlhQbyZLnG6rUcW3VW54emUD5k
LO+Dwe+GUUegSCv0hvpQhtZwY20yfAbTZWexrLwUC4vhFVlasWaY7oNxfFU0
YTUDdaIQh0Sq69zUMw2G1qaOpXau60Otg33m7AfD0v8tNW2XlNet3GWg6/bD
B8OUJc2qdNN+Ey/Lgp1225IyubpGsF5KXNwihMDcEodLmLEzmczkYU0lIVr6
N43P5E7iQmS4h56BOyrPT4uLLO9q240T/b0w5z9+vAcVtVZrFfipRjbELMsf
+ULmTBxm5rcXlUntzvNxfj4/V5jKE+64C7CK1GwaCxzmTcPe+o//kDHzqrQQ
/i341Hopwem73TbRa4a/fwO3CzTI34zNQUeV2q63TXJ2x/e9kFHPN23f9iM/
Ta3McuIgtG0noqbvpjRI/MRLYpp5dpay1LVD6mdJ6CQB82h2p9bI78b33w8a
3SiTYMmeWOHddmdEUXnglqWi5PvOYmXf4a+1NQywz/vHi7qMPx9bWFVw5mO9
0e4WPy6qrNLBbxoPcOjHoBMWoKANA3w+u+P5NMmcxHLgJ8w8L4zjmCYWCxzq
23GW0YTY1DT9IDWzgNos9E1mm3FkWRH1rTTyXZqZbhZ7fmIngW+FqZMGLsBJ
LDfzUpoFCc1oGATEih2XJa5t+WbmJZFreyb1AhbfaeH5+z0Ypzo5y291wm5W
xtKm4Wy1SFW9Lw09pJXVZI2FoRKUCLNZWoZNOlssS6goBELoZrPfzu6Y5p3f
293vkpdmDGPTcNuiWhXvd5ABJ3PQx9TlFAGiaW2d3cmoH7vUc1KPpl6WZjGL
Uub7DnNT18oydgfqqDJDLDTEUkOC5YZ6wUVsKYdNTjTQqg2tWm5k08wCTvEj
j7lhnLl2FNupZ2U2jV3vDmIny2DALhpiqSEWG+rl+hut+bmSpt3DWtVZW+E1
qdNQfqZpWaDoHBckx/eDIAyjiNI4TpI0ZSzLTMt2XM8PwojGSQoPWAqKMAoD
33Md2zLbMqR+2oqwq/fcnQbJcLccN/DDRdprkUrpsy0A6sDyVqjasjKAS6Fm
WzxaPWqr1U2jjFluGkE3RfW2dYsFWKDZbNdsMp2jBogWwa7Fb7ArzsDugVl1
AaZ24ZBMZpgiW97sU27XV/nU+GGC+jRuTOJX0OaWYVi+BSa9rCIdkzT0Y2qb
thfaQWjBXxem1gz+N5fPvKR/6jUdLwws6pkW/Nqmid+9DBsLrdAirgWPXHjk
h77lUte0PHOZQgE8TRRt0if/2E7VjbYMkfWEyGQWfEkBjpmZNoE/gesAYAc+
RfjJCuDxMuL0U8Z2gooyS8s3KRcAEp+Ucl7o0tQOXdehQDvbp2YGIF1TWAWk
zyxYZhWQ1cyCbquAsLifqfp4iixjqj6eIsuYqo+nyDKm6uMp3fmwtvCc4Xw0
o2M2mRfG3uRyzA08dAdrR5iB/eSpgj/RRSnvYCrxgmrl2ddUPhwqQNxdqfUn
1fuTN/ojjdkN48lEXOXCcCVd3FMjUkCWN2SqzvLUwXoQrsSB583Ukln+Rbwh
BiwaB2ZksZCmFP5QJ45BcKmV+iBWTgBslSZZGDteYLlJlqZp4kV+mIRmlnkm
u/WGruUNRYnrMjMIfJ/afpY6DigO0JoR6EHfSUyWBMT1vcT0E8eMWWCmmWNT
0IluyqgFKtKBGS0MzTRKQUc5WQAkMxMfFUDixnYYhU7o+qEL3lCUWKACI9O3
zdBzw8D2gIqgF754b6hV+tYbuvWGbr0hDcj/j96Q2roB/VvYwLWlEKaDaY4F
rK07Z7PZxdbmpgpvgmrZxFsJN+J8fKc9ql1E0hERAWWEPLA7i15zUD6xOxf5
a7hzy00H0m87oAUcuaXlbX197pyFA+Zx9OEjjF/sh4ELv6ZD7cwGHyiAl34a
wETvezYjvuNnfgovfHCz+CPucDHoOgd4U68wsD+hV3hjBljkFQrriPSZR8us
I7KaedRtHYFv1s+bX4FX2GRNsow3+1iTVLype5f2Au9yUHMtB/pKFH55y+8r
f8Bv7/7y1sOu55XWesGX0zQ/sjDKDZjVBZ4Ac/J2OizfABh5rzbuRLy76L6v
e38d39PzE5CxDFgyoY4L3ExZ4NuBlUW+C2wcJpYTsRSEKkwT341BeEAOTBdk
NWZ2SMNb3/NavmcKKtpNQCdZEWhXK4lYkGEoD/Sv7XiUmj6JfBMmK1BmIPyu
5YCWQaXBogzmPyvIImqCfo4ynyYwibMM9EQUWCwDNR17VoTRtzQFW8KnPihS
FjC0HZzUj20aRaBfv3jf0771PW99z3qdW9+zBuQL9D3rhwpQWrgTV4AXd5rP
NvLJ5o8/vpi8uvOn+6yfdgVPVKr5wZ9rgk4yMI0TLwFDF6QxyDycMgI7C00n
S02YHGKH+cCzLPEdy0tSJ8zgg+OBjRwnbtScoJt94IYM9vezdcAxbfBpU9ez
44R5DNQJoxnMVE7k+a7HQKGlju+BaeuZATXBVQiiwLYYY0kGtrcZLOzAMr8b
DdQ1fG8DT4yWJqDKu40Omxes4ZEvN6hIv0WF3kdqwf/C67G/Go8c/Brl3QSO
9G8CPwpc8GIiH75Bbyi4pmDS1BfOiFg5syyF3DoyQbqEwgoUqH7uJMvZk7PD
Esbr4zrML6WYs5P9HMfpYb9mPODG7LcoHiAsVtJnsi6zWMlqJmu3xUoyu18y
/rrxgIWCQZZJRp9gkOvMFkowyDLJ6BMMoknGNeNk3MnuFIfIdq4XPnNvxeVW
XL5gccFgoJNUwUDHXiUWSOws8OGVHURQJIFHzIcOQCELhwk+uTgiZcCwFjok
eljbCrwIPsXU8j34ZUBRz4OmTSvAHD2p7cAvcIzCgnAoJjyFMp6DW5ICECdo
zwIcPD8LvAArQPtBAE8QN8t37QSeRcRngcOLJvCLqCK5GL4EUJ7vQGUbwbs2
PIdOqDfYWYKvABKIIVSDNn03cExqImvzXw96DgwBrTcGzQR7wFcDBq9xiPhj
3884JohqxIcQ33myIuLnIa+Rqo3qkw2fXE4MOeoRD8omyJJAFXwXYpcIiCbI
XhDDbwO2nfqLAeC7kCAEPw7SILWjetsLBkxritTbCvQKqS8rdIHGAcbRTmFY
LAm/SU/ZDvJVrWTqQ0lSK5q2xrTRZp2EZAENgWmgC6DgfA4OGQeZCVqVhALi
wWh7gs5Q3JYVkVWwAnA3FHdK1IEjAluMi6hDVCWBIDIf52pXsEUQVuML4PAN
6GFsGZ6nxEcKBuqrqiBBMaF6oaOOL4YqVbJs4hKAZ2vcq5gi4xLFsFX5xurq
PSnliEkh8HixChutOvRWG1SUZwvVDR8yLojQJucjXhglDsbdlrjYrL3S4GwZ
25s7Mu/YV7Jm8C3vkkizcCKfYy06jOtrC3+RcD+fzzwbpDLOHJbaVpixmJqO
lfhmlESh7cN0CwWyxIKZOfJDKAQsbsEk6VKYsm7D/dcK94NNkUYpGDimC6YT
7telHpACFKkH1k8MFiaxEtuJcD0+y6jlemAuhTE8cZMEJmSwAFOwRpwojrPQ
ZTSMQuq51Ab1YqamG4ZOZttgl1ASxVHIwFADuYWJ3UUqQiGXffHhfuc23P91
hvsXx687rgwBvvEGi5cBVlgjuBFNKjD8hOqm4TUPhK3auwrSwvOvAH2wKEL/
yfuz/nJLVfdGyy56T/605Rf1078M0xydlZZj1M/H3rWfHrL+C3jYuuXhz8bD
y8LgS3j88/EwcLDj3oSHO1/+/ldajfzCdsKuMsv1svQnkKTVZrY+jXADbfBJ
8F+6PdhasD+47NwCxl6otf9EmvRo6r80Texr06RD9L+Gbd6Oba6xqLzcbSf9
frvpeBEG0MvNtHxzLXXFagCplgOiOIQv1F59WZn0uw9mhisujisC26YHzXim
x5twMHB+zYUCnGlJ90IBtOaXrVl6a1pjFrnJvE0AHRhvLGUntt29s9eLQ1/0
3g713hOOkNiLnqy339exiNryW4OqerkEKFkA1f7EW9wd/QzDjbe435j5F63R
iagM6QvLLIvKkNXCMt1RGeKyfrnsE0uyfLvHYrEky+TyM2wEEWJJlsllHzCy
3J5eLJZkmVz2SRBZJpd9YkmuKex2a41OBt31qLu7xZPlGtl0cm5gMrMpZr6W
OZ6/mii8PKtQgyyNb1HgsQRUvuVAxG78v0x0PnRCFocgklGYRKCaUhBZL3JQ
MTAKghshI3tBGgVeBgyTuqkVcd1gWyy0k9trsa4XnXdt5lqh51mBD8rItakX
WF7iO0Fguw7MFGFCEsf3U5+6iR2DknFgHsL1s9D0Td9OQKuHNPD8lEZJFptJ
Yjm2Z/lASydBisFUAvSiXkoSE2YzhyapTSMAkPgsNiPmJV98dN5tlv600fkF
/gm+tXvfWp89st919TWMnz0wV4hr3y4L3J4CWNr7r+8UwCpxt2tK2A0DdnKG
CG+AVXdQ4Qbn3deTgRvw/58Wvl7M92uFqUFrNy9jh4G0t0z4T00cHd1ddg8A
vzMWAX3a+JCovPI5k2vz1xoHVOq5NwC6fwO8rK+K7z+Lzu/j+7/arRai8noL
HGtq8hvwTrdisKRisL8oxfCpA8frnEZa7lGSfpdSBKgsv9xG7mLAxg94gMqR
gWP+1+Z/Lb6nPAxDE3yd/vNJZL195fVAEbmJBJMF1zJgUDDB2wfhG3TCEd2w
oRtO1TpZHqdaPG+SrjiV5cMH31Tb1AUWYqu6CV8Yx8LCONLS2NziMSBdaK5y
HwqGpUjffSiAWVzSG1gF2eWThJGB1T5hGPnGorAojCzCB6QvfrAsfEBWix90
hw+Il/RLaZ+QkmVS2iekZP1ThBWDkvVPEVZCSpZJaZ+QklWt2y4hJcuktE9I
yXVsDSWk5Lo3w3BRXCalekzZ2zJOLidi2/PXspObPJhPAenp+WTKBkY+M4qz
yWVRpcspWNULoWtmlxO5mf2vc52LjcfWwoiBIDsRZQENWWrCbJr6NrCS58QJ
c7M4AgawqGM5lhnjvUtBarE0S5w4vo0gX+8qUQfUZxKHZupFWRQz0M82jLXl
uomX+a5p2ySGmcUKUebTKDHdIKBezHwzjHFR0PTDyAmc1LWzBP9ZHpART2CB
ovVS3wVVnHlxCgqEZWkaeykDjeK5LDHDyGVRENEvPoLs/csiyLcx4tsY8W2M
+LPFiFdg8bViSs3K15KPL4JnPtvW4HV5pifG2t5494WH+JfEcNYMX/6LY73L
4mLXvYzoC4rUXXu77mcNfH5aLvqcw7No5+zXcduxY65z2/Fy74b0uzdyu51F
fRkn4fGKyONxEluPZvIQSRiFyfI4pjCeyPXimGISINe3LEy84LcWIumOQnzK
WIgZuJEMHvFoSIJ382pREVNcswFfssgsQw6NLXBktQ2vzUCGCoV+2i1119/q
Gn7K25xvzOALb3PmDirp81CXOahkNQ+120ElEe2XvT7RI9eLTgrRI9eLTgrR
W7ZJvBmdrIkeWW1Ta7fokWWy1yd6ZJns9ckKWSZ7feDIMtnr2M36jbHHMJxi
HFGRNpsZ779J+aPhVD36SMgBiBFPKj+bYGjpLUyzRjZif+R4Q1TMzujbfMJf
JuJO5xzTYYsM7MXAuDyDydQoZjnYSFTFLTEYaFxMLtk0m49UWQQxx3DgGcun
BrwYGQm9oDxcmSMojH0ePz84qcImbJxMUiaiolP2Zp7j5dklSqBRKCbtzS9y
XKoUzWwYO+o9Rlc5gBQTu1KjuICyYF+/QyDgThj4boDdmolO5ZhAfHfn6ZEx
yjGlOA/QwpCcT9D3oDAqVOIEneRdh5mdJxxHx02gCQZKwaYi9zImJZ6eC02l
MImvRNalEgFw/icF4wmWwFCQUEDpCRIVIj00lb0DTQjDBi8RsMKgxJDRgutZ
mfMckBR4JEgODSRPAA2I8CzoIs+9uH17Oi9mfBzeTpSCrWphXHjKZPaoKkd0
2RHRltYvkfCb/TED31g0OGWnMLBsijwyZpcadJl5vZNEBr2AHuEBv9Mcs/TG
bMyyfAb9BY4AhwmJD7wFZhF0X3Iwbw5ILnLXQ3MjOj6d43UjmAl+AhPLWEiA
zglleBoTz88olID3aZ7Ju1eLDQyQFzPBqSVAHsSfTdk5EvEsPz0zRgzmLc5Y
BXQXWwei8CRavbQ9p1eKtEY654O0hDgoACo8L7zTDQz2gwXawJGPK+fREXA6
nZZCNCjtySneCgcDGE/pGPlww9hVliyMQsVS2N9ifoFZxVkqbm1Ho3w0YiP+
BWANJ9lQqBStGvYO2EF2UBComGcZ5iQfz0ZXQhmMmFIXwBE7UAK6nczEYPAc
6nRGy8xll/RK9LNUGLK9CXYQLH0utdCtKyGlwIzjU+i/GHeeoZ0aF6iIhNQi
F+XA21Ng8lkNsNIFWlmR/prrFWBo+ADUULnYz+DPSCznoMYAHp2LlGrlkCIb
sj9YMueP95R7sWEcokyKXhZl75VuQu4acTGaj4CIF3SG5xL6NZEQLJDa+WhW
iGs0ATJX1TX1iX3HMcILActRO6dVhzMhOeUUAFI5knYYMMtBBhLNUmSJYg7I
UFWNJwTgzQm0ai0qdkenEKYcye9yoQi6PU+gIXT+zhgms9M5UoyeFAM58IVq
iCqCS9HSmoLnwLqUTxhJXgjVNlOBF/TbZvk55vzeYxeouMbJlaCn5P23tEBu
LQebTy6XbDTaMMoaSIJsPk44eqP8NUONMgXJgIEr1FWmSjg3jF/ApAWUSy4+
49NVWrbP19VQncqU65yrqtd3Cq3/wH3nMD9lV3KeLWdLFDc249qocqJxtkwo
zsoFSIv2AiFKu5uvEuKKI++xJLiQu1TvMCc0NIYMfc4SGLO8OMeRnzJ+9SRH
S9XnFKlam4y5Jhuz4ankLq5DtSGtE4GvlgqpeP/+YLi3kbNZNuQJ6rmeHKaT
c4BTfPzICcndCKxKjekknqOiYNPzvBDUL65AsZ4bl5Pp66LULYAtKLTZZCKm
tYprkQ44YCWLbe8+FhRBsTJmXIcBiQ94QHfGRwaIsltuqTqoIr06FjAgbFzg
yhcHps0SMDjakk1G85ExH49AzSENrvi8zAHNZsq+4EhJnSUQkpNxJhZr8T5x
PsqcwDkIFcyZczrSSYJIK7aCQdxVphqqH5QgNRXk5znooppEbBjbjQETVThm
uxLmwHhWNjYwtlWQuBgsHC6pTnGNWcw/hewin5G0mQTUN0g24xpLEyv0HaUl
O2VCH5fvOORZi9A0SdjFTBknQgBwCIC+wpJWVpBmhs65ukHFKQQd51RlsUj1
BAypqXNdqeJCOVdT0lim6VuYjuGFtAR0i3mDby7Y3bBahv5W5Wq3Tf4hk+8+
im6VRXNpGWLIE9StMC+4113OQ3xIRdqWERCVFoA6eN+WJAQbI7MJPT8Xtmj7
slncU1BmfhlmPBUO7iSwG0BAAsUsV9kQAE9RDPgEmHWWJ3PBfZyT4SMaO2oN
GUbIaQKFWTDneWrqgYQCTJ5zrODKCpJSaA6ccu0HCJfqSxiXSvvxmQyEaz6m
YComUgppmnKUUdjOwSZF7dNoU40qUvKw3Vvk7HKyiqWeBu4v57hDxb3PSrMH
Z/EZ4wlcgVRgF4rpE2SqpPNAb2OPjdipQGf3DDUml77tOqI7o0nyGgYcrCIo
wnuFxiw3lcCSy7E1tHG4PyjNSTq+4gYBYlQw9rpEB+HHNHmNXwph1sBAMHoO
4wdeJHbwlM0KYdGzqo8gPmyU1amj8RknPegUMJ+GP81hxObnGiNoVi56kdgF
6IzwAdR8XG09EE0NDM7r7DWWbmIPFHswmU+741HCVyqNZKWTtXjst1yuXh5D
ky9P6OkpS/VHVuPZIU3aT0z1iAsx95tLSVYcMjaeC7WxzVUf11xTjW5g4sEw
n+d/CLuBR6o54cT+AtRy0vuZNXsac55Aal1SFGqd7qDQErBLubIQxogy3ytx
QuUynvDJqAtySee68YhCpcxnLlZ0JCAtQE9hhdbIaRsJvkdK0V9xmjKna+KH
XUnbtgi6W6Bj36vghNh1BepMqmbb2EH38njGWe4XsZOpQM9mhkET/lTubxJM
IxVwqWNhPsDQiZxl0MCp+STo74LfN72SypjjWQLMuWYawQw90zwC4ZED3dDq
FBZlihZwRWo0gKUoox0/AVWBCnwEH4SxPcb0FnJWLJN6KTFCHFnJidAngQ+I
wQTda1QHAh2BRxWO0FDkDu9EmRRXTZJh+MRIRoxr/hRtGUXbEXh40Argwm8E
kshJVOXWGM4bSN4pX0+SI17GwABaqhtcuWaA8NPgwrBGq4lHwFQVjT0u0L76
Q1p+YgG7XrcCOVB95TD4APLtMobaLiPI3HiI2KthLSalXaRCSEKuVGFoQw2k
GiYeVgH38QxGZlswG0DiSkT5sGVTPOSETdGp4kNWTiXFhLeLJnVcUZpKDw6N
oJIVFKNsGA+kJ4mxIO7eNNsUssCFX4GULTcc8qZ+qPz4NC+4DuJuShnCASRn
l4wbX61+4hfKx+DlHicZjE1lospYzZTpTvns6gJwvUunU3olfS96UdzrxJ4a
MdTULFZJtppQFspQRxlJJlMMCwCLi92UfNKlVS4gNUXGDFTbWNpHchQE1g3j
h2rjU8wwKFg6MRjwxOol8KaHxnGVyMHUOc2BZ1KhQ4TfvyFCzhvGgYoiSLNi
IqKgiPAhhYp/gE2a18rgGik8/yi3xBZMOM7FHCg0zd9Jg1I51JQ7IWC7g9Sf
g4psB39IHTxHsCDQnwnyAXcARjTHqEOFGh9LbFxEyhKZvlGyHY0LPuKTjOBc
U0U+sNFMRMCB/GghCABc0rgYXoInohyIeSy4bSa9MrFXVgikjGygLfgEBt34
AD6FIvSHxqCS4XD4Qf4jP/OtR7pb+QFmpPk8T7VNRTAlIcT9n54fHO3vkV3c
c7RelT0RSVmlztNnJwdPn2w/JuKC50NuV2Bp7qB3LpA30OPz8i7OMzBWHTX5
LDBMRIF6m5XneIz3dHVVrt3kVa+9HaOf2lGJ4otGS6D1QKVXMT2sxvWH9HFf
ihL1Wss4odxqsD4nHIPS0Bxnvr2i7ErvLoza8Bt5JlZwQOZhXhyzajYkv8Ak
zNqUqYBfYoF6j0/APNmnOgu07+6r13gqt3toIYKuyh27Qup89IDNupvluzjq
nUbLSVjLU+Chi6uuaniSrcHhIiLXUVZYVu02cBc+boeGZo7mY7Af5fTTAWI6
H5e7ZuvNHl/Si07SwvP12E2LBV5X8exVmJTQ2hsiOxVQZ9Xmhsh6TaFTxAzd
VVvfothV8xg3Iyysh1sVGpgu0Ccavj36pCUperUO7fX86KCr7HyaL+bWY35o
U5P8DgDNg52dXLw9PS06h4a/HoKH3dDvak7oJKMIvTfpWLEwTPnJzHjKze4u
jPl7sY7UqDnJZsYDmo/QV+/sazYbZuJ9p8buIkaHpv4fxxTauVttAgA=

-->

</rfc>

