<?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.7.29 (Ruby 3.2.3) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-duffy-csmp-09" category="info" submissionType="independent" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.28.1 -->
  <front>
    <title abbrev="CoAP Simple Management Protocol">Cisco's CoAP Simple Management Protocol</title>
    <seriesInfo name="Internet-Draft" value="draft-duffy-csmp-09"/>
    <author initials="P." surname="Duffy (ed)" fullname="Paul Duffy">
      <organization>Cisco Systems, Inc.</organization>
      <address>
        <email>paduffy@cisco.com</email>
      </address>
    </author>
    <date year="2025" month="June" day="13"/>
    <area>General</area>
    <workgroup>Independant Submission</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 51?>

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

<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 Cisco's 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>
          <t>Onboarding.  Device startup registration and capabilities announcement with an NMS.</t>
        </li>
        <li>
          <t>Configuration management. Device acquisition of configuration from the NMS. Subsequent NMS configuration reads and updates to the device.</t>
        </li>
        <li>
          <t>Metrics reporting. Periodic device metrics reporting to the NMS. NMS on-demand metrics requests to a device.</t>
        </li>
        <li>
          <t>NMS commanded device operations. NMS command issuance to a single device or group of devices.</t>
        </li>
        <li>
          <t>Secure device firmware update.</t>
        </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>
          <t>The basic concepts of RESTful architecture.</t>
        </li>
        <li>
          <t>The operation, message formats, and terminology of CoAP <xref target="RFC7252"/>.</t>
        </li>
        <li>
          <t>Protocol Buffers <xref target="PB"/>, which is used to describe and encode CSMP message payloads.</t>
        </li>
        <li>
          <t>OpenAPI <xref target="OPENAPI"/> is the interface definition language used to define CSMP Device and NMS interfaces.</t>
        </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>
            <t>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.</t>
          </li>
          <li>
            <t>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).</t>
          </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>
            <t>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"/>.</t>
          </li>
          <li>
            <t>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).</t>
          </li>
          <li>
            <t>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"/>.</t>
          </li>
          <li>
            <t>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).</t>
          </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://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://TLVsGETFromDevice'
                - $ref: 'https://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, in order)
        1. Signature - verify the message signature.
        2. SignatureValidity - verify if the signature is still valid. 
        3. GroupMatch - confirm device belongs indicated group.
        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://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://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://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://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://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://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>
              <t>/o</t>
            </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>
          <t>The message payloads of CSMP requests and responses MUST be formatted as a sequence of Type-Length-Value objects.</t>
          <section anchor="standard-tlvs">
            <name>Standard TLVs</name>
            <t>Standard TLVs have 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="vendor-defined-tlv">
            <name>Vendor Defined TLV</name>
            <t>The Vendor Defined TLV follows the same format as a Standard TLV with the following important extensions:</t>
            <t>The Type field MUST be set to 127.</t>
            <t>The Value field contains one or more SubTLVs of the format</t>
            <artwork><![CDATA[
| SubType | Length | Value|
]]></artwork>
            <t>The SubType field is an unsigned integer containing a vendor defined TLV ID and MUST be encoded as a Protocol Buffers varint.  The SubTypes 0 through 15 (inclusive) are reserved for use by this specification.  SubTypes 16 onward are available for vendor defined usage.</t>
            <t>The Length field is an unsigned integer containing the number of octets occupied by the Value field of the SubTLV.  The Length field MUST be encoded as a Protocol Buffers varint.</t>
            <t>The Value field MUST contain the Protocol Buffer encoded SubTLV value defined by the vendor.</t>
            <t>SubType 1 is reserved by this specification to indicate Vendor Private Enterprise Number (PEN).  SubType 1 MUST be the first SubTLV present in the TLV.  The corresponding Value field MUST be set to the vendor's PEN.</t>
            <t>Registration Procedures for Private Enterprise Numbers are described in <xref target="PEN"/>.</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.

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;
option java_package = "com.cisco.cgms.protocols.csmp.tlvs";

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

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

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

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

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

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

// TLV 7
// Session ID used by NMS to track device CSMP messaging.
// Assigned by the NMS, 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 requested TLV values will be sent to the NMS asynchronously.
// Class:: Generic
//

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

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

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

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

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

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

  oneof intervalHeartBeat_present {
    // The periodic time interval at which the device sends the 
    // tlvidHeartBeat set of tlvs.
    uint32 intervalHeartBeat = 3; 
  }
  // The tlvs to be sent on the heartbeat interval.
  repeated string tlvidHeartBeat = 4; 
}

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

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

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

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

