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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

package csmp.tlvs;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

]]></artwork>
          </section>
        </section>
        <section anchor="large-requests">
          <name>Large Requests</name>
          <t>A single CSMP TLV MUST NOT be larger than the space available in a single CoAP request message payload, minus the space occupied by mandatory TLVs.  CSMP requests containing large TLVs or many TLVs may exceed available space within a CoAP request / UDP datagram.</t>
          <t>If a POST request is larger than the UDP MTU, the request MUST be split into multiple POST requests with the TLVs spread across the message bodies. The server MUST be prepared to handle the TLVs in any order.</t>
          <t>If a GET request exceeds the UDP MTU because the max length of the "q" option is exceeded, the request MUST be split into multiple GET requests, each with a subset of the query option.</t>
          <t>The GET response from a server may not be able to fit all requested TLVs into the response.  The server will respond with only the TLVs it is able to fit within the message body.  A client SHOULD issue additional GET requests to obtain the missing TLVs.</t>
          <t>Recommended network MTU will be deployment / technology dependent.  For example, an MTU of 1024 is often used for large scale IEEE 802.15.4 mesh networks.</t>
        </section>
      </section>
      <section anchor="csmp-security-model">
        <name>CSMP Security Model</name>
        <t>The NMS signs outgoing device messaging.  Devices verify the signature to confirm source and integrity of incoming NMS messages.  NMS-Device trust is established with an NMS certificate/public key programmed into the device at time of manufacture.   Signing TLVs included in the message payload enable signature verification by a device.   The Signing TLVs are:</t>
        <ol spacing="normal" type="1"><li>Signature TLV. When included, the Signature TLV MUST be the last TLV in a message payload. The signature is calculated over the first byte of the message payload up to but not including the Signature TLV itself. Unless otherwise specified, the signature MUST be calculated as ECDSA with SHA-256 signature cipher using the signer's (NMS) private key.  If the message signature is incorrect, the device MUST ignore the message.</li>
          <li>SignatureValidity TLV. The SignatureValidity TLV defines the validity period for the message.  The  SignatureValidity  TLV MUST be included when the Signature TLV is included. If the message is received outside the defined validity period, the device MUST ignore the message.</li>
        </ol>
        <t>If either of the Signing TLVs are missing from a message payload, the device MUST ignore the message.</t>
        <t>Additional layer 2, 3, or 4 security mechanisms may be utilized to meet the requirements of specific deployment models (Wi-SUN layer 2 security, VPN at layer 3, DTLS at layer 4, etc.).  Details of these additional security mechanisms are out of scope of this specification.</t>
        <section anchor="signature-exemption">
          <name>Signature Exemption</name>
          <t>For situations in which a request payload signature adds overhead without improving security, the Signing TLVs may be elided for certain payloads. For example, the overhead of signing each block of a firmware update may be unnecessary as a full image integrity check is performed over the entire file and reported to the NMS.</t>
          <t>The signature exemptible TLVs are:</t>
          <ol spacing="normal" type="1"><li>ImageBlock</li>
            <li>DescriptionRequest</li>
          </ol>
          <t>The NMS MAY elide the Signing TLVs provided the request body contains only exemptible TLVs.  Otherwise, the Signing TLVs MUST be included.</t>
          <t>A device MAY accept incoming message payloads without Signing TLVs provided the payload contains only exemptible TLVs.</t>
        </section>
      </section>
      <section anchor="device-groups">
        <name>Device Groups</name>
        <t>CSMP groups are used to support multicast messaging to devices.</t>
        <t>A group is uniquely defined by a group-type/group-id pair. A device MAY be a member of multiple group-types, but MUST be a member of only one group-id within a group-type.  A device MUST support membership in at least two group types.</t>
        <t>The NMS assigns a device to a group using the GroupAssign TLV. On initial boot, a device has no group assignments. To be assigned to a device group, a GroupAssign TLV MUST be sent to the device either by a POST request from the NMS or within the response to the device's registration request to the NMS.</t>
        <t>The NMS removes a device from a group by POST-ing a GroupEvict TLV to the device.</t>
        <t>If a device's group assignment is changed at the NMS, upon receipt of the next metrics report from the device, the NMS MUST POST a new GroupAssign TLV to the device.</t>
        <t>Group assignments are not additive.  Assignments MUST be replaced upon receipt of a subsequent GroupAssign TLV.</t>
        <t>A GroupAssign TLV MUST NOT be sent within a multicast message.</t>
        <t>A GroupEvict TLV MUST NOT be sent within a multicast message.</t>
        <t>Devices MUST maintain group assignments in durable storage (across power cyclings / reboots).</t>
        <t>CSMP multicast messages MUST contain a GroupMatch TLV.  Upon receipt of a multicast CSMP message:</t>
        <ol spacing="normal" type="1"><li>A device MUST process the message if the contained GroupMatch TLV matches a group to which the device is assigned.</li>
          <li>A device MUST ignore the message if the message does not contain a GroupMatch TLV.</li>
          <li>A device MUST ignore the message if the GroupMatch TLV does not match a device group assignment.</li>
        </ol>
        <section anchor="reserved-group-types">
          <name>Reserved Group Types</name>
          <t>Group type 1 is reserved for configuration.</t>
          <t>Group type 2 is reserved for firmware.</t>
        </section>
      </section>
      <section anchor="device-tlv-processing-order">
        <name>Device TLV Processing Order</name>
        <t>A device processes message payload TLVs in the following order:</t>
        <ol spacing="normal" type="1"><li>If present, the Signature and SignatureValidity TLVs MUST be processed first.</li>
          <li>If present, the GroupMatch TLV MUST be processed next.</li>
          <li>The remaining payload TLVs MUST be processed in the order they appear in the payload.</li>
          <li>TLVs within a payload SHOULD NOT be duplicated.  In the case of a duplicate TLV, the last payload instance of TLV MUST be used.</li>
          <li>The index field of a TLV table entry is used to determine uniqueness of the TLV.  TLVs with identical index values MUST be considered to be duplicates (table entry TLVs are identified in <xref target="csmpComp"/>.</li>
          <li>TLV specific error handling is described in the OpenAPI definitions.</li>
        </ol>
      </section>
    </section>
    <section anchor="functional-description">
      <name>Functional Description</name>
      <t>This section describes the major operational flows of the CSMP protocol.</t>
      <section anchor="device-lifecyle-states">
        <name>Device Lifecyle States</name>
        <t>For understanding of CSMP device behavior, it is helpful to consider the NMS' view of device states and state transitions (presented below).</t>
        <t>The NMS views a device as transitioning through the following states:</t>
        <figure>
          <name>NMS View of Device State</name>
          <artset>
            <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/b75b04a851395ac25c26d94edaad4fe6716fa44f/Figure1.svg?raw=true"/>
            <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
          </artset>
        </figure>
        <ol spacing="normal" type="1"><li>Devices pre-populated into the NMS prior to deployment exist in the Unheard state.</li>
          <li>Upon receipt of a device registration request, the NMS records the device's presence on the network and the device enters the Registering state.</li>
          <li>NMS responds with a registration ACK payload containing configuration for the device.</li>
          <li>The device transitions to the Up state upon NMS receipt of a device metrics report.</li>
          <li>If subsequent metrics reports are lost (poor network conditions), the device transitions to the Down state. NMS receipt of a new metrics report transitions the device back to Up state.</li>
        </ol>
      </section>
      <section anchor="nms-discovery">
        <name>NMS Discovery</name>
        <t>A device requires the &lt;nms-base-url&gt; of its NMS.  Acquisition of the NMS URL may be accomplished via a variety of means including a DHCP option, pre-deployment administrative configuration setting, etc. The specific mechanism to be used is beyond the scope of this specification.</t>
        <t>For devices using DHCPv6 address assignment, a device MAY request DHCPv6 option 26484 sub-option 1 to obtain the URL of its NMS.</t>
      </section>
      <section anchor="device-registration-and-configuration">
        <name>Device Registration and Configuration</name>
        <t>Registration is the messaging flow via which a device announces its entry onto the network and provides a means for the NMS to push configuration information to the device.</t>
        <t>A device registers with an NMS by issuing a registration request to an NMS.  The NMS subsequently responds to reject or accept the registration, with device configuration included in a successful registration response.  A device issues a registration request for a variety of reasons:</t>
        <ol spacing="normal" type="1"><li>A device MUST register when the device reboots (power cycled or receipt of RebootRequest TLV from the NMS).</li>
          <li>A device MUST register when its IP address has changed (usually indicating a network re-join).</li>
          <li>A device MUST register if its mesh parent has changed (mesh networks only).</li>
          <li>A device MUST register if it detects the NMS IP address has changed.</li>
          <li>A device MUST register upon receipt of NMSRedirectRequest TLV from the NMS.  This can be caused by the removal of a device from the NMS inventory but the device continues to communicate with a Session ID now unknown to the NMS.</li>
        </ol>
        <t>A device and NMS implement the registration messaging flow depicted in Figure 2.</t>
        <figure>
          <name>Device Registration, Configuration, and Metrics</name>
          <artset>
            <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/e9c763102bee617e4f6f6a526d39de081660a25f/RegistrationConfigurationMetrics.svg?raw=true"/>
            <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
          </artset>
        </figure>
        <section anchor="device-registration-request">
          <name>Device Registration Request</name>
          <t>A device MUST implement two configurable parameters used to control the registration process, initially set at manufacture time, and MUST be maintained in durable storage.</t>
          <ol spacing="normal" type="1"><li>tIntervalMin defaults to 300 seconds (5 minutes). Also configurable via TLV 42/regIntervalMin field.</li>
            <li>tIntervalMax defaults to 3600 seconds (1 hour). Also configurable via TLV 42/regIntervalMax field.</li>
          </ol>
          <t>A device MUST issue registration requests using the following algorithm.</t>
          <artwork><![CDATA[
    Set tInterval = tIntervalMin.
    Wait an initial period between 0 and tInterval seconds.
    Do {
      1. Wait tBackoff seconds, where tBackoff is a random
        interval between tInterval/2 and tInterval seconds. 
        A tBackoff value in the latter half of the interval 
        ensures a minimum time between successive registration 
        attempts.
      2. Send a new CoAP CON POST request message to NMS <nms-base-url>/r.  
        The message payload MUST contain the registration TLVs 
        described in section 3.3.1.2.
      3. Wait the remaining (tInterval – tBackoff) seconds.
      4. Set tInterval to 2 * tInterval. 
        If tInterval is greater than tIntervalMax, 
        set tInterval to tIntervalMax.
    } While the device has not received an ACK to its registration POST.
]]></artwork>
          <t>An example execution of a full registration POST retry sequence is presented in <xref target="appendixA"/>.</t>
          <t>If the device receives an ACK message with CoAP response code 2.03 (valid) from the NMS at any time before the device's next registration POST, the TLVs within the ACK message MUST be processed.</t>
        </section>
        <section anchor="registration-post-payload">
          <name>Registration POST Payload</name>
          <t>The following TLVs MUST be included in the device registration POST to the NMS:</t>
          <ol spacing="normal" type="1"><li>DeviceID (primary identifier of the device).</li>
            <li>CurrentTime (used to validate device local time).</li>
          </ol>
          <t>Previously registered devices SHOULD already have (durably stored) values for the Session ID, GroupInfo,and ReportSubscribe TLVs and MUST include these TLVs in the device registration POST to the NMS:</t>
          <ol spacing="normal" type="1"><li>SessionID</li>
            <li>GroupInfo (one per group)</li>
            <li>ReportSubscribe</li>
          </ol>
          <t>The following Device Information TLVs MUST be included in the registration POST:</t>
          <ol spacing="normal" type="1"><li>HardwareDesc</li>
            <li>InterfaceDesc (one per interface)</li>
            <li>IPAddress (one per address)</li>
            <li>NMSStatus (reason for the registration operation)</li>
            <li>WPANStatus</li>
            <li>RPLSettings</li>
          </ol>
          <t>Note that the SessionID, GroupAssign, and ReportSubscribe TLV set is considered to be generic device Configuration.  The Configuration TLV set is technology specific and MAY be extended with additional technology specific TLVs (beyond the scope of this specification).</t>
        </section>
        <section anchor="nms-registration-response">
          <name>NMS Registration Response</name>
          <t>Upon receipt of a registration request, the NMS looks up the information for the device identified by DeviceID to confirm correctness of the request.  See <xref target="csmpNms"/> for details of DeviceID and SessionID validation and related error response codes.</t>
          <t>If the device is found in inventory, authorized to register, and all other registration request content is confirmed to be valid, the NMS MUST send an ACK response message with response code 2.03(Valid)to the device.  The ACK takes one of two forms, depending upon whether or not the NMS will redirect the device to another NMS.</t>
          <t>In the case where the NMS is not redirecting, the response body to a valid registration request contains the following TLVs:</t>
          <ol spacing="normal" type="1"><li>SessionID MUST be elided from the ACK if the SessionID  contained in the registration request is correct, otherwise the correct SessionID TLV MUST be included in the ACK.</li>
            <li>GroupAssign MUST be elided from the ACK if the GroupAssign  contained in the registration request is correct, otherwise the correct GroupAssign TLV MUST be included in the ACK.</li>
            <li>ReportSubscribe MUST be elided from the ACK if the ReportSubscribe contained in the registration request is correct, otherwise the correct ReportSubscribe TLV MUST be included in the ACK.</li>
            <li>Signing TLVs MUST be included.</li>
          </ol>
          <t>In the case where the NMS is redirecting, the response body to a valid registration request contains the following TLVs:</t>
          <ol spacing="normal" type="1"><li>NMSRedirectRequest MUST be included.</li>
            <li>Signing TLVs MUST be included.</li>
          </ol>
          <t>When the response contains a SessionID TLV, the device MUST durably store this TLV and SessionID TLV MUST be included in all future CSMP requests to the NMS.</t>
          <t>When the response contains a GroupAssign TLV, the device MUST durably store the group-id (overwriting any other stored group-id for the same group-type) and MUST use the new GroupAssign values for comparison with all future receipt of GroupMatch TLVs.</t>
          <t>When the response contains a ReportSubscribe TLV, the device MUST begin reporting the indicated metrics TLVs (ignoring any TLVs requested by the ReportSubscribe which are unknown to the device).</t>
          <t>The NMS includes the NMSRedirectRequest TLV in a registration response to request the device register with an alternate NMS instance (load balancing, etc.). Upon receipt of this TLV, the device MUST cease registration attempts with the original NMS and start the registration process with the NMS indicated in the NMSRedirectRequest TLV.  If registration succeeds with this new NMS, all subsequent device CSMP messaging MUST be directed to this new NMS.   Note that device receipt of NMSRedirectRequest TLV is a one-time redirect and not persisted across device restarts.</t>
        </section>
        <section anchor="registration-complete">
          <name>Registration Complete</name>
          <t>The NMS considers device registration to be complete when all of the following conditions are met:</t>
          <ol spacing="normal" type="1"><li>The registration ACK to the device indicates code 2.03 (Valid) and message ID match is confirmed as described in CoAP.</li>
            <li>The ACK response body does not contain an NMSRedirectRequest TLV.</li>
            <li>The first metrics report from the device is received by the NMS.</li>
          </ol>
        </section>
      </section>
      <section anchor="device-metrics-reporting">
        <name>Device Metrics Reporting</name>
        <t>Upon receipt of a ReportSubscribe TLV, a device configures as many as two metrics reports:</t>
        <ol spacing="normal" type="1"><li>A primary metrics report using the interval and TLV ID set.</li>
          <li>A secondary metrics report using the heartbeat interval and heartbeat TLV ID set.</li>
        </ol>
        <t>The primary metrics report MUST be used for mains powered devices (with the secondary report disabled).  To conserve power, metrics reporting for low power devices MAY be split across primary and secondary reports, with the primary report configured to provide TLVs needed at more frequent interval and the secondary configured for TLVs required at a more relaxed interval.</t>
        <t>A device configures metrics parameters to control the device's primary metrics report as follows:</t>
        <ol spacing="normal" type="1"><li>tMetricsInterval (how often a device MUST report its metrics) is typically set between 5 minutes and 8 hours (depends on application requirements). Designated by the interval field of the ReportSubscribe TLV.</li>
          <li>tlvList (the list of TLVs the device MUST report) is designated by the tlvId field of the ReportSubscribe TLV.</li>
        </ol>
        <t>A device configures metrics parameters to control a device's secondary metrics report as follows:</t>
        <ol spacing="normal" type="1"><li>tMetricsInterval is designated by the intervalHeartBeat field of the ReportSubscribe TLV.</li>
          <li>tlvList is designated by the tlvIdHeartBeat field of the ReportSubscribe TLV.</li>
        </ol>
        <t>The TLV content of the primary and secondary metrics reports are deployment and application specific.  For example, the primary metrics report for a 6LoWPAN, mains-powered mesh node might be configured as:</t>
        <ol spacing="normal" type="1"><li>InterfaceMetrics</li>
          <li>GroupInfo</li>
          <li>FirmwareImageInfo</li>
          <li>Uptime</li>
          <li>LowpanPhyStats</li>
          <li>DifServMetrics</li>
          <li>ReportSubscribe</li>
        </ol>
        <t>TLV content of the secondary metrics report is similarly application specific and beyond the scope of this specification.</t>
        <t>For each configured metrics report, a device MUST commence reporting immediately after receipt of a successful registration ACK by sending a NON POST to &lt;nms-url&gt;/c containing the following TLVs:</t>
        <ol spacing="normal" type="1"><li>SessionID</li>
          <li>CurrentTime</li>
          <li>The TLVs from tlvList. The entirety of all table entries MUST be included.</li>
        </ol>
        <t>Following the initial metrics report, the device MUST implement the following algorithm for subsequent metric reports (for both primary and secondary report):</t>
        <artwork><![CDATA[
    Send a new CoAP NON POST to <nms-url>/c with the required metrics TLVs.
    Wait an initial random interval between 0 and tMetricsInterval seconds.
    Do {
        1. Wait tMetricsBackoff seconds, where tMetricsBackoff is random 
          value between tMetricsInterval/2 and tMetricsInterval seconds.
        2. Send a new CoAP NON POST message to <nms-url>/c 
          with the required metrics TLVs
        3. Wait the remaining (tMetricsInterval – tMetricsBackoff) seconds 
          so that the full tMetricsInterval has expired.
    } While the device has a valid IP address.
]]></artwork>
      </section>
      <section anchor="device-firmware-update">
        <name>Device Firmware Update</name>
        <t>CSMP defines a device firmware update process optimized for LPWANs. A key aspect of this process is the separation of image placement on a device from activation (execution) of the image on the device.</t>
        <t>The device firmware update process consists of three sub-flows:</t>
        <ol spacing="normal" type="1"><li>Firmware download.  A new image is placed on one or more members of a device group.</li>
          <li>Image load.  Activate an image on one or more members of a device group at a scheduled time.</li>
          <li>Set backup image.  Optional designation of an image to be used when load of all other images fails.</li>
        </ol>
        <t>A device should implement the following mechanisms in support of firmware update:</t>
        <ol spacing="normal" type="1"><li>It is RECOMMENDED that vendors implement digital signing of images prior to image release to production.</li>
          <li>It is RECOMMENDED that a device implement a secure bootloader which (upon device receipt of a LoadRequest TLV or at device power-up) validates the activated image's signature, loads the image from durable storage into operating memory, and transfers execution to the image.  Specific details of image signing and the secure bootloader are left to the vendor beyond the scope of this specification.</li>
          <li>A device MUST be capable of storing at least two firmware images: the running image and at least one additional image.</li>
          <li>It is RECOMMENDED that a device also support a backup image. A device boots into the backup image when the device is unable to boot into any other image.</li>
          <li>A device MUST be capable of scheduling an image load (activation) at a specific future time (i.e. the device must maintain a time source).</li>
        </ol>
        <section anchor="firmware-image-format">
          <name>Firmware Image Format</name>
          <t>A CSMP firmware image file consists of three main parts: a CSMP defined image header, the vendor defined image binary, and the vendor defined image signature (as depicted below).</t>
          <table>
            <name>Firmware Image Format</name>
            <thead>
              <tr>
                <th align="left">Field</th>
                <th align="left">Size (octets)</th>
                <th align="left">Description</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left"> </td>
                <td align="left"> </td>
                <td align="left">Begin Header</td>
              </tr>
              <tr>
                <td align="left">Header Version</td>
                <td align="left">4</td>
                <td align="left">32 bit unsigned integer which MUST be set to 2.</td>
              </tr>
              <tr>
                <td align="left">Header Length</td>
                <td align="left">4</td>
                <td align="left">32 bit unsigned integer which MUST be set to 256.</td>
              </tr>
              <tr>
                <td align="left">App Rev Major</td>
                <td align="left">4</td>
                <td align="left">Vendor specific 32 bit unsigned integer which is set to indicate the major revision number of the application image.</td>
              </tr>
              <tr>
                <td align="left">App Rev Minor</td>
                <td align="left">4</td>
                <td align="left">Vendor specific 32 bit unsigned integer which is set to indicate the minor revision number of the application image.</td>
              </tr>
              <tr>
                <td align="left">App Build</td>
                <td align="left">4</td>
                <td align="left">Vendor specific 32 bit unsigned integer which is set to indicate the build of the application image.</td>
              </tr>
              <tr>
                <td align="left">App Length</td>
                <td align="left">4</td>
                <td align="left">32 bit unsigned integer which MUST be set to the octet length of the Header + Image Binary field.</td>
              </tr>
              <tr>
                <td align="left">App Name</td>
                <td align="left">32</td>
                <td align="left">Vendor specific 32 octet string which is set to indicate the name of the application.</td>
              </tr>
              <tr>
                <td align="left">App SCC Branch</td>
                <td align="left">32</td>
                <td align="left">Vendor specific 32 octet string which is set to indicate the source code control system branch ID.</td>
              </tr>
              <tr>
                <td align="left">App SCC Commit</td>
                <td align="left">8</td>
                <td align="left">Vendor specific 8 octet string which is set to indicate the source code control system commit ID.</td>
              </tr>
              <tr>
                <td align="left">App SCC Flags</td>
                <td align="left">4</td>
                <td align="left">Vendor specific 32 bit unsigned integer which is set to indicate the source code control system build flags.</td>
              </tr>
              <tr>
                <td align="left">App Build Date</td>
                <td align="left">16</td>
                <td align="left">Vendor specific 16 octet string which is set to indicate the build date and time of the application image.</td>
              </tr>
              <tr>
                <td align="left">hwid</td>
                <td align="left">32</td>
                <td align="left">32 octet field which is RECOMMENDED to be set to a concatenation of a unique manufacturer ID and product model identifier.</td>
              </tr>
              <tr>
                <td align="left">sub_hwid</td>
                <td align="left">32</td>
                <td align="left">32 octet field which MAY be set for a manufacturer specific purpose, or functionally elided by filling with 0x20 (ASCII space character).</td>
              </tr>
              <tr>
                <td align="left">kernel_rev</td>
                <td align="left">16</td>
                <td align="left">16 octet field which MAY be set for a manufacturer specific purpose, or functionally elided by filling with 0x20 (ASCII space character).</td>
              </tr>
              <tr>
                <td align="left">sub_kernel_rev</td>
                <td align="left">16</td>
                <td align="left">16 octet field which MAY be set for a manufacturer specific purpose, or functionally elided by filling with 0x20 (ASCII space character).</td>
              </tr>
              <tr>
                <td align="left">Reserved</td>
                <td align="left">44</td>
                <td align="left">Pad to 256 octets, octets MUST be set to 0.</td>
              </tr>
              <tr>
                <td align="left"> </td>
                <td align="left"> </td>
                <td align="left">End Header, Begin Image</td>
              </tr>
              <tr>
                <td align="left">Image Binary</td>
                <td align="left">Variable</td>
                <td align="left">Vendor specific image data.</td>
              </tr>
              <tr>
                <td align="left"> </td>
                <td align="left"> </td>
                <td align="left">End Image, Begin Signature</td>
              </tr>
              <tr>
                <td align="left">Signature     Variable</td>
                <td align="left">Vendor specific image signature.</td>
                <td align="left">Calculated over entire content of this structure except the signature and pad fields.</td>
              </tr>
              <tr>
                <td align="left"> </td>
                <td align="left"> </td>
                <td align="left">End Signature, Begin Pad</td>
              </tr>
              <tr>
                <td align="left">Pad</td>
                <td align="left">Variable</td>
                <td align="left">Optional pad field to enable image to fill vendor specific flash memory boundary.  When present, octets MUST be set to 0xFF.</td>
              </tr>
            </tbody>
          </table>
          <t>All multi-octet fields are encoded as little-endian.</t>
        </section>
        <section anchor="firmware-download">
          <name>Firmware Download</name>
          <t>An NMS implements the messaging flow depicted in Figure 3 and Figure 4 to download an image to a group of devices.  Unicast distribution is also supported, with the difference being use of unicast addresses, omission of the GroupMatch TLV and omission of the 'a' query option.</t>
          <figure>
            <name>Firmware Download</name>
            <artset>
              <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/aacaed091f902852e85446d63c393bbf62fc5885/FirmwareLoadA.svg?raw=true"/>
              <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
            </artset>
          </figure>
          <figure>
            <name>Firmware Download (cont)</name>
            <artset>
              <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/aacaed091f902852e85446d63c393bbf62fc5885/FirmwareLoadB.svg?raw=true"/>
              <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
            </artset>
          </figure>
          <t>A firmware download begins with the NMS informing the device group of the meta-data of an image the NMS wishes to download, and the devices subsequently informing the NMS of the images already loaded on the devices.</t>
          <t>The NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
          <ol spacing="normal" type="1"><li>A GroupMatch TLV MUST be included for the desired group.</li>
            <li>The 'a' option MUST be specified to randomize subsequent device responses.</li>
            <li>The request MAY contain an 'r' option to redirect the subsequent TransferResponse.</li>
            <li>The request MUST contain a TranferRequest TLV (meta-data for the file to be downloaded)</li>
            <li>The request MUST contain the Signing TLVs.</li>
          </ol>
          <t>Devices receiving a TransferRequest message:</t>
          <ol spacing="normal" type="1"><li>MUST process the Signing TLVs and the GroupMatch TLV as described in section 2.6.</li>
            <li>MUST wait the specified period when the 'a" option is included.</li>
            <li>MUST issue a NON POST request to &lt;nms-url&gt;/c which MUST contain the TransferResponse TLV.  The &lt;nms-url&gt; MUST be overridden by the 'r' option if specified.</li>
          </ol>
          <t>The NMS MUST proceed with image block transfer when at least one member of the target device group indicates Response Code of OK in the TransferResponse TLV.  Otherwise, the transfer MUST be aborted.</t>
          <t>Images are often multiple 100s of Kilobytes in size and likely require fragmentation into multiple blocks (N) to be transferred to a device.</t>
          <t>For the transfer of each image block, the NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
          <ol spacing="normal" type="1"><li>The request MUST contain the GroupMatch TLV for the desired group.</li>
            <li>The request MUST contain an ImageBlock TLV</li>
            <li>The request MAY contain the Signing TLVs.</li>
          </ol>
          <t>To determine image download progress, the NMS MUST periodically include a DescriptionRequest TLV, requesting the FirmwareImageInfo TLV, in the image block request.  It is RECOMMENDED that the NMS request the FirmwareImageInfo TLV at 10% increments of the image download.  The NMS MUST request the FirmwareImageInfo TLV with the transfer of the last block of the image.</t>
          <t>Devices receiving the image block request message:</t>
          <ol spacing="normal" type="1"><li>MUST process the Signing TLVs and GroupMatch TLVs as described in section 2.6.</li>
            <li>MUST cache the image block for final image assembly.</li>
            <li>When the FirmwareImageInfo TLV is requested, the device MUST wait the specified period when the 'a' option is included and MUST issue a NON POST request to &lt;nms-url&gt;/c which MUST contain the FirmwareImageInfo TLV (meta-data for files loaded on the device). The &lt;nms-url&gt; MUST be overridden by the 'r' option if specified.</li>
          </ol>
          <t>Receipt of the final FirmwareImageInfo TLV enables the NMS to confirm the integrity of the completely downloaded image.</t>
        </section>
        <section anchor="image-activation">
          <name>Image Activation</name>
          <t>The messaging flow for scheduling image activation across a group of devices and cancelling a scheduled image activation are depicted in Figure 5 and described below.  Unicast activation is also supported, with the difference being use of unicast addresses, omission of the GroupMatch TLV and omission of the 'a' query option.</t>
          <figure>
            <name>Image Activation</name>
            <artset>
              <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/0f91f16aec32bee2238dabf5a972169dc4d93c69/ActivationFirmware.svg?raw=true"/>
              <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
            </artset>
          </figure>
          <section anchor="image-load">
            <name>Image Load</name>
            <t>An NMS implements the following message flow to command devices to designate an image as the active executable and the time at which the image is to be activated.</t>
            <t>The NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
            <ol spacing="normal" type="1"><li>A GroupMatch TLV MUST be included for the desired group.</li>
              <li>The 'a' option MUST be specified to randomize subsequent device responses.</li>
              <li>The request MAY contain an 'r' option to redirect the subsequent LoadResponse.</li>
              <li>The request MUST contain a LoadRequest TLV (designating the image and time at which the image is to be activated).</li>
              <li>The request MUST contain the Signing TLVs.</li>
            </ol>
            <t>Devices receiving a LoadRequest message:</t>
            <ol spacing="normal" type="1"><li>MUST process the Signing TLVs and GroupMatch TLVs as described in section 2.6.</li>
              <li>MUST wait the specified period when the 'a" option is included.</li>
              <li>MUST issue a NON POST request to &lt;nms-url&gt;/c which MUST contain the LoadResponse TLV (indicating success or reason for failure). The &lt;nms-url&gt; MUST be overridden by the 'r' option if specified.</li>
            </ol>
          </section>
          <section anchor="cancel-image-load">
            <name>Cancel Image Load</name>
            <t>An NMS implements the following message flow to cancel a previously scheduled image activation.</t>
            <t>The NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
            <ol spacing="normal" type="1"><li>A GroupMatch TLV MUST be included for the desired group.</li>
              <li>The 'a' option MUST be specified to randomize subsequent device responses.</li>
              <li>The request MAY contain an 'r' option to redirect the subsequent CancelLoadResponse.</li>
              <li>The request MUST contain a CancelLoadRequest TLV (designating the image load to be cancelled).</li>
              <li>The request MUST contain the Signing TLVs.</li>
            </ol>
            <t>Devices receiving a CancelLoadRequest message:</t>
            <ol spacing="normal" type="1"><li>MUST process the Signing TLVs and GroupMatch TLVs as described in section 2.6.</li>
              <li>MUST wait the specified period when the 'a" option is included.</li>
              <li>MUST issue a NON POST request to &lt;nms-url&gt;/c which MUST contain the CancelLoadResponse TLV (indicating success or reason for failure). The &lt;nms-url&gt; MUST be overridden by the 'r' option if specified.</li>
            </ol>
          </section>
        </section>
        <section anchor="set-backup-image">
          <name>Set Backup Image</name>
          <t>An NMS implements the following message flow to command a device to designate a stored image as the backup image.</t>
          <figure>
            <name>Set Backup Image</name>
            <artset>
              <artwork type="svg" src="https://github.com/woobagooba/draft-ietf-is-csmp/blob/0f91f16aec32bee2238dabf5a972169dc4d93c69/SetDefaultImage.svg?raw=true"/>
              <artwork type="ascii-art"><![CDATA[Figure only available as SVG (PDF and HTML)]]></artwork>
            </artset>
          </figure>
          <t>The NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
          <ol spacing="normal" type="1"><li>A GroupMatch TLV MUST be included for the desired group.</li>
            <li>The 'a' option MUST be specified to randomize subsequent device responses.</li>
            <li>The request MAY contain an 'r' option to redirect the subsequent SetBackupResponse.</li>
            <li>The request MUST contain a SetBackupRequest TLV (designating the image load to be cancelled).</li>
            <li>The request MUST contain the Signing TLVs.</li>
          </ol>
          <t>Devices receiving a SetBackupRequest message:</t>
          <ol spacing="normal" type="1"><li>MUST process the Signing TLVs and GroupMatch TLVs as described in section 2.6.</li>
            <li>MUST wait the specified period when the 'a" option is included.</li>
            <li>MUST issue a NON POST request to &lt;nms-url&gt;/c which MUST contain the SetBackupResponse TLV (indicating success or reason for failure). The &lt;nms-url&gt; MUST be overridden by the 'r' option if specified.</li>
          </ol>
        </section>
      </section>
      <section anchor="device-commands">
        <name>Device Commands</name>
        <t>Many TLVs served by a device are used by the NMS to interrogate the device for configuration state and operational  status.  There are, however, several TLVs which direct a device to execute internal actions.  Examples of these TLVs are PingRequest and RebootRequest.</t>
        <t>Usage of a command TLVs is illustrated with the following PingRequest example directed at a single device.</t>
        <t>The NMS MUST issue a NON POST to &lt;device-url&gt;/c configured as follows:</t>
        <ol spacing="normal" type="1"><li>A GroupMatch TLV MUST NOT be included for the designed device.</li>
          <li>The request MAY contain an 'r' option to redirect the subsequent PingResponse.</li>
          <li>The request MUST contain a PingRequest TLV (describing the Ping action to be performed).</li>
          <li>The request MUST contain the Signing TLVs.</li>
        </ol>
        <t>Devices receiving a PingRequest message:</t>
        <ol spacing="normal" type="1"><li>MUST process the Signing TLVs as described in section 2.6.</li>
          <li>MUST begin the requested Ping operation.</li>
        </ol>
        <t>The NMS will subsequently interrogate the device with one or more GET requests to the device for the  PingResponse TLV.</t>
        <t>Note the specific messaging exchanges vary per the definition of each commands.  Details are provided within <xref target="csmpTlvs"/>.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>Threat models and appropriate mitigations are highly specific to individual CSMP/LPWAN deployments.</t>
      <t>CSMP defines only the NMS signing of outgoing Device messaging using an NMS private key (for Device commands and firmware load). Signing TLVs included in the message payload enable signature verification by a Device using an NMS signing certificate\public key.  The verified signature provides source authentication integrity check of the message incoming to the Device. Lifecycle management of the public/private keypair is out of scope of the specification.</t>
      <t>Where additional security mechanisms are needed (source and integrity checking of Device to NMS communication, confidentially of CSMP messaging, authentication and authorization of CSMP actors, replay protection), additional layer 2, 3, or 4 security mechanisms are utilized to meet security requirements of a specific deployment. Examples include:</t>
      <ol spacing="normal" type="1"><li>Layer 2 802.1X/EAP-TLS is used to provide mutual authentication of Device and NMS as well as distribution of key material to be used with IEEE 802.15.4 frame security (providing confidentially, source authentication, and replay protection).</li>
        <li>Layer 3 VPN may be used to provide confidentially, source authentication, and message integrity for messaging between Device and NMS.</li>
        <li>Layer 4 DTLS may be used to provide confidentially, source authentication, and message integrity for messaging between Device and NMS.</li>
      </ol>
      <t>Specific usage profile details for these additional security mechanisms are out of scope of this specification.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document requires no IANA actions.</t>
    </section>
    <section anchor="contributors">
      <name>Contributors</name>
      <t>This work is based upon the considerable efforts of CSMP's original designer Gilman Tolle (with contributions from Phil Buonadonna, and Sumit Rangwala).  The Editor further acknowledges the contributions made to the content of this document by the following individuals:</t>
      <ol spacing="normal" type="1"><li>Jasvinder Bhasin, Cisco Systems, Inc. (jassi@cisco.com)</li>
        <li>Chris Hett, Landis+Gyr (Chris.Hett@landisgyr.com)</li>
        <li>Johannes van der Horst, MMB Networks (johannes.vanderhorst@mmbresearch.com)</li>
        <li>Klaus Hueske, Renesas (Klaus.Hueske@renesas.com).</li>
        <li>Hideyuki Kuribayashi, ROHM Semiconductor (Hideyuki.Kuribayashi@mnf.rohm.co.jp)</li>
        <li>Kit-Mui Leung, Cisco Systems, Inc. (kml@cisco.com)</li>
        <li>Huimin She, Cisco Systems, Inc. (hushe@cisco.com)</li>
        <li>Li Zhou, Cisco Systems, Inc. (liz3@cisco.com)</li>
      </ol>
    </section>
    <section anchor="appendixA">
      <name>Appendix A Registration Retry Example</name>
      <ol spacing="normal" type="1"><li>Device powers up.</li>
        <li>Device sets interval for 0 to 5 minutes.</li>
        <li>Device wait a random time between 2.5 and 5 minutes.</li>
        <li>Device sends a confirmable registration POST message.</li>
        <li>Device waits the rest of the interval until 5 minutes have passed.</li>
        <li>Device waits a random time between 5 and 10 minutes.</li>
        <li>Device sends the registration message again, with a new CoAP message ID.</li>
        <li>Device waits the rest of the interval until 10 minutes have passed.</li>
        <li>Device waits a random time between 10 and 20 minutes.</li>
        <li>Device sends the registration message again, with a new CoAP message ID.</li>
        <li>Device waits the rest of the interval until 20 minutes have passed.</li>
        <li>Device waits a random time between 20 and 40 minutes.</li>
        <li>Device sends the registration message again, with a new CoAP message ID.</li>
        <li>Device waits the rest of the interval until 40 minutes have passed.</li>
        <li>Device waits a random time between 40 and 60 minutes.</li>
        <li>Device sends the registration message again, with a new CoAP message ID.</li>
        <li>Device waits the rest of the interval until 60 minutes have passed.</li>
        <li>Repeat steps 15, 16, and 17 forever.</li>
      </ol>
    </section>
    <section anchor="appendix-b-change-log">
      <name>Appendix B Change Log</name>
      <section anchor="draft-00-to-01">
        <name>draft 00 to 01</name>
        <ol spacing="normal" type="1"><li>Abstract reworded to clarify multi-vendor aspects of CSMP.</li>
          <li>Introduction reworded to clarify multi-vendor aspects of CSMP.</li>
          <li>OpenAPI definitions are placed in-line.</li>
          <li>Protocol Buffer Definitions are placed in-line.</li>
          <li>Due to IETF author limits, all authors except the Editor have been credited in the Contributors section.</li>
        </ol>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>Normative References</name>
      <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/rfc2119">
        <front>
          <title>Key words for use in RFCs to Indicate Requirement Levels</title>
          <author fullname="S. Bradner" initials="S." surname="Bradner">
            <organization/>
          </author>
          <date month="March" year="1997"/>
          <abstract>
            <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
          </abstract>
        </front>
        <seriesInfo name="BCP" value="14"/>
        <seriesInfo name="RFC" value="2119"/>
        <seriesInfo name="DOI" value="10.17487/RFC2119"/>
      </reference>
      <reference anchor="PB" target="https://developers.google.com/protocol-buffers/docs/proto3">
        <front>
          <title>Protocol Buffers Version 3</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="OPENAPI" target="https://spec.openapis.org/oas/v3.0.0">
        <front>
          <title>OpenAPI Specification v3.0.0</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="CSMPNMS" target="https://github.com/woobagooba/draft-ietf-is-csmp/blob/e0be5a31906eb3e9983e7cc28b24ed9482543784/CsmpNms-1.0.1.yaml">
        <front>
          <title>CSMP NMS Interface</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="CSMPDEV" target="https://github.com/woobagooba/draft-ietf-is-csmp/blob/e0be5a31906eb3e9983e7cc28b24ed9482543784/CsmpDevice-1.0.1.yaml">
        <front>
          <title>CSMP Device Interface</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="CSMPCOMP" target="https://github.com/woobagooba/draft-ietf-is-csmp/blob/e0be5a31906eb3e9983e7cc28b24ed9482543784/CsmpComponents-1.0.yaml">
        <front>
          <title>CSMP Components</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="CSMPMSG" target="https://github.com/woobagooba/draft-ietf-is-csmp/blob/e0be5a31906eb3e9983e7cc28b24ed9482543784/CsmpTLVsPublic.proto">
        <front>
          <title>CSMP Payload Definitions</title>
          <author>
            <organization/>
          </author>
          <date>n.d.</date>
        </front>
      </reference>
      <reference anchor="RFC8174" target="https://www.rfc-editor.org/info/rfc8174">
        <front>
          <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
          <author fullname="B. Leiba" initials="B." surname="Leiba">
            <organization/>
          </author>
          <date month="May" year="2017"/>
          <abstract>
            <t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t>
          </abstract>
        </front>
        <seriesInfo name="BCP" value="14"/>
        <seriesInfo name="RFC" value="8174"/>
        <seriesInfo name="DOI" value="10.17487/RFC8174"/>
      </reference>
      <reference anchor="RFC7252" target="https://www.rfc-editor.org/info/rfc7252">
        <front>
          <title>The Constrained Application Protocol (CoAP)</title>
          <author fullname="Z. Shelby" initials="Z." surname="Shelby">
            <organization/>
          </author>
          <author fullname="K. Hartke" initials="K." surname="Hartke">
            <organization/>
          </author>
          <author fullname="C. Bormann" initials="C." surname="Bormann">
            <organization/>
          </author>
          <date month="June" year="2014"/>
          <abstract>
            <t>The Constrained Application Protocol (CoAP) is a specialized web transfer protocol for use with constrained nodes and constrained (e.g., low-power, lossy) networks.  The nodes often have 8-bit microcontrollers with small amounts of ROM and RAM, while constrained networks such as IPv6 over Low-Power Wireless Personal Area Networks (6LoWPANs) often have high packet error rates and a typical throughput of 10s of kbit/s.  The protocol is designed for machine- to-machine (M2M) applications such as smart energy and building automation.</t>
            <t>CoAP provides a request/response interaction model between application endpoints, supports built-in discovery of services and resources, and includes key concepts of the Web such as URIs and Internet media types.  CoAP is designed to easily interface with HTTP for integration with the Web while meeting specialized requirements such as multicast support, very low overhead, and simplicity for constrained environments.</t>
          </abstract>
        </front>
        <seriesInfo name="RFC" value="7252"/>
        <seriesInfo name="DOI" value="10.17487/RFC7252"/>
      </reference>
    </references>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
