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


<!DOCTYPE rfc  [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">

]>

<?rfc strict="yes"?>
<?rfc compact="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-lpwan-schc-yang-data-model-07" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true">
  <front>
    <title abbrev="LPWAN SCHC YANG module">Data Model for Static Context Header Compression (SCHC)</title>

    <author initials="A." surname="Minaburo" fullname="Ana Minaburo">
      <organization>Acklio</organization>
      <address>
        <postal>
          <street>1137A avenue des Champs Blancs</street>
          <city>35510 Cesson-Sevigne Cedex</city>
          <country>France</country>
        </postal>
        <email>ana@ackl.io</email>
      </address>
    </author>
    <author initials="L." surname="Toutain" fullname="Laurent Toutain">
      <organization>Institut MINES TELECOM; IMT Atlantique</organization>
      <address>
        <postal>
          <street>2 rue de la Chataigneraie</street> <street>CS 17607</street>
          <city>35576 Cesson-Sevigne Cedex</city>
          <country>France</country>
        </postal>
        <email>Laurent.Toutain@imt-atlantique.fr</email>
      </address>
    </author>

    <date year="2022" month="February" day="28"/>

    
    <workgroup>lpwan Working Group</workgroup>
    

    <abstract>


<t>This document describes a YANG data model for the SCHC (Static Context Header Compression) 
compression and fragmentation rules.</t>



    </abstract>



  </front>

  <middle>


<section anchor="Introduction"><name>Introduction</name>

<t>SCHC is a compression and fragmentation mechanism for constrained networks defined in <xref target="RFC8724"/>.
It is based on a static context shared by two entities at the boundary of the constrained network.
<xref target="RFC8724"/> provides a non formal representation of the rules used either for compression/decompression (or C/D)
or fragmentation/reassembly (or F/R). The goal of this document is to formalize the description of the rules to offer:</t>

<t><list style="symbols">
  <t>the same definition on both ends, even if the internal representation is different.</t>
  <t>an update of the other end to set up some specific values (e.g. IPv6 prefix, Destination address,...)</t>
  <t>...</t>
</list></t>

<t>This document defines a YANG module to represent both compression and fragmentation rules, which leads to common representation for values for all the rules elements.</t>

</section>
<section anchor="schc-rules"><name>SCHC rules</name>

<t>SCHC is a compression and fragmentation mechanism for constrained networks defined in <xref target="RFC8724"/>.
It is based on a static context shared by two entities at the boundary of the constrained network.
<xref target="RFC8724"/> provides a non formal representation of the rules used either for compression/decompression (or C/D)
or fragmentation/reassembly (or F/R). The goal of this document is to formalize the description of the rules to offer:</t>

<t><list style="symbols">
  <t>the same definition on both ends, even if the internal representation is different.</t>
  <t>an update of the other end to set up some specific values (e.g. IPv6 prefix, Destination address,...)</t>
  <t>...</t>
</list></t>

<t>This document defines a YANG module to represent both compression and fragmentation rules, which leads to common representation for values for all the rules elements.</t>

<t>SCHC compression is generic, the main mechanism does not refer
to a specific protocol. Any header field is abstracted through an ID, a position, a direction, and a value that can be a numerical
value or a string. <xref target="RFC8724"/> and <xref target="RFC8824"/> specify fields for IPv6, UDP, CoAP and OSCORE.</t>

<t>SCHC fragmentation requires a set of common parameters that are included in a rule. These parameters are defined in <xref target="RFC8724"/>.</t>

<t>The YANG model allows to select the compression or the fragmentation using the feature command.</t>

<figure title="Feature for compression and fragmentation." anchor="Fig-feature"><artwork><![CDATA[
  feature compression {
    description
      "SCHC compression capabilities are taken into account";
  }

  feature fragmentation {
    description
      "SCHC fragmentation capabilities are taken into account";
  }
]]></artwork></figure>

<section anchor="comp_types"><name>Compression Rules</name>

<t><xref target="RFC8724"/> proposes a non formal representation of the compression rule.
A compression context for a device is composed of a set of rules. Each rule contains information to
describe a specific field in the header to be compressed.</t>

<figure title="Compression Decompression Context" anchor="Fig-ctxt"><artwork><![CDATA[
  +-----------------------------------------------------------------+
  |                      Rule N                                     |
 +-----------------------------------------------------------------+|
 |                    Rule i                                       ||
+-----------------------------------------------------------------+||
|  (FID)            Rule 1                                        |||
|+-------+--+--+--+------------+-----------------+---------------+|||
||Field 1|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act||||
|+-------+--+--+--+------------+-----------------+---------------+|||
||Field 2|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act||||
|+-------+--+--+--+------------+-----------------+---------------+|||
||...    |..|..|..|   ...      | ...             | ...           ||||
|+-------+--+--+--+------------+-----------------+---------------+||/
||Field N|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act|||
|+-------+--+--+--+------------+-----------------+---------------+|/
|                                                                 |        
\-----------------------------------------------------------------/  

]]></artwork></figure>

</section>
<section anchor="identifier-generation"><name>Identifier generation</name>

<t>Identifier used in the SCHC YANG Data Model are from the identityref statement to ensure to be globally unique and be easily augmented if needed.  The principle to define a new type based on a group of identityref is the following:</t>

<t><list style="symbols">
  <t>define a main identity ending with the keyword base-type.</t>
  <t>derive all the identity used in the Data Model from this base type.</t>
  <t>create a typedef from this base type.</t>
</list></t>

<t>The example (<xref target="Fig-identityref"/>) shows how an identityref is created for RCS algorithms used during SCHC fragmentation.</t>

<figure title="Principle to define a type based on identityref." anchor="Fig-identityref"><artwork><![CDATA[
  // -- RCS algorithm types

  identity rcs-algorithm-base-type {
    description
      "Identify which algorithm is used to compute RSC.
       The algorithm also defines the size if the RSC field.";
  }

  identity rcs-RFC8724 {
    base rcs-algorithm-base-type;
    description
      "CRC 32 defined as default RCS in RFC8724. RCS is 4 byte-long";
  }

  typedef rcs-algorithm-type {
    type identityref {
      base rcs-algorithm-base-type;
    }
    description
      "type used in rules.";
  }
]]></artwork></figure>

</section>
<section anchor="field-identifier"><name>Field Identifier</name>

<t>In the process of compression, the headers of the original packet are first parsed to create a list of fields. This list of fields is matched against the rules to find the appropriate rule and apply compression.  <xref target="RFC8724"/>  do not state how the field ID value can be constructed. 
In examples, identification is done through a string indexed by the protocol name (e.g. IPv6.version, CoAP.version,...).</t>

<t>The current YANG Data Model includes fields definitions found in <xref target="RFC8724"/>, <xref target="RFC8824"/>.</t>

<t>Using the YANG model, each field MUST be identified through a global YANG identityref.<br />
A YANG field ID for the protocol always derives from the fid-base-type. Then an identity 
for each protocol is specified using the naming convention fid-&lt;&lt;protocol name&gt;&gt;-base-type. 
All possible fields for this protocol MUST derive from the protocol identity. The naming 
convention is "fid" followed by the protocol name and the field name. If a field has 
to be divided into sub-fields, the field identity serves as a base.</t>

<t>The full field-id definition is found in <xref target="annexA"/>. The example <xref target="Fig-ex-field-id"/> 
gives the first field ID definitions. A type is defined for IPv6 protocol, and each 
field is based on it. Note that the DiffServ bits derives from the Traffic Class identity.</t>

<figure title="Definition of identityref for field IDs" anchor="Fig-ex-field-id"><artwork><![CDATA[
  identity fid-base-type {
    description
      "Field ID base type for all fields";
  }

  identity fid-ipv6-base-type {
    base fid-base-type;
    description
      "Field ID base type for IPv6 headers described in RFC 8200";
  }

  identity fid-ipv6-version {
    base fid-ipv6-base-type;
    description
      "IPv6 version field from RFC8200";
  }

  identity fid-ipv6-trafficclass {
    base fid-ipv6-base-type;
    description
      "IPv6 Traffic Class field from RFC8200";
  }

  identity fid-ipv6-trafficclass-ds {
    base fid-ipv6-trafficclass;
    description
      "IPv6 Traffic Class field from RFC8200,
       DiffServ field from RFC3168";
  }
  ...
]]></artwork></figure>

<t>The type associated to this identity is fid-type (cf. <xref target="Fig-field-id-type"/>)</t>

<figure title="Type definition for field IDs" anchor="Fig-field-id-type"><artwork><![CDATA[
  typedef fid-type {
    type identityref {
      base fid-base-type;
    }
    description
      "Field ID generic type.";
  }
]]></artwork></figure>

