<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.17 (Ruby 3.0.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-duffy-csmp-02" category="info" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.14.2 -->
  <front>
    <title abbrev="CoAP Simple Management Protocol">Cisco's CoAP Simple Management Protocol</title>
    <seriesInfo name="Internet-Draft" value="draft-duffy-csmp-02"/>
    <author initials="P." surname="Duffy (ed)" fullname="Paul Duffy">
      <organization>Cisco Systems, Inc.</organization>
      <address>
        <email>paduffy@cisco.com</email>
      </address>
    </author>
    <date year="2022" month="September" day="16"/>
    <area>General</area>
    <workgroup>Independant Submission</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>CoAP Simple Management Protocol (CSMP) is purpose-built to provide lifecycle management for resource constrained IoT devices deployed within large-scale, bandwidth constrained IoT networks. CSMP offers an efficient transport and message encoding supporting classic NMS functions such as device on-boarding, device configuration, device status reporting, securing the network, etc.</t>
      <t>This document describes the design and operation of CSMP.  This document does not represent an IETF consensus.</t>
    </abstract>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>Low Power Wide Area Network (LPWAN) technologies provide long range, low power connectivity for Internet of Things (IoT) applications.  LPWANs typically operate over distances of several kilometers with link bandwidths as low as 10s of Kbps. LPWAN devices are often compute, storage and power constrained (often optimized to operate for years on a single battery charge).</t>
      <t>This specification describes the design and operation of CSMP which today is in-field managing approximately 25 million LPWAN devices deployed by a number of vendors. These devices are supporting a variety of critical infrastructure use cases for electric, water, and gas utilities along with a variety of smart cities use cases (municipal lighting, etc.).</t>
      <t>There is industry demand that CSMP managed devices be more quickly and widely available for an ever expanding set of use cases. This specification in intended to promote development of interoperable CSMP device and management system implementations. It is anticipated that this specification will be referenced by several industry fora.</t>
      <t>CSMP features include:</t>
      <ol spacing="normal" type="1"><li>Onboarding.  Device startup registration and capabilities announcement with an NMS.</li>
        <li>Configuration management. Device acquisition of configuration from the NMS. Subsequent NMS configuration reads and updates to the device.</li>
        <li>Metrics reporting. Periodic device metrics reporting to the NMS. NMS on-demand metrics requests to a device.</li>
        <li>NMS commanded device operations. NMS command issuance to a single device or group of devices.</li>
        <li>Secure device firmware update.</li>
      </ol>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/>
when, and only when, they appear in all capitals, as shown here.</t>
    </section>
    <section anchor="protocol-specification">
      <name>Protocol Specification</name>
      <t>CSMP is a usage profile of the Constrained Application Protocol <xref target="RFC7252"/>, which is designed for implementing RESTful messaging for resource constrained devices.  It is fair to view CoAP as a binary encoded functional subset of HTTP operating over UDP which also supports multicast messaging.  Resources (addressable objects) transported within CSMP message payloads are implemented using the Protocol Buffers compact binary encoding <xref target="PB"/>.</t>
      <t>It is assumed the reader is familiar with:</t>
      <ol spacing="normal" type="1"><li>The basic concepts of RESTful architecture.</li>
        <li>The operation, message formats, and terminology of CoAP <xref target="RFC7252"/>.</li>
        <li>Protocol Buffers <xref target="PB"/>, which is used to describe and encode CSMP message payloads.</li>
        <li>OpenAPI <xref target="OPENAPI"/> is the interface definition language used to define CSMP Device and NMS interfaces.</li>
      </ol>
      <section anchor="coap-usage-profile">
        <name>CoAP Usage Profile</name>
        <t>The NMS and devices communicate directly using CoAP. Acting as a CoAP client, a device issues RESTful requests to read or modify specific resources (objects) exposed by the NMS server.  Likewise, the device serves requests from the NMS to manipulate resources exposed by the device.</t>
        <t>CSMP specializes the usage of CoAP in the following ways:</t>
        <ol spacing="normal" type="1"><li>CSMP does not use the Token capabilities described in <xref target="RFC7252"/>.  Request/response messaging MUST be implemented using the "synchronous" form of a CON request with response piggybacked in the subsequent ACK.  A client MUST elide the Token field from the request message.  The server SHOULD ignore the Token if received from a client request.</li>
          <li>Due to high latencies typical of LPWAN technologies, a client MUST NOT use the CoAP retransmission model when sending a CON message to a server. After sending a CON message, the client MUST accept a response from the server at any time up until the device sends its next CON message (containing a new CoAP Message ID).</li>
        </ol>
      </section>
      <section anchor="interface-specification">
        <name>Interface Specification</name>
        <t>CSMP defines a CSMP Device interface and a CSMP NMS interface. Each of these interfaces defines a set of resources (objects), the addresses at which these resources exist (URLs), and the methods (GET, PUT, POST, DELETE) which may be used to manipulate the resources to implement device management operations. The CSMP Device and CSMP NMS interfaces are expressed using the OpenAPI interface definition language.</t>
        <t>OpenAPI's heritage is the expression of interfaces typically constructed with HTTP and JSON.  This document defines a few conventions required to express a CoAP interface in OpenAPI:</t>
        <ol spacing="normal" type="1"><li>The generic RESTful verb designators GET, PUT, POST, and DELETE are used along with the text presentation of a resource's URL. This is done for developer readability.  An actual implementation must properly encode the CoAP message Code field along with the Uri-Host, Uri-Port, Uri-Path, and Uri-Query options as described in <xref target="RFC7252"/>.</li>
          <li>CoAP Response codes of the form X.YZ are expressed in the OpenAPI as XYZ (the actual response code  is scaled by 100 in the OpenAPI rendering).</li>
          <li>Placeholder objects are defined in OpenAPI to represent the Protocol Buffer binary objects which will be transported in CoAP messaging payloads.  The actual binary objects are defined in a separate Protocol Buffer file <xref target="csmpTlvs"/>.</li>
          <li>CoAP supports the NON messaging pattern.  OpenAPI syntax always requires a response be defined.  The CSMP interface definitions will note when a response is for a COAP NON request and not an actual CoAP response (no response is sent).</li>
        </ol>
        <section anchor="csmpDev">
          <name>CSMP Device Interface</name>
          <t>A CSMP device MUST implement the interface described below.  The interface definition is also available at <xref target="CSMPDEV"/> which is directly importable into development tooling.</t>
          <t>Various forms of the GET method are used for retrieving registration information, device information, and monitoring information from the devices.  Various forms of the POST method are used to deliver configuration and commands to devices.   Usage of this interface is detailed in the sections which follow.</t>
          <artwork><![CDATA[
openapi: 3.0.0
info:
  description: |
    CSMP Device Interface.  RFC 2119 language is used to indicate normative statements.
  version: 1.0.1
  title: CSMP Device Interface
servers:
  #
  # Placeholder for the actual device-url
  #
  - url: 'https://virtserver.swaggerhub.com/woobagooba/CsmpDevice/1.0.1'
  
paths:
  /c:
    get:
      description: |
        Retrieve TlvIndex TLV or specific list of TLVs from a device.
      parameters:
      - $ref: '#/components/parameters/qOption'
      - $ref: '#/components/parameters/aOption'
      - $ref: '#/components/parameters/rOption'
      
      responses:
        '205':
          description: |
            Successful return of requested TLVs or TlvIndex. Device MUST return the requested specific TLVs when the "q" param is included (full tables are allowed). Device MUST return only TlvIndex when the "q" param is omitted.
          content:
            application/octet-stream:
              schema:
                oneOf:
                - $ref: 'https://api.swaggerhub.com/domains/woobagooba/CSMPComponents/1.0#/components/schemas/TLVsGETFromDevice'
                - $ref: 'https://api.swaggerhub.com/domains/woobagooba/CSMPComponents/1.0#/components/schemas/TlvIndex' 
        '400':
          description: Bad Request.
        '401':
          description: Unauthorized.
        '402':
          description: Bad option.
        '403':
          description: TLV not found, response won't fit in MTU.
        '404':
          description: Not found.          
        '405':
          description: Method not allowed.
          
    post:
      description: Process TLV updates from the NMS.  The q option MUST NOT be used. A device MUST process the following TLVs (if present and in order) ...
        1. Signature – verify the message signature.
        2. SignatureValidity – verify if the signature is still valid. 
        3. GroupMatch – check if the device belongs to the group for which the packet is intended.
        4. The TLVs to be updated.
      parameters:
      - $ref: '#/components/parameters/aOption'
      - $ref: '#/components/parameters/rOption'
      
      requestBody:
        description: One or more TLVs to be POSTed to the device.
        required: true
        content:
          application/octet-stream:
            schema:
              $ref: 'https://api.swaggerhub.com/domains/woobagooba/CSMPComponents/1.0#/components/schemas/TLVsPOSTableToDevice'
      responses:
        '201':
          description: TLVs have been updated.
        '400':
          description: Bad Request.
        '401':
          description: Unauthorized.
        '402':
          description: Bad option.
        '403':
          description: Forbidden.
        '404':
          description: Not found.          
        '405':
          description: Method not allowed.
          
  /c/{tlvIdPath}:
    get:
      description: |
        Retrieve single TLV from a device.    
      parameters:
      - $ref: '#/components/parameters/tlvIdPath'
      - $ref: '#/components/parameters/aOption'
      - $ref: '#/components/parameters/rOption'

      responses:
        '205':
          description: Return the requested TLV.  Full table retreival is allowed.
          content:
            application/octet-stream:
              schema:
                $ref: 'https://api.swaggerhub.com/domains/woobagooba/CSMPComponents/1.0#/components/schemas/TLVsGETFromDevice'
        '400':
          description: Bad Request.
        '401':
          description: Unauthorized.
        '402':
          description: Bad option.
        '403':                
          description: TLV not found, response won't fit in MTU.          
        '404':
          description: Not found.          
        '405':
          description: Method not allowed.          
    #
    # Note that POST is not permitted on this URL.
    #
#
# Query parameters used for device requests.
#
components:  
  parameters:
    qOption:
      description: |
        Q option for request to device for one or more specific TLVs. When present in a request, the response payload MUST contain the requested TLVs. If a TLV does not exist on the device, it MUST NOT be returned in the response and no error should be indicated.
      in: query
      name: q
      required: false
      schema:
        type: string
        description: Format is <tlvID1>+<tlvID2>+<tlvID3>+...  
    aOption:
      description: |
        A option. When omitted, the request MUST be CON. When present, request MUST be NON and the device MUST wait random interval from time of receipt up to "a" seconds before responding with a NON POST to <nms-url>/c. This form is often used with multicast requests to devices, but may also be used for unicast requests to devices.
      in: query
      name: a
      required: false
      schema:
        type: integer
        description: The device will wait random interval from receipt up to "a" seconds before sending 
    rOption:
      description: |
        R option MAY be used with the A option to indicate device MUST respond with a NON POST to specified URL (overriding <nms-url>/c).
      in: query
      name: r
      required: false
      schema:
        type: string    

    tlvIdPath:
      description: Path param specifying TLV ID.
      in: path
      name: tlvIdPath
      required: true 
      schema:
        type: integer
]]></artwork>
        </section>
        <section anchor="csmpNms">
          <name>CSMP NMS Interface</name>
          <t>A CSMP NMS MUST implement the interface described below.  The interface definition is also available at <xref target="CSMPNMS"/> which is directly importable into development tooling.</t>
          <t>Various forms of the POST method are used for device registration, device metrics reporting, and asynchronous GET responses (resulting from a request including the "a" option and default response URL). Usage of this interface is detailed in the sections which follow.</t>
          <artwork><![CDATA[
openapi: 3.0.0
info:
  description: CSMP NMS Interface. RFC 2119 language is used to indicate normative statements. 
  version: 1.0.1
  title: CSMP NMS Interface

servers:
  #
  # Placeholder for the actual nms-url.
  #
  - url: 'https://virtserver.swaggerhub.com/woobagooba/CsmpNms/1.0.0'
  
paths:
  /r:
    post:
      description: Device registration POST to the NMS. RequestBody MAY include any of the RegistrationRequest TLVs (see CsmpComponents). RequestBody MUST include DeviceID and CurrentTime TLVs. POSTs to this address MUST be CON (acknowledged).
      requestBody:
        required: true
        content:
          application/octet-stream:
            schema:
              $ref: 'https://api.swaggerhub.com/domains/woobagooba/CSMPComponents/1.0#/components/schemas/RegistrationRequestTLVs'
      responses:
        '203':
          description: Successful registration response to device. 
            The response MAY include any of the RegistrationResponse TLVs (see CsmpComponents).
          content:
            application/octet-stream:
              schema:
                $ref: 'https://api.swaggerhub.com/domains/woobagooba/CSMPComponents/1.0#/components/schemas/RegistrationResponseTLVs'
        '403':
          description: Duplicate DeviceID was received or DeviceID was not recognized or authorized by the NMS.  There is no payload in this response.
        '404':
          description: Multiple Session IDs were found for the device.  There is no payload for this response.
  /c:
    post:
      description: Devices POST periodic metrics, command responses, events, and asychronous GET responses to the NMS. A POST to this address MUST be NON (non acknowledged ... to avoid excessive acknowledgement, 4.03 or 4.04 conditions are handled silently by the NMS). RequestBody MAY include any of TLVsPOSTAbleToNms TLVs (see CsmpComponents).  The RequestBody MUST include the CurrentTime and SessionID TLVs (see CsmpComponents).  
      requestBody:
        required: true
        content:
          application/octet-stream:
            schema:
              $ref: 'https://api.swaggerhub.com/domains/woobagooba/CSMPComponents/1.0#/components/schemas/TLVsPostAbleToNMS'
      responses:
        '100':
          description: There is no response to this (NON) request (100 is used to indicate no response).
]]></artwork>
        </section>
        <section anchor="csmpComp">
          <name>CSMP Common Components.</name>
          <t>This section contains definitions common to both the CSMP Device and NMS interfaces. The definitions are also available at <xref target="CSMPCOMP"/> which is directly importable into development tooling.</t>
          <artwork><![CDATA[
# OpenAPI version identifier - required for OpenAPI 3.0 domains
openapi: 3.0.0

info:
  title: CSMP Components
  description: Common components for CSMP APIs
  version: '1.0'

components:
  schemas:
    TLVsGetAbleFromDevice:
      description: |
        TLVs which are GET-able from a <device-url>/c.
        Metrics and settings.
      anyOf:
      - $ref: '#/components/schemas/TlvIndex'
      - $ref: '#/components/schemas/HardwareDesc'
      - $ref: '#/components/schemas/InterfaceDesc'  
      - $ref: '#/components/schemas/ReportSubscribe'
      - $ref: '#/components/schemas/IPAddress'
      - $ref: '#/components/schemas/IPRoute'
      - $ref: '#/components/schemas/CurrentTime'
      - $ref: '#/components/schemas/RPLSettings' 
      - $ref: '#/components/schemas/Uptime'
      - $ref: '#/components/schemas/InterfaceMetrics'
      - $ref: '#/components/schemas/IPRouteRPLMetrics'  
      - $ref: '#/components/schemas/Ieee8021xStatus'
      - $ref: '#/components/schemas/Ieee80211iStatus'  
      - $ref: '#/components/schemas/WPANStatus'
      - $ref: '#/components/schemas/DHCP6ClientStatus'
      - $ref: '#/components/schemas/NMSSettings'
      - $ref: '#/components/schemas/NMSStatus'
      - $ref: '#/components/schemas/Ieee8021xSettings'
      - $ref: '#/components/schemas/Ieee802154BeaconStats'
      - $ref: '#/components/schemas/RPLInstance'
      - $ref: '#/components/schemas/FirmwareImageInfo'  
      - $ref: '#/components/schemas/SysResetStats'
      - $ref: '#/components/schemas/MplStats'
      - $ref: '#/components/schemas/RPLStats' 
      - $ref: '#/components/schemas/DHCP6Stats'
      - $ref: '#/components/schemas/EventReport'  
      - $ref: '#/components/schemas/EventIndex'
      - $ref: '#/components/schemas/EventSubscribe'
      - $ref: '#/components/schemas/EventStats'
      - $ref: '#/components/schemas/NetworkRole'  
      - $ref: '#/components/schemas/NetStat'

    RegistrationRequestTLVs:
      description: |
        TLVs which may be contained in a registration POST request to the NMS.
      anyOf:
      - $ref: '#/components/schemas/DeviceID'
      - $ref: '#/components/schemas/CurrentTime'
              
      - $ref: '#/components/schemas/HardwareDesc'
      - $ref: '#/components/schemas/InterfaceDesc'
      - $ref: '#/components/schemas/IPAddress'
      - $ref: '#/components/schemas/NMSStatus'
      - $ref: '#/components/schemas/WPANStatus'
      - $ref: '#/components/schemas/RPLSettings'
                
      - $ref: '#/components/schemas/SessionID'
      - $ref: '#/components/schemas/GroupInfo'
      - $ref: '#/components/schemas/ReportSubscribe'

    RegistrationResponseTLVs:
      description: |
        TLVs which may be contained in a registration response from the NMS.
      anyOf:
      - $ref: '#/components/schemas/SessionID'
      - $ref: '#/components/schemas/GroupAssign'
      - $ref: '#/components/schemas/ReportSubscribe'
      - $ref: '#/components/schemas/DescriptionRequest'
      - $ref: '#/components/schemas/NMSRedirectRequest'

    TLVsPostAbleToNMS:
      description: |
        TLVs which may be POSTed to <nms-url>/c
        There are several situations under which this can occur ...
        1. Periodic metrics reports from a device.
        2. Command responses from a device.
        3. Asynchronous events reported by a device.
        4. Asynchronous GET responses from a device.
      anyOf:
      - $ref: '#/components/schemas/TlvIndex'
      - $ref: '#/components/schemas/DeviceID'
      - $ref: '#/components/schemas/NMSRedirectRequest'
      - $ref: '#/components/schemas/SessionID'
      - $ref: '#/components/schemas/HardwareDesc'
      - $ref: '#/components/schemas/InterfaceDesc'
      - $ref: '#/components/schemas/ReportSubscribe'
      - $ref: '#/components/schemas/IPAddress'
      - $ref: '#/components/schemas/IPRoute'
      - $ref: '#/components/schemas/CurrentTime'
      - $ref: '#/components/schemas/RPLSettings'
      - $ref: '#/components/schemas/Uptime'
      - $ref: '#/components/schemas/InterfaceMetrics'
      - $ref: '#/components/schemas/IPRouteRPLMetrics'
      - $ref: '#/components/schemas/PingResponse'
      - $ref: '#/components/schemas/Ieee8021xStatus'
      - $ref: '#/components/schemas/Ieee80211iStatus'
      - $ref: '#/components/schemas/WPANStatus'
      - $ref: '#/components/schemas/DHCP6ClientStatus'
      - $ref: '#/components/schemas/NMSSettings'
      - $ref: '#/components/schemas/NMSStatus'
      - $ref: '#/components/schemas/Ieee8021xSettings'
      - $ref: '#/components/schemas/Ieee802154BeaconStats'
      - $ref: '#/components/schemas/RPLInstance'
      - $ref: '#/components/schemas/GroupInfo'
      - $ref: '#/components/schemas/LowpanMacStats'
      - $ref: '#/components/schemas/LowpanPhySettings'
      - $ref: '#/components/schemas/TransferResponse'
      - $ref: '#/components/schemas/LoadResponse'
      - $ref: '#/components/schemas/CancelLoadResponse'
      - $ref: '#/components/schemas/SetBackupResponse'
      - $ref: '#/components/schemas/FirmwareImageInfo'
      - $ref: '#/components/schemas/SysResetStats'
      - $ref: '#/components/schemas/MplStats'
      - $ref: '#/components/schemas/RPLStats'
      - $ref: '#/components/schemas/DHCP6Stats'
      - $ref: '#/components/schemas/EventReport'
      - $ref: '#/components/schemas/EventIndex'
      - $ref: '#/components/schemas/EventStats'

    TLVsPostAbleToDevice:
      description: |
        TLVs which may be POSTed to <device-url>/c.
        Commands and settings.
      anyOf:
      - $ref: '#/components/schemas/NMSRedirectRequest'
      - $ref: '#/components/schemas/RPLSettings'
      - $ref: '#/components/schemas/PingRequest'
      - $ref: '#/components/schemas/RebootRequest'
      - $ref: '#/components/schemas/NMSSettings'
      - $ref: '#/components/schemas/Ieee8021xSettings'
      - $ref: '#/components/schemas/GroupMatch'
      - $ref: '#/components/schemas/LowpanPhySettings'
      - $ref: '#/components/schemas/TransferRequest'
      - $ref: '#/components/schemas/ImageBlock'
      - $ref: '#/components/schemas/LoadRequest'
      - $ref: '#/components/schemas/CancelLoadRequest'
      - $ref: '#/components/schemas/SetBackupRequest'
      - $ref: '#/components/schemas/SignatureValidity'
      - $ref: '#/components/schemas/Signature'
      - $ref: '#/components/schemas/SignatureSettings'
      - $ref: '#/components/schemas/NetworkRole'
      - $ref: '#/components/schemas/MplReset'
      - $ref: '#/components/schemas/EventSubscribe'

    TableTLVs:
      description: |
        Table TLVs.
      anyOf:
      - $ref: '#/components/schemas/HardwareDesc'
      - $ref: '#/components/schemas/InterfaceDesc'
      - $ref: '#/components/schemas/IPAddress'
      - $ref: '#/components/schemas/IPRoute'
      - $ref: '#/components/schemas/InterfaceMetrics'
      - $ref: '#/components/schemas/IPRouteRPLMetrics'
      - $ref: '#/components/schemas/Ieee802154BeaconStats'
      - $ref: '#/components/schemas/RPLInstance'
      - $ref: '#/components/schemas/FirmwareImageInfo'
      - $ref: '#/components/schemas/NetStat'
      - $ref: '#/components/schemas/CertBundle'        

    AllTLVs:
      description: |
        All CSMP defined TLVs.
        This is used as an editorial starting point for the 
        other TLV collections defined within.
      anyOf:
      - $ref: '#/components/schemas/TlvIndex'
      - $ref: '#/components/schemas/DeviceID'
      - $ref: '#/components/schemas/NMSRedirectRequest'
      - $ref: '#/components/schemas/SessionID'
      - $ref: '#/components/schemas/DescriptionRequest'
      - $ref: '#/components/schemas/HardwareDesc'
      - $ref: '#/components/schemas/InterfaceDesc'
      - $ref: '#/components/schemas/ReportSubscribe'
      - $ref: '#/components/schemas/IPAddress'
      - $ref: '#/components/schemas/IPRoute'
      - $ref: '#/components/schemas/CurrentTime'
      - $ref: '#/components/schemas/RPLSettings'
      - $ref: '#/components/schemas/Uptime'
      - $ref: '#/components/schemas/InterfaceMetrics'
      - $ref: '#/components/schemas/IPRouteRPLMetrics'
      - $ref: '#/components/schemas/PingRequest'
      - $ref: '#/components/schemas/PingResponse'
      - $ref: '#/components/schemas/RebootRequest'
      - $ref: '#/components/schemas/Ieee8021xStatus'
      - $ref: '#/components/schemas/Ieee80211iStatus'
      - $ref: '#/components/schemas/WPANStatus'
      - $ref: '#/components/schemas/DHCP6ClientStatus'
      - $ref: '#/components/schemas/NMSSettings'
      - $ref: '#/components/schemas/NMSStatus'
      - $ref: '#/components/schemas/Ieee8021xSettings'
      - $ref: '#/components/schemas/Ieee802154BeaconStats'
      - $ref: '#/components/schemas/RPLInstance'
      - $ref: '#/components/schemas/GroupAssign'
      - $ref: '#/components/schemas/GroupEvict'
      - $ref: '#/components/schemas/GroupMatch'
      - $ref: '#/components/schemas/GroupInfo'
      - $ref: '#/components/schemas/LowpanMacStats'
      - $ref: '#/components/schemas/LowpanPhySettings'
      - $ref: '#/components/schemas/TransferRequest'
      - $ref: '#/components/schemas/ImageBlock'
      - $ref: '#/components/schemas/LoadRequest'
      - $ref: '#/components/schemas/CancelLoadRequest'
      - $ref: '#/components/schemas/SetBackupRequest'
      - $ref: '#/components/schemas/TransferResponse'
      - $ref: '#/components/schemas/LoadResponse'
      - $ref: '#/components/schemas/CancelLoadResponse'
      - $ref: '#/components/schemas/SetBackupResponse'
      - $ref: '#/components/schemas/FirmwareImageInfo'
      - $ref: '#/components/schemas/SignatureValidity'
      - $ref: '#/components/schemas/Signature'
      - $ref: '#/components/schemas/SignatureSettings'
      - $ref: '#/components/schemas/SysResetStats'
      - $ref: '#/components/schemas/NetStat'
      - $ref: '#/components/schemas/NetworkRole'
      - $ref: '#/components/schemas/CertBundle'      
      - $ref: '#/components/schemas/MplStats'
      - $ref: '#/components/schemas/MplReset'
      - $ref: '#/components/schemas/RPLStats'
      - $ref: '#/components/schemas/DHCP6Stats'
      - $ref: '#/components/schemas/EventReport'
      - $ref: '#/components/schemas/EventIndex'
      - $ref: '#/components/schemas/EventSubscribe'
      - $ref: '#/components/schemas/EventStats'
      
    #
    # Object (TLV) placeholders to allow OpenAPI to compile.
    # Each of these is authoritatively defined in
    # the CSMP TLV definitions.
    #
    TlvIndex:
      type: object
    DeviceID:
      type: object
    NMSRedirectRequest:
      type: object
    SessionID:
      type: object
    DescriptionRequest:
      type: object
    HardwareDesc:
      type: object
    InterfaceDesc:
      type: object
    ReportSubscribe:
      type: object
    IPAddress:
      type: object
    IPRoute:
      type: object
    CurrentTime:
      type: object
    RPLSettings:
      type: object
    Uptime:
      type: object
    InterfaceMetrics:
      type: object
    IPRouteRPLMetrics:
      type: object
    PingRequest:
      type: object
    PingResponse:
      type: object
    RebootRequest:
      type: object
    Ieee8021xStatus:
      type: object
    Ieee80211iStatus:
      type: object
    WPANStatus:
      type: object
    DHCP6ClientStatus:
      type: object
    NMSSettings:
      type: object
    NMSStatus:
      type: object
    Ieee8021xSettings:
      type: object
    Ieee802154BeaconStats:
      type: object
    RPLInstance:
      type: object
    GroupAssign:
      type: object
    GroupEvict:
      type: object
    GroupMatch:
      type: object
    GroupInfo:
      type: object
    LowpanMacStats:
      type: object
    LowpanPhySettings:
      type: object
    TransferRequest:
      type: object
    ImageBlock:
      type: object
    LoadRequest:
      type: object
    CancelLoadRequest:
      type: object
    SetBackupRequest:
      type: object
    TransferResponse:
      type: object
    LoadResponse:
      type: object
    CancelLoadResponse:
      type: object
    SetBackupResponse:
      type: object
    FirmwareImageInfo:
      type: object
    SignatureValidity:
      type: object
    Signature:
      type: object
    SignatureSettings:
      type: object
    SysResetStats:
      type: object
    NetStat:
      type: object
    NetworkRole:
      type: object
    CertBundle:
      type: object
    MplStats:
      type: object
    MplReset:
      type: object
    RPLStats:
      type: object
    DHCP6Stats:
      type: object
    EventReport:
      type: object
    EventIndex:
      type: object
    EventSubscribe:
      type: object
    EventStats:
      type: object
]]></artwork>
        </section>
      </section>
      <section anchor="resources">
        <name>Resources</name>
        <t>CSMP devices and CSMP NMS use the CoAP GET, POST, and DELETE methods to manipulate the resources specified in <xref target="csmpTlvs"/>, which are the Protocol Buffer object payloads contained in the various CoAP requests and responses.  Usage of these payloads is detailed in the sections which follow.</t>
        <section anchor="base-url">
          <name>Base URL</name>
          <t>A CSMP server is located at a &lt;base-url&gt; of the form coap://hostname:port/&lt;base-path&gt;</t>
          <t>The &lt;base-path&gt; for all CSMP resources at a particular hostname:port MUST be identical.</t>
          <t>It is RECOMMENDED that a default &lt;base-path&gt; of "/." be used.</t>
          <t>Because an NMS CSMP request message may be multicast to a large number of devices, all CSMP devices within a multicast domain MUST have identical port and &lt;base-path&gt;.</t>
          <t>The following &lt;base-path&gt; are reserved for future use:</t>
          <ol spacing="normal" type="1"><li>/o</li>
          </ol>
          <t>Full details of the Device and NMS service URLs are defined in <xref target="csmpDev"/> and <xref target="csmpNms"/>.</t>
        </section>
        <section anchor="resource-encoding">
          <name>Resource Encoding</name>
          <section anchor="standard-tlvs">
            <name>Standard TLVs</name>
            <t>The message payloads of CSMP requests and responses MUST be formatted as a sequence of Type-Length-Value objects. Each TLV object has the following format:</t>
            <artwork><![CDATA[
| Type | Length | Value |
]]></artwork>
            <t>The Type field is an unsigned integer identifying a specific CSMP TLV ID and MUST be encoded as a Protocol Buffers varint.</t>
            <t>The Length field is an unsigned integer containing the number of octets occupied by the Value field.  The Length field MUST be encoded as a Protocol Buffers varint.</t>
            <t>The Value field MUST contain the Protocol Buffers encoded TLV corresponding to the indicated Type.</t>
            <t>The set of objects defined by CSMP and their Type (TLV ID) are specified in <xref target="csmpTlvs"/>.</t>
          </section>
          <section anchor="csmpTlvs">
            <name>CSMP TLV Definitions</name>
            <t>This section contains the CSMP TLV definitions (defined using <xref target="PB"/>). The definitions are also available at <xref target="CSMPMSG"/> which is directly importable into development tooling.</t>
            <artwork><![CDATA[
syntax = "proto3";

/*
The definitions for CSMP TLVs.
This file is directly consumable by the Protocol Buffer tool chain.
Requirements are specified using the terminology and conventions as referenced in [RFC2119].
Requirements key words referenced in [RFC2119] must be capitalized.
Full details re: Protocol Buffers are accessible at https://developers.google.com/protocol-buffers
*/

/*
CSMP TLV ID Mapping to Protocol Buffer messages.
A unique TLV ID MUST be assigned to each CSMP Protocol Buffer message (defined within).
An unused TLV ID MAY be assigned to a new message. The new TLV ID assignment MUST be recorded within, along with the defintion of the new message.
A Reserved TLV ID MUST NOT be assigned to a message.
An existing TLV ID assignment MUST NOT be re-assigned to a new message.
NOTE the legend.
- Unused:   available for assignment.
- Reserved: not available for assignment.
- All other named messages are currently used by CSMP for generic and RF Mesh device management.
All TLV assignments MUST be recorded in the table below.  Take care to maintain the numbering.
TLVID   Message
1       TlvIndex
2       DeviceID
3       Reserved
4       Unused
5       Unused
6       NMSRedirectRequest
7       SessionID
8       DescriptionRequest
9       Unused
10          Reserved
11          HardwareDesc
12          InterfaceDesc
13          ReportSubscribe
14          Reserved
15          Reserved
16          IPAddress
17          IPRoute
18          CurrentTime
19          Reserved
20          Reserved
21          RPLSettings
22          Uptime
23          InterfaceMetrics
24          Reserved
25          IPRouteRPLMetrics
26          Unused
27-29   Reserved
30          PingRequest
31          PingResponse
32          RebootRequest
33          Ieee8021xStatus
34          Ieee80211iStatus
35          WPANStatus
36          DHCP6ClientStatus
37-41   Reserved
42          NMSSettings
43          NMSStatus
44-46   Reserved
47          Ieee8021xSettings
48          Ieee802154BeaconStats
49-52   Reserved
53          RPLInstance
54          Reserved
55          GroupAssign
56          GroupEvict
57          GroupMatch
58          GroupInfo
59      Unused
60      Unused
61          Reserved
62          LowpanMacStats
63          LowpanPhySettings
64      Unused
65          TransferRequest
66          Reserved
67          ImageBlock
68          LoadRequest
69          CancelLoadRequest
70          SetBackupRequest
71          TransferResponse
72          LoadResponse
73          CancelLoadResponse
74          SetBackupResponse
75          FirmwareImageInfo
76          SignatureValidity
77          Signature
78          Reserved
79          SignatureSettings
80          Reserved
81          Reserved
82      Unused
83      Unused
84          Reserved
85      Unused
86          SysResetStats
87      Unused
88          Reserved
89      Unused
90      Unused
91-97   Reserved
98      Unused
99      Unused
100         Reserved
101     Unused
102     Unused
103     Unused
104     Unused
105     Unused
106     Unused
107         Reserved
108         Reserved
109     Unused
110-112 Reserved
113     Unused
114     Unused
115-117 Reserved
118     Unused
119     Unused
120-122 Reserved
123     Unused
124         NetStat
125         Reserved
126         Reserved
127     Vendor Defined TLV
128-131 Reserved
132-139 Unused
140         Reserved
141         NetworkRole
142-151 Reserved
152-154 Unused
155-157 Reserved
158-159 Unused
160-165 Reserved
166-169 Unused
170-171 Reserved
172     CertBundle
173-179 Unused
180     Reserved
181-199 Unused
200-202 Reserved
203-209 Unused
210         Reserved
211         Reserved
212-216 Unused
217-220 Reserved
221-239 Unused
240         Reserved
241         MplStats
242         MplReset
243-299 Unused
301-303 Reserved
304     Unused
305-307 Reserved
308-309 Unused
310-312 Reserved
313         RPLStats
314         DHCP6Stats
315     Reserved
316     Reserved
317-324 Unused
325-337 Reserved
338-339 Unused
340-399 Reserved
400-499 Unused
500         Reserved
501         Reserved
502         Reserved
503-509 Unused
510         Reserved
511     Reserved
512-519 Unused
520         Reserved
521         Reserved
522-529 Unused
530     Reserved
531     Reserved
532-539 Unused
540         Reserved
541-599 Unused
600-607 Reserved
608 ... Unused
*/

/*
Message definitions follow.
Tag notation used within ...
Class:: designates class of device for which the TLV is relevant. 
    Generic (any IP addressable device) 
    Mesh (Wi-SUN mesh devices)
    Others TBD.
*/

package csmp.tlvs;

// TLV 1
// A list of zero or more TLV IDs
// Class:: Generic
//

message TlvIndex {
  repeated string tlvid = 1;    // list of TLV IDs (string encoded) supported by the device.
}

// TLV 2
// Primary identifier for a specific device.
// Class:: Generic
//

message DeviceID {
  oneof type_present {
    uint32 type = 1; // Set to 1 to indicate EUI-64 format.
  }
  oneof id_present {
    string id = 2; // The unique identifier of the device in EUI-64 format
  }
}

// TLV 6
// Used by NMS to force a device to intitiate registration to a specific NMS.
// Class:: Generic
//

message NMSRedirectRequest {
  oneof url_present {
    string url = 1; // NMS <base-url> to which the device registration will be directed.  MUST be formatted per section 6 of RFC 7252.
  }
  oneof immediate_present {
    bool immediate = 2;  // True == device should immediately send registration request to the specificed NMS url.
  }
}

// TLV 7
// Session ID used by NMS to track device CSMP messaging.
// Assigned by the NMS, and used in all subsequent Device to NMS messaging.
// Class:: Generic
//

message SessionID {
  oneof id_present {
    string id = 1; // session ID
  }
}

// TLV 8
// List of zero or more TLVs requested by the NMS from a Device.
// The values of the requested TLVs will be sent to the NMS asynchronously.
// Class:: Generic
//

message DescriptionRequest {
  repeated string tlvid = 1;    // list of TLV IDs in string format.
}

// A list of hardware modules with their firmware versions.
//
message HardwareModule {
  oneof moduleType_present {
    uint32 moduleType = 1; // hardware module type. Rf Dsp=1, PLC Dsp=2, CPU=3, FPGA=4
  }
  oneof firmwareRev_present {
    string firmwareRev = 2; // firmware version of the hardware module
  }
}

// TLV 11
// This TLV contains hardware description information for the device.
// The contents of the fields are defined by the equivalently-named fields in the entry of the SNMP MIB object entPhysicalTable.
// Class:: Generic
//

message HardwareDesc {
  oneof entPhysicalIndex_present {
    int32 entPhysicalIndex = 1; // index of this hardware being described
  }
  oneof entPhysicalDescr_present {
    string entPhysicalDescr = 2; // A textual description of physical entity
  }
  oneof entPhysicalVendorType_present {
    bytes entPhysicalVendorType = 3; // An indication of the vendor-specific hardware type of the physical entity
  }
  oneof entPhysicalContainedIn_present {
    int32 entPhysicalContainedIn = 4;  // The value of entPhysicalIndex for the physical entity which 'contains' this physical entity
  }
  oneof entPhysicalClass_present {
    int32 entPhysicalClass = 5; // An indication of the general hardware type of the physical entity
  }
  oneof entPhysicalParentRelPos_present {
    int32 entPhysicalParentRelPos = 6; // An indication of the relative position of this 'child' component among all its 'sibling' components
  }
  oneof entPhysicalName_present {
    string entPhysicalName = 7; // The textual name of the physical entity
  }
  oneof entPhysicalHardwareRev_present {
    string entPhysicalHardwareRev = 8; // The vendor-specific hardware revision string for the physical entity
  }
  oneof entPhysicalFirmwareRev_present {
    string entPhysicalFirmwareRev = 9; // The vendor-specific firmware revision string for the physical entity
  }
  oneof entPhysicalSoftwareRev_present {
    string entPhysicalSoftwareRev = 10; // The vendor-specific software revision string for the physical entity
  }
  oneof entPhysicalSerialNum_present {
    string entPhysicalSerialNum = 11; // The vendor-specific serial number string for the physical entity
  }
  oneof entPhysicalMfgName_present {
    string entPhysicalMfgName = 12; // The name of the manufacturer of this physical component
  }
  oneof entPhysicalModelName_present {
    string entPhysicalModelName = 13; // The vendor-specific model name identifier string associated with this physical component
  }
  oneof entPhysicalAssetID_present {
    string entPhysicalAssetID = 14; // This object is a user-assigned asset tracking identifier for the physical entity and provides non-volatile storage of this information
  }
  oneof entPhysicalMfgDate_present {
    uint32 entPhysicalMfgDate = 15; // This object contains the date of manufacturing of the managed entity
  }
  oneof entPhysicalURIs_present {
    string entPhysicalURIs = 16; // This object contains additional identification information about the physical entity
  }
  oneof entPhysicalFunction_present {
    uint32 entPhysicalFunction = 17; // The entPhysicalFunction field can take the following values: METER = 1, RANGE_EXTENDER = 2, DA_GATEWAY = 3, CGE = 4, ROOT = 5, CONTROLLER = 6, SENSOR. = 7, NETWORKNODE = 8
  }
  oneof entPhysicalOUI_present {
    bytes entPhysicalOUI = 18; // uniquely identifies a vendor
  }
  repeated HardwareModule hwModule = 19; // This defines a list of hardware modules with their firmware versions
}

// TLV 12
// This TLV contains description information for an interface on the device.
// The contents of these fields are defined by the equivalently-named fields in the SNMP MIB object ifTable
// Class:: Generic
//

message InterfaceDesc {
  oneof ifIndex_present {
    int32 ifIndex = 1; // A unique value, greater than zero, for each interface
  }
  oneof ifName_present {
    string ifName = 2; // The textual name of the interface
  }
  oneof ifDescr_present {
    string ifDescr = 3; // A textual string containing information about the interface
  }
  oneof ifType_present {
    int32 ifType = 4; // The type of interface
  }
  oneof ifMtu_present {
    int32 ifMtu = 5; // The size of the largest packet which can be sent/received on the interface, specified in octets
  }
  oneof ifPhysAddress_present {
    bytes ifPhysAddress = 6; // The interface's address at its protocol sub-layer
  }
}

// TLV 13
// This TLV specifies the periodic reporting of a set of TLVs.
// Class:: Generic
//

message ReportSubscribe {
  oneof interval_present {
    uint32 interval = 1; // The periodic time interval (in seconds) at which the device sends the tlvid set of tlvs.
  }
  repeated string tlvid = 2; // The tlvs to be sent on the interval.
  oneof intervalHeartBeat_present {
    uint32 intervalHeartBeat = 3; // The periodic time interval at which the device sends the tlvidHeartBeat set of tlvs.
  }
  repeated string tlvidHeartBeat = 4; // The tlvs to be sent on the heartbeat interval.
}

// TLV 16
// Describes a particular IP address (identified by the index) attached to an interface.
// Class:: Generic
//

message IPAddress {
  oneof ipAddressIndex_present {
    int32 ipAddressIndex = 1; // A unique value, greater than zero, for each IP address
  }
  oneof ipAddressAddrType_present {
    uint32 ipAddressAddrType = 2; // Address type defined as integers : ipv4=1, ipvv6=2, ipv4z=3, ipv6z=4, ipv6am=5
  }
  oneof ipAddressAddr_present {
    bytes ipAddressAddr = 3; // The IP address
  }
  oneof ipAddressIfIndex_present {
    int32 ipAddressIfIndex = 4; // Index of the associated interface
  }
  oneof ipAddressType_present {
    uint32 ipAddressType = 5; // IP type defined as integers : unicast=1, anycast=2, broadcast=3
  }
  oneof ipAddressOrigin_present {
    uint32 ipAddressOrigin = 6; // Address origin defined as integers : other=1, manual=2, dhcp=4, linklayer=5, random=6
  }
  oneof ipAddressStatus_present {
    uint32 ipAddressStatus = 7; // status defined as integers : preferred=1, deprecated=2, invalid=3, inaccessible=4, unknown=5, tentative=6, duplicate=7, optimistic=8
  }
  reserved 8;  // oneof ipAddressCreated
  reserved 9;  // oneof ipAddressLastChanged
  oneof ipAddressPfxLen_present {
    uint32 ipAddressPfxLen = 10; // The prefix length associated with the IP address.
  }
}

// TLV 17
// Describes a particular IP route (identified by the index) attached to an interface.
// Class:: Generic
//

message IPRoute {
  oneof inetCidrRouteIndex_present {
    int32 inetCidrRouteIndex = 1; // A unique value, greater than zero, for each route
  }
  oneof inetCidrRouteDestType_present {
    uint32 inetCidrRouteDestType = 2; // Destination Addresss type defined as integers : ipv4=1, ipvv6=2, ipv4z=3, ipv6z=4, ipv6am=5
  }
  oneof inetCidrRouteDest_present {
    bytes inetCidrRouteDest = 3; // IP address of the destination of the route
  }
  oneof inetCidrRoutePfxLen_present {
    uint32 inetCidrRoutePfxLen = 4; // Associated prefix length of the route destination
  }
  oneof inetCidrRouteNextHopType_present {
    uint32 inetCidrRouteNextHopType = 5; // Next hop Addresss type defined as integers : ipv4=1, ipvv6=2, ipv4z=3, ipv6z=4, ipv6am=5
  }
  oneof inetCidrRouteNextHop_present {
    bytes inetCidrRouteNextHop = 6; // IP address of the next hop of the route (device parent).  
  }
  oneof inetCidrRouteIfIndex_present {
    int32 inetCidrRouteIfIndex = 7; // Index of the associated interface
  }
  reserved 8;  // oneof inetCidrRouteType
  reserved 9;  // oneof inetCidrRouteProto
  reserved 10;  // oneof inetCidrRouteAge
}

// TLV 18
// Contains the current time as maintainced on the device.
// For time stamping purposes, this tlvid MUST also be sent along with every periodic metric report.
// It MAY contain a POSIX timestamp or an ISO 8601 timestamp.
// Class:: Generic
//

message CurrentTime {
  oneof posix_present {
    uint32 posix = 1; // posix timestamp
  }
  oneof iso8601_present {
    string iso8601 = 2; // iso 8601 timestamp
  }
  oneof source_present {
    uint32 source = 3; // time service from. 1: local; 2: admin; 3: network
  }
}

// TLV 21
// For retrieving the RPL Settings on the device.
// Class:: Mesh
//

message RPLSettings {
  oneof ifIndex_present {
    int32 ifIndex = 1; // interface id
  }
  oneof enabled_present {
    bool enabled = 2; // whether RPL feature is enabled
  }
  oneof dioIntervalMin_present {
    uint32 dioIntervalMin = 3; // min interval of DIO trickle timer in milliseconds
  }
  oneof dioIntervalMax_present {
    uint32 dioIntervalMax = 4; // max interval of DIO trickle timer in milliseconds
  }
  oneof daoIntervalMin_present {
    uint32 daoIntervalMin = 5; // min interval of DAO trickle timer in milliseconds
  }
  oneof daoIntervalMax_present {
    uint32 daoIntervalMax = 6; // max interval of DAO trickle timer in milliseconds
  }
  oneof mopType_present {
    uint32 mopType = 7; // mode of operation for RPL. 1: non-storing mode; 2: storing mode
  }
}

// TLV 22
// Contains the total system uptime of the device (seconds).
// Class:: Generic
//

message Uptime {
  oneof sysUpTime_present {
    uint32 sysUpTime = 1; // uptime info in seconds
  }
}

// TLV 23
// The statistics of an interface
// Class:: Generic
//

message InterfaceMetrics {
  oneof ifIndex_present {
    int32 ifIndex = 1; // A unique value, greater than zero, for each interface. Is same as in InterfaceDesc's ifIndex for the same interface
  }
  oneof ifInSpeed_present {
    uint32 ifInSpeed = 2; // The speed at which the incoming packets are received on the interface
  }
  oneof ifOutSpeed_present {
    uint32 ifOutSpeed = 3; // The speed at which the outgoing packets are transmitted on the interface
  }
  oneof ifAdminStatus_present {
    uint32 ifAdminStatus = 4; // The desired state of the interface
  }
  oneof ifOperStatus_present {
    uint32 ifOperStatus = 5; // The current operational state of the interface
  }
  oneof ifLastChange_present {
    uint32 ifLastChange = 6; // The value of sysUpTime at the time the interface entered its current operational state
  }
  oneof ifInOctets_present {
    uint32 ifInOctets = 7; // The total number of octets received on the interface, including framing characters
  }
  oneof ifOutOctets_present {
    uint32 ifOutOctets = 8; // The total number of octets transmitted out of the interface, including framing characters
  }
  oneof ifInDiscards_present {
    uint32 ifInDiscards = 9; // The number of inbound packets which were chosen to be discarded even though no errors had been detected to prevent their being deliverable to a higher-layer protocol (application dependant).
  }
  oneof ifInErrors_present {
    uint32 ifInErrors = 10; // For packet-oriented interfaces, the number of inbound packets that contained errors preventing them from being deliverable to a higher-layer protocol (subset of ifInDiscards).
  }
  oneof ifOutDiscards_present {
    uint32 ifOutDiscards = 11; // The number of outbound packets which were chosen to be discarded even though no errors had been detected to prevent their being transmitted
  }
  oneof ifOutErrors_present {
    uint32 ifOutErrors = 12; // For packet-oriented interfaces, the number of outbound packets that could not be transmitted because of errors
  }
}

// TLV 25
// Describes status of each RPL router
// Class:: Mesh
//

message IPRouteRPLMetrics {
  oneof inetCidrRouteIndex_present {
    int32 inetCidrRouteIndex = 1; // refers to a particular index in the IPRoute table
  }
  oneof instanceIndex_present {
    int32 instanceIndex = 2; // Corresponding RPL instance of this route
  }
  oneof rank_present {
    int32 rank = 3; // advertised rank
  }
  oneof hops_present {
    int32 hops = 4; // not necessary now, but here so we can easily add later once we're propagating hops as a metric
  }
  oneof pathEtx_present {
    int32 pathEtx = 5;  // advertised path ethx
  }
  oneof linkEtx_present {
    int32 linkEtx = 6;  // next-hop link ETX
  }
  oneof rssiForward_present {
    sint32 rssiForward = 7; // forward RSSI value (relative to the device)
  }
  oneof rssiReverse_present {
    sint32 rssiReverse = 8; // reverse RSSI value (relative to the device)
  }
  oneof lqiForward_present {
    int32 lqiForward = 9; // forward LQI value
  }
  oneof lqiReverse_present {
    int32 lqiReverse = 10; // reverse LQI value
  }
  oneof dagSize_present {
    uint32 dagSize = 11; // nodes count of this pan (number of joined devices)
  }
  reserved 12 to 17; // Used by Itron.
  PhyModeInfo phyModeForward = 18; // forward phy mode value
  PhyModeInfo phyModeReverse = 19; // reverse phy mode value
}

// TLV 30
// Requesting the device to perform a ping operation to a destination address.
// Class:: Generic
//

message PingRequest {
  oneof dest_present {
    string dest = 1; // IP address to be pinged from the device.
  }
  oneof count_present {
    uint32 count = 2; // number of times to ping.
  }
  oneof delay_present {
    uint32 delay = 3; // delay between ping in seconds.
  }
}

// TLV 31
// Acquire the current status of the last PingRequest.
// Class:: Generic
//

message PingResponse {
  oneof sent_present {
    uint32 sent = 1;  // number of packets sent
  }
  oneof received_present {
    uint32 received = 2; // number of packets received
  }
  oneof minRtt_present {
    uint32 minRtt = 3; // min round trip time
  }
  oneof meanRtt_present {
    uint32 meanRtt = 4; // mean round trip time
  }
  oneof maxRtt_present {
    uint32 maxRtt = 5; // max round trip time
  }
  oneof stdevRtt_present {
    uint32 stdevRtt = 6; // standard deviation of the round trip time
  }
  oneof src_present {
    string src = 7; // source IP address for the ping
  }
}

// TLV 32
// Request a device to reboot.
// Class:: Generic
//

message RebootRequest {
  oneof flag_present {
    uint32 flag = 1; // 0 : reboot and transfer to designated running image; 1 : reboot and stop at bootloader CLI.
  }
}

// TLV 33
// 802.1x status
// Class:: Mesh
//

message Ieee8021xStatus {
  oneof ifIndex_present {
    int32 ifIndex = 1; // It is RECOMMENDED this be set to 2 for the 6LowPAN interface.
  }
  oneof enabled_present {
    bool enabled = 2; // 802.1x enabled or not?
  }
  oneof identity_present {
    string identity = 3; // subject name of certificate, max len 32
  }
  oneof state_present {
    uint32 state = 4; // state of tls handshake
  }
  oneof pmKId_present {
    bytes pmkId = 5; // hash value of pmk, len 16
  }
  oneof clientCertValid_present {
    bool clientCertValid = 6; // whether client cert is valid
  }
  oneof caCertValid_present {
    bool caCertValid = 7; // whether ca cert is valid
  }
  oneof privateKeyValid_present {
    bool privateKeyValid = 8; // whether private key of client cert is valid
  }
  oneof rlyPanid_present {
    uint32 rlyPanid = 9; // panid of relay node
  }
  oneof rlyAddress_present {
    bytes rlyAddress = 10; // eui64 address of relay node, len 8
  }
  oneof rlyLastHeard_present {
    uint32 rlyLastHeard = 11; // last heard from relay node in seconds
  }
}

// TLV 34
// 802.11i status
// Class:: Mesh
//

message Ieee80211iStatus {
  oneof ifIndex_present {
    int32 ifIndex = 1; // It is RECOMMENDED this be set to 2 for the 6LowPAN interface.
  }
  oneof enabled_present {
    bool enabled = 2; // 802.11i is eabled or not
  }
  oneof pmkId_present {
    bytes pmkId = 3; // hash value of pmk, len 16
  }
  oneof ptkId_present {
    bytes ptkId = 4; // hash value of ptk, len 16
  }
  oneof gtkIndex_present {
    int32 gtkIndex = 5; // index of gtk
  }
  oneof gtkAllFresh_present {
    bool gtkAllFresh = 6; // whether all gtk are fresh
  }
  repeated bytes gtkList = 7; // list of hash value for each gtk, hash len 8, max repeat 4
  repeated uint32 gtkLifetimes = 8; // list of lifetime for each gtk, hash len 8, max repeat 4
  oneof authAddress_present {
    bytes authAddress = 9; // eui64 address of authenticate node
  }
}

message PhyModeInfo {
  oneof phyMode_present {
    uint32 phyMode = 1; // phy operating mode value (as defined in section 5.2 of PHYWG Wi-SUN PHY Technical Specification - Amendment 1VA8)
  }
  oneof txPower_present {
   int32 txPower = 2; // transmit power value in dbm.
  }
}

// TLV 35
// Configuration of WPAN-specific interface settings
// Class:: Mesh
//
//

message WPANStatus {
  oneof ifIndex_present {
    int32 ifIndex = 1; // It is RECOMMENDED this be set to 2 for the 6LowPAN interface.
  }
  oneof SSID_present {
    bytes SSID = 2; // max len 32 (Wi-SUN NetName).
  }
  oneof panid_present {
    uint32 panid = 3;
  }
  reserved 4;

  oneof dot1xEnabled_present {
    bool dot1xEnabled = 5; // Is dot1x enabled?
  }
  oneof securityLevel_present {
    uint32 securityLevel = 6; // security level
  }
  oneof rank_present {
    uint32 rank = 7;
  }
  oneof beaconValid_present {
    bool beaconValid = 8; // Is beacon valid (where invalid means receipt has timed-out/contact with PAN was lost)?  (PC frame for Wi-SUN)
  }  
  oneof beaconVersion_present {
    uint32 beaconVersion = 9; // beacon version (Wi-SUN PAN version).
  }
  oneof beaconAge_present {
    uint32 beaconAge = 10; // last heard beacon message in seconds  (PC frame for Wi-SUN).
  }
  oneof txPower_present {
    int32 txPower = 11; // transmit power value in dbm
  }
  oneof dagSize_present {
    uint32 dagSize = 12; // count of nodes joined to this PAN
  }
  oneof metric_present {
    uint32 metric = 13; // metric to border router (Wi-SUN Routing Cost)
  }
  oneof lastChanged_present {
    uint32 lastChanged = 14; // seconds since last PAN change (PAN ID change).
  }
  oneof lastChangedReason_present {
    uint32 lastChangedReason = 15; // reason for last PAN change: -1 == unknown, 0 == mesh initializing, 1 ==  mesh connectivity lost, 2 == GTK timeout,  3 == default route lost, 4 == migrated to better PAN, 5 == reserved.
  }
  oneof demoModeEnabled_present {
    bool demoModeEnabled = 16; // Is demo mode enabled?
  }
  oneof txFec_present {
    bool txFec = 17; // Is FEC enabled?
  }
  oneof phyMode_present {
    uint32 phyMode = 18; // phy operating mode value (as defined in section 5.2 of PHYWG Wi-SUN PHY Technical Specification - Amendment 1VA8)
  }
  reserved 19;
  repeated PhyModeInfo phyModeList = 20; // multi phy mode and transmit power value for adaptive modulation
}

// TLV 36
// Status of DHCP6 client
// Class:: Generic
//

message DHCP6ClientStatus {
  oneof ifIndex_present {
    int32 ifIndex = 1; // It is RECOMMENDED this be set to 2 for the 6LowPAN interface.
  }
  oneof ianaIAID_present {
    uint32 ianaIAID = 2; // TA ID value
  }
  oneof ianaT1_present {
    uint32 ianaT1 = 3; // T1 value
  }
  oneof ianaT2_present {
    uint32 ianaT2 = 4; // T2 value
  }
}

// TLV 42
// Configure device reporting settings.
// Class:: Generic
//

message NMSSettings {
  oneof regIntervalMin_present {
    uint32 regIntervalMin = 1; // min interval of register trickle timer in seconds
  }
  oneof regIntervalMax_present {
    uint32 regIntervalMax = 2; // max interval of register trickle timer in seconds
  }
  // reserved = 3;
  // reserved = 4;
  // reserved = 5;
  // reserved = 6;
}

// TLV 43
// Registration status to NMS.
// NMS uses this TLV to record the reason for the registration operation as recorded in the lastRegReason field of the TLV.
// Class:: Generic
//

message NMSStatus {
  oneof registered_present {
    bool registered = 1; // True of device is registerd with NMS
  }
  oneof NMSAddr_present {
    bytes NMSAddr = 2; // IPv6 address of NMS
  }
  oneof NMSAddrOrigin_present {
    uint32 NMSAddrOrigin = 3;   // Mechanims used to get NMS's IPv6 address (fixed/DHCPv6/redirect by TLV6 ... values).
  }
  oneof lastReg_present {
    uint32 lastReg = 4; // time since last succesful registration in seconds
  }
  oneof lastRegReason_present {
    uint32 lastRegReason = 5; // reason for last registration. 1: coldstart 2: administrative 3: IP address changed 4: NMS changed 5: NMS redirect 6: NMS error 7: IDevID, LDevID, or NMS certificate changed 8: outage recovery.
  }
  oneof nextReg_present {
    uint32 nextReg = 6; // time to next registration attempt in seconds.
  }
  oneof NMSCertValid_present {
    bool NMSCertValid = 7; // True if NMS certificate is valid.
  }
}

// TLV 47
// Device settings for 802.1x
// Class:: Mesh
//

message Ieee8021xSettings {
  oneof ifIndex_present {
    int32 ifIndex = 1; // It is RECOMMENDED this be set to 2 for the 6LowPAN interface.
  }
  oneof secMode_present {
    uint32 secMode = 2; // security mode, non-security or security (Security Level from Aux Security Header of IEEE 802.15.4-2020)
  }
  oneof authIntervalMin_present {
    uint32 authIntervalMin = 3; // min interval of 802.1x trickle timer in seconds
  }
  oneof authIntervalMax_present {
    uint32 authIntervalMax = 4; // max interval of 802.1x trickle timer in seconds
  }
  oneof immediate_present {
    bool immediate = 5; // True == do 802.1x authentication immediately,  False == do 802.1x authentication at next authentication interval.
  }
}

// TLV 48
// Statistic of 802.15.4 beacon packets
// Class:: Mesh
//

message Ieee802154BeaconStats {
  oneof ifIndex_present {
    int32 ifIndex = 1; // It is RECOMMENDED this be set to 2 for the 6LowPAN interface.
  }
  oneof inFrames_present {
    uint32 inFrames = 10; // count for all received beacon
  }
  oneof inFramesBeaconPAS_present {
    uint32 inFramesBeaconPAS = 11; // count for received PAS beacon
  }
  oneof inFramesBeaconPA_present {
    uint32 inFramesBeaconPA = 12; // count for received PA beacon
  }
  oneof inFramesBeaconPCS_present {
    uint32 inFramesBeaconPCS = 13; // count for received PCS beacon
  }
  oneof inFramesBeaconPC_present {
    uint32 inFramesBeaconPC = 14; // count for received PC beacon
  }
  oneof outFrames_present {
    uint32 outFrames = 20; // count for all sent out beacon
  }
  oneof outFramesBeaconPAS_present {
    uint32 outFramesBeaconPAS = 21; // count for sent out PAS beacon
  }
  oneof outFramesBeaconPA_present {
    uint32 outFramesBeaconPA = 22; // count for sent out PA beacon
  }
  oneof outFramesBeaconPCS_present {
    uint32 outFramesBeaconPCS = 23; // count for sent out PCS beacon
  }
  oneof outFramesBeaconPC_present {
    uint32 outFramesBeaconPC = 24; // count for sent out PC beacon
  }
}

// TLV 53
// Indicates RPL instance information
// Class:: Mesh
//

message RPLInstance {
  oneof instanceIndex_present {
    int32 instanceIndex = 1; // index for instance
  }
  oneof instanceId_present {
    int32 instanceId = 2; // instance id
  }
  oneof doDagId_present {
    bytes doDagId = 3; // dodag id, len 16
  }
  oneof doDagVersionNumber_present {
    int32 doDagVersionNumber = 4; // dodag version number of instance
  }
  oneof rank_present {
    int32 rank = 5; // rank value
  }
  oneof parentCount_present {
    int32 parentCount = 6; // Count of available parents (Wi-SUN candidate parent set).
  }
  oneof dagSize_present {
    uint32 dagSize = 7; // nodes count of this dodag
  }
  repeated RPLParent parents = 8;     // max repeat 3
  repeated RPLParent candidates = 9;  // max repeat 3
}

message RPLParent {
  oneof parentIndex_present {
    int32 parentIndex = 1; // this parent's index in the RPLParent table
  }
  oneof instanceIndex_present {
    int32 instanceIndex = 2; // a particular index in the RPLInstance table that this parent underlies.
  }
  oneof routeIndex_present {
    int32 routeIndex = 3; // a particular index in the IPRoute table that this parent underlies
  }
  oneof ipv6AddressLocal_present {
    bytes ipv6AddressLocal = 4; // IPv6 linklocal address
  }
  oneof ipv6AddressGlobal_present {
    bytes ipv6AddressGlobal = 5; // IPv6 global address
  }
  oneof doDagVersionNumber_present {
    uint32 doDagVersionNumber = 6; // dodag version number if RPL parent
  }
  oneof pathEtx_present {
    int32 pathEtx = 7;  // the parent's ETX back to the root.
  }
  oneof linkEtx_present {
    int32 linkEtx = 8;  // the node's ETX to its next-hop
  }
  oneof rssiForward_present {
    sint32 rssiForward = 9; // forward RSSI value
  }
  oneof rssiReverse_present {
    sint32 rssiReverse = 10; // reverse RSSI value
  }
  oneof lqiForward_present {
    int32 lqiForward = 11; // forward LQI value
  }
  oneof lqiReverse_present {
    int32 lqiReverse = 12; // reverse LQI value
  }
  oneof hops_present {
    int32 hops = 13; // parent's hop value
  }
}


// Groups in CSMP provide a mechanism to realize application layer multicast in the network.
// A group is uniquely defined by a type, id pair. Membership within a group type is exclusive,
// i.e., a device can be a member of only one group-id within a group-type.
// However, a device can be a member of more than one group of different group-types.

// A device is informed about its membership to a group using a GroupAssign TLV.
// On their very first boot, devices do not belong to any group. A device is added to a group by sending a GroupAssign TLV to the device.
// Receipt of a GroupAssign TLV replaces any existing group assignments.
// GroupAssign may occur either by direct unicast to a device or in the registration response from the NSM to the device.
// Note that a GroupAssign should not be sent over a multicast, because it would possibly cause some group members to change and some group members not to change.

// Group membership information MUST be stored in persistent storage so that once a device has been assigned any group it is remembered across reboots.
// A device will only process multicast messages containing a GroupMatch TLV if the device belongs to a group specified by the GroupMatch TLV.

// TLV 55
// Class:: Generic
//

message GroupAssign {
  oneof type_present {
    uint32 type = 1;
  }
  oneof id_present {
    uint32 id = 2;
  }
}

// TLV 57
// Class:: Generic
//

message GroupMatch {
  oneof type_present {
    uint32 type = 1;
  }
  oneof id_present {
    uint32 id = 2;
  }
}

// TLV 58
// Class:: Generic
// GET to a device for this TLV MAY illicit a response with one or more GroupInfo TLVs. 
//

message GroupInfo {
  oneof type_present {
    uint32 type = 1;
  }
  oneof id_present {
    uint32 id = 2;
  }
}

message LowpanMacCounters {
  oneof inFrames_present {
    uint32 inFrames = 1; // count for all received frames
  }
  oneof inFramesBeacon_present {
    uint32 inFramesBeacon = 2; // count for received beacon frames (Note: Wi-SUN does not use Beacon frames).
  }
  oneof inFramesData_present {
    uint32 inFramesData = 3; // count for received data frames
  }
  oneof inFramesAck_present {
    uint32 inFramesAck = 4; // count for received ack frames
  }
  oneof inFramesCmd_present {
    uint32 inFramesCmd = 5; // count for received command frames
  }
  oneof inFramesAsync_present {
    uint32 inFramesAsync = 6; // count for received async frames
  }
  oneof inFramesBcast_present {
    uint32 inFramesBcast = 7; // count for received broadcast frames
  }
  oneof inFramesUcast_present {
    uint32 inFramesUcast = 8; // count for received unicast frames
  }
  oneof outFrames_present {
    uint32 outFrames = 9; // count for all sent out frames
  }
  oneof outFramesBeacon_present {
    uint32 outFramesBeacon = 10; // count for sent out beacon frames
  }
  oneof outFramesData_present {
    uint32 outFramesData = 11; // count for sent out data frames
  }
  oneof outFramesAck_present {
    uint32 outFramesAck = 12; // count for sent out ack frames
  }
  oneof outFramesCmd_present {
    uint32 outFramesCmd = 13; // count for sent out command frames
  }
  oneof outFramesAsync_present {
    uint32 outFramesAsync = 14; // count for sent out async frames
  }
  oneof outFramesBcast_present {
    uint32 outFramesBcast = 15; // count for recesent outived broadcast frames
  }
  oneof outFramesUcast_present {
    uint32 outFramesUcast = 16; // count for sent out unicast frames
  }
}

// TLV 62
// Statistic of lowpan mac layer
// Class:: Mesh
//

message LowpanMacStats {
  LowpanMacCounters total = 1;  // total counter for lowpan mac layer
  LowpanMacCounters rf = 2;     // rf counter for lowpan mac layer
  reserved 3;                   // optional LowpanMacCounters plc = 3;
}

// TLV 63
// Configuration of RF PHY
// Class:: Mesh
//

message LowpanPhySettings {
  oneof lowpanRF_present {
    uint32 lowpanRF = 1; // 1 == enable lowpan rf, 0 == disable.
  }
  reserved 2;   // optional uint32 lowpanPLC = 2;
}

// TLV 65 - 75 are for firmware upgrade, detailed in CSMP specification.
//
message HardwareInfo {
  oneof hwId_present {
    string hwId = 1; // hardware information, max len 32
  }
  oneof vendorHwId_present {
    string vendorHwId = 2; // sub hardware information, max len 32
  }
}

// TLV 65
// Start to transfer firmware
// Class:: Generic
//

message TransferRequest {
  HardwareInfo hwInfo = 1; // hardware information
  oneof fileHash_present {
    bytes fileHash = 2; // SHA256 hash value of image file, len 32
  }
  oneof fileName_present {
    string fileName = 3; // name of image file, max len 128
  }
  oneof version_present {
    string version = 4; // version number, man len 32
  }
  oneof fileSize_present {
    uint32 fileSize = 5; // total size of image file
  }
  oneof blockSize_present {
    uint32 blockSize = 6; // block size of image file
  }
  // reserved = 7;
  // reserved = 8;
  // reserved = 9;
  // reserved = 10;
  // reserved = 11;
}

// TLV 67
// Class:: Generic
//

message ImageBlock {
  oneof fileHash_present{
    bytes fileHash = 1; // SHA256 hash value of image file, len 32
  }
  oneof blockNum_present {
    uint32 blockNum = 2; // block number 0, 1, 2, etc.
  }
  oneof blockData_present {
    bytes  blockData = 4; // block context, max len 1024
  }
}

// TLV 68
// Firmware load request
// Class:: Generic
//

message LoadRequest {
  oneof fileHash_present {
    bytes fileHash = 1; // SHA256 hash value of image file, len 32
  }
  oneof loadTime_present {
    uint32 loadTime = 2; // UTC time to load image, set to 1 to load immeditealy.
  }
}

// TLV 69
// Firmware cancel load request
// Class:: Generic
//

message CancelLoadRequest {
  oneof fileHash_present {
    bytes fileHash = 1; // SHA256 hash value of image file, len 32
  }
}

// TLV 70
// Set firmware to backup slot
// Class:: Generic
//

message SetBackupRequest {
  oneof fileHash_present {
    bytes fileHash = 1; // SHA256 hash value of image file, len 32
  }
}

/* ResponseCodes
enum {
  OK = 0;                 // The request was successfully processed.
  INCOMPATIBLE_HW = 1;    // Device hardware type does not match the request's hardware type.
  IMAGE_INCOMPLETE = 2;   // Image operation cannot be completed, device only has partial image.
  UNKNOWN_HASH = 3;       // File hash does not match any image available on the device.
  FILE_SIZE_TOO_BIG = 4;  // Image download is denied, filesize of the new image is too large.
  SIGNATURE_FAILED = 5;   // Image signature check failed.
  INVALID_REQ = 6;        // Invalid request.
  INVALID_BLOCK_SIZE = 7; // Invalid image block size.
  PENDING_REBOOT = 8;     // Request cannot be processed, conflict with a pending device reboot.
  IMAGE_RUNNING = 9;      // Cancel reboot request cannot be processed, image is already running.
}
*/

// TLV 71
// Response for TLV 65 TransferRequest
// Class:: Generic
//

message TransferResponse {
  oneof fileHash_present {
    bytes fileHash = 1; // SHA256 hash value of image file, len 32
  }
  oneof response_present {
    uint32 response = 2; // refer to ResponseCodes
  }
}

// TLV 72
// Response for TLV 68 LoadRequest
// Class:: Generic
//

message LoadResponse {
  oneof fileHash_present {
    bytes fileHash = 1; // SHA256 hash value of image file, len 32
  }
  oneof response_present {
    uint32 response = 2; // refer to ResponseCodes
  }
  oneof loadTime_present {
    uint32 loadTime = 3; // UTC time to load image
  }
}

// TLV 73
// Response for TLV 69 CancelLoadRequest
// Class:: Generic
//

message CancelLoadResponse {
  oneof fileHash_present {
    bytes fileHash = 1; // SHA256 hash value of image file, len 32
  }
  oneof response_present {
    uint32 response = 2; // refer to ResponseCodes
  }
}

// TLV 74
// Class:: Generic
//

message SetBackupResponse {
  oneof fileHash_present {
    bytes fileHash = 1; // SHA256 hash value of image file, len 32
  }
  oneof response_present {
    uint32 response = 2; // refer to ResponseCodes
  }
}

// TLV 75
// Image information
// Class:: Generic
//

message FirmwareImageInfo {
  oneof index_present {
    uint32 index = 1;
  }
  oneof fileHash_present {
    bytes fileHash = 2; // SAH256 hash value of image file, len 32
  }
  oneof fileName_present {
    string fileName = 3; // name of image file, max len 128
  }
  oneof version_present {
    string version = 4; // version number, man len 32
  }
  oneof fileSize_present {
    uint32 fileSize = 5; // total size of image file
  }
  oneof blockSize_present {
    uint32 blockSize = 6; // block size of image file
  }
  oneof bitmap_present {
    bytes bitmap = 7; // bitmap of image file, max len 128. Big endian. 1 means block was received, 0 means block was not received.
  }
  oneof isDefault_present {
    bool isDefault = 8; // True if default image
  }
  oneof isRunning_present {
    bool isRunning = 9; // True if running image
  }
  oneof loadTime_present {
    uint32 loadTime = 10; // UTC time to load.  1 means load immediately.
  }
  HardwareInfo hwInfo = 11; // hardware information
  oneof bitmapOffset_present {
    uint32 bitmapOffset = 12; // When present, MUST be set to indicate the start block number of bitmap.  Block numbering is 0 based.
  }
  // reserved = 13;
  // reserved = 14;
  // reserved = 15;
}

// TLV 76
// Class:: Generic
//

message SignatureValidity {
  oneof notBefore_present {
    uint32 notBefore = 1; // posix time
  }
  oneof notAfter_present {
    uint32 notAfter = 2; // posix time
  }
}

// TLV 77
// Class:: Generic
//

message Signature {
  oneof value_present {
    bytes value = 1;
  }
}

// TLV 79
// Configuration of signature check settings about message from NMS
// Class:: Generic
//

message SignatureSettings {
  oneof reqSignedPost_present {
    bool reqSignedPost = 1; // check signature in POST message from NMS?
  }
  oneof reqValidCheckPost_present {
    bool reqValidCheckPost = 2; // time valid check in POST message from NMS?
  }
  oneof reqTimeSyncPost_present {
    bool reqTimeSyncPost = 3; // return fail when node doesn't have global time in POST message from NMS?
  }
  oneof reqSecLocalPost_present {
    bool reqSecLocalPost = 4; // check signature in POST message from console?
  }
  oneof reqSignedResp_present {
    bool reqSignedResp = 5; // check signature in response message from NMS during registation?
  }
  oneof reqValidCheckResp_present {
    bool reqValidCheckResp = 6; // time valid check in response message from NMS during registation?
  }
  oneof reqTimeSyncResp_present {
    bool reqTimeSyncResp = 7; // return fail when node doesn't have global time in response message from NMS during registation?
  }
  oneof reqSecLocalResp_present {
    bool reqSecLocalResp = 8; // check signature in response message from console during registation?
  }
  oneof cert_present {
    bytes cert = 9; // cert context, used to change NMS's certificate, max len 512
  }
}

message HardwareResetCount {
  oneof total_present {
    uint32 total = 1;
  }
  oneof externalReset_present {
    uint32 externalReset = 2; // external reset reason.
  }
  oneof powerOnReset_present {
    uint32 powerOnReset = 3; // power on reset reason.
  }
}

message SoftwareResetCount {
  oneof total_present {
    uint32 total = 1;
  }
  oneof FWLoadReset_present {
    uint32 FWLoadReset = 2; // firmware reload
  }
  oneof CSMPRebootReset_present {
    uint32 CSMPRebootReset = 3; // reload by csmp TLV
  }
  oneof vendorProgramReset_present {
    uint32 vendorProgramReset = 4; // reload by vendor's APP
  }
  oneof cfgLoadReset_present {
    uint32 cfgLoadReset = 5; // reload config file
  }
}

message ExceptionResetCount {
  oneof total_present {
    uint32 total = 1;
  }
  oneof IWDGReset_present {
    uint32 IWDGReset = 2; // watchdog reset
  }
  oneof cstackOverflowReset_present {
    uint32 cstackOverflowReset = 3; // stack over flow reset
  }
  oneof EPFReset_present {
    uint32 EPFReset = 4; // GPIO reset
  }
}

// TLV 86
// Count of all types of reset in the system, include hardware reset, software reset and exception reset
// Class:: Generic
//

message SysResetStats {
  oneof total_present {
    uint32 total = 1; // reset count
  }
  HardwareResetCount hardwareReset = 2;
  SoftwareResetCount softwareReset = 3;
  ExceptionResetCount exceptionReset = 4;
}

// TLV 124
// Status of device network module, similar as netstat command in linux
// Class:: Generic
//

message NetStat {
  oneof sessionIndex_present {
    int32 sessionIndex = 1;  // session index
  }
  oneof protocol_present {
    uint32 protocol = 2; // 6 - TCP, 17 - UDP
  }
  oneof localAddress_present {
    bytes localAddress = 3; // ipv4 or ipv6 local address
  }
  oneof localPort_present {
    uint32 localPort = 4; // local port
  }
  oneof peerAddress_present {
    bytes peerAddress = 5; // ipv4 or ipv6 peer address
  }
  oneof peerPort_present {
    uint32 peerPort = 6; // peer port
  }
  oneof state_present {
    uint32 state = 7;
  }
  oneof role_present {
    uint32 role = 8; // 1 - server/incoming, 2 - client/outgoing
  }
}

// TLV 141
// Indicate the network role of device
// Class:: Generic
//

message NetworkRole {
  uint32 preference = 1; // 0 - SYSTEM_DEFAULT, 1 - TRANSIT_NODE, 2 - LEAF_NODE
}

message CertInfoEntry {
  oneof type_present {
    uint32 type = 1;   // 1: FND public key; 2: 802.1x CA; 3: 802.1x public key; 4: iDevID public key;
  }
  oneof certSubj_present {
    string certSubj = 2;  // certificate subject name, max length 128
  }
  oneof certValidNotBefore_present {
    string certValidNotBefore = 3;  // not before of valid time, max length 16
  }
  oneof certValidNotAfter_present {
    string certValidNotAfter = 4;  // not after of valid time, max length 16
  }
  oneof certFingerprint_present {
    bytes certFingerprint = 5;  // certificate finger print, max length 20
  }
}

// TLV 172
// Device Certificate Bundle TLV.
//
message CertBundle {
  repeated CertInfoEntry certInfo = 1; // max repeat is 5
}

// TLV 241
// Statistic of MPL packet
// Class:: Mesh
//

message MplStats {
  oneof dataSent_present {
    uint32 dataSent = 1; // count for send out data packet
  }
  oneof dataReceived_present {
    uint32 dataReceived = 2; // count for received data packet
  }
  oneof dataError_present {
    uint32 dataError = 3; // count for error data packet
  }
  oneof dataSentDuplicate_present {
    uint32 dataSentDuplicate = 4; // count for duplicate sent out data packet
  }
  oneof dataReceivedDuplicate_present {
    uint32 dataReceivedDuplicate = 5; // count for duplicate received data packet
  }
  oneof controlSent_present {
    uint32 controlSent = 6; // count for send out control packet
  }
  oneof controlReceived_present {
    uint32 controlReceived = 7; // count for received control packet
  }
  oneof controlError_present {
    uint32 controlError = 8; // count for error control packet
  }
}

// TLV 242
// Reset statistic of MPL packet
// Class:: Mesh
//

message MplReset {
  oneof stats_present {
    bool stats = 8; // True == reset statistics of MPL packet
  }
}

// TLV 313
// Statistics for RPL messages
// Class:: Mesh
//

message RPLStats {
  oneof inFramesDIS_present {
    uint32 inFramesDIS = 1; // count for received DIS packets
  }
  oneof inFramesDIO_present {
    uint32 inFramesDIO = 2; // count for received DIO packets
  }
  oneof inFramesDAO_present {
    uint32 inFramesDAO = 3; // count for received DAO packets
  }
  oneof outFramesDIS_present {
    uint32 outFramesDIS = 4; // count for send out DIS packets
  }
  oneof outFramesDIO_present {
    uint32 outFramesDIO = 5; // count for send out DIO packets
  }
  oneof outFramesDAO_present {
    uint32 outFramesDAO = 6; // count for send out DAO packets
  }
  oneof outFramesNoPathDAO_present {
    uint32 outFramesNoPathDAO = 7; // count for send out no-path DAO packets
  }
  oneof outFramesNS_present {
    uint32 outFramesNS = 8; // count for send out neighbor solicit packets
  }
}

// TLV 314
// Statistics for DHCPv6 messages
// Class:: Generic
//

message DHCP6Stats {
  oneof clientFramesSolicit_present {
    uint32 clientFramesSolicit = 1; // count for send out solicit packets
  }
  oneof clientFramesAdvertise_present {
    uint32 clientFramesAdvertise = 2; // count for send out advertise packets
  }
  oneof clientFramesRequest_present {
    uint32 clientFramesRequest = 3; // count for send out request packets
  }
  oneof clientFramesReply_present {
    uint32 clientFramesReply = 4; // count for send out reply packets
  }
  oneof relayFramesForward_present {
    uint32 relayFramesForward = 5; // count for DHCP relay packet which is forwarded by node
  }
  oneof relayFramesReply_present {
    uint32 relayFramesReply = 6; // count for DHCP relay packet which is relaied by node
  }
}

]]></artwork>
          </section>
        </section>
        <section anchor="large-requests">
          <name>Large Requests</name>
          <t>A single CSMP TLV MUST NOT be larger than the space available in a single CoAP request message payload, minus the space occupied by mandatory TLVs.  CSMP requests containing large TLVs or many TLVs may exceed available space within a CoAP request / UDP datagram.</t>
          <t>If a POST request is larger than the UDP MTU, the request MUST be split into multiple POST requests with the TLVs spread across the message bodies. The server MUST be prepared to handle the TLVs in any order.</t>
          <t>If a GET request exceeds the UDP MTU because the max length of the "q" option is exceeded, the request MUST be split into multiple GET requests, each with a subset of the query option.</t>
          <t>The GET response from a server may not be able to fit all requested TLVs into the response.  The server will respond with only the TLVs it is able to fit within the message body.  A client SHOULD issue additional GET requests to obtain the missing TLVs.</t>
          <t>Recommended network MTU will be deployment / technology dependent.  For example, an MTU of 1024 is often used for large scale IEEE 802.15.4 mesh networks.</t>
        </section>
      </section>
      <section anchor="csmp-security-model">
        <name>CSMP Security Model</name>
        <t>The NMS signs outgoing device messaging.  Devices verify the signature to confirm source and integrity of incoming NMS messages.  NMS-Device trust is established with an NMS certificate/public key programmed into the device at time of manufacture.   Signing TLVs included in the message payload enable signature verification by a device.   The Signing TLVs are:</t>
        <ol spacing="normal" type="1"><li>Signature TLV. When included, the Signature TLV MUST be the last TLV in a message payload. The signature is calculated over the first byte of the message payload up to but not including the Signature TLV itself. Unless otherwise specified, the signature MUST be calculated as ECDSA with SHA-256 signature cipher using the signer's (NMS) private key.  If the message signature is incorrect, the device MUST ignore the message.</li>
          <li>SignatureValidity TLV. The SignatureValidity TLV defines the validity period for the message.  The  SignatureValidity  TLV MUST be included when the Signature TLV is included. If the message is received outside the defined validity period, the device MUST ignore the message.</li>
        </ol>
        <t>If either of the Signing TLVs are missing from a message payload, the device MUST ignore the message.</t>
        <t>Additional layer 2, 3, or 4 security mechanisms may be utilized to meet the requirements of specific deployment models (Wi-SUN layer 2 security, VPN at layer 3, DTLS at layer 4, etc.).  Details of these additional security mechanisms are out of scope of this specification.</t>
        <section anchor="signature-exemption">
          <name>Signature Exemption</name>
          <t>For situations in which a request payload signature adds overhead without improving security, the Signing TLVs may be elided for certain payloads. For example, the overhead of signing each block of a firmware update may be unnecessary as a full image integrity check is performed over the entire file and reported to the NMS.</t>
          <t>The signature exemptible TLVs are:</t>
          <ol spacing="normal" type="1"><li>ImageBlock</li>
            <li>DescriptionRequest</li>
          </ol>
          <t>The NMS MAY elide the Signing TLVs provided the request body contains only exemptible TLVs.  Otherwise, the Signing TLVs MUST be included.</t>
          <t>A device MAY accept incoming message payloads without Signing TLVs provided the payload contains only exemptible TLVs.</t>
        </section>
      </section>
      <section anchor="device-groups">
        <name>Device Groups</name>
        <t>CSMP groups are used to support multicast messaging to devices.</t>
        <t>A group is uniquely defined by a group-type/group-id pair. A device MAY be a member of multiple group-types, but MUST be a member of only one group-id within a group-type.  A device MUST support membership in at least two group types.</t>
        <t>The NMS assigns a device to a group using the GroupAssign TLV. On initial boot, a device has no group assignments. To be assigned to a device group, a GroupAssign TLV MUST be sent to the device either by a POST request from the NMS or within the response to the device's registration request to the NMS.</t>
        <t>The NMS removes a device from a group by POST-ing a GroupEvict TLV to the device.</t>
        <t>If a device's group assignment is changed at the NMS, upon receipt of the next metrics report from the device, the NMS MUST POST a new GroupAssign TLV to the device.</t>
        <t>Group assignments are not additive.  Assignments MUST be replaced upon receipt of a subsequent GroupAssign TLV.</t>
        <t>A GroupAssign TLV MUST NOT be sent within a multicast message.</t>
        <t>A GroupEvict TLV MUST NOT be sent within a multicast message.</t>
        <t>Devices MUST maintain group assignments in durable storage (across power cyclings / reboots).</t>
        <t>CSMP multicast messages MUST contain a GroupMatch TLV.  Upon receipt of a multicast CSMP message:</t>
        <ol spacing="normal" type="1"><li>A device MUST process the message if the contained GroupMatch TLV matches a group to which the device is assigned.</li>
          <li>A device MUST ignore the message if the message does not contain a GroupMatch TLV.</li>
          <li>A device MUST ignore the message if the GroupMatch TLV does not match a device group assignment.</li>
        </ol>
        <section anchor="reserved-group-types">
          <name>Reserved Group Types</name>
          <t>Group type 1 is reserved for configuration.</t>
          <t>Group type 2 is reserved for firmware.</t>
        </section>
      </section>
      <section anchor="device-tlv-processing-order">
        <name>Device TLV Processing Order</name>
        <t>A device processes message payload TLVs in the following order:</t>
        <ol spacing="normal" type="1"><li>If present, the Signature and SignatureValidity TLVs MUST be processed first.</li>
          <li>If present, the GroupMatch TLV MUST be processed next.</li>
          <li>The remaining payload TLVs MUST be processed in the order they appear in the payload.</li>
          <li>TLVs within a payload SHOULD NOT be duplicated.  In the case of a duplicate TLV, the last payload instance of TLV MUST be used.</li>
          <li>The index field of a TLV table entry is used to determine uniqueness of the TLV.  TLVs with identical index values MUST be considered to be duplicates (table entry TLVs are identified in <xref target="csmpComp"/>.</li>
          <li>TLV specific error handling is described in the OpenAPI definitions.</li>
        </ol>
      </section>
    </section>
    <section anchor="functional-description">
      <name>Functional Description</name>
      <t>This section describes the major operational flows of the CSMP protocol.</t>
      <section anchor="device-lifecyle-states">
        <name>Device Lifecyle States</name>
        <t>For understanding of CSMP device behavior, it is helpful to consider the NMS' view of device states and state transitions (presented below).</t>
        <t>The NMS views a device as transitioning through the following states:</t>
        <figure>
          <name>NMS View of Device State</name>
          <artset>
            <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/b75b04a851395ac25c26d94edaad4fe6716fa44f/Figure1.svg?raw=true"/>
            <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
          </artset>
        </figure>
        <ol spacing="normal" type="1"><li>Devices pre-populated into the NMS prior to deployment exist in the Unheard state.</li>
          <li>Upon receipt of a device registration request, the NMS records the device's presence on the network and the device enters the Registering state.</li>
          <li>NMS responds with a registration ACK payload containing configuration for the device.</li>
          <li>The device transitions to the Up state upon NMS receipt of a device metrics report.</li>
          <li>If subsequent metrics reports are lost (poor network conditions), the device transitions to the Down state. NMS receipt of a new metrics report transitions the device back to Up state.</li>
        </ol>
      </section>
      <section anchor="nms-discovery">
        <name>NMS Discovery</name>
        <t>A device requires the &lt;nms-base-url&gt; of its NMS.  Acquisition of the NMS URL may be accomplished via a variety of means including a DHCP option, pre-deployment administrative configuration setting, etc. The specific mechanism to be used is beyond the scope of this specification.</t>
        <t>For devices using DHCPv6 address assignment, a device MAY request DHCPv6 option 26484 sub-option 1 to obtain the URL of its NMS.</t>
      </section>
      <section anchor="device-registration-and-configuration">
        <name>Device Registration and Configuration</name>
        <t>Registration is the messaging flow via which a device announces its entry onto the network and provides a means for the NMS to push configuration information to the device.</t>
        <t>A device registers with an NMS by issuing a registration request to an NMS.  The NMS subsequently responds to reject or accept the registration, with device configuration included in a successful registration response.  A device issues a registration request for a variety of reasons:</t>
        <ol spacing="normal" type="1"><li>A device MUST register when the device reboots (power cycled or receipt of RebootRequest TLV from the NMS).</li>
          <li>A device MUST register when its IP address has changed (usually indicating a network re-join).</li>
          <li>A device MUST register if its mesh parent has changed (mesh networks only).</li>
          <li>A device MUST register if it detects the NMS IP address has changed.</li>
          <li>A device MUST register upon receipt of NMSRedirectRequest TLV from the NMS.  This can be caused by the removal of a device from the NMS inventory but the device continues to communicate with a Session ID now unknown to the NMS.</li>
        </ol>
        <t>A device and NMS implement the registration messaging flow depicted in Figure 2.</t>
        <figure>
          <name>Device Registration, Configuration, and Metrics</name>
          <artset>
            <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/e9c763102bee617e4f6f6a526d39de081660a25f/RegistrationConfigurationMetrics.svg?raw=true"/>
            <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
          </artset>
        </figure>
        <section anchor="device-registration-request">
          <name>Device Registration Request</name>
          <t>A device MUST implement two configurable parameters used to control the registration process, initially set at manufacture time, and MUST be maintained in durable storage.</t>
          <ol spacing="normal" type="1"><li>tIntervalMin defaults to 300 seconds (5 minutes). Also configurable via TLV 42/regIntervalMin field.</li>
            <li>tIntervalMax defaults to 3600 seconds (1 hour). Also configurable via TLV 42/regIntervalMax field.</li>
          </ol>
          <t>A device MUST issue registration requests using the following algorithm.</t>
          <artwork><![CDATA[
    Set tInterval = tIntervalMin.
    Wait an initial period between 0 and tInterval seconds.
    Do {
      1. Wait tBackoff seconds, where tBackoff is a random
        interval between tInterval/2 and tInterval seconds. 
        A tBackoff value in the latter half of the interval 
        ensures a minimum time between successive registration 
        attempts.
      2. Send a new CoAP CON POST request message to NMS <nms-base-url>/r.  
        The message payload MUST contain the registration TLVs 
        described in section 3.3.1.2.
      3. Wait the remaining (tInterval – tBackoff) seconds.
      4. Set tInterval to 2 * tInterval. 
        If tInterval is greater than tIntervalMax, 
        set tInterval to tIntervalMax.
    } While the device has not received an ACK to its registration POST.
]]></artwork>
          <t>An example execution of a full registration POST retry sequence is presented in <xref target="appendixA"/>.</t>
          <t>If the device receives an ACK message with CoAP response code 2.03 (valid) from the NMS at any time before the device's next registration POST, the TLVs within the ACK message MUST be processed.</t>
        </section>
        <section anchor="registration-post-payload">
          <name>Registration POST Payload</name>
          <t>The following TLVs MUST be included in the device registration POST to the NMS:</t>
          <ol spacing="normal" type="1"><li>DeviceID (primary identifier of the device).</li>
            <li>CurrentTime (used to validate device local time).</li>
          </ol>
          <t>Previously registered devices SHOULD already have (durably stored) values for the Session ID, GroupInfo,and ReportSubscribe TLVs and MUST include these TLVs in the device registration POST to the NMS:</t>
          <ol spacing="normal" type="1"><li>SessionID</li>
            <li>GroupInfo (one per group)</li>
            <li>ReportSubscribe</li>
          </ol>
          <t>The following Device Information TLVs MUST be included in the registration POST:</t>
          <ol spacing="normal" type="1"><li>HardwareDesc</li>
            <li>InterfaceDesc (one per interface)</li>
            <li>IPAddress (one per address)</li>
            <li>NMSStatus (reason for the registration operation)</li>
            <li>WPANStatus</li>
            <li>RPLSettings</li>
          </ol>
          <t>Note that the SessionID, GroupAssign, and ReportSubscribe TLV set is considered to be generic device Configuration.  The Configuration TLV set is technology specific and MAY be extended with additional technology specific TLVs (beyond the scope of this specification).</t>
        </section>
        <section anchor="nms-registration-response">
          <name>NMS Registration Response</name>
          <t>Upon receipt of a registration request, the NMS looks up the information for the device identified by DeviceID to confirm correctness of the request.  See <xref target="csmpNms"/> for details of DeviceID and SessionID validation and related error response codes.</t>
          <t>If the device is found in inventory, authorized to register, and all other registration request content is confirmed to be valid, the NMS MUST send an ACK response message with response code 2.03(Valid)to the device.  The ACK takes one of two forms, depending upon whether or not the NMS will redirect the device to another NMS.</t>
          <t>In the case where the NMS is not redirecting, the response body to a valid registration request contains the following TLVs:</t>
          <ol spacing="normal" type="1"><li>SessionID MUST be elided from the ACK if the SessionID  contained in the registration request is correct, otherwise the correct SessionID TLV MUST be included in the ACK.</li>
            <li>GroupAssign MUST be elided from the ACK if the GroupAssign  contained in the registration request is correct, otherwise the correct GroupAssign TLV MUST be included in the ACK.</li>
            <li>ReportSubscribe MUST be elided from the ACK if the ReportSubscribe contained in the registration request is correct, otherwise the correct ReportSubscribe TLV MUST be included in the ACK.</li>
            <li>Signing TLVs MUST be included.</li>
          </ol>
          <t>In the case where the NMS is redirecting, the response body to a valid registration request contains the following TLVs:</t>
          <ol spacing="normal" type="1"><li>NMSRedirectRequest MUST be included.</li>
            <li>Signing TLVs MUST be included.</li>
          </ol>
          <t>When the response contains a SessionID TLV, the device MUST durably store this TLV and SessionID TLV MUST be included in all future CSMP requests to the NMS.</t>
          <t>When the response contains a GroupAssign TLV, the device MUST durably store the group-id (overwriting any other stored group-id for the same group-type) and MUST use the new GroupAssign values for comparison with all future receipt of GroupMatch TLVs.</t>
          <t>When the response contains a ReportSubscribe TLV, the device MUST begin reporting the indicated metrics TLVs (ignoring any TLVs requested by the ReportSubscribe which are unknown to the device).</t>
          <t>The NMS includes the NMSRedirectRequest TLV in a registration response to request the device register with an alternate NMS instance (load balancing, etc.). Upon receipt of this TLV, the device MUST cease registration attempts with the original NMS and start the registration process with the NMS indicated in the NMSRedirectRequest TLV.  If registration succeeds with this new NMS, all subsequent device CSMP messaging MUST be directed to this new NMS.   Note that device receipt of NMSRedirectRequest TLV is a one-time redirect and not persisted across device restarts.</t>
        </section>
        <section anchor="registration-complete">
          <name>Registration Complete</name>
          <t>The NMS considers device registration to be complete when all of the following conditions are met:</t>
          <ol spacing="normal" type="1"><li>The registration ACK to the device indicates code 2.03 (Valid) and message ID match is confirmed as described in CoAP.</li>
            <li>The ACK response body does not contain an NMSRedirectRequest TLV.</li>
            <li>The first metrics report from the device is received by the NMS.</li>
          </ol>
        </section>
      </section>
      <section anchor="device-metrics-reporting">
        <name>Device Metrics Reporting</name>
        <t>Upon receipt of a ReportSubscribe TLV, a device configures as many as two metrics reports:</t>
        <ol spacing="normal" type="1"><li>A primary metrics report using the interval and TLV ID set.</li>
          <li>A secondary metrics report using the heartbeat interval and heartbeat TLV ID set.</li>
        </ol>
        <t>The primary metrics report MUST be used for mains powered devices (with the secondary report disabled).  To conserve power, metrics reporting for low power devices MAY be split across primary and secondary reports, with the primary report configured to provide TLVs needed at more frequent interval and the secondary configured for TLVs required at a more relaxed interval.</t>
        <t>A device configures metrics parameters to control the device's primary metrics report as follows:</t>
        <ol spacing="normal" type="1"><li>tMetricsInterval (how often a device MUST report its metrics) is typically set between 5 minutes and 8 hours (depends on application requirements). Designated by the interval field of the ReportSubscribe TLV.</li>
          <li>tlvList (the list of TLVs the device MUST report) is designated by the tlvId field of the ReportSubscribe TLV.</li>
        </ol>
        <t>A device configures metrics parameters to control a device's secondary metrics report as follows:</t>
        <ol spacing="normal" type="1"><li>tMetricsInterval is designated by the intervalHeartBeat field of the ReportSubscribe TLV.</li>
          <li>tlvList is designated by the tlvIdHeartBeat field of the ReportSubscribe TLV.</li>
        </ol>
        <t>The TLV content of the primary and secondary metrics reports are deployment and application specific.  For example, the primary metrics report for a 6LoWPAN, mains-powered mesh node might be configured as:</t>
        <ol spacing="normal" type="1"><li>InterfaceMetrics</li>
          <li>GroupInfo</li>
          <li>FirmwareImageInfo</li>
          <li>Uptime</li>
          <li>LowpanPhyStats</li>
          <li>DifServMetrics</li>
          <li>ReportSubscribe</li>
        </ol>
        <t>TLV content of the secondary metrics report is similarly application specific and beyond the scope of this specification.</t>
        <t>For each configured metrics report, a device MUST commence reporting immediately after receipt of a successful registration ACK by sending a NON POST to &lt;nms-url&gt;/c containing the following TLVs:</t>
        <ol spacing="normal" type="1"><li>SessionID</li>
          <li>CurrentTime</li>
          <li>The TLVs from tlvList. The entirety of all table entries MUST be included.</li>
        </ol>
        <t>Following the initial metrics report, the device MUST implement the following algorithm for subsequent metric reports (for both primary and secondary report):</t>
        <artwork><![CDATA[
    Send a new CoAP NON POST to <nms-url>/c with the required metrics TLVs.
    Wait an initial random interval between 0 and tMetricsInterval seconds.
    Do {
        1. Wait tMetricsBackoff seconds, where tMetricsBackoff is random 
          value between tMetricsInterval/2 and tMetricsInterval seconds.
        2. Send a new CoAP NON POST message to <nms-url>/c 
          with the required metrics TLVs
        3. Wait the remaining (tMetricsInterval – tMetricsBackoff) seconds 
          so that the full tMetricsInterval has expired.
    } While the device has a valid IP address.
]]></artwork>
      </section>
      <section anchor="device-firmware-update">
        <name>Device Firmware Update</name>
        <t>CSMP defines a device firmware update process optimized for LPWANs. A key aspect of this process is the separation of image placement on a device from activation (execution) of the image on the device.</t>
        <t>The device firmware update process consists of three sub-flows:</t>
        <ol spacing="normal" type="1"><li>Firmware download.  A new image is placed on one or more members of a device group.</li>
          <li>Image load.  Activate an image on one or more members of a device group at a scheduled time.</li>
          <li>Set backup image.  Optional designation of an image to be used when load of all other images fails.</li>
        </ol>
        <t>A device should implement the following mechanisms in support of firmware update:</t>
        <ol spacing="normal" type="1"><li>It is RECOMMENDED that vendors implement digital signing of images prior to image release to production.</li>
          <li>It is RECOMMENDED that a device implement a secure bootloader which (upon device receipt of a LoadRequest TLV or at device power-up) validates the activated image's signature, loads the image from durable storage into operating memory, and transfers execution to the image.  Specific details of image signing and the secure bootloader are left to the vendor beyond the scope of this specification.</li>
          <li>A device MUST be capable of storing at least two firmware images: the running image and at least one additional image.</li>
          <li>It is RECOMMENDED that a device also support a backup image. A device boots into the backup image when the device is unable to boot into any other image.</li>
          <li>A device MUST be capable of scheduling an image load (activation) at a specific future time (i.e. the device must maintain a time source).</li>
        </ol>
        <section anchor="firmware-image-format">
          <name>Firmware Image Format</name>
          <t>A CSMP firmware image file consists of three main parts: a CSMP defined image header, the vendor defined image binary, and the vendor defined image signature (as depicted below).</t>
          <table>
            <name>Firmware Image Format</name>
            <thead>
              <tr>
                <th align="left">Field</th>
                <th align="left">Size (octets)</th>
                <th align="left">Description</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left"> </td>
                <td align="left"> </td>
                <td align="left">Begin Header</td>
              </tr>
              <tr>
                <td align="left">Header Version</td>
                <td align="left">4</td>
                <td align="left">32 bit unsigned integer which MUST be set to 2.</td>
              </tr>
              <tr>
                <td align="left">Header Length</td>
                <td align="left">4</td>
                <td align="left">32 bit unsigned integer which MUST be set to 256.</td>
              </tr>
              <tr>
                <td align="left">App Rev Major</td>
                <td align="left">4</td>
                <td align="left">Vendor specific 32 bit unsigned integer which is set to indicate the major revision number of the application image.</td>
              </tr>
              <tr>
                <td align="left">App Rev Minor</td>
                <td align="left">4</td>
                <td align="left">Vendor specific 32 bit unsigned integer which is set to indicate the minor revision number of the application image.</td>
              </tr>
              <tr>
                <td align="left">App Build</td>
                <td align="left">4</td>
                <td align="left">Vendor specific 32 bit unsigned integer which is set to indicate the build of the application image.</td>
              </tr>
              <tr>
                <td align="left">App Length</td>
                <td align="left">4</td>
                <td align="left">32 bit unsigned integer which MUST be set to the octet length of the Header + Image Binary field.</td>
              </tr>
              <tr>
                <td align="left">App Name</td>
                <td align="left">32</td>
                <td align="left">Vendor specific 32 octet string which is set to indicate the name of the application.</td>
              </tr>
              <tr>
                <td align="left">App SCC Branch</td>
                <td align="left">32</td>
                <td align="left">Vendor specific 32 octet string which is set to indicate the source code control system branch ID.</td>
              </tr>
              <tr>
                <td align="left">App SCC Commit</td>
                <td align="left">8</td>
                <td align="left">Vendor specific 8 octet string which is set to indicate the source code control system commit ID.</td>
              </tr>
              <tr>
                <td align="left">App SCC Flags</td>
                <td align="left">4</td>
                <td align="left">Vendor specific 32 bit unsigned integer which is set to indicate the source code control system build flags.</td>
              </tr>
              <tr>
                <td align="left">App Build Date</td>
                <td align="left">16</td>
                <td align="left">Vendor specific 16 octet string which is set to indicate the build date and time of the application image.</td>
              </tr>
              <tr>
                <td align="left">hwid</td>
                <td align="left">32</td>
                <td align="left">32 octet field which is RECOMMENDED to be set to a concatenation of a unique manufacturer ID and product model identifier.</td>
              </tr>
              <tr>
                <td align="left">sub_hwid</td>
                <td align="left">32</td>
                <td align="left">32 octet field which MAY be set for a manufacturer specific purpose, or functionally elided by filling with 0x20 (ASCII space character).</td>
              </tr>
              <tr>
                <td align="left">kernel_rev</td>
                <td align="left">16</td>
                <td align="left">16 octet field which MAY be set for a manufacturer specific purpose, or functionally elided by filling with 0x20 (ASCII space character).</td>
              </tr>
              <tr>
                <td align="left">sub_kernel_rev</td>
                <td align="left">16</td>
                <td align="left">16 octet field which MAY be set for a manufacturer specific purpose, or functionally elided by filling with 0x20 (ASCII space character).</td>
              </tr>
              <tr>
                <td align="left">Reserved</td>
                <td align="left">44</td>
                <td align="left">Pad to 256 octets, octets MUST be set to 0.</td>
              </tr>
              <tr>
                <td align="left"> </td>
                <td align="left"> </td>
                <td align="left">End Header, Begin Image</td>
              </tr>
              <tr>
                <td align="left">Image Binary</td>
                <td align="left">Variable</td>
                <td align="left">Vendor specific image data.</td>
              </tr>
              <tr>
                <td align="left"> </td>
                <td align="left"> </td>
                <td align="left">End Image, Begin Signature</td>
              </tr>
              <tr>
                <td align="left">Signature     Variable</td>
                <td align="left">Vendor specific image signature.</td>
                <td align="left">Calculated over entire content of this structure except the signature and pad fields.</td>
              </tr>
              <tr>
                <td align="left"> </td>
                <td align="left"> </td>
                <td align="left">End Signature, Begin Pad</td>
              </tr>
              <tr>
                <td align="left">Pad</td>
                <td align="left">Variable</td>
                <td align="left">Optional pad field to enable image to fill vendor specific flash memory boundary.  When present, octets MUST be set to 0xFF.</td>
              </tr>
            </tbody>
          </table>
          <t>All multi-octet fields are encoded as little-endian.</t>
        </section>
        <section anchor="firmware-download">
          <name>Firmware Download</name>
          <t>An NMS implements the messaging flow depicted in Figure 3 and Figure 4 to download an image to a group of devices.  Unicast distribution is also supported, with the difference being use of unicast addresses, omission of the GroupMatch TLV and omission of the 'a' query option.</t>
          <figure>
            <name>Firmware Download</name>
            <artset>
              <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/aacaed091f902852e85446d63c393bbf62fc5885/FirmwareLoadA.svg?raw=true"/>
              <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
            </artset>
          </figure>
          <figure>
            <name>Firmware Download (cont)</name>
            <artset>
              <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/aacaed091f902852e85446d63c393bbf62fc5885/FirmwareLoadB.svg?raw=true"/>
              <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
            </artset>
          </figure>
          <t>A firmware download begins with the NMS informing the device group of the meta-data of an image the NMS wishes to download, and the devices subsequently informing the NMS of the images already loaded on the devices.</t>
          <t>The NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
          <ol spacing="normal" type="1"><li>A GroupMatch TLV MUST be included for the desired group.</li>
            <li>The 'a' option MUST be specified to randomize subsequent device responses.</li>
            <li>The request MAY contain an 'r' option to redirect the subsequent TransferResponse.</li>
            <li>The request MUST contain a TranferRequest TLV (meta-data for the file to be downloaded)</li>
            <li>The request MUST contain the Signing TLVs.</li>
          </ol>
          <t>Devices receiving a TransferRequest message:</t>
          <ol spacing="normal" type="1"><li>MUST process the Signing TLVs and the GroupMatch TLV as described in section 2.6.</li>
            <li>MUST wait the specified period when the 'a" option is included.</li>
            <li>MUST issue a NON POST request to &lt;nms-url&gt;/c which MUST contain the TransferResponse TLV.  The &lt;nms-url&gt; MUST be overridden by the 'r' option if specified.</li>
          </ol>
          <t>The NMS MUST proceed with image block transfer when at least one member of the target device group indicates Response Code of OK in the TransferResponse TLV.  Otherwise, the transfer MUST be aborted.</t>
          <t>Images are often multiple 100s of Kilobytes in size and likely require fragmentation into multiple blocks (N) to be transferred to a device.</t>
          <t>For the transfer of each image block, the NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
          <ol spacing="normal" type="1"><li>The request MUST contain the GroupMatch TLV for the desired group.</li>
            <li>The request MUST contain an ImageBlock TLV</li>
            <li>The request MAY contain the Signing TLVs.</li>
          </ol>
          <t>To determine image download progress, the NMS MUST periodically include a DescriptionRequest TLV, requesting the FirmwareImageInfo TLV, in the image block request.  It is RECOMMENDED that the NMS request the FirmwareImageInfo TLV at 10% increments of the image download.  The NMS MUST request the FirmwareImageInfo TLV with the transfer of the last block of the image.</t>
          <t>Devices receiving the image block request message:</t>
          <ol spacing="normal" type="1"><li>MUST process the Signing TLVs and GroupMatch TLVs as described in section 2.6.</li>
            <li>MUST cache the image block for final image assembly.</li>
            <li>When the FirmwareImageInfo TLV is requested, the device MUST wait the specified period when the 'a' option is included and MUST issue a NON POST request to &lt;nms-url&gt;/c which MUST contain the FirmwareImageInfo TLV (meta-data for files loaded on the device). The &lt;nms-url&gt; MUST be overridden by the 'r' option if specified.</li>
          </ol>
          <t>Receipt of the final FirmwareImageInfo TLV enables the NMS to confirm the integrity of the completely downloaded image.</t>
        </section>
        <section anchor="image-activation">
          <name>Image Activation</name>
          <t>The messaging flow for scheduling image activation across a group of devices and cancelling a scheduled image activation are depicted in Figure 5 and described below.  Unicast activation is also supported, with the difference being use of unicast addresses, omission of the GroupMatch TLV and omission of the 'a' query option.</t>
          <figure>
            <name>Image Activation</name>
            <artset>
              <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/0f91f16aec32bee2238dabf5a972169dc4d93c69/ActivationFirmware.svg?raw=true"/>
              <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
            </artset>
          </figure>
          <section anchor="image-load">
            <name>Image Load</name>
            <t>An NMS implements the following message flow to command devices to designate an image as the active executable and the time at which the image is to be activated.</t>
            <t>The NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
            <ol spacing="normal" type="1"><li>A GroupMatch TLV MUST be included for the desired group.</li>
              <li>The 'a' option MUST be specified to randomize subsequent device responses.</li>
              <li>The request MAY contain an 'r' option to redirect the subsequent LoadResponse.</li>
              <li>The request MUST contain a LoadRequest TLV (designating the image and time at which the image is to be activated).</li>
              <li>The request MUST contain the Signing TLVs.</li>
            </ol>
            <t>Devices receiving a LoadRequest message:</t>
            <ol spacing="normal" type="1"><li>MUST process the Signing TLVs and GroupMatch TLVs as described in section 2.6.</li>
              <li>MUST wait the specified period when the 'a" option is included.</li>
              <li>MUST issue a NON POST request to &lt;nms-url&gt;/c which MUST contain the LoadResponse TLV (indicating success or reason for failure). The &lt;nms-url&gt; MUST be overridden by the 'r' option if specified.</li>
            </ol>
          </section>
          <section anchor="cancel-image-load">
            <name>Cancel Image Load</name>
            <t>An NMS implements the following message flow to cancel a previously scheduled image activation.</t>
            <t>The NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
            <ol spacing="normal" type="1"><li>A GroupMatch TLV MUST be included for the desired group.</li>
              <li>The 'a' option MUST be specified to randomize subsequent device responses.</li>
              <li>The request MAY contain an 'r' option to redirect the subsequent CancelLoadResponse.</li>
              <li>The request MUST contain a CancelLoadRequest TLV (designating the image load to be cancelled).</li>
              <li>The request MUST contain the Signing TLVs.</li>
            </ol>
            <t>Devices receiving a CancelLoadRequest message:</t>
            <ol spacing="normal" type="1"><li>MUST process the Signing TLVs and GroupMatch TLVs as described in section 2.6.</li>
              <li>MUST wait the specified period when the 'a" option is included.</li>
              <li>MUST issue a NON POST request to &lt;nms-url&gt;/c which MUST contain the CancelLoadResponse TLV (indicating success or reason for failure). The &lt;nms-url&gt; MUST be overridden by the 'r' option if specified.</li>
            </ol>
          </section>
        </section>
        <section anchor="set-backup-image">
          <name>Set Backup Image</name>
          <t>An NMS implements the following message flow to command a device to designate a stored image as the backup image.</t>
          <figure>
            <name>Set Backup Image</name>
            <artset>
              <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/0f91f16aec32bee2238dabf5a972169dc4d93c69/SetDefaultImage.svg?raw=true"/>
              <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
            </artset>
          </figure>
          <t>The NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
          <ol spacing="normal" type="1"><li>A GroupMatch TLV MUST be included for the desired group.</li>
            <li>The 'a' option MUST be specified to randomize subsequent device responses.</li>
            <li>The request MAY contain an 'r' option to redirect the subsequent SetBackupResponse.</li>
            <li>The request MUST contain a SetBackupRequest TLV (designating the image load to be cancelled).</li>
            <li>The request MUST contain the Signing TLVs.</li>
          </ol>
          <t>Devices receiving a SetBackupRequest message:</t>
          <ol spacing="normal" type="1"><li>MUST process the Signing TLVs and GroupMatch TLVs as described in section 2.6.</li>
            <li>MUST wait the specified period when the 'a" option is included.</li>
            <li>MUST issue a NON POST request to &lt;nms-url&gt;/c which MUST contain the SetBackupResponse TLV (indicating success or reason for failure). The &lt;nms-url&gt; MUST be overridden by the 'r' option if specified.</li>
          </ol>
        </section>
      </section>
      <section anchor="device-commands">
        <name>Device Commands</name>
        <t>Many TLVs served by a device are used by the NMS to interrogate the device for configuration state and operational  status.  There are, however, several TLVs which direct a device to execute internal actions.  Examples of these TLVs are PingRequest and RebootRequest.</t>
        <t>Usage of a command TLVs is illustrated with the following PingRequest example directed at a single device.</t>
        <t>The NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
        <ol spacing="normal" type="1"><li>A GroupMatch TLV MUST NOT be included for the designed device.</li>
          <li>The request MAY contain an 'r' option to redirect the subsequent PingResponse.</li>
          <li>The request MUST contain a PingRequest TLV (describing the Ping action to be performed).</li>
          <li>The request MUST contain the Signing TLVs.</li>
        </ol>
        <t>Devices receiving a PingRequest message:</t>
        <ol spacing="normal" type="1"><li>MUST process the Signing TLVs as described in section 2.6.</li>
          <li>MUST begin the requested Ping operation.</li>
        </ol>
        <t>The NMS will subsequently interrogate the device with one or more GET requests to the device for the  PingResponse TLV.</t>
        <t>Note the specific messaging exchanges vary per the definition of each commands.  Details are provided within <xref target="csmpTlvs"/>.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>Threat models and appropriate mitigations are highly specific to individual CSMP/LPWAN deployments.</t>
      <t>CSMP defines only the NMS signing of outgoing Device messaging using an NMS private key (for Device commands and firmware load). Signing TLVs included in the message payload enable signature verification by a Device using an NMS signing certificate\public key.  The verified signature provides source authentication integrity check of the message incoming to the Device. Lifecycle management of the public/private keypair is out of scope of the specification.</t>
      <t>Where additional security mechanisms are needed (source and integrity checking of Device to NMS communication, confidentially of CSMP messaging, authentication and authorization of CSMP actors, replay protection), additional layer 2, 3, or 4 security mechanisms are utilized to meet security requirements of a specific deployment. Examples include:</t>
      <ol spacing="normal" type="1"><li>Layer 2 802.1X/EAP-TLS is used to provide mutual authentication of Device and NMS as well as distribution of key material to be used with IEEE 802.15.4 frame security (providing confidentially, source authentication, and replay protection).</li>
        <li>Layer 3 VPN may be used to provide confidentially, source authentication, and message integrity for messaging between Device and NMS.</li>
        <li>Layer 4 DTLS may be used to provide confidentially, source authentication, and message integrity for messaging between Device and NMS.</li>
      </ol>
      <t>Specific usage profile details for these additional security mechanisms are out of scope of this specification.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document requires no IANA actions.</t>
    </section>
    <section anchor="contributors">
      <name>Contributors</name>
      <t>This work is based upon the considerable efforts of CSMP's original designer Gilman Tolle (with contributions from Phil Buonadonna, and Sumit Rangwala).  The Editor further acknowledges the contributions made to the content of this document by the following individuals:</t>
      <ol spacing="normal" type="1"><li>Jasvinder Bhasin, Cisco Systems, Inc. (jassi@cisco.com)</li>
        <li>Chris Hett, Landis+Gyr (Chris.Hett@landisgyr.com)</li>
        <li>Johannes van der Horst, MMB Networks (johannes.vanderhorst@mmbresearch.com)</li>
        <li>Klaus Hueske, Renesas (Klaus.Hueske@renesas.com).</li>
        <li>Hideyuki Kuribayashi, ROHM Semiconductor (Hideyuki.Kuribayashi@mnf.rohm.co.jp)</li>
        <li>Kit-Mui Leung, Cisco Systems, Inc. (kml@cisco.com)</li>
        <li>Huimin She, Cisco Systems, Inc. (hushe@cisco.com)</li>
        <li>Li Zhao, Cisco Systems, Inc. (liz3@cisco.com)</li>
      </ol>
    </section>
    <section anchor="appendixA">
      <name>Appendix A Registration Retry Example</name>
      <ol spacing="normal" type="1"><li>Device powers up.</li>
        <li>Device sets interval for 0 to 5 minutes.</li>
        <li>Device wait a random time between 2.5 and 5 minutes.</li>
        <li>Device sends a confirmable registration POST message.</li>
        <li>Device waits the rest of the interval until 5 minutes have passed.</li>
        <li>Device waits a random time between 5 and 10 minutes.</li>
        <li>Device sends the registration message again, with a new CoAP message ID.</li>
        <li>Device waits the rest of the interval until 10 minutes have passed.</li>
        <li>Device waits a random time between 10 and 20 minutes.</li>
        <li>Device sends the registration message again, with a new CoAP message ID.</li>
        <li>Device waits the rest of the interval until 20 minutes have passed.</li>
        <li>Device waits a random time between 20 and 40 minutes.</li>
        <li>Device sends the registration message again, with a new CoAP message ID.</li>
        <li>Device waits the rest of the interval until 40 minutes have passed.</li>
        <li>Device waits a random time between 40 and 60 minutes.</li>
        <li>Device sends the registration message again, with a new CoAP message ID.</li>
        <li>Device waits the rest of the interval until 60 minutes have passed.</li>
        <li>Repeat steps 15, 16, and 17 forever.</li>
      </ol>
    </section>
    <section anchor="appendix-b-change-log">
      <name>Appendix B Change Log</name>
      <section anchor="draft-00-to-01">
        <name>draft 00 to 01</name>
        <ol spacing="normal" type="1"><li>Abstract reworded to clarify multi-vendor aspects of CSMP.</li>
          <li>Introduction reworded to clarify multi-vendor aspects of CSMP.</li>
          <li>OpenAPI definitions are placed in-line.</li>
          <li>Protocol Buffer Definitions are placed in-line.</li>
          <li>Due to IETF author limits, all authors except the Editor have been credited in the Contributors section.</li>
        </ol>
      </section>
      <section anchor="draft-01-to-02">
        <name>draft 01 to 02</name>
        <ol spacing="normal" type="1"><li>Title is now Cisco's CoAP Simple Management Protocol</li>
        </ol>
      </section>
      <section anchor="draft-01-to-02-1">
        <name>draft 01 to 02</name>
        <ol spacing="normal" type="1"><li>"Cisco" added to title as requested.</li>
          <li>There are no IP disclosures to be made for this work. This point has been confirmed by Cisco legal.</li>
        </ol>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>Normative References</name>
      <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119">
        <front>
          <title>Key words for use in RFCs to Indicate Requirement Levels</title>
          <author fullname="S. Bradner" initials="S." surname="Bradner">
            <organization/>
          </author>
          <date month="March" year="1997"/>
          <abstract>
            <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
          </abstract>
        </front>
        <seriesInfo name="BCP" value="14"/>
        <seriesInfo name="RFC" value="2119"/>
        <seriesInfo name="DOI" value="10.17487/RFC2119"/>
      </reference>
      <reference anchor="PB" target="https://developers.google.com/protocol-buffers/docs/proto3">
        <front>
          <title>Protocol Buffers Version 3</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="OPENAPI" target="https://spec.openapis.org/oas/v3.0.0">
        <front>
          <title>OpenAPI Specification v3.0.0</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="CSMPNMS" target="https://github.com/woobagooba/draft-ietf-is-csmp/blob/e0be5a31906eb3e9983e7cc28b24ed9482543784/CsmpNms-1.0.1.yaml">
        <front>
          <title>CSMP NMS Interface</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="CSMPDEV" target="https://github.com/woobagooba/draft-ietf-is-csmp/blob/e0be5a31906eb3e9983e7cc28b24ed9482543784/CsmpDevice-1.0.1.yaml">
        <front>
          <title>CSMP Device Interface</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="CSMPCOMP" target="https://github.com/woobagooba/draft-ietf-is-csmp/blob/e0be5a31906eb3e9983e7cc28b24ed9482543784/CsmpComponents-1.0.yaml">
        <front>
          <title>CSMP Components</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="CSMPMSG" target="https://github.com/woobagooba/draft-ietf-is-csmp/blob/e0be5a31906eb3e9983e7cc28b24ed9482543784/CsmpTLVsPublic.proto">
        <front>
          <title>CSMP Payload Definitions</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174">
        <front>
          <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
          <author fullname="B. Leiba" initials="B." surname="Leiba">
            <organization/>
          </author>
          <date month="May" year="2017"/>
          <abstract>
            <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
          </abstract>
        </front>
        <seriesInfo name="BCP" value="14"/>
        <seriesInfo name="RFC" value="8174"/>
        <seriesInfo name="DOI" value="10.17487/RFC8174"/>
      </reference>
      <reference anchor="RFC7252" target="https://www.rfc-editor.org/info/rfc7252">
        <front>
          <title>The Constrained Application Protocol (CoAP)</title>
          <author fullname="Z. Shelby" initials="Z." surname="Shelby">
            <organization/>
          </author>
          <author fullname="K. Hartke" initials="K." surname="Hartke">
            <organization/>
          </author>
          <author fullname="C. Bormann" initials="C." surname="Bormann">
            <organization/>
          </author>
          <date month="June" year="2014"/>
          <abstract>
            <t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained (e.g., low-power, lossy) networks.  The nodes often have 8-bit microcontrollers with small amounts of ROM and RAM, while constrained networks such as IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs) often have high packet error rates and a typical throughput of 10s of kbit/s.  The protocol is designed for machine- to-machine (M2M) applications such as smart energy and building automation.</t>
            <t>CoAP provides a request/response interaction model between application endpoints, supports built-in discovery of services and resources, and includes key concepts of the Web such as URIs and Internet media types.  CoAP is designed to easily interface with HTTP for integration with the Web while meeting specialized requirements such as multicast support, very low overhead, and simplicity for constrained environments.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="7252"/>
        <seriesInfo name="DOI" value="10.17487/RFC7252"/>
      </reference>
    </references>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+296XIbSZIg/F9meofcqm9N5AwIEuApVldNQyQlcYrXkFRV
9xxWlgASRLYSSFRmghRbXWv9Dvtn12z25fpJPr/izAOApFJVHz1jJSIzMsLD
w8PD3cOPjY2Np0/yeX8S53E6LR5n0WEQT4fRLIL/TIunTwZhEd2l2SM+HqVP
nzx9UsRFAq2O4nyQPsuDo7R3FdzEk1kSBefhNLyLJvBhcJWlRTpIk6dPwn4/
i+4PFzccpoNpOIGuh1k4KjaG89HocWOQT2YbW10cOJ5lh0GRzfOiu7X1HJ+F
WRQeBq+iaZSF0MFDmr29y9L57DA4lTmEMMINTQ/n9/TJ2+gRWg2xQRFl06jY
OMbBsPu8CKfDH8IknQIIj1H+9MksPgz+A4BrBXmaFVk0yuGvxwn+8V/4RTgv
xml2+PRJEGzgfwLAUX4YXLWDY4Q9WIuG6/yc53UVzhN+xU/T7C6cxn8MCwBN
EBrcPOZFNIGBTqeDNjeLJmGcHAazkDDy2wG2aw/SCYIwTbMJfH8fERTXL4+6
nc5z+vvqxSF/XoTZXVQcBuOimOWHm5vD6D5K0lmU5e27NL1LIuxrcybLsNGH
QeDdJqxGzk+3pR9ed7VewQtuGHwH/4EJBNTs8urkond1WjN0PosGbRh6Gs7i
vA3T30zDfPN+u73V3nIGuYQ20E1wAx/Eo3hAKApMw6Ob86uL85uaYe7iYjzv
07Qe0rQf3uF/Npmq4qgYbcQ50dVmP0n7m9FWP9oNtzvPt/ai/nb0/PnBdrQ/
GHQP+t2daPh856C7u7O9f7CzeQSfXEzyjQ5A0Wk/hpPEgRlhCgAoJq1ROIgU
pMcn331+SI+j+3gQNQLLTcrwHl2eX31+gI/SyQz23rRgDFeDbBoF/D8F8/nN
q88P8u3Zd/nVvJ/EgzbtlDK8V+FjkoZDQPUonsZIxTluW2BmwE3N1n36ZGNj
Iwj7eZGFA+JGC7hlsIbdrwdxHszm2SzNI9i4cVIERRoAKPfxMAqSeBQNHgfQ
wcR0AKMGWZSn8wxWfgDgwIjxNBoGp+ltMCSCyOHfWZI+wsMHwF08DRJE6UY+
CJOoFfSBTT7Ew2Jc+hzYKbLgvM1zT5k/hNMgGsEejnF4aD7NZ8BN4fEwmER5
DoAF0XSQDuPpXZDPZ/gS/xwkIfDsAe2o0Xw6INxBg8E4CHOBNEinG/00zPDb
lnoGUI3iu3lGPEM/Be5ezHOYuvQPnDwazDMcqRhHCvRWEBXIdp8+uR0DaoEH
zglrwygfZHEfUION4Vd8N6UZIB9l5pSOaNbtIPA+TeGraVrg0IB4fAQYOT25
fUn4i6b5PG8rCpjEw2ES4a8vcVtm6XBOE3/65Cx9CK7ShygLvse17cHJF1ww
0MHa2dX3vYv1oIgG42mapHcxDKmpIIUpAtbvYOkS6GRGncDQ0wi6vo+LR6IJ
dR7iPGAC07s8WIM1XQ/C2SwRBgwLG9BQgIbHGTxMkkfBACzFPXQ7jPEURRKC
bnI4aOBcDt7GSTqJCqQFpCegy+lbQ0U5LicCBv90tujDb/szGIpG0iQJRz28
KqIpgD6ZzQuYTV6kGVIProOelSbINW6dzop4Ev8RHsDOULDihB+jEACChQuD
HKYLu6QfFgDkYzAYI7mvGzLInVNoeVoIHsYxkGuRDsNH3KnxdGMUR8mQ9yOS
HiA3S9/FwAciQGV3FwggSbAHd/J6P/YfAdzpfNKHycIg9yDhpHCOw4oBZTm4
snZSGNyHGXC6R/wEQC9w5VCcy0LAFhDYHNrP4ftBmMPXiJwoAeLIYpB8HgC0
rEXzu4MVmhdxAh3gIERYtKDOAPkkhN094Eam17XJfAo8YAYjJ/HdmLcgbrb1
NjJxxHQEYBCWhiDiwToMQfCBYYtxWDA6mY0N9Tz7wNlS+OjHeTx4C/jD1kBT
iMrwHmSmsJ/wWiMLQvKM3s2gDTEapnQNXzuoWOkY/79ASXgofHWSFoRmFKBo
d0Mf2CSjtcfhCFDhOcTiDOvNSbQLiKfjA7WnTgucNkiqhJ8ikikXZYAegDpw
1iCBArJgnxFFqH2mEQdTDtuEVIJmFIW4xIjZQTIf8nnTaQeXU8U7YQmONZvM
ivkMRriLcSvRsDiPQTgL+3rtp9MUWDJPi0lgiowatkwXmL/NgC0EtNUg4QBW
LI/VVnEYdjACLNPOwv5Qds+jH+c4Dh4EblPggcOcoJvPhoC4HFeJNyWOA9Bs
t4PzCAnZ4vzt4CrKYjhvBmqdJn4T1Q+BgOPCOSPUaNoCVHlBQ4ZqQMD5TlsA
nWBzTayGOeROA1j5fI4ck/sRTqS+yQJSZxBJQvMwp13ACh5dutkoziYPuOcZ
C20+PmAVgD3wqYkDeRIIbLcAlKEAtaE8+OL8zc3tFy3+N7i4pL+vT/7tzen1
yTH+ffO6d3am/1Atbl5fvjmD90+fyJ/mU5Ahz08ujvlreBp4j857v/+C2coX
l1e3p5cXvbMvcMMh1ZMqyKcnTgswAzRP2wxOUNwfJAAwFx7iRy+OroLOTvD+
vShAP/0Ef/8P+HHQ2d/56SfQDMfRlEdLp8Ad+Ces8CNyYDgIsBM4zZDK4yJM
QP2CIfJx+jANkC0JSrXw5aglep/hJgaOgkcSsIpRnOCJRXR0ZJ1LPXOemg4Z
2v3ubvenn1pybMS5HC7wETIxzTeQQK9Pbm5HoE2yBIVPagU7RTmBMJpRGGeI
0/s4emClPETA+/E0BN5BohiOKCIX8JUc9yCxute3t1eKkmFIOvLfHKtzDvCW
qnMnDybzBA+avDAwAgjXAiEcCOFwmOEb5Jpp/w9w4OTrRj40wiezfpEUZyxP
8xmnMQKN57kS5UoKKgoMIFU7M8TG799fvfjpJ1pbYcGwFyfEfiPiLTA7whcc
yjHQCMKjeCdun36I8imgehDNChJc1KqE2WAcgzSGbJd5IrbXLKClp8M6QM6k
CfQ9iUl+o4OUlsYmDDoogaOVJsgTsegGjjU6sdQmoe55ZavR2SbGpbTu9+9F
jYd9FLOYEysdEfpUfATUgundHLsx48G7yFEucWTkd7qDnE+mL7/kCb4hOK54
vyjGhB/gh+qgR2aJ4gPKbsM4A8TCJuYVx07aQW/Akg4SMnU7SFDdaGnWTHwW
elIrZLNvXGrktRMgi9GjPnL1bgJa1fQJEkSa87ErBwQcvxnsAxSN47fRQ5xH
LesM4rfWcWEfbzg4HALxbJ7gzMx43ijmdBFOQyCGCYi1vDrMdBTNEBdF2kpA
rEa0PISPuSJclk+UToLyD7a9Td+iZG2f8Q6D9cjwmmezCRDPUIex2BAdIP26
vfmXP/93/jgdjLMUBIj8L3/+f7QDEHJYt8sLhSaWKXTvs/ju7rEfDt4yMNhR
buSC3tG3AFJPlpwBiBJUfczMWOzWuFfDyDYgnU2WKgvkJAPGi7Kl6SMewXeD
CBR26SlUQ0p3xEm6aPyjM2sMYm6ACzsdID5FY8K5snBva2st05k6gfXa0JrC
uYecUeyYSKpRQscYQM0SLSNQbWyWJoQye6AJZdUNmVbtocMBsjNopdGv0SYI
ClGDBcqMJyhyBHM4kRKX5KfAoGMg9mn0rnDAWgNuWcCxxHBM1QF0Lq9Pj1nr
+vJLY5SqOWyZ1dB+t7iNYVPIPkJjk9Mv2sFJCEySD+bc+iK3upTjroIBML7k
6MK2hVLyqDd7C4P8HKy9uT7Dj1iPIUlznAJy1l6d3LaCqzf4n8sb+O/xydnJ
7cm6dDYBfbFv2KrFI5h61SDwTu8zLcwahcOWOZHAfb5cxg6fq8B+aHr2zlVn
Q+NBQIsnLf/y5/+bo/AE8tRdpI4R6VkEf2tYY09g0QW0UpEAWOhAcP/15vKi
bF7RizYCahpYQi/uSjgrCIMyrjodzCSAnQi89sl+hzcKcAKo0wKovi/CWFiA
wh34y0cCNi0hIZAWzlKQceoF7gWxAGkrQagXk9AF1CKKKE1xytqrNtjTScUc
+hFZHsisIGKg5ueolCB65TgUfpIoic6wErUXj/ApM0YP1DdZvPE6zeH4xL+u
QBqTv8JizHPFX/82R2MJ2ldIxWg6MUQthMGvFVNBmHIlH9Mh8Lv27//dIz9h
9or2YIzfQZs12oI888zuL0C0kZWSjs7O1pbfQ4bKPBr91lk5vEqACMZpgqKe
bHECgalqaJEHCwrKglchZyrxUnXDO1lp7LZcizKtWQjcYFoM44NI5uZ16MGF
XGoWkjnLh4RUj/fv0ah9m9zntAA7sgBaPicZRLNmhgLtX1MAQs0ZzuoifAfk
gRKE2lC5fTb0NUwCO2tCFUwiZ1xM0YJCB5fVS8xWJzyZAMQLSxBAYkNBJdS0
LsehfLk2TZ1ucHXUGfJl9S1H8P7LAd+PgGLYcww2dAAajuoLvoq8+7AdH2S+
lfwQdQlUhowVCs6J9+/lLgikaqPhKWkWRoVlobbQZeoYmYo0TVB9wml9F2Yx
iE60ZfT+AXYkR4thP6wPFlkMU0MLsG3Q0ZcPloHceUaWjhRmk5KF3HpnpAGj
V1bChIyxBBRNLInv2VZrmXLIxMQmkZxbqc5FQ6BeyTqoWTdyHBAmEksqjOSa
gPHLEjCh7X/B/54+kavHw0AuEnFedGvEazvji9g/8TVOJfG06ZI1QCODUX8s
jSsGGYvUFH0xSzcPRE853efe83XpYUA3c/ik+UqOha6cwPyS/uNwLVxmix8y
3jbmWaLbbwTw6zB4pu7D7mPY/iwZ5g/h3V2UVVyPmRvETYLzGfb09AmwiDGD
sjmQ6za8a+O/qtGI/7tmOgRJOrnHm/l3we3Zd6hyaV0rQWkJrx7OvsuVdK2t
eNwJMju+RtDjbQT/XxaNYG5fbg70xeCmabj54yUB82zpD8JVP8i8D9S/iikZ
YIPgWXdr95n1ux5h+L+bOUjiec7aajHPpiySEl8EYiNMAQoVSrV1lZiYfGEp
O/CJxjZ9S0wYG3zx4xeMXLa+k414GKzBwCDWI0fisyfEzRQN1ysHIrOaXt3q
rtNJDAfMsG1PE/UBQOmhO3XrzmkzBUmw2ADWFYUTr1kAh/04moSlxwHAE12O
Kp7r9VS7AdiBvw2G6QRUlNzZDngrbtYftoRDDwxGvol4BV78EuiXcfTss0Mg
S/AssMhuZ2urgexehEOl0LedjzoNH72ZsvML3qy5X3UXDMUCo/vNdsM3yClQ
Ahil8+mwZQ77B9h08DQukPmf375xe9xp6PFC9dY2DZyPmzbpOZ9oJJPwhnDo
mf+egfBczRRBVMNNTbNSlxbujQdJFT8Kmow1QNRBUOYdYWUm/bkGH9rfa/Eo
MDfOdEamGRwZ60G7bcEMKs8N6TV4o/CXP/9vPKDQDMbqKqsKuWpgfde1vvsu
TOIh3iRb38csBuhPSTorUAS8x9ZtC+UgiL/Ce47zsIBTG/sAah68VV3IfFHq
wmtpuZvhmxE8/rQCDqxm8DYqAhET8PrFAniHdTvCDV8p8AIMP+qE+YQHBm3B
F+nw0aI+h3gupxHbKTNnGihpsfTh3H2pLpQeTL5zkXlexXqXZLw1bPfnZq04
UTyPblOPu9Yctk0MjPA3Du+RruCw8knhr51rvkyzfjwcRtNfD1vcHGy+L+B4
GqIZ4acPkR7ldhR5pysi2qB+yCbWYH0WQfEjRMTrKrEO8AEYeKnFNVL7ovge
DUN55XL8XFLXLyVb/VXsVR9ZHy/xVPX1mTe538uX8g8OFLEfCxkCYr5vmuEV
JyoB6HhF+jyaPPWn+P8B2xXNzjHmDBEE1F1amz4wpHLIQJQYgCiBC/nMvymh
i00nbIDStgh6mlonsKNNtYPvUedR8lbM5i3qoqWM9nKZJR6hJL7JdUh5Q6Nb
EJqHkRb0bR3fKaRT65xvBXHhCImsjxmTiB6XLWlBlGWod4/TeTJktwo2WBga
jwErP+IaqAfsvP6jLaiwPDEKk1wLFCWmwMEEwEKAa9cINC/JSILE8Rtkwced
b/6Z/+iqP7a/+WeQVhV1hUuuZE/tQV4VUTxbNpr1ReURXirYi9cqNUGDpLrB
sYXvhxCQn8EbOIvILoUsl6V5vBtL5cJwVuA1GRDSF+EXaKJK0cbVj0ZIRLw8
dC8nrnQ4GG0Z+OA300mOtpxvNgdyL0CWctSlybmRdgZ9Z7wt7JttsaK1gv68
oEslskr2LQsh3apXf7WIIMIPIwhEFBwINRRxa1BM5uJ6FC9Erbrv5JGyJUnn
Wmtevd9rTOmbEUVYjqlv6JhDaD2rFlP4BXQHPC9YQ+eZLCYIrWVeX4T17GO2
IfNpfqdlnhpFFd6I6YYBfxTFMjg9dmBEk6ALou65DCpqIMGyBMI2W8eW74RX
iCH/YpIbQz42+AxWfBjm01vxKy3mzrlnTPjabF/yXWTjfWi5WdD1gBY2gzX4
E7kF+oyxFK34Hdv+LF+NED00hOLZH2cUwqfmUAFKXm9/vIWeqXIVG32ZGtof
Y5gnmmy2zHuRPasa5mWLt3XrDzbLA72TTX6rbJPPDhfZn47LpKQZlDZBXRtT
BLFBsQmT14fQ6rXVgTQXq1MewZnqhPOsez3S9pQuGZ7TY/ZHmGcZfHCLhyfL
QAiaWHxwN7LbhX10B2vh4O00fQASu0PbdLM15W/DFFKBe8TWImtIk7nAuWuw
SENvdC0WtAN3qre2jLkUsUjbemr5a9dUq6brLNBC683xnOdn7Y+HMDfuZ8Ba
nBccXjRI76YU6YJX6Vp3tVwV+bBjUyyoAkoTEa9rvYzLm4zO8RzBCLUbceo5
PQbOjiOQjql5oDbTVA3Pjfzx9f3iIl6WM/+aKZ9+ORBb2sNeb4cWBoFMlbct
nJA1B6TNCnsWd6zgQCjfrU3xdLS4ENrXyQHvPo2HoLThzsLzxmozIT1jp721
jYsF/+4gpQ/FUQIP/zHAiOdmDqfnFEULs4w+Py1vOmUs7ZGxFA6MJt5MW7iW
QZPbkMWXEXWy2kB8Td3+PbBiQjQQqCD6/KaZCXcazVT25rAZL1HeGpDaupbU
1si3qVK60Z8iI1UitBagYU6TdGqF0bZFisYnP5mINxbTlH0id/x4BtwHXj6k
ohct8vhmtc50wffJ1bI1Rh9/lHDNk/5SezGJXBfEmNEANbAMhC/tHYjsR7UE
kTMQYigLopYoWh2RXBZSGVGGbmgw+gpGyx2Z81mHBDrHnoUNhNKEasgIGhG5
GUPoQp1WrvspRiMjb6ENDo1j8f83xmkEDQ3mOxU6hSuaRwWqDMYqAKzGumGv
Nn+XbqWXa/46zIYY0HQM81nyEy2Z0zeG+TR/dU1KE8aYkU647FhXPT4Glm5/
nc6LZXu3mO2SX1xfnd3I6jxbcuJvMCp26fkq3Ao9rDZtgE59t+yynEZRdLDV
7by7oaDtZceTrzqxfLbscN9f9S5WGun49dHV3hH5zK/0HXBFvVDLf/EhOHi3
4jjqu92dF1EITB8HXfZbWODTKYd9L/nFSwlYPJ2Akn4KTHXppbp5zEGijopV
4DufJStOh5svCRIRwyoDnKAQypxn6XnTN6uwUPpgVcbGH60wFUlAcJ0m0dJT
ueDV0/egNdrsKoeahEuIsKLco8s2DutORwn4H3KaKdXrIxi6+t9nOg9/nnNt
Vea0Mp+1D7ayCr8kx1C6ypJjkiMS8aQPFSGqyNoYAT4xXZeDtD6Uqj8IUb0c
/bs+GFXL7TaNJ2EPy5PndcTKg/nQiNGO2vYBq2K8rqzrG+sDUuYoE4ekZ8jj
Ys7RWMEco1C03xroOINwGqSDwTwr+eZdeXYNMfTXOUmTX96Rb/mobbzdDnr2
TQEbSGQMlW+k9NWO95VrPqke62dUF1bkx5V08XPskM/Etv/2lJhfsw6z3HdX
MA/F9VcW3T9K6fmHyvOrVHlWFSvO0odZOD0PB6uAxR9djR9XRMUtBieOomxF
ij1Lw+GKnxwhypIP+BBm9CIcvJ3PVvyurGr++hTNz6Bn/qxapsBUJVqtbqAs
S1d11skjFS740ebJD5YIVj+0+GBYaYyon6YrwrU61/1QLmriNj4bj1oFEbTt
XyTp4O1KPG2VIWyWtpo0qTnaSp/5MTerfrdq+1WPb8sktDTbJFb7oZYt4TsU
GLKUgk13H+Rf8iHM4ldqjFlNPv/M4vAvbV5e1TK51L6PsuLFHC/pnynKUrTY
S5KlKBHaBVYym6FLlIHOBMLpRDiT7pBi8tGcgJkaKW1DGkteXzT/mK9T+JmR
x+YgTRLld6eG4uRqf8/q+Qcblv6h1/+d6/WrEMsHWAI+ROL7h/Xgb956sJKt
nb44Aca7LAGtLMj/lVg0/r61hX9Ydv7qFKgPsTytJrmurqKVZN2fxSC2oiL4
N2M/+3gvDf5Xx95eUsa4YA1k//VgZmJSOFk5RtzYWe1wiDhRN3Vf+vkxc+VL
XlDUTPJoJaFTn2gXUApXNX6ebQcwpTdoNYPjvTi/HT9TukJDk7J+0NBY6wSN
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
JsQBAA==

-->

</rfc>