// 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 {
    // posix timestamp.
    uint32 posix = 1; 
  }
  oneof iso8601_present {
    // iso 8601 timestamp.
    string iso8601 = 2; 
  }
  oneof source_present {
    // time service from:
    // local=1, admin=2, network=3.
    uint32 source = 3; 
  }
}

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

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

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

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

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

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

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

message IPRouteRPLMetrics {
  oneof inetCidrRouteIndex_present {
    // refers to a particular index in the IPRoute table.
    int32 inetCidrRouteIndex = 1; 
  }
  oneof instanceIndex_present {
    // Corresponding RPL instance of this route.
    int32 instanceIndex = 2; 
  }
  oneof rank_present {
    // advertised rank.
    int32 rank = 3; 
  }
  oneof hops_present {
    // Not currently used, future use of hops metric.
    int32 hops = 4; 
  }
  oneof pathEtx_present {
    // advertised path ethx.
    int32 pathEtx = 5;  
  }
  oneof linkEtx_present {
    // next-hop link ETX.
    int32 linkEtx = 6;  
  }
  oneof rssiForward_present {
    // forward RSSI value (relative to the device).
    sint32 rssiForward = 7; 
  }
  oneof rssiReverse_present {
    // reverse RSSI value (relative to the device).
    sint32 rssiReverse = 8; 
  }
  oneof lqiForward_present {
    // forward LQI value.
    int32 lqiForward = 9; 
  }
  oneof lqiReverse_present {
    // reverse LQI value.
    int32 lqiReverse = 10; 
  }
  oneof dagSize_present {
    // nodes count of this pan (number of joined devices).
    uint32 dagSize = 11; 
  }
  reserved 12 to 17;
  // forward phy mode value.
  PhyModeInfo phyModeForward = 18; 
  // reverse phy mode value.
  PhyModeInfo phyModeReverse = 19; 
}

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

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

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

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

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

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

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

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

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

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

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

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

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

  oneof dot1xEnabled_present {
    // Is dot1x enabled?
    bool dot1xEnabled = 5; 
  }
  oneof securityLevel_present {
    // Security level
    uint32 securityLevel = 6; 
  }
  oneof rank_present {
    uint32 rank = 7;
  }
  oneof beaconValid_present {
    // Is beacon valid (where invalid means receipt has 
    // timed-out/contact with PAN was lost)?  (PC frame for Wi-SUN)
    bool beaconValid = 8; 
  }  
  oneof beaconVersion_present {
    // Beacon version (Wi-SUN PAN version).
    uint32 beaconVersion = 9; 
  }
  oneof beaconAge_present {
    // Last heard beacon message in seconds  (PC frame for Wi-SUN).
    uint32 beaconAge = 10; 
  }
  oneof txPower_present {
    // Transmit power value in dbm
    int32 txPower = 11; 
  }
  oneof dagSize_present {
    // Count of nodes joined to this PAN
    uint32 dagSize = 12; 
  }
  oneof metric_present {
    // Metric to border router (Wi-SUN Routing Cost)
    uint32 metric = 13; 
  }
  oneof lastChanged_present {
    // seconds since last PAN change (PAN ID change).
    uint32 lastChanged = 14; 
  }
  oneof lastChangedReason_present {
    // 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.
    uint32 lastChangedReason = 15; 
  }
  oneof demoModeEnabled_present {
    // Is demo mode enabled?
    bool demoModeEnabled = 16; 
  }
  oneof txFec_present {
    // Is FEC enabled?
    bool txFec = 17; 
  }
  oneof phyMode_present {
    // Phy operating mode value (as defined in section 5.2 of 
    // PHYWG Wi-SUN PHY Technical Specification - Amendment 1VA8)
    uint32 phyMode = 18; 
  }
  reserved 19;
  // Multi phy mode and transmit power value for adaptive modulation.
  repeated PhyModeInfo phyModeList = 20; 
}

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

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

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