</section>
<section anchor="field-length"><name>Field length</name>

<t>Field length is either an integer giving the size of a field in bits or a specific function. <xref target="RFC8724"/> defines the
"var" function which allows variable length fields in byte and <xref target="RFC8824"/> defines the "tkl" function for managing the CoAP
Token length field.</t>

<t>The naming convention is "fl" followed by the function name.</t>

<figure title="Definition of identityref for Field Length" anchor="Fig-ex-field-length"><artwork><![CDATA[
  identity fl-base-type {
    description
      "Used to extend field length functions.";
  }

  identity fl-variable {
    base fl-base-type;
    description
      "Residue length in Byte is sent as defined in
       for CoAP in RFC 8824 (cf. 5.3).";
  }

  identity fl-token-length {
    base fl-base-type;
    description
      "Residue length in Byte is sent as defined in
       for CoAP in RFC 8824 (cf. 4.5).";
  }
]]></artwork></figure>

<t>Field ID, field length function can be defined as an identityref as shown in <xref target="Fig-ex-field-length"/>.</t>

<t>Therefore, the type for field length is a union between an integer giving in bits the size of the length and the identityref (cf. <xref target="Fig-ex-field-length-union"/>).</t>

<figure title="Type definition for field Length" anchor="Fig-ex-field-length-union"><artwork><![CDATA[
  typedef fl-type {
    type union {
      type int64; /* positive length in bits */
      type identityref { /* function */
        base fl-base-type;
      }
    }
    description
      "Field length either a positive integer giving the size in bits
       or a function defined through an identityref.";
  }
]]></artwork></figure>

</section>
<section anchor="field-position"><name>Field position</name>

<t>Field position is a positive integer which gives the position of a field, the default value is 1, and incremented at each repetition. 
value 0 indicates that the position is not important and is not considered during the rule selection process.</t>

<t>Field position is a positive integer. The type is an uint8.</t>

</section>
<section anchor="direction-indicator"><name>Direction Indicator</name>

<t>The Direction Indicator (di) is used to tell if a field appears in both direction (Bi) or only uplink (Up) or Downlink (Dw).</t>

<figure title="Definition of identityref for direction indicators" anchor="Fig-ex-field-DI"><artwork><![CDATA[
  identity di-base-type {
    description
      "Used to extend direction indicators.";
  }

  identity di-bidirectional {
    base di-base-type;
    description
      "Direction Indication of bi directionality in
       RFC 8724 (cf. 7.1).";
  }

  identity di-up {
    base di-base-type;
    description
      "Direction Indication of uplink defined in
       RFC 8724 (cf. 7.1).";
  }

  identity di-down {
    base di-base-type;
    description
      "Direction Indication of downlink defined in
       RFC 8724 (cf. 7.1).";
  }
]]></artwork></figure>

<t><xref target="Fig-ex-field-DI"/> gives the identityref for Direction Indicators. The naming convention is "di" followed by the Direction Indicator name.</t>

<t>The type is "di-type" (cf. <xref target="Fig-field-DI-type"/>).</t>

<figure title="Type definition for direction indicators" anchor="Fig-field-DI-type"><artwork><![CDATA[
  typedef di-type {
    type identityref {
      base di-base-type;
    }
    description
      "Direction in LPWAN network, up when emitted by the device,
       down when received by the device, bi when emitted or
       received by the device.";
  }
]]></artwork></figure>

</section>
<section anchor="target-value"><name>Target Value</name>

<t>The Target Value is a list of binary sequences of any length, aligned on the left. <xref target="Fig-ex-TV"/> gives the definition of a single element of a Target Value. In the rule, this will be used as a list, with position as a key. The highest position value is used to compute the size of the index sent in residue for LSB CDA. The position allows to specify several values:</t>

<t><list style="symbols">
  <t>For Equal and LSB, a single value is used, such as for the equal or LSB CDA, the position is set to 0.</t>
  <t>For match-mapping, several of these values can be contained in a Target Value field.  Position values must start from 0 and be contiguous.</t>
</list></t>

<figure title="Definition of target value" anchor="Fig-ex-TV"><artwork><![CDATA[
  grouping tv-struct {
    description
      "Define the target value element. Always a binary type, strings
       must be converted to binary. field-id allows the conversion
       to the appropriate type.";
    leaf value {
      type binary;
      description
        "Target Value";
    }
    leaf position {
      type uint16;
      description
        "If only one element position is 0, otherwise position is the
         the position in the matching list.";
    }
  }
]]></artwork></figure>

</section>
<section anchor="matching-operator"><name>Matching Operator</name>

<t>Matching Operator (MO) is a function applied between a field value provided by the parsed header and the target value. <xref target="RFC8724"/> defines 4 MO as listed in <xref target="Fig-ex-MO"/>.</t>

<figure title="Definition of identityref for Matching Operator " anchor="Fig-ex-MO"><artwork><![CDATA[
  identity mo-base-type {
    description
      "Used to extend Matching Operators with SID values";
  }

  identity mo-equal {
    base mo-base-type;
    description
      "Equal MO as defined RFC 8724 (cf. 7.3)";
  }

  identity mo-ignore {
    base mo-base-type;
    description
      "Ignore MO as defined RFC 8724 (cf. 7.3)";
  }

  identity mo-msb {
    base mo-base-type;
    description
      "MSB MO as defined RFC 8724 (cf. 7.3)";
  }

  identity mo-match-mapping {
    base mo-base-type;
    description
      "match-mapping MO as defined RFC 8724 (cf. 7.3)";
  }
]]></artwork></figure>

<t>The naming convention is "mo" followed by the MO name.</t>

<t>The type is "mo-type" (cf. <xref target="Fig-MO-type"/>)</t>

<figure title="Type definition for Matching Operator" anchor="Fig-MO-type"><artwork><![CDATA[
  typedef mo-type {
    type identityref {
      base mo-base-type;
    }
    description
      "Matching Operator (MO) to compare fields values with
       target values";
  }
]]></artwork></figure>

<section anchor="matching-operator-arguments"><name>Matching Operator arguments</name>

<t>They are viewed as a list of tv-struct.</t>

</section>
</section>
<section anchor="compression-decompression-actions"><name>Compression Decompression Actions</name>

<t>Compression Decompression Action (CDA) identified the function to use either for compression or decompression. 
<xref target="RFC8724"/> defines 6 CDA.</t>

<t><xref target="Fig-CDA-type"/> gives some CDA definition, the full definition is in <xref target="annexA"/>.</t>

<figure title="Definition of identityref for  Compresion Decompression Action" anchor="Fig-ex-CDA"><artwork><![CDATA[
  identity cda-base-type {
    description
      "Compression Decompression Actions.";
  }

  identity cda-not-sent {
    base cda-base-type;
    description
      "not-sent CDA as defines in RFC 8724 (cf. 7.4).";
  }

  identity cda-value-sent {
    base cda-base-type;
    description
      "value-sent CDA as defines in RFC 8724 (cf. 7.4).";
  }

  identity cda-lsb {
    base cda-base-type;
    description
      "LSB CDA as defines in RFC 8724 (cf. 7.4).";
  }

  identity cda-mapping-sent {
    base cda-base-type;
    description
      "mapping-sent CDA as defines in RFC 8724 (cf. 7.4).";
  }
    ....
]]></artwork></figure>

<t>The naming convention is "cda" followed by the CDA name.</t>

<figure title="Type definition for Compresion Decompression Action" anchor="Fig-CDA-type"><artwork><![CDATA[
  typedef cda-type {
    type identityref {
      base cda-base-type;
    }
    description
      "Compression Decompression Action to compression or
       decompress a field.";
  }
]]></artwork></figure>

<section anchor="compression-decompression-action-arguments"><name>Compression Decompression Action arguments</name>

<t>Currently no CDA requires arguments, but the future some CDA may require several arguments.
They are viewed as a list of target-values-type.</t>

</section>
</section>
<section anchor="frag_types"><name>Fragmentation rule</name>

<t>Fragmentation is optional in the data model and depends on the presence of the "fragmentation" feature.</t>

<t>Most of parameters for fragmentation are defined in Annex D of <xref target="RFC8724"/>.</t>

<t>Since fragmentation rules work for a specific direction, they contain a mandatory direction.
The type is the same as the one used in compression entries, but the use of bidirectional is 
forbidden.</t>

<section anchor="fragmentation-mode"><name>Fragmentation mode</name>

<t><xref target="RFC8724"/> defines 3 fragmentation modes:</t>

