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

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

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

<rfc ipr="trust200902" docName="draft-ietf-suit-architecture-15" category="info">

  <front>
    <title abbrev="A Firmware Update Architecture for IoT">A Firmware Update Architecture for Internet of Things</title>

    <author initials="B." surname="Moran" fullname="Brendan Moran">
      <organization>Arm Limited</organization>
      <address>
        <email>Brendan.Moran@arm.com</email>
      </address>
    </author>
    <author initials="H." surname="Tschofenig" fullname="Hannes Tschofenig">
      <organization>Arm Limited</organization>
      <address>
        <email>hannes.tschofenig@arm.com</email>
      </address>
    </author>
    <author initials="D." surname="Brown" fullname="David Brown">
      <organization>Linaro</organization>
      <address>
        <email>david.brown@linaro.org</email>
      </address>
    </author>
    <author initials="M." surname="Meriac" fullname="Milosch Meriac">
      <organization>Consultant</organization>
      <address>
        <email>milosch@meriac.com</email>
      </address>
    </author>

    <date year="2021" month="January" day="18"/>

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

    <abstract>


<t>Vulnerabilities with Internet of Things (IoT) devices have raised
the need for a solid and secure firmware update mechanism that is
also suitable for constrained devices. Incorporating such update
mechanism to fix vulnerabilities, to update configuration settings
as well as adding new functionality is recommended by security
experts.</t>

<t>This document lists requirements and describes an architecture for
a firmware update mechanism suitable for IoT devices. The
architecture is agnostic to the transport of the firmware images
and associated meta-data.</t>



    </abstract>


  </front>

  <middle>


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

<t>When developing Internet of Things (IoT) devices, one of the most difficult problems
to solve is how to update firmware on the device. Once the
device is deployed, firmware updates play a critical part in its
lifetime, particularly when devices have a long lifetime, are
deployed in remote or inaccessible areas where manual
intervention is cost prohibitive or otherwise difficult. Updates
to the firmware of an IoT device are done to fix bugs in software,
to add new functionality, and to re-configure the device to work
in new environments or to behave differently in an already
deployed context.</t>

<t>The firmware update process, among other goals, has to ensure that</t>

<t><list style="symbols">
  <t>The firmware image is authenticated and integrity protected.
Attempts to flash a modified firmware image or an image from
an unknown source are prevented.</t>
  <t>The firmware image can be confidentiality protected so that
attempts by an adversary to recover the plaintext binary can
be prevented. Obtaining the firmware is often one of
the first steps to mount an attack since it gives the adversary
valuable insights into used software libraries, configuration
settings and generic functionality (even though reverse
engineering the binary can be a tedious process).</t>
</list></t>

<t>This version of the document assumes asymmetric cryptography and
a public key infrastructure. Future versions may also describe
a symmetric key approach for very constrained devices.</t>

<t>While the standardization work has been informed by and optimised for firmware
update use cases of Class 1 devices (according to the device class definitions in RFC 7228 <xref target="RFC7228"/>), there is nothing in
the architecture that restricts its use to only these constrained IoT devices.
Software update and delivery of arbitrary data, such as configuration information
and keys, can equally be managed by manifests.</t>

<t>More details about the security goals are discussed in
<xref target="architecture"/> and requirements are described in <xref target="requirements"/>.</t>

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

<t>This document uses the following terms:</t>

<t><list style="symbols">
  <t>Manifest: The manifest contains meta-data about the firmware
image. The manifest is protected against modification and
provides information about the author.</t>
  <t>Firmware Image: The firmware image, or image, is a binary
that may contain the complete software of a device or a subset of
it. The firmware image may consist of multiple images, if
the device contains more than one microcontroller. Often
it is also a compressed archive that contains code,
configuration data, and even the entire file system. The
image may consist of a differential update for performance
reasons. Firmware is the more universal term. The terms,
firmware image, firmware, and image, are used in this
document and are interchangeable.</t>
  <t>Software: The terms “software” and “firmware” are used
interchangeably.</t>
  <t>Bootloader: A bootloader is a piece of software that is
executed once a microcontroller has been reset. It is
responsible for deciding whether to boot a firmware image
that is present or whether to obtain and verify a new
firmware image. Since the bootloader is a security critical
component its functionality may be split into separate stages.
Such a multi-stage bootloader may offer very basic functionality
in the first stage and resides in ROM whereas the second stage
may implement more complex functionality and resides in flash
memory so that it can be updated in the future (in case bugs
have been found). The exact split of components into the
different stages, the number of firmware images stored by an
IoT device, and the detailed functionality varies throughout
different implementations. A more detailed discussion is
provided in <xref target="bootloader"/>.</t>
  <t>Microcontroller (MCU for microcontroller unit): An MCU is a
compact integrated circuit designed for use in embedded systems.
A typical microcontroller includes a processor, memory (RAM and
flash), input/output (I/O) ports and other features connected via
some bus on a single chip. The term ‘system on chip (SoC)’ is
often used for these types of devices.</t>
  <t>System on Chip (SoC): An SoC is an integrated circuit that
integrates all components of a computer, such as CPU, memory,
input/output ports, secondary storage, etc.</t>
  <t>Homogeneous Storage Architecture (HoSA): A device that stores
all firmware components in the same way, for example in a file
system or in flash memory.</t>
  <t>Heterogeneous Storage Architecture (HeSA): A device that
stores at least one firmware component differently from the rest,
for example a device with an external, updatable radio, or a
device with internal and external flash memory.</t>
  <t>Trusted Execution Environments (TEEs): An execution environment
that runs alongside of, but is isolated from, an REE.</t>
  <t>Rich Execution Environment (REE): An environment that is provided
and governed by a typical OS (e.g., Linux, Windows, Android, iOS),
potentially in conjunction with other supporting operating systems
and hypervisors; it is outside of the TEE.  This environment and
applications running on it are considered un-trusted.</t>
  <t>Trusted applications (TAs): An application component that runs in
a TEE.</t>
</list></t>

<t>For more information about TEEs see <xref target="I-D.ietf-teep-architecture"/>.</t>

<t>The following entities are used:</t>

<t><list style="symbols">
  <t>Author: The author is the entity that creates the firmware image.
There may be multiple authors in a system either when a device
consists of multiple micro-controllers or when the the final
firmware image consists of software components from multiple
companies.</t>
  <t>Firmware Consumer: The firmware consumer is the recipient of the
firmware image and the manifest. It is responsible for parsing
and verifying the received manifest and for storing the obtained
firmware image. The firmware consumer plays the role of the
update component on the IoT device typically running in the
application firmware. It interacts with the firmware server and
with the status tracker, if present.</t>
  <t>(IoT) Device: A device refers to the entire IoT product, which
consists of one or many MCUs, sensors and/or actuators. Many IoT
devices sold today contain multiple MCUs and therefore a single
device may need to obtain more than one firmware image and
manifest to succesfully perform an update. The terms device and
firmware consumer are used interchangably since the firmware
consumer is one software component running on an MCU on the device.</t>
  <t>Status Tracker: The status tracker offers device management
