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 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081
|
<!DOCTYPE html>
<html lang="en" class="RFC">
<head>
<meta charset="utf-8">
<meta content="Common,Latin" name="scripts">
<meta content="initial-scale=1.0" name="viewport">
<title>RFC 8824: Static Context Header Compression (SCHC) for the Constrained Application Protocol (CoAP)</title>
<meta content="Ana Minaburo" name="author">
<meta content="Laurent Toutain" name="author">
<meta content="Ricardo Andreasen" name="author">
<meta content="
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.
" name="description">
<meta content="xml2rfc 3.9.1" name="generator">
<meta content="header compression" name="keyword">
<meta content="fragmentation" name="keyword">
<meta content="IoT" name="keyword">
<meta content="constrained networks" name="keyword">
<meta content="LPWAN" name="keyword">
<meta content="sensor network" name="keyword">
<meta content="constrained node" name="keyword">
<meta content="wireless sensor network" name="keyword">
<meta content="core" name="keyword">
<meta content="OSCORE" name="keyword">
<meta content="8824" name="rfc.number">
<!-- Generator version information:
xml2rfc 3.9.1
Python 3.6.10
appdirs 1.4.4
ConfigArgParse 1.2.3
google-i18n-address 2.3.5
html5lib 1.0.1
intervaltree 3.0.2
Jinja2 2.11.2
kitchen 1.2.6
lxml 4.4.2
pycairo 1.19.0
pycountry 19.8.18
pyflakes 2.1.1
PyYAML 5.3.1
requests 2.22.0
setuptools 40.6.2
six 1.14.0
WeasyPrint 51
-->
<link href="rfc8824.xml" rel="alternate" type="application/rfc+xml">
<link href="#copyright" rel="license">
<style type="text/css">/*
NOTE: Changes at the bottom of this file overrides some earlier settings.
Once the style has stabilized and has been adopted as an official RFC style,
this can be consolidated so that style settings occur only in one place, but
for now the contents of this file consists first of the initial CSS work as
provided to the RFC Formatter (xml2rfc) work, followed by itemized and
commented changes found necssary during the development of the v3
formatters.
*/
/* fonts */
@import url('https://fonts.googleapis.com/css?family=Noto+Sans'); /* Sans-serif */
@import url('https://fonts.googleapis.com/css?family=Noto+Serif'); /* Serif (print) */
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono'); /* Monospace */
@viewport {
zoom: 1.0;
width: extend-to-zoom;
}
@-ms-viewport {
width: extend-to-zoom;
zoom: 1.0;
}
/* general and mobile first */
html {
}
body {
max-width: 90%;
margin: 1.5em auto;
color: #222;
background-color: #fff;
font-size: 14px;
font-family: 'Noto Sans', Arial, Helvetica, sans-serif;
line-height: 1.6;
scroll-behavior: smooth;
}
.ears {
display: none;
}
/* headings */
#title, h1, h2, h3, h4, h5, h6 {
margin: 1em 0 0.5em;
font-weight: bold;
line-height: 1.3;
}
#title {
clear: both;
border-bottom: 1px solid #ddd;
margin: 0 0 0.5em 0;
padding: 1em 0 0.5em;
}
.author {
padding-bottom: 4px;
}
h1 {
font-size: 26px;
margin: 1em 0;
}
h2 {
font-size: 22px;
margin-top: -20px; /* provide offset for in-page anchors */
padding-top: 33px;
}
h3 {
font-size: 18px;
margin-top: -36px; /* provide offset for in-page anchors */
padding-top: 42px;
}
h4 {
font-size: 16px;
margin-top: -36px; /* provide offset for in-page anchors */
padding-top: 42px;
}
h5, h6 {
font-size: 14px;
}
#n-copyright-notice {
border-bottom: 1px solid #ddd;
padding-bottom: 1em;
margin-bottom: 1em;
}
/* general structure */
p {
padding: 0;
margin: 0 0 1em 0;
text-align: left;
}
div, span {
position: relative;
}
div {
margin: 0;
}
.alignRight.art-text {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 3px;
padding: 1em 1em 0;
margin-bottom: 1.5em;
}
.alignRight.art-text pre {
padding: 0;
}
.alignRight {
margin: 1em 0;
}
.alignRight > *:first-child {
border: none;
margin: 0;
float: right;
clear: both;
}
.alignRight > *:nth-child(2) {
clear: both;
display: block;
border: none;
}
svg {
display: block;
}
.alignCenter.art-text {
background-color: #f9f9f9;
border: 1px solid #eee;
border-radius: 3px;
padding: 1em 1em 0;
margin-bottom: 1.5em;
}
.alignCenter.art-text pre {
padding: 0;
}
.alignCenter {
margin: 1em 0;
}
.alignCenter > *:first-child {
border: none;
/* this isn't optimal, but it's an existence proof. PrinceXML doesn't
support flexbox yet.
*/
display: table;
margin: 0 auto;
}
/* lists */
ol, ul {
padding: 0;
margin: 0 0 1em 2em;
}
ol ol, ul ul, ol ul, ul ol {
margin-left: 1em;
}
li {
margin: 0 0 0.25em 0;
}
.ulCompact li {
margin: 0;
}
ul.empty, .ulEmpty {
list-style-type: none;
}
ul.empty li, .ulEmpty li {
margin-top: 0.5em;
}
ul.ulBare, li.ulBare {
margin-left: 0em !important;
}
ul.compact, .ulCompact,
ol.compact, .olCompact {
line-height: 100%;
margin: 0 0 0 2em;
}
/* definition lists */
dl {
}
dl > dt {
float: left;
margin-right: 1em;
}
/*
dl.nohang > dt {
float: none;
}
*/
dl > dd {
margin-bottom: .8em;
min-height: 1.3em;
}
dl.compact > dd, .dlCompact > dd {
margin-bottom: 0em;
}
dl > dd > dl {
margin-top: 0.5em;
margin-bottom: 0em;
}
/* links */
a {
text-decoration: none;
}
a[href] {
color: #22e; /* Arlen: WCAG 2019 */
}
a[href]:hover {
background-color: #f2f2f2;
}
figcaption a[href],
a[href].selfRef {
color: #222;
}
/* XXX probably not this:
a.selfRef:hover {
background-color: transparent;
cursor: default;
} */
/* Figures */
tt, code, pre, code {
background-color: #f9f9f9;
font-family: 'Roboto Mono', monospace;
}
pre {
border: 1px solid #eee;
margin: 0;
padding: 1em;
}
img {
max-width: 100%;
}
figure {
margin: 0;
}
figure blockquote {
margin: 0.8em 0.4em 0.4em;
}
figcaption {
font-style: italic;
margin: 0 0 1em 0;
}
@media screen {
pre {
overflow-x: auto;
max-width: 100%;
max-width: calc(100% - 22px);
}
}
/* aside, blockquote */
aside, blockquote {
margin-left: 0;
padding: 1.2em 2em;
}
blockquote {
background-color: #f9f9f9;
color: #111; /* Arlen: WCAG 2019 */
border: 1px solid #ddd;
border-radius: 3px;
margin: 1em 0;
}
cite {
display: block;
text-align: right;
font-style: italic;
}
/* tables */
table {
width: 100%;
margin: 0 0 1em;
border-collapse: collapse;
border: 1px solid #eee;
}
th, td {
text-align: left;
vertical-align: top;
padding: 0.5em 0.75em;
}
th {
text-align: left;
background-color: #e9e9e9;
}
tr:nth-child(2n+1) > td {
background-color: #f5f5f5;
}
table caption {
font-style: italic;
margin: 0;
padding: 0;
text-align: left;
}
table p {
/* XXX to avoid bottom margin on table row signifiers. If paragraphs should
be allowed within tables more generally, it would be far better to select on a class. */
margin: 0;
}
/* pilcrow */
a.pilcrow {
color: #666; /* Arlen: AHDJ 2019 */
text-decoration: none;
visibility: hidden;
user-select: none;
-ms-user-select: none;
-o-user-select:none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
}
@media screen {
aside:hover > a.pilcrow,
p:hover > a.pilcrow,
blockquote:hover > a.pilcrow,
div:hover > a.pilcrow,
li:hover > a.pilcrow,
pre:hover > a.pilcrow {
visibility: visible;
}
a.pilcrow:hover {
background-color: transparent;
}
}
/* misc */
hr {
border: 0;
border-top: 1px solid #eee;
}
.bcp14 {
font-variant: small-caps;
}
.role {
font-variant: all-small-caps;
}
/* info block */
#identifiers {
margin: 0;
font-size: 0.9em;
}
#identifiers dt {
width: 3em;
clear: left;
}
#identifiers dd {
float: left;
margin-bottom: 0;
}
#identifiers .authors .author {
display: inline-block;
margin-right: 1.5em;
}
#identifiers .authors .org {
font-style: italic;
}
/* The prepared/rendered info at the very bottom of the page */
.docInfo {
color: #666; /* Arlen: WCAG 2019 */
font-size: 0.9em;
font-style: italic;
margin-top: 2em;
}
.docInfo .prepared {
float: left;
}
.docInfo .prepared {
float: right;
}
/* table of contents */
#toc {
padding: 0.75em 0 2em 0;
margin-bottom: 1em;
}
nav.toc ul {
margin: 0 0.5em 0 0;
padding: 0;
list-style: none;
}
nav.toc li {
line-height: 1.3em;
margin: 0.75em 0;
padding-left: 1.2em;
text-indent: -1.2em;
}
/* references */
.references dt {
text-align: right;
font-weight: bold;
min-width: 7em;
}
.references dd {
margin-left: 8em;
overflow: auto;
}
.refInstance {
margin-bottom: 1.25em;
}
.references .ascii {
margin-bottom: 0.25em;
}
/* index */
.index ul {
margin: 0 0 0 1em;
padding: 0;
list-style: none;
}
.index ul ul {
margin: 0;
}
.index li {
margin: 0;
text-indent: -2em;
padding-left: 2em;
padding-bottom: 5px;
}
.indexIndex {
margin: 0.5em 0 1em;
}
.index a {
font-weight: 700;
}
/* make the index two-column on all but the smallest screens */
@media (min-width: 600px) {
.index ul {
-moz-column-count: 2;
-moz-column-gap: 20px;
}
.index ul ul {
-moz-column-count: 1;
-moz-column-gap: 0;
}
}
/* authors */
address.vcard {
font-style: normal;
margin: 1em 0;
}
address.vcard .nameRole {
font-weight: 700;
margin-left: 0;
}
address.vcard .label {
font-family: "Noto Sans",Arial,Helvetica,sans-serif;
margin: 0.5em 0;
}
address.vcard .type {
display: none;
}
.alternative-contact {
margin: 1.5em 0 1em;
}
hr.addr {
border-top: 1px dashed;
margin: 0;
color: #ddd;
max-width: calc(100% - 16px);
}
/* temporary notes */
.rfcEditorRemove::before {
position: absolute;
top: 0.2em;
right: 0.2em;
padding: 0.2em;
content: "The RFC Editor will remove this note";
color: #9e2a00; /* Arlen: WCAG 2019 */
background-color: #ffd; /* Arlen: WCAG 2019 */
}
.rfcEditorRemove {
position: relative;
padding-top: 1.8em;
background-color: #ffd; /* Arlen: WCAG 2019 */
border-radius: 3px;
}
.cref {
background-color: #ffd; /* Arlen: WCAG 2019 */
padding: 2px 4px;
}
.crefSource {
font-style: italic;
}
/* alternative layout for smaller screens */
@media screen and (max-width: 1023px) {
body {
padding-top: 2em;
}
#title {
padding: 1em 0;
}
h1 {
font-size: 24px;
}
h2 {
font-size: 20px;
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 38px;
}
#identifiers dd {
max-width: 60%;
}
#toc {
position: fixed;
z-index: 2;
top: 0;
right: 0;
padding: 0;
margin: 0;
background-color: inherit;
border-bottom: 1px solid #ccc;
}
#toc h2 {
margin: -1px 0 0 0;
padding: 4px 0 4px 6px;
padding-right: 1em;
min-width: 190px;
font-size: 1.1em;
text-align: right;
background-color: #444;
color: white;
cursor: pointer;
}
#toc h2::before { /* css hamburger */
float: right;
position: relative;
width: 1em;
height: 1px;
left: -164px;
margin: 6px 0 0 0;
background: white none repeat scroll 0 0;
box-shadow: 0 4px 0 0 white, 0 8px 0 0 white;
content: "";
}
#toc nav {
display: none;
padding: 0.5em 1em 1em;
overflow: auto;
height: calc(100vh - 48px);
border-left: 1px solid #ddd;
}
}
/* alternative layout for wide screens */
@media screen and (min-width: 1024px) {
body {
max-width: 724px;
margin: 42px auto;
padding-left: 1.5em;
padding-right: 29em;
}
#toc {
position: fixed;
top: 42px;
right: 42px;
width: 25%;
margin: 0;
padding: 0 1em;
z-index: 1;
}
#toc h2 {
border-top: none;
border-bottom: 1px solid #ddd;
font-size: 1em;
font-weight: normal;
margin: 0;
padding: 0.25em 1em 1em 0;
}
#toc nav {
display: block;
height: calc(90vh - 84px);
bottom: 0;
padding: 0.5em 0 0;
overflow: auto;
}
img { /* future proofing */
max-width: 100%;
height: auto;
}
}
/* pagination */
@media print {
body {
width: 100%;
}
p {
orphans: 3;
widows: 3;
}
#n-copyright-notice {
border-bottom: none;
}
#toc, #n-introduction {
page-break-before: always;
}
#toc {
border-top: none;
padding-top: 0;
}
figure, pre {
page-break-inside: avoid;
}
figure {
overflow: scroll;
}
h1, h2, h3, h4, h5, h6 {
page-break-after: avoid;
}
h2+*, h3+*, h4+*, h5+*, h6+* {
page-break-before: avoid;
}
pre {
white-space: pre-wrap;
word-wrap: break-word;
font-size: 10pt;
}
table {
border: 1px solid #ddd;
}
td {
border-top: 1px solid #ddd;
}
}
/* This is commented out here, as the string-set: doesn't
pass W3C validation currently */
/*
.ears thead .left {
string-set: ears-top-left content();
}
.ears thead .center {
string-set: ears-top-center content();
}
.ears thead .right {
string-set: ears-top-right content();
}
.ears tfoot .left {
string-set: ears-bottom-left content();
}
.ears tfoot .center {
string-set: ears-bottom-center content();
}
.ears tfoot .right {
string-set: ears-bottom-right content();
}
*/
@page :first {
padding-top: 0;
@top-left {
content: normal;
border: none;
}
@top-center {
content: normal;
border: none;
}
@top-right {
content: normal;
border: none;
}
}
@page {
size: A4;
margin-bottom: 45mm;
padding-top: 20px;
/* The follwing is commented out here, but set appropriately by in code, as
the content depends on the document */
/*
@top-left {
content: 'Internet-Draft';
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-left {
content: string(ears-top-left);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-center {
content: string(ears-top-center);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@top-right {
content: string(ears-top-right);
vertical-align: bottom;
border-bottom: solid 1px #ccc;
}
@bottom-left {
content: string(ears-bottom-left);
vertical-align: top;
border-top: solid 1px #ccc;
}
@bottom-center {
content: string(ears-bottom-center);
vertical-align: top;
border-top: solid 1px #ccc;
}
@bottom-right {
content: '[Page ' counter(page) ']';
vertical-align: top;
border-top: solid 1px #ccc;
}
*/
}
/* Changes introduced to fix issues found during implementation */
/* Make sure links are clickable even if overlapped by following H* */
a {
z-index: 2;
}
/* Separate body from document info even without intervening H1 */
section {
clear: both;
}
/* Top align author divs, to avoid names without organization dropping level with org names */
.author {
vertical-align: top;
}
/* Leave room in document info to show Internet-Draft on one line */
#identifiers dt {
width: 8em;
}
/* Don't waste quite as much whitespace between label and value in doc info */
#identifiers dd {
margin-left: 1em;
}
/* Give floating toc a background color (needed when it's a div inside section */
#toc {
background-color: white;
}
/* Make the collapsed ToC header render white on gray also when it's a link */
@media screen and (max-width: 1023px) {
#toc h2 a,
#toc h2 a:link,
#toc h2 a:focus,
#toc h2 a:hover,
#toc a.toplink,
#toc a.toplink:hover {
color: white;
background-color: #444;
text-decoration: none;
}
}
/* Give the bottom of the ToC some whitespace */
@media screen and (min-width: 1024px) {
#toc {
padding: 0 0 1em 1em;
}
}
/* Style section numbers with more space between number and title */
.section-number {
padding-right: 0.5em;
}
/* prevent monospace from becoming overly large */
tt, code, pre, code {
font-size: 95%;
}
/* Fix the height/width aspect for ascii art*/
pre.sourcecode,
.art-text pre {
line-height: 1.12;
}
/* Add styling for a link in the ToC that points to the top of the document */
a.toplink {
float: right;
margin-right: 0.5em;
}
/* Fix the dl styling to match the RFC 7992 attributes */
dl > dt,
dl.dlParallel > dt {
float: left;
margin-right: 1em;
}
dl.dlNewline > dt {
float: none;
}
/* Provide styling for table cell text alignment */
table td.text-left,
table th.text-left {
text-align: left;
}
table td.text-center,
table th.text-center {
text-align: center;
}
table td.text-right,
table th.text-right {
text-align: right;
}
/* Make the alternative author contact informatio look less like just another
author, and group it closer with the primary author contact information */
.alternative-contact {
margin: 0.5em 0 0.25em 0;
}
address .non-ascii {
margin: 0 0 0 2em;
}
/* With it being possible to set tables with alignment
left, center, and right, { width: 100%; } does not make sense */
table {
width: auto;
}
/* Avoid reference text that sits in a block with very wide left margin,
because of a long floating dt label.*/
.references dd {
overflow: visible;
}
/* Control caption placement */
caption {
caption-side: bottom;
}
/* Limit the width of the author address vcard, so names in right-to-left
script don't end up on the other side of the page. */
address.vcard {
max-width: 30em;
margin-right: auto;
}
/* For address alignment dependent on LTR or RTL scripts */
address div.left {
text-align: left;
}
address div.right {
text-align: right;
}
/* Provide table alignment support. We can't use the alignX classes above
since they do unwanted things with caption and other styling. */
table.right {
margin-left: auto;
margin-right: 0;
}
table.center {
margin-left: auto;
margin-right: auto;
}
table.left {
margin-left: 0;
margin-right: auto;
}
/* Give the table caption label the same styling as the figcaption */
caption a[href] {
color: #222;
}
@media print {
.toplink {
display: none;
}
/* avoid overwriting the top border line with the ToC header */
#toc {
padding-top: 1px;
}
/* Avoid page breaks inside dl and author address entries */
.vcard {
page-break-inside: avoid;
}
}
/* Tweak the bcp14 keyword presentation */
.bcp14 {
font-variant: small-caps;
font-weight: bold;
font-size: 0.9em;
}
/* Tweak the invisible space above H* in order not to overlay links in text above */
h2 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 31px;
}
h3 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 24px;
}
h4 {
margin-top: -18px; /* provide offset for in-page anchors */
padding-top: 24px;
}
/* Float artwork pilcrow to the right */
@media screen {
.artwork a.pilcrow {
display: block;
line-height: 0.7;
margin-top: 0.15em;
}
}
/* Make pilcrows on dd visible */
@media screen {
dd:hover > a.pilcrow {
visibility: visible;
}
}
/* Make the placement of figcaption match that of a table's caption
by removing the figure's added bottom margin */
.alignLeft.art-text,
.alignCenter.art-text,
.alignRight.art-text {
margin-bottom: 0;
}
.alignLeft,
.alignCenter,
.alignRight {
margin: 1em 0 0 0;
}
/* In print, the pilcrow won't show on hover, so prevent it from taking up space,
possibly even requiring a new line */
@media print {
a.pilcrow {
display: none;
}
}
/* Styling for the external metadata */
div#external-metadata {
background-color: #eee;
padding: 0.5em;
margin-bottom: 0.5em;
display: none;
}
div#internal-metadata {
padding: 0.5em; /* to match the external-metadata padding */
}
/* Styling for title RFC Number */
h1#rfcnum {
clear: both;
margin: 0 0 -1em;
padding: 1em 0 0 0;
}
/* Make .olPercent look the same as <ol><li> */
dl.olPercent > dd {
margin-bottom: 0.25em;
min-height: initial;
}
/* Give aside some styling to set it apart */
aside {
border-left: 1px solid #ddd;
margin: 1em 0 1em 2em;
padding: 0.2em 2em;
}
aside > dl,
aside > ol,
aside > ul,
aside > table,
aside > p {
margin-bottom: 0.5em;
}
/* Additional page break settings */
@media print {
figcaption, table caption {
page-break-before: avoid;
}
}
/* Font size adjustments for print */
@media print {
body { font-size: 10pt; line-height: normal; max-width: 96%; }
h1 { font-size: 1.72em; padding-top: 1.5em; } /* 1*1.2*1.2*1.2 */
h2 { font-size: 1.44em; padding-top: 1.5em; } /* 1*1.2*1.2 */
h3 { font-size: 1.2em; padding-top: 1.5em; } /* 1*1.2 */
h4 { font-size: 1em; padding-top: 1.5em; }
h5, h6 { font-size: 1em; margin: initial; padding: 0.5em 0 0.3em; }
}
/* Sourcecode margin in print, when there's no pilcrow */
@media print {
.artwork,
.sourcecode {
margin-bottom: 1em;
}
}
/* Avoid narrow tables forcing too narrow table captions, which may render badly */
table {
min-width: 20em;
}
/* ol type a */
ol.type-a { list-style-type: lower-alpha; }
ol.type-A { list-style-type: upper-alpha; }
ol.type-i { list-style-type: lower-roman; }
ol.type-I { list-style-type: lower-roman; }
/* Apply the print table and row borders in general, on request from the RPC,
and increase the contrast between border and odd row background sligthtly */
table {
border: 1px solid #ddd;
}
td {
border-top: 1px solid #ddd;
}
tr:nth-child(2n+1) > td {
background-color: #f8f8f8;
}
/* Use style rules to govern display of the TOC. */
@media screen and (max-width: 1023px) {
#toc nav { display: none; }
#toc.active nav { display: block; }
}
/* Add support for keepWithNext */
.keepWithNext {
break-after: avoid-page;
break-after: avoid-page;
}
/* Add support for keepWithPrevious */
.keepWithPrevious {
break-before: avoid-page;
}
/* Change the approach to avoiding breaks inside artwork etc. */
figure, pre, table, .artwork, .sourcecode {
break-before: avoid-page;
break-after: auto;
}
/* Avoid breaks between <dt> and <dd> */
dl {
break-before: auto;
break-inside: auto;
}
dt {
break-before: auto;
break-after: avoid-page;
}
dd {
break-before: avoid-page;
break-after: auto;
orphans: 3;
widows: 3
}
span.break, dd.break {
margin-bottom: 0;
min-height: 0;
break-before: auto;
break-inside: auto;
break-after: auto;
}
/* Undo break-before ToC */
@media print {
#toc {
break-before: auto;
}
}
/* Text in compact lists should not get extra bottim margin space,
since that would makes the list not compact */
ul.compact p, .ulCompact p,
ol.compact p, .olCompact p {
margin: 0;
}
/* But the list as a whole needs the extra space at the end */
section ul.compact,
section .ulCompact,
section ol.compact,
section .olCompact {
margin-bottom: 1em; /* same as p not within ul.compact etc. */
}
/* The tt and code background above interferes with for instance table cell
backgrounds. Changed to something a bit more selective. */
tt, code {
background-color: transparent;
}
p tt, p code, li tt, li code {
background-color: #f8f8f8;
}
/* Tweak the pre margin -- 0px doesn't come out well */
pre {
margin-top: 0.5px;
}
/* Tweak the comact list text */
ul.compact, .ulCompact,
ol.compact, .olCompact,
dl.compact, .dlCompact {
line-height: normal;
}
/* Don't add top margin for nested lists */
li > ul, li > ol, li > dl,
dd > ul, dd > ol, dd > dl,
dl > dd > dl {
margin-top: initial;
}
/* Elements that should not be rendered on the same line as a <dt> */
/* This should match the element list in writer.text.TextWriter.render_dl() */
dd > div.artwork:first-child,
dd > aside:first-child,
dd > figure:first-child,
dd > ol:first-child,
dd > div:first-child > pre.sourcecode,
dd > table:first-child,
dd > ul:first-child {
clear: left;
}
/* fix for weird browser behaviour when <dd/> is empty */
dt+dd:empty::before{
content: "\00a0";
}
/* Make paragraph spacing inside <li> smaller than in body text, to fit better within the list */
li > p {
margin-bottom: 0.5em
}
/* Don't let p margin spill out from inside list items */
li > p:last-of-type {
margin-bottom: 0;
}
</style>
<link href="rfc-local.css" rel="stylesheet" type="text/css">
<link href="https://dx.doi.org/10.17487/rfc8824" rel="alternate">
<link href="urn:issn:2070-1721" rel="alternate">
<link href="https://datatracker.ietf.org/doc/draft-ietf-lpwan-coap-static-context-hc-19" rel="prev">
</head>
<body>
<script src="https://www.rfc-editor.org/js/metadata.min.js"></script>
<table class="ears">
<thead><tr>
<td class="left">RFC 8824</td>
<td class="center">SCHC for CoAP</td>
<td class="right">June 2021</td>
</tr></thead>
<tfoot><tr>
<td class="left">Minaburo, et al.</td>
<td class="center">Standards Track</td>
<td class="right">[Page]</td>
</tr></tfoot>
</table>
<div id="external-metadata" class="document-information"></div>
<div id="internal-metadata" class="document-information">
<dl id="identifiers">
<dt class="label-stream">Stream:</dt>
<dd class="stream">Internet Engineering Task Force (IETF)</dd>
<dt class="label-rfc">RFC:</dt>
<dd class="rfc"><a href="https://www.rfc-editor.org/rfc/rfc8824" class="eref">8824</a></dd>
<dt class="label-category">Category:</dt>
<dd class="category">Standards Track</dd>
<dt class="label-published">Published:</dt>
<dd class="published">
<time datetime="2021-06" class="published">June 2021</time>
</dd>
<dt class="label-issn">ISSN:</dt>
<dd class="issn">2070-1721</dd>
<dt class="label-authors">Authors:</dt>
<dd class="authors">
<div class="author">
<div class="author-name">A. Minaburo</div>
<div class="org">Acklio</div>
</div>
<div class="author">
<div class="author-name">L. Toutain</div>
<div class="org">IMT Atlantique</div>
</div>
<div class="author">
<div class="author-name">R. Andreasen</div>
<div class="org">Universidad de Buenos Aires</div>
</div>
</dd>
</dl>
</div>
<h1 id="rfcnum">RFC 8824</h1>
<h1 id="title">Static Context Header Compression (SCHC) for the Constrained Application Protocol (CoAP)</h1>
<section id="section-abstract">
<h2 id="abstract"><a href="#abstract" class="selfRef">Abstract</a></h2>
<p id="section-abstract-1">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.<a href="#section-abstract-1" class="pilcrow">¶</a></p>
</section>
<div id="status-of-memo">
<section id="section-boilerplate.1">
<h2 id="name-status-of-this-memo">
<a href="#name-status-of-this-memo" class="section-name selfRef">Status of This Memo</a>
</h2>
<p id="section-boilerplate.1-1">
This is an Internet Standards Track document.<a href="#section-boilerplate.1-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-2">
This document is a product of the Internet Engineering Task Force
(IETF). It represents the consensus of the IETF community. It has
received public review and has been approved for publication by
the Internet Engineering Steering Group (IESG). Further
information on Internet Standards is available in Section 2 of
RFC 7841.<a href="#section-boilerplate.1-2" class="pilcrow">¶</a></p>
<p id="section-boilerplate.1-3">
Information about the current status of this document, any
errata, and how to provide feedback on it may be obtained at
<span><a href="https://www.rfc-editor.org/info/rfc8824">https://www.rfc-editor.org/info/rfc8824</a></span>.<a href="#section-boilerplate.1-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="copyright">
<section id="section-boilerplate.2">
<h2 id="name-copyright-notice">
<a href="#name-copyright-notice" class="section-name selfRef">Copyright Notice</a>
</h2>
<p id="section-boilerplate.2-1">
Copyright (c) 2021 IETF Trust and the persons identified as the
document authors. All rights reserved.<a href="#section-boilerplate.2-1" class="pilcrow">¶</a></p>
<p id="section-boilerplate.2-2">
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<span><a href="https://trustee.ietf.org/license-info">https://trustee.ietf.org/license-info</a></span>) 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. Code Components extracted from this
document must include Simplified BSD License text as described in
Section 4.e of the Trust Legal Provisions and are provided without
warranty as described in the Simplified BSD License.<a href="#section-boilerplate.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="toc">
<section id="section-toc.1">
<a href="#" onclick="scroll(0,0)" class="toplink">▲</a><h2 id="name-table-of-contents">
<a href="#name-table-of-contents" class="section-name selfRef">Table of Contents</a>
</h2>
<nav class="toc"><ul class="ulEmpty toc compact ulBare">
<li class="ulEmpty toc compact ulBare" id="section-toc.1-1.1">
<p id="section-toc.1-1.1.1" class="keepWithNext"><a href="#section-1" class="xref">1</a>. <a href="#name-introduction" class="xref">Introduction</a></p>
<ul class="compact ulEmpty toc ulBare">
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.1.2.1">
<p id="section-toc.1-1.1.2.1.1" class="keepWithNext"><a href="#section-1.1" class="xref">1.1</a>. <a href="#name-terminology" class="xref">Terminology</a></p>
</li>
</ul>
</li>
<li class="ulEmpty toc compact ulBare" id="section-toc.1-1.2">
<p id="section-toc.1-1.2.1" class="keepWithNext"><a href="#section-2" class="xref">2</a>. <a href="#name-schc-applicability-to-coap" class="xref">SCHC Applicability to CoAP</a></p>
</li>
<li class="ulEmpty toc compact ulBare" id="section-toc.1-1.3">
<p id="section-toc.1-1.3.1"><a href="#section-3" class="xref">3</a>. <a href="#name-coap-headers-compressed-wit" class="xref">CoAP Headers Compressed with SCHC</a></p>
<ul class="compact ulEmpty toc ulBare">
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.3.2.1">
<p id="section-toc.1-1.3.2.1.1"><a href="#section-3.1" class="xref">3.1</a>. <a href="#name-differences-between-coap-an" class="xref">Differences between CoAP and UDP/IP Compression</a></p>
</li>
</ul>
</li>
<li class="ulEmpty toc compact ulBare" id="section-toc.1-1.4">
<p id="section-toc.1-1.4.1"><a href="#section-4" class="xref">4</a>. <a href="#name-compression-of-coap-header-" class="xref">Compression of CoAP Header Fields</a></p>
<ul class="compact ulEmpty toc ulBare">
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.4.2.1">
<p id="section-toc.1-1.4.2.1.1"><a href="#section-4.1" class="xref">4.1</a>. <a href="#name-coap-version-field" class="xref">CoAP Version Field</a></p>
</li>
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.4.2.2">
<p id="section-toc.1-1.4.2.2.1"><a href="#section-4.2" class="xref">4.2</a>. <a href="#name-coap-type-field" class="xref">CoAP Type Field</a></p>
</li>
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.4.2.3">
<p id="section-toc.1-1.4.2.3.1"><a href="#section-4.3" class="xref">4.3</a>. <a href="#name-coap-code-field" class="xref">CoAP Code Field</a></p>
</li>
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.4.2.4">
<p id="section-toc.1-1.4.2.4.1"><a href="#section-4.4" class="xref">4.4</a>. <a href="#name-coap-message-id-field" class="xref">CoAP Message ID Field</a></p>
</li>
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.4.2.5">
<p id="section-toc.1-1.4.2.5.1"><a href="#section-4.5" class="xref">4.5</a>. <a href="#name-coap-token-fields" class="xref">CoAP Token Fields</a></p>
</li>
</ul>
</li>
<li class="ulEmpty toc compact ulBare" id="section-toc.1-1.5">
<p id="section-toc.1-1.5.1"><a href="#section-5" class="xref">5</a>. <a href="#name-coap-options" class="xref">CoAP Options</a></p>
<ul class="compact ulEmpty toc ulBare">
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.5.2.1">
<p id="section-toc.1-1.5.2.1.1"><a href="#section-5.1" class="xref">5.1</a>. <a href="#name-coap-content-and-accept-opt" class="xref">CoAP Content and Accept Options</a></p>
</li>
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.5.2.2">
<p id="section-toc.1-1.5.2.2.1"><a href="#section-5.2" class="xref">5.2</a>. <a href="#name-coap-option-max-age-uri-hos" class="xref">CoAP Option Max-Age, Uri-Host, and Uri-Port Fields</a></p>
</li>
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.5.2.3">
<p id="section-toc.1-1.5.2.3.1"><a href="#section-5.3" class="xref">5.3</a>. <a href="#name-coap-option-uri-path-and-ur" class="xref">CoAP Option Uri-Path and Uri-Query Fields</a></p>
<ul class="compact ulEmpty toc ulBare">
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.5.2.3.2.1">
<p id="section-toc.1-1.5.2.3.2.1.1"><a href="#section-5.3.1" class="xref">5.3.1</a>. <a href="#name-variable-number-of-path-or-" class="xref">Variable Number of Path or Query Elements</a></p>
</li>
</ul>
</li>
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.5.2.4">
<p id="section-toc.1-1.5.2.4.1"><a href="#section-5.4" class="xref">5.4</a>. <a href="#name-coap-option-size1-size2-pro" class="xref">CoAP Option Size1, Size2, Proxy-URI, and Proxy-Scheme Fields</a></p>
</li>
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.5.2.5">
<p id="section-toc.1-1.5.2.5.1"><a href="#section-5.5" class="xref">5.5</a>. <a href="#name-coap-option-etag-if-match-i" class="xref">CoAP Option ETag, If-Match, If-None-Match, Location-Path, and Location-Query Fields</a></p>
</li>
</ul>
</li>
<li class="ulEmpty toc compact ulBare" id="section-toc.1-1.6">
<p id="section-toc.1-1.6.1"><a href="#section-6" class="xref">6</a>. <a href="#name-schc-compression-of-coap-ex" class="xref">SCHC Compression of CoAP Extensions</a></p>
<ul class="compact ulEmpty toc ulBare">
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.6.2.1">
<p id="section-toc.1-1.6.2.1.1"><a href="#section-6.1" class="xref">6.1</a>. <a href="#name-block" class="xref">Block</a></p>
</li>
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.6.2.2">
<p id="section-toc.1-1.6.2.2.1"><a href="#section-6.2" class="xref">6.2</a>. <a href="#name-observe" class="xref">Observe</a></p>
</li>
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.6.2.3">
<p id="section-toc.1-1.6.2.3.1"><a href="#section-6.3" class="xref">6.3</a>. <a href="#name-no-response" class="xref">No-Response</a></p>
</li>
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.6.2.4">
<p id="section-toc.1-1.6.2.4.1"><a href="#section-6.4" class="xref">6.4</a>. <a href="#name-oscore" class="xref">OSCORE</a></p>
</li>
</ul>
</li>
<li class="ulEmpty toc compact ulBare" id="section-toc.1-1.7">
<p id="section-toc.1-1.7.1"><a href="#section-7" class="xref">7</a>. <a href="#name-examples-of-coap-header-com" class="xref">Examples of CoAP Header Compression</a></p>
<ul class="compact ulEmpty toc ulBare">
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.7.2.1">
<p id="section-toc.1-1.7.2.1.1"><a href="#section-7.1" class="xref">7.1</a>. <a href="#name-mandatory-header-with-con-m" class="xref">Mandatory Header with CON Message</a></p>
</li>
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.7.2.2">
<p id="section-toc.1-1.7.2.2.1"><a href="#section-7.2" class="xref">7.2</a>. <a href="#name-oscore-compression" class="xref">OSCORE Compression</a></p>
</li>
<li class="compact ulEmpty toc ulBare" id="section-toc.1-1.7.2.3">
<p id="section-toc.1-1.7.2.3.1"><a href="#section-7.3" class="xref">7.3</a>. <a href="#name-example-oscore-compression" class="xref">Example OSCORE Compression</a></p>
</li>
</ul>
</li>
<li class="ulEmpty toc compact ulBare" id="section-toc.1-1.8">
<p id="section-toc.1-1.8.1"><a href="#section-8" class="xref">8</a>. <a href="#name-iana-considerations" class="xref">IANA Considerations</a></p>
</li>
<li class="ulEmpty toc compact ulBare" id="section-toc.1-1.9">
<p id="section-toc.1-1.9.1"><a href="#section-9" class="xref">9</a>. <a href="#name-security-considerations" class="xref">Security Considerations</a></p>
</li>
<li class="ulEmpty toc compact ulBare" id="section-toc.1-1.10">
<p id="section-toc.1-1.10.1"><a href="#section-10" class="xref">10</a>. <a href="#name-normative-references" class="xref">Normative References</a></p>
</li>
<li class="ulEmpty toc compact ulBare" id="section-toc.1-1.11">
<p id="section-toc.1-1.11.1"><a href="#appendix-A" class="xref"></a><a href="#name-acknowledgements" class="xref">Acknowledgements</a></p>
</li>
<li class="ulEmpty toc compact ulBare" id="section-toc.1-1.12">
<p id="section-toc.1-1.12.1"><a href="#appendix-B" class="xref"></a><a href="#name-authors-addresses" class="xref">Authors' Addresses</a></p>
</li>
</ul>
</nav>
</section>
</div>
<div id="Introduction">
<section id="section-1">
<h2 id="name-introduction">
<a href="#section-1" class="section-number selfRef">1. </a><a href="#name-introduction" class="section-name selfRef">Introduction</a>
</h2>
<p id="section-1-1">The Constrained Application Protocol (CoAP) <span>[<a href="#RFC7252" class="xref">RFC7252</a>]</span> is a command/response protocol designed for microcontrollers with small RAM and ROM and optimized for services based on REST (Representational State Transfer). Although the Constrained Devices are a leading factor in the design of CoAP, a CoAP header's size is still too large for LPWANs (Low-Power Wide-Area Networks). Static Context Header Compression and fragmentation (SCHC) over CoAP headers is required to increase performance or to use CoAP over LPWAN technologies.<a href="#section-1-1" class="pilcrow">¶</a></p>
<p id="section-1-2"><span>[<a href="#RFC8724" class="xref">RFC8724</a>]</span> defines the SCHC framework, which includes a header compression mechanism for LPWANs that is based on a static context.
<span><a href="https://www.rfc-editor.org/rfc/rfc8724#section-5" class="relref">Section 5</a> of [<a href="#RFC8724" class="xref">RFC8724</a>]</span> explains where compression and decompression occur in the architecture. The SCHC compression scheme assumes as a prerequisite that both endpoints know the static context before transmission. The way the context is configured, provisioned, or exchanged is out of this document's scope.<a href="#section-1-2" class="pilcrow">¶</a></p>
<p id="section-1-3">CoAP is an application protocol, so CoAP compression requires installing common Rules between the two SCHC instances. SCHC compression may apply at two different levels: at IP and UDP in the LPWAN and another at the application level for CoAP. These two compression techniques may be independent. Both follow the same principle as that described in <span>[<a href="#RFC8724" class="xref">RFC8724</a>]</span>. As different entities manage the CoAP compression process at different levels, the SCHC Rules driving the compression/decompression are also different. <span>[<a href="#RFC8724" class="xref">RFC8724</a>]</span> describes how to use SCHC for IP and UDP headers. This document specifies how to apply SCHC compression to CoAP headers.<a href="#section-1-3" class="pilcrow">¶</a></p>
<p id="section-1-4">SCHC compresses and decompresses headers based on common contexts between Devices. The SCHC context includes multiple Rules. Each Rule can match the header fields to specific values or ranges of values. If a Rule matches, the matched header fields are replaced by the RuleID and the Compression Residue that contains the residual bits of the compression. Thus, different Rules may correspond to different protocol headers in the packet that a Device expects to send or receive.<a href="#section-1-4" class="pilcrow">¶</a></p>
<p id="section-1-5">A Rule describes the packets' entire header with an ordered list of Field Descriptors; see <span><a href="https://www.rfc-editor.org/rfc/rfc8724#section-7" class="relref">Section 7</a> of [<a href="#RFC8724" class="xref">RFC8724</a>]</span>. Thereby, each description contains the Field ID (FID), Field Length (FL), and Field Position (FP), as well as a Direction Indicator (DI) (upstream, downstream, and bidirectional) and some associated Target Values (TVs). The DI is used for compression to give the best TV to the FID when these values differ in their transmission direction. So, a field may be described several times.<a href="#section-1-5" class="pilcrow">¶</a></p>
<p id="section-1-6">A Matching Operator (MO) is associated with each header Field Descriptor. The Rule is selected if all the MOs fit the TVs for all fields of the incoming header.
A Rule cannot be selected if the message contains a field that is unknown to the SCHC compressor.<a href="#section-1-6" class="pilcrow">¶</a></p>
<p id="section-1-7">In that case, a Compression/Decompression Action (CDA) associated with each field gives the method to compress and decompress each field.
Compression mainly results in one of four actions:<a href="#section-1-7" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-1-8.1">send the field value (value-sent),<a href="#section-1-8.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-1-8.2">send nothing (not-sent),<a href="#section-1-8.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-1-8.3">send some Least Significant Bits (LSBs) of the field, or<a href="#section-1-8.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-1-8.4">send an index (mapping-sent).<a href="#section-1-8.4" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-1-9">After applying the compression, there may be some bits to be sent.
These values are called "Compression Residue".<a href="#section-1-9" class="pilcrow">¶</a></p>
<p id="section-1-10">SCHC is a general mechanism applied to different protocols, with the exact Rules to be used depending on the protocol and the application. <span><a href="https://www.rfc-editor.org/rfc/rfc8724#section-10" class="relref">Section 10</a> of [<a href="#RFC8724" class="xref">RFC8724</a>]</span> describes the compression scheme for IPv6 and UDP headers. This document targets CoAP header compression using SCHC.<a href="#section-1-10" class="pilcrow">¶</a></p>
<div id="terminology">
<section id="section-1.1">
<h3 id="name-terminology">
<a href="#section-1.1" class="section-number selfRef">1.1. </a><a href="#name-terminology" class="section-name selfRef">Terminology</a>
</h3>
<p id="section-1.1-1">The key words "<span class="bcp14">MUST</span>", "<span class="bcp14">MUST NOT</span>",
"<span class="bcp14">REQUIRED</span>", "<span class="bcp14">SHALL</span>",
"<span class="bcp14">SHALL NOT</span>", "<span class="bcp14">SHOULD</span>",
"<span class="bcp14">SHOULD NOT</span>",
"<span class="bcp14">RECOMMENDED</span>", "<span class="bcp14">NOT RECOMMENDED</span>",
"<span class="bcp14">MAY</span>", and "<span class="bcp14">OPTIONAL</span>" in this document
are to be interpreted as described in BCP 14
<span>[<a href="#RFC2119" class="xref">RFC2119</a>]</span> <span>[<a href="#RFC8174" class="xref">RFC8174</a>]</span> when, and only
when, they appear in all capitals, as shown here.<a href="#section-1.1-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="schc-applicability-to-coap">
<section id="section-2">
<h2 id="name-schc-applicability-to-coap">
<a href="#section-2" class="section-number selfRef">2. </a><a href="#name-schc-applicability-to-coap" class="section-name selfRef">SCHC Applicability to CoAP</a>
</h2>
<p id="section-2-1">SCHC compression for CoAP headers <span class="bcp14">MAY</span> be done in conjunction with the lower layers (IPv6/UDP) or independently. The SCHC adaptation layers, described in <span><a href="https://www.rfc-editor.org/rfc/rfc8724#section-5" class="relref">Section 5</a> of [<a href="#RFC8724" class="xref">RFC8724</a>]</span>, may be used as shown in Figures <a href="#Fig-SCHCCOAP1" class="xref">1</a>, <a href="#Fig-SCHCCOAP2" class="xref">2</a>, and <a href="#Fig-SCHCCOAP3" class="xref">3</a>.<a href="#section-2-1" class="pilcrow">¶</a></p>
<p id="section-2-2">In the first example, <a href="#Fig-SCHCCOAP1" class="xref">Figure 1</a>, a Rule compresses the complete header stack from IPv6 to CoAP. In this case, the Device and the Network Gateway (NGW) perform SCHC C/D (SCHC Compression/Decompression; see <span>[<a href="#RFC8724" class="xref">RFC8724</a>]</span>). The application communicating with the Device does not implement SCHC C/D.<a href="#section-2-2" class="pilcrow">¶</a></p>
<span id="name-compression-decompression-a"></span><div id="Fig-SCHCCOAP1">
<figure id="figure-1">
<div class="artwork art-text alignLeft" id="section-2-3.1">
<pre>
(Device) (NGW) (App)
+--------+ +--------+
| CoAP | | CoAP |
+--------+ +--------+
| UDP | | UDP |
+--------+ +----------------+ +--------+
| IPv6 | | IPv6 | | IPv6 |
+--------+ +--------+-------+ +--------+
| SCHC | | SCHC | | | |
+--------+ +--------+ + + +
| LPWAN | | LPWAN | | | |
+--------+ +--------+-------+ +--------+
((((LPWAN)))) ------ Internet ------
</pre>
</div>
<figcaption><a href="#figure-1" class="selfRef">Figure 1</a>:
<a href="#name-compression-decompression-a" class="selfRef">Compression/Decompression at the LPWAN Boundary</a>
</figcaption></figure>
</div>
<p id="section-2-4"><a href="#Fig-SCHCCOAP1" class="xref">Figure 1</a> shows the use of SCHC header compression above Layer 2 in the Device and the NGW. The SCHC layer receives non-encrypted packets and can apply compression Rules to all the headers in the stack. On the other end, the NGW receives the SCHC packet and reconstructs the headers using the Rule and the Compression Residue. After the decompression, the NGW forwards the IPv6 packet toward the destination. The same process applies in the other direction when a non-encrypted packet arrives at the NGW. Thanks to the IP forwarding based on the IPv6 prefix, the NGW identifies the Device and compresses headers using the Device's Rules.<a href="#section-2-4" class="pilcrow">¶</a></p>
<p id="section-2-5">In the second example, <a href="#Fig-SCHCCOAP2" class="xref">Figure 2</a>, SCHC compression is applied in the CoAP layer, compressing the CoAP header independently of the other layers. The RuleID, Compression Residue, and CoAP payload are encrypted using a mechanism such as DTLS. Only the other end (App) can decipher the information. If needed, layers below use SCHC to compress the header as defined in <span>[<a href="#RFC8724" class="xref">RFC8724</a>]</span> (represented by dotted lines in the figure).<a href="#section-2-5" class="pilcrow">¶</a></p>
<p id="section-2-6">This use case needs an end-to-end context initialization between the Device and the application. The context initialization is out of scope for this document.<a href="#section-2-6" class="pilcrow">¶</a></p>
<span id="name-standalone-coap-end-to-end-"></span><div id="Fig-SCHCCOAP2">
<figure id="figure-2">
<div class="artwork art-text alignLeft" id="section-2-7.1">
<pre>
(Device) (NGW) (App)
+--------+ +--------+
| CoAP | | CoAP |
+--------+ +--------+
| SCHC | | SCHC |
+--------+ +--------+
| DTLS | | DTLS |
+--------+ +--------+
. udp . . udp .
.......... .................. ..........
. ipv6 . . ipv6 . . ipv6 .
.......... .................. ..........
. schc . . schc . . . .
.......... .......... . . .
. lpwan . . lpwan . . . .
.......... .................. ..........
((((LPWAN)))) ------ Internet ------
</pre>
</div>
<figcaption><a href="#figure-2" class="selfRef">Figure 2</a>:
<a href="#name-standalone-coap-end-to-end-" class="selfRef">Standalone CoAP End-to-End Compression/Decompression</a>
</figcaption></figure>
</div>
<p id="section-2-8">The third example, <a href="#Fig-SCHCCOAP3" class="xref">Figure 3</a>, shows the use of Object Security for Constrained RESTful Environments (OSCORE) <span>[<a href="#RFC8613" class="xref">RFC8613</a>]</span>. In this case, SCHC needs two Rules to compress the CoAP header. A first Rule focuses on the Inner header. The result of this first compression is encrypted using the OSCORE mechanism. Then, a second Rule compresses the Outer header, including the OSCORE options.<a href="#section-2-8" class="pilcrow">¶</a></p>
<span id="name-oscore-compression-decompre"></span><div id="Fig-SCHCCOAP3">
<figure id="figure-3">
<div class="artwork art-text alignLeft" id="section-2-9.1">
<pre>
(Device) (NGW) (App)
+--------+ +--------+
| CoAP | | CoAP |
| Inner | | Inner |
+--------+ +--------+
| SCHC | | SCHC |
| Inner | | Inner |
+--------+ +--------+
| CoAP | | CoAP |
| Outer | | Outer |
+--------+ +--------+
| SCHC | | SCHC |
| Outer | | Outer |
+--------+ +--------+
. udp . . udp .
.......... .................. ..........
. ipv6 . . ipv6 . . ipv6 .
.......... .................. ..........
. schc . . schc . . . .
.......... .......... . . .
. lpwan . . lpwan . . . .
.......... .................. ..........
((((LPWAN)))) ------ Internet ------
</pre>
</div>
<figcaption><a href="#figure-3" class="selfRef">Figure 3</a>:
<a href="#name-oscore-compression-decompre" class="selfRef">OSCORE Compression/Decompression</a>
</figcaption></figure>
</div>
<p id="section-2-10">In the case of several SCHC instances, as shown in Figures <a href="#Fig-SCHCCOAP2" class="xref">2</a> and <a href="#Fig-SCHCCOAP3" class="xref">3</a>, the Rules may come from different provisioning domains.<a href="#section-2-10" class="pilcrow">¶</a></p>
<p id="section-2-11">This document focuses on CoAP compression, as represented by the dashed boxes in the previous figures.<a href="#section-2-11" class="pilcrow">¶</a></p>
</section>
</div>
<div id="coap-headers-compressed-with-schc">
<section id="section-3">
<h2 id="name-coap-headers-compressed-wit">
<a href="#section-3" class="section-number selfRef">3. </a><a href="#name-coap-headers-compressed-wit" class="section-name selfRef">CoAP Headers Compressed with SCHC</a>
</h2>
<p id="section-3-1">The use of SCHC over the CoAP header applies the same description and compression/decompression techniques as the technique used for IP and UDP, as explained in <span>[<a href="#RFC8724" class="xref">RFC8724</a>]</span>. For CoAP, the SCHC Rules description uses the direction information to optimize the compression by reducing the number of Rules needed to compress headers. The Field Descriptor <span class="bcp14">MAY</span> define both request/response headers and TVs in the same Rule, using the DI to indicate the header type.<a href="#section-3-1" class="pilcrow">¶</a></p>
<p id="section-3-2">As for other header compression protocols, when the compressor does not find a correct Rule to compress the header, the packet <span class="bcp14">MUST</span> be sent uncompressed using the RuleID dedicated to this purpose, and where the Compression Residue is the complete header of the packet. See <span><a href="https://www.rfc-editor.org/rfc/rfc8724#section-6" class="relref">Section 6</a> of [<a href="#RFC8724" class="xref">RFC8724</a>]</span>.<a href="#section-3-2" class="pilcrow">¶</a></p>
<div id="differences-between-coap-and-udpip-compression">
<section id="section-3.1">
<h3 id="name-differences-between-coap-an">
<a href="#section-3.1" class="section-number selfRef">3.1. </a><a href="#name-differences-between-coap-an" class="section-name selfRef">Differences between CoAP and UDP/IP Compression</a>
</h3>
<p id="section-3.1-1">CoAP compression differs from IPv6 and UDP compression in the following aspects:<a href="#section-3.1-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-3.1-2.1">
<p id="section-3.1-2.1.1">The CoAP message format is asymmetric; the headers are different for a request or a response.
For example, the Uri-Path option is mandatory in the request, and it might not be present in the response.
A request might contain an Accept option, and the response might include a Content-Format option.
In comparison, the IPv6 and UDP returning path swaps the value of some fields in the header. However, all the directions have the same fields (e.g., source and destination address fields).<a href="#section-3.1-2.1.1" class="pilcrow">¶</a></p>
<p id="section-3.1-2.1.2">
<span>[<a href="#RFC8724" class="xref">RFC8724</a>]</span> defines the use of a DI in the
Field Descriptor, which allows a single Rule to process a message
header differently, depending on the direction.<a href="#section-3.1-2.1.2" class="pilcrow">¶</a></p>
</li>
<li class="normal" id="section-3.1-2.2">Even when a field is "symmetric" (i.e., found in both directions), the values carried in each direction are different.
The compression may use a "match-mapping" MO to limit the range of expected values
in a particular direction and reduce the Compression Residue's size.
Through the DI, a Field Descriptor in the Rules splits the possible field value into two parts,
one for each direction. For instance, if a client sends only Confirmable (CON) requests <span>[<a href="#RFC7252" class="xref">RFC7252</a>]</span>, the Type can be elided by compression,
and the answer may use one single bit to carry either the ACK or Reset (RST) type.
The field Code has the same behavior: the 0.0X code format value in the request and the Y.ZZ code format in the response.<a href="#section-3.1-2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3.1-2.3">
<p id="section-3.1-2.3.1">In SCHC, the Rule defines the different header fields' length, so SCHC does not need to send it.
In IPv6 and UDP headers, the fields have a fixed size, known by definition.
On the other hand, some CoAP header fields have variable lengths, and the Rule description specifies it.
For example, in a Uri-Path or Uri-Query, the Token size may vary from 0 to 8 bytes,
and the CoAP options use the Type-Length-Value encoding format.<a href="#section-3.1-2.3.1" class="pilcrow">¶</a></p>
<p id="section-3.1-2.3.2">
When doing SCHC compression of a variable-length field,
<span><a href="https://www.rfc-editor.org/rfc/rfc8724#section-7.4.2" class="relref">Section 7.4.2</a> of [<a href="#RFC8724" class="xref">RFC8724</a>]</span> offers the option of defining a function for the Field Length in the Field Descriptor to know the length before compression. If the Field Length is unknown, the Rule will set it as a variable, and SCHC will send the compressed field's length in the Compression Residue.<a href="#section-3.1-2.3.2" class="pilcrow">¶</a></p>
</li>
<li class="normal" id="section-3.1-2.4">A field can appear several times in the CoAP headers.
It is found typically for elements of a URI (path or queries).
The SCHC specification <span>[<a href="#RFC8724" class="xref">RFC8724</a>]</span> allows a FID to appear several times in the Rule
and uses the Field Position (FP) to identify the correct instance, thereby removing the MO's ambiguity.<a href="#section-3.1-2.4" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-3.1-2.5">Field Lengths defined in CoAP can be too large when it comes to LPWAN traffic constraints.
For instance, this is particularly true for the Message ID field and the Token field.
SCHC uses different MOs to perform the compression. See
<span><a href="https://www.rfc-editor.org/rfc/rfc8724#section-7.4" class="relref">Section 7.4</a> of [<a href="#RFC8724" class="xref">RFC8724</a>]</span>.
In this case, SCHC can apply the Most Significant Bits (MSBs) MO to reduce the information carried on LPWANs.<a href="#section-3.1-2.5" class="pilcrow">¶</a>
</li>
</ul>
</section>
</div>
</section>
</div>
<div id="CoAPcomp">
<section id="section-4">
<h2 id="name-compression-of-coap-header-">
<a href="#section-4" class="section-number selfRef">4. </a><a href="#name-compression-of-coap-header-" class="section-name selfRef">Compression of CoAP Header Fields</a>
</h2>
<p id="section-4-1">This section discusses the compression of the different CoAP header fields. CoAP compression with SCHC follows the information provided in <span><a href="https://www.rfc-editor.org/rfc/rfc8724#section-7.1" class="relref">Section 7.1</a> of [<a href="#RFC8724" class="xref">RFC8724</a>]</span>.<a href="#section-4-1" class="pilcrow">¶</a></p>
<div id="coap-version-field">
<section id="section-4.1">
<h3 id="name-coap-version-field">
<a href="#section-4.1" class="section-number selfRef">4.1. </a><a href="#name-coap-version-field" class="section-name selfRef">CoAP Version Field</a>
</h3>
<p id="section-4.1-1">The CoAP version is bidirectional and <span class="bcp14">MUST</span> be elided during SCHC compression, since it always contains the same value.
In the future, or if a new version of CoAP is defined, new Rules will be needed to avoid ambiguities between versions.<a href="#section-4.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="coap-type-field">
<section id="section-4.2">
<h3 id="name-coap-type-field">
<a href="#section-4.2" class="section-number selfRef">4.2. </a><a href="#name-coap-type-field" class="section-name selfRef">CoAP Type Field</a>
</h3>
<p id="section-4.2-1">CoAP <span>[<a href="#RFC7252" class="xref">RFC7252</a>]</span> has four types of messages: two requests (CON, NON), one response (ACK), and one empty message (RST).<a href="#section-4.2-1" class="pilcrow">¶</a></p>
<p id="section-4.2-2">The SCHC compression scheme <span class="bcp14">SHOULD</span> elide this field if, for instance, a client is sending only Non-confirmable (NON) messages or only CON messages.
For the RST message, SCHC may use a dedicated Rule. For other usages, SCHC can use a "match-mapping" MO.<a href="#section-4.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="coap-code-field">
<section id="section-4.3">
<h3 id="name-coap-code-field">
<a href="#section-4.3" class="section-number selfRef">4.3. </a><a href="#name-coap-code-field" class="section-name selfRef">CoAP Code Field</a>
</h3>
<p id="section-4.3-1">The Code field, defined in an IANA registry <span>[<a href="#RFC7252" class="xref">RFC7252</a>]</span>, indicates the Request Method used in CoAP.
The compression of the CoAP Code field follows the same principle as that of the CoAP Type field. If the Device plays a specific role, SCHC may split the code values into two Field Descriptors: (1) the request codes with the 0 class and (2) the response values. SCHC will use the DI to identify the correct value in the packet.<a href="#section-4.3-1" class="pilcrow">¶</a></p>
<p id="section-4.3-2">If the Device only implements a CoAP client, SCHC compression may reduce the request code to the set of requests the client can process.<a href="#section-4.3-2" class="pilcrow">¶</a></p>
<p id="section-4.3-3">For known values, SCHC can use a "match-mapping" MO. If SCHC cannot compress the Code field, it will send the values in the Compression Residue.<a href="#section-4.3-3" class="pilcrow">¶</a></p>
</section>
</div>
<div id="coap-message-id-field">
<section id="section-4.4">
<h3 id="name-coap-message-id-field">
<a href="#section-4.4" class="section-number selfRef">4.4. </a><a href="#name-coap-message-id-field" class="section-name selfRef">CoAP Message ID Field</a>
</h3>
<p id="section-4.4-1">SCHC can compress the Message ID field with the "MSB" MO and the "LSB" CDA.
See <span><a href="https://www.rfc-editor.org/rfc/rfc8724#section-7.4" class="relref">Section 7.4</a> of [<a href="#RFC8724" class="xref">RFC8724</a>]</span>.<a href="#section-4.4-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="coap-token-fields">
<section id="section-4.5">
<h3 id="name-coap-token-fields">
<a href="#section-4.5" class="section-number selfRef">4.5. </a><a href="#name-coap-token-fields" class="section-name selfRef">CoAP Token Fields</a>
</h3>
<p id="section-4.5-1">CoAP defines the Token using two CoAP fields: Token Length in the
mandatory header and Token Value directly following the mandatory
CoAP header.<a href="#section-4.5-1" class="pilcrow">¶</a></p>
<p id="section-4.5-2">SCHC processes the Token Length as it would any header field. If the value does not change, the size can be stored in the TV and elided during the transmission. Otherwise, SCHC will send the Token Length in the Compression Residue.<a href="#section-4.5-2" class="pilcrow">¶</a></p>
<p id="section-4.5-3">For the Token Value, SCHC <span class="bcp14">MUST NOT</span> send it as
variable-length data in the Compression Residue, to avoid ambiguity with the Token Length. Therefore, SCHC <span class="bcp14">MUST</span> use the Token Length value to define the size of the Compression Residue. SCHC designates a specific function, "tkl", that the Rule <span class="bcp14">MUST</span> use to complete the Field Descriptor. During the decompression, this function returns the value contained in the Token Length field.<a href="#section-4.5-3" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="coap-options">
<section id="section-5">
<h2 id="name-coap-options">
<a href="#section-5" class="section-number selfRef">5. </a><a href="#name-coap-options" class="section-name selfRef">CoAP Options</a>
</h2>
<p id="section-5-1">CoAP defines options placed after the basic header, ordered by option number; see <span>[<a href="#RFC7252" class="xref">RFC7252</a>]</span>. Each Option instance in a message uses
the format Delta-Type (D-T), Length (L), Value (V). The SCHC Rule builds the description of the option by using the following:<a href="#section-5-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-5-2.1">in the FID: the option number built from the D-T;<a href="#section-5-2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5-2.2">in the TV: the option value; and<a href="#section-5-2.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5-2.3">for the Option Length: the information provided in Sections <a href="https://www.rfc-editor.org/rfc/rfc8724#section-7.4.1" class="relref">7.4.1</a> and <a href="https://www.rfc-editor.org/rfc/rfc8724#section-7.4.2" class="relref">7.4.2</a> of <span>[<a href="#RFC8724" class="xref">RFC8724</a>]</span>.<a href="#section-5-2.3" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-5-3">When the Option Length has a well-known size, the Rule may keep the length value. Therefore, SCHC compression does not send it. Otherwise, SCHC compression carries the length of the Compression Residue, in addition to the Compression Residue value.<a href="#section-5-3" class="pilcrow">¶</a></p>
<p id="section-5-4">CoAP requests and responses do not include the same options. So, compression Rules may reflect this asymmetry by tagging the DI.<a href="#section-5-4" class="pilcrow">¶</a></p>
<p id="section-5-5">Note that length coding differs between CoAP options and SCHC variable size Compression Residue.<a href="#section-5-5" class="pilcrow">¶</a></p>
<p id="section-5-6">The following sections present how SCHC compresses some specific CoAP options.<a href="#section-5-6" class="pilcrow">¶</a></p>
<p id="section-5-7">If CoAP introduces a new option, the SCHC Rules <span class="bcp14">MAY</span> be updated, and the new FID description <span class="bcp14">MUST</span> be assigned to allow its compression.
Otherwise, if no Rule describes this new option, SCHC compression is not achieved, and SCHC sends the CoAP header without compression.<a href="#section-5-7" class="pilcrow">¶</a></p>
<div id="coap-content-and-accept-options">
<section id="section-5.1">
<h3 id="name-coap-content-and-accept-opt">
<a href="#section-5.1" class="section-number selfRef">5.1. </a><a href="#name-coap-content-and-accept-opt" class="section-name selfRef">CoAP Content and Accept Options</a>
</h3>
<p id="section-5.1-1">If the client expects a single value, it can be stored in the TV and elided during the transmission.
Otherwise, if the client expects several possible values, a "match-mapping" MO <span class="bcp14">SHOULD</span> be used to limit the Compression Residue's size. If not, SCHC has to send the option value in the Compression Residue (fixed or variable length).<a href="#section-5.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="coap-option-max-age-uri-host-and-uri-port-fields">
<section id="section-5.2">
<h3 id="name-coap-option-max-age-uri-hos">
<a href="#section-5.2" class="section-number selfRef">5.2. </a><a href="#name-coap-option-max-age-uri-hos" class="section-name selfRef">CoAP Option Max-Age, Uri-Host, and Uri-Port Fields</a>
</h3>
<p id="section-5.2-1">SCHC compresses these three fields in the same way. When the values of these options are known, SCHC can elide these fields.
If the option uses well-known values, SCHC can use a "match-mapping" MO. Otherwise, SCHC will use the "value-sent" MO, and the Compression Residue will send these options' values.<a href="#section-5.2-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="coap-option-uri-path-and-uri-query-fields">
<section id="section-5.3">
<h3 id="name-coap-option-uri-path-and-ur">
<a href="#section-5.3" class="section-number selfRef">5.3. </a><a href="#name-coap-option-uri-path-and-ur" class="section-name selfRef">CoAP Option Uri-Path and Uri-Query Fields</a>
</h3>
<p id="section-5.3-1">The Uri-Path and Uri-Query fields are repeatable options; this means that in the CoAP header, they may appear several times with different values. The SCHC Rule description uses the FP to distinguish the different instances in the path.<a href="#section-5.3-1" class="pilcrow">¶</a></p>
<p id="section-5.3-2">To compress repeatable field values, SCHC may use a "match-mapping" MO to reduce the size of variable paths or queries. In these cases, to optimize the compression, several elements can be regrouped into a single entry. The numbering of elements does not change, and the first matching element sets the MO comparison.<a href="#section-5.3-2" class="pilcrow">¶</a></p>
<p id="section-5.3-3">In <a href="#Table-complex-path" class="xref">Table 1</a>, SCHC can use a single bit in the Compression Residue to code one of the two paths.
If regrouping were not allowed, 2 bits in the Compression Residue would be needed. SCHC sends the third path element as a variable size in the Compression Residue.<a href="#section-5.3-3" class="pilcrow">¶</a></p>
<span id="name-complex-path-example"></span><div id="Table-complex-path">
<table class="center" id="table-1">
<caption>
<a href="#table-1" class="selfRef">Table 1</a>:
<a href="#name-complex-path-example" class="selfRef">Complex Path Example</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Field</th>
<th class="text-center" rowspan="1" colspan="1">FL</th>
<th class="text-center" rowspan="1" colspan="1">FP</th>
<th class="text-center" rowspan="1" colspan="1">DI</th>
<th class="text-center" rowspan="1" colspan="1">TV</th>
<th class="text-center" rowspan="1" colspan="1">MO</th>
<th class="text-center" rowspan="1" colspan="1">CDA</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">Uri-Path</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Up</td>
<td class="text-left" rowspan="1" colspan="1">["/a/b",<br>"/c/d"]</td>
<td class="text-left" rowspan="1" colspan="1">match-<br>mapping</td>
<td class="text-left" rowspan="1" colspan="1">mapping-sent</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">Uri-Path</td>
<td class="text-left" rowspan="1" colspan="1">var</td>
<td class="text-left" rowspan="1" colspan="1">3</td>
<td class="text-left" rowspan="1" colspan="1">Up</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">ignore</td>
<td class="text-left" rowspan="1" colspan="1">value-sent</td>
</tr>
</tbody>
</table>
</div>
<p id="section-5.3-5">The length of Uri-Path and Uri-Query may be known when the Rule is defined. In any case, SCHC <span class="bcp14">MUST</span> set the Field Length to a variable value. The Compression Residue size is expressed in bytes.<a href="#section-5.3-5" class="pilcrow">¶</a></p>
<p id="section-5.3-6">SCHC compression can use the MSB MO to a Uri-Path or Uri-Query element. However, attention to the length is important because the MSB value is in bits, and the size <span class="bcp14">MUST</span> always be a multiple of 8 bits.<a href="#section-5.3-6" class="pilcrow">¶</a></p>
<p id="section-5.3-7">The length sent at the beginning of a variable-length Compression Residue indicates the LSB's size in bytes.<a href="#section-5.3-7" class="pilcrow">¶</a></p>
<p id="section-5.3-8">For instance, for a CORECONF path /c/X6?k=eth0, the Rule description can be as follows (<a href="#Table-CoMicompress" class="xref">Table 2</a>):<a href="#section-5.3-8" class="pilcrow">¶</a></p>
<span id="name-coreconf-uri-compression"></span><div id="Table-CoMicompress">
<table class="center" id="table-2">
<caption>
<a href="#table-2" class="selfRef">Table 2</a>:
<a href="#name-coreconf-uri-compression" class="selfRef">CORECONF URI Compression</a>
</caption>
<thead>
<tr>
<th class="text-center" rowspan="1" colspan="1">Field</th>
<th class="text-center" rowspan="1" colspan="1">FL</th>
<th class="text-center" rowspan="1" colspan="1">FP</th>
<th class="text-center" rowspan="1" colspan="1">DI</th>
<th class="text-center" rowspan="1" colspan="1">TV</th>
<th class="text-center" rowspan="1" colspan="1">MO</th>
<th class="text-center" rowspan="1" colspan="1">CDA</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">Uri-Path</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Up</td>
<td class="text-left" rowspan="1" colspan="1">"c"</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">Uri-Path</td>
<td class="text-left" rowspan="1" colspan="1">var</td>
<td class="text-left" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">Up</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">ignore</td>
<td class="text-left" rowspan="1" colspan="1">value-sent</td>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">Uri-Query</td>
<td class="text-left" rowspan="1" colspan="1">var</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Up</td>
<td class="text-left" rowspan="1" colspan="1">"k="</td>
<td class="text-left" rowspan="1" colspan="1">MSB(16)</td>
<td class="text-left" rowspan="1" colspan="1">LSB</td>
</tr>
</tbody>
</table>
</div>
<p id="section-5.3-10"><a href="#Table-CoMicompress" class="xref">Table 2</a> shows the Rule description for a Uri-Path and a Uri-Query. SCHC compresses the first part of the Uri-Path with a "not-sent" CDA.
SCHC will send the second element of the Uri-Path with the length (i.e., 0x2 "X6") followed by the query option (i.e., 0x4 "eth0").<a href="#section-5.3-10" class="pilcrow">¶</a></p>
<div id="variable-number-of-path-or-query-elements">
<section id="section-5.3.1">
<h4 id="name-variable-number-of-path-or-">
<a href="#section-5.3.1" class="section-number selfRef">5.3.1. </a><a href="#name-variable-number-of-path-or-" class="section-name selfRef">Variable Number of Path or Query Elements</a>
</h4>
<p id="section-5.3.1-1">SCHC fixed the number of Uri-Path or Uri-Query elements in a Rule at
the Rule creation time. If the number varies, SCHC <span class="bcp14">SHOULD</span> either<a href="#section-5.3.1-1" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-5.3.1-2.1">create several Rules to cover all possibilities or<a href="#section-5.3.1-2.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-5.3.1-2.2">create a Rule that defines several entries for Uri-Path to cover the longest path and send a Compression Residue with a length of 0 to indicate that a Uri-Path entry is empty.<a href="#section-5.3.1-2.2" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-5.3.1-3">However, this adds 4 bits to the variable Compression Residue size. See
<span><a href="https://www.rfc-editor.org/rfc/rfc8724#section-7.4.2" class="relref">Section 7.4.2</a> of [<a href="#RFC8724" class="xref">RFC8724</a>]</span>.<a href="#section-5.3.1-3" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="coap-option-size1-size2-proxy-uri-and-proxy-scheme-fields">
<section id="section-5.4">
<h3 id="name-coap-option-size1-size2-pro">
<a href="#section-5.4" class="section-number selfRef">5.4. </a><a href="#name-coap-option-size1-size2-pro" class="section-name selfRef">CoAP Option Size1, Size2, Proxy-URI, and Proxy-Scheme Fields</a>
</h3>
<p id="section-5.4-1">The SCHC Rule description <span class="bcp14">MAY</span> define sending some field values by setting the TV to "not-sent", the MO to "ignore", and the CDA to "value-sent". A Rule <span class="bcp14">MAY</span> also use a "match-mapping" MO when there are different options for the same FID. Otherwise, the Rule sets the TV to the value, the MO to "equal", and the CDA to "not-sent".<a href="#section-5.4-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="coap-option-etag-if-match-if-none-match-location-path-and-location-query-fields">
<section id="section-5.5">
<h3 id="name-coap-option-etag-if-match-i">
<a href="#section-5.5" class="section-number selfRef">5.5. </a><a href="#name-coap-option-etag-if-match-i" class="section-name selfRef">CoAP Option ETag, If-Match, If-None-Match, Location-Path, and Location-Query Fields</a>
</h3>
<p id="section-5.5-1">A Rule entry cannot store these fields' values. The Rule description <span class="bcp14">MUST</span> always send these values in the Compression Residue.<a href="#section-5.5-1" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="schc-compression-of-coap-extension-rfcs">
<section id="section-6">
<h2 id="name-schc-compression-of-coap-ex">
<a href="#section-6" class="section-number selfRef">6. </a><a href="#name-schc-compression-of-coap-ex" class="section-name selfRef">SCHC Compression of CoAP Extensions</a>
</h2>
<div id="block">
<section id="section-6.1">
<h3 id="name-block">
<a href="#section-6.1" class="section-number selfRef">6.1. </a><a href="#name-block" class="section-name selfRef">Block</a>
</h3>
<p id="section-6.1-1">When a packet uses a Block option <span>[<a href="#RFC7959" class="xref">RFC7959</a>]</span>, SCHC compression <span class="bcp14">MUST</span> send its content in the Compression Residue.
The SCHC Rule describes an empty TV with the MO set to "ignore" and the CDA set to "value-sent".
The Block option allows fragmentation at the CoAP level that is compatible with SCHC fragmentation.
Both fragmentation mechanisms are complementary, and the node may use them for the same packet as needed.<a href="#section-6.1-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="observe">
<section id="section-6.2">
<h3 id="name-observe">
<a href="#section-6.2" class="section-number selfRef">6.2. </a><a href="#name-observe" class="section-name selfRef">Observe</a>
</h3>
<p id="section-6.2-1"><span>[<a href="#RFC7641" class="xref">RFC7641</a>]</span> defines the Observe Option. The SCHC Rule description will not define the TV but will set the MO to "ignore" and the CDA to "value-sent". SCHC does not limit the maximum size for this option (3 bytes). To reduce the transmission size, either the Device implementation <span class="bcp14">MAY</span> limit the delta between two consecutive values or a proxy can modify the increment.<a href="#section-6.2-1" class="pilcrow">¶</a></p>
<p id="section-6.2-2">Since the Observe Option <span class="bcp14">MAY</span> use a RST message to inform a server that the client does not require the Observe response, a specific SCHC Rule <span class="bcp14">SHOULD</span> exist to allow the message's compression with the RST type.<a href="#section-6.2-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="no-response">
<section id="section-6.3">
<h3 id="name-no-response">
<a href="#section-6.3" class="section-number selfRef">6.3. </a><a href="#name-no-response" class="section-name selfRef">No-Response</a>
</h3>
<p id="section-6.3-1"><span>[<a href="#RFC7967" class="xref">RFC7967</a>]</span> defines a No-Response option limiting the responses made by a server to a request. Different behaviors exist while using this option to limit the responses made by a server to a request. If both ends know the value, then the SCHC Rule will describe a TV to this value, with the MO set to "equal" and the CDA set to "not-sent".<a href="#section-6.3-1" class="pilcrow">¶</a></p>
<p id="section-6.3-2">Otherwise, if the value is changing over time, the SCHC Rule will set the MO to "ignore" and the CDA to "value-sent". The Rule may also use a "match-mapping" MO to compress this option.<a href="#section-6.3-2" class="pilcrow">¶</a></p>
</section>
</div>
<div id="Sec-OSCORE">
<section id="section-6.4">
<h3 id="name-oscore">
<a href="#section-6.4" class="section-number selfRef">6.4. </a><a href="#name-oscore" class="section-name selfRef">OSCORE</a>
</h3>
<p id="section-6.4-1">OSCORE <span>[<a href="#RFC8613" class="xref">RFC8613</a>]</span> defines end-to-end protection for CoAP messages.
This section describes how SCHC Rules can be applied to compress OSCORE-protected messages.<a href="#section-6.4-1" class="pilcrow">¶</a></p>
<p id="section-6.4-2"><a href="#Fig-OSCORE-Option" class="xref">Figure 4</a> shows the OSCORE option value encoding defined in
<span><a href="https://www.rfc-editor.org/rfc/rfc8613#section-6.1" class="relref">Section 6.1</a> of [<a href="#RFC8613" class="xref">RFC8613</a>]</span>, where the first byte specifies the content of the OSCORE options using flags. The three most significant bits of this byte are reserved and always set to 0. Bit h, when set, indicates the presence of the kid context field in the option. Bit k, when set, indicates the presence of a kid field. The three least significant bits, n, indicate the length of the piv (Partial Initialization Vector) field in bytes. When n = 0, no piv is present.<a href="#section-6.4-2" class="pilcrow">¶</a></p>
<span id="name-oscore-option"></span><div id="Fig-OSCORE-Option">
<figure id="figure-4">
<div class="artwork art-text alignLeft" id="section-6.4-3.1">
<pre>
0 1 2 3 4 5 6 7 <--------- n bytes ------------->
+-+-+-+-+-+-+-+-+---------------------------------
|0 0 0|h|k| n | Partial IV (if any) ...
+-+-+-+-+-+-+-+-+---------------------------------
| | |
|<-- CoAP -->|<------ CoAP OSCORE_piv ------> |
OSCORE_flags
<- 1 byte -> <------ s bytes ----->
+------------+----------------------+-----------------------+
| s (if any) | kid context (if any) | kid (if any) ... |
+------------+----------------------+-----------------------+
| | |
| <------ CoAP OSCORE_kidctx ------>|<-- CoAP OSCORE_kid -->|
</pre>
</div>
<figcaption><a href="#figure-4" class="selfRef">Figure 4</a>:
<a href="#name-oscore-option" class="selfRef">OSCORE Option</a>
</figcaption></figure>
</div>
<p id="section-6.4-4">The flag byte is followed by the piv field, the kid context field, and the kid field, in that order, and, if present,
the kid context field's length (in bytes) is encoded in the first byte, denoted by "s".<a href="#section-6.4-4" class="pilcrow">¶</a></p>
<p id="section-6.4-5">To better perform OSCORE SCHC compression, the Rule description needs to identify the OSCORE option and the fields it contains. Conceptually, it discerns up to four distinct pieces of information within the OSCORE option: the flag bits, the piv, the kid context, and the kid. The SCHC Rule splits the OSCORE option into four Field Descriptors in order to compress them:<a href="#section-6.4-5" class="pilcrow">¶</a></p>
<ul class="normal">
<li class="normal" id="section-6.4-6.1">CoAP OSCORE_flags<a href="#section-6.4-6.1" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6.4-6.2">CoAP OSCORE_piv<a href="#section-6.4-6.2" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6.4-6.3">CoAP OSCORE_kidctx<a href="#section-6.4-6.3" class="pilcrow">¶</a>
</li>
<li class="normal" id="section-6.4-6.4">CoAP OSCORE_kid<a href="#section-6.4-6.4" class="pilcrow">¶</a>
</li>
</ul>
<p id="section-6.4-7"><a href="#Fig-OSCORE-Option" class="xref">Figure 4</a> shows the OSCORE option format with those four fields superimposed on it.
Note that the CoAP OSCORE_kidctx field directly includes the size octet, s.<a href="#section-6.4-7" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="examples-of-coap-header-compression">
<section id="section-7">
<h2 id="name-examples-of-coap-header-com">
<a href="#section-7" class="section-number selfRef">7. </a><a href="#name-examples-of-coap-header-com" class="section-name selfRef">Examples of CoAP Header Compression</a>
</h2>
<div id="mandatory-header-with-con-message">
<section id="section-7.1">
<h3 id="name-mandatory-header-with-con-m">
<a href="#section-7.1" class="section-number selfRef">7.1. </a><a href="#name-mandatory-header-with-con-m" class="section-name selfRef">Mandatory Header with CON Message</a>
</h3>
<p id="section-7.1-1">In this first scenario, the SCHC compressor on the NGW side
receives a POST message from an Internet client, which is immediately acknowledged by the Device.
<a href="#Table-CoAP-header-1" class="xref">Table 3</a> describes the SCHC Rule descriptions for this scenario.<a href="#section-7.1-1" class="pilcrow">¶</a></p>
<span id="name-coap-context-to-compress-he"></span><div id="Table-CoAP-header-1">
<table class="center" id="table-3">
<caption>
<a href="#table-3" class="selfRef">Table 3</a>:
<a href="#name-coap-context-to-compress-he" class="selfRef">CoAP Context to Compress Header without Token</a>
</caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="8">RuleID 1</th>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Field</th>
<th class="text-center" rowspan="1" colspan="1">FL</th>
<th class="text-center" rowspan="1" colspan="1">FP</th>
<th class="text-center" rowspan="1" colspan="1">DI</th>
<th class="text-center" rowspan="1" colspan="1">TV</th>
<th class="text-center" rowspan="1" colspan="1">MO</th>
<th class="text-center" rowspan="1" colspan="1">CDA</th>
<th class="text-center" rowspan="1" colspan="1">Sent [bits]</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP version</td>
<td class="text-left" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Bi</td>
<td class="text-left" rowspan="1" colspan="1">01</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Type</td>
<td class="text-left" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Dw</td>
<td class="text-left" rowspan="1" colspan="1">CON</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Type</td>
<td class="text-left" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Up</td>
<td class="text-left" rowspan="1" colspan="1">[ACK,<br>RST]</td>
<td class="text-left" rowspan="1" colspan="1">match-mapping</td>
<td class="text-left" rowspan="1" colspan="1">matching-sent</td>
<th class="text-left" rowspan="1" colspan="1">T</th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP TKL</td>
<td class="text-left" rowspan="1" colspan="1">4</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Bi</td>
<td class="text-left" rowspan="1" colspan="1">0</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Code</td>
<td class="text-left" rowspan="1" colspan="1">8</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Bi</td>
<td class="text-left" rowspan="1" colspan="1">[0.00,<br>...<br>5.05]</td>
<td class="text-left" rowspan="1" colspan="1">match-mapping</td>
<td class="text-left" rowspan="1" colspan="1">matching-sent</td>
<th class="text-left" rowspan="1" colspan="1">CC CCC</th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP MID</td>
<td class="text-left" rowspan="1" colspan="1">16</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Bi</td>
<td class="text-left" rowspan="1" colspan="1">0000</td>
<td class="text-left" rowspan="1" colspan="1">MSB(7)</td>
<td class="text-left" rowspan="1" colspan="1">LSB</td>
<th class="text-left" rowspan="1" colspan="1">MID</th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Uri-Path</td>
<td class="text-left" rowspan="1" colspan="1">var</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Dw</td>
<td class="text-left" rowspan="1" colspan="1">path</td>
<td class="text-left" rowspan="1" colspan="1">equal 1</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
</tbody>
</table>
</div>
<p id="section-7.1-3">In this example, SCHC compression elides the version and Token Length fields. The 25 Method and Response Codes defined in <span>[<a href="#RFC7252" class="xref">RFC7252</a>]</span> have been shrunk to 5 bits using a "match-mapping" MO. The Uri-Path contains a single element indicated in the TV and elided with the CDA "not-sent".<a href="#section-7.1-3" class="pilcrow">¶</a></p>
<p id="section-7.1-4">SCHC compression reduces the header, sending only the Type, a mapped code, and the least significant bits of the Message ID (9 bits in the example above).<a href="#section-7.1-4" class="pilcrow">¶</a></p>
<p id="section-7.1-5">Note that a client located in an Application Server sending a request to a server located in the Device may not be compressed through this Rule, since the MID might not start with 7 bits equal to 0. A CoAP proxy placed before SCHC C/D can rewrite the Message ID to fit the value and match the Rule.<a href="#section-7.1-5" class="pilcrow">¶</a></p>
</section>
</div>
<div id="Sec-OSCORE-Examples">
<section id="section-7.2">
<h3 id="name-oscore-compression">
<a href="#section-7.2" class="section-number selfRef">7.2. </a><a href="#name-oscore-compression" class="section-name selfRef">OSCORE Compression</a>
</h3>
<p id="section-7.2-1">OSCORE aims to solve the problem of end-to-end encryption for CoAP messages. Therefore, the goal is to hide the message as much as possible
while still enabling proxy operation.<a href="#section-7.2-1" class="pilcrow">¶</a></p>
<p id="section-7.2-2">Conceptually, this is achieved by splitting the CoAP message into an Inner Plaintext and Outer OSCORE message. The Inner Plaintext contains sensitive information that is not necessary for proxy operation. However, it is part of the message that can be encrypted until it
reaches its end destination. The Outer Message acts as a shell matching the regular CoAP message format and includes all options and information
needed for proxy operation and caching. <a href="#Fig-inner-outer" class="xref">Figure 5</a> below illustrates this analysis.<a href="#section-7.2-2" class="pilcrow">¶</a></p>
<p id="section-7.2-3">CoAP arranges the options into one of three classes, each granted a specific type of protection by the protocol:<a href="#section-7.2-3" class="pilcrow">¶</a></p>
<span class="break"></span><dl class="dlParallel" id="section-7.2-4">
<dt id="section-7.2-4.1">Class E:</dt>
<dd style="margin-left: 1.5em" id="section-7.2-4.2">Encrypted options moved to the Inner Plaintext.<a href="#section-7.2-4.2" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-7.2-4.3">Class I:</dt>
<dd style="margin-left: 1.5em" id="section-7.2-4.4">Integrity-protected options included in the Additional Authenticated Data (AAD) for the encryption of the Plaintext but otherwise left untouched in the Outer Message.<a href="#section-7.2-4.4" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
<dt id="section-7.2-4.5">Class U:</dt>
<dd style="margin-left: 1.5em" id="section-7.2-4.6">Unprotected options left untouched in the Outer Message.<a href="#section-7.2-4.6" class="pilcrow">¶</a>
</dd>
<dd class="break"></dd>
</dl>
<p id="section-7.2-5">These classes point out that the Outer option contains the OSCORE option and that the message is OSCORE protected; this option carries the information necessary to retrieve the Security Context. The endpoint will use this Security Context to decrypt the message correctly.<a href="#section-7.2-5" class="pilcrow">¶</a></p>
<span id="name-coap-packet-split-into-osco"></span><div id="Fig-inner-outer">
<figure id="figure-5">
<div class="artwork art-text alignLeft" id="section-7.2-6.1">
<pre>
Original CoAP Packet
+-+-+---+-------+---------------+
|v|t|TKL| code | Message ID |
+-+-+---+-------+---------------+....+
| Token |
+-------------------------------.....+
| Options (IEU) |
. .
. .
+------+-------------------+
| 0xFF |
+------+------------------------+
| |
| Payload |
| |
+-------------------------------+
/ \
/ \
/ \
/ \
Outer Header v v Plaintext
+-+-+---+--------+---------------+ +-------+
|v|t|TKL|new code| Message ID | | code |
+-+-+---+--------+---------------+....+ +-------+-----......+
| Token | | Options (E) |
+--------------------------------.....+ +-------+------.....+
| Options (IU) | | 0xFF |
. . +-------+-----------+
. OSCORE Option . | |
+------+-------------------+ | Payload |
| 0xFF | | |
+------+ +-------------------+
</pre>
</div>
<figcaption><a href="#figure-5" class="selfRef">Figure 5</a>:
<a href="#name-coap-packet-split-into-osco" class="selfRef">CoAP Packet Split into OSCORE Outer Header and Plaintext</a>
</figcaption></figure>
</div>
<p id="section-7.2-7"><a href="#Fig-inner-outer" class="xref">Figure 5</a> shows the packet format for the OSCORE Outer header and Plaintext.<a href="#section-7.2-7" class="pilcrow">¶</a></p>
<p id="section-7.2-8">In the Outer header, the original header code is hidden and replaced by a default dummy value. As seen in
Sections <a href="https://www.rfc-editor.org/rfc/rfc8613#section-4.1.3.5" class="relref">4.1.3.5</a> and <a href="https://www.rfc-editor.org/rfc/rfc8613#section-4.2" class="relref">4.2</a> of <span>[<a href="#RFC8613" class="xref">RFC8613</a>]</span>, the message code is replaced by POST for requests and Changed for responses when CoAP is not using the Observe Option. If CoAP uses Observe, the OSCORE message code is replaced by FETCH for requests and Content for responses.<a href="#section-7.2-8" class="pilcrow">¶</a></p>
<p id="section-7.2-9">The first byte of the Plaintext contains the original packet code, followed by the message code, the class E options, and, if present, the original message payload preceded by its payload marker.<a href="#section-7.2-9" class="pilcrow">¶</a></p>
<p id="section-7.2-10">An Authenticated Encryption with Associated Data (AEAD) algorithm now encrypts the Plaintext. This integrity-protects the Security Context parameters and, eventually, any class I options from the Outer header. The resulting ciphertext becomes the new payload of the OSCORE message, as illustrated in <a href="#Fig-full-oscore" class="xref">Figure 6</a>.<a href="#section-7.2-10" class="pilcrow">¶</a></p>
<p id="section-7.2-11">As defined in <span>[<a href="#RFC5116" class="xref">RFC5116</a>]</span>, this ciphertext is the encrypted Plaintext's concatenation of the Authentication Tag. Note that Inner Compression only affects the Plaintext before encryption.
The Authentication Tag, fixed in length and uncompressed, is considered part of the cost of protection.<a href="#section-7.2-11" class="pilcrow">¶</a></p>
<span id="name-oscore-message"></span><div id="Fig-full-oscore">
<figure id="figure-6">
<div class="artwork art-text alignLeft" id="section-7.2-12.1">
<pre>
Outer Header
+-+-+---+--------+---------------+
|v|t|TKL|new code| Message ID |
+-+-+---+--------+---------------+....+
| Token |
+--------------------------------.....+
| Options (IU) |
. .
. OSCORE Option .
+------+-------------------+
| 0xFF |
+------+---------------------------+
| |
| Ciphertext: Encrypted Inner |
| Header and Payload |
| + Authentication Tag |
| |
+----------------------------------+
</pre>
</div>
<figcaption><a href="#figure-6" class="selfRef">Figure 6</a>:
<a href="#name-oscore-message" class="selfRef">OSCORE Message</a>
</figcaption></figure>
</div>
<p id="section-7.2-13">The SCHC compression scheme consists of compressing both the Plaintext before encryption and the resulting OSCORE message after encryption; see <a href="#Fig-OSCORE-Compression" class="xref">Figure 7</a>.<a href="#section-7.2-13" class="pilcrow">¶</a></p>
<p id="section-7.2-14">The OSCORE message translates into a segmented process where SCHC compression is applied independently in two stages, each with its corresponding set of Rules, with the Inner SCHC Rules and the Outer SCHC Rules. This way, compression is applied to all fields of the original CoAP message.<a href="#section-7.2-14" class="pilcrow">¶</a></p>
<span id="name-oscore-compression-diagram"></span><div id="Fig-OSCORE-Compression">
<figure id="figure-7">
<div class="artwork art-text alignLeft" id="section-7.2-15.1">
<pre>
Outer Message OSCORE Plaintext
+-+-+---+--------+---------------+ +-------+
|v|t|TKL|new code| Message ID | | code |
+-+-+---+--------+---------------+....+ +-------+-----......+
| Token | | Options (E) |
+--------------------------------.....+ +-------+------.....+
| Options (IU) | | 0xFF |
. . +-------+-----------+
. OSCORE Option . | |
+------+-------------------+ | Payload |
| 0xFF | | |
+------+------------+ +-------------------+
| Ciphertext |<---------\ |
| | | v
+-------------------+ | +-----------------+
| | | Inner SCHC |
v | | Compression |
+-----------------+ | +-----------------+
| Outer SCHC | | |
| Compression | | v
+-----------------+ | +-------+
| | |RuleID |
v | +-------+-----------+
+--------+ +------------+ |Compression Residue|
|RuleID' | | Encryption | <-- +----------+--------+
+--------+-----------+ +------------+ | |
|Compression Residue'| | Payload |
+-----------+--------+ | |
| Ciphertext | +-------------------+
| |
+--------------------+
</pre>
</div>
<figcaption><a href="#figure-7" class="selfRef">Figure 7</a>:
<a href="#name-oscore-compression-diagram" class="selfRef">OSCORE Compression Diagram</a>
</figcaption></figure>
</div>
<p id="section-7.2-16">Note that since the corresponding endpoint can only decrypt the Inner part of the message, this endpoint will also have to implement Inner SCHC Compression/Decompression.<a href="#section-7.2-16" class="pilcrow">¶</a></p>
</section>
</div>
<div id="example-oscore-compression">
<section id="section-7.3">
<h3 id="name-example-oscore-compression">
<a href="#section-7.3" class="section-number selfRef">7.3. </a><a href="#name-example-oscore-compression" class="section-name selfRef">Example OSCORE Compression</a>
</h3>
<p id="section-7.3-1">This section gives an example with a GET request and its consequent Content
response from a Device-based CoAP client to a cloud-based CoAP server.
The example also describes a possible set of Rules for Inner SCHC Compression and Outer SCHC
Compression. A dump of the results and a contrast between SCHC + OSCORE
performance with SCHC + CoAP performance are also listed. This example gives an approximation of the
cost of security with SCHC-OSCORE.<a href="#section-7.3-1" class="pilcrow">¶</a></p>
<p id="section-7.3-2">Our first CoAP message is the GET request in <a href="#Fig-GET-temp" class="xref">Figure 8</a>.<a href="#section-7.3-2" class="pilcrow">¶</a></p>
<span id="name-coap-get-request"></span><div id="Fig-GET-temp">
<figure id="figure-8">
<div class="artwork art-text alignLeft" id="section-7.3-3.1">
<pre>
Original message:
=================
0x4101000182bb74656d7065726174757265
Header:
0x4101
01 Ver
00 CON
0001 TKL
00000001 Request Code 1 "GET"
0x0001 = mid
0x82 = token
Options:
0xbb74656d7065726174757265
Option 11: URI_PATH
Value = temperature
Original message length: 17 bytes
</pre>
</div>
<figcaption><a href="#figure-8" class="selfRef">Figure 8</a>:
<a href="#name-coap-get-request" class="selfRef">CoAP GET Request</a>
</figcaption></figure>
</div>
<p id="section-7.3-4">Its corresponding response is the Content response in <a href="#Fig-CONTENT-temp" class="xref">Figure 9</a>.<a href="#section-7.3-4" class="pilcrow">¶</a></p>
<span id="name-coap-content-response"></span><div id="Fig-CONTENT-temp">
<figure id="figure-9">
<div class="artwork art-text alignLeft" id="section-7.3-5.1">
<pre>
Original message:
=================
0x6145000182ff32332043
Header:
0x6145
01 Ver
10 ACK
0001 TKL
01000101 Successful Response Code 69 "2.05 Content"
0x0001 = mid
0x82 = token
0xFF Payload marker
Payload:
0x32332043
Original message length: 10 bytes
</pre>
</div>
<figcaption><a href="#figure-9" class="selfRef">Figure 9</a>:
<a href="#name-coap-content-response" class="selfRef">CoAP Content Response</a>
</figcaption></figure>
</div>
<p id="section-7.3-6">The SCHC Rules for the Inner Compression include all fields already present in a regular CoAP message. The methods described in <a href="#CoAPcomp" class="xref">Section 4</a> apply to these fields. <a href="#Table-Inner-Rules" class="xref">Table 4</a> provides an example.<a href="#section-7.3-6" class="pilcrow">¶</a></p>
<span id="name-inner-schc-rule"></span><div id="Table-Inner-Rules">
<table class="center" id="table-4">
<caption>
<a href="#table-4" class="selfRef">Table 4</a>:
<a href="#name-inner-schc-rule" class="selfRef">Inner SCHC Rule</a>
</caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="8">RuleID 0</th>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Field</th>
<th class="text-center" rowspan="1" colspan="1">FL</th>
<th class="text-center" rowspan="1" colspan="1">FP</th>
<th class="text-center" rowspan="1" colspan="1">DI</th>
<th class="text-center" rowspan="1" colspan="1">TV</th>
<th class="text-center" rowspan="1" colspan="1">MO</th>
<th class="text-center" rowspan="1" colspan="1">CDA</th>
<th class="text-center" rowspan="1" colspan="1">Sent [bits]</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Code</td>
<td class="text-left" rowspan="1" colspan="1">8</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Up</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Code</td>
<td class="text-left" rowspan="1" colspan="1">8</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Dw</td>
<td class="text-left" rowspan="1" colspan="1">[69,132]</td>
<td class="text-left" rowspan="1" colspan="1">match-mapping</td>
<td class="text-left" rowspan="1" colspan="1">mapping-sent</td>
<th class="text-left" rowspan="1" colspan="1">c</th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Uri-Path</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Up</td>
<td class="text-left" rowspan="1" colspan="1">temperature</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
</tbody>
</table>
</div>
<p id="section-7.3-8"><a href="#Fig-Inner-Compression-GET" class="xref">Figure 10</a> shows the Plaintext obtained for the example GET request. The packet follows the process of Inner Compression and encryption until the payload. The Outer OSCORE message adds the result of the Inner process.<a href="#section-7.3-8" class="pilcrow">¶</a></p>
<span id="name-plaintext-compression-and-e"></span><div id="Fig-Inner-Compression-GET">
<figure id="figure-10">
<div class="artwork art-text alignLeft" id="section-7.3-9.1">
<pre>
________________________________________________________
| |
| OSCORE Plaintext |
| |
| 0x01bb74656d7065726174757265 (13 bytes) |
| |
| 0x01 Request Code GET |
| |
| bb74656d7065726174757265 Option 11: URI_PATH |
| Value = temperature |
|________________________________________________________|
|
|
| Inner SCHC Compression
|
v
_________________________________
| |
| Compressed Plaintext |
| |
| 0x00 |
| |
| RuleID = 0x00 (1 byte) |
| (No Compression Residue) |
|_________________________________|
|
| AEAD Encryption
| (piv = 0x04)
v
_________________________________________________
| |
| encrypted_plaintext = 0xa2 (1 byte) |
| tag = 0xc54fe1b434297b62 (8 bytes) |
| |
| ciphertext = 0xa2c54fe1b434297b62 (9 bytes) |
|_________________________________________________|
</pre>
</div>
<figcaption><a href="#figure-10" class="selfRef">Figure 10</a>:
<a href="#name-plaintext-compression-and-e" class="selfRef">Plaintext Compression and Encryption for GET Request</a>
</figcaption></figure>
</div>
<p id="section-7.3-10">In this case, the original message has no payload, and its resulting Plaintext is compressed up to only 1 byte (the size of the RuleID). The AEAD algorithm preserves this length in its first output and yields a fixed-size tag. SCHC cannot compress the tag, and the OSCORE message must include it without compression.
The use of integrity protection translates into an overhead in total message length, limiting the amount of compression that can be achieved and playing into the cost of adding security to the exchange.<a href="#section-7.3-10" class="pilcrow">¶</a></p>
<p id="section-7.3-11"><a href="#Fig-Inner-Compression-CONTENT" class="xref">Figure 11</a> shows the process for the example Content response. The Compression Residue is 1 bit long.
Note that since SCHC adds padding after the payload, this misalignment causes the hexadecimal code from the payload to differ from the original, even if SCHC cannot compress the tag. The overhead for the tag bytes limits SCHC's performance but brings security to the transmission.<a href="#section-7.3-11" class="pilcrow">¶</a></p>
<span id="name-plaintext-compression-and-en"></span><div id="Fig-Inner-Compression-CONTENT">
<figure id="figure-11">
<div class="artwork art-text alignLeft" id="section-7.3-12.1">
<pre>
________________________________________________________
| |
| OSCORE Plaintext |
| |
| 0x45ff32332043 (6 bytes) |
| |
| 0x45 Successful Response Code 69 "2.05 Content" |
| |
| ff Payload marker |
| |
| 32332043 Payload |
|________________________________________________________|
|
|
| Inner SCHC Compression
|
v
_________________________________________________
| |
| Compressed Plaintext |
| |
| 0x001919902180 (6 bytes) |
| |
| 00 RuleID |
| |
| 0b0 (1 bit match-mapping Compression Residue) |
| 0x32332043 >> 1 (shifted payload) |
| 0b0000000 Padding |
|_________________________________________________|
|
| AEAD Encryption
| (piv = 0x04)
v
_________________________________________________________
| |
| encrypted_plaintext = 0x10c6d7c26cc1 (6 bytes) |
| tag = 0xe9aef3f2461e0c29 (8 bytes) |
| |
| ciphertext = 0x10c6d7c26cc1e9aef3f2461e0c29 (14 bytes) |
|_________________________________________________________|
</pre>
</div>
<figcaption><a href="#figure-11" class="selfRef">Figure 11</a>:
<a href="#name-plaintext-compression-and-en" class="selfRef">Plaintext Compression and Encryption for Content Response</a>
</figcaption></figure>
</div>
<p id="section-7.3-13">The Outer SCHC Rule (<a href="#Table-Outer-Rule" class="xref">Table 5</a>) must process the OSCORE options fields. Figures <a href="#Fig-Protected-Compressed-GET" class="xref">12</a> and <a href="#Fig-Protected-Compressed-CONTENT" class="xref">13</a> show a dump of the OSCORE messages generated from the example messages. They include the Inner Compressed ciphertext in the payload. These are the messages that have to be compressed via the Outer SCHC Compression scheme.<a href="#section-7.3-13" class="pilcrow">¶</a></p>
<p id="section-7.3-14"><a href="#Table-Outer-Rule" class="xref">Table 5</a> shows a possible set of Outer Rule items to compress the Outer header.<a href="#section-7.3-14" class="pilcrow">¶</a></p>
<span id="name-outer-schc-rule"></span><div id="Table-Outer-Rule">
<table class="center" id="table-5">
<caption>
<a href="#table-5" class="selfRef">Table 5</a>:
<a href="#name-outer-schc-rule" class="selfRef">Outer SCHC Rule</a>
</caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="8">RuleID 0</th>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Field</th>
<th class="text-center" rowspan="1" colspan="1">FL</th>
<th class="text-center" rowspan="1" colspan="1">FP</th>
<th class="text-center" rowspan="1" colspan="1">DI</th>
<th class="text-center" rowspan="1" colspan="1">TV</th>
<th class="text-center" rowspan="1" colspan="1">MO</th>
<th class="text-center" rowspan="1" colspan="1">CDA</th>
<th class="text-center" rowspan="1" colspan="1">Sent [bits]</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP version</td>
<td class="text-left" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Bi</td>
<td class="text-left" rowspan="1" colspan="1">01</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Type</td>
<td class="text-left" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Up</td>
<td class="text-left" rowspan="1" colspan="1">0</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Type</td>
<td class="text-left" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Dw</td>
<td class="text-left" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP TKL</td>
<td class="text-left" rowspan="1" colspan="1">4</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Bi</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Code</td>
<td class="text-left" rowspan="1" colspan="1">8</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Up</td>
<td class="text-left" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Code</td>
<td class="text-left" rowspan="1" colspan="1">8</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Dw</td>
<td class="text-left" rowspan="1" colspan="1">68</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP MID</td>
<td class="text-left" rowspan="1" colspan="1">16</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Bi</td>
<td class="text-left" rowspan="1" colspan="1">0000</td>
<td class="text-left" rowspan="1" colspan="1">MSB(12)</td>
<td class="text-left" rowspan="1" colspan="1">LSB</td>
<th class="text-left" rowspan="1" colspan="1">MMMM</th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Token</td>
<td class="text-left" rowspan="1" colspan="1">tkl</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Bi</td>
<td class="text-left" rowspan="1" colspan="1">0x80</td>
<td class="text-left" rowspan="1" colspan="1">MSB(5)</td>
<td class="text-left" rowspan="1" colspan="1">LSB</td>
<th class="text-left" rowspan="1" colspan="1">TTT</th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP OSCORE_flags</td>
<td class="text-left" rowspan="1" colspan="1">8</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Up</td>
<td class="text-left" rowspan="1" colspan="1">0x09</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP OSCORE_piv</td>
<td class="text-left" rowspan="1" colspan="1">var</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Up</td>
<td class="text-left" rowspan="1" colspan="1">0x00</td>
<td class="text-left" rowspan="1" colspan="1">MSB(4)</td>
<td class="text-left" rowspan="1" colspan="1">LSB</td>
<th class="text-left" rowspan="1" colspan="1">PPPP</th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP OSCORE_kid</td>
<td class="text-left" rowspan="1" colspan="1">var</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Up</td>
<td class="text-left" rowspan="1" colspan="1">0x636c69656e70</td>
<td class="text-left" rowspan="1" colspan="1">MSB(52)</td>
<td class="text-left" rowspan="1" colspan="1">LSB</td>
<th class="text-left" rowspan="1" colspan="1">KKKK</th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP OSCORE_kidctx</td>
<td class="text-left" rowspan="1" colspan="1">var</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Bi</td>
<td class="text-left" rowspan="1" colspan="1">b''</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP OSCORE_flags</td>
<td class="text-left" rowspan="1" colspan="1">8</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Dw</td>
<td class="text-left" rowspan="1" colspan="1">b''</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP OSCORE_piv</td>
<td class="text-left" rowspan="1" colspan="1">var</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Dw</td>
<td class="text-left" rowspan="1" colspan="1">b''</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP OSCORE_kid</td>
<td class="text-left" rowspan="1" colspan="1">var</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Dw</td>
<td class="text-left" rowspan="1" colspan="1">b''</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
</tbody>
</table>
</div>
<span id="name-protected-and-inner-schc-co"></span><div id="Fig-Protected-Compressed-GET">
<figure id="figure-12">
<div class="artwork art-text alignLeft" id="section-7.3-16.1">
<pre>
Protected message:
==================
0x4102000182d8080904636c69656e74ffa2c54fe1b434297b62
(25 bytes)
Header:
0x4102
01 Ver
00 CON
0001 TKL
00000010 Request Code 2 "POST"
0x0001 = mid
0x82 = token
Options:
0xd8080904636c69656e74 (10 bytes)
Option 21: OBJECT_SECURITY
Value = 0x0904636c69656e74
09 = 000 0 1 001 flag byte
h k n
04 piv
636c69656e74 kid
0xFF Payload marker
Payload:
0xa2c54fe1b434297b62 (9 bytes)
</pre>
</div>
<figcaption><a href="#figure-12" class="selfRef">Figure 12</a>:
<a href="#name-protected-and-inner-schc-co" class="selfRef">Protected and Inner SCHC Compressed GET Request</a>
</figcaption></figure>
</div>
<span id="name-protected-and-inner-schc-com"></span><div id="Fig-Protected-Compressed-CONTENT">
<figure id="figure-13">
<div class="artwork art-text alignLeft" id="section-7.3-17.1">
<pre>
Protected message:
==================
0x6144000182d008ff10c6d7c26cc1e9aef3f2461e0c29
(22 bytes)
Header:
0x6144
01 Ver
10 ACK
0001 TKL
01000100 Successful Response Code 68 "2.04 Changed"
0x0001 = mid
0x82 = token
Options:
0xd008 (2 bytes)
Option 21: OBJECT_SECURITY
Value = b''
0xFF Payload marker
Payload:
0x10c6d7c26cc1e9aef3f2461e0c29 (14 bytes)
</pre>
</div>
<figcaption><a href="#figure-13" class="selfRef">Figure 13</a>:
<a href="#name-protected-and-inner-schc-com" class="selfRef">Protected and Inner SCHC Compressed Content Response</a>
</figcaption></figure>
</div>
<p id="section-7.3-18">For the flag bits, some SCHC compression methods are useful, depending on the application. The most straightforward alternative is to
provide a fixed value for the flags, combining a MO of "equal" and a CDA of "not-sent".
This SCHC definition saves most bits but could prevent flexibility. Otherwise, SCHC could use a "match-mapping" MO to choose from several configurations for the exchange. If not, the SCHC description may use an "MSB" MO to mask off the three hard-coded most significant bits.<a href="#section-7.3-18" class="pilcrow">¶</a></p>
<p id="section-7.3-19">Note that fixing a flag bit will limit the choices of CoAP options that can be used in the exchange, since the values of these choices are dependent on specific options.<a href="#section-7.3-19" class="pilcrow">¶</a></p>
<p id="section-7.3-20">The piv field lends itself to having some bits masked off with an "MSB" MO and an "LSB" CDA. This SCHC description could be useful in applications where the message frequency is low, such as LPWAN technologies.
Note that compressing the sequence numbers may reduce the maximum number of sequence numbers that can be used in an exchange.
Once the sequence number exceeds the maximum value, the OSCORE keys need to be re-established.<a href="#section-7.3-20" class="pilcrow">¶</a></p>
<p id="section-7.3-21">The size, s, that is included in the kid context field <span class="bcp14">MAY</span> be masked off with an "LSB" CDA. The rest of the field could have additional bits masked off or have the whole field fixed with a MO of "equal" and a CDA of "not-sent". The same holds for the kid field.<a href="#section-7.3-21" class="pilcrow">¶</a></p>
<p id="section-7.3-22">The Outer Rule of <a href="#Table-Outer-Rule" class="xref">Table 5</a> is applied to the example GET request and Content response.
Figures <a href="#Fig-Compressed-GET" class="xref">14</a> and <a href="#Fig-Compressed-CONTENT" class="xref">15</a> show the resulting messages.<a href="#section-7.3-22" class="pilcrow">¶</a></p>
<span id="name-schc-oscore-compressed-get-"></span><div id="Fig-Compressed-GET">
<figure id="figure-14">
<div class="artwork art-text alignLeft" id="section-7.3-23.1">
<pre>
Compressed message:
==================
0x001489458a9fc3686852f6c4 (12 bytes)
0x00 RuleID
1489 Compression Residue
458a9fc3686852f6c4 Padded payload
Compression Residue:
0b 0001 010 0100 0100 (15 bits -> 2 bytes with padding)
mid tkn piv kid
Payload
0xa2c54fe1b434297b62 (9 bytes)
Compressed message length: 12 bytes
</pre>
</div>
<figcaption><a href="#figure-14" class="selfRef">Figure 14</a>:
<a href="#name-schc-oscore-compressed-get-" class="selfRef">SCHC-OSCORE Compressed GET Request</a>
</figcaption></figure>
</div>
<span id="name-schc-oscore-compressed-cont"></span><div id="Fig-Compressed-CONTENT">
<figure id="figure-15">
<div class="artwork art-text alignLeft" id="section-7.3-24.1">
<pre>
Compressed message:
==================
0x0014218daf84d983d35de7e48c3c1852 (16 bytes)
0x00 RuleID
14 Compression Residue
218daf84d983d35de7e48c3c1852 Padded payload
Compression Residue:
0b0001 010 (7 bits -> 1 byte with padding)
mid tkn
Payload
0x10c6d7c26cc1e9aef3f2461e0c29 (14 bytes)
Compressed message length: 16 bytes
</pre>
</div>
<figcaption><a href="#figure-15" class="selfRef">Figure 15</a>:
<a href="#name-schc-oscore-compressed-cont" class="selfRef">SCHC-OSCORE Compressed Content Response</a>
</figcaption></figure>
</div>
<p id="section-7.3-25">In contrast, comparing these results with what would be obtained by SCHC
compressing the original CoAP messages without protecting them with OSCORE is done
by compressing the CoAP messages according to the SCHC Rule in <a href="#Table-NoOsc-Rule" class="xref">Table 6</a>.<a href="#section-7.3-25" class="pilcrow">¶</a></p>
<span id="name-schc-coap-rule-no-oscore"></span><div id="Table-NoOsc-Rule">
<table class="center" id="table-6">
<caption>
<a href="#table-6" class="selfRef">Table 6</a>:
<a href="#name-schc-coap-rule-no-oscore" class="selfRef">SCHC-CoAP Rule (No OSCORE)</a>
</caption>
<thead>
<tr>
<th class="text-left" rowspan="1" colspan="8">RuleID 1</th>
</tr>
<tr>
<th class="text-center" rowspan="1" colspan="1">Field</th>
<th class="text-center" rowspan="1" colspan="1">FL</th>
<th class="text-center" rowspan="1" colspan="1">FP</th>
<th class="text-center" rowspan="1" colspan="1">DI</th>
<th class="text-center" rowspan="1" colspan="1">TV</th>
<th class="text-center" rowspan="1" colspan="1">MO</th>
<th class="text-center" rowspan="1" colspan="1">CDA</th>
<th class="text-center" rowspan="1" colspan="1">Sent [bits]</th>
</tr>
</thead>
<tbody>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP version</td>
<td class="text-left" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Bi</td>
<td class="text-left" rowspan="1" colspan="1">01</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Type</td>
<td class="text-left" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Up</td>
<td class="text-left" rowspan="1" colspan="1">0</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Type</td>
<td class="text-left" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Dw</td>
<td class="text-left" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP TKL</td>
<td class="text-left" rowspan="1" colspan="1">4</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Bi</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Code</td>
<td class="text-left" rowspan="1" colspan="1">8</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Up</td>
<td class="text-left" rowspan="1" colspan="1">2</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Code</td>
<td class="text-left" rowspan="1" colspan="1">8</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Dw</td>
<td class="text-left" rowspan="1" colspan="1">[69,132]</td>
<td class="text-left" rowspan="1" colspan="1">match-mapping</td>
<td class="text-left" rowspan="1" colspan="1">mapping-sent</td>
<th class="text-left" rowspan="1" colspan="1">C</th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP MID</td>
<td class="text-left" rowspan="1" colspan="1">16</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Bi</td>
<td class="text-left" rowspan="1" colspan="1">0000</td>
<td class="text-left" rowspan="1" colspan="1">MSB(12)</td>
<td class="text-left" rowspan="1" colspan="1">LSB</td>
<th class="text-left" rowspan="1" colspan="1">MMMM</th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Token</td>
<td class="text-left" rowspan="1" colspan="1">tkl</td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Bi</td>
<td class="text-left" rowspan="1" colspan="1">0x80</td>
<td class="text-left" rowspan="1" colspan="1">MSB(5)</td>
<td class="text-left" rowspan="1" colspan="1">LSB</td>
<th class="text-left" rowspan="1" colspan="1">TTT</th>
</tr>
<tr>
<td class="text-left" rowspan="1" colspan="1">CoAP Uri-Path</td>
<td class="text-left" rowspan="1" colspan="1"></td>
<td class="text-left" rowspan="1" colspan="1">1</td>
<td class="text-left" rowspan="1" colspan="1">Up</td>
<td class="text-left" rowspan="1" colspan="1">temperature</td>
<td class="text-left" rowspan="1" colspan="1">equal</td>
<td class="text-left" rowspan="1" colspan="1">not-sent</td>
<th class="text-left" rowspan="1" colspan="1"></th>
</tr>
</tbody>
</table>
</div>
<p id="section-7.3-27">The Rule in <a href="#Table-NoOsc-Rule" class="xref">Table 6</a> yields the SCHC compression results as shown in <a href="#Fig-GET-temp-no-oscore" class="xref">Figure 16</a> for the request and
<a href="#Fig-CONTENT-temp-no-oscore" class="xref">Figure 17</a> for the response.<a href="#section-7.3-27" class="pilcrow">¶</a></p>
<span id="name-coap-get-compressed-without"></span><div id="Fig-GET-temp-no-oscore">
<figure id="figure-16">
<div class="artwork art-text alignLeft" id="section-7.3-28.1">
<pre>
Compressed message:
==================
0x0114
0x01 = RuleID
Compression Residue:
0b00010100 (1 byte)
Compressed message length: 2 bytes
</pre>
</div>
<figcaption><a href="#figure-16" class="selfRef">Figure 16</a>:
<a href="#name-coap-get-compressed-without" class="selfRef">CoAP GET Compressed without OSCORE</a>
</figcaption></figure>
</div>
<span id="name-coap-content-compressed-wit"></span><div id="Fig-CONTENT-temp-no-oscore">
<figure id="figure-17">
<div class="artwork art-text alignLeft" id="section-7.3-29.1">
<pre>
Compressed message:
==================
0x010a32332043
0x01 = RuleID
Compression Residue:
0b00001010 (1 byte)
Payload
0x32332043
Compressed message length: 6 bytes
</pre>
</div>
<figcaption><a href="#figure-17" class="selfRef">Figure 17</a>:
<a href="#name-coap-content-compressed-wit" class="selfRef">CoAP Content Compressed without OSCORE</a>
</figcaption></figure>
</div>
<p id="section-7.3-30">As can be seen, the difference between applying SCHC + OSCORE as compared to
regular SCHC + CoAP is about 10 bytes.<a href="#section-7.3-30" class="pilcrow">¶</a></p>
</section>
</div>
</section>
</div>
<div id="iana-considerations">
<section id="section-8">
<h2 id="name-iana-considerations">
<a href="#section-8" class="section-number selfRef">8. </a><a href="#name-iana-considerations" class="section-name selfRef">IANA Considerations</a>
</h2>
<p id="section-8-1">This document has no IANA actions.<a href="#section-8-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="SecConsiderations">
<section id="section-9">
<h2 id="name-security-considerations">
<a href="#section-9" class="section-number selfRef">9. </a><a href="#name-security-considerations" class="section-name selfRef">Security Considerations</a>
</h2>
<p id="section-9-1">The use of SCHC header compression for CoAP header fields only affects
the representation of the header information. SCHC header compression
itself does not increase or decrease the overall level of security of
the communication. When the connection does not use a security protocol
(OSCORE, DTLS, etc.), it is necessary to use a Layer 2
security mechanism to protect the SCHC messages.<a href="#section-9-1" class="pilcrow">¶</a></p>
<p id="section-9-2">If an LPWAN is the Layer 2 technology being used, the SCHC security considerations
discussed in <span>[<a href="#RFC8724" class="xref">RFC8724</a>]</span> continue to apply. When using another Layer 2 protocol, the
use of a cryptographic integrity-protection mechanism to protect the
SCHC headers is <span class="bcp14">REQUIRED</span>. Such cryptographic integrity protection is
necessary in order to continue to provide the properties that <span>[<a href="#RFC8724" class="xref">RFC8724</a>]</span>
relies upon.<a href="#section-9-2" class="pilcrow">¶</a></p>
<p id="section-9-3">When SCHC is used with OSCORE, the security considerations discussed in <span>[<a href="#RFC8613" class="xref">RFC8613</a>]</span>
continue to apply.<a href="#section-9-3" class="pilcrow">¶</a></p>
<p id="section-9-4">When SCHC is used with the OSCORE Outer headers, the Initialization
Vector (IV) size in the Compression Residue must be carefully selected.
There is a trade-off between compression efficiency (with a longer "MSB"
MO prefix) and the frequency at which the Device must renew its key
material (in order to prevent the IV from expanding to an uncompressible
value). The key-renewal operation itself requires several message
exchanges and requires energy-intensive computation, but the optimal
trade-off will depend on the specifics of the Device and expected usage
patterns.<a href="#section-9-4" class="pilcrow">¶</a></p>
<p id="section-9-5">If an attacker can introduce a corrupted SCHC-compressed packet onto a
link, DoS attacks can be mounted by causing excessive resource consumption
at the decompressor. However, an attacker able to inject packets at the
link layer is also capable of other, potentially more damaging, attacks.<a href="#section-9-5" class="pilcrow">¶</a></p>
<p id="section-9-6">SCHC compression emits variable-length Compression Residues for some
CoAP fields. In the representation of the compressed header, the length field
that is sent is not the length of the original header field but rather
the length of the Compression Residue that is being transmitted. If a
corrupted packet arrives at the decompressor with a longer or shorter
length than the original compressed representation possessed, the SCHC
decompression procedures will detect an error and drop the packet.<a href="#section-9-6" class="pilcrow">¶</a></p>
<p id="section-9-7">SCHC header compression Rules <span class="bcp14">MUST</span> remain tightly coupled between the
compressor and the decompressor. If the compression Rules get out of sync,
a Compression Residue might be decompressed differently at the receiver
than the initial message submitted to compression procedures.
Accordingly, any time the context Rules are updated on an OSCORE
endpoint, that endpoint <span class="bcp14">MUST</span> trigger OSCORE key re-establishment.
Similar procedures may be appropriate to signal Rule updates when other
message-protection mechanisms are in use.<a href="#section-9-7" class="pilcrow">¶</a></p>
</section>
</div>
<section id="section-10">
<h2 id="name-normative-references">
<a href="#section-10" class="section-number selfRef">10. </a><a href="#name-normative-references" class="section-name selfRef">Normative References</a>
</h2>
<dl class="references">
<dt id="RFC2119">[RFC2119]</dt>
<dd>
<span class="refAuthor">Bradner, S.</span>, <span class="refTitle">"Key words for use in RFCs to Indicate Requirement Levels"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 2119</span>, <span class="seriesInfo">DOI 10.17487/RFC2119</span>, <time datetime="1997-03" class="refDate">March 1997</time>, <span><<a href="https://www.rfc-editor.org/info/rfc2119">https://www.rfc-editor.org/info/rfc2119</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC5116">[RFC5116]</dt>
<dd>
<span class="refAuthor">McGrew, D.</span>, <span class="refTitle">"An Interface and Algorithms for Authenticated Encryption"</span>, <span class="seriesInfo">RFC 5116</span>, <span class="seriesInfo">DOI 10.17487/RFC5116</span>, <time datetime="2008-01" class="refDate">January 2008</time>, <span><<a href="https://www.rfc-editor.org/info/rfc5116">https://www.rfc-editor.org/info/rfc5116</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC7252">[RFC7252]</dt>
<dd>
<span class="refAuthor">Shelby, Z.</span>, <span class="refAuthor">Hartke, K.</span>, and <span class="refAuthor">C. Bormann</span>, <span class="refTitle">"The Constrained Application Protocol (CoAP)"</span>, <span class="seriesInfo">RFC 7252</span>, <span class="seriesInfo">DOI 10.17487/RFC7252</span>, <time datetime="2014-06" class="refDate">June 2014</time>, <span><<a href="https://www.rfc-editor.org/info/rfc7252">https://www.rfc-editor.org/info/rfc7252</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC7641">[RFC7641]</dt>
<dd>
<span class="refAuthor">Hartke, K.</span>, <span class="refTitle">"Observing Resources in the Constrained Application Protocol (CoAP)"</span>, <span class="seriesInfo">RFC 7641</span>, <span class="seriesInfo">DOI 10.17487/RFC7641</span>, <time datetime="2015-09" class="refDate">September 2015</time>, <span><<a href="https://www.rfc-editor.org/info/rfc7641">https://www.rfc-editor.org/info/rfc7641</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC7959">[RFC7959]</dt>
<dd>
<span class="refAuthor">Bormann, C.</span> and <span class="refAuthor">Z. Shelby, Ed.</span>, <span class="refTitle">"Block-Wise Transfers in the Constrained Application Protocol (CoAP)"</span>, <span class="seriesInfo">RFC 7959</span>, <span class="seriesInfo">DOI 10.17487/RFC7959</span>, <time datetime="2016-08" class="refDate">August 2016</time>, <span><<a href="https://www.rfc-editor.org/info/rfc7959">https://www.rfc-editor.org/info/rfc7959</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC7967">[RFC7967]</dt>
<dd>
<span class="refAuthor">Bhattacharyya, A.</span>, <span class="refAuthor">Bandyopadhyay, S.</span>, <span class="refAuthor">Pal, A.</span>, and <span class="refAuthor">T. Bose</span>, <span class="refTitle">"Constrained Application Protocol (CoAP) Option for No Server Response"</span>, <span class="seriesInfo">RFC 7967</span>, <span class="seriesInfo">DOI 10.17487/RFC7967</span>, <time datetime="2016-08" class="refDate">August 2016</time>, <span><<a href="https://www.rfc-editor.org/info/rfc7967">https://www.rfc-editor.org/info/rfc7967</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8174">[RFC8174]</dt>
<dd>
<span class="refAuthor">Leiba, B.</span>, <span class="refTitle">"Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words"</span>, <span class="seriesInfo">BCP 14</span>, <span class="seriesInfo">RFC 8174</span>, <span class="seriesInfo">DOI 10.17487/RFC8174</span>, <time datetime="2017-05" class="refDate">May 2017</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8174">https://www.rfc-editor.org/info/rfc8174</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8613">[RFC8613]</dt>
<dd>
<span class="refAuthor">Selander, G.</span>, <span class="refAuthor">Mattsson, J.</span>, <span class="refAuthor">Palombini, F.</span>, and <span class="refAuthor">L. Seitz</span>, <span class="refTitle">"Object Security for Constrained RESTful Environments (OSCORE)"</span>, <span class="seriesInfo">RFC 8613</span>, <span class="seriesInfo">DOI 10.17487/RFC8613</span>, <time datetime="2019-07" class="refDate">July 2019</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8613">https://www.rfc-editor.org/info/rfc8613</a>></span>. </dd>
<dd class="break"></dd>
<dt id="RFC8724">[RFC8724]</dt>
<dd>
<span class="refAuthor">Minaburo, A.</span>, <span class="refAuthor">Toutain, L.</span>, <span class="refAuthor">Gomez, C.</span>, <span class="refAuthor">Barthel, D.</span>, and <span class="refAuthor">JC. Zúñiga</span>, <span class="refTitle">"SCHC: Generic Framework for Static Context Header Compression and Fragmentation"</span>, <span class="seriesInfo">RFC 8724</span>, <span class="seriesInfo">DOI 10.17487/RFC8724</span>, <time datetime="2020-04" class="refDate">April 2020</time>, <span><<a href="https://www.rfc-editor.org/info/rfc8724">https://www.rfc-editor.org/info/rfc8724</a>></span>. </dd>
<dd class="break"></dd>
</dl>
</section>
<div id="acknowledgements">
<section id="appendix-A">
<h2 id="name-acknowledgements">
<a href="#name-acknowledgements" class="section-name selfRef">Acknowledgements</a>
</h2>
<p id="appendix-A-1">The authors would like to thank (in alphabetic order):
<span class="contact-name">Christian Amsuss</span>, <span class="contact-name">Dominique Barthel</span>, <span class="contact-name">Carsten Bormann</span>, <span class="contact-name">Theresa Enghardt</span>,
<span class="contact-name">Thomas Fossati</span>, <span class="contact-name">Klaus Hartke</span>, <span class="contact-name">Benjamin Kaduk</span>, <span class="contact-name">Francesca Palombini</span>, <span class="contact-name">Alexander Pelov</span>, <span class="contact-name">Göran Selander</span>, and
<span class="contact-name">Éric Vyncke</span>.<a href="#appendix-A-1" class="pilcrow">¶</a></p>
</section>
</div>
<div id="authors-addresses">
<section id="appendix-B">
<h2 id="name-authors-addresses">
<a href="#name-authors-addresses" class="section-name selfRef">Authors' Addresses</a>
</h2>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Ana Minaburo</span></div>
<div dir="auto" class="left"><span class="org">Acklio</span></div>
<div dir="auto" class="left"><span class="street-address">1137A avenue des Champs Blancs</span></div>
<div dir="auto" class="left">
<span class="postal-code">35510</span> <span class="locality">Cesson-Sevigne Cedex</span>
</div>
<div dir="auto" class="left"><span class="country-name">France</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:ana@ackl.io" class="email">ana@ackl.io</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Laurent Toutain</span></div>
<div dir="auto" class="left"><span class="org">Institut MINES TELECOM; IMT Atlantique</span></div>
<div dir="auto" class="left"><span class="extended-address">CS 17607</span></div>
<div dir="auto" class="left"><span class="street-address">2 rue de la Chataigneraie</span></div>
<div dir="auto" class="left">
<span class="postal-code">35576</span> <span class="locality">Cesson-Sevigne Cedex</span>
</div>
<div dir="auto" class="left"><span class="country-name">France</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:Laurent.Toutain@imt-atlantique.fr" class="email">Laurent.Toutain@imt-atlantique.fr</a>
</div>
</address>
<address class="vcard">
<div dir="auto" class="left"><span class="fn nameRole">Ricardo Andreasen</span></div>
<div dir="auto" class="left"><span class="org">Universidad de Buenos Aires</span></div>
<div dir="auto" class="left"><span class="street-address">Av. Paseo Colon 850</span></div>
<div dir="auto" class="left">
<span class="postal-code">C1063ACV</span> <span class="locality">Ciudad Autonoma de Buenos Aires</span>
</div>
<div dir="auto" class="left"><span class="country-name">Argentina</span></div>
<div class="email">
<span>Email:</span>
<a href="mailto:randreasen@fi.uba.ar" class="email">randreasen@fi.uba.ar</a>
</div>
</address>
</section>
</div>
<script>const toc = document.getElementById("toc");
toc.querySelector("h2").addEventListener("click", e => {
toc.classList.toggle("active");
});
toc.querySelector("nav").addEventListener("click", e => {
toc.classList.remove("active");
});
</script>
</body>
</html>
|