<t><list style="symbols">
  <t>No Ack: this mode is unidirectionnal, no acknowledgment is sent back.</t>
  <t>Ack Always: each fragmentation window must be explicitly acknowledged before going to the next.</t>
  <t>Ack on Error:  A window is acknowledged only when the receiver detects some missing fragments.</t>
</list></t>

<t><xref target="Fig-frag-mode"/> give the definition for identifiers from these three modes.</t>

<figure title="Definition of fragmentation mode identifer" anchor="Fig-frag-mode"><artwork><![CDATA[
  identity fragmentation-mode-base-type {
    description
      "fragmentation mode.";
  }

  identity fragmentation-mode-no-ack {
    base fragmentation-mode-base-type;
    description
      "No-ACK of RFC8724.";
  }

  identity fragmentation-mode-ack-always {
    base fragmentation-mode-base-type;
    description
      "ACK-Always of RFC8724.";
  }

  identity fragmentation-mode-ack-on-error {
    base fragmentation-mode-base-type;
    description
      "ACK-on-Error of RFC8724.";
  }

  typedef fragmentation-mode-type {
    type identityref {
      base fragmentation-mode-base-type;
    }
    description
      "type used in rules";
  }

]]></artwork></figure>

<t>The naming convention is "fragmentation-mode" followed by the fragmentation mode name.</t>

</section>
<section anchor="fragmentation-header"><name>Fragmentation Header</name>

<t>A data fragment header, directly following the rule ID can be sent on the fragmentation direction. 
The direction is mandatory and must be up or down. bidirectional is forbidden. The SCHC header may be composed of (cf. <xref target="Fig-frag-header-8724"/>):</t>

<t><list style="symbols">
  <t>a Datagram Tag (Dtag) identifying the datagram being fragmented if the fragmentation applies concurrently on several datagrams. This field in optional and its length is defined by the rule.</t>
  <t>a Window (W) used in Ack-Always and Ack-on-Error modes. In Ack-Always, its size is 1 and depends on the rule in Ack-on-Error. This field is not need in No-Ack mode.</t>
  <t>a Fragment Compressed Number (FCN) indicating the fragment/tile position on the window. This field is mandatory on all modes defined in <xref target="RFC8724"/>, its size is defined by the rule.</t>
</list></t>

<figure title="Data fragment header from RFC8724" anchor="Fig-frag-header-8724"><artwork><![CDATA[
|-- SCHC Fragment Header ----|
         |-- T --|-M-|-- N --|
+-- ... -+- ... -+---+- ... -+--------...-------+~~~~~~~~~~~~~~~~~~~~
| RuleID | DTag  | W |  FCN  | Fragment Payload | padding (as needed)
+-- ... -+- ... -+---+- ... -+--------...-------+~~~~~~~~~~~~~~~~~~~~

]]></artwork></figure>

</section>
<section anchor="last-fragment-format"><name>Last fragment format</name>

<t>The last fragment of a datagram is sent with an RCS (Reassembly Check Sequence) field to detect residual 
transmission error and possible losses in the last window. <xref target="RFC8724"/> defines a single algorithm based on Ethernet 
CRC computation. The identity of the RCS algorithm is shown in <xref target="Fig-frag-RCS"/>.</t>

<figure title="type definition for RCS" anchor="Fig-frag-RCS"><artwork><![CDATA[
  identity rcs-algorithm-base-type {
    description
      "Identify which algorithm is used to compute RSC.
       The algorithm also defines the size if the RSC field.";
  }

  identity rcs-RFC8724 {
    base rcs-algorithm-base-type;
    description
      "CRC 32 defined as default RCS in RFC8724. RCS is 4 byte-long";
  }

  typedef rcs-algorithm-type {
    type identityref {
      base rcs-algorithm-base-type;
    }
    description
      "type used in rules.";
  }
]]></artwork></figure>

<t>The naming convention is "rcs" followed by the algorithm name.</t>

<t>For Ack-on-Error mode, the All-1 fragment may just contain the RCS or can include a tile. The parameters defined in <xref target="Fig-frag-all1-data"/> allows to define the 
behavior:</t>

<t><list style="symbols">
  <t>all1-data-no: the last fragment contains no data, just the RCS</t>
  <t>all1-data-yes: the last fragment includes a single tile and the RCS</t>
  <t>all1-data-sender-choice: the last fragment may or may not contain a single tile. The receiver can detect if a tile is present.</t>
</list></t>

<figure title="type definition for RCS" anchor="Fig-frag-all1-data"><artwork><![CDATA[
  identity all1-data-base-type {
    description
      "Type to define when to send an Acknowledgment message.";
  }

  identity all1-data-no {
    base all1-data-base-type;
    description
      "All1 contains no tiles.";
  }

  identity all1-data-yes {
    base all1-data-base-type;
    description
      "All1 MUST contain a tile.";
  }

  identity all1-data-sender-choice {
    base all1-data-base-type;
    description
      "Fragmentation process choose to send tiles or not in all1.";
  }

  typedef all1-data-type {
    type identityref {
      base all1-data-base-type;
    }
    description
      "Type used in rules.";
  }
]]></artwork></figure>

<t>The naming convention is "all1-data" followed by the behavior identifier.</t>

</section>
<section anchor="acknowledgment-behavior"><name>Acknowledgment behavior</name>

<t>A cknowledgment fragment header goes in the opposite direction of data. The header is composed of (see <xref target="Fig-frag-ack"/>):</t>

<t><list style="symbols">
  <t>a Dtag (if present).</t>
  <t>a mandatory window as in the data fragment.</t>
  <t>a C bit giving the status of RCS validation.  In case of failure, a bitmap follows, indicating received fragment/tile. The size of the bitmap is given by the FCN value.</t>
</list></t>

<t>NOTE: IN THE DATA MODEL THERE IS A max-window-size FIELD TO LIMIT THE BITMAP SIZE, BUT IS NO MORE IN RFC8724! DO WE KEEP IT?</t>

<figure title="Acknowledgment fragment header for RFC8724" anchor="Fig-frag-ack"><artwork><![CDATA[
|--- SCHC ACK Header ----|
         |-- T --|-M-| 1 |
+-- ... -+- ... -+---+---+~~~~~~~~~~~~~~~~~~
| RuleID |  DTag | W |C=1| padding as needed                (success)
+-- ... -+- ... -+---+---+~~~~~~~~~~~~~~~~~~

+-- ... -+- ... -+---+---+------ ... ------+~~~~~~~~~~~~~~~
| RuleID |  DTag | W |C=0|Compressed Bitmap| pad. as needed (failure)
+-- ... -+- ... -+---+---+------ ... ------+~~~~~~~~~~~~~~~

]]></artwork></figure>

<t>For Ack-on-Error, SCHC defined  when acknowledgment can be sent. This can be at any time defined by the layer 2, at the end of a window (FCN All-0) 
or at the end of the fragment (FCN All-1). The following identifiers (cf. <xref target="Fig-frag-ack-behavior"/>) define the acknowledgment behavior.</t>

<figure title="bitmap generation behavior" anchor="Fig-frag-ack-behavior"><artwork><![CDATA[
  identity ack-behavior-base-type {
    description
      "Define when to send an Acknowledgment .";
  }

  identity ack-behavior-after-All0 {
    base ack-behavior-base-type;
    description
      "Fragmentation expects Ack after sending All0 fragment.";
  }

  identity ack-behavior-after-All1 {
    base ack-behavior-base-type;
    description
      "Fragmentation expects Ack after sending All1 fragment.";
  }

  identity ack-behavior-by-layer2 {
    base ack-behavior-base-type;
    description
      "Layer 2 defines when to send an Ack.";
  }

  typedef ack-behavior-type {
    type identityref {
      base ack-behavior-base-type;
    }
    description
      "Type used in rules.";
  }
]]></artwork></figure>

<t>The naming convention is "ack-behavior" followed by the algorithm name.</t>

</section>
<section anchor="fragmentation-parameters"><name>Fragmentation Parameters</name>

<t>The state machine requires some common values to handle fragmentation:</t>

<t><list style="symbols">
  <t>retransmission-timer gives in seconds the duration before sending an ack request (cf. section 8.2.2.4. of <xref target="RFC8724"/>). If specified, value must be higher or equal to 1.</t>
  <t>inactivity-timer gives in seconds the duration before aborting (cf. section 8.2.2.4. of <xref target="RFC8724"/>), value of 0 explicitly indicates that this timer is disabled.</t>
  <t>max-ack-requests gives the number of attempts before aborting (cf. section 8.2.2.4. of <xref target="RFC8724"/>).</t>
  <t>maximum-packet-size gives in bytes the larger packet size that can be reassembled.</t>
</list></t>

<t>The are defined as unsigned integer, see <xref target="annexA"/>.</t>