functionality to retrieve information about the installed firmware
on a device and other device characteristics (including free memory
and hardware components), to obtain the state of the firmware update
cycle the device is currently in, and to trigger the update process.
The deployment of status trackers is flexible and they may be used
as cloud-based servers, on-premise servers, embedded in edge computing device
(such as Internet access gateways or protocol translation gateways),
or even in smart phones and tablets. While the IoT device itself
runs the client-side of the status tracker it will most likely not
run a status tracker itself unless it acts as a proxy for other
IoT devices in a protocol translation or edge computing device node.
How much functionality a status tracker includes depends on the selected
configuration of the device management functionality and the communication
environment it is used in. In a generic networking environment the protocol
used between the client and the server-side of the status tracker need to
deal with Internet communication challenges involving firewall and NAT traversal.
In other cases, the communication interaction may be rather simple. This
architecture document does not impose requirements on the status tracker.</t>
  <t>Firmware Server: The firmware server stores firmware images and manifests and
distributes them to IoT devices.
Some deployments may require a store-and-forward concept, which requires
storing the firmware images/manifests on more than one entity before<vspace />
they reach the device. There is typically some interaction between the
firmware server and the status tracker but those entities are often
physically separated on different devices for scalability reasons.</t>
  <t>Device Operator: The actor responsible for the day-to-day operation
of a fleet of IoT devices.</t>
  <t>Network Operator: The actor responsible for the operation of a
network to which IoT devices connect.</t>
</list></t>

<t>In addition to the entities in the list above there is an orthogonal
infrastructure with a Trust Provisioning Authority (TPA) distributing
trust anchors and authorization permissions to various entities in
the system. The TPA may also delegate rights to install, update,
enhance, or delete trust anchors and authorization permissions to
other parties in the system. This infrastructure overlaps the
communication architecture and different deployments may empower
certain entities while other deployments may not. For example,
in some cases, the Original Design Manufacturer (ODM), which is a
company that designs and manufactures a product, may act as a
TPA and may decide to remain in full control over the firmware
update process of their products.</t>

<t>The terms ‘trust anchor’ and ‘trust anchor store’ are defined in
<xref target="RFC6024"/>:</t>

<t><list style="symbols">
  <t>“A trust anchor represents an authoritative entity via a public
key and associated data.  The public key is used to verify digital
signatures, and the associated data is used to constrain the types
of information for which the trust anchor is authoritative.”</t>
  <t>“A trust anchor store is a set of one or more trust anchors stored
in a device.  A device may have more than one trust anchor store,
each of which may be used by one or more applications.”
A trust anchor store must resist modification against unauthorized
insertion, deletion, and modification.</t>
</list></t>

</section>
<section anchor="requirements" title="Requirements">

<t>The firmware update mechanism described in this specification
was designed with the following requirements in mind:</t>

<t><list style="symbols">
  <t>Agnostic to how firmware images are distributed</t>
  <t>Friendly to broadcast delivery</t>
  <t>Use state-of-the-art security mechanisms</t>
  <t>Rollback attacks must be prevented</t>
  <t>High reliability</t>
  <t>Operate with a small bootloader</t>
  <t>Small Parsers</t>
  <t>Minimal impact on existing firmware formats</t>
  <t>Robust permissions</t>
  <t>Diverse modes of operation</t>
  <t>Suitability to software and personalization data</t>
</list></t>

<section anchor="agnostic-to-how-firmware-images-are-distributed" title="Agnostic to how firmware images are distributed">

<t>Firmware images can be conveyed to devices in a variety of ways,
including USB, UART, WiFi, BLE, low-power WAN technologies, etc.
and use different protocols (e.g., CoAP, HTTP). The specified
mechanism needs to be agnostic to the distribution of the
firmware images and manifests.</t>

</section>
<section anchor="friendly-to-broadcast-delivery" title="Friendly to broadcast delivery">

<t>This architecture does not specify any specific broadcast protocol.
However, given that broadcast may be desirable for some networks,
updates must cause the least disruption possible both in metadata
and firmware transmission.</t>

<t>For an update to be broadcast friendly, it cannot rely on link
layer, network layer, or transport layer security. A solution has
to rely on security protection applied to the manifest and firmware image
instead. In addition,
the same manifest must be deliverable to many devices, both those
to which it applies and those to which it does not, without a
chance that the wrong device will accept the update. Considerations
that apply to network broadcasts apply equally to the use of
third-party content distribution networks for payload distribution.</t>

</section>
<section anchor="use-state-of-the-art-security-mechanisms" title="Use state-of-the-art security mechanisms">

<t>End-to-end security between the author and the device is shown in
<xref target="architecture"/>.</t>

<t>Authentication ensures that the device can cryptographically identify
the author(s) creating firmware images and manifests. Authenticated
identities may be used as input to the authorization process.</t>

<t>Integrity protection ensures that no third party can modify the manifest
or the firmware image.</t>

<t>For confidentiality protection of the firmware image, it must be done in such a
way that every intended recipient can decrypt it. The information
that is encrypted individually for each device must maintain
friendliness to Content Distribution Networks, bulk storage, and
broadcast protocols.</t>

<t>A manifest specification must support different cryptographic algorithms
and algorithm extensibility. Due of the nature of
unchangeable code in ROM for use with bootloaders the use of
post-quantum secure signature mechanisms, such as hash-based
signatures <xref target="RFC8778"/>, are attractive. These
algorithms maintain security in presence of quantum computers.</t>

<t>A mandatory-to-implement set of algorithms will be specified in the
manifest specification <xref target="I-D.ietf-suit-manifest"/>}.</t>

</section>
<section anchor="rollback-attacks-must-be-prevented" title="Rollback attacks must be prevented">

<t>A device presented with an old, but valid manifest and firmware
must not be tricked into installing such firmware since a
vulnerability in the old firmware image may allow an attacker to
gain control of the device.</t>

</section>
<section anchor="high-reliability" title="High reliability">

<t>A power failure at any time must not cause a failure of the device.
A failure to validate any part of an update must not cause a
failure of the device. One way to achieve this functionality is
to provide a minimum of two storage locations for firmware and one
bootable location for firmware. An alternative approach is to use a
2nd stage bootloader with build-in full featured firmware update
functionality such that it is possible to return to the update
process after power down.</t>

<t>Note: This is an implementation requirement rather than a requirement
on the manifest format.</t>

</section>
<section anchor="operate-with-a-small-bootloader" title="Operate with a small bootloader">

<t>Throughout this document we assume that the bootloader itself is
distinct from the role of the firmware consumer and therefore does not
manage the firmware update process. This may give the impression
that the bootloader itself is a completely separate component,
which is mainly responsible for selecting a firmware image to boot.</t>

<t>The overlap between the firmware update process and the bootloader
functionality comes in two forms, namely</t>

<t><list style="symbols">
  <t>First, a bootloader must verify the firmware image it boots as