message NMSSettings {
  oneof regIntervalMin_present {
    // Min interval of register trickle timer in seconds.
    uint32 regIntervalMin = 1; 
  }
  oneof regIntervalMax_present {
    // Max interval of register trickle timer in seconds.
    uint32 regIntervalMax = 2; 
  }
  reserved 3 to 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 {
    // True if device is registerd with NMS.
    bool registered = 1; 
  }
  oneof NMSAddr_present {
    // IPv6 address of NMS.
    bytes NMSAddr = 2; 
  }
  oneof NMSAddrOrigin_present {
    // Mechanism used to get NMS's IPv6 address.
    // (fixed/DHCPv6/redirect by TLV6 ... values).
    uint32 NMSAddrOrigin = 3;   
  }
  oneof lastReg_present {
    // Time since last succesful registration in seconds.
    uint32 lastReg = 4; 
  }
  oneof lastRegReason_present {
    // 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.
    uint32 lastRegReason = 5; 
  }
  oneof nextReg_present {
    // Time to next registration attempt in seconds.
    uint32 nextReg = 6; 
  }
  oneof NMSCertValid_present {
    // True if NMS certificate is valid.
    bool NMSCertValid = 7; 
  }
}

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

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

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

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

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

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

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

// 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 the
// 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 NMS to the device.  Note that a GroupAssign 
// should not be sent over 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 {
    // Count of all received frames.
    uint32 inFrames = 1; 
  }
  oneof inFramesBeacon_present {
    // Count of received beacon frames (Note: Wi-SUN does 
    // not use Beacon frames).
    uint32 inFramesBeacon = 2; 
  }
  oneof inFramesData_present {
    // Count of received data frames.
    uint32 inFramesData = 3; 
  }
  oneof inFramesAck_present {
    // Count of received ack frames.
    uint32 inFramesAck = 4; 
  }
  oneof inFramesCmd_present {
    // Count of received command frames.
    uint32 inFramesCmd = 5; 
  }
  oneof inFramesAsync_present {
    // Count of received async frames.
    uint32 inFramesAsync = 6; 
  }
  oneof inFramesBcast_present {
    // Count of received broadcast frames.
    uint32 inFramesBcast = 7; 
  }
  oneof inFramesUcast_present {
    // Count of received unicast frames.
    uint32 inFramesUcast = 8; 
  }
  oneof outFrames_present {
    // Count of all sent out frames.
    uint32 outFrames = 9; 
  }
  oneof outFramesBeacon_present {
    // Count of sent out beacon frames.
    uint32 outFramesBeacon = 10; 
  }
  oneof outFramesData_present {
    // Count of sent out data frames.
    uint32 outFramesData = 11; 
  }
  oneof outFramesAck_present {
    // Count of sent out ack frames.
    uint32 outFramesAck = 12; 
  }
  oneof outFramesCmd_present {
    // Count of sent out command frames.
    uint32 outFramesCmd = 13; 
  }
  oneof outFramesAsync_present {
    // Count of sent out async frames.
    uint32 outFramesAsync = 14; 
  }
  oneof outFramesBcast_present {
    // Count of recesent outived broadcast frames.
    uint32 outFramesBcast = 15; 
  }
  oneof outFramesUcast_present {
    // Count of sent out unicast frames.
    uint32 outFramesUcast = 16; 
  }
}

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

message LowpanMacStats {
  // Total counter of lowpan mac layer.
  LowpanMacCounters total = 1;  
  // RF counter of lowpan mac layer.
  LowpanMacCounters rf = 2;     
  reserved 3;
}

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

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

// TLV 65 - 75 are for firmware upgrade.
// Usage is detailed in main body of the CSMP specification.
//
message HardwareInfo {
  oneof hwId_present {
    // Hardware information, max len 32.
    string hwId = 1; 
  }
  oneof vendorHwId_present {
    // Sub hardware information, max len 32.
    string vendorHwId = 2; 
  }
}

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

message TransferRequest {
  // Hardware information.
  HardwareInfo hwInfo = 1; 
  oneof fileHash_present {
    // SHA256 hash value of image file, len 32.
    bytes fileHash = 2; 
  }
  oneof fileName_present {
    // Name of image file, max len 128.
    string fileName = 3; 
  }
  oneof version_present {
    // Version number, max len 32.
    string version = 4; 
  }
  oneof fileSize_present {
    // Total size of image file.
    uint32 fileSize = 5; 
  }
  oneof blockSize_present {
    // Block size of image file.
    uint32 blockSize = 6; 
  }
  reserved 7 to 11;
}

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

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

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

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

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

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

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

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