</section>
<section anchor="layer-2-parameters"><name>Layer 2 parameters</name>

<t>The data model includes two parameters needed for fragmentation:</t>

<t><list style="symbols">
  <t>l2-word-size: <xref target="RFC8724"/> base fragmentation on a layer 2 word which can be of any length. The default value is 8 and correspond 
to the default value for byte aligned layer 2. A value of 1 will indicate that there is no alignment and no need for padding.</t>
  <t>maximum-packet-size: defines the maximum size of a uncompressed datagram. By default, the value is set to 1280 bytes.</t>
</list></t>

<t>They are defined as unsigned integer, see <xref target="annexA"/>.</t>

</section>
</section>
</section>
<section anchor="rule-definition"><name>Rule definition</name>

<t>A rule is either a C/D or an F/R rule. A rule is identified by the rule ID value and its associated length. 
The YANG grouping rule-id-type defines the structure used to represent a rule ID. Length of 0 is allowed to represent an implicit rule.</t>

<t>Three types of rules are defined in <xref target="RFC8724"/>:</t>

<t><list style="symbols">
  <t>Compression: a compression rule is associated to the rule ID.</t>
  <t>No compression: nothing is associated to the rule ID.</t>
  <t>Fragmentation: fragmentation parameters are associated to the rule ID. Fragmentation is optional and feature "fragmentation" should be set.</t>
</list></t>

<figure title="Definition of a SCHC Context" anchor="Fig-yang-schc"><artwork><![CDATA[
  grouping rule-id-type {
    leaf rule-id-value {
      type uint32;
      description
        "Rule ID value, this value must be unique combined with
         the length.";
    }
    leaf rule-id-length {
      type uint8 {
        range "0..32";
      }
      description
        "Rule ID length in bits, value 0 is for implicit rules.";
    }
    description
      "A rule ID is composed of a value and a length in bit.";
  }

  // SCHC table for a specific device.

  container schc {
    list rule {
      key "rule-id-value rule-id-length";
      uses rule-id-type;
      choice nature {
        case fragmentation {
          if-feature "fragmentation";
          uses fragmentation-content;
        }
        case compression {
          if-feature "compression";
          uses compression-content;
        }
        case no-compression {
          description
            "RFC8724 allows a rule for uncompressed headers.";
        }
        description
          "A rule is either for compression, no compression or
           fragmentation.";
      }
      description
        "Set of rules compression, no compression or fragmentation
         rules identified by their rule-id.";
    }
    description
      "a SCHC set of rules is composed of a list of rule which are
       either compression or fragmentation.";
  }
}
]]></artwork></figure>

<t>To access to a specific rule, rule-id and its specific length is used as a key. The rule is either
a compression or a fragmentation rule.</t>

<t>Each context can be identified though a version id.</t>

<section anchor="compression-rule"><name>Compression rule</name>

<t>A compression rule is composed of entries describing its processing (cf. <xref target="Fig-comp-entry"/>). An entry  contains all the information defined in <xref target="Fig-ctxt"/> with the types defined above.</t>

<t>The compression rule described <xref target="Fig-ctxt"/> is defined by compression-content. It defines a list of
compression-rule-entry, indexed by their field id, position and direction. The compression-rule-entry 
element represent a line of the table <xref target="Fig-ctxt"/>. Their type reflects the identifier types defined in
<xref target="comp_types"/></t>

<t>Some controls are made on the values:</t>

<t><list style="symbols">
  <t>target value must be present for MO different from ignore.</t>
  <t>when MSB MO is specified, the matching-operator-value must be present</t>
</list></t>

<figure title="Definition of a compression entry" anchor="Fig-comp-entry"><artwork><![CDATA[
  grouping compression-rule-entry {
    description
      "These entries defines a compression entry (i.e. a line)
       as defined in RFC 8724 and fragmentation parameters.

       +-------+--+--+--+------------+-----------------+---------------+
       |Field 1|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act|
       +-------+--+--+--+------------+-----------------+---------------+

       An entry in a compression rule is composed of 7 elements:
       - Field ID: The header field to be compressed. The content is a
         YANG identifer.
       - Field Length : either a positive integer of a function defined
         as a YANF id.
       - Field Position: a positive (and possibly equal to 0) integer.
       - Direction Indicator: a YANG identifier giving the direction.
       - Target value: a value against which the header Field is
         compared.
       - Matching Operator: a YANG id giving the operation, paramters
         may be associated to that operator.
       - Comp./Decomp. Action: A YANG id giving the compression or
         decompression action, paramters may be associated to that
         action.
      ";
    leaf field-id {
      type schc:fid-type;
      mandatory true;
      description
        "Field ID, identify a field in the header with a YANG
         referenceid.";
    }
    leaf field-length {
      type schc:fl-type;
      mandatory true;
      description
        "Field Length in bit or through a function defined as a
         YANG referenceid.";
    }
    leaf field-position {
      type uint8;
      mandatory true;
      description
        "Field position in the header is a integer. If the field is not
         repeated in the header the value is 1, and incremented for each
         repetition of the field. Position 0 means that the position is
         not important and order may change when decompressed";
    }
    leaf direction-indicator {
      type schc:di-type;
      mandatory true;
      description
        "Direction Indicator, a YANG referenceid to say if the packet
         is bidirectional, up or down";
    }
    list target-value {
      key "position";
      uses tv-struct;
      description
        "A list of value to compare with the header field value.
         If target value is a singleton, position must be 0.
         For matching-list, should be consecutive position
         values starting from 1.";
    }
    leaf matching-operator {
      type schc:mo-type;
      must "../target-value or derived-from-or-self(., 'mo-ignore')" {
        error-message 
            "mo-equal, mo-msb and mo-match-mapping need target-value";
        description
          "target-value is not required for mo-ignore";
      }
      must "not (derived-from-or-self(., 'mo-msb')) or
            ../matching-operator-value" {
        error-message "mo-msb requires length value";
      }
      mandatory true;
      description
        "MO: Matching Operator";
    }
    list matching-operator-value {
      key "position";
      uses tv-struct;
      description
        "Matching Operator Arguments, based on TV structure to allow
         several arguments.
         In RFC 8724, only MSB define a single argument: length in
         bits";
    }
    leaf comp-decomp-action {
      type schc:cda-type;
      mandatory true;
      description
        "CDA: Compression Decompression Action.";
    }
    list comp-decomp-action-value {
      key "position";
      uses tv-struct;
      description
        "CDA Arguments, based on TV structure to allow several
         arguments. In RFC 8724, no argument is defined for CDA.";
    }
  }

  grouping compression-content {
    list entry {
      key "field-id field-position direction-indicator";
      uses compression-rule-entry;
      description
        "A compression rule is a list of rule entry describing
         each header field. An entry is identifed through a field-id,
         its position in the packet and its direction.";
    }
    description
      "Define a compression rule composed of a list of entries.";
  }
]]></artwork></figure>

</section>
<section anchor="fragmentation-rule"><name>Fragmentation rule</name>

<t>A Fragmentation rule is composed of entries describing the protocol behavior. Some on them are numerical entries,
others are identifiers defined in <xref target="frag_types"/>.</t>

<t>The definition of a Fragmentation rule is divided into three sub-parts:</t>

<t><list style="symbols">
  <t>parameters such as the the fragmnetation-mode, the l2-word-size and the direction. Since Fragmentation rules are always defined for a specific direction, the value must be must be either di-up or di-down (bi-bidirectional is not allowed).</t>
  <t>parameters defining the Fragmentation header format (dtag-size, w-size, fcn-size and rcs-algorithm).</t>
  <t>Protocol parameters for timers (inactivity-timer, retransmission-timer) or behavior (maximum-packet-size, max-interleaved-frames, max-ack-requests). If these parameters are specific to a single fragmentation mode, they are regrouped in a choice structure dedicated to that Fragmentation mode. If some parameters can be find in several modes, typically ACK-Always and ACK-on-Error. They are defined in a common part and a when statement indicates which modes are allowed.</t>
</list></t>