part of the secure boot process. Doing so requires meta-data to be
stored alongside the firmware image so that the bootloader can
cryptographically verify the firmware image before booting it to
ensure it has not been tampered with or replaced. This meta-data
used by the bootloader may well be the same manifest obtained with the
firmware image during the update process (with the severable
fields stripped off).</t>
  <t>Second, an IoT device needs a recovery strategy in case the firmware
update / boot process fails. The recovery strategy may include
storing two or more firmware images on the device or offering the
ability to have a second stage bootloader perform the firmware update
process again using firmware updates over serial, USB or even
wireless connectivity like a limited version of Bluetooth Smart.
In the latter case the firmware consumer functionality is contained in the
second stage bootloader and requires the necessary functionality for
executing the firmware update process, including manifest parsing.</t>
</list></t>

<t>In general, it is assumed that the bootloader itself, or a minimal part of it,
will not be updated since a failed update of the bootloader poses a risk
in reliability.</t>

<t>All information necessary for a device to make a decision about the
installation of a firmware update must fit into the available RAM of
a constrained IoT device. This prevents flash write exhaustion.
This is typically not a difficult requirement to accomplish because
there are not other task/processing running while the bootloader is
active (unlike it may be the case when running the application firmware).</t>

<t>Note: This is an implementation requirement.</t>

</section>
<section anchor="small-parsers" title="Small Parsers">

<t>Since parsers are known sources of bugs they must be minimal.
Additionally, it must be easy to parse only those fields that are
required to validate at least one signature or MAC with minimal
exposure.</t>

</section>
<section anchor="minimal-impact-on-existing-firmware-formats" title="Minimal impact on existing firmware formats">

<t>The design of the firmware update mechanism must not require
changes to existing firmware formats.</t>

</section>
<section anchor="robust-permissions" title="Robust permissions">

<t>When a device obtains a monolithic firmware image from a single author
without any additional approval steps then the authorization flow is
relatively simple. There are, however, other cases where more complex
policy decisions need to be made before updating a device.</t>

<t>In this architecture the authorization policy is separated from
the underlying communication architecture. This is accomplished
by separating the entities from their permissions. For example,
an author may not have the authority to install a firmware image
on a device in critical infrastructure without the authorization
of a device operator. In this case, the device may be programmed
to reject firmware updates unless they are signed both by the
firmware author and by the device operator.</t>

<t>Alternatively, a device may trust precisely one entity, which
does all permission management and coordination. This entity
allows the device to offload complex permissions
calculations for the device.</t>

</section>
<section anchor="operating-modes" title="Operating modes">

<t>There are three broad classifications of update operating modes.</t>

<t><list style="symbols">
  <t>Client-initiated Update</t>
  <t>Server-initiated Update</t>
  <t>Hybrid Update</t>
</list></t>

<t>Client-initiated updates take the form of a firmware consumer on
a device proactively checking (polling) for new firmware images.</t>

<t>Server-initiated updates are important to consider because
timing of updates may need to be tightly controlled in some high-
reliability environments. In this case the status tracker determines
what devices qualify for a firmware update. Once those devices have been
selected the firmware server distributes updates to the firmware consumers.</t>

<t>Note: This assumes that the status tracker is able to reach the
device, which may require devices to keep reachability  information at
the status tracker up-to-date. This may also require keeping state at
NATs and stateful packet filtering firewalls alive.</t>

<t>Hybrid updates are those that require an interaction between the
firmware consumer and the status tracker. The status tracker
pushes notifications of availability of an update to the firmware consumer,
and it then downloads the image from a firmware server
as soon as possible.</t>

<t>An alternative view to the operating modes is to consider the steps a
device has to go through in the course of an update:</t>

<t><list style="symbols">
  <t>Notification</t>
  <t>Pre-authorisation</t>
  <t>Dependency resolution</t>
  <t>Download</t>
  <t>Installation</t>
</list></t>

<t>The notification step consists of the status tracker informing the
firmware consumer that an update is available. This can be accomplished via
polling (client-initiated), push notifications (server-initiated),
or more complex mechanisms.</t>

<t>The pre-authorisation step involves verifying whether the entity
signing the manifest is indeed authorized to perform an update.
The firmware consumer must also determine whether it should fetch and
process a firmware image, which is referenced in a manifest.</t>

<t>A dependency resolution phase is needed when more than one
component can be updated or when a differential update is used.
The necessary dependencies must be available prior to installation.</t>

<t>The download step is the process of acquiring a local copy of the
firmware image.  When the download is client-initiated, this means
that the firmware consumer chooses when a download occurs and initiates
the download process.  When a download is server-initiated,
this means that the status tracker tells
the device when to download or that it initiates the transfer
directly to the firmware consumer. For example, a download from an
HTTP-based firmware server is client-initiated. Pushing a manifest
and firmware image to the transfer to the Package resource of the LwM2M
Firmware Update object <xref target="LwM2M"/> is server-initiated.</t>

<t>If the firmware consumer has downloaded a new firmware image and is ready to
install it, it may need to wait for a trigger from the status tracker to
initiate the installation, may trigger the update automatically, or
may go through a more complex decision making process to determine
the appropriate timing for an update (such as delaying the update
process to a later time when end users are less impacted by the
update process).</t>

<t>Installation is the act of processing the payload into a format that
the IoT device can recognise and the bootloader is responsible for
then booting from the newly installed firmware image.</t>

<t>Each of these steps may require different permissions.</t>

</section>
<section anchor="suitability-to-software-and-personalization-data" title="Suitability to software and personalization data">

<t>The work on a standardized manifest format initially focused on the
most constrained IoT devices and those devices contain code put together
by a single author (although that author may obtain code from other
developers, some of it only in binary form).</t>

<t>Later it turns out that other use cases may benefit from a standardized
manifest format also for conveying software and even personalization data
alongside software. Trusted Execution Environments (TEEs), for example,
greatly benefit from a protocol for managing the lifecycle of trusted
applications (TAs) running inside a TEE. TEEs may obtain TAs
from different authors and those TAs may require personalization data,
such as payment information, to be securely conveyed to the TEE.</t>

<t>To support this wider range of use cases the manifest format should
therefore be extensible to convey other forms of payloads as well.</t>

</section>
</section>
<section anchor="claims" title="Claims">

<t>Claims in the manifest offer a way to convey instructions to
a device that impact the firmware update process. To have any
value the manifest containing those claims must be authenticated
and integrity protected. The credential used must be directly
or indirectly related to the trust anchor installed at the device
by the Trust Provisioning Authority.</t>

<t>The baseline claims for all manifests are described in <xref target="I-D.ietf-suit-information-model"/>.
For example, there are:</t>

<t><list style="symbols">
  <t>Do not install firmware with earlier metadata than the current
metadata.</t>
  <t>Only install firmware with a matching vendor, model, hardware
revision, software version, etc.</t>
  <t>Only install firmware that is before its best-before timestamp.</t>
  <t>Only allow a firmware installation if dependencies have been met.</t>
  <t>Choose the mechanism to install the firmware, based on the type