/* ResponseCodes

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// 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 {
    // Reset counters.
    uint32 total = 1; 
  }
  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 {
    // Session index.
    int32 sessionIndex = 1;  
  }
  oneof protocol_present {
    // 6 TCP, 
    // 17 UDP.
    uint32 protocol = 2; 
  }
  oneof localAddress_present {
    //IPv4 or IPv6 local address.
    bytes localAddress = 3; 
  }
  oneof localPort_present {
    // Local port number.
    uint32 localPort = 4; 
  }
  oneof peerAddress_present {
    // IPv4 or IPv6 peer address.
    bytes peerAddress = 5; 
  }
  oneof peerPort_present {
    // Peer port number.
    uint32 peerPort = 6; 
  }
  oneof state_present {
    uint32 state = 7;
  }
  oneof role_present {
    // 1 - server/incoming, 
    // 2 - client/outgoing.
    uint32 role = 8; 
  }
}

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

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

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

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

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

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

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

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

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

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

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

message DHCP6Stats {
  oneof clientFramesSolicit_present {
    // Count of sent solicit packets.
    uint32 clientFramesSolicit = 1; 
  }
  oneof clientFramesAdvertise_present {
    // Count of sent advertise packets.
    uint32 clientFramesAdvertise = 2; 
  }
  oneof clientFramesRequest_present {
    // Count of sent request packets.
    uint32 clientFramesRequest = 3; 
  }
  oneof clientFramesReply_present {
    // Count of sent reply packets.
    uint32 clientFramesReply = 4; 
  }
  oneof relayFramesForward_present {
    // Count of DHCP relay packets forwarded by node.
    uint32 relayFramesForward = 5; 
  }
  oneof relayFramesReply_present {
    // Count of DHCP relay packets relayed by node.
    uint32 relayFramesReply = 6; 
  }
}


]]></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>
            <t>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.</t>
          </li>
          <li>
            <t>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.</t>
          </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>
              <t>ImageBlock</t>
            </li>
            <li>
              <t>DescriptionRequest</t>
            </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>
            <t>A device MUST process the message if the contained GroupMatch TLV matches a group to which the device is assigned.</t>
          </li>
          <li>
            <t>A device MUST ignore the message if the message does not contain a GroupMatch TLV.</t>
          </li>
          <li>
            <t>A device MUST ignore the message if the GroupMatch TLV does not match a device group assignment.</t>
          </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>
            <t>If present, the Signature and SignatureValidity TLVs MUST be processed first.</t>
          </li>
          <li>
            <t>If present, the GroupMatch TLV MUST be processed next.</t>
          </li>
          <li>
            <t>The remaining payload TLVs MUST be processed in the order they appear in the payload.</t>
          </li>
          <li>
            <t>TLVs within a payload SHOULD NOT be duplicated.  In the case of a duplicate TLV, the last payload instance of TLV MUST be used.</t>
          </li>
          <li>
            <t>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"/>.</t>
          </li>
          <li>
            <t>TLV specific error handling is described in the OpenAPI definitions.</t>
          </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="ascii-art"><![CDATA[
                                                   
,--------.   ,---------.   ,-------------.   ,-----.   ,------.
| *start |-->| Unheard |-->| Registering |-->| Up  |-->| Down |
|        |   |         |   |             |<--|     |<--|      |
`--------'   `---------'   |             |   `-----'   |      |
                           |             |<------------|      |
                           `-------------'             `------'

    ]]></artwork>
          </artset>
        </figure>
        <ol spacing="normal" type="1"><li>
            <t>A device pre-populated into the NMS prior to deployment exists in the Unheard state.</t>
          </li>
          <li>
            <t>Upon receipt of a device registration request, the NMS records the device's presence on the network and the device enters the Registering state. The NMS responds with a Registration ACK payload containing configuration for the device.</t>
          </li>
          <li>
            <t>The device transitions to the Up state upon NMS receipt of a device metrics report (indicating device configuration was successful).   This is the normal operating state of a healthy device.</t>
          </li>
          <li>
            <t>If subsequent metrics reports are lost (poor network conditions, device failure, etc.), the device transitions to the Down state. NMS receipt of a new metrics report transitions the device back to the Up state.</t>
          </li>
          <li>
            <t>From the Up or Down state, a device may issue new registration requests due to a variety of reasons discussed below.</t>
          </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>
            <t>A device MUST register when the device reboots (power cycled or receipt of RebootRequest TLV from the NMS).</t>
          </li>
          <li>
            <t>A device MUST register when its IP address has changed (usually indicating a network re-join).</t>
          </li>
          <li>
            <t>A device MUST register if its mesh parent has changed (mesh networks only).</t>
          </li>
          <li>
            <t>A device MUST register if it detects the NMS IP address has changed.</t>
          </li>
          <li>
            <t>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.</t>
          </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>
              <t>tIntervalMin defaults to 300 seconds (5 minutes). Also configurable via TLV 42/regIntervalMin field.</t>
            </li>
            <li>
              <t>tIntervalMax defaults to 3600 seconds (1 hour). Also configurable via TLV 42/regIntervalMax field.</t>
            </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 new CoAP CON POST request 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 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>
              <t>DeviceID (primary identifier of the device).</t>
            </li>
            <li>
              <t>CurrentTime (used to validate device local time).</t>
            </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>
              <t>SessionID</t>
            </li>
            <li>
              <t>GroupInfo (one per group)</t>
            </li>
            <li>
              <t>ReportSubscribe</t>
            </li>
          </ol>
          <t>The following Device Information TLVs MUST be included in the registration POST:</t>
          <ol spacing="normal" type="1"><li>
              <t>HardwareDesc</t>
            </li>
            <li>
              <t>InterfaceDesc (one per interface)</t>
            </li>
            <li>
              <t>IPAddress (one per address)</t>
            </li>
            <li>
              <t>NMSStatus (reason for the registration operation)</t>
            </li>
            <li>
              <t>WPANStatus</t>
            </li>
            <li>
              <t>RPLSettings</t>
            </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>
              <t>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.</t>
            </li>
            <li>
              <t>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.</t>
            </li>
            <li>
              <t>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.</t>
            </li>
            <li>
              <t>Signing TLVs MUST be included.</t>
            </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>
              <t>NMSRedirectRequest MUST be included.</t>
            </li>
            <li>
              <t>Signing TLVs MUST be included.</t>
            </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>
              <t>The registration ACK to the device indicates code 2.03 (Valid) and message ID match is confirmed as described in CoAP.</t>
            </li>
            <li>
              <t>The ACK response body does not contain an NMSRedirectRequest TLV.</t>
            </li>
            <li>
              <t>The first metrics report from the device is received by the NMS.</t>
            </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>
            <t>A primary metrics report using the interval and TLV ID set.</t>
          </li>
          <li>
            <t>A secondary metrics report using the heartbeat interval and heartbeat TLV ID set.</t>
          </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>
            <t>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.</t>
          </li>
          <li>
            <t>tlvList (the list of TLVs the device MUST report) is designated by the tlvId field of the ReportSubscribe TLV.</t>
          </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>
            <t>tMetricsInterval is designated by the intervalHeartBeat field of the ReportSubscribe TLV.</t>
          </li>
          <li>
            <t>tlvList is designated by the tlvIdHeartBeat field of the ReportSubscribe TLV.</t>
          </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>
            <t>InterfaceMetrics</t>
          </li>
          <li>
            <t>GroupInfo</t>
          </li>
          <li>
            <t>FirmwareImageInfo</t>
          </li>
          <li>
            <t>Uptime</t>
          </li>
          <li>
            <t>LowpanPhyStats</t>
          </li>
          <li>
            <t>DifServMetrics</t>
          </li>
          <li>
            <t>ReportSubscribe</t>
          </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>
            <t>SessionID</t>
          </li>
          <li>
            <t>CurrentTime</t>
          </li>
          <li>
            <t>The TLVs from tlvList. The entirety of all table entries MUST be included.</t>
          </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 required metrics TLVs.
    Wait 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>
            <t>Firmware download.  A new image is placed on one or more members of a device group.</t>
          </li>
          <li>
            <t>Image load.  Activate an image on one or more members of a device group at a scheduled time.</t>
          </li>
          <li>
            <t>Set backup image.  Optional designation of an image to be used when load of all other images fails.</t>
          </li>
        </ol>
        <t>A device should implement the following mechanisms in support of firmware update:</t>
        <ol spacing="normal" type="1"><li>
            <t>It is RECOMMENDED that vendors implement digital signing of images prior to image release to production.</t>
          </li>
          <li>
            <t>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.</t>
          </li>
          <li>
            <t>A device MUST be capable of storing at least two firmware images: the running image and at least one additional image.</t>
          </li>
          <li>
            <t>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.</t>
          </li>
          <li>
            <t>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).</t>
          </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>
              <t>A GroupMatch TLV MUST be included for the desired group.</t>
            </li>
            <li>
              <t>The "a" option MUST be specified to randomize subsequent device responses.</t>
            </li>
            <li>
              <t>The request MAY contain an "r" option to redirect the subsequent TransferResponse.</t>
            </li>
            <li>
              <t>The request MUST contain a TranferRequest TLV (meta-data for the file to be downloaded)</t>
            </li>
            <li>
              <t>The request MUST contain the Signing TLVs.</t>
            </li>
          </ol>
          <t>Devices receiving a TransferRequest message:</t>
          <ol spacing="normal" type="1"><li>
              <t>MUST process the Signing TLVs and the GroupMatch TLV as described in section 2.6.</t>
            </li>
            <li>
              <t>MUST wait the specified period when the "a" option is included.</t>
            </li>
            <li>
              <t>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.</t>
            </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>
              <t>The request MUST contain the GroupMatch TLV for the desired group.</t>
            </li>
            <li>
              <t>The request MUST contain an ImageBlock TLV</t>
            </li>
            <li>
              <t>The request MAY contain the Signing TLVs.</t>
            </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>
              <t>MUST process the Signing TLVs and GroupMatch TLVs as described in section 2.6.</t>
            </li>
            <li>
              <t>MUST cache the image block for final image assembly.</t>
            </li>
            <li>
              <t>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.</t>
            </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>
                <t>A GroupMatch TLV MUST be included for the desired group.</t>
              </li>
              <li>
                <t>The "a" option MUST be specified to randomize subsequent device responses.</t>
              </li>
              <li>
                <t>The request MAY contain an "r" option to redirect the subsequent LoadResponse.</t>
              </li>
              <li>
                <t>The request MUST contain a LoadRequest TLV (designating the image and time at which the image is to be activated).</t>
              </li>
              <li>
                <t>The request MUST contain the Signing TLVs.</t>
              </li>
            </ol>
            <t>Devices receiving a LoadRequest message:</t>
            <ol spacing="normal" type="1"><li>
                <t>MUST process the Signing TLVs and GroupMatch TLVs as described in section 2.6.</t>
              </li>
              <li>
                <t>MUST wait the specified period when the "a" option is included.</t>
              </li>
              <li>
                <t>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.</t>
              </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>
                <t>A GroupMatch TLV MUST be included for the desired group.</t>
              </li>
              <li>
                <t>The "a" option MUST be specified to randomize subsequent device responses.</t>
              </li>
              <li>
                <t>The request MAY contain an "r" option to redirect the subsequent CancelLoadResponse.</t>
              </li>
              <li>
                <t>The request MUST contain a CancelLoadRequest TLV (designating the image load to be cancelled).</t>
              </li>
              <li>
                <t>The request MUST contain the Signing TLVs.</t>
              </li>
            </ol>
            <t>Devices receiving a CancelLoadRequest message:</t>
            <ol spacing="normal" type="1"><li>
                <t>MUST process the Signing TLVs and GroupMatch TLVs as described in section 2.6.</t>
              </li>
              <li>
                <t>MUST wait the specified period when the "a" option is included.</t>
              </li>
              <li>
                <t>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.</t>
              </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>
              <t>A GroupMatch TLV MUST be included for the desired group.</t>
            </li>
            <li>
              <t>The "a" option MUST be specified to randomize subsequent device responses.</t>
            </li>
            <li>
              <t>The request MAY contain an "r" option to redirect the subsequent SetBackupResponse.</t>
            </li>
            <li>
              <t>The request MUST contain a SetBackupRequest TLV (designating the image load to be cancelled).</t>
            </li>
            <li>
              <t>The request MUST contain the Signing TLVs.</t>
            </li>
          </ol>
          <t>Devices receiving a SetBackupRequest message:</t>
          <ol spacing="normal" type="1"><li>
              <t>MUST process the Signing TLVs and GroupMatch TLVs as described in section 2.6.</t>
            </li>
            <li>
              <t>MUST wait the specified period when the "a" option is included.</t>
            </li>
            <li>
              <t>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.</t>
            </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>
            <t>A GroupMatch TLV MUST NOT be included for the designed device.</t>
          </li>
          <li>
            <t>The request MAY contain an "r" option to redirect the subsequent PingResponse.</t>
          </li>
          <li>
            <t>The request MUST contain a PingRequest TLV (describing the Ping action to be performed).</t>
          </li>
          <li>
            <t>The request MUST contain the Signing TLVs.</t>
          </li>
        </ol>
        <t>Devices receiving a PingRequest message:</t>
        <ol spacing="normal" type="1"><li>
            <t>MUST process the Signing TLVs as described in section 2.6.</t>
          </li>
          <li>
            <t>MUST begin the requested Ping operation.</t>
          </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>
          <t>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).</t>
        </li>
        <li>
          <t>Layer 3 VPN may be used to provide confidentially, source authentication, and message integrity for messaging between Device and NMS.</t>
        </li>
        <li>
          <t>Layer 4 DTLS may be used to provide confidentially, source authentication, and message integrity for messaging between Device and NMS.</t>
        </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>
          <t>Jasvinder Bhasin, Cisco Systems, Inc. (jassi@cisco.com)</t>
        </li>
        <li>
          <t>Chris Hett, Landis+Gyr (Chris.Hett@landisgyr.com)</t>
        </li>
        <li>
          <t>Johannes van der Horst, MMB Networks (johannes.vanderhorst@mmbresearch.com)</t>
        </li>
        <li>
          <t>Klaus Hueske, Renesas (Klaus.Hueske@renesas.com).</t>
        </li>
        <li>
          <t>Hideyuki Kuribayashi, ROHM Semiconductor (Hideyuki.Kuribayashi@mnf.rohm.co.jp)</t>
        </li>
        <li>
          <t>Kit-Mui Leung, Cisco Systems, Inc. (kml@cisco.com)</t>
        </li>
        <li>
          <t>Huimin She, Cisco Systems, Inc. (hushe@cisco.com)</t>
        </li>
        <li>
          <t>Li Zhao, Cisco Systems, Inc. (liz3@cisco.com)</t>
        </li>
      </ol>
    </section>
    <section anchor="appendixA">
      <name>Appendix A Registration Retry Example</name>
      <ol spacing="normal" type="1"><li>
          <t>Device powers up.</t>
        </li>
        <li>
          <t>Device sets interval for 0 to 5 minutes.</t>
        </li>
        <li>
          <t>Device wait a random time between 2.5 and 5 minutes.</t>
        </li>
        <li>
          <t>Device sends a confirmable registration POST message.</t>
        </li>
        <li>
          <t>Device waits the rest of the interval until 5 minutes have passed.</t>
        </li>
        <li>
          <t>Device waits a random time between 5 and 10 minutes.</t>
        </li>
        <li>
          <t>Device sends the registration message again, with a new CoAP message ID.</t>
        </li>
        <li>
          <t>Device waits the rest of the interval until 10 minutes have passed.</t>
        </li>
        <li>
          <t>Device waits a random time between 10 and 20 minutes.</t>
        </li>
        <li>
          <t>Device sends the registration message again, with a new CoAP message ID.</t>
        </li>
        <li>
          <t>Device waits the rest of the interval until 20 minutes have passed.</t>
        </li>
        <li>
          <t>Device waits a random time between 20 and 40 minutes.</t>
        </li>
        <li>
          <t>Device sends the registration message again, with a new CoAP message ID.</t>
        </li>
        <li>
          <t>Device waits the rest of the interval until 40 minutes have passed.</t>
        </li>
        <li>
          <t>Device waits a random time between 40 and 60 minutes.</t>
        </li>
        <li>
          <t>Device sends the registration message again, with a new CoAP message ID.</t>
        </li>
        <li>
          <t>Device waits the rest of the interval until 60 minutes have passed.</t>
        </li>
        <li>
          <t>Repeat steps 15, 16, and 17 forever.</t>
        </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>
            <t>Abstract reworded to clarify multi-vendor aspects of CSMP.</t>
          </li>
          <li>
            <t>Introduction reworded to clarify multi-vendor aspects of CSMP.</t>
          </li>
          <li>
            <t>OpenAPI definitions are placed in-line.</t>
          </li>
          <li>
            <t>Protocol Buffer Definitions are placed in-line.</t>
          </li>
          <li>
            <t>Due to IETF author limits, all authors except the Editor have been credited in the Contributors section.</t>
          </li>
        </ol>
      </section>
      <section anchor="draft-01-to-02">
        <name>draft 01 to 02</name>
        <ol spacing="normal" type="1"><li>
            <t>"Cisco" added to title as requested.</t>
          </li>
          <li>
            <t>There are no IP disclosures to be made for this work. This point has been confirmed by Cisco legal.</t>
          </li>
        </ol>
      </section>
      <section anchor="draft-02-to-03">
        <name>draft 02 to 03</name>
        <ol spacing="normal" type="1"><li>
            <t>Trial attempt to convert Figures 2 and 6 to ASCII Art using PlantUML.</t>
          </li>
        </ol>
      </section>
      <section anchor="draft-03-to-04">
        <name>draft 03 to 04</name>
        <ol spacing="normal" type="1"><li>
            <t>Formatted OpenAPI and Protocol Buffer content to fit 72 char margin.  NOTE due to limits on URL length, the OpenAPI content no longer will compile without modification.  Reader should refer to source URLs for actual working OpenAPI definitions.</t>
          </li>
          <li>
            <t>Removed -03 Figures 2 and 6 sequence diagram ASCII Art (generated from PlantUML ... still too wide) and restored the SVG.</t>
          </li>
          <li>
            <t>Converted Figure 1 state machine SVG to ASCII art (gag).</t>
          </li>
        </ol>
      </section>
      <section anchor="draft-04-to-05">
        <name>draft 04 to 05</name>
        <ol spacing="normal" type="1"><li>
            <t>Keepalive revision while associated code base work progresses.</t>
          </li>
        </ol>
      </section>
      <section anchor="draft-05-to-06">
        <name>draft 05 to 06</name>
        <ol spacing="normal" type="1"><li>
            <t>Keepalive revision while associated code base work progresses.</t>
          </li>
        </ol>
      </section>
      <section anchor="draft-06-to-07">
        <name>draft 06 to 07</name>
        <ol spacing="normal" type="1"><li>
            <t>Keepalive revision while open source code base integrates FreeRTOS contributions.</t>
          </li>
        </ol>
      </section>
      <section anchor="draft-07-to-08">
        <name>draft 07 to 08</name>
        <ol spacing="normal" type="1"><li>
            <t>Added Vendor Defined TLV details.</t>
          </li>
        </ol>
      </section>
      <section anchor="draft-08-to-09">
        <name>draft 08 to 09</name>
        <ol spacing="normal" type="1"><li>
            <t>Keepalive revision while open source code base integrates FW update capabilities.</t>
          </li>
        </ol>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-normative-references">
      <name>Normative References</name>
      <reference anchor="RFC2119">
        <front>
          <title>Key words for use in RFCs to Indicate Requirement Levels</title>
          <author fullname="S. Bradner" initials="S." surname="Bradner"/>
          <date month="March" year="1997"/>
          <abstract>
            <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
          </abstract>
        </front>
        <seriesInfo name="BCP" value="14"/>
        <seriesInfo name="RFC" value="2119"/>
        <seriesInfo name="DOI" value="10.17487/RFC2119"/>
      </reference>
      <reference anchor="PEN" target="https://www.iana.org/assignments/enterprise-numbers/assignment/apply/">
        <front>
          <title>Application for a Private Enterprise Number</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </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">
        <front>
          <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
          <author fullname="B. Leiba" initials="B." surname="Leiba"/>
          <date month="May" year="2017"/>
          <abstract>
            <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
          </abstract>
        </front>
        <seriesInfo name="BCP" value="14"/>
        <seriesInfo name="RFC" value="8174"/>
        <seriesInfo name="DOI" value="10.17487/RFC8174"/>
      </reference>
      <reference anchor="RFC7252">
        <front>
          <title>The Constrained Application Protocol (CoAP)</title>
          <author fullname="Z. Shelby" initials="Z." surname="Shelby"/>
          <author fullname="K. Hartke" initials="K." surname="Hartke"/>
          <author fullname="C. Bormann" initials="C." surname="Bormann"/>
          <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>
    <?line 3388?>



  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