<figure><artwork><![CDATA[
  grouping fragmentation-content {
    description
      "This grouping defines the fragmentation parameters for
       all the modes (No-ACK, ACK-Always and ACK-on-Error) specified in
       RFC 8724.";
    leaf fragmentation-mode {
      type schc:fragmentation-mode-type;
      mandatory true;
      description
        "which fragmentation mode is used (noAck, AckAlways,
         AckonError)";
    }
    leaf l2-word-size {
      type uint8;
      default "8";
      description
        "Size in bit of the layer 2 word";
    }
    leaf direction {
      type schc:di-type;
      must "derived-from-or-self(., 'di-up') or
            derived-from-or-self(., 'di-down')" {
        error-message 
            "direction for fragmentation rules are up or down.";
      }
      mandatory true;
      description
        "Should be up or down, bi directionnal is forbiden.";
    }
    // SCHC Frag header format 
    leaf dtag-size {
      type uint8;
      default "0";
      description
        "Size in bit of the DTag field (T variable from RFC8724).";
    }
    leaf w-size {
      when "derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-on-error') 
            or
            derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-always') ";
      type uint8;
      description
        "Size in bit of the window field (M variable from RFC8724).";
    }
    leaf fcn-size {
      type uint8;
      mandatory true;
      description
        "Size in bit of the FCN field (M variable from RFC8724).";
    }
    leaf rcs-algorithm {
      type rcs-algorithm-type;
      default "schc:rcs-RFC8724";
      description
        "Algoritm used for RCS. The algorithm spedifies the RCS size";
    }
    // SCHC fragmentation protocol paramters
    leaf maximum-packet-size {
      type uint16;
      default "1280";
      description
        "When decompression is done, packet size must not
         strictly exceed this limit in Bytes.";
    }
    leaf window-size {
      type uint16;
      description
        "By default, if not specified 2^w-size - 1. Should not exceed
         this value. Possible FCN values are between 0 and 
         window-size-1.";
    }
    leaf max-interleaved-frames {
      type uint8;
      default "1";
      description
        "Maximum of simultaneously fragmented frames. Maximum value is
        2^dtag-size. All DTAG values can be used, but only 
        max-interleaved-frames must be active.";
    }
    leaf inactivity-timer {
      type uint64;
      description
        "Duration is seconds of the inactivity timer, 0 indicates 
        the timer is disabled.";
    }
    leaf retransmission-timer {
      when "derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-on-error') 
            or
            derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-always') ";
      type uint64 {
        range "1..max";
      }
      description
        "Duration in seconds of the retransmission timer.";
    }
    leaf max-ack-requests {
      when "derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-on-error') 
            or
            derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-always') ";
      type uint8 {
        range "1..max";
      }
      description
        "The maximum number of retries for a specific SCHC ACK.";
    }
    choice mode {
      case no-ack;
      case ack-always;
      case ack-on-error {
        leaf tile-size {
          when "derived-from(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type uint8;
          description
            "Size in bit of tiles, if not specified or set to 0,
             tile fills the fragment.";
        }
        leaf tile-in-All1 {
          when "derived-from(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type schc:all1-data-type;
          description
            "When true, sender and receiver except a tile in
             All-1 frag.";
        }
        leaf ack-behavior {
          when "derived-from(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type schc:ack-behavior-type;
          description
            "Sender behavior to acknowledge, after All-0, All-1 or
             when the LPWAN allows it (Always).";
        }
      }
      description
        "RFC 8724 defines 3 fragmentation modes.";
    } 
  }

]]></artwork></figure>

</section>
<section anchor="yang-tree"><name>YANG Tree</name>

<figure anchor="Fig-model-overview"><artwork><![CDATA[
module: ietf-schc
  +--rw schc
     +--rw rule* [rule-id-value rule-id-length]
        +--rw rule-id-value                   uint32
        +--rw rule-id-length                  uint8
        +--rw (nature)?
           +--:(fragmentation) {fragmentation}?
           |  +--rw fragmentation-mode        schc:fragmentation-mode-type
           |  +--rw l2-word-size?             uint8
           |  +--rw direction                 schc:di-type
           |  +--rw dtag-size?                uint8
           |  +--rw w-size?                   uint8
           |  +--rw fcn-size                  uint8
           |  +--rw rcs-algorithm?            rcs-algorithm-type
           |  +--rw maximum-packet-size?      uint16
           |  +--rw window-size?              uint16
           |  +--rw max-interleaved-frames?   uint8
           |  +--rw inactivity-timer?         uint64
           |  +--rw retransmission-timer?     uint64
           |  +--rw max-ack-requests?         uint8
           |  +--rw (mode)?
           |     +--:(no-ack)
           |     +--:(ack-always)
           |     +--:(ack-on-error)
           |        +--rw tile-size?          uint8
           |        +--rw tile-in-All1?       schc:all1-data-type
           |        +--rw ack-behavior?       schc:ack-behavior-type
           +--:(compression) {compression}?
           |  +--rw entry* [field-id field-position direction-indicator]
           |     +--rw field-id                    schc:fid-type
           |     +--rw field-length                schc:fl-type
           |     +--rw field-position              uint8
           |     +--rw direction-indicator         schc:di-type
           |     +--rw target-value* [position]
           |     |  +--rw value?      binary
           |     |  +--rw position    uint16
           |     +--rw matching-operator           schc:mo-type
           |     +--rw matching-operator-value* [position]
           |     |  +--rw value?      binary
           |     |  +--rw position    uint16
           |     +--rw comp-decomp-action          schc:cda-type
           |     +--rw comp-decomp-action-value* [position]
           |        +--rw value?      binary
           |        +--rw position    uint16
           +--:(no-compression)

]]></artwork></figure>

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

<t>This document has no request to IANA.</t>

</section>
<section anchor="SecConsiderations"><name>Security considerations</name>

<t>This document does not have any more Security consideration than the ones already raised on <xref target="RFC8724"/></t>

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

<t>The authors would like to thank Dominique Barthel, Carsten Bormann, Alexander Pelov.</t>

</section>
<section anchor="annexA"><name>YANG Module</name>