of firmware it is.</t>
</list></t>

</section>
<section anchor="architecture" title="Communication Architecture">

<t><xref target="arch-figure"/> shows the communication architecture where a
firmware image is created by an author, and uploaded to a firmware
server. The firmware image/manifest is distributed to the device
either in a push or pull manner using the firmware consumer residing on
the device. The device operator keeps track of the process using
the status tracker. This allows the device operator to know and
control what devices have received an update and which of them are
still pending an update.</t>

<figure title="Architecture." anchor="arch-figure"><artwork><![CDATA[
              Firmware +  +----------+       Firmware + +-----------+
              Manifest    |          |-+     Manifest   |           |-+
               +--------->| Firmware | |<---------------|           | |
               |          | Server   | |                |  Author   | |
               |          |          | |                |           | |
               |          +----------+ |                +-----------+ |
               |            +----------+                  +-----------+
               |
               |
               |
              -+--                                  ------
         ----  |  ----                          ----      ----
       //      |      \\                      //              \\
      /        |        \                    /                  \
     /         |         \                  /                    \
    /          |          \                /                      \
   /           |           \              /                        \
  |            v            |            |                          |
  |     +------------+                                              |
  |     |  Firmware  |      |            |                          |
 |      |  Consumer  |       | Device    |       +--------+          |
 |      +------------+       | Management|       |        |          |
 |      |            |<------------------------->| Status |          |
 |      |   Device   |       |          |        | Tracker|          |
 |      +------------+       |          ||       |        |         |
  |                         |           ||       +--------+         |
  |                         |            |                          |
  |                         |             \                        /
   \                       /               \                      /
    \                     /                 \      Device        /
     \     Network       /                   \     Operator     /
      \   Operator      /                     \\              //
       \\             //                        ----      ----
         ----     ----                              ------
             -----

]]></artwork></figure>

<t>End-to-end security mechanisms are used to protect the firmware
image and the manifest although <xref target="e2e-figure"/> does not show the
manifest itself since it may be distributed independently.</t>

<figure title="End-to-End Security." anchor="e2e-figure"><artwork><![CDATA[
                            +-----------+
+--------+                  |           |                   +--------+
|        |  Firmware Image  | Firmware  |   Firmware Image  |        |
| Device |<-----------------| Server    |<------------------| Author |
|        |                  |           |                   |        |
+--------+                  +-----------+                   +--------+
     ^                                                          *
     *                                                          *
     ************************************************************
                        End-to-End Security
]]></artwork></figure>

<t>Whether the firmware image and the manifest is pushed to the device or
fetched by the device is a deployment specific decision.</t>

<t>The following assumptions are made to allow the firmware consumer to verify the
received firmware image and manifest before updating software:</t>

<t><list style="symbols">
  <t>To accept an update, a device needs to verify the signature covering
the manifest. There may be one or multiple manifests that need to be
validated, potentially signed by different parties. The device needs
to be in possession of the trust anchors to verify those signatures.
Installing trust anchors to devices via the Trust Provisioning Authority
happens in an out-of-band fashion prior to the firmware update process.</t>
  <t>Not all entities creating and signing manifests have the same
permissions. A device needs to determine whether the requested action
is indeed covered by the permission of the party that signed the manifest.
Informing the device about the permissions of the different parties
also happens in an out-of-band fashion and is also a duty of the
Trust Provisioning Authority.</t>
  <t>For confidentiality protection of firmware images the author needs
to be in possession of the certificate/public key or a pre-shared key
of a device. The use of confidentiality protection of firmware images
is deployment specific.</t>
</list></t>

<t>There are different types of delivery modes, which are illustrated
based on examples below.</t>

<t>There is an option for embedding a firmware image into a manifest.
This is a useful approach for deployments where devices are not connected
to the Internet and cannot contact a dedicated firmware server for the firmware
download. It is also applicable when the firmware update happens via a
USB stick or via Bluetooth Smart. <xref target="attached-firmware-figure"/> shows this
delivery mode graphically.</t>

<figure title="Manifest with attached firmware." anchor="attached-firmware-figure"><artwork><![CDATA[
              /------------\                 /------------\
             /Manifest with \               /Manifest with \
             |attached      |               |attached      |
             \firmware image/               \firmware image/
              \------------/  +-----------+  \------------/
  +--------+                  |           |                 +--------+
  |        |<.................| Firmware  |<................|        |
  | Device |                  | Server    |                 | Author |
  |        |                  |           |                 |        |
  +--------+                  +-----------+                 +--------+
]]></artwork></figure>

<t><xref target="online-firmware-figure"/> shows an option for remotely updating a device
where the device fetches the firmware image from some file server. The
manifest itself is delivered independently and provides information about
the firmware image(s) to download.</t>

<figure title="Independent retrieval of the firmware image." anchor="online-firmware-figure"><artwork><![CDATA[
             /--------\                     /--------\
            /          \                   /          \
            | Manifest |                   | Manifest |
            \          /                   \          /
             \--------/                     \--------/
                            +-----------+
+--------+                  |           |                 +--------+
|        |<.................| Status    |................>|        |
| Device |                  | Tracker   |              -- | Author |
|        |<-                |           |            ---  |        |
+--------+  --              +-----------+          ---    +--------+
              --                                 ---
                ---                            ---
                   --       +-----------+    --
                     --     |           |  --
      /------------\   --   | Firmware  |<-    /------------\
     /              \    -- | Server    |     /              \
     |   Firmware   |       |           |     |   Firmware   |
     \              /       +-----------+     \              /
      \------------/                           \------------/
]]></artwork></figure>

<t>This architecture does not mandate a specific delivery mode but a solution
must support both types.</t>

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

<t>In order for a device to apply an update, it has to make several decisions
about the update:</t>

<t><list style="symbols">
  <t>Does it trust the author of the update?</t>
  <t>Has the firmware been corrupted?</t>
  <t>Does the firmware update apply to this device?</t>
  <t>Is the update older than the active firmware?</t>
  <t>When should the device apply the update?</t>
  <t>How should the device apply the update?</t>
  <t>What kind of firmware binary is it?</t>
  <t>Where should the update be obtained?</t>
  <t>Where should the firmware be stored?</t>
</list></t>

<t>The manifest encodes the information that devices need in order to
make these decisions. It is a data structure that contains the
following information:</t>

<t><list style="symbols">
  <t>information about the device(s) the firmware image is intended to
be applied to,</t>
  <t>information about when the firmware update has to be applied,</t>
  <t>information about when the manifest was created,</t>
  <t>dependencies on other manifests,</t>
  <t>pointers to the firmware image and information about the format,</t>
  <t>information about where to store the firmware image,</t>
  <t>cryptographic information, such as digital signatures or message
authentication codes (MACs).</t>
</list></t>

<t>The manifest information model is described in <xref target="I-D.ietf-suit-information-model"/>.</t>

</section>
<section anchor="device-firmware-update-examples" title="Device Firmware Update Examples">

