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
|
<pre>Internet Engineering Task Force (IETF) K. Hartke
Request for Comments: 7641 Universitaet Bremen TZI
Category: Standards Track September 2015
ISSN: 2070-1721
<span class="h1">Observing Resources in the Constrained Application Protocol (CoAP)</span>
Abstract
The Constrained Application Protocol (CoAP) is a RESTful application
protocol for constrained nodes and networks. The state of a resource
on a CoAP server can change over time. This document specifies a
simple protocol extension for CoAP that enables CoAP clients to
"observe" resources, i.e., to retrieve a representation of a resource
and keep this representation updated by the server over a period of
time. The protocol follows a best-effort approach for sending new
representations to clients and provides eventual consistency between
the state observed by each client and the actual resource state at
the server.
Status of This Memo
This is an Internet Standards Track document.
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 <a href="./rfc5741#section-2">Section 2 of RFC 5741</a>.
Information about the current status of this document, any errata,
and how to provide feedback on it may be obtained at
<a href="http://www.rfc-editor.org/info/rfc7641">http://www.rfc-editor.org/info/rfc7641</a>.
<span class="grey">Hartke Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
Copyright Notice
Copyright (c) 2015 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to <a href="https://www.rfc-editor.org/bcp/bcp78">BCP 78</a> and the IETF Trust's Legal
Provisions Relating to IETF Documents
(<a href="http://trustee.ietf.org/license-info">http://trustee.ietf.org/license-info</a>) 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.
<span class="grey">Hartke Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
Table of Contents
<a href="#section-1">1</a>. Introduction . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-1.1">1.1</a>. Background . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-1.2">1.2</a>. Protocol Overview . . . . . . . . . . . . . . . . . . . . <a href="#page-4">4</a>
<a href="#section-1.3">1.3</a>. Consistency Model . . . . . . . . . . . . . . . . . . . . <a href="#page-6">6</a>
<a href="#section-1.4">1.4</a>. Observable Resources . . . . . . . . . . . . . . . . . . <a href="#page-7">7</a>
<a href="#section-1.5">1.5</a>. Requirements Notation . . . . . . . . . . . . . . . . . . <a href="#page-8">8</a>
<a href="#section-2">2</a>. The Observe Option . . . . . . . . . . . . . . . . . . . . . <a href="#page-9">9</a>
<a href="#section-3">3</a>. Client-Side Requirements . . . . . . . . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-3.1">3.1</a>. Request . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-3.2">3.2</a>. Notifications . . . . . . . . . . . . . . . . . . . . . . <a href="#page-10">10</a>
<a href="#section-3.3">3.3</a>. Caching . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-11">11</a>
<a href="#section-3.4">3.4</a>. Reordering . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-12">12</a>
<a href="#section-3.5">3.5</a>. Transmission . . . . . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-3.6">3.6</a>. Cancellation . . . . . . . . . . . . . . . . . . . . . . <a href="#page-13">13</a>
<a href="#section-4">4</a>. Server-Side Requirements . . . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-4.1">4.1</a>. Request . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-4.2">4.2</a>. Notifications . . . . . . . . . . . . . . . . . . . . . . <a href="#page-14">14</a>
<a href="#section-4.3">4.3</a>. Caching . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-15">15</a>
<a href="#section-4.4">4.4</a>. Reordering . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-16">16</a>
<a href="#section-4.5">4.5</a>. Transmission . . . . . . . . . . . . . . . . . . . . . . <a href="#page-17">17</a>
<a href="#section-5">5</a>. Intermediaries . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-6">6</a>. Web Linking . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-20">20</a>
<a href="#section-7">7</a>. Security Considerations . . . . . . . . . . . . . . . . . . . <a href="#page-21">21</a>
<a href="#section-8">8</a>. IANA Considerations . . . . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-9">9</a>. References . . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-9.1">9.1</a>. Normative References . . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#section-9.2">9.2</a>. Informative References . . . . . . . . . . . . . . . . . <a href="#page-22">22</a>
<a href="#appendix-A">Appendix A</a>. Examples . . . . . . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#appendix-A.1">A.1</a>. Client/Server Examples . . . . . . . . . . . . . . . . . <a href="#page-24">24</a>
<a href="#appendix-A.2">A.2</a>. Proxy Examples . . . . . . . . . . . . . . . . . . . . . <a href="#page-28">28</a>
Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-30">30</a>
Author's Address . . . . . . . . . . . . . . . . . . . . . . . . <a href="#page-30">30</a>
<span class="grey">Hartke Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Background</span>
The Constrained Application Protocol (CoAP) [<a href="./rfc7252" title=""The Constrained Application Protocol (CoAP)"">RFC7252</a>] is intended to
provide RESTful services [<a href="#ref-REST" title=""Architectural Styles and the Design of Network-based Software Architectures"">REST</a>] not unlike HTTP [<a href="./rfc7230" title=""Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing"">RFC7230</a>] while
reducing the complexity of implementation as well as the size of
packets exchanged in order to make these services useful in a highly
constrained network of themselves highly constrained nodes [<a href="./rfc7228" title=""Terminology for Constrained-Node Networks"">RFC7228</a>].
The model of REST is that of a client exchanging representations of
resources with a server, where a representation captures the current
or intended state of a resource. The server is the authority for
representations of the resources in its namespace. A client
interested in the state of a resource initiates a request to the
server; the server then returns a response with a representation of
the resource that is current at the time of the request.
This model does not work well when a client is interested in having a
current representation of a resource over a period of time. Existing
approaches from HTTP, such as repeated polling or HTTP long polling
[<a href="./rfc6202" title=""Known Issues and Best Practices for the Use of Long Polling and Streaming in Bidirectional HTTP"">RFC6202</a>], generate significant complexity and/or overhead and thus
are less applicable in a constrained environment.
The protocol specified in this document extends the CoAP core
protocol with a mechanism for a CoAP client to "observe" a resource
on a CoAP server: the client retrieves a representation of the
resource and requests this representation be updated by the server
as long as the client is interested in the resource.
The protocol keeps the architectural properties of REST. It enables
high scalability and efficiency through the support of caches and
proxies. There is no intention, though, to solve the full set of
problems that the existing HTTP solutions solve or to replace
publish/subscribe networks that solve a much more general problem
[<a href="./rfc5989" title=""A SIP Event Package for Subscribing to Changes to an HTTP Resource"">RFC5989</a>].
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>. Protocol Overview</span>
The protocol is based on the well-known observer design pattern
[<a href="#ref-GOF" title=""Design Patterns: Elements of Reusable Object-Oriented Software"">GOF</a>]. In this design pattern, components called "observers"
register at a specific, known provider called the "subject" that they
are interested in being notified whenever the subject undergoes a
change in state. The subject is responsible for administering its
list of registered observers. If multiple subjects are of interest
to an observer, the observer must register separately for all of
them.
<span class="grey">Hartke Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
Observer Subject
| |
| Registration |
+------------------->|
| |
| Notification |
|<-------------------+
| |
| Notification |
|<-------------------+
| |
| Notification |
|<-------------------+
| |
Figure 1: The Observer Design Pattern
The observer design pattern is realized in CoAP as follows:
Subject: In the context of CoAP, the subject is a resource in the
namespace of a CoAP server. The state of the resource can change
over time, ranging from infrequent updates to continuous state
transformations.
Observer: An observer is a CoAP client that is interested in having
a current representation of the resource at any given time.
Registration: A client registers its interest in a resource by
initiating an extended GET request to the server. In addition to
returning a representation of the target resource, this request
causes the server to add the client to the list of observers of
the resource.
Notification: Whenever the state of a resource changes, the server
notifies each client in the list of observers of the resource.
Each notification is an additional CoAP response sent by the
server in reply to the single extended GET request and includes a
complete, updated representation of the new resource state.
Figure 2 below shows an example of a CoAP client registering its
interest in a resource and receiving three notifications: the first
with the current state upon registration, and then two upon changes
to the resource state. Both the registration request and the
notifications are identified as such by the presence of the Observe
Option defined in this document. In notifications, the Observe
Option additionally provides a sequence number for reordering
detection. All notifications carry the token specified by the
client, so the client can easily correlate them to the request.
<span class="grey">Hartke Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
Client Server
| |
| GET /temperature |
| Token: 0x4a | Registration
| Observe: 0 |
+------------------->|
| |
| 2.05 Content |
| Token: 0x4a | Notification of
| Observe: 12 | the current state
| Payload: 22.9 Cel |
|<-------------------+
| |
| 2.05 Content |
| Token: 0x4a | Notification upon
| Observe: 44 | a state change
| Payload: 22.8 Cel |
|<-------------------+
| |
| 2.05 Content |
| Token: 0x4a | Notification upon
| Observe: 60 | a state change
| Payload: 23.1 Cel |
|<-------------------+
| |
Figure 2: Observing a Resource in CoAP
Note: In this document, "Cel" stands for "degrees Celsius".
A client remains on the list of observers as long as the server can
determine the client's continued interest in the resource. The
server may send a notification in a confirmable CoAP message to
request an acknowledgement from the client. When the client
deregisters, rejects a notification, or the transmission of a
notification times out after several transmission attempts, the
client is considered no longer interested in the resource and is
removed by the server from the list of observers.
<span class="h3"><a class="selflink" id="section-1.3" href="#section-1.3">1.3</a>. Consistency Model</span>
While a client is in the list of observers of a resource, the goal of
the protocol is to keep the resource state observed by the client as
closely in sync with the actual state at the server as possible.
It cannot be avoided that the client and the server become out of
sync at times: First, there is always some latency between the change
of the resource state and the receipt of the notification. Second,
<span class="grey">Hartke Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
CoAP messages with notifications can get lost, which will cause the
client to assume an old state until it receives a new notification.
And third, the server may erroneously come to the conclusion that the
client is no longer interested in the resource, which will cause the
server to stop sending notifications and the client to assume an old
state until it eventually registers its interest again.
The protocol addresses this issue as follows:
o It follows a best-effort approach for sending the current
representation to the client after a state change: clients should
see the new state after a state change as soon as possible, and
they should see as many states as possible. This is limited by
congestion control, however, so a client cannot rely on observing
every single state that a resource might go through.
o It labels notifications with a maximum duration up to which it is
acceptable for the observed state and the actual state to be out
of sync. When the age of the notification received reaches this
limit, the client cannot use the enclosed representation until it
receives a new notification.
o It is designed on the principle of eventual consistency: the
protocol guarantees that if the resource does not undergo a new
change in state, eventually all registered observers will have a
current representation of the latest resource state.
<span class="h3"><a class="selflink" id="section-1.4" href="#section-1.4">1.4</a>. Observable Resources</span>
A CoAP server is the authority for determining under what conditions
resources change their state and thus when observers are notified of
new resource states. The protocol does not offer explicit means for
setting up triggers or thresholds; it is up to the server to expose
observable resources that change their state in a way that is useful
in the application context.
For example, a CoAP server with an attached temperature sensor could
expose one or more of the following resources:
o <coap://server/temperature>, which changes its state every few
seconds to a current reading of the temperature sensor;
o <coap://server/temperature/felt>, which changes its state to
"COLD" whenever the temperature reading drops below a certain pre-
configured threshold and to "WARM" whenever the reading exceeds a
second, slightly higher threshold;
<span class="grey">Hartke Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
o <coap://server/temperature/critical?above=42>, which changes its
state based on the client-specified parameter value either every
few seconds to the current temperature reading if the temperature
exceeds the threshold or to "OK" when the reading drops below;
o <coap://server/?query=select+avg(temperature)+from+Sensor.window:
time(30sec)>, which accepts expressions of arbitrary complexity
and changes its state accordingly.
Thus, by designing CoAP resources that change their state on certain
conditions, it is possible to update the client only when these
conditions occur instead of supplying it continuously with raw sensor
data. By parameterizing resources, this is not limited to conditions
defined by the server, but can be extended to arbitrarily complex
queries specified by the client. The application designer therefore
can choose exactly the right level of complexity for the application
envisioned and devices involved and is not constrained to a "one size
fits all" mechanism built into the protocol.
<span class="h3"><a class="selflink" id="section-1.5" href="#section-1.5">1.5</a>. Requirements Notation</span>
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in <a href="./rfc2119">RFC 2119</a> [<a href="./rfc2119" title=""Key words for use in RFCs to Indicate Requirement Levels"">RFC2119</a>].
<span class="grey">Hartke Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. The Observe Option</span>
The Observe Option has the following properties. Its meaning depends
on whether it is included in a GET request or in a response.
+-----+---+---+---+---+---------+--------+--------+---------+
| No. | C | U | N | R | Name | Format | Length | Default |
+-----+---+---+---+---+---------+--------+--------+---------+
| 6 | | x | - | | Observe | uint | 0-3 B | (none) |
+-----+---+---+---+---+---------+--------+--------+---------+
C=Critical, U=Unsafe, N=No-Cache-Key, R=Repeatable
Table 1: The Observe Option
When included in a GET request, the Observe Option extends the GET
method so it does not only retrieve a current representation of the
target resource, but also requests the server to add or remove an
entry in the list of observers of the resource depending on the
option value. The list entry consists of the client endpoint and the
token specified by the client in the request. Possible values are:
0 (register) adds the entry to the list, if not present;
1 (deregister) removes the entry from the list, if present.
The Observe Option is not critical for processing the request. If
the server is unwilling or unable to add a new entry to the list of
observers, then the request falls back to a normal GET request and
the response does not include the Observe Option.
The Observe Option is not part of the Cache-Key: a cacheable response
obtained with an Observe Option in the request can be used to satisfy
a request without an Observe Option, and vice versa. When a stored
response with an Observe Option is used to satisfy a normal GET
request, the option MUST be removed before the response is returned.
When included in a response, the Observe Option identifies the
message as a notification. This implies that a matching entry exists
in the list of observers and that the server will notify the client
of changes to the resource state. The option value is a sequence
number for reordering detection (see Sections <a href="#section-3.4">3.4</a> and <a href="#section-4.4">4.4</a>).
The value of the Observe Option is encoded as an unsigned integer in
network byte order using a variable number of bytes ('uint' option
format); see <a href="./rfc7252#section-3.2">Section 3.2 of RFC 7252</a> [<a href="./rfc7252" title=""The Constrained Application Protocol (CoAP)"">RFC7252</a>].
<span class="grey">Hartke Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Client-Side Requirements</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Request</span>
A client registers its interest in a resource by issuing a GET
request with an Observe Option set to 0 (register). If the server
returns a 2.xx response that includes an Observe Option as well, the
server has successfully added an entry with the client endpoint and
request token to the list of observers of the target resource, and
the client will be notified of changes to the resource state.
Like a fresh response can be used to satisfy a request without
contacting the server, the stream of updates resulting from one
observation request can be used to satisfy another (observation or
normal GET) request if the target resource is the same. A client
MUST aggregate such requests and MUST NOT register more than once for
the same target resource. The target resource is identified by all
options in the request that are part of the Cache-Key. This includes,
for example, the full request URI and the Accept Option.
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Notifications</span>
Notifications are additional responses sent by the server in reply to
the single extended GET request that created the registration. Each
notification includes the token specified by the client in the
request. The only difference between a notification and a normal
response is the presence of the Observe Option.
Notifications typically have a 2.05 (Content) response code. They
include an Observe Option with a sequence number for reordering
detection (see <a href="#section-3.4">Section 3.4</a>) and a payload in the same Content-Format
as the initial response. If the client included one or more ETag
Options in the GET request (see <a href="#section-3.3">Section 3.3</a>), notifications can have
a 2.03 (Valid) response code rather than a 2.05 (Content) response
code. Such notifications include an Observe Option with a sequence
number but no payload.
In the event that the resource changes in a way that would cause a
normal GET request at that time to return a non-2.xx response (for
example, when the resource is deleted), the server sends a
notification with an appropriate response code (such as 4.04 Not
Found) and removes the client's entry from the list of observers of
the resource. Non-2.xx responses do not include an Observe Option.
<span class="grey">Hartke Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. Caching</span>
As notifications are just additional responses to a GET request,
notifications partake in caching as defined in Section 5.6 of <a href="./rfc7252">RFC</a>
<a href="./rfc7252">7252</a> [<a href="./rfc7252" title=""The Constrained Application Protocol (CoAP)"">RFC7252</a>]. Both the freshness model and the validation model
are supported.
<span class="h4"><a class="selflink" id="section-3.3.1" href="#section-3.3.1">3.3.1</a>. Freshness</span>
A client MAY store a notification like a response in its cache and
use a stored notification that is fresh without contacting the
server. Like a response, a notification is considered fresh while
its age is not greater than the value indicated by the Max-Age Option
(and no newer notification/response has been received).
The server will do its best to keep the resource state observed by
the client as closely in sync with the actual state as possible.
However, a client cannot rely on observing every single state that a
resource might go through. For example, if the network is congested
or the state changes more frequently than the network can handle, the
server can skip notifications for any number of intermediate states.
The server uses the Max-Age Option to indicate an age up to which it
is acceptable that the observed state and the actual state are
inconsistent. If the age of the latest notification becomes greater
than its indicated Max-Age, then the client MUST NOT assume that the
enclosed representation reflects the actual resource state.
To make sure it has a current representation and/or to re-register
its interest in a resource, a client MAY issue a new GET request with
the same token as the original at any time. All options MUST be
identical to those in the original request except for the set of ETag
Options. It is RECOMMENDED that the client does not issue the
request while it still has a fresh notification/response for the
resource in its cache. Additionally, the client SHOULD at least wait
for a random amount of time between 5 and 15 seconds after Max-Age
expired to reduce collisions with other clients.
<span class="h4"><a class="selflink" id="section-3.3.2" href="#section-3.3.2">3.3.2</a>. Validation</span>
When a client has one or more notifications stored in its cache for a
resource, it can use the ETag Option in the GET request to give the
server an opportunity to select a stored notification to be used.
The client MAY include an ETag Option for each stored response that
is applicable in the GET request. Whenever the observed resource
changes to a representation identified by one of the ETag Options,
the server can select a stored response by sending a 2.03 (Valid)
<span class="grey">Hartke Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
notification with an appropriate ETag Option instead of a 2.05
(Content) notification.
A client implementation needs to keep all candidate responses in its
cache until it is no longer interested in the target resource or it
re-registers with a new set of entity tags.
<span class="h3"><a class="selflink" id="section-3.4" href="#section-3.4">3.4</a>. Reordering</span>
Messages with notifications can arrive in a different order than they
were sent. Since the goal is to keep the observed state as closely
in sync with the actual state as possible, a client MUST consider the
notification that was sent most recently as the freshest, regardless
of the order of arrival.
To provide an order among notifications for the client, the server
sets the value of the Observe Option in each notification to the 24
least significant bits of a strictly increasing sequence number. An
incoming notification was sent more recently than the freshest
notification so far when one of the following conditions is met:
(V1 < V2 and V2 - V1 < 2^23) or
(V1 > V2 and V1 - V2 > 2^23) or
(T2 > T1 + 128 seconds)
where V1 is the value of the Observe Option in the freshest
notification so far, V2 is the value of the Observe Option in the
incoming notification, T1 is a client-local timestamp for the
freshest notification so far, and T2 is a client-local timestamp for
the incoming notification.
Design Note: The first two conditions verify that V1 is less than V2
in 24-bit serial number arithmetic [<a href="./rfc1982" title=""Serial Number Arithmetic"">RFC1982</a>]. The third condition
ensures that if the server is generating serial numbers based on a
local clock, the time elapsed between the two incoming messages is
not so large that the difference between V1 and V2 has become
larger than the largest integer that it is meaningful to add to a
24-bit serial number; in other words, after 128 seconds have
elapsed without any notification, a client does not need to check
the sequence numbers to assume that an incoming notification was
sent more recently than the freshest notification it has received
so far.
The duration of 128 seconds was chosen as a nice round number
greater than MAX_LATENCY (<a href="./rfc7252#section-4.8.2">Section 4.8.2 of RFC 7252</a> [<a href="./rfc7252" title=""The Constrained Application Protocol (CoAP)"">RFC7252</a>]).
<span class="grey">Hartke Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
<span class="h3"><a class="selflink" id="section-3.5" href="#section-3.5">3.5</a>. Transmission</span>
A notification can be confirmable or non-confirmable, i.e., it can be
sent in a confirmable or a non-confirmable message. The message type
used for a notification is independent of the type used for the
request and of any previous notification.
If a client does not recognize the token in a confirmable
notification, it MUST NOT acknowledge the message and SHOULD reject
it with a Reset message; otherwise, the client MUST acknowledge the
message as usual. In the case of a non-confirmable notification,
rejecting the message with a Reset message is OPTIONAL.
An acknowledgement message signals to the server that the client is
alive and interested in receiving further notifications; if the
server does not receive an acknowledgement in reply to a confirmable
notification, it will assume that the client is no longer interested
and will eventually remove the associated entry from the list of
observers (<a href="#section-4.5">Section 4.5</a>).
<span class="h3"><a class="selflink" id="section-3.6" href="#section-3.6">3.6</a>. Cancellation</span>
A client that is no longer interested in receiving notifications for
a resource can simply "forget" the observation. When the server then
sends the next notification, the client will not recognize the token
in the message and thus will return a Reset message. This causes the
server to remove the associated entry from the list of observers.
The entries in lists of observers are effectively "garbage collected"
by the server.
Implementation Note: Due to potential message loss, the Reset
message may not reach the server. The client may therefore have
to reject multiple notifications, each with one Reset message,
until the server finally removes the associated entry from the
list of observers and stops sending notifications.
In some circumstances, it may be desirable to cancel an observation
and release the resources allocated by the server to it more eagerly.
In this case, a client MAY explicitly deregister by issuing a GET
request that has the Token field set to the token of the observation
to be cancelled and includes an Observe Option with the value set to
1 (deregister). All other options MUST be identical to those in the
registration request except for the set of ETag Options. When the
server receives such a request, it will remove any matching entry
from the list of observers and process the GET request as usual.
<span class="grey">Hartke Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Server-Side Requirements</span>
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Request</span>
A GET request with an Observe Option set to 0 (register) requests the
server not only to return a current representation of the target
resource, but also to add the client to the list of observers of that
resource. Upon success, the server returns a current representation
of the resource and MUST keep this representation updated (as
described in <a href="#section-1.3">Section 1.3</a>) as long as the client is on the list of
observers.
The entry in the list of observers is keyed by the client endpoint
and the token specified by the client in the request. If an entry
with a matching endpoint/token pair is already present in the list
(which, for example, happens when the client wishes to reinforce its
interest in a resource), the server MUST NOT add a new entry but MUST
replace or update the existing one.
A server that is unable or unwilling to add a new entry to the list
of observers of a resource MAY silently ignore the registration
request and process the GET request as usual. The resulting response
MUST NOT include an Observe Option, the absence of which signals to
the client that it will not be notified of changes to the resource
and, e.g., needs to poll the resource for its state instead.
If the Observe Option in a GET request is set to 1 (deregister), then
the server MUST remove any existing entry with a matching endpoint/
token pair from the list of observers and process the GET request as
usual. The resulting response MUST NOT include an Observe Option.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Notifications</span>
A client is notified of changes to the resource state by additional
responses sent by the server in reply to the GET request. Each such
notification response (including the initial response) MUST echo the
token specified by the client in the GET request. If there are
multiple entries in the list of observers, the order in which the
clients are notified is not defined; the server is free to use any
method to determine the order.
A notification SHOULD have a 2.05 (Content) or 2.03 (Valid) response
code. However, in the event that the state of a resource changes in
a way that would cause a normal GET request at that time to return a
non-2.xx response (for example, when the resource is deleted), the
server SHOULD notify the client by sending a notification with an
<span class="grey">Hartke Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
appropriate response code (such as 4.04 Not Found) and subsequently
MUST remove the associated entry from the list of observers of the
resource.
The Content-Format specified in a 2.xx notification MUST be the same
as the one used in the initial response to the GET request. If the
server is unable to continue sending notifications in this format, it
SHOULD send a notification with a 4.06 (Not Acceptable) response code
and subsequently MUST remove the associated entry from the list of
observers of the resource.
A 2.xx notification MUST include an Observe Option with a sequence
number as specified in <a href="#section-4.4">Section 4.4</a> below; a non-2.xx notification
MUST NOT include an Observe Option.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Caching</span>
As notifications are just additional responses sent by the server in
reply to a GET request, they are subject to caching as defined in
<a href="./rfc7252#section-5.6">Section 5.6 of RFC 7252</a> [<a href="./rfc7252" title=""The Constrained Application Protocol (CoAP)"">RFC7252</a>].
<span class="h4"><a class="selflink" id="section-4.3.1" href="#section-4.3.1">4.3.1</a>. Freshness</span>
After returning the initial response, the server MUST keep the
resource state that is observed by the client as closely in sync with
the actual resource state as possible.
Since becoming out of sync at times cannot be avoided, the server
MUST indicate for each representation an age up to which it is
acceptable that the observed state and the actual state are
inconsistent. This age is application dependent and MUST be
specified in notifications using the Max-Age Option.
When the resource does not change and the client has a current
representation, the server does not need to send a notification.
However, if the client does not receive a notification, the client
cannot tell if the observed state and the actual state are still in
sync. Thus, when the age of the latest notification becomes greater
than its indicated Max-Age, the client no longer has a usable
representation of the resource state. The server MAY wish to prevent
that by sending a new notification with the unchanged representation
and a new Max-Age just before the Max-Age indicated earlier expires.
<span class="grey">Hartke Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
<span class="h4"><a class="selflink" id="section-4.3.2" href="#section-4.3.2">4.3.2</a>. Validation</span>
A client can include a set of entity tags in its request using the
ETag Option. When an observed resource changes its state and the
origin server is about to send a 2.05 (Content) notification, then
whenever that notification has an entity tag in the set of entity
tags specified by the client, the server MAY send a 2.03 (Valid)
response with an appropriate ETag Option instead.
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. Reordering</span>
Because messages can get reordered, the client needs a way to
determine if a notification arrived later than a newer notification.
For this purpose, the server MUST set the value of the Observe Option
of each notification it sends to the 24 least significant bits of a
strictly increasing sequence number. The sequence number MAY start
at any value and MUST NOT increase so fast that it increases by more
than 2^23 within less than 256 seconds.
The sequence number selected for a notification MUST be greater than
that of any preceding notification sent to the same client with the
same token for the same resource. The value of the Observe Option
MUST be current at the time of transmission; if a notification is
retransmitted, the server MUST update the value of the option to the
sequence number that is current at that time before retransmission.
Implementation Note: A simple implementation that satisfies the
requirements is to obtain a timestamp from a local clock. The
sequence number then is the timestamp in ticks, where 1 tick =
(256 seconds)/(2^23) = 30.52 microseconds. It is not necessary
that the clock reflects the current time/date.
Another valid implementation is to store a 24-bit unsigned integer
variable per resource and increment this variable each time the
resource undergoes a change of state (provided that the resource
changes its state less than 2^23 times in the first 256 seconds
after every state change). This removes the need to update the
value of the Observe Option on retransmission when the resource
state did not change.
Design Note: The choice of a 24-bit option value and a time span of
256 seconds theoretically allows for a notification rate of up to
65536 notifications per second. Constrained nodes often have
rather imprecise clocks, though, and inaccuracies of the client
and server side may cancel out or add in effect. Therefore, the
maximum notification rate is reduced to 32768 notifications per
second. This is still well beyond the highest known design
<span class="grey">Hartke Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
objective of around 1 kHz (most CoAP applications will be several
orders of magnitude below that) but allows total clock
inaccuracies of up to -50/+100%.
<span class="h3"><a class="selflink" id="section-4.5" href="#section-4.5">4.5</a>. Transmission</span>
A notification can be sent in a confirmable or a non-confirmable
message. The message type used is typically application dependent
and may be determined by the server for each notification
individually.
For example, for resources that change in a somewhat predictable or
regular fashion, notifications can be sent in non-confirmable
messages; for resources that change infrequently, notifications can
be sent in confirmable messages. The server can combine these two
approaches depending on the frequency of state changes and the
importance of individual notifications.
A server MAY choose to skip sending a notification if it knows that
it will send another notification soon, for example, when the state
of a resource is changing frequently. It also MAY choose to send
more than one notification for the same resource state. However,
above all, the server MUST ensure that a client in the list of
observers of a resource eventually observes the latest state if the
resource does not undergo a new change in state.
For example, when state changes occur in bursts, the server can skip
some notifications, send the notifications in non-confirmable
messages, and make sure that the client observes the latest state
change by repeating the last notification in a confirmable message
when the burst is over.
The client's acknowledgement of a confirmable notification signals
that the client is interested in receiving further notifications. If
a client rejects a confirmable or non-confirmable notification with a
Reset message, or if the last attempt to retransmit a confirmable
notification times out, then the client is considered no longer
interested and the server MUST remove the associated entry from the
list of observers.
Implementation Note: To properly process a Reset message that
rejects a non-confirmable notification, a server needs to remember
the message IDs of the non-confirmable notifications it sends.
This may be challenging for a server with constrained resources.
However, since Reset messages are transmitted unreliably, the
client must be prepared in case the Reset messages are not
received by the server. Thus, a server can always pretend that a
Reset message rejecting a non-confirmable notification was lost.
<span class="grey">Hartke Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
If a server does this, it could accelerate cancellation by sending
the following notifications to that client in confirmable
messages.
A server that transmits notifications mostly in non-confirmable
messages MUST send a notification in a confirmable message instead of
a non-confirmable message at least every 24 hours. This prevents a
client that went away or is no longer interested from remaining in
the list of observers indefinitely.
<span class="h4"><a class="selflink" id="section-4.5.1" href="#section-4.5.1">4.5.1</a>. Congestion Control</span>
Basic congestion control for CoAP is provided by the exponential
back-off mechanism in <a href="./rfc7252#section-4.2">Section 4.2 of RFC 7252</a> [<a href="./rfc7252" title=""The Constrained Application Protocol (CoAP)"">RFC7252</a>] and the
limitations in <a href="./rfc7252#section-4.7">Section 4.7 of RFC 7252</a> [<a href="./rfc7252" title=""The Constrained Application Protocol (CoAP)"">RFC7252</a>]. However, CoAP
places the responsibility of congestion control for simple request/
response interactions only on the clients: rate-limiting request
transmission implicitly controls the transmission of the responses.
When a single request yields a potentially infinite number of
notifications, additional responsibility needs to be placed on the
server.
In order not to cause congestion, servers MUST strictly limit the
number of simultaneous outstanding notifications/responses that they
transmit to a given client to NSTART (1 by default; see <a href="./rfc7252#section-4.7">Section 4.7
of RFC 7252</a> [<a href="./rfc7252" title=""The Constrained Application Protocol (CoAP)"">RFC7252</a>]). An outstanding notification/response is
either a confirmable message for which an acknowledgement has not yet
been received and whose last retransmission attempt has not yet timed
out or a non-confirmable message for which the waiting time that
results from the following rate-limiting rules has not yet elapsed.
The server SHOULD NOT send more than one non-confirmable notification
per round-trip time (RTT) to a client on average. If the server
cannot maintain an RTT estimate for a client, it SHOULD NOT send more
than one non-confirmable notification every 3 seconds and SHOULD use
an even less aggressive rate when possible (see also <a href="./rfc5405#section-3.1.2">Section 3.1.2 of
RFC 5405</a> [<a href="./rfc5405" title=""Unicast UDP Usage Guidelines for Application Designers"">RFC5405</a>]).
Further congestion control optimizations and considerations are
expected in the future with advanced CoAP congestion control
mechanisms.
<span class="h4"><a class="selflink" id="section-4.5.2" href="#section-4.5.2">4.5.2</a>. Advanced Transmission</span>
The state of an observed resource may change while the number of
simultaneous outstanding notifications/responses to a client on the
list of observers is greater than or equal to NSTART. In this case,
the server cannot notify the client of the new resource state
<span class="grey">Hartke Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
immediately but has to wait for an outstanding notification/response
to complete first.
If there exists an outstanding notification/response that the server
transmits to the client and that pertains to the changed resource,
then it is desirable for the server to stop working towards getting
the representation of the old resource state to the client and to
start transmitting the current representation to the client instead,
so the resource state observed by the client stays closer in sync
with the actual state at the server.
For this purpose, the server MAY optimize the transmission process by
aborting the transmission of the old notification (but not before the
current transmission attempt is completed) and starting a new
transmission for the new notification (but with the retransmission
timer and counter of the aborted transmission retained).
In more detail, a server MAY supersede an outstanding transmission
that pertains to an observation as follows:
1. Wait for the current (re)transmission attempt to be acknowledged,
rejected, or to time out (confirmable transmission); or, wait for
the waiting time to elapse or the transmission to be rejected
(non-confirmable transmission).
2. If the transmission is rejected or it was the last attempt to
retransmit a notification, remove the associated entry from the
list of observers of the observed resource.
3. If the entry is still in the list of observers, start to transmit
a new notification with a representation of the current resource
state. Should the resource have changed its state more than once
in the meantime, the notifications for the intermediate states
are silently skipped.
4. The new notification is transmitted with a new Message ID and the
following transmission parameters: if the previous
(re)transmission attempt timed out, retain its transmission
parameters, increment the retransmission counter, and double the
timeout; otherwise, initialize the transmission parameters as
usual (see <a href="./rfc7252#section-4.2">Section 4.2 of RFC 7252</a> [<a href="./rfc7252" title=""The Constrained Application Protocol (CoAP)"">RFC7252</a>]).
It is possible that the server later receives an acknowledgement for
a confirmable notification that it superseded this way. Even though
this does not signal consistency, it is valuable in that it signals
the client's further interest in the resource. The server therefore
should avoid inadvertently removing the associated entry from the
list of observers.
<span class="grey">Hartke Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Intermediaries</span>
A client may be interested in a resource in the namespace of a server
that is reached through a chain of one or more CoAP intermediaries.
In this case, the client registers its interest with the first
intermediary towards the server, acting as if it was communicating
with the server itself, as specified in <a href="#section-3">Section 3</a>. It is the task of
this intermediary to provide the client with a current representation
of the target resource and to keep the representation updated upon
changes to the resource state, as specified in <a href="#section-4">Section 4</a>.
To perform this task, the intermediary SHOULD make use of the
protocol specified in this document, taking the role of the client
and registering its own interest in the target resource with the next
hop towards the server. If the response returned by the next hop
doesn't include an Observe Option, the intermediary MAY resort to
polling the next hop or MAY itself return a response without an
Observe Option.
The communication between each pair of hops is independent; each hop
in the server role MUST determine individually how many notifications
to send, of which message type, and so on. Each hop MUST generate
its own values for the Observe Option in notifications and MUST set
the value of the Max-Age Option according to the age of the local
current representation.
If two or more clients have registered their interest in a resource
with an intermediary, the intermediary MUST register itself only once
with the next hop and fan out the notifications it receives to all
registered clients. This relieves the next hop from sending the same
notifications multiple times and thus enables scalability.
An intermediary is not required to act on behalf of a client to
observe a resource; an intermediary MAY observe a resource, for
example, just to keep its own cache up to date.
See <a href="#appendix-A.2">Appendix A.2</a> for examples.
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. Web Linking</span>
A web link [<a href="./rfc5988" title=""Web Linking"">RFC5988</a>] to a resource accessible over CoAP (for example,
in a link-format document [<a href="./rfc6690" title=""Constrained RESTful Environments (CoRE) Link Format"">RFC6690</a>]) MAY include the target attribute
"obs".
The "obs" attribute, when present, is a hint indicating that the
destination of a link is useful for observation and thus, for
example, should have a suitable graphical representation in a user
interface. Note that this is only a hint; it is not a promise that
<span class="grey">Hartke Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
the Observe Option can actually be used to perform the observation.
A client may need to resort to polling the resource if the Observe
Option is not returned in the response to the GET request.
A value MUST NOT be given for the "obs" attribute; any present value
MUST be ignored by parsers. The "obs" attribute MUST NOT appear more
than once in a given link-value; occurrences after the first MUST be
ignored by parsers.
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Security Considerations</span>
The security considerations in <a href="./rfc7252#section-11">Section 11 of [RFC7252]</a>, the CoAP
specification, apply.
Observing resources can dramatically increase the negative effects of
amplification attacks. That is, not only can notifications messages
be much larger than the request message, but the nature of the
protocol can cause a significant number of notifications to be
generated. Without client authentication, a server therefore MUST
strictly limit the number of notifications that it sends between
receiving acknowledgements that confirm the actual interest of the
client in the data; i.e., any notifications sent in non-confirmable
messages MUST be interspersed with confirmable messages. Note that
an attacker may still spoof the acknowledgements if the confirmable
messages are sufficiently predictable.
The protocol follows a best-effort approach for keeping the state
observed by a client and the actual resource state at a server in
sync. This may have the client and the server become out of sync at
times. Depending on the sensitivity of the observed resource,
operating on an old state might be a security threat. The client
therefore must be careful not to use a representation after its Max-
Age expires, and the server must set the Max-Age Option to a sensible
value.
As with any protocol that creates state, attackers may attempt to
exhaust the resources that the server has available for maintaining
the list of observers for each resource. Servers may want to apply
access controls to this creation of state. As degraded behavior, the
server can always fall back to processing the request as a normal GET
request (without an Observe Option) if it is unwilling or unable to
add a client to the list of observers of a resource, including if
system resources are exhausted or nearing exhaustion.
Intermediaries must be careful to ensure that notifications cannot be
employed to create a loop. A simple way to break any loops is to
employ caches for forwarding notifications in intermediaries.
<span class="grey">Hartke Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
Resources can be observed over CoAP that is secured by Datagram
Transport Layer Security (DTLS) using any of the security modes
described in <a href="./rfc7252#section-9">Section 9 of RFC 7252</a>. The use of DTLS is indicated by
the "coaps" URI scheme. All notifications resulting from a GET
request with an Observe Option MUST be returned within the same epoch
of the same connection as the request.
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. IANA Considerations</span>
The following entry has been added to the CoAP Option Numbers
registry:
+--------+---------+-----------+
| Number | Name | Reference |
+--------+---------+-----------+
| 6 | Observe | <a href="./rfc7641">RFC 7641</a> |
+--------+---------+-----------+
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. References</span>
<span class="h3"><a class="selflink" id="section-9.1" href="#section-9.1">9.1</a>. Normative References</span>
[<a id="ref-RFC2119">RFC2119</a>] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", <a href="https://www.rfc-editor.org/bcp/bcp14">BCP 14</a>, <a href="./rfc2119">RFC 2119</a>,
DOI 10.17487/RFC2119, March 1997,
<<a href="http://www.rfc-editor.org/info/rfc2119">http://www.rfc-editor.org/info/rfc2119</a>>.
[<a id="ref-RFC5988">RFC5988</a>] Nottingham, M., "Web Linking", <a href="./rfc5988">RFC 5988</a>,
DOI 10.17487/RFC5988, October 2010,
<<a href="http://www.rfc-editor.org/info/rfc5988">http://www.rfc-editor.org/info/rfc5988</a>>.
[<a id="ref-RFC7252">RFC7252</a>] Shelby, Z., Hartke, K., and C. Bormann, "The Constrained
Application Protocol (CoAP)", <a href="./rfc7252">RFC 7252</a>,
DOI 10.17487/RFC7252, June 2014,
<<a href="http://www.rfc-editor.org/info/rfc7252">http://www.rfc-editor.org/info/rfc7252</a>>.
<span class="h3"><a class="selflink" id="section-9.2" href="#section-9.2">9.2</a>. Informative References</span>
[<a id="ref-GOF">GOF</a>] Gamma, E., Helm, R., Johnson, R., and J. Vlissides,
"Design Patterns: Elements of Reusable Object-Oriented
Software", Addison-Wesley Professional Computing Series,
1994.
[<a id="ref-REST">REST</a>] Fielding, R., "Architectural Styles and the Design of
Network-based Software Architectures", Ph.D. Dissertation,
University of California, Irvine, 2000,
<<a href="http://www.ics.uci.edu/~fielding/pubs/dissertation/fielding_dissertation.pdf">http://www.ics.uci.edu/~fielding/pubs/dissertation/</a>
<a href="http://www.ics.uci.edu/~fielding/pubs/dissertation/fielding_dissertation.pdf">fielding_dissertation.pdf</a>>.
<span class="grey">Hartke Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
[<a id="ref-RFC1982">RFC1982</a>] Elz, R. and R. Bush, "Serial Number Arithmetic", <a href="./rfc1982">RFC 1982</a>,
DOI 10.17487/RFC1982, August 1996,
<<a href="http://www.rfc-editor.org/info/rfc1982">http://www.rfc-editor.org/info/rfc1982</a>>.
[<a id="ref-RFC5405">RFC5405</a>] Eggert, L. and G. Fairhurst, "Unicast UDP Usage Guidelines
for Application Designers", <a href="https://www.rfc-editor.org/bcp/bcp145">BCP 145</a>, <a href="./rfc5405">RFC 5405</a>,
DOI 10.17487/RFC5405, November 2008,
<<a href="http://www.rfc-editor.org/info/rfc5405">http://www.rfc-editor.org/info/rfc5405</a>>.
[<a id="ref-RFC5989">RFC5989</a>] Roach, A., "A SIP Event Package for Subscribing to Changes
to an HTTP Resource", <a href="./rfc5989">RFC 5989</a>, DOI 10.17487/RFC5989,
October 2010, <<a href="http://www.rfc-editor.org/info/rfc5989">http://www.rfc-editor.org/info/rfc5989</a>>.
[<a id="ref-RFC6202">RFC6202</a>] Loreto, S., Saint-Andre, P., Salsano, S., and G. Wilkins,
"Known Issues and Best Practices for the Use of Long
Polling and Streaming in Bidirectional HTTP", <a href="./rfc6202">RFC 6202</a>,
DOI 10.17487/RFC6202, April 2011,
<<a href="http://www.rfc-editor.org/info/rfc6202">http://www.rfc-editor.org/info/rfc6202</a>>.
[<a id="ref-RFC6690">RFC6690</a>] Shelby, Z., "Constrained RESTful Environments (CoRE) Link
Format", <a href="./rfc6690">RFC 6690</a>, DOI 10.17487/RFC6690, August 2012,
<<a href="http://www.rfc-editor.org/info/rfc6690">http://www.rfc-editor.org/info/rfc6690</a>>.
[<a id="ref-RFC7228">RFC7228</a>] Bormann, C., Ersue, M., and A. Keranen, "Terminology for
Constrained-Node Networks", <a href="./rfc7228">RFC 7228</a>,
DOI 10.17487/RFC7228, May 2014,
<<a href="http://www.rfc-editor.org/info/rfc7228">http://www.rfc-editor.org/info/rfc7228</a>>.
[<a id="ref-RFC7230">RFC7230</a>] Fielding, R., Ed. and J. Reschke, Ed., "Hypertext Transfer
Protocol (HTTP/1.1): Message Syntax and Routing",
<a href="./rfc7230">RFC 7230</a>, DOI 10.17487/RFC7230, June 2014,
<<a href="http://www.rfc-editor.org/info/rfc7230">http://www.rfc-editor.org/info/rfc7230</a>>.
<span class="grey">Hartke Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
<span class="h2"><a class="selflink" id="appendix-A" href="#appendix-A">Appendix A</a>. Examples</span>
<span class="h3"><a class="selflink" id="appendix-A.1" href="#appendix-A.1">A.1</a>. Client/Server Examples</span>
Observed CLIENT SERVER Actual
t State | | State
____________ | | ____________
1 | |
2 unknown | | 18.5 Cel
3 +----->| Header: GET 0x41011633
4 | GET | Token: 0x4a
5 | | Uri-Path: temperature
6 | | Observe: 0 (register)
7 | |
8 | |
9 ____________ |<-----+ Header: 2.05 0x61451633
10 | 2.05 | Token: 0x4a
11 18.5 Cel | | Observe: 9
12 | | Max-Age: 15
13 | | Payload: "18.5 Cel"
14 | |
15 | | ____________
16 ____________ |<-----+ Header: 2.05 0x51457b50
17 | 2.05 | 19.2 Cel Token: 0x4a
18 19.2 Cel | | Observe: 16
29 | | Max-Age: 15
20 | | Payload: "19.2 Cel"
21 | |
Figure 3: A Client Registers and Receives One Notification of the
Current State and One of a New State upon a State Change
<span class="grey">Hartke Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
Observed CLIENT SERVER Actual
t State | | State
____________ | | ____________
22 | |
23 19.2 Cel | | 19.2 Cel
24 | | ____________
25 | X----+ Header: 2.05 0x51457b51
26 | 2.05 | 19.7 Cel Token: 0x4a
27 | | Observe: 25
28 | | Max-Age: 15
29 | | Payload: "19.7 Cel"
30 | |
31 ____________ | |
32 | |
33 19.2 Cel | |
34 (stale) | |
35 | |
36 | |
37 | |
38 +----->| Header: GET 0x41011634
39 | GET | Token: 0xb2
40 | | Uri-Path: temperature
41 | | Observe: 0 (register)
42 | |
43 | |
44 ____________ |<-----+ Header: 2.05 0x61451634
45 | 2.05 | Token: 0xb2
46 19.7 Cel | | Observe: 44
47 | | Max-Age: 15
48 | | ETag: 0x78797a7a79
49 | | Payload: "19.7 Cel"
50 | |
Figure 4: The Client Re-registers after Max-Age Ends
<span class="grey">Hartke Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
Observed CLIENT SERVER Actual
t State | | State
____________ | | ____________
51 | |
52 19.7 Cel | | 19.7 Cel
53 | |
54 | | ____________
55 | crash
56 |
57 |
58 |
59 ____________ |
60 |
61 19.7 Cel |
62 (stale) |
63 | reboot____________
64 | |
65 | | 20.0 Cel
66 | |
67 +----->| Header: GET 0x41011635
68 | GET | Token: 0xf9
69 | | Uri-Path: temperature
70 | | Observe: 0 (register)
71 | | ETag: 0x78797a7a79
72 | |
73 | |
74 ____________ |<-----+ Header: 2.05 0x61451635
75 | 2.05 | Token: 0xf9
76 20.0 Cel | | Observe: 74
77 | | Max-Age: 15
78 | | Payload: "20.0 Cel"
79 | |
80 | | ____________
81 ____________ |<-----+ Header: 2.03 0x5143aa0c
82 | 2.03 | 19.7 Cel Token: 0xf9
83 19.7 Cel | | Observe: 81
84 | | ETag: 0x78797a7a79
85 | | Max-Age: 15
86 | |
Figure 5: The Client Re-registers and Gives the Server the
Opportunity to Select a Stored Response
<span class="grey">Hartke Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
Observed CLIENT SERVER Actual
t State | | State
____________ | | ____________
87 | |
88 19.7 Cel | | 19.7 Cel
89 | |
90 | | ____________
91 ____________ |<-----+ Header: 2.05 0x4145aa0f
92 | 2.05 | 19.3 Cel Token: 0xf9
93 19.3 Cel | | Observe: 91
94 | | Max-Age: 15
95 | | Payload: "19.3 Cel"
96 | |
97 | |
98 +- - ->| Header: 0x7000aa0f
99 | |
100 | |
101 | |
102 | | ____________
103 | |
104 | | 19.0 Cel
105 | |
106 ____________ | |
107 | |
108 19.3 Cel | |
109 (stale) | |
110 | |
Figure 6: The Client Rejects a Notification and Thereby Cancels the
Observation
<span class="grey">Hartke Standards Track [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
<span class="h3"><a class="selflink" id="appendix-A.2" href="#appendix-A.2">A.2</a>. Proxy Examples</span>
CLIENT PROXY SERVER
| | |
| +----->| Header: GET 0x41015fb8
| | GET | Token: 0x1a
| | | Uri-Host: sensor.example
| | | Uri-Path: status
| | | Observe: 0 (register)
| | |
| |<-----+ Header: 2.05 0x61455fb8
| | 2.05 | Token: 0x1a
| | | Observe: 42
| | | Max-Age: 60
| | | Payload: "ready"
| | |
+----->| | Header: GET 0x41011633
| GET | | Token: 0x9a
| | | Proxy-Uri: coap://sensor.example/status
| | |
|<-----+ | Header: 2.05 0x61451633
| 2.05 | | Token: 0x9a
| | | Max-Age: 53
| | | Payload: "ready"
| | |
| |<-----+ Header: 2.05 0x514505fc0
| | 2.05 | Token: 0x1a
| | | Observe: 135
| | | Max-Age: 60
| | | Payload: "busy"
| | |
+----->| | Header: GET 0x41011634
| GET | | Token: 0x9b
| | | Proxy-Uri: coap://sensor.example/status
| | |
|<-----+ | Header: 2.05 0x61451634
| 2.05 | | Token: 0x9b
| | | Max-Age: 49
| | | Payload: "busy"
| | |
Figure 7: A Proxy Observes a Resource to Keep its Cache Up to Date
<span class="grey">Hartke Standards Track [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
CLIENT PROXY SERVER
| | |
+----->| | Header: GET 0x41011635
| GET | | Token: 0x6a
| | | Proxy-Uri: coap://sensor.example/status
| | | Observe: 0 (register)
| | |
|<- - -+ | Header: 0x60001635
| | |
| +----->| Header: GET 0x4101af90
| | GET | Token: 0xaa
| | | Uri-Host: sensor.example
| | | Uri-Path: status
| | | Observe: 0 (register)
| | |
| |<-----+ Header: 2.05 0x6145af90
| | 2.05 | Token: 0xaa
| | | Observe: 67
| | | Max-Age: 60
| | | Payload: "ready"
| | |
|<-----+ | Header: 2.05 0x4145af94
| 2.05 | | Token: 0x6a
| | | Observe: 17346
| | | Max-Age: 60
| | | Payload: "ready"
| | |
+- - ->| | Header: 0x6000af94
| | |
| |<-----+ Header: 2.05 0x51455a20
| | 2.05 | Token: 0xaa
| | | Observe: 157
| | | Max-Age: 60
| | | Payload: "busy"
| | |
|<-----+ | Header: 2.05 0x5145af9b
| 2.05 | | Token: 0x6a
| | | Observe: 17436
| | | Max-Age: 60
| | | Payload: "busy"
| | |
Figure 8: A Client Observes a Resource through a Proxy
<span class="grey">Hartke Standards Track [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc7641">RFC 7641</a> Observing Resources in CoAP September 2015</span>
Acknowledgements
Carsten Bormann was an original author of this document and is
acknowledged for significant contribution to this document.
Thanks to Daniele Alessandrelli, Jari Arkko, Peter A. Bigot, Angelo
P. Castellani, Gilbert Clark, Esko Dijk, Thomas Fossati, Brian Frank,
Bert Greevenbosch, Jeroen Hoebeke, Cullen Jennings, Matthias
Kovatsch, Barry Leiba, Salvatore Loreto, Charles Palmer, Akbar
Rahman, Zach Shelby, and Floris Van den Abeele for helpful comments
and discussions that have shaped the document.
This work was supported in part by Klaus Tschira Foundation, Intel,
Cisco, and Nokia.
Author's Address
Klaus Hartke
Universitaet Bremen TZI
Postfach 330440
Bremen D-28359
Germany
Phone: +49-421-218-63905
Email: hartke@tzi.org
Hartke Standards Track [Page 30]
</pre>
|