<?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-10" category="info" submissionType="independent" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title abbrev="CoAP Simple Management Protocol">Cisco's CoAP Simple Management Protocol</title>
    <seriesInfo name="Internet-Draft" value="draft-duffy-csmp-10"/>
    <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="December" day="10"/>
    <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 anchor="draft-09-to-10">
        <name>draft 09 to 10</name>
        <ol spacing="normal" type="1"><li>
            <t>Keepalive revision as work continues on the open source code base.</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 3392?>



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

-->

</rfc>