<t>Although these documents attempt to define a firmware update
architecture that is applicable to both existing systems, as well
as yet-to-be-conceived systems; it is still helpful to consider
existing architectures.</t>

<section anchor="single-cpu-soc" title="Single CPU SoC">

<t>The simplest, and currently most common, architecture consists of
a single MCU along with its own peripherals.  These SoCs generally
contain some amount of flash memory for code and fixed data, as
well as RAM for working storage.  These systems either have a single
firmware image, or an immutable bootloader that runs a single image.
A notable characteristic of these SoCs is that the primary code is
generally execute in place (XIP).  Combined with the non-relocatable
nature of the code, firmware updates need to be done in place.</t>

</section>
<section anchor="single-cpu-with-secure-normal-mode-partitioning" title="Single CPU with Secure - Normal Mode Partitioning">

<t>Another configuration consists of a similar architecture to the
previous, with a single CPU.  However, this CPU supports a security
partitioning scheme that allows memory (in addition to other things)
to be divided into secure and normal mode.  There will generally be
two images, one for secure mode, and one for normal mode.  In this
configuration, firmware upgrades will generally be done by the CPU
in secure mode, which is able to write to both areas of the flash
device. In addition, there are requirements to be able to update
either image independently, as well as to update them together
atomically, as specified in the associated manifests.</t>

</section>
<section anchor="dual-cpu-shared-memory" title="Dual CPU, shared memory">

<t>This configuration has two or more CPUs in a single SoC that share
memory (flash and RAM).  Generally, they will be a protection mechanism
to prevent one CPU from accessing the other’s memory. Upgrades in this
case will typically be done by one of the CPUs, and is similar to the
single CPU with secure mode.</t>

</section>
<section anchor="dual-cpu-other-bus" title="Dual CPU, other bus">

<t>This configuration has two or more CPUs, each having their own memory.
There will be a communication channel between them, but it will be
used as a peripheral, not via shared memory.  In this case, each CPU
will have to be responsible for its own firmware upgrade.  It is
likely that one of the CPUs will be considered a master, and will
direct the other CPU to do the upgrade.  This configuration is
commonly used to offload specific work to other CPUs.  Firmware
dependencies are similar to the other solutions above, sometimes
allowing only one image to be upgraded, other times requiring several
to be upgraded atomically.  Because the updates are happening on
multiple CPUs, upgrading the two images atomically is challenging.</t>

</section>
</section>
<section anchor="bootloader" title="Bootloader">

<t>More devices today than ever before are being connected to the Internet,
which drives the need for firmware updates to be provided over the
Internet rather than through traditional interfaces, such as USB or
RS232. Updating a device over the Internet requires the device to fetch
not only the firmware image but also the manifest. Hence, the following
building blocks are necessary for a firmware update solution:</t>

<t><list style="symbols">
  <t>the Internet protocol stack for firmware downloads (*),</t>
  <t>the capability to write the received firmware image to
persistent storage (most likely flash memory) prior to performing
the update,</t>
  <t>the ability to unpack, decompress or otherwise process the received
firmware image,</t>
  <t>the features to verify an image and a manifest, including digital
signature verification or checking a message authentication code,</t>
  <t>a manifest parsing library, and</t>
  <t>integration of the device into a device management server to
perform automatic firmware updates and to track their progress.</t>
</list></t>

<t>(*) Because firmware images are often multiple kilobytes, sometimes
exceeding one hundred kilobytes, in size for low end IoT devices and even
several megabytes large for IoT devices running full-fledged operating systems
like Linux, the protocol mechanism for retrieving these images needs
to offer features like congestion control, flow control, fragmentation
and reassembly, and mechanisms to resume interrupted or corrupted transfers.</t>

<t>All these features are most likely offered by the application, i.e.
firmware consumer, running
on the device (except for basic security algorithms that may run
either on a trusted execution environment or on a separate hardware
security MCU/module) rather than by the bootloader itself.</t>

<t>Once manifests have been processed and firmware images successfully
downloaded and verified the device needs to hand control over to the
bootloader.  In most cases this requires the MCU to restart. Once the
MCU has initiated a restart, the bootloader takes over control and
determines whether the newly downloaded firmware
image should be executed.</t>

<t>The boot process is security sensitive
because the firmware images may, for example, be stored in off-chip
flash memory giving attackers easy access to the image for reverse
engineering and potentially also for modifying the binary.  The
bootloader will therefore have to perform security checks on the
firmware image before it can be booted. These security checks by the
bootloader happen in addition to the security checks that happened
when the firmware image and the manifest were downloaded.</t>

<t>The manifest may have been stored alongside the firmware image to
allow re-verification of the firmware image during every boot
attempt.  Alternatively, secure boot-specific meta-data may have been
created by the application after a successful firmware download
and verification process.  Whether to re-use the standardized
manifest format that was used during the initial firmware retrieval
process or whether it is better to use a different format for the
secure boot-specific meta-data depends on the system design.  The
manifest format does, however, have the capability to serve also as a
building block for secure boot with its severable elements that allow
shrinking the size of the manifest by stripping elements that are no
longer needed.</t>

<t>If the application image contains the firmware consumer
functionality, as described above, then it is necessary that a
working image is left on the device. This allows the bootloader to
roll back to a working firmware image to execute a firmware download
if the bootloader itself does not have enough functionality to
fetch a firmware image plus manifest from a firmware server over the
Internet.  A multi-stage bootloader may soften this requirement at
the expense of a more sophisticated boot process.</t>

<t>For a bootloader to offer a secure boot mechanism it needs to provide
the following features:</t>

<t><list style="symbols">
  <t>ability to access security algorithms, such as SHA-256 to compute
a fingerprint over the firmware image and a digital signature
algorithm.</t>
  <t>access keying material directly or indirectly to utilize the
digital signature.  The device needs to have a trust anchor store.</t>
  <t>ability to expose boot process-related data to the application
firmware (such as to the device management software).  This allows
a device management server to determine whether the firmware
update has been successful and, if not, what errors occurred.</t>
  <t>to (optionally) offer attestation information (such as
measurements).</t>
</list></t>

<t>While the software architecture of the bootloader and its
security mechanisms are implementation-specific, the manifest can
be used to control the firmware download from the Internet in
addition to augmenting secure boot process. These building blocks
are highly relevant for the design of the manifest.</t>

</section>
<section anchor="example" title="Example">

<t><xref target="firmware-update"/> illustrates an example message flow
for distributing a firmware image to a device
starting with an author uploading the new firmware to
firmware server and creating a manifest. The firmware
and manifest are stored on the same firmware server. This
setup does not use a status tracker and the firmware consumer
component is therefore responsible for periodically checking
whether a new firmware image is available for download.</t>