<figure anchor="Fig-schc"><artwork><![CDATA[
<code begins> file ietf-schc@2022-02-15.yang
module ietf-schc {
  yang-version 1.1;
  namespace "urn:ietf:params:xml:ns:yang:ietf-schc";
  prefix schc;

  organization
    "IETF IPv6 over Low Power Wide-Area Networks (lpwan) working group";
  contact
    "WG Web:   <https://datatracker.ietf.org/wg/lpwan/about/>
     WG List:  <mailto:p-wan@ietf.org>
     Editor:   Laurent Toutain
       <mailto:laurent.toutain@imt-atlantique.fr>
     Editor:   Ana Minaburo
       <mailto:ana@ackl.io>";
  description
    "
     Copyright (c) 2021 IETF Trust and the persons identified as
     authors of the code.  All rights reserved.

     Redistribution and use in source and binary forms, with or
     without modification, is permitted pursuant to, and subject to
     the license terms contained in, the Simplified BSD License set
     forth in Section 4.c of the IETF Trust's Legal Provisions
     Relating to IETF Documents
     (https://trustee.ietf.org/license-info).

     This version of this YANG module is part of RFC XXXX
     (https://www.rfc-editor.org/info/rfcXXXX); see the RFC itself
     for full legal notices.

     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 (RFC 2119) (RFC 8174) when, and only when,
     they appear in all capitals, as shown here.

     *****************************************************************

     Generic Data model for Static Context Header Compression Rule for
     SCHC, based on RFC 8724 and RFC8824. Include compression, no
     compression and fragmentation rules.

     This module is a YANG model for SCHC rules (RFc 8724).
     RFC 8724 describes compression rules in a abstract way through a 
     table.

     |-----------------------------------------------------------------|
     |  (FID)            Rule 1                                        |
     |+-------+--+--+--+------------+-----------------+---------------+|
     ||Field 1|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act||
     |+-------+--+--+--+------------+-----------------+---------------+|
     ||Field 2|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act||
     |+-------+--+--+--+------------+-----------------+---------------+|
     ||...    |..|..|..|   ...      | ...             | ...           ||
     |+-------+--+--+--+------------+-----------------+---------------+|
     ||Field N|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act||
     +-------+--+--+--+------------+-----------------+---------------+||
     |-----------------------------------------------------------------|

     This module proposes a global data model that can be used for rule
     exchanges or modification. It proposes both the data model format
     and the global identifiers used to describe some operations in
     fields.
     This data model applies to both compression and fragmentation.";

  revision 2022-02-15 {
    description
      "Initial version from RFC XXXX ";
    reference
      "RFC XXX: Data Model for Static Context Header Compression
       (SCHC)";
  }

  feature compression {
    description
      "SCHC compression capabilities are taken into account";
  }

  feature fragmentation {
    description
      "SCHC fragmentation capabilities are taken into account";
  }

  // -------------------------
  //  Field ID type definition
  //--------------------------
  // generic value TV definition 

  identity fid-base-type {
    description
      "Field ID base type for all fields";
  }

  identity fid-ipv6-base-type {
    base fid-base-type;
    description
      "Field ID base type for IPv6 headers described in RFC 8200";
  }

  identity fid-ipv6-version {
    base fid-ipv6-base-type;
    description
      "IPv6 version field from RFC8200";
  }

  identity fid-ipv6-trafficclass {
    base fid-ipv6-base-type;
    description
      "IPv6 Traffic Class field from RFC8200";
  }

  identity fid-ipv6-trafficclass-ds {
    base fid-ipv6-trafficclass;
    description
      "IPv6 Traffic Class field from RFC8200,
       DiffServ field from RFC3168";
  }

  identity fid-ipv6-trafficclass-ecn {
    base fid-ipv6-trafficclass;
    description
      "IPv6 Traffic Class field from RFC8200,
       ECN field from RFC3168";
  }

  identity fid-ipv6-flowlabel {
    base fid-ipv6-base-type;
    description
      "IPv6 Flow Label field from RFC8200";
  }

  identity fid-ipv6-payloadlength {
    base fid-ipv6-base-type;
    description
      "IPv6 Payload Length field from RFC8200";
  }

  identity fid-ipv6-nextheader {
    base fid-ipv6-base-type;
    description
      "IPv6 Next Header field from RFC8200";
  }

  identity fid-ipv6-hoplimit {
    base fid-ipv6-base-type;
    description
      "IPv6 Next Header field from RFC8200";
  }

  identity fid-ipv6-devprefix {
    base fid-ipv6-base-type;
    description
      "corresponds to either the source address or the destination
              address prefix of RFC 8200. Depending if it is
              respectively an uplink or a downklink message.";
  }

  identity fid-ipv6-deviid {
    base fid-ipv6-base-type;
    description
      "corresponds to either the source address or the destination
       address prefix of RFC 8200. Depending if it is respectively
       an uplink or a downklink message.";
  }

  identity fid-ipv6-appprefix {
    base fid-ipv6-base-type;
    description
      "corresponds to either the source address or the destination
       address prefix of RFC 8200. Depending if it is respectively
       a downlink or an uplink message.";
  }

  identity fid-ipv6-appiid {
    base fid-ipv6-base-type;
    description
      "corresponds to either the source address or the destination
       address prefix of RFC 8200. Depending if it is respectively
       a downlink or an uplink message.";
  }

  identity fid-udp-base-type {
    base fid-base-type;
    description
      "Field ID base type for UDP headers described in RFC 768";
  }

  identity fid-udp-dev-port {
    base fid-udp-base-type;
    description
      "UDP source or destination port from RFC 768, if uplink or 
      downlink communication, respectively.";
  }

  identity fid-udp-app-port {
    base fid-udp-base-type;
    description
      "UDP destination or source port from RFC 768, if uplink or 
      downlink communication, respectively.";
  }

  identity fid-udp-length {
    base fid-udp-base-type;
    description
      "UDP length from RFC 768";
  }

  identity fid-udp-checksum {
    base fid-udp-base-type;
    description
      "UDP length from RFC 768";
  }

  identity fid-coap-base-type {
    base fid-base-type;
    description
      "Field ID base type for UDP headers described in RFC 7252";
  }

  identity fid-coap-version {
    base fid-coap-base-type;
    description
      "CoAP version from RFC 7252";
  }

  identity fid-coap-type {
    base fid-coap-base-type;
    description
      "CoAP type from RFC 7252";
  }

  identity fid-coap-tkl {
    base fid-coap-base-type;
    description
      "CoAP token length from RFC 7252";
  }

  identity fid-coap-code {
    base fid-coap-base-type;
    description
      "CoAP code from RFC 7252";
  }

  identity fid-coap-code-class {
    base fid-coap-code;
    description
      "CoAP code class from RFC 7252";
  }

  identity fid-coap-code-detail {
    base fid-coap-code;
    description
      "CoAP code detail from RFC 7252";
  }

  identity fid-coap-mid {
    base fid-coap-base-type;
    description
      "CoAP message ID from RFC 7252";
  }

  identity fid-coap-token {
    base fid-coap-base-type;
    description
      "CoAP token from RFC 7252";
  }

  identity fid-coap-option-if-match {
    base fid-coap-base-type;
    description
      "CoAP option If-Match from RFC 7252";
  }

  identity fid-coap-option-uri-host {
    base fid-coap-base-type;
    description
      "CoAP option URI-Host from RFC 7252";
  }

  identity fid-coap-option-etag {
    base fid-coap-base-type;
    description
      "CoAP option Etag from RFC 7252";
  }

  identity fid-coap-option-if-none-match {
    base fid-coap-base-type;
    description
      "CoAP option if-none-match from RFC 7252";
  }

  identity fid-coap-option-observe {
    base fid-coap-base-type;
    description
      "CoAP option Observe from RFC 7641";
  }

  identity fid-coap-option-uri-port {
    base fid-coap-base-type;
    description
      "CoAP option Uri-Port from RFC 7252";
  }

  identity fid-coap-option-location-path {
    base fid-coap-base-type;
    description
      "CoAP option Location-Path from RFC 7252";
  }

  identity fid-coap-option-uri-path {
    base fid-coap-base-type;
    description
      "CoAP option Uri-Path from RFC 7252";
  }

  identity fid-coap-option-content-format {
    base fid-coap-base-type;
    description
      "CoAP option Content Format from RFC 7252";
  }

  identity fid-coap-option-max-age {
    base fid-coap-base-type;
    description
      "CoAP option Max-Age from RFC 7252";
  }

  identity fid-coap-option-uri-query {
    base fid-coap-base-type;
    description
      "CoAP option Uri-Query from RFC 7252";
  }

  identity fid-coap-option-accept {
    base fid-coap-base-type;
    description
      "CoAP option Accept from RFC 7252";
  }

  identity fid-coap-option-location-query {
    base fid-coap-base-type;
    description
      "CoAP option Location-Query from RFC 7252";
  }

  identity fid-coap-option-block2 {
    base fid-coap-base-type;
    description
      "CoAP option Block2 from RFC 7959";
  }

  identity fid-coap-option-block1 {
    base fid-coap-base-type;
    description
      "CoAP option Block1 from RFC 7959";
  }

  identity fid-coap-option-size2 {
    base fid-coap-base-type;
    description
      "CoAP option size2 from RFC 7959";
  }

  identity fid-coap-option-proxy-uri {
    base fid-coap-base-type;
    description
      "CoAP option Proxy-Uri from RFC 7252";
  }

  identity fid-coap-option-proxy-scheme {
    base fid-coap-base-type;
    description
      "CoAP option Proxy-scheme from RFC 7252";
  }

  identity fid-coap-option-size1 {
    base fid-coap-base-type;
    description
      "CoAP option Size1 from RFC 7252";
  }

  identity fid-coap-option-no-response {
    base fid-coap-base-type;
    description
      "CoAP option No response from RFC 7967";
  }

  identity fid-coap-option-oscore-flags {
    base fid-coap-base-type;
    description
      "CoAP option oscore flags (see RFC 8824, section 6.4)";
  }

  identity fid-coap-option-oscore-piv {
    base fid-coap-base-type;
    description
      "CoAP option oscore flags (see RFC 8824, section 6.4)";
  }

  identity fid-coap-option-oscore-kid {
    base fid-coap-base-type;
    description
      "CoAP option oscore flags (see RFC 8824, section 6.4)";
  }

  identity fid-coap-option-oscore-kidctx {
    base fid-coap-base-type;
    description
      "CoAP option oscore flags (see RFC 8824, section 6.4)";
  }

  //----------------------------------
  // Field Length type definition
  //----------------------------------

  identity fl-base-type {
    description
      "Used to extend field length functions.";
  }

  identity fl-variable {
    base fl-base-type;
    description
      "Residue length in Byte is sent as defined in
       for CoAP in RFC 8824 (cf. 5.3).";
  }

  identity fl-token-length {
    base fl-base-type;
    description
      "Residue length in Byte is sent as defined in
       for CoAP in RFC 8824 (cf. 4.5).";
  }

  //---------------------------------
  // Direction Indicator type
  //---------------------------------

  identity di-base-type {
    description
      "Used to extend direction indicators.";
  }

  identity di-bidirectional {
    base di-base-type;
    description
      "Direction Indication of bi directionality in
       RFC 8724 (cf. 7.1).";
  }

  identity di-up {
    base di-base-type;
    description
      "Direction Indication of uplink defined in
       RFC 8724 (cf. 7.1).";
  }

  identity di-down {
    base di-base-type;
    description
      "Direction Indication of downlink defined in
       RFC 8724 (cf. 7.1).";
  }

  //----------------------------------
  // Matching Operator type definition
  //----------------------------------

  identity mo-base-type {
    description
      "Used to extend Matching Operators with SID values";
  }

  identity mo-equal {
    base mo-base-type;
    description
      "Equal MO as defined RFC 8724 (cf. 7.3)";
  }

  identity mo-ignore {
    base mo-base-type;
    description
      "Ignore MO as defined RFC 8724 (cf. 7.3)";
  }

  identity mo-msb {
    base mo-base-type;
    description
      "MSB MO as defined RFC 8724 (cf. 7.3)";
  }

  identity mo-match-mapping {
    base mo-base-type;
    description
      "match-mapping MO as defined RFC 8724 (cf. 7.3)";
  }

  //------------------------------
  // CDA type definition
  //------------------------------

  identity cda-base-type {
    description
      "Compression Decompression Actions.";
  }

  identity cda-not-sent {
    base cda-base-type;
    description
      "not-sent CDA as defines in RFC 8724 (cf. 7.4).";
  }

  identity cda-value-sent {
    base cda-base-type;
    description
      "value-sent CDA as defines in RFC 8724 (cf. 7.4).";
  }

  identity cda-lsb {
    base cda-base-type;
    description
      "LSB CDA as defines in RFC 8724 (cf. 7.4).";
  }

  identity cda-mapping-sent {
    base cda-base-type;
    description
      "mapping-sent CDA as defines in RFC 8724 (cf. 7.4).";
  }

  identity cda-compute-length {
    base cda-base-type;
    description
      "compute-length CDA as defines in RFC 8724 (cf. 7.4)";
  }

  identity cda-compute-checksum {
    base cda-base-type;
    description
      "compute-checksum CDA as defines in RFC 8724 (cf. 7.4)";
  }

  identity cda-deviid {
    base cda-base-type;
    description
      "deviid CDA as defines in RFC 8724 (cf. 7.4)";
  }

  identity cda-appiid {
    base cda-base-type;
    description
      "appiid CDA as defines in RFC 8724 (cf. 7.4)";
  }

  // -- type definition

  typedef fid-type {
    type identityref {
      base fid-base-type;
    }
    description
      "Field ID generic type.";
  }

  typedef fl-type {
    type union {
      type int64; /* positive length in bits */
      type identityref { /* function */
        base fl-base-type;
      }
    }
    description
      "Field length either a positive integer giving the size in bits
       or a function defined through an identityref.";
  }

  typedef di-type {
    type identityref {
      base di-base-type;
    }
    description
      "Direction in LPWAN network, up when emitted by the device,
       down when received by the device, bi when emitted or
       received by the device.";
  }

  typedef mo-type {
    type identityref {
      base mo-base-type;
    }
    description
      "Matching Operator (MO) to compare fields values with
       target values";
  }

  typedef cda-type {
    type identityref {
      base cda-base-type;
    }
    description
      "Compression Decompression Action to compression or
       decompress a field.";
  }

  // -- FRAGMENTATION TYPE
  // -- fragmentation modes

  identity fragmentation-mode-base-type {
    description
      "fragmentation mode.";
  }

  identity fragmentation-mode-no-ack {
    base fragmentation-mode-base-type;
    description
      "No-ACK of RFC8724.";
  }

  identity fragmentation-mode-ack-always {
    base fragmentation-mode-base-type;
    description
      "ACK-Always of RFC8724.";
  }

  identity fragmentation-mode-ack-on-error {
    base fragmentation-mode-base-type;
    description
      "ACK-on-Error of RFC8724.";
  }

  typedef fragmentation-mode-type {
    type identityref {
      base fragmentation-mode-base-type;
    }
    description
      "type used in rules";
  }

  // -- Ack behavior 

  identity ack-behavior-base-type {
    description
      "Define when to send an Acknowledgment .";
  }

  identity ack-behavior-after-All0 {
    base ack-behavior-base-type;
    description
      "Fragmentation expects Ack after sending All0 fragment.";
  }

  identity ack-behavior-after-All1 {
    base ack-behavior-base-type;
    description
      "Fragmentation expects Ack after sending All1 fragment.";
  }

  identity ack-behavior-by-layer2 {
    base ack-behavior-base-type;
    description
      "Layer 2 defines when to send an Ack.";
  }

  typedef ack-behavior-type {
    type identityref {
      base ack-behavior-base-type;
    }
    description
      "Type used in rules.";
  }

  // -- All1 with data types

  identity all1-data-base-type {
    description
      "Type to define when to send an Acknowledgment message.";
  }

  identity all1-data-no {
    base all1-data-base-type;
    description
      "All1 contains no tiles.";
  }

  identity all1-data-yes {
    base all1-data-base-type;
    description
      "All1 MUST contain a tile.";
  }

  identity all1-data-sender-choice {
    base all1-data-base-type;
    description
      "Fragmentation process choose to send tiles or not in all1.";
  }

  typedef all1-data-type {
    type identityref {
      base all1-data-base-type;
    }
    description
      "Type used in rules.";
  }

  // -- RCS algorithm types

  identity rcs-algorithm-base-type {
    description
      "Identify which algorithm is used to compute RSC.
       The algorithm also defines the size if the RSC field.";
  }

  identity rcs-RFC8724 {
    base rcs-algorithm-base-type;
    description
      "CRC 32 defined as default RCS in RFC8724. RCS is 4 byte-long";
  }

  typedef rcs-algorithm-type {
    type identityref {
      base rcs-algorithm-base-type;
    }
    description
      "type used in rules.";
  }

  // --------  RULE ENTRY DEFINITION ------------

  grouping tv-struct {
    description
      "Define the target value element. Always a binary type, strings
       must be converted to binary. field-id allows the conversion
       to the appropriate type.";
    leaf value {
      type binary;
      description
        "Target Value";
    }
    leaf position {
      type uint16;
      description
        "If only one element position is 0, otherwise position is the
         the position in the matching list.";
    }
  }

  grouping compression-rule-entry {
    description
      "These entries defines a compression entry (i.e. a line)
       as defined in RFC 8724 and fragmentation parameters.

       +-------+--+--+--+------------+-----------------+---------------+
       |Field 1|FL|FP|DI|Target Value|Matching Operator|Comp/Decomp Act|
       +-------+--+--+--+------------+-----------------+---------------+

       An entry in a compression rule is composed of 7 elements:
       - Field ID: The header field to be compressed. The content is a
         YANG identifer.
       - Field Length : either a positive integer of a function defined
         as a YANF id.
       - Field Position: a positive (and possibly equal to 0) integer.
       - Direction Indicator: a YANG identifier giving the direction.
       - Target value: a value against which the header Field is
         compared.
       - Matching Operator: a YANG id giving the operation, paramters
         may be associated to that operator.
       - Comp./Decomp. Action: A YANG id giving the compression or
         decompression action, paramters may be associated to that
         action.
      ";
    leaf field-id {
      type schc:fid-type;
      mandatory true;
      description
        "Field ID, identify a field in the header with a YANG
         referenceid.";
    }
    leaf field-length {
      type schc:fl-type;
      mandatory true;
      description
        "Field Length in bit or through a function defined as a
         YANG referenceid.";
    }
    leaf field-position {
      type uint8;
      mandatory true;
      description
        "Field position in the header is a integer. If the field is not
         repeated in the header the value is 1, and incremented for each
         repetition of the field. Position 0 means that the position is
         not important and order may change when decompressed";
    }
    leaf direction-indicator {
      type schc:di-type;
      mandatory true;
      description
        "Direction Indicator, a YANG referenceid to say if the packet
         is bidirectional, up or down";
    }
    list target-value {
      key "position";
      uses tv-struct;
      description
        "A list of value to compare with the header field value.
         If target value is a singleton, position must be 0.
         For matching-list, should be consecutive position
         values starting from 1.";
    }
    leaf matching-operator {
      type schc:mo-type;
      must "../target-value or derived-from-or-self(., 'mo-ignore')" {
        error-message 
            "mo-equal, mo-msb and mo-match-mapping need target-value";
        description
          "target-value is not required for mo-ignore";
      }
      must "not (derived-from-or-self(., 'mo-msb')) or
            ../matching-operator-value" {
        error-message "mo-msb requires length value";
      }
      mandatory true;
      description
        "MO: Matching Operator";
    }
    list matching-operator-value {
      key "position";
      uses tv-struct;
      description
        "Matching Operator Arguments, based on TV structure to allow
         several arguments.
         In RFC 8724, only MSB define a single argument: length in
         bits";
    }
    leaf comp-decomp-action {
      type schc:cda-type;
      mandatory true;
      description
        "CDA: Compression Decompression Action.";
    }
    list comp-decomp-action-value {
      key "position";
      uses tv-struct;
      description
        "CDA Arguments, based on TV structure to allow several
         arguments. In RFC 8724, no argument is defined for CDA.";
    }
  }

  grouping compression-content {
    list entry {
      key "field-id field-position direction-indicator";
      uses compression-rule-entry;
      description
        "A compression rule is a list of rule entry describing
         each header field. An entry is identifed through a field-id,
         its position in the packet and its direction.";
    }
    description
      "Define a compression rule composed of a list of entries.";
  }

  grouping fragmentation-content {
    description
      "This grouping defines the fragmentation parameters for
       all the modes (No ACK, ACK-Always and ACK-on-Error) specified in
       RFC 8724.";
    leaf fragmentation-mode {
      type schc:fragmentation-mode-type;
      mandatory true;
      description
        "which fragmentation mode is used (noAck, AckAlways,
         AckonError)";
    }
    leaf l2-word-size {
      type uint8;
      default "8";
      description
        "Size in bit of the layer 2 word";
    }
    leaf direction {
      type schc:di-type;
      must "derived-from-or-self(., 'di-up') or
            derived-from-or-self(., 'di-down')" {
        error-message 
            "direction for fragmentation rules are up or down.";
      }
      mandatory true;
      description
        "Should be up or down, bi directionnal is forbiden.";
    }
    // SCHC Frag header format 
    leaf dtag-size {
      type uint8;
      default "0";
      description
        "Size in bit of the DTag field (T variable from RFC8724).";
    }
    leaf w-size {
      when "derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-on-error') 
            or
            derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-always') ";
      type uint8;
      description
        "Size in bit of the window field (M variable from RFC8724).";
    }
    leaf fcn-size {
      type uint8;
      mandatory true;
      description
        "Size in bit of the FCN field (M variable from RFC8724).";
    }
    leaf rcs-algorithm {
      type rcs-algorithm-type;
      default "schc:rcs-RFC8724";
      description
        "Algoritm used for RCS. The algorithm spedifies the RCS size";
    }
    // SCHC fragmentation protocol paramters
    leaf maximum-packet-size {
      type uint16;
      default "1280";
      description
        "When decompression is done, packet size must not
         strictly exceed this limit in Bytes.";
    }
    leaf window-size {
      type uint16;
      description
        "By default, if not specified 2^w-size - 1. Should not exceed
         this value. Possible FCN values are between 0 and 
         window-size-1.";
    }
    leaf max-interleaved-frames {
      type uint8;
      default "1";
      description
        "Maximum of simultaneously fragmented frames. Maximum value is
        2^dtag-size. All DTAG values can be used, but only 
        max-interleaved-frames must be active.";
    }
    leaf inactivity-timer {
      type uint64;
      description
        "Duration is seconds of the inactivity timer, 0 indicates 
        the timer is disabled.";
    }
    leaf retransmission-timer {
      when "derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-on-error') 
            or
            derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-always') ";
      type uint64 {
        range "1..max";
      }
      description
        "Duration in seconds of the retransmission timer.";
    }
    leaf max-ack-requests {
      when "derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-on-error') 
            or
            derived-from(../fragmentation-mode, 
                                'fragmentation-mode-ack-always') ";
      type uint8 {
        range "1..max";
      }
      description
        "The maximum number of retries for a specific SCHC ACK.";
    }
    choice mode {
      case no-ack;
      case ack-always;
      case ack-on-error {
        leaf tile-size {
          when "derived-from(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type uint8;
          description
            "Size in bit of tiles, if not specified or set to 0,
             tile fills the fragment.";
        }
        leaf tile-in-All1 {
          when "derived-from(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type schc:all1-data-type;
          description
            "When true, sender and receiver except a tile in
             All-1 frag.";
        }
        leaf ack-behavior {
          when "derived-from(../fragmentation-mode,
                             'fragmentation-mode-ack-on-error')";
          type schc:ack-behavior-type;
          description
            "Sender behavior to acknowledge, after All-0, All-1 or
             when the LPWAN allows it (Always).";
        }
      }
      description
        "RFC 8724 defines 3 fragmentation modes.";
    } 
  }

  // Define rule ID. Rule ID is composed of a RuleID value and a 
  // Rule ID Length

  grouping rule-id-type {
    leaf rule-id-value {
      type uint32;
      description
        "Rule ID value, this value must be unique combined with
         the length.";
    }
    leaf rule-id-length {
      type uint8 {
        range "0..32";
      }
      description
        "Rule ID length in bits, value 0 is for implicit rules.";
    }
    description
      "A rule ID is composed of a value and a length in bit.";
  }

  // SCHC table for a specific device.

  container schc {
    list rule {
      key "rule-id-value rule-id-length";
      uses rule-id-type;
      choice nature {
        case fragmentation {
          if-feature "fragmentation";
          uses fragmentation-content;
        }
        case compression {
          if-feature "compression";
          uses compression-content;
        }
        case no-compression {
          description
            "RFC8724 allows a rule for uncompressed headers.";
        }
        description
          "A rule is either for compression, no compression or
           fragmentation.";
      }
      description
        "Set of rules compression, no compression or fragmentation
         rules identified by their rule-id.";
    }
    description
      "a SCHC set of rules is composed of a list of rule which are
       either compression or fragmentation.";
  }
}
<code ends>
]]></artwork></figure>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference anchor='RFC8724' target='https://www.rfc-editor.org/info/rfc8724'>
<front>
<title>SCHC: Generic Framework for Static Context Header Compression and Fragmentation</title>
<author fullname='A. Minaburo' initials='A.' surname='Minaburo'><organization/></author>
<author fullname='L. Toutain' initials='L.' surname='Toutain'><organization/></author>
<author fullname='C. Gomez' initials='C.' surname='Gomez'><organization/></author>
<author fullname='D. Barthel' initials='D.' surname='Barthel'><organization/></author>
<author fullname='JC. Zuniga' initials='JC.' surname='Zuniga'><organization/></author>
<date month='April' year='2020'/>
<abstract><t>This document defines the Static Context Header Compression and fragmentation (SCHC) framework, which provides both a header compression mechanism and an optional fragmentation mechanism. SCHC has been designed with Low-Power Wide Area Networks (LPWANs) in mind.</t><t>SCHC compression is based on a common static context stored both in the LPWAN device and in the network infrastructure side. This document defines a generic header compression mechanism and its application to compress IPv6/UDP headers.</t><t>This document also specifies an optional fragmentation and reassembly mechanism. It can be used to support the IPv6 MTU requirement over the LPWAN technologies. Fragmentation is needed for IPv6 datagrams that, after SCHC compression or when such compression was not possible, still exceed the Layer 2 maximum payload size.</t><t>The SCHC header compression and fragmentation mechanisms are independent of the specific LPWAN technology over which they are used. This document defines generic functionalities and offers flexibility with regard to parameter settings and mechanism choices. This document standardizes the exchange over the LPWAN between two SCHC entities. Settings and choices specific to a technology or a product are expected to be grouped into profiles, which are specified in other documents. Data models for the context and profiles are out of scope.</t></abstract>
</front>
<seriesInfo name='RFC' value='8724'/>
<seriesInfo name='DOI' value='10.17487/RFC8724'/>
</reference>



