1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
|
Internet Research Task Force (IRTF) C. Gündoğan
Request for Comments: 9139 T. Schmidt
Category: Experimental HAW Hamburg
ISSN: 2070-1721 M. Wählisch
link-lab & FU Berlin
C. Scherb
FHNW
C. Marxer
C. Tschudin
University of Basel
November 2021
Information-Centric Networking (ICN) Adaptation to Low-Power Wireless
Personal Area Networks (LoWPANs)
Abstract
This document defines a convergence layer for Content-Centric
Networking (CCNx) and Named Data Networking (NDN) over IEEE 802.15.4
Low-Power Wireless Personal Area Networks (LoWPANs). A new frame
format is specified to adapt CCNx and NDN packets to the small MTU
size of IEEE 802.15.4. For that, syntactic and semantic changes to
the TLV-based header formats are described. To support compatibility
with other LoWPAN technologies that may coexist on a wireless medium,
the dispatching scheme provided by IPv6 over LoWPAN (6LoWPAN) is
extended to include new dispatch types for CCNx and NDN.
Additionally, the fragmentation component of the 6LoWPAN dispatching
framework is applied to Information-Centric Network (ICN) chunks. In
its second part, the document defines stateless and stateful
compression schemes to improve efficiency on constrained links.
Stateless compression reduces TLV expressions to static header fields
for common use cases. Stateful compression schemes elide states
local to the LoWPAN and replace names in Data packets by short local
identifiers.
This document is a product of the IRTF Information-Centric Networking
Research Group (ICNRG).
Status of This Memo
This document is not an Internet Standards Track specification; it is
published for examination, experimental implementation, and
evaluation.
This document defines an Experimental Protocol for the Internet
community. This document is a product of the Internet Research Task
Force (IRTF). The IRTF publishes the results of Internet-related
research and development activities. These results might not be
suitable for deployment. This RFC represents the consensus of the
Information-Centric Networking Research Group of the Internet
Research Task Force (IRTF). Documents approved for publication by
the IRSG are not candidates for any level of Internet Standard; see
Section 2 of RFC 7841.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
https://www.rfc-editor.org/info/rfc9139.
Copyright Notice
Copyright (c) 2021 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(https://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document.
Table of Contents
1. Introduction
2. Terminology
3. Overview of ICN LoWPAN
3.1. Link-Layer Convergence
3.2. Stateless Header Compression
3.3. Stateful Header Compression
4. IEEE 802.15.4 Adaptation
4.1. LoWPAN Encapsulation
4.1.1. Dispatch Extensions
4.2. Adaptation-Layer Fragmentation
5. Space-Efficient Message Encoding for NDN
5.1. TLV Encoding
5.2. Name TLV Compression
5.3. Interest Messages
5.3.1. Uncompressed Interest Messages
5.3.2. Compressed Interest Messages
5.3.3. Dispatch Extension
5.4. Data Messages
5.4.1. Uncompressed Data Messages
5.4.2. Compressed Data Messages
5.4.3. Dispatch Extension
6. Space-Efficient Message Encoding for CCNx
6.1. TLV Encoding
6.2. Name TLV Compression
6.3. Interest Messages
6.3.1. Uncompressed Interest Messages
6.3.2. Compressed Interest Messages
6.3.3. Dispatch Extension
6.4. Content Objects
6.4.1. Uncompressed Content Objects
6.4.2. Compressed Content Objects
6.4.3. Dispatch Extension
7. Compressed Time Encoding
8. Stateful Header Compression
8.1. LoWPAN-Local State
8.2. En Route State
8.3. Integrating Stateful Header Compression
9. ICN LoWPAN Constants and Variables
10. Implementation Report and Guidance
10.1. Preferred Configuration
10.2. Further Experimental Deployments
11. Security Considerations
12. IANA Considerations
12.1. Updates to the 6LoWPAN Dispatch Type Field Registry
13. References
13.1. Normative References
13.2. Informative References
Appendix A. Estimated Size Reduction
A.1. NDN
A.1.1. Interest
A.1.2. Data
A.2. CCNx
A.2.1. Interest
A.2.2. Content Object
Acknowledgments
Authors' Addresses
1. Introduction
The Internet of Things (IoT) has been identified as a promising
deployment area for Information-Centric Networking (ICN), as
infrastructureless access to content, resilient forwarding, and in-
network data replication demonstrates notable advantages over the
Internet host-to-host approach [NDN-EXP1] [NDN-EXP2]. Recent studies
[NDN-MAC] have shown that an appropriate mapping to link-layer
technologies has a large impact on the practical performance of an
ICN. This will be even more relevant in the context of IoT
communication where nodes often exchange messages via low-power
wireless links under lossy conditions. In this memo, we address the
base adaptation of data chunks to such link layers for the ICN
flavors NDN [NDN] and CCNx [RFC8569] [RFC8609].
The IEEE 802.15.4 [ieee802.15.4] link layer is used in low-power and
lossy networks (see LLN in [RFC7228]), in which devices are typically
battery operated and constrained in resources. Characteristics of
LLNs include an unreliable environment, low-bandwidth transmissions,
and increased latencies. IEEE 802.15.4 admits a maximum physical-
layer packet size of 127 bytes. The maximum frame header size is 25
bytes, which leaves 102 bytes for the payload. IEEE 802.15.4
security features further reduce this payload length by up to 21
bytes, yielding a net of 81 bytes for CCNx or NDN packet headers,
signatures, and content.
6LoWPAN [RFC4944] [RFC6282] is a convergence layer that provides
frame formats, header compression, and adaptation-layer fragmentation
for IPv6 packets in IEEE 802.15.4 networks. The 6LoWPAN adaptation
introduces a dispatching framework that prepends further information
to 6LoWPAN packets, including a protocol identifier for payload and
meta information about fragmentation.
Prevalent packet formats based on Type-Length-Value (TLV), such as in
CCNx and NDN, are designed to be generic and extensible. This leads
to header verbosity, which is inappropriate in constrained
environments of IEEE 802.15.4 links. This document presents ICN
LoWPAN, a convergence layer for IEEE 802.15.4 motivated by 6LoWPAN.
ICN LoWPAN compresses packet headers of CCNx, as well as NDN, and
allows for an increased effective payload size per packet.
Additionally, reusing the dispatching framework defined by 6LoWPAN
enables compatibility between coexisting wireless deployments of
competing network technologies. This also allows reuse of the
adaptation-layer fragmentation scheme specified by 6LoWPAN for ICN
LoWPAN.
ICN LoWPAN defines a more space-efficient representation of CCNx and
NDN packet formats. This syntactic change is described for CCNx and
NDN separately, as the header formats and TLV encodings differ
notably. For further reductions, default header values suitable for
constrained IoT networks are selected in order to elide corresponding
TLVs. Experimental evaluations of the ICN LoWPAN header compression
schemes in [ICNLOWPAN] illustrate a reduced message overhead, a
shortened message airtime, and an overall decline in power
consumption for typical Class 2 devices [RFC7228] compared to
uncompressed ICN messages.
In a typical IoT scenario (see Figure 1), embedded devices are
interconnected via a quasi-stationary infrastructure using a border
router (BR) that connects the constrained LoWPAN network by some
gateway with the public Internet. In ICN-based IoT networks,
nonlocal Interest and Data messages transparently travel through the
BR up and down between a gateway and the embedded devices situated in
the constrained LoWPAN.
|Gateway Services|
-------------------------
|
,--------,
| |
| BR |
| |
'--------'
LoWPAN
O O
O
O O embedded
O O O devices
O O
Figure 1: IoT Stub Network
The document has received fruitful reviews by members of the ICN
community and the research group (see the Acknowledgments section)
for a period of two years. It is the consensus of ICNRG that this
document should be published in the IRTF Stream of the RFC series.
This document does not constitute an IETF standard.
2. Terminology
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 [RFC2119] [RFC8174] when, and only when, they appear in all
capitals, as shown here.
This document uses the terminology of [RFC7476], [RFC7927], and
[RFC7945] for ICN entities.
The following terms are used in the document and defined as follows:
ICN LoWPAN: Information-Centric Networking over Low-Power Wireless
Personal Area Network
LLN: Low-Power and Lossy Network
CCNx: Content-Centric Networking
NDN: Named Data Networking
byte: synonym for octet
nibble: synonym for 4 bits
time-value: a time offset measured in seconds
time-code: an 8-bit encoded time-value
3. Overview of ICN LoWPAN
3.1. Link-Layer Convergence
ICN LoWPAN provides a convergence layer that maps ICN packets onto
constrained link-layer technologies. This includes features such as
link-layer fragmentation, protocol separation on the link-layer
level, and link-layer address mappings. The stack traversal is
visualized in Figure 2.
Device 1 Device 2
,------------------, Router ,------------------,
| Application . | __________________ | ,-> Application |
|----------------|-| | NDN / CCNx | |-|----------------|
| NDN / CCNx | | | ,--------------, | | | NDN / CCNx |
|----------------|-| |-|--------------|-| |-|----------------|
| ICN LoWPAN | | | | ICN LoWPAN | | | | ICN LoWPAN |
|----------------|-| |-|--------------|-| |-|----------------|
| Link Layer | | | | Link Layer | | | | Link Layer |
'----------------|-' '-|--------------|-' '-|----------------'
'--------' '---------'
Figure 2: ICN LoWPAN Convergence Layer for IEEE 802.15.4
Section 4 of this document defines the convergence layer for IEEE
802.15.4.
3.2. Stateless Header Compression
ICN LoWPAN also defines a stateless header compression scheme with
the main purpose of reducing header overhead of ICN packets. This is
of particular importance for link layers with small MTUs. The
stateless compression does not require preconfiguration of a global
state.
The CCNx and NDN header formats are composed of Type-Length-Value
(TLV) fields to encode header data. The advantage of the TLV format
is its support of variably structured data. The main disadvantage of
the TLV format is the verbosity that results from storing the type
and length of the encoded data.
The stateless header compression scheme makes use of compact bit
fields to indicate the presence of optional TLVs in the uncompressed
packet. The order of set bits in the bit fields corresponds to the
order of each TLV in the packet. Further compression is achieved by
specifying default values and reducing the range of certain header
fields.
Figure 3 demonstrates the stateless header compression idea. In this
example, the first type of the first TLV is removed and the
corresponding bit in the bit field is set. The second TLV represents
a fixed-length TLV (e.g., the Nonce TLV in NDN), so that the Type and
Length fields are removed. The third TLV represents a boolean TLV
(e.g., the MustBeFresh selector in NDN) for which the Type, Length,
and Value fields are elided.
Uncompressed:
Variable-length TLV Fixed-length TLV Boolean TLV
,-----------------------,-----------------------,-------------,
+-------+-------+-------+-------+-------+-------+------+------+
| TYP | LEN | VAL | TYP | LEN | VAL | TYP | LEN |
+-------+-------+-------+-------+-------+-------+------+------+
Compressed:
+---+---+---+---+---+---+---+---+
| 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | Bit Field
+---+---+---+---+---+---+---+---+
| | |
,--' '----, '- Boolean Value
| |
+-------+-------+-------+
| LEN | VAL | VAL |
+-------+-------+-------+
'---------------'-------'
Var-len Value Fixed-len Value
Figure 3: Compression Using a Compact Bit Field -- Bits Encode
the Inclusion of TLVs
Stateless TLV compression for NDN is defined in Section 5. Section 6
defines the stateless TLV compression for CCNx.
The extensibility of this compression is described in Section 4.1.1
and allows future documents to update the compression rules outlined
in this document.
3.3. Stateful Header Compression
ICN LoWPAN further employs two orthogonal, stateful compression
schemes for packet size reductions, which are defined in Section 8.
These mechanisms rely on shared contexts that are either distributed
and maintained in the entire LoWPAN or are generated on demand hop-
wise on a particular Interest-Data path.
The shared context identification is defined in Section 8.1. The
hop-wise name compression "en route" is specified in Section 8.2.
4. IEEE 802.15.4 Adaptation
4.1. LoWPAN Encapsulation
The IEEE 802.15.4 frame header does not provide a protocol identifier
for its payload. This causes problems of misinterpreting frames when
several network layers coexist on the same link. To mitigate errors,
6LoWPAN defines dispatches as encapsulation headers for IEEE 802.15.4
frames (see Section 5 of [RFC4944]). Multiple LoWPAN encapsulation
headers can precede the actual payload, and each encapsulation header
is identified by a dispatch type.
[RFC8025] further specifies dispatch Pages to switch between
different contexts. When a LoWPAN parser encounters a Page switch
LoWPAN encapsulation header, all following encapsulation headers are
interpreted by using a dispatch Page, as specified by the Page switch
header. Pages 0 and 1 are reserved for 6LoWPAN. This document uses
Page 14 (1111 1110 (0xFE)) for ICN LoWPAN.
The base dispatch format (Figure 4) is used and extended by CCNx and
NDN in Sections 5 and 6.
0 1 2 3 ...
+---+---+---+---+---
| 0 | P | M | C |
+---+---+---+---+---
Figure 4: Base Dispatch Format for ICN LoWPAN
P: Protocol
0: The included protocol is NDN.
1: The included protocol is CCNx.
M: Message Type
0: The payload contains an Interest message.
1: The payload contains a Data message.
C: Compression
0: The message is uncompressed.
1: The message is compressed.
ICN LoWPAN frames with compressed CCNx and NDN messages (C=1) use the
extended dispatch format in Figure 5.
0 1 2 3 ... ...
+---+---+---+---+...+---+---+
| 0 | P | M | 1 | |CID|EXT|
+---+---+---+---+...+---+---+
Figure 5: Extended Dispatch Format for Compressed ICN LoWPAN
CID: Context Identifier
0: No context identifiers are present.
1: Context identifier(s) are present (see Section 8.1).
EXT: Extension
0: No extension bytes are present.
1: Extension byte(s) are present (see Section 4.1.1).
The encapsulation format for ICN LoWPAN is displayed in Figure 6.
+------...------+------...-----+--------+-------...-------+-----...
| IEEE 802.15.4 | RFC4944 Disp.| Page | ICN LoWPAN Disp.| Payl. /
+------...------+------...-----+--------+-------...-------+-----...
Figure 6: LoWPAN Encapsulation with ICN LoWPAN
IEEE 802.15.4: The IEEE 802.15.4 header.
RFC4944 Disp.: Optional additional dispatches defined in Section 5.1
of [RFC4944].
Page: Page switch. 14 for ICN LoWPAN.
ICN LoWPAN: Dispatches as defined in Sections 5 and 6.
Payload: The actual (un-)compressed CCNx or NDN message.
4.1.1. Dispatch Extensions
Extension bytes allow for the extensibility of the initial
compression rule set. The base format for an extension byte is
depicted in Figure 7.
0 1 2 3 4 5 6 7
+---+---+---+---+---+---+---+---+
| - | - | - | - | - | - | - |EXT|
+---+---+---+---+---+---+---+---+
Figure 7: Base Format for Dispatch Extensions
EXT: Extension
0: No other extension byte follows.
1: A further extension byte follows.
Extension bytes are numbered according to their order. Future
documents MUST follow the naming scheme EXT_0, EXT_1, ... when
updating or referring to a specific dispatch extension byte.
Amendments that require an exchange of configurational parameters
between devices SHOULD use manifests to encode structured data in a
well-defined format, e.g., as outlined in [ICNRG-FLIC].
4.2. Adaptation-Layer Fragmentation
Small payload sizes in the LoWPAN require fragmentation for various
network layers. Therefore, Section 5.3 of [RFC4944] defines a
protocol-independent fragmentation dispatch type, a fragmentation
header for the first fragment, and a separate fragmentation header
for subsequent fragments. ICN LoWPAN adopts this fragmentation
handling of [RFC4944].
The fragmentation LoWPAN header can encapsulate other dispatch
headers. The order of dispatch types is defined in Section 5 of
[RFC4944]. Figure 8 shows the fragmentation scheme. The reassembled
ICN LoWPAN frame does not contain any fragmentation headers and is
depicted in Figure 9.
+------...------+----...----+--------+------...-------+--------...
| IEEE 802.15.4 | Frag. 1st | Page | ICN LoWPAN | Payload /
+------...------+----...----+--------+------...-------+--------...
+------...------+----...----+--------...
| IEEE 802.15.4 | Frag. 2nd | Payload /
+------...------+----...----+--------...
.
.
.
+------...------+----...----+--------...
| IEEE 802.15.4 | Frag. Nth | Payload /
+------...------+----...----+--------...
Figure 8: Fragmentation Scheme
+------...------+--------+------...-------+--------...
| IEEE 802.15.4 | Page | ICN LoWPAN | Payload /
+------...------+--------+------...-------+--------...
Figure 9: Reassembled ICN LoWPAN Frame
The 6LoWPAN Fragment Forwarding (6LFF) [RFC8930] is an alternative
approach that enables forwarding of fragments without reassembling
packets on every intermediate hop. By reusing the 6LoWPAN
dispatching framework, 6LFF integrates into ICN LoWPAN as seamlessly
as the conventional hop-wise fragmentation. However, experimental
evaluations [SFR-ICNLOWPAN] suggest that a more-refined integration
can increase the cache utilization of forwarders on a request path.
5. Space-Efficient Message Encoding for NDN
5.1. TLV Encoding
The NDN packet format consists of TLV fields using the TLV encoding
that is described in [NDN-PACKET-SPEC]. Type and Length fields are
of variable size, where numbers greater than 252 are encoded using
multiple bytes.
If the type or length number is less than 253, then that number is
encoded into the actual Type or Length field. If the number is
greater or equals 253 and fits into 2 bytes, then the Type or Length
field is set to 253 and the number is encoded in the next following 2
bytes in network byte order, i.e., from the most significant byte
(MSB) to the least significant byte (LSB). If the number is greater
than 2 bytes and fits into 4 bytes, then the Type or Length field is
set to 254 and the number is encoded in the subsequent 4 bytes in
network byte order. For larger numbers, the Type or Length field is
set to 255 and the number is encoded in the subsequent 8 bytes in
network byte order.
In this specification, compressed NDN TLVs encode Type and Length
fields using self-delimiting numeric values (SDNVs) [RFC6256]
commonly known from Delay-Tolerant Networking (DTN) protocols.
Instead of using the first byte as a marker for the number of
following bytes, SDNVs use a single bit to indicate subsequent bytes.
+==========+==========================+==========================+
| Value | NDN TLV Encoding | SDNV Encoding |
+==========+==========================+==========================+
| 0 | 0x00 | 0x00 |
+----------+--------------------------+--------------------------+
| 127 | 0x7F | 0x7F |
+----------+--------------------------+--------------------------+
| 128 | 0x80 | 0x81 0x00 |
+----------+--------------------------+--------------------------+
| 253 | 0xFD 0x00 0xFD | 0x81 0x7D |
+----------+--------------------------+--------------------------+
| 2^14 - 1 | 0xFD 0x3F 0xFF | 0xFF 0x7F |
+----------+--------------------------+--------------------------+
| 2^14 | 0xFD 0x40 0x00 | 0x81 0x80 0x00 |
+----------+--------------------------+--------------------------+
| 2^16 | 0xFE 0x00 0x01 0x00 0x00 | 0x84 0x80 0x00 |
+----------+--------------------------+--------------------------+
| 2^21 - 1 | 0xFE 0x00 0x1F 0xFF 0xFF | 0xFF 0xFF 0x7F |
+----------+--------------------------+--------------------------+
| 2^21 | 0xFE 0x00 0x20 0x00 0x00 | 0x81 0x80 0x80 0x00 |
+----------+--------------------------+--------------------------+
| 2^28 - 1 | 0xFE 0x0F 0xFF 0xFF 0xFF | 0xFF 0xFF 0xFF 0x7F |
+----------+--------------------------+--------------------------+
| 2^28 | 0xFE 0x1F 0x00 0x00 0x00 | 0x81 0x80 0x80 0x80 0x00 |
+----------+--------------------------+--------------------------+
| 2^32 | 0xFF 0x00 0x00 0x00 0x01 | 0x90 0x80 0x80 0x80 0x00 |
| | 0x00 0x00 0x00 0x00 | |
+----------+--------------------------+--------------------------+
| 2^35 - 1 | 0xFF 0x00 0x00 0x00 0x07 | 0xFF 0xFF 0xFF 0xFF 0x7F |
| | 0xFF 0xFF 0xFF 0xFF | |
+----------+--------------------------+--------------------------+
| 2^35 | 0xFF 0x00 0x00 0x00 0x08 | 0x81 0x80 0x80 0x80 0x80 |
| | 0x00 0x00 0x00 0x00 | 0x00 |
+----------+--------------------------+--------------------------+
Table 1: NDN TLV Encoding Compared to SDNVs
Table 1 compares the required bytes for encoding a few selected
values using the NDN TLV encoding and SDNVs. For values up to 127,
both methods require a single byte. Values in the range (128...252)
encode as one byte for the NDN TLV scheme, while SDNVs require two
bytes. Starting at value 253, SDNVs require a less or equal amount
of bytes compared to the NDN TLV encoding.
5.2. Name TLV Compression
This Name TLV compression encodes Length fields of two consecutive
NameComponent TLVs into one byte, using a nibble for each. The most
significant nibble indicates the length of an immediately following
NameComponent TLV. The least significant nibble denotes the length
of a subsequent NameComponent TLV. A length of 0 marks the end of
the compressed Name TLV. The last Length field of an encoded
NameComponent is either 0x00 for a name with an even number of
components and 0xYF (Y > 0) if an odd number of components are
present. This process limits the length of a NameComponent TLV to 15
bytes but allows for an unlimited number of components. An example
for this encoding is presented in Figure 10.
Name: /HAW/Room/481/Humid/99
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 1 1|0 1 0 0| H | A | W |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| R | o | o | m |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|0 0 1 1|0 1 0 1| 4 | 8 | 1 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| H | u | m | i |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| d |0 0 1 0|0 0 0 0| 9 | 9 |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Figure 10: Name TLV Compression for /HAW/Room/481/Humid/99
5.3. Interest Messages
5.3.1. Uncompressed Interest Messages
An uncompressed Interest message uses the base dispatch format (see
Figure 4) and sets the C, P, and M flags to 0 (Figure 11). The
Interest message is handed to the NDN stack without modifications.
0 1 2 3 4 5 6 7
+---+---+---+---+---+---+---+---+
| 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
+---+---+---+---+---+---+---+---+
Figure 11: Dispatch Format for Uncompressed NDN Interest Messages
5.3.2. Compressed Interest Messages
The compressed Interest message uses the extended dispatch format
(Figure 5) and sets the C flag to 1 and the P and M flags to 0. If
an Interest message contains TLVs that are not mentioned in the
following compression rules, then this message MUST be sent
uncompressed.
This specification assumes that a HopLimit TLV is part of the
original Interest message. If such a HopLimit TLV is not present, it
will be inserted with a default value of DEFAULT_NDN_HOPLIMIT prior
to the compression.
In the default use case, the Interest message is compressed with the
following minimal rule set:
1. The Type field of the outermost MessageType TLV is removed.
2. The Name TLV is compressed according to Section 5.2. For this,
all NameComponents are expected to be of type
GenericNameComponent with a length greater than 0. An
ImplicitSha256DigestComponent or ParametersSha256DigestComponent
MAY appear at the end of the name. In any other case, the
message MUST be sent uncompressed.
3. The Nonce TLV and InterestLifetime TLV are moved to the end of
the compressed Interest, as illustrated in Figure 12. The
InterestLifetime is encoded as described in Section 7. On
decompression, this encoding may yield an InterestLifetime that
is smaller than the original value.
4. The Type and Length fields of Nonce TLV, HopLimit TLV, and
InterestLifetime TLV are elided. The Nonce value has a length of
4 bytes, and the HopLimit value has a length of 1 byte. The
compressed InterestLifetime (Section 7) has a length of 1 byte.
The presence of a Nonce TLV and InterestLifetime TLV is deduced
from the remaining length to parse. A remaining length of 1
indicates the presence of an InterestLifetime, a length of 4
indicates the presence of a nonce, and a length of 5 indicates
the presence of both TLVs.
The compressed NDN LoWPAN Interest message is visualized in
Figure 12.
T = Type, L = Length, V = Value
Lc = Compressed Length, Vc = Compressed Value
: = optional field, | = mandatory field
+---------+---------+ +---------+
| Msg T | Msg L | | Msg Lc |
+---------+---------+---------+ +---------+
| Name T | Name L | Name V | | Name Vc |
+---------+---------+---------+ +---------+---------+
: CBPfx T : CBPfx L : : FWDH Lc : FWDH Vc :
+---------+---------+ +---------+---------+
: MBFr T : MBFr L : | HPL V |
+---------+---------+---------+ ==> +---------+---------+
: FWDH T : FWDH L : FWDH V : : APM Lc : APM Vc :
+---------+---------+---------+ +---------+---------+
: NONCE T : NONCE L : NONCE V : : NONCE V :
+---------+---------+---------+ +---------+
: ILT T : ILT L : ILT V : : ILT Vc :
+---------+---------+---------+ +---------+
: HPL T : HPL L : HPL V :
+---------+---------+---------+
: APM T : APM L : APM V :
+---------+---------+---------+
Figure 12: Compression of NDN LoWPAN Interest Message
Further TLV compression is indicated by the ICN LoWPAN dispatch in
Figure 13.
0 1
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
| 0 | 0 | 0 | 1 |PFX|FRE|FWD|APM|DIG| RSV |CID|EXT|
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
Figure 13: Dispatch Format for Compressed NDN Interest Messages
PFX: CanBePrefix TLV
0: The uncompressed message does not include a CanBePrefix TLV.
1: The uncompressed message does include a CanBePrefix TLV and
is removed from the compressed message.
FRE: MustBeFresh TLV
0: The uncompressed message does not include a MustBeFresh TLV.
1: The uncompressed message does include a MustBeFresh TLV and
is removed from the compressed message.
FWD: ForwardingHint TLV
0: The uncompressed message does not include a ForwardingHint
TLV.
1: The uncompressed message does include a ForwardingHint TLV.
The Type field is removed from the compressed message.
Further, all link delegation types and link preference types
are removed. All included names are compressed according to
Section 5.2. If any name is not compressible, the message
MUST be sent uncompressed.
APM: ApplicationParameters TLV
0: The uncompressed message does not include an
ApplicationParameters TLV.
1: The uncompressed message does include an
ApplicationParameters TLV. The Type field is removed from
the compressed message.
DIG: ImplicitSha256DigestComponent TLV
0: The name does not include an ImplicitSha256DigestComponent as
the last TLV.
1: The name does include an ImplicitSha256DigestComponent as the
last TLV. The Type and Length fields are omitted.
RSV: Reserved
Must be set to 0.
CID: Context Identifier
See Figure 5.
EXT: Extension
0: No extension byte follows.
1: Extension byte EXT_0 follows immediately. See Section 5.3.3.
5.3.3. Dispatch Extension
The EXT_0 byte follows the description in Section 4.1.1 and is
illustrated in Figure 14.
0 1 2 3 4 5 6 7
+---+---+---+---+---+---+---+---+
| NCS | RSV |EXT|
+---+---+---+---+---+---+---+---+
Figure 14: EXT_0 Format
NCS: Name Compression Strategy
00: Names are compressed with the default name compression
strategy (see Section 5.2).
01: Reserved.
10: Reserved.
11: Reserved.
RSV: Reserved
Must be set to 0.
EXT: Extension
0: No extension byte follows.
1: A further extension byte follows immediately.
5.4. Data Messages
5.4.1. Uncompressed Data Messages
An uncompressed Data message uses the base dispatch format and sets
the C and P flags to 0 and the M flag to 1 (Figure 15). The Data
message is handed to the NDN stack without modifications.
0 1 2 3 4 5 6 7
+---+---+---+---+---+---+---+---+
| 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
+---+---+---+---+---+---+---+---+
Figure 15: Dispatch Format for Uncompressed NDN Data Messages
5.4.2. Compressed Data Messages
The compressed Data message uses the extended dispatch format
(Figure 5) and sets the C and M flags to 1. The P flag is set to 0.
If a Data message contains TLVs that are not mentioned in the
following compression rules, then this message MUST be sent
uncompressed.
By default, the Data message is compressed with the following base
rule set:
1. The Type field of the outermost MessageType TLV is removed.
2. The Name TLV is compressed according to Section 5.2. For this,
all NameComponents are expected to be of type
GenericNameComponent and to have a length greater than 0. In any
other case, the message MUST be sent uncompressed.
3. The MetaInfo TLV Type and Length fields are elided from the
compressed Data message.
4. The FreshnessPeriod TLV MUST be moved to the end of the
compressed Data message. Type and Length fields are elided, and
the value is encoded as described in Section 7 as a 1-byte time-
code. If the freshness period is not a valid time-value, then
the message MUST be sent uncompressed in order to preserve the
security envelope of the Data message. The presence of a
FreshnessPeriod TLV is deduced from the remaining one-byte length
to parse.
5. The Type fields of the SignatureInfo TLV, SignatureType TLV, and
SignatureValue TLV are removed.
The compressed NDN LoWPAN Data message is visualized in Figure 16.
T = Type, L = Length, V = Value
Lc = Compressed Length, Vc = Compressed Value
: = optional field, | = mandatory field
+---------+---------+ +---------+
| Msg T | Msg L | | Msg Lc |
+---------+---------+---------+ +---------+
| Name T | Name L | Name V | | Name Vc |
+---------+---------+---------+ +---------+---------+
: Meta T : Meta L : : CTyp Lc : CTyp V :
+---------+---------+---------+ +---------+---------+
: CTyp T : CTyp L : CTyp V : : FBID V :
+---------+---------+---------+ ==> +---------+---------+
: FrPr T : FrPr L : FrPr V : : CONT Lc : CONT V :
+---------+---------+---------+ +---------+---------+
: FBID T : FBID L : FBID V : | Sig Lc |
+---------+---------+---------+ +---------+---------+
: CONT T : CONT L : CONT V : | SInf Lc | SInf Vc |
+---------+---------+---------+ +---------+---------+
| Sig T | Sig L | | SVal Lc | SVal Vc |
+---------+---------+---------+ +---------+---------+
| SInf T | SInf L | SInf V | : FrPr Vc :
+---------+---------+---------+ +---------+
| SVal T | SVal L | SVal V |
+---------+---------+---------+
Figure 16: Compression of NDN LoWPAN Data Message
Further TLV compression is indicated by the ICN LoWPAN dispatch in
Figure 17.
0 1
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
| 0 | 0 | 1 | 1 |FBI|CON|KLO| RSV |CID|EXT|
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
Figure 17: Dispatch Format for Compressed NDN Data Messages
FBI: FinalBlockId TLV
0: The uncompressed message does not include a FinalBlockId TLV.
1: The uncompressed message does include a FinalBlockId, and it
is encoded according to Section 5.2. If the FinalBlockId TLV
is not compressible, then the message MUST be sent
uncompressed.
CON: ContentType TLV
0: The uncompressed message does not include a ContentType TLV.
1: The uncompressed message does include a ContentType TLV. The
Type field is removed from the compressed message.
KLO: KeyLocator TLV
0: If the included SignatureType requires a KeyLocator TLV, then
the KeyLocator represents a name and is compressed according
to Section 5.2. If the name is not compressible, then the
message MUST be sent uncompressed.
1: If the included SignatureType requires a KeyLocator TLV, then
the KeyLocator represents a KeyDigest. The Type field of
this KeyDigest is removed.
RSV: Reserved
Must be set to 0.
CID: Context Identifier
See Figure 5.
EXT: Extension
0: No extension byte follows.
1: Extension byte EXT_0 follows immediately. See Section 5.4.3.
5.4.3. Dispatch Extension
The EXT_0 byte follows the description in Section 4.1.1 and is
illustrated in Figure 18.
0 1 2 3 4 5 6 7
+---+---+---+---+---+---+---+---+
| NCS | RSV |EXT|
+---+---+---+---+---+---+---+---+
Figure 18: EXT_0 Format
NCS: Name Compression Strategy
00: Names are compressed with the default name compression
strategy (see Section 5.2).
01: Reserved.
10: Reserved.
11: Reserved.
RSV: Reserved
Must be set to 0.
EXT: Extension
0: No extension byte follows.
1: A further extension byte follows immediately.
6. Space-Efficient Message Encoding for CCNx
6.1. TLV Encoding
The generic CCNx TLV encoding is described in [RFC8609]. Type and
Length fields attain the common fixed length of 2 bytes.
The TLV encoding for CCNx LoWPAN is changed to the more space-
efficient encoding described in Section 5.1. Hence, NDN and CCNx use
the same compressed format for writing TLVs.
6.2. Name TLV Compression
Name TLVs are compressed using the scheme already defined in
Section 5.2 for NDN. If a Name TLV contains T_IPID, T_APP, or
organizational TLVs, then the name remains uncompressed.
6.3. Interest Messages
6.3.1. Uncompressed Interest Messages
An uncompressed Interest message uses the base dispatch format (see
Figure 4) and sets the C and M flags to 0. The P flag is set to 1
(Figure 19). The Interest message is handed to the CCNx stack
without modifications.
0 1 2 3 4 5 6 7
+---+---+---+---+---+---+---+---+
| 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
+---+---+---+---+---+---+---+---+
Figure 19: Dispatch Format for Uncompressed CCNx Interest Messages
6.3.2. Compressed Interest Messages
The compressed Interest message uses the extended dispatch format
(Figure 5) and sets the C and P flags to 1. The M flag is set to 0.
If an Interest message contains TLVs that are not mentioned in the
following compression rules, then this message MUST be sent
uncompressed.
In the default use case, the Interest message is compressed with the
following minimal rule set:
1. The version is elided from the fixed header and assumed to be 1.
2. The Type and Length fields of the CCNx Message TLV are elided and
are obtained from the fixed header on decompression.
The compressed CCNx LoWPAN Interest message is visualized in
Figure 20.
T = Type, L = Length, V = Value
Lc = Compressed Length, Vc = Compressed Value
: = optional field, | = mandatory field
+-----------------------------+ +-------------------------+
| Uncompr. Fixed Header | | Compr. Fixed Header |
+-----------------------------+ +-------------------------+
+---------+---------+---------+ +---------+
: ILT T : ILT L : ILT V : : ILT Vc :
+---------+---------+---------+ +---------+
: MSGH T : MSGH L : MSGH V : : MSGH Vc :
+---------+---------+---------+ +---------+
+---------+---------+ +---------+
| MSGT T | MSGT L | | Name Vc |
+---------+---------+---------+ +---------+
| Name T | Name L | Name V | ==> : KIDR Vc :
+---------+---------+---------+ +---------+
: KIDR T : KIDR L : KIDR V : : OBHR Vc :
+---------+---------+---------+ +---------+---------+
: OBHR T : OBHR L : OBHR V : : PAYL Lc : PAYL V :
+---------+---------+---------+ +---------+---------+
: PAYL T : PAYL L : PAYL V : : VALG Lc : VALG Vc :
+---------+---------+---------+ +---------+---------+
: VALG T : VALG L : VALG V : : VPAY Lc : VPAY V :
+---------+---------+---------+ +---------+---------+
: VPAY T : VPAY L : VPAY V :
+---------+---------+---------+
Figure 20: Compression of CCNx LoWPAN Interest Message
Further TLV compression is indicated by the ICN LoWPAN dispatch in
Figure 21.
0 1
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
| 0 | 1 | 0 | 1 |FLG|PTY|HPL|FRS|PAY|ILT|MGH|KIR|CHR|VAL|CID|EXT|
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
Figure 21: Dispatch Format for Compressed CCNx Interest Messages
FLG: Flags field in the fixed header
0: The Flags field equals 0 and is removed from the Interest
message.
1: The Flags field appears in the fixed header.
PTY: PacketType field in the fixed header
0: The PacketType field is elided and assumed to be PT_INTEREST.
1: The PacketType field is elided and assumed to be PT_RETURN.
HPL: HopLimit field in the fixed header
0: The HopLimit field appears in the fixed header.
1: The HopLimit field is elided and assumed to be 1.
FRS: Reserved field in the fixed header
0: The Reserved field appears in the fixed header.
1: The Reserved field is elided and assumed to be 0.
PAY: Optional Payload TLV
0: The Payload TLV is absent.
1: The Payload TLV is present, and the Type field is elided.
ILT: Optional hop-by-hop InterestLifetime TLV
See Section 6.3.2.1 for further details on the ordering of hop-
by-hop TLVs.
0: No InterestLifetime TLV is present in the Interest message.
1: An InterestLifetime TLV is present with a fixed length of 1
byte and is encoded as described in Section 7. The Type and
Length fields are elided.
MGH: Optional hop-by-hop MessageHash TLV
See Section 6.3.2.1 for further details on the ordering of hop-
by-hop TLVs.
This TLV is expected to contain a T_SHA-256 TLV. If another hash
is contained, then the Interest MUST be sent uncompressed.
0: The MessageHash TLV is absent.
1: A T_SHA-256 TLV is present, and the Type and Length fields
are removed. The Length field is assumed to represent 32
bytes. The outer Message Hash TLV is omitted.
KIR: Optional KeyIdRestriction TLV
This TLV is expected to contain a T_SHA-256 TLV. If another hash
is contained, then the Interest MUST be sent uncompressed.
0: The KeyIdRestriction TLV is absent.
1: A T_SHA-256 TLV is present, and the Type and Length fields
are removed. The Length field is assumed to represent 32
bytes. The outer KeyIdRestriction TLV is omitted.
CHR: Optional ContentObjectHashRestriction TLV
This TLV is expected to contain a T_SHA-256 TLV. If another hash
is contained, then the Interest MUST be sent uncompressed.
0: The ContentObjectHashRestriction TLV is absent.
1: A T_SHA-256 TLV is present, and the Type and Length fields
are removed. The Length field is assumed to represent 32
bytes. The outer ContentObjectHashRestriction TLV is
omitted.
VAL: Optional ValidationAlgorithm and ValidationPayload TLVs
0: No validation-related TLVs are present in the Interest
message.
1: Validation-related TLVs are present in the Interest message.
An additional byte follows immediately that handles
validation-related TLV compressions and is described in
Section 6.3.2.2.
CID: Context Identifier
See Figure 5.
EXT: Extension
0: No extension byte follows.
1: Extension byte EXT_0 follows immediately. See Section 6.3.3.
6.3.2.1. Hop-By-Hop Header TLVs Compression
Hop-by-hop header TLVs are unordered. For an Interest message, two
optional hop-by-hop header TLVs are defined in [RFC8609], but several
more can be defined in higher-level specifications. For the
compression specified in the previous section, the hop-by-hop TLVs
are ordered as follows:
1. InterestLifetime TLV
2. Message Hash TLV
Note: All hop-by-hop header TLVs other than the InterestLifetime and
MessageHash TLVs remain uncompressed in the encoded message, and they
appear after the InterestLifetime and MessageHash TLVs in the same
order as in the original message.
6.3.2.2. Validation
0 1 2 3 4 5 6 7 8
+-------+-------+-------+-------+-------+-------+-------+-------+
| ValidationAlg | KeyID | RSV |
+-------+-------+-------+-------+-------+-------+-------+-------+
Figure 22: Dispatch for Interest Validations
ValidationAlg: Optional ValidationAlgorithm TLV
0000: An uncompressed ValidationAlgorithm TLV is included.
0001: A T_CRC32C ValidationAlgorithm TLV is assumed, but no
ValidationAlgorithm TLV is included.
0010: A T_CRC32C ValidationAlgorithm TLV is assumed, but no
ValidationAlgorithm TLV is included. Additionally, a
SignatureTime TLV is inlined without a Type and a Length
field.
0011: A T_HMAC-SHA256 ValidationAlgorithm TLV is assumed, but
no ValidationAlgorithm TLV is included.
0100: A T_HMAC-SHA256 ValidationAlgorithm TLV is assumed, but
no ValidationAlgorithm TLV is included. Additionally, a
SignatureTime TLV is inlined without a Type and a Length
field.
0101: Reserved.
0110: Reserved.
0111: Reserved.
1000: Reserved.
1001: Reserved.
1010: Reserved.
1011: Reserved.
1100: Reserved.
1101: Reserved.
1110: Reserved.
1111: Reserved.
KeyID: Optional KeyID TLV within the ValidationAlgorithm TLV
00: The KeyID TLV is absent.
01: The KeyID TLV is present and uncompressed.
10: A T_SHA-256 TLV is present, and the Type and Length fields
are removed. The Length field is assumed to represent 32
bytes. The outer KeyID TLV is omitted.
11: A T_SHA-512 TLV is present, and the Type and Length fields
are removed. The Length field is assumed to represent 64
bytes. The outer KeyID TLV is omitted.
RSV: Reserved
Must be set to 0.
The ValidationPayload TLV is present if the ValidationAlgorithm TLV
is present. The Type field is omitted.
6.3.3. Dispatch Extension
The EXT_0 byte follows the description in Section 4.1.1 and is
illustrated in Figure 23.
0 1 2 3 4 5 6 7
+---+---+---+---+---+---+---+---+
| NCS | RSV |EXT|
+---+---+---+---+---+---+---+---+
Figure 23: EXT_0 Format
NCS: Name Compression Strategy
00: Names are compressed with the default name compression
strategy (see Section 5.2).
01: Reserved.
10: Reserved.
11: Reserved.
RSV: Reserved
Must be set to 0.
EXT: Extension
0: No extension byte follows.
1: A further extension byte follows immediately.
6.4. Content Objects
6.4.1. Uncompressed Content Objects
An uncompressed Content Object uses the base dispatch format (see
Figure 4) and sets the C flag to 0 and the P and M flags to 1
(Figure 24). The Content Object is handed to the CCNx stack without
modifications.
0 1 2 3 4 5 6 7
+---+---+---+---+---+---+---+---+
| 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 |
+---+---+---+---+---+---+---+---+
Figure 24: Dispatch Format for Uncompressed CCNx Content Objects
6.4.2. Compressed Content Objects
The compressed Content Object uses the extended dispatch format
(Figure 5) and sets the C, P, and M flags to 1. If a Content Object
contains TLVs that are not mentioned in the following compression
rules, then this message MUST be sent uncompressed.
By default, the Content Object is compressed with the following base
rule set:
1. The version is elided from the fixed header and assumed to be 1.
2. The PacketType field is elided from the fixed header.
3. The Type and Length fields of the CCNx Message TLV are elided and
are obtained from the fixed header on decompression.
The compressed CCNx LoWPAN Data message is visualized in Figure 25.
T = Type, L = Length, V = Value
Lc = Compressed Length, Vc = Compressed Value
: = optional field, | = mandatory field
+-----------------------------+ +-------------------------+
| Uncompr. Fixed Header | | Compr. Fixed Header |
+-----------------------------+ +-------------------------+
+---------+---------+---------+ +---------+
: RCT T : RCT L : RCT V : : RCT Vc :
+---------+---------+------.--+ +---------+
: MSGH T : MSGH L : MSGH V : : MSGH Vc :
+---------+---------+---------+ +---------+
+---------+---------+ +---------+
| MSGT T | MSGT L | | Name Vc |
+---------+---------+---------+ +---------+
| Name T | Name L | Name V | ==> : EXPT Vc :
+---------+---------+---------+ +---------+---------+
: PTYP T : PTYP L : PTYP V : : PAYL Lc : PAYL V :
+---------+---------+---------+ +---------+---------+
: EXPT T : EXPT L : EXPT V : : VALG Lc : VALG Vc :
+---------+---------+---------+ +---------+---------+
: PAYL T : PAYL L : PAYL V : : VPAY Lc : VPAY V :
+---------+---------+---------+ +---------+---------+
: VALG T : VALG L : VALG V :
+---------+---------+---------+
: VPAY T : VPAY L : VPAY V :
+---------+---------+---------+
Figure 25: Compression of CCNx LoWPAN Data Message
Further TLV compression is indicated by the ICN LoWPAN dispatch in
Figure 26.
0 1
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
| 0 | 1 | 1 | 1 |FLG|FRS|PAY|RCT|MGH| PLTYP |EXP|VAL|RSV|CID|EXT|
+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+---+
Figure 26: Dispatch Format for Compressed CCNx Content Objects
FLG: Flags field in the fixed header
See Section 6.3.2.
FRS: Reserved field in the fixed header
See Section 6.3.2.
PAY: Optional Payload TLV
See Section 6.3.2.
RCT: Optional hop-by-hop Recommended Cache Time TLV
0: The Recommended Cache Time TLV is absent.
1: The Recommended Cache Time TLV is present, and the Type and
Length fields are elided.
MGH: Optional hop-by-hop MessageHash TLV
See Section 6.4.2.1 for further details on the ordering of hop-
by-hop TLVs.
This TLV is expected to contain a T_SHA-256 TLV. If another hash
is contained, then the Content Object MUST be sent uncompressed.
0: The MessageHash TLV is absent.
1: A T_SHA-256 TLV is present, and the Type and Length fields
are removed. The Length field is assumed to represent 32
bytes. The outer Message Hash TLV is omitted.
PLTYP: Optional PayloadType TLV
00: The PayloadType TLV is absent.
01: The PayloadType TLV is absent, and T_PAYLOADTYPE_DATA is
assumed.
10: The PayloadType TLV is absent, and T_PAYLOADTYPE_KEY is
assumed.
11: The PayloadType TLV is present and uncompressed.
EXP: Optional ExpiryTime TLV
0: The ExpiryTime TLV is absent.
1: The ExpiryTime TLV is present, and the Type and Length fields
are elided.
VAL: Optional ValidationAlgorithm and ValidationPayload TLVs
See Section 6.3.2.
RSV: Reserved
Must be set to 0.
CID: Context Identifier
See Figure 5.
EXT: Extension
0: No extension byte follows.
1: Extension byte EXT_0 follows immediately. See Section 6.4.3.
6.4.2.1. Hop-By-Hop Header TLVs Compression
Hop-by-hop header TLVs are unordered. For a Content Object message,
two optional hop-by-hop header TLVs are defined in [RFC8609], but
several more can be defined in higher-level specifications. For the
compression specified in the previous section, the hop-by-hop TLVs
are ordered as follows:
1. Recommended Cache Time TLV
2. Message Hash TLV
Note: All hop-by-hop header TLVs other than the RecommendedCacheTime
and MessageHash TLVs remain uncompressed in the encoded message, and
they appear after the RecommendedCacheTime and MessageHash TLVs in
the same order as in the original message.
6.4.3. Dispatch Extension
The EXT_0 byte follows the description in Section 4.1.1 and is
illustrated in Figure 27.
0 1 2 3 4 5 6 7
+---+---+---+---+---+---+---+---+
| NCS | RSV |EXT|
+---+---+---+---+---+---+---+---+
Figure 27: EXT_0 Format
NCS: Name Compression Strategy
00: Names are compressed with the default name compression
strategy (see Section 5.2).
01: Reserved.
10: Reserved.
11: Reserved.
RSV: Reserved
Must be set to 0.
EXT: Extension
0: No extension byte follows.
1: A further extension byte follows immediately.
7. Compressed Time Encoding
This document adopts the 8-bit compact time representation for
relative time-values described in Section 5 of [RFC5497] with the
constant factor C set to C := 1/32.
Valid time offsets in CCNx and NDN range from a few milliseconds
(e.g., lifetime of low-latency Interests) to several years (e.g.,
content freshness periods in caches). Therefore, this document adds
two modifications to the compression algorithm.
The first modification is the inclusion of a subnormal form
[IEEE.754.2019] for time-codes with exponent 0 to provide an
increased precision and a gradual underflow for the smallest numbers.
The formula is changed as follows (a := mantissa, b := exponent):
Subnormal (b == 0): (0 + a/8) * 2 * C
Normalized (b > 0): (1 + a/8) * 2^b * C (see [RFC5497])
This configuration allows for the following ranges:
* Minimum subnormal number: 0 seconds
* 2nd minimum subnormal number: ~0.007812 seconds
* Maximum subnormal number: ~0.054688 seconds
* Minimum normalized number: ~0.062500 seconds
* 2nd minimum normalized number: ~0.070312 seconds
* Maximum normalized number: ~3.99 years
The second modification only applies to uncompressible time offsets
that are outside any security envelope. An invalid time-value MUST
be set to the largest valid time-value that is smaller than the
invalid input value before compression.
8. Stateful Header Compression
Stateful header compression in ICN LoWPAN enables packet size
reductions in two ways. First, common information that is shared
throughout the local LoWPAN may be memorized in the context state at
all nodes and omitted from communication. Second, redundancy in a
single Interest-Data exchange may be removed from ICN stateful
forwarding on a hop-by-hop basis and memorized in en route state
tables.
8.1. LoWPAN-Local State
A Context Identifier (CID) is a byte that refers to a particular
conceptual context between network devices and MAY be used to replace
frequently appearing information, such as name prefixes, suffixes, or
meta information, such as Interest lifetime.
0 1 2 3 4 5 6 7
+---+---+---+---+---+---+---+---+
| X | CID |
+---+---+---+---+---+---+---+---+
Figure 28: Context Identifier
The 7-bit CID is a locally scoped unique identifier that represents
the context state shared between the sender and receiver of the
corresponding frame (see Figure 28). If set, the most significant
bit indicates the presence of another, subsequent CID byte (see
Figure 33).
The context state shared between senders and receivers is removed
from the compressed packet prior to sending and reinserted after
reception prior to passing to the upper stack.
The actual information in a context and how it is encoded are out of
scope of this document. The initial distribution and maintenance of
shared context is out of scope of this document. Frames containing
unknown or invalid CIDs MUST be silently discarded.
8.2. En Route State
In CCNx and NDN, Name TLVs are included in Interest messages, and
they return in Data messages. Returning Name TLVs either equal the
original Name TLV or contain the original Name TLV as a prefix. ICN
LoWPAN reduces this redundancy in responses by replacing Name TLVs
with single bytes that represent link-local HopIDs. HopIDs are
carried as Context Identifiers (see Section 8.1) of link-local scope,
as shown in Figure 29.
0 1 2 3 4 5 6 7
+---+---+---+---+---+---+---+---+
| X | HopID |
+---+---+---+---+---+---+---+---+
Figure 29: Context Identifier as HopID
A HopID is valid if not all ID bits are set to zero and invalid
otherwise. This yields 127 distinct HopIDs. If this range (1...127)
is exhausted, the messages MUST be sent without en route state
compression until new HopIDs are available. An ICN LoWPAN node that
forwards without replacing the Name TLV with a HopID (without en
route compression) MUST invalidate the HopID by setting all ID bits
to zero.
While an Interest is traversing, a forwarder generates an ephemeral
HopID that is tied to a Pending Interest Table (PIT) entry. Each
HopID MUST be unique within the local PIT and only exists during the
lifetime of a PIT entry. To maintain HopIDs, the local PIT is
extended by two new columns: HIDi (inbound HopIDs) and HIDo (outbound
HopIDs).
HopIDs are included in Interests and stored on the next hop with the
resulting PIT entry in the HIDi column. The HopID is replaced with a
newly generated local HopID before the Interest is forwarded. This
new HopID is stored in the HIDo column of the local PIT (see
Figure 30).
PIT of B PIT Extension PIT of C PIT Extension
+--------+------++------+------+ +--------+------++------+------+
| Prefix | Face || HIDi | HIDo | | Prefix | Face || HIDi | HIDo |
+========+======++======+======+ +========+======++======+======+
| /p0 | F_A || h_A | h_B | | /p0 | F_A || h_A | |
+--------+------++------+------+ +--------+------++------+------+
^ | ^
store | '----------------------, ,---' store
| send v |
,---, /p0, h_A ,---, /p0, h_B ,---,
| A | ------------------------> | B | ------------------------> | C |
'---' '---' '---'
Figure 30: Setting Compression State En Route (Interest)
Responses include HopIDs that were obtained from Interests. If the
returning Name TLV equals the original Name TLV, then the name is
entirely elided. Otherwise, only the matching name prefix is elided,
and the distinct name suffix is included along with the HopID. When
a response is forwarded, the contained HopID is extracted and used to
match against the correct PIT entry by performing a lookup on the
HIDo column. The HopID is then replaced with the corresponding HopID
from the HIDi column prior to forwarding the response (Figure 31).
PIT of B PIT Extension PIT of C PIT Extension
+--------+------++------+------+ +--------+------++------+------+
| Prefix | Face || HIDi | HIDo | | Prefix | Face || HIDi | HIDo |
+========+======++======+======+ +========+======++======+======+
| /p0 | F_A || h_A | h_B | | /p0 | F_A || h_A | |
+--------+------++------+------+ +--------+------++------+------+
| ^ |
send | '----------------------, ,---' send
v match | v
,---, h_A ,---, h_B ,---,
| A | <------------------------ | B | <------------------------ | C |
'---' '---' '---'
Figure 31: Eliding Name TLVs Using En Route State (Data)
It should be noted that each forwarder of an Interest in an ICN
LoWPAN network can individually decide whether to participate in en
route compression or not. However, an ICN LoWPAN node SHOULD use en
route compression whenever the stateful compression mechanism is
activated.
Note also that the extensions of the PIT data structure are required
only at ICN LoWPAN nodes, while regular NDN/CCNx forwarders outside
of an ICN LoWPAN domain do not need to implement these extensions.
8.3. Integrating Stateful Header Compression
A CID appears whenever the CID flag is set (see Figure 5). The CID
is appended to the last ICN LoWPAN dispatch byte, as shown in
Figure 32.
...-------+--------+-------...-------+--...-+-------...
/ ... | Page | ICN LoWPAN Disp.| CIDs | Payload /
...-------+--------+-------...-------+--...-+-------...
Figure 32: LoWPAN Encapsulation with ICN LoWPAN and CIDs
Multiple CIDs are chained together, with the most significant bit
indicating the presence of a subsequent CID (Figure 33). This allows
the use of multiple shared contexts in compressed messages.
The HopID is always included as the very first CID.
+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+
|1| CID / HopID | --> |1| CID | --> |0| CID |
+-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+ +-+-+-+-+-+-+-+-+
Figure 33: Chaining of Context Identifiers
9. ICN LoWPAN Constants and Variables
This is a summary of all ICN LoWPAN constants and variables.
DEFAULT_NDN_HOPLIMIT: 255
10. Implementation Report and Guidance
The ICN LoWPAN scheme defined in this document has been implemented
as an extension of the NDN/CCNx software stack [CCN-LITE] in its IoT
version on RIOT [RIOT]. An experimental evaluation for NDN over ICN
LoWPAN with varying configurations has been performed in [ICNLOWPAN].
Energy profiling and processing time measurements indicate
significant energy savings, and the amortized costs for processing
show no penalties.
10.1. Preferred Configuration
The header compression performance depends on certain aspects and
configurations. It works best for the following cases:
* Signed time offsets compress, per Section 7, without the need for
rounding.
* The context state (e.g., prefixes) is distributed such that long
names can be elided from Interest and Data messages.
* Frequently used TLV type numbers for CCNx and NDN stay in the
lower range (< 255).
Name components are of type GenericNameComponent and are limited to a
length of 15 bytes to enable compression for all messages.
10.2. Further Experimental Deployments
An investigation of ICN LoWPAN in large-scale deployments with
varying traffic patterns using larger samples of the different board
types available remains as future work. This document will be
revised to progress it to the Standards Track, once sufficient
operational experience has been acquired. Experience reports are
encouraged, particularly in the following areas:
* The name compression scheme (Section 5.2) is optimized for short
name components of type GenericNameComponent. An empirical study
on name lengths in different deployments of selected use cases,
such as smart home, smart city, and industrial IoT can provide
meaningful reports on necessary name component types and lengths.
A conclusive outcome helps to understand whether and how extension
mechanisms are needed (Section 5.3.3). As a preliminary analysis,
[ICNLOWPAN] investigates the effectiveness of the proposed
compression scheme with URLs obtained from the WWW. Studies on
deployments of Constrained Application Protocol (CoAP) [RFC7252]
can offer additional insights on naming schemes in the IoT.
* The fragmentation scheme (Section 4.2) inherited from 6LoWPAN
allows for a transparent, hop-wise reassembly of CCNx or NDN
packets. Fragment forwarding [RFC8930] with selective fragment
recovery [RFC8931] can improve the end-to-end latency and
reliability while it reduces buffer requirements on forwarders.
Initial evaluations [SFR-ICNLOWPAN] show that a naive integration
of these upcoming fragmentation features into ICN LoWPAN renders
the hop-wise content replication inoperative, since Interest and
Data messages are reassembled end-to-end. More deployment
experiences are necessary to gauge the feasibility of different
fragmentation schemes in ICN LoWPAN.
* The context state (Section 8.1) holds information that is shared
between a set of devices in a LoWPAN. Fixed name prefixes and
suffixes are good candidates to be distributed to all nodes in
order to elide them from request and response messages. More
experience and a deeper inspection of currently available and
upcoming protocol features is necessary to identify other protocol
fields.
* The distribution and synchronization of the context state can
potentially be adopted from Section 7.2 of [RFC6775] but requires
further evaluations. While 6LoWPAN uses the Neighbor Discovery
protocol to disseminate state, CCNx and NDN deployments are
missing out on a standard mechanism to bootstrap and manage
configurations.
* The stateful en route compression (Section 8.2) supports a limited
number of 127 distinct HopIDs that can be simultaneously in use on
a single node. Complex deployment scenarios that make use of
multiple, concurrent requests can provide a better insight on the
number of open requests stored in the PIT of memory-constrained
devices. This number can serve as an upper bound and determines
whether the HopID length needs to be resized to fit more HopIDs at
the cost of additional header overhead.
* Multiple implementations that generate and deploy the compression
options of this memo in different ways will also add to the
experience and understanding of the benefits and limitations of
the proposed schemes. Different reports can help to illuminate
the complexity of implementing ICN LoWPAN for constrained devices,
as well as on maintaining interoperability with other
implementations.
11. Security Considerations
Main memory is typically a scarce resource of constrained networked
devices. Fragmentation, as described in this memo, preserves
fragments and purges them only after a packet is reassembled, which
requires a buffering of all fragments. This scheme is able to handle
fragments for distinctive packets simultaneously, which can lead to
overflowing packet buffers that cannot hold all necessary fragments
for packet reassembly. Implementers are thus urged to make use of
appropriate buffer replacement strategies for fragments. Minimal
fragment forwarding [RFC8930] can potentially prevent fragment buffer
saturation in forwarders.
The stateful header compression generates ephemeral HopIDs for
incoming and outgoing Interests and consumes them on returning Data
packets. Forged Interests can deplete the number of available
HopIDs, thus leading to a denial of compression service for
subsequent content requests.
To further alleviate the problems caused by forged fragments or
Interest initiations, proper protective mechanisms for accessing the
link layer should be deployed. IEEE 802.15.4, e.g., provides
capabilities to protect frames and restrict them to a point-to-point
link or a group of devices.
12. IANA Considerations
12.1. Updates to the 6LoWPAN Dispatch Type Field Registry
IANA has assigned dispatch values for ICN LoWPAN in the "Dispatch
Type Field" subregistry [RFC4944] [RFC8025] of the "IPv6 Low Power
Personal Area Network Parameters" registry. Table 2 represents the
updates to the registry.
+=============+======+=========================+===========+
| Bit Pattern | Page | Header Type | Reference |
+=============+======+=========================+===========+
| 00 000000 | 14 | Uncompressed NDN | RFC 9139 |
| | | Interest messages | |
+-------------+------+-------------------------+-----------+
| 00 01xxxx | 14 | Compressed NDN Interest | RFC 9139 |
| | | messages | |
+-------------+------+-------------------------+-----------+
| 00 100000 | 14 | Uncompressed NDN Data | RFC 9139 |
| | | messages | |
+-------------+------+-------------------------+-----------+
| 00 11xxxx | 14 | Compressed NDN Data | RFC 9139 |
| | | messages | |
+-------------+------+-------------------------+-----------+
| 01 000000 | 14 | Uncompressed CCNx | RFC 9139 |
| | | Interest messages | |
+-------------+------+-------------------------+-----------+
| 01 01xxxx | 14 | Compressed CCNx | RFC 9139 |
| | | Interest messages | |
+-------------+------+-------------------------+-----------+
| 01 100000 | 14 | Uncompressed CCNx | RFC 9139 |
| | | Content Object messages | |
+-------------+------+-------------------------+-----------+
| 01 11xxxx | 14 | Compressed CCNx Content | RFC 9139 |
| | | Object messages | |
+-------------+------+-------------------------+-----------+
Table 2: Dispatch Types for NDN and CCNx
13. References
13.1. Normative References
[IEEE.754.2019]
IEEE, "IEEE Standard for Floating-Point Arithmetic", IEEE
Std 754-2019, <https://standards.ieee.org/content/ieee-
standards/en/standard/754-2019.html>.
[ieee802.15.4]
IEEE, "IEEE Standard for Low-Rate Wireless Networks", IEEE
Std 802.15.4-2020,
<https://standards.ieee.org/standard/802_15_4-2020.html>.
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119,
DOI 10.17487/RFC2119, March 1997,
<https://www.rfc-editor.org/info/rfc2119>.
[RFC4944] Montenegro, G., Kushalnagar, N., Hui, J., and D. Culler,
"Transmission of IPv6 Packets over IEEE 802.15.4
Networks", RFC 4944, DOI 10.17487/RFC4944, September 2007,
<https://www.rfc-editor.org/info/rfc4944>.
[RFC5497] Clausen, T. and C. Dearlove, "Representing Multi-Value
Time in Mobile Ad Hoc Networks (MANETs)", RFC 5497,
DOI 10.17487/RFC5497, March 2009,
<https://www.rfc-editor.org/info/rfc5497>.
[RFC6256] Eddy, W. and E. Davies, "Using Self-Delimiting Numeric
Values in Protocols", RFC 6256, DOI 10.17487/RFC6256, May
2011, <https://www.rfc-editor.org/info/rfc6256>.
[RFC6282] Hui, J., Ed. and P. Thubert, "Compression Format for IPv6
Datagrams over IEEE 802.15.4-Based Networks", RFC 6282,
DOI 10.17487/RFC6282, September 2011,
<https://www.rfc-editor.org/info/rfc6282>.
[RFC6775] Shelby, Z., Ed., Chakrabarti, S., Nordmark, E., and C.
Bormann, "Neighbor Discovery Optimization for IPv6 over
Low-Power Wireless Personal Area Networks (6LoWPANs)",
RFC 6775, DOI 10.17487/RFC6775, November 2012,
<https://www.rfc-editor.org/info/rfc6775>.
[RFC8174] Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC
2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174,
May 2017, <https://www.rfc-editor.org/info/rfc8174>.
13.2. Informative References
[CCN-LITE] "CCN-lite, a lightweight implementation of the CCNx
protocol and its variations",
<https://github.com/cn-uofbasel/ccn-lite>.
[ICNLOWPAN]
Gündoğan, C., Kietzmann, P., Schmidt, T., and M. Wählisch,
"Designing a LoWPAN convergence layer for the Information
Centric Internet of Things", Computer Communications, Vol.
164, No. 1, p. 114–123, Elsevier, December 2020,
<https://doi.org/10.1016/j.comcom.2020.10.002>.
[ICNRG-FLIC]
Tschudin, C., Wood, C., Mosko, M., and D. Oran, Ed.,
"File-Like ICN Collections (FLIC)", Work in Progress,
Internet-Draft, draft-irtf-icnrg-flic-02, 4 November 2019,
<https://datatracker.ietf.org/doc/html/draft-irtf-icnrg-
flic-02>.
[NDN] Jacobson, V., Smetters, D., Thornton, J., Plass, M.,
Briggs, N., and R. Braynard, "Networking named content",
5th Int. Conf. on emerging Networking Experiments and
Technologies (ACM CoNEXT), December 2009,
<https://doi.org/10.1145/1658939.1658941>.
[NDN-EXP1] Baccelli, E., Mehlis, C., Hahm, O., Schmidt, TC., and M.
Wählisch, "Information centric networking in the IoT:
experiments with NDN in the wild", Proc. of 1st ACM Conf.
on Information-Centric Networking (ICN-2014) ACM DL, pp.
77-86, September 2014,
<http://dx.doi.org/10.1145/2660129.2660144>.
[NDN-EXP2] Gündoğan, C., Kietzmann, P., Lenders, M., Petersen, H.,
Schmidt, TC., and M. Wählisch, "NDN, CoAP, and MQTT: a
comparative measurement study in the IoT", Proc. of 5th
ACM Conf. on Information-Centric Networking (ICN-2018) ACM
DL, pp. 159-171, September 2018,
<https://doi.org/10.1145/3267955.3267967>.
[NDN-MAC] Kietzmann, P., Gündoğan, C., Schmidt, TC., Hahm, O., and
M. Wählisch, "The need for a name to MAC address mapping
in NDN: towards quantifying the resource gain", Proc. of
4th ACM Conf. on Information-Centric Networking (ICN-2017)
ACM DL, pp. 36-42, September 2017,
<https://doi.org/10.1145/3125719.3125737>.
[NDN-PACKET-SPEC]
"NDN Packet Format Specification",
<https://named-data.net/doc/NDN-packet-spec/0.3/>.
[RFC7228] Bormann, C., Ersue, M., and A. Keranen, "Terminology for
Constrained-Node Networks", RFC 7228,
DOI 10.17487/RFC7228, May 2014,
<https://www.rfc-editor.org/info/rfc7228>.
[RFC7252] Shelby, Z., Hartke, K., and C. Bormann, "The Constrained
Application Protocol (CoAP)", RFC 7252,
DOI 10.17487/RFC7252, June 2014,
<https://www.rfc-editor.org/info/rfc7252>.
[RFC7476] Pentikousis, K., Ed., Ohlman, B., Corujo, D., Boggia, G.,
Tyson, G., Davies, E., Molinaro, A., and S. Eum,
"Information-Centric Networking: Baseline Scenarios",
RFC 7476, DOI 10.17487/RFC7476, March 2015,
<https://www.rfc-editor.org/info/rfc7476>.
[RFC7927] Kutscher, D., Ed., Eum, S., Pentikousis, K., Psaras, I.,
Corujo, D., Saucez, D., Schmidt, T., and M. Waehlisch,
"Information-Centric Networking (ICN) Research
Challenges", RFC 7927, DOI 10.17487/RFC7927, July 2016,
<https://www.rfc-editor.org/info/rfc7927>.
[RFC7945] Pentikousis, K., Ed., Ohlman, B., Davies, E., Spirou, S.,
and G. Boggia, "Information-Centric Networking: Evaluation
and Security Considerations", RFC 7945,
DOI 10.17487/RFC7945, September 2016,
<https://www.rfc-editor.org/info/rfc7945>.
[RFC8025] Thubert, P., Ed. and R. Cragie, "IPv6 over Low-Power
Wireless Personal Area Network (6LoWPAN) Paging Dispatch",
RFC 8025, DOI 10.17487/RFC8025, November 2016,
<https://www.rfc-editor.org/info/rfc8025>.
[RFC8569] Mosko, M., Solis, I., and C. Wood, "Content-Centric
Networking (CCNx) Semantics", RFC 8569,
DOI 10.17487/RFC8569, July 2019,
<https://www.rfc-editor.org/info/rfc8569>.
[RFC8609] Mosko, M., Solis, I., and C. Wood, "Content-Centric
Networking (CCNx) Messages in TLV Format", RFC 8609,
DOI 10.17487/RFC8609, July 2019,
<https://www.rfc-editor.org/info/rfc8609>.
[RFC8930] Watteyne, T., Ed., Thubert, P., Ed., and C. Bormann, "On
Forwarding 6LoWPAN Fragments over a Multi-Hop IPv6
Network", RFC 8930, DOI 10.17487/RFC8930, November 2020,
<https://www.rfc-editor.org/info/rfc8930>.
[RFC8931] Thubert, P., Ed., "IPv6 over Low-Power Wireless Personal
Area Network (6LoWPAN) Selective Fragment Recovery",
RFC 8931, DOI 10.17487/RFC8931, November 2020,
<https://www.rfc-editor.org/info/rfc8931>.
[RIOT] Baccelli, E., Gündoğan, C., Hahm, O., Kietzmann, P.,
Lenders, MS., Petersen, H., Schleiser, K., Schmidt, TC.,
and M. Wählisch, "RIOT: An Open Source Operating System
for Low-End Embedded Devices in the IoT", IEEE Internet of
Things Journal Vol. 5, No. 6, p. 4428-4440, December
2018, <https://doi.org/10.1109/JIOT.2018.2815038>.
[SFR-ICNLOWPAN]
Lenders, M., Gündoğan, C., Schmidt, TC., and M. Wählisch,
"Connecting the Dots: Selective Fragment Recovery in
ICNLoWPAN", Proc. of 7th ACM Conf. on Information-Centric
Networking (ICN-2020) ACM DL, pp. 70-76, September 2020,
<https://doi.org/10.1145/3405656.3418719>.
[TLV-ENC-802.15.4]
Mosko, M. and C. Tschudin, "CCN and NDN TLV encodings in
802.15.4 packets", January 2015,
<https://datatracker.ietf.org/meeting/interim-2015-icnrg-
01/materials/slides-interim-2015-icnrg-1-2>.
[WIRE-FORMAT-CONSID]
Wang, G., Tschudin, C., and R. Ravindran, "CCN/NDN
Protocol Wire Format and Functionality Considerations",
January 2015, <https://datatracker.ietf.org/meeting/
interim-2015-icnrg-01/materials/slides-interim-2015-icnrg-
1-8>.
Appendix A. Estimated Size Reduction
In the following, a theoretical evaluation is given to estimate the
gains of ICN LoWPAN compared to uncompressed CCNx and NDN messages.
We assume that n is the number of name components; comps_n denotes
the sum of n name component lengths. We also assume that the length
of each name component is lower than 16 bytes. The length of the
content is given by clen. The lengths of TLV components are specific
to the CCNx or NDN encoding and are outlined below.
A.1. NDN
The NDN TLV encoding has variable-sized TLV fields. For simplicity,
the 1-byte form of each TLV component is assumed. A typical TLV
component therefore is of size 2 (Type field + Length field) + the
actual value.
A.1.1. Interest
Figure 34 depicts the size requirements for a basic, uncompressed NDN
Interest containing a CanBePrefix TLV, a MustBeFresh TLV, an
InterestLifetime TLV set to 4 seconds, and a HopLimit TLV set to 6.
Numbers below represent the amount of bytes.
------------------------------------,
Interest TLV = 2 |
---------------------, |
Name | 2 + |
NameComponents = 2n + |
| comps_n |
---------------------' = 21 + 2n + comps_n
CanBePrefix = 2 |
MustBeFresh = 2 |
Nonce = 6 |
InterestLifetime = 4 |
HopLimit = 3 |
------------------------------------'
Figure 34: Estimated Size of an Uncompressed NDN Interest
Figure 35 depicts the size requirements after compression.
------------------------------------,
Dispatch Page Switch = 1 |
NDN Interest Dispatch = 2 |
Interest TLV = 1 |
-----------------------, |
Name | |
NameComponents = n/2 + = 10 + n/2 + comps_n
| comps_n |
-----------------------' |
Nonce = 4 |
HopLimit = 1 |
InterestLifetime = 1 |
------------------------------------'
Figure 35: Estimated Size of a Compressed NDN Interest
The size difference is 11 + 1.5n bytes.
For the name /DE/HH/HAW/BT7, the total size gain is 17 bytes, which
is 43% of the uncompressed packet.
A.1.2. Data
Figure 36 depicts the size requirements for a basic, uncompressed NDN
Data containing a FreshnessPeriod as MetaInfo. A FreshnessPeriod of
1 minute is assumed, and the value is encoded using 1 byte. An
HMACWithSha256 is assumed as a signature. The key locator is assumed
to contain a Name TLV of length klen.
------------------------------------,
Data TLV = 2 |
---------------------, |
Name | 2 + |
NameComponents = 2n + |
| comps_n |
---------------------' |
---------------------, |
MetaInfo | |
FreshnessPeriod = 6 |
| = 53 + 2n + comps_n +
---------------------' | clen + klen
Content = 2 + clen |
---------------------, |
SignatureInfo | |
SignatureType | |
KeyLocator = 41 + klen |
SignatureValue | |
DigestSha256 | |
---------------------' |
------------------------------------'
Figure 36: Estimated Size of an Uncompressed NDN Data
Figure 37 depicts the size requirements for the compressed version of
the above Data packet.
------------------------------------,
Dispatch Page Switch = 1 |
NDN Data Dispatch = 2 |
-----------------------, |
Name | |
NameComponents = n/2 + |
| comps_n = 38 + n/2 + comps_n +
-----------------------' | clen + klen
Content = 1 + clen |
KeyLocator = 1 + klen |
DigestSha256 = 32 |
FreshnessPeriod = 1 |
------------------------------------'
Figure 37: Estimated Size of a Compressed NDN Data
The size difference is 15 + 1.5n bytes.
For the name /DE/HH/HAW/BT7, the total size gain is 21 bytes.
A.2. CCNx
The CCNx TLV encoding defines a 2-byte encoding for Type and Length
fields, summing up to 4 bytes in total without a value.
A.2.1. Interest
Figure 38 depicts the size requirements for a basic, uncompressed
CCNx Interest. No hop-by-hop TLVs are included, the protocol version
is assumed to be 1, and the Reserved field is assumed to be 0. A
KeyIdRestriction TLV with T_SHA-256 is included to limit the
responses to Content Objects containing the specific key.
------------------------------------,
Fixed Header = 8 |
Message = 4 |
---------------------, |
Name | 4 + = 56 + 4n + comps_n
NameSegments = 4n + |
| comps_n |
---------------------' |
KeyIdRestriction = 40 |
------------------------------------'
Figure 38: Estimated Size of an Uncompressed CCNx Interest
Figure 39 depicts the size requirements after compression.
------------------------------------,
Dispatch Page Switch = 1 |
CCNx Interest Dispatch = 2 |
Fixed Header = 3 |
-----------------------, |
Name | = 38 + n/2 + comps_n
NameSegments = n/2 + |
| comps_n |
-----------------------' |
T_SHA-256 = 32 |
------------------------------------'
Figure 39: Estimated Size of a Compressed CCNx Interest
The size difference is 18 + 3.5n bytes.
For the name /DE/HH/HAW/BT7, the size is reduced by 53 bytes, which
is 53% of the uncompressed packet.
A.2.2. Content Object
Figure 40 depicts the size requirements for a basic, uncompressed
CCNx Content Object containing an ExpiryTime Message TLV, an
HMAC_SHA-256 signature, the signature time, and a hash of the shared
secret key. In the fixed header, the protocol version is assumed to
be 1 and the Reserved field is assumed to be 0
------------------------------------,
Fixed Header = 8 |
Message = 4 |
---------------------, |
Name | 4 + |
NameSegments = 4n + |
| comps_n |
---------------------' |
ExpiryTime = 12 = 124 + 4n + comps_n + clen
Payload = 4 + clen |
---------------------, |
ValidationAlgorithm | |
T_HMAC-256 = 56 |
KeyID | |
SignatureTime | |
---------------------' |
ValidationPayload = 36 |
------------------------------------'
Figure 40: Estimated Size of an Uncompressed CCNx Content Object
Figure 41 depicts the size requirements for a basic, compressed CCNx
Data.
------------------------------------,
Dispatch Page Switch = 1 |
CCNx Content Dispatch = 3 |
Fixed Header = 2 |
-----------------------, |
Name | |
NameSegments = n/2 + |
| comps_n = 89 + n/2 + comps_n + clen
-----------------------' |
ExpiryTime = 8 |
Payload = 1 + clen |
T_HMAC-SHA256 = 32 |
SignatureTime = 8 |
ValidationPayload = 34 |
------------------------------------'
Figure 41: Estimated Size of a Compressed CCNx Data Object
The size difference is 35 + 3.5n bytes.
For the name /DE/HH/HAW/BT7, the size is reduced by 70 bytes, which
is 40% of the uncompressed packet containing a 4-byte payload.
Acknowledgments
This work was stimulated by fruitful discussions in the ICNRG and the
communities of RIOT and CCNlite. We would like to thank all active
members for constructive thoughts and feedback. In particular, the
authors would like to thank (in alphabetical order) Peter Kietzmann,
Dirk Kutscher, Martine Lenders, Colin Perkins, and Junxiao Shi. The
hop-wise stateful name compression was brought up in a discussion by
Dave Oran, which is gratefully acknowledged. Larger parts of this
work are inspired by [RFC4944] and [RFC6282]. Special mention goes
to Mark Mosko, as well as G.Q. Wang and Ravi Ravindran, as their
previous work in [TLV-ENC-802.15.4] and [WIRE-FORMAT-CONSID] provided
a good base for our discussions on stateless header compression
mechanisms. Many thanks also to Carsten Bormann and Lars Eggert, who
contributed in-depth comments during the IRSG review. This work was
supported in part by the German Federal Ministry of Research and
Education within the projects I3 and RAPstore.
Authors' Addresses
Cenk Gündoğan
HAW Hamburg
Berliner Tor 7
D-20099 Hamburg
Germany
Phone: +4940428758067
Email: cenk.guendogan@haw-hamburg.de
URI: http://inet.haw-hamburg.de/members/cenk-gundogan
Thomas C. Schmidt
HAW Hamburg
Berliner Tor 7
D-20099 Hamburg
Germany
Email: t.schmidt@haw-hamburg.de
URI: http://inet.haw-hamburg.de/members/schmidt
Matthias Wählisch
link-lab & FU Berlin
Hoenower Str. 35
D-10318 Berlin
Germany
Email: mw@link-lab.net
URI: https://www.mi.fu-berlin.de/en/inf/groups/ilab/members/
waehlisch.html
Christopher Scherb
University of Applied Sciences and Arts Northwestern Switzerland
Peter Merian-Str. 86
CH-4002 Basel
Switzerland
Email: christopher.scherb@fhnw.ch
Claudio Marxer
University of Basel
Spiegelgasse 1
CH-4051 Basel
Switzerland
Email: claudio.marxer@unibas.ch
Christian Tschudin
University of Basel
Spiegelgasse 1
CH-4051 Basel
Switzerland
Email: christian.tschudin@unibas.ch
|