<figure title="First Example Flow for a Firmware Upate." anchor="firmware-update"><artwork><![CDATA[
+--------+    +-----------------+      +------------+ +----------+
|        |    |                 |      |  Firmware  | |          |
| Author |    | Firmware Server |      |  Consumer  | |Bootloader|
+--------+    +-----------------+      +------------+ +----------+
  |                   |                     |                +
  | Create Firmware   |                     |                |
  |--------------+    |                     |                |
  |              |    |                     |                |
  |<-------------+    |                     |                |
  |                   |                     |                |
  | Upload Firmware   |                     |                |
  |------------------>|                     |                |
  |                   |                     |                |
  | Create Manifest   |                     |                |
  |---------------+   |                     |                |
  |               |   |                     |                |
  |<--------------+   |                     |                |
  |                   |                     |                |
  | Sign Manifest     |                     |                |
  |-------------+     |                     |                |
  |             |     |                     |                |
  |<------------+     |                     |                |
  |                   |                     |                |
  | Upload Manifest   |                     |                |
  |------------------>|                     |                |
  |                   |                     |                |
  |                   |   Query Manifest    |                |
  |                   |<--------------------|                |
  |                   |                     |                |
  |                   |   Send Manifest     |                |
  |                   |-------------------->|                |
  |                   |                     | Validate       |
  |                   |                     | Manifest       |
  |                   |                     |---------+      |
  |                   |                     |         |      |
  |                   |                     |<--------+      |
  |                   |                     |                |
  |                   |  Request Firmware   |                |
  |                   |<--------------------|                |
  |                   |                     |                |
  |                   | Send Firmware       |                |
  |                   |-------------------->|                |
  |                   |                     | Verify         |
  |                   |                     | Firmware       |
  |                   |                     |--------------+ |
  |                   |                     |              | |
  |                   |                     |<-------------+ |
  |                   |                     |                |
  |                   |                     | Store          |
  |                   |                     | Firmware       |
  |                   |                     |-------------+  |
  |                   |                     |             |  |
  |                   |                     |<------------+  |
  |                   |                     |                |
  |                   |                     |                |
  |                   |                     | Trigger Reboot |
  |                   |                     |--------------->|
  |                   |                     |                |
  |                   |                     |                |
  |                   |                 +---+----------------+--+
  |                   |                S|   |                |  |
  |                   |                E|   | Verify         |  |
  |                   |                C|   | Firmware       |  |
  |                   |                U|   | +--------------|  |
  |                   |                R|   | |              |  |
  |                   |                E|   | +------------->|  |
  |                   |                 |   |                |  |
  |                   |                B|   | Activate new   |  |
  |                   |                O|   | Firmware       |  |
  |                   |                O|   | +--------------|  |
  |                   |                T|   | |              |  |
  |                   |                 |   | +------------->|  |
  |                   |                P|   |                |  |
  |                   |                R|   | Boot new       |  |
  |                   |                O|   | Firmware       |  |
  |                   |                C|   | +--------------|  |
  |                   |                E|   | |              |  |
  |                   |                S|   | +------------->|  |
  |                   |                S|   |                |  |
  |                   |                 +---+----------------+--+
  |                   |                     |                |
]]></artwork></figure>

<t><xref target="firmware-update2"/> shows an example follow with the device using
a status tracker. For editorial reasons the author publishing the
manifest at the status tracker and the firmware image at the firmware
server is not shown. Also omitted is the secure boot process
following the successful firmware update process.</t>

<t>The exchange starts with the device interacting with the status
tracker; the details of such exchange will vary with the different
device management systems being used. In any case, the status
tracker learns about the firmware version of the devices it
manages. In our example, the device under management is using
firmware version A.B.C. At a later point in time the author uploads
a new firmware along with the manifest to the firmware server and the
status tracker, respectively. While there is no need to store the
manifest and the firmware on different servers this example shows
a common pattern used in the industry. The status tracker may then
automatically, based on human intervention or based on a more
complex policy decide to inform the device about the newly available
firmware image. In our example, it does so by pushing the manifest
to the firmware consumer. The firmware consumer downloads the firmware
image with the newer version X.Y.Z after successful validation
of the manifest. Subsequently, a reboot is initiated and the secure
boot process starts.</t>

<figure title="Second Example Flow for a Firmware Upate." anchor="firmware-update2"><artwork><![CDATA[
 +---------+   +-----------------+    +-----------------------------+
 | Status  |   |                 |    | +------------+ +----------+ |
 | Tracker |   | Firmware Server |    | |  Firmware  | |Bootloader| |
 |         |   |                 |    | |  Consumer  | |          | |
 +---------+   +-----------------+    | +------------+ +----------+ |
      |                |              |      |  IoT Device    |     |
      |                |               `''''''''''''''''''''''''''''
      |                |                     |                |
      |        Query Firmware Version        |                |
      |------------------------------------->|                |
      |        Firmware Version A.B.C        |                |
      |<-------------------------------------|                |
      |                |                     |                |
      |         <<some time later>>          |                |
      |                |                     |                |
    _,...._         _,...._                  |                |
  ,'       `.     ,'       `.                |                |
 |   New     |   |   New     |               |                |
 \ Manifest  /   \ Firmware  /               |                |
  `.._   _,,'     `.._   _,,'                |                |
      `''             `''                    |                |
      |            Push manifest             |                |
      |----------------+-------------------->|                |
      |                |                     |                |
      |                '                     |                '
      |                |                     | Validate       |
      |                |                     | Manifest       |
      |                |                     |---------+      |
      |                |                     |         |      |
      |                |                     |<--------+      |
      |                | Request firmware    |                |
      |                | X.Y.Z               |                |
      |                |<--------------------|                |
      |                |                     |                |
      |                | Firmware X.Y.Z      |                |
      |                |-------------------->|                |
      |                |                     |                |
      |                |                     | Verify         |
      |                |                     | Firmware       |
      |                |                     |--------------+ |
      |                |                     |              | |
      |                |                     |<-------------+ |
      |                |                     |                |
      |                |                     | Store          |
      |                |                     | Firmware       |
      |                |                     |-------------+  |
      |                |                     |             |  |
      |                |                     |<------------+  |
      |                |                     |                |
      |                |                     |                |
      |                |                     | Trigger Reboot |
      |                |                     |--------------->|
      |                |                     |                |
      |                |                     |                |
      |                |                     | __..-------..._'
      |                |                    ,-'               `-.
      |                |                   |      Secure Boot    |
      |                |                   `-.                 _/
      |                |                     |`--..._____,,.,-'
      |                |                     |                |
]]></artwork></figure>

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

<t>This document does not require any actions by IANA.</t>

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

<t>Firmware updates fix security vulnerabilities and are considered to be
an important building block in securing IoT devices. Due to the
importance of firmware updates for IoT devices the Internet
Architecture Board (IAB) organized a ‘Workshop on Internet of Things
(IoT) Software Update (IOTSU)’, which took place at Trinity College
Dublin, Ireland on the 13th and 14th of June, 2016 to take a look at
the big picture. A report about this workshop can be found at
<xref target="RFC8240"/>. A standardized firmware manifest format providing
end-to-end security from the author to the device will be specified
in a separate document.</t>

<t>There are, however, many other considerations raised during the
workshop. Many of them are outside the scope of standardization
organizations since they fall into the realm of product engineering,
regulatory frameworks, and business models. The following
considerations are outside the scope of this document, namely</t>