<reference anchor='RFC8824' target='https://www.rfc-editor.org/info/rfc8824'>
<front>
<title>Static Context Header Compression (SCHC) for the Constrained Application Protocol (CoAP)</title>
<author fullname='A. Minaburo' initials='A.' surname='Minaburo'><organization/></author>
<author fullname='L. Toutain' initials='L.' surname='Toutain'><organization/></author>
<author fullname='R. Andreasen' initials='R.' surname='Andreasen'><organization/></author>
<date month='June' year='2021'/>
<abstract><t>This document defines how to compress Constrained Application Protocol (CoAP) headers using the Static Context Header Compression and fragmentation (SCHC) framework. SCHC defines a header compression mechanism adapted for Constrained Devices. SCHC uses a static description of the header to reduce the header's redundancy and size. While RFC 8724 describes the SCHC compression and fragmentation framework, and its application for IPv6/UDP headers, this document applies SCHC to CoAP headers. The CoAP header structure differs from IPv6 and UDP, since CoAP uses a flexible header with a variable number of options, themselves of variable length. The CoAP message format is asymmetric: the request messages have a header format different from the format in the response messages. This specification gives guidance on applying SCHC to flexible headers and how to leverage the asymmetry for more efficient compression Rules.</t></abstract>
</front>
<seriesInfo name='RFC' value='8824'/>
<seriesInfo name='DOI' value='10.17487/RFC8824'/>
</reference>




    </references>




  </back>

<!-- ##markdown-source:
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
YQeDOi9gC+r8L/QumjboCAEA

-->

</rfc>