<t><list style="symbols">
  <t>installing firmware updates in a robust fashion so that the
update does not break the device functionality of the environment
this device operates in.</t>
  <t>installing firmware updates in a timely fashion considering the
complexity of the decision making process of updating devices,
potential re-certification requirements, and the need for user
consent to install updates.</t>
  <t>the distribution of the actual firmware update, potentially in
an efficient manner to a large number of devices without human
involvement.</t>
  <t>energy efficiency and battery lifetime considerations.</t>
  <t>key management required for verifying the digital signature
protecting the manifest.</t>
  <t>incentives for manufacturers to offer a firmware update mechanism
as part of their IoT products.</t>
</list></t>

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

<t>We would like to thank the following persons for their feedback:</t>

<t><list style="symbols">
  <t>Geraint Luff</t>
  <t>Amyas Phillips</t>
  <t>Dan Ros</t>
  <t>Thomas Eichinger</t>
  <t>Michael Richardson</t>
  <t>Emmanuel Baccelli</t>
  <t>Ned Smith</t>
  <t>Jim Schaad</t>
  <t>Carsten Bormann</t>
  <t>Cullen Jennings</t>
  <t>Olaf Bergmann</t>
  <t>Suhas Nandakumar</t>
  <t>Phillip Hallam-Baker</t>
  <t>Marti Bolivar</t>
  <t>Andrzej Puzdrowski</t>
  <t>Markus Gueller</t>
  <t>Henk Birkholz</t>
  <t>Jintao Zhu</t>
  <t>Takeshi Takahashi</t>
  <t>Jacob Beningo</t>
  <t>Kathleen Moriarty</t>
</list></t>

<t>We would also like to thank the WG chairs, Russ Housley, David Waltermire,
Dave Thaler for their support and their reviews.</t>

</section>


  </middle>

  <back>


    <references title='Informative References'>





<reference  anchor="RFC8240" target='https://www.rfc-editor.org/info/rfc8240'>
<front>
<title>Report from the Internet of Things Software Update (IoTSU) Workshop 2016</title>
<author initials='H.' surname='Tschofenig' fullname='H. Tschofenig'><organization /></author>
<author initials='S.' surname='Farrell' fullname='S. Farrell'><organization /></author>
<date year='2017' month='September' />
<abstract><t>This document provides a summary of the Internet of Things Software Update (IoTSU) Workshop that took place at Trinity College Dublin, Ireland on the 13th and 14th of June, 2016.  The main goal of the workshop was to foster a discussion on requirements, challenges, and solutions for bringing software and firmware updates to IoT devices. This report summarizes the discussions and lists recommendations to the standards community.</t><t>Note that this document is a report on the proceedings of the workshop.  The views and positions documented in this report are those of the workshop participants and do not necessarily reflect IAB views and positions.</t></abstract>
</front>
<seriesInfo name='RFC' value='8240'/>
<seriesInfo name='DOI' value='10.17487/RFC8240'/>
</reference>



<reference  anchor="RFC6024" target='https://www.rfc-editor.org/info/rfc6024'>
<front>
<title>Trust Anchor Management Requirements</title>
<author initials='R.' surname='Reddy' fullname='R. Reddy'><organization /></author>
<author initials='C.' surname='Wallace' fullname='C. Wallace'><organization /></author>
<date year='2010' month='October' />
<abstract><t>A trust anchor represents an authoritative entity via a public key and associated data.  The public key is used to verify digital signatures, and the associated data is used to constrain the types of information for which the trust anchor is authoritative.  A relying party uses trust anchors to determine if a digitally signed object is valid by verifying a digital signature using the trust anchor's public key, and by enforcing the constraints expressed in the associated data for the trust anchor.  This document describes some of the problems associated with the lack of a standard trust anchor management mechanism and defines requirements for data formats and push-based protocols designed to address these problems.  This  document is not an Internet Standards Track specification; it is published for informational purposes.</t></abstract>
</front>
<seriesInfo name='RFC' value='6024'/>
<seriesInfo name='DOI' value='10.17487/RFC6024'/>
</reference>



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



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

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

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

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

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

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

</front>

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



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

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

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

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

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

<date month='November' day='2' year='2020' />

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

</front>

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



<reference anchor="I-D.ietf-suit-manifest">
<front>
<title>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 />
</author>

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

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

<author initials='K' surname='Zandberg' fullname='Koen Zandberg'>
    <organization />
</author>

<date month='December' day='8' year='2020' />

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

</front>

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



<reference  anchor="RFC8778" target='https://www.rfc-editor.org/info/rfc8778'>
<front>
<title>Use of the HSS/LMS Hash-Based Signature Algorithm with CBOR Object Signing and Encryption (COSE)</title>
<author initials='R.' surname='Housley' fullname='R. Housley'><organization /></author>
<date year='2020' month='April' />
<abstract><t>This document specifies the conventions for using the Hierarchical Signature System (HSS) / Leighton-Micali Signature (LMS) hash-based signature algorithm with the CBOR Object Signing and Encryption (COSE) syntax. The HSS/LMS algorithm is one form of hash-based digital signature; it is described in RFC 8554.</t></abstract>
</front>
<seriesInfo name='RFC' value='8778'/>
<seriesInfo name='DOI' value='10.17487/RFC8778'/>
</reference>


<reference anchor="LwM2M" target="http://www.openmobilealliance.org/release/LightweightM2M/V1_0_2-20180209-A/OMA-TS-LightweightM2M-V1_0_2-20180209-A.pdf">
  <front>
    <title>Lightweight Machine to Machine Technical Specification, Version 1.0.2</title>
    <author initials="." surname="OMA" fullname="Open Mobile Alliance">
      <organization></organization>
    </author>
    <date year="2018" month="February" day="09"/>
  </front>
  <format type="PDF" target="http://www.openmobilealliance.org/release/LightweightM2M/V1_0_2-20180209-A/OMA-TS-LightweightM2M-V1_0_2-20180209-A.pdf"/>
</reference>


    </references>




  </back>

<!-- ##markdown-source:
H4sIACAsBWAAA9V9aZfb1pnm9zqn/gOO/cElm6RkdbqTqD1JSlukjGVpVOW4
p4/POCABFhGBAAdLlWhJ89vnfd7lLgBYUkmaZLo+2CKAu7/7dufz+fFRV3Rl
fi85TR4XzfYqbfLkx12Wdnly2qw2RZevup6eresmeVp1eVPlXVKvk/NNUV20
x0fpctnklx/WvD4/PsrqVZVuabysSdfdvMi79bzti26eBp/Pv/3X46MVdXJR
N/t7SVGt6+Oj46Ni19xLuqZvu7t37vz+zl0avcnTe8lZvuqbotsfH13VzauL
pu539PDHpzTcq3xPz7J7bu7zhxgXvbVdWmW/pGVd0Wz2Oa1lV9w7PkqSZr3K
s7bbl/Y8Sbp6Ff67qLK86tyTtm66Jl+3/sF+G//ummLlv1/V2y219++Lqiyq
YLT8dTcvi7abU0fLuqQP5/XX3+AVbd823e1o7/XrtO82dYN5z/Ge/4qKWtxf
JM/qJq3cU9n2+01eZWk1eFc3F2lV/Jp2RV3RWTbb5PtiS6eRuS/ybVqUrvmC
m/8pbbYLWgx2czj8k0Vy3q429TqviovBHJ6kVZW3U+8/eB4b7mLRuS6um8vD
Bc27vhpuxcP0ssgGb+IJfF9UaVMPx87QbrFEuz+V/MWCmk0N/IzOIG+KdDUY
+VlR1jTz4ct48Ad11fYlAWk3nMBWmv9py81t1cCSZkuNL3MG45ePH/zu7m/u
2L//7c7d39i/f3v37u/430/nDxceBV0PdTXf1llext90eb6L0HSiiy0tYJ23
BOs2hd/+Vob6/urZ3Wf3ZCld2lzk9M2m63b3bt++urpa1Lu82tbLoszTsizS
apVjU283OT1o89vfFxeb7irHf6mb23/99pc7v9yd373z7e/u3L3z+/np7efP
TufnZ/P4u/nou8UuW+schOx9EbRInqW0uConFHf/PM9Xm6pYpWVytstXxZr+
if2ZJX/Nm5b+kXy7uLO4+4X06ZHRwwBNzH7L4T+nlRL6YanJqa5VvgDZvJdg
svM7d+d3fi9P5Uxcpy8ePv7nbdzx0Xw+T9IlEbR0xVT0r31Z5U1K4xddQUh9
VXSbCUaRnBD1v5Vk+WWxoq826WWeNGnRArO7TZ5UeZ4xk0iJmpaElkSbkxZ0
nXiHMZZeGMuWjoTArN0m3SbtkgJUsGzrBACYLkthNivCHpokHWFmoy5oXqu6
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
ftnCYKHZQwQrTEyKKFjPrqxjaiPxWy5qTmhFWEzEc4xvkoPemfHj6JPjo8QX
u5jkZPLk7XVOHq02a9UuBsJB6G9ibh35rAJ/U1i0NnnPbN4O3FbhB28/dG/e
v6gDbHXyJ/0PkcjDusMf3E3yt6+u+fvgXg59NupAzL/uMP6qwP3+Dq6FKPs7
YIuKuh6NzbT8A2ZwuKhy+PcBMzg41vtm4B599x0nAzOrYfbzhz/crIOPmsEv
M1Si+cU9Hv5+Twezr/TX3xb8v+Hv93WAhz+o6mBoGv5+bwc/B4ZuFCX5OSAK
wyIl00v4myz3l5nOffj7vR1wo6/ij4e/39tB9AZXwnnh4QM7GBGmj0Wmg2Pd
ZAn4m9yCic9uPIMp38iNOphyjtykg5j6f8omGsm/aQeT/pEDHZh/Yx1o2TeC
AxFT3jOvazq4gYvkwAym/m7UgaMKwVpu0sE/HZkO4sKEn+VGHUwZ+m/SwYDq
fOoevP0EXPg8M/iYTZzyttyog896Ct98zAwGvz7tFD55Bsk/pYMpp8tNOhgR
iP+Ce/DLL4uFzh+S4A2582w+5Pp/my9u1IU+06orbFy+8TpozNGzX27fdCv+
JjuAv9lsQSv7DIdx0Ip618yotPC6yj7YjvolKYunP5yyEovqCXI7patDYSWd
fBSs3S4Ji1yqtycu99yJxRRbMf6JTh/HFskWhYl8qsBlX6LoBwfKF5p2a1YS
Le2gteM5ZxoFbBDpPEjBsZIteBKk5C6Sh72vl2Ot5crjUVryMJ03DNo+Poru
t7tfp02WnDw9vX8rqZsLEg1/5XzHr36qm1ftpt7BQOUCvmmwcy6Uc3x0QgPc
Ss4sYF3ra508fX5+9uOtr6zUTFfXr7SSUdqBwlSys2WZozzYQxikq1nyFPkD
lQtr/vZfOqmm8u1vOr6o7S99lc+Su3e+5aQL5Fzyrd/UtyWWLIuLZFfIbSbJ
KZ0zlzI0Mxku+bT1aO7fuu5xPh2M8S8fP/jd3d/cefcOTaMbcN3WDvOtJLOE
ban5xLUpLlZebaZxpoMV/XClbLhST5Cba4Ab1B5Pcauhy+/aAoBd0aUATJMm
LeJkNklmwtIXEP2tivxWEtD7zqUNtqt6x/Dkd8DMcAIYOoLcydKhrM2a77Wu
dHVNnpZbvWs561coHuhSQGe4AeKiL3GzDrYn3eY8LcnSXsIsDfMcF3HTmxKC
Og+DNR6ceRdi/SypaJSSi/0kX9s9kVEKliEM735TL5H9YvX3uQSF+DqY9KkX
wpGSJS33VXiqce6Vmi6DFGzuJag1qQn1PPziQycJCwnKQ+gkbWPcWdMQakYO
JnHoUm9cdmvFPJRWzLgLl6uLXEpf6x9dhAWfZs7W6kqS4NZunUXVchV+f0On
LsTWKt4US7zwbg6iy306cv/E12wUklIEZ9mapoZr5e3qSr1QHGUNqn67zBu5
AkAoIUzRIAlskecuiuqyLi9zh200MdRuuti7nldSvXrJfoE9347MdqoYKK0x
rkEIXC66XbI5UjLDXR8xmQNm9aEGNnkPICtswqVSeXrdr1Mme1Ii0nLjhs6z
oNYU9q3l6yh0xwvhFoq1VvX1dIUrNrn2Ax82ZyrhqnDkp3OBBkb7tBIk8G48
ubm5tRSeAnUd8gyJkHqNS/LnHLeEd8n3/XrND063e5rSiw3RxWLX8qOHdLYv
a/n3+abe0vtHBV9oCwCjh8/oV5qXyUv8v8laECp6/GiLPaHn95E8R/3x0x/o
BM62dPj86y/FNjmjVsivpJ8P0gaVWIgXNoAhedaj2k/yl5xLNcg0npfpOrlP
sOG+OuuRRfYDyOUrgiiZmC4jeYLLbbfz+8StdMbIHKJRyuJSPz2tsubX/O/J
i/7XrKmv2leFffiqb5M/0zJKbfskp32+XzSvNnX5qy6i6tI6+c9NL3uEQgSb
Av9PN6AO8lG6qpc0Zyyi5if/Pe02JdLensFN3HT76Fw5NXh8uD/9GfWPClyn
/rInwvGk7tsy38/olIgLJj+lJWfdNajP8hCphOebtPQXTRSNKy6sBKPgQgFF
fiXQRuI2Z8oeH/1fgpvznMjZAAA=

-->

</rfc>

