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
|
<pre>Network Working Group A. B. Roach
Request for Comments: 3265 dynamicsoft
Updates: <a href="./rfc2543">2543</a> June 2002
Category: Standards Track
<span class="h1">Session Initiation Protocol (SIP)-Specific Event Notification</span>
Status of this Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Copyright Notice
Copyright (C) The Internet Society (2002). All Rights Reserved.
Abstract
This document describes an extension to the Session Initiation
Protocol (SIP). The purpose of this extension is to provide an
extensible framework by which SIP nodes can request notification from
remote nodes indicating that certain events have occurred.
Concrete uses of the mechanism described in this document may be
standardized in the future.
Note that the event notification mechanisms defined herein are NOT
intended to be a general-purpose infrastructure for all classes of
event subscription and notification.
Table of Contents
<a href="#section-1">1</a>. Introduction........................................... <a href="#page-3">3</a>
<a href="#section-1.1">1.1</a>. Overview of Operation.................................. <a href="#page-4">4</a>
<a href="#section-1.2">1.2</a>. Documentation Conventions.............................. <a href="#page-4">4</a>
<a href="#section-2">2</a>. Definitions............................................ <a href="#page-5">5</a>
<a href="#section-3">3</a>. Node Behavior.......................................... <a href="#page-6">6</a>
<a href="#section-3.1">3.1</a>. Description of SUBSCRIBE Behavior...................... <a href="#page-6">6</a>
<a href="#section-3.1.1">3.1.1</a>. Subscription Duration.................................. <a href="#page-6">6</a>
<a href="#section-3.1.2">3.1.2</a>. Identification of Subscribed Events and Event Classes.. <a href="#page-6">6</a>
<a href="#section-3.1.3">3.1.3</a>. Additional SUBSCRIBE Header Values..................... <a href="#page-7">7</a>
<a href="#section-3.1.4">3.1.4</a>. Subscriber SUBSCRIBE Behavior.......................... <a href="#page-7">7</a>
<a href="#section-3.1.5">3.1.5</a>. Proxy SUBSCRIBE Behavior............................... <a href="#page-9">9</a>
<a href="#section-3.1.6">3.1.6</a>. Notifier SUBSCRIBE Behavior............................ <a href="#page-10">10</a>
<span class="grey">Roach Standards Track [Page 1]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-2" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
<a href="#section-3.2">3.2</a>. Description of NOTIFY Behavior......................... <a href="#page-13">13</a>
3.2.1. Identification of Reported Events, Event Classes, and
Current State.......................................... <a href="#page-13">13</a>
<a href="#section-3.2.2">3.2.2</a>. Notifier NOTIFY Behavior............................... <a href="#page-14">14</a>
<a href="#section-3.2.3">3.2.3</a>. Proxy NOTIFY Behavior.................................. <a href="#page-15">15</a>
<a href="#section-3.2.4">3.2.4</a>. Subscriber NOTIFY Behavior............................. <a href="#page-16">16</a>
<a href="#section-3.3">3.3</a>. General................................................ <a href="#page-18">18</a>
<a href="#section-3.3.1">3.3.1</a>. Detecting support for SUBSCRIBE and NOTIFY............. <a href="#page-18">18</a>
<a href="#section-3.3.2">3.3.2</a>. CANCEL requests........................................ <a href="#page-18">18</a>
<a href="#section-3.3.3">3.3.3</a>. Forking................................................ <a href="#page-18">18</a>
<a href="#section-3.3.4">3.3.4</a>. Dialog creation and termination........................ <a href="#page-18">18</a>
<a href="#section-3.3.5">3.3.5</a>. State Agents and Notifier Migration.................... <a href="#page-19">19</a>
<a href="#section-3.3.6">3.3.6</a>. Polling Resource State................................. <a href="#page-20">20</a>
<a href="#section-3.3.7">3.3.7</a>. Allow-Events header usage.............................. <a href="#page-21">21</a>
<a href="#section-3.3.8">3.3.8</a>. PINT Compatibility..................................... <a href="#page-21">21</a>
<a href="#section-4">4</a>. Event Packages......................................... <a href="#page-21">21</a>
<a href="#section-4.1">4.1</a>. Appropriateness of Usage............................... <a href="#page-21">21</a>
<a href="#section-4.2">4.2</a>. Event Template-packages................................ <a href="#page-22">22</a>
<a href="#section-4.3">4.3</a>. Amount of State to be Conveyed......................... <a href="#page-22">22</a>
<a href="#section-4.3.1">4.3.1</a>. Complete State Information............................. <a href="#page-23">23</a>
<a href="#section-4.3.2">4.3.2</a>. State Deltas........................................... <a href="#page-23">23</a>
<a href="#section-4.4">4.4</a>. Event Package Responsibilities......................... <a href="#page-24">24</a>
<a href="#section-4.4.1">4.4.1</a>. Event Package Name..................................... <a href="#page-24">24</a>
<a href="#section-4.4.2">4.4.2</a>. Event Package Parameters............................... <a href="#page-24">24</a>
<a href="#section-4.4.3">4.4.3</a>. SUBSCRIBE Bodies....................................... <a href="#page-24">24</a>
<a href="#section-4.4.4">4.4.4</a>. Subscription Duration.................................. <a href="#page-25">25</a>
<a href="#section-4.4.5">4.4.5</a>. NOTIFY Bodies.......................................... <a href="#page-25">25</a>
<a href="#section-4.4.6">4.4.6</a>. Notifier processing of SUBSCRIBE requests.............. <a href="#page-25">25</a>
<a href="#section-4.4.7">4.4.7</a>. Notifier generation of NOTIFY requests................. <a href="#page-25">25</a>
<a href="#section-4.4.8">4.4.8</a>. Subscriber processing of NOTIFY requests............... <a href="#page-26">26</a>
<a href="#section-4.4.9">4.4.9</a>. Handling of forked requests............................ <a href="#page-26">26</a>
<a href="#section-4.4.10">4.4.10</a>. Rate of notifications.................................. <a href="#page-26">26</a>
<a href="#section-4.4.11">4.4.11</a>. State Agents........................................... <a href="#page-27">27</a>
<a href="#section-4.4.12">4.4.12</a>. Examples............................................... <a href="#page-27">27</a>
<a href="#section-4.4.13">4.4.13</a>. Use of URIs to Retrieve State.......................... <a href="#page-27">27</a>
<a href="#section-5">5</a>. Security Considerations................................ <a href="#page-28">28</a>
<a href="#section-5.1">5.1</a>. Access Control......................................... <a href="#page-28">28</a>
<a href="#section-5.2">5.2</a>. Notifier Privacy Mechanism............................. <a href="#page-28">28</a>
<a href="#section-5.3">5.3</a>. Denial-of-Service attacks.............................. <a href="#page-28">28</a>
<a href="#section-5.4">5.4</a>. Replay Attacks......................................... <a href="#page-29">29</a>
<a href="#section-5.5">5.5</a>. Man-in-the middle attacks.............................. <a href="#page-29">29</a>
<a href="#section-5.6">5.6</a>. Confidentiality........................................ <a href="#page-29">29</a>
<a href="#section-6">6</a>. IANA Considerations.................................... <a href="#page-30">30</a>
<a href="#section-6.1">6.1</a>. Registration Information............................... <a href="#page-30">30</a>
<a href="#section-6.2">6.2</a>. Registration Template.................................. <a href="#page-31">31</a>
<a href="#section-6.3">6.3</a>. Header Field Names..................................... <a href="#page-31">31</a>
<a href="#section-6.4">6.4</a>. Response Codes......................................... <a href="#page-32">32</a>
<a href="#section-7">7</a>. Syntax................................................. <a href="#page-32">32</a>
<span class="grey">Roach Standards Track [Page 2]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-3" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
<a href="#section-7.1">7.1</a>. New Methods............................................ <a href="#page-32">32</a>
<a href="#section-7.1.1">7.1.1</a>. SUBSCRIBE method....................................... <a href="#page-34">34</a>
<a href="#section-7.1.2">7.1.2</a>. NOTIFY method.......................................... <a href="#page-34">34</a>
<a href="#section-7.2">7.2</a>. New Headers............................................ <a href="#page-34">34</a>
<a href="#section-7.2.1">7.2.1</a>. "Event" header......................................... <a href="#page-34">34</a>
<a href="#section-7.2.2">7.2.2</a>. "Allow-Events" Header.................................. <a href="#page-35">35</a>
<a href="#section-7.2.3">7.2.3</a>. "Subscription-State" Header............................ <a href="#page-35">35</a>
<a href="#section-7.3">7.3</a>. New Response Codes..................................... <a href="#page-35">35</a>
<a href="#section-7.3.1">7.3.1</a>. "202 Accepted" Response Code........................... <a href="#page-35">35</a>
<a href="#section-7.3.2">7.3.2</a>. "489 Bad Event" Response Code.......................... <a href="#page-35">35</a>
<a href="#section-7.4">7.4</a>. Augmented BNF Definitions.............................. <a href="#page-35">35</a>
<a href="#section-8">8</a>. Normative References................................... <a href="#page-36">36</a>
<a href="#section-9">9</a>. Informative References................................. <a href="#page-37">37</a>
<a href="#section-10">10</a>. Acknowledgements....................................... <a href="#page-37">37</a>
<a href="#section-11">11</a>. Notice Regarding Intellectual Property Rights.......... <a href="#page-37">37</a>
<a href="#section-12">12</a>. Author's Address....................................... <a href="#page-37">37</a>
<a href="#section-13">13</a>. Full Copyright Statement............................... <a href="#page-38">38</a>
<span class="h2"><a class="selflink" id="section-1" href="#section-1">1</a>. Introduction</span>
The ability to request asynchronous notification of events proves
useful in many types of SIP services for which cooperation between
end-nodes is required. Examples of such services include automatic
callback services (based on terminal state events), buddy lists
(based on user presence events), message waiting indications (based
on mailbox state change events), and PSTN and Internet
Internetworking (PINT) [<a href="#ref-2" title=""The PINT Service Protocol"">2</a>] status (based on call state events).
The methods described in this document provide a framework by which
notification of these events can be ordered.
The event notification mechanisms defined herein are NOT intended to
be a general-purpose infrastructure for all classes of event
subscription and notification. Meeting requirements for the general
problem set of subscription and notification is far too complex for a
single protocol. Our goal is to provide a SIP-specific framework for
event notification which is not so complex as to be unusable for
simple features, but which is still flexible enough to provide
powerful services. Note, however, that event packages based on this
framework may define arbitrarily elaborate rules which govern the
subscription and notification for the events or classes of events
they describe.
This document does not describe an extension which may be used
directly; it must be extended by other documents (herein referred to
as "event packages"). In object-oriented design terminology, it may
<span class="grey">Roach Standards Track [Page 3]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-4" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
be thought of as an abstract base class which must be derived into an
instantiatable class by further extensions. Guidelines for creating
these extensions are described in <a href="#section-4">section 4</a>.
<span class="h3"><a class="selflink" id="section-1.1" href="#section-1.1">1.1</a>. Overview of Operation</span>
The general concept is that entities in the network can subscribe to
resource or call state for various resources or calls in the network,
and those entities (or entities acting on their behalf) can send
notifications when those states change.
A typical flow of messages would be:
Subscriber Notifier
|-----SUBSCRIBE---->| Request state subscription
|<-------200--------| Acknowledge subscription
|<------NOTIFY----- | Return current state information
|--------200------->|
|<------NOTIFY----- | Return current state information
|--------200------->|
Subscriptions are expired and must be refreshed by subsequent
SUBSCRIBE messages.
<span class="h3"><a class="selflink" id="section-1.2" href="#section-1.2">1.2</a>. Documentation Conventions</span>
There are several paragraphs throughout this document which provide
motivational or clarifying text. Such passages are non-normative,
and are provided only to assist with reader comprehension. These
passages are set off from the remainder of the text by being indented
thus:
This is an example of non-normative explanatory text. It does not
form part of the specification, and is used only for
clarification.
Numbers in square brackets (e.g., [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>]) denote a reference to one of
the entries in the reference sections; see sections <a href="#section-8">8</a> and <a href="#section-9">9</a>.
The all-capital terms "MUST", "SHOULD", "MAY", "SHOULD NOT", "MUST
NOT", and "RECOMMENDED" are used as defined in <a href="./rfc2119">RFC 2119</a> [<a href="#ref-5" title=""Key Words for Use in RFCs to Indicate Requirement Levels"">5</a>].
The use of quotation marks next to periods and commas follows the
convention used by the American Mathematical Society; although
contrary to traditional American English convention, this usage lends
clarity to certain passages.
<span class="grey">Roach Standards Track [Page 4]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-5" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
<span class="h2"><a class="selflink" id="section-2" href="#section-2">2</a>. Definitions</span>
Event Package: An event package is an additional specification which
defines a set of state information to be reported by a notifier to
a subscriber. Event packages also define further syntax and
semantics based on the framework defined by this document required
to convey such state information.
Event Template-Package: An event template-package is a special kind
of event package which defines a set of states which may be
applied to all possible event packages, including itself.
Notification: Notification is the act of a notifier sending a NOTIFY
message to a subscriber to inform the subscriber of the state of a
resource.
Notifier: A notifier is a user agent which generates NOTIFY requests
for the purpose of notifying subscribers of the state of a
resource. Notifiers typically also accept SUBSCRIBE requests to
create subscriptions.
State Agent: A state agent is a notifier which publishes state
information on behalf of a resource; in order to do so, it may
need to gather such state information from multiple sources.
State agents always have complete state information for the
resource for which they are creating notifications.
Subscriber: A subscriber is a user agent which receives NOTIFY
requests from notifiers; these NOTIFY requests contain information
about the state of a resource in which the subscriber is
interested. Subscribers typically also generate SUBSCRIBE
requests and send them to notifiers to create subscriptions.
Subscription: A subscription is a set of application state associated
with a dialog. This application state includes a pointer to the
associated dialog, the event package name, and possibly an
identification token. Event packages will define additional
subscription state information. By definition, subscriptions
exist in both a subscriber and a notifier.
Subscription Migration: Subscription migration is the act of moving a
subscription from one notifier to another notifier.
<span class="grey">Roach Standards Track [Page 5]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-6" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
<span class="h2"><a class="selflink" id="section-3" href="#section-3">3</a>. Node Behavior</span>
<span class="h3"><a class="selflink" id="section-3.1" href="#section-3.1">3.1</a>. Description of SUBSCRIBE Behavior</span>
The SUBSCRIBE method is used to request current state and state
updates from a remote node.
<span class="h4"><a class="selflink" id="section-3.1.1" href="#section-3.1.1">3.1.1</a>. Subscription Duration</span>
SUBSCRIBE requests SHOULD contain an "Expires" header (defined in SIP
[<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>]). This expires value indicates the duration of the subscription.
In order to keep subscriptions effective beyond the duration
communicated in the "Expires" header, subscribers need to refresh
subscriptions on a periodic basis using a new SUBSCRIBE message on
the same dialog as defined in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>].
If no "Expires" header is present in a SUBSCRIBE request, the implied
default is defined by the event package being used.
200-class responses to SUBSCRIBE requests also MUST contain an
"Expires" header. The period of time in the response MAY be shorter
but MUST NOT be longer than specified in the request. The period of
time in the response is the one which defines the duration of the
subscription.
An "expires" parameter on the "Contact" header has no semantics for
SUBSCRIBE and is explicitly not equivalent to an "Expires" header in
a SUBSCRIBE request or response.
A natural consequence of this scheme is that a SUBSCRIBE with an
"Expires" of 0 constitutes a request to unsubscribe from an event.
In addition to being a request to unsubscribe, a SUBSCRIBE message
with "Expires" of 0 also causes a fetch of state; see <a href="#section-3.3.6">section</a>
<a href="#section-3.3.6">3.3.6</a>.
Notifiers may also wish to cancel subscriptions to events; this is
useful, for example, when the resource to which a subscription refers
is no longer available. Further details on this mechanism are
discussed in <a href="#section-3.2.2">section 3.2.2</a>.
<span class="h4"><a class="selflink" id="section-3.1.2" href="#section-3.1.2">3.1.2</a>. Identification of Subscribed Events and Event Classes</span>
Identification of events is provided by three pieces of information:
Request URI, Event Type, and (optionally) message body.
<span class="grey">Roach Standards Track [Page 6]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-7" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
The Request URI of a SUBSCRIBE request, most importantly, contains
enough information to route the request to the appropriate entity per
the request routing procedures outlined in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>]. It also contains
enough information to identify the resource for which event
notification is desired, but not necessarily enough information to
uniquely identify the nature of the event (e.g.,
"sip:adam@dynamicsoft.com" would be an appropriate URI to subscribe
to for my presence state; it would also be an appropriate URI to
subscribe to the state of my voice mailbox).
Subscribers MUST include exactly one "Event" header in SUBSCRIBE
requests, indicating to which event or class of events they are
subscribing. The "Event" header will contain a token which indicates
the type of state for which a subscription is being requested. This
token will be registered with the IANA and will correspond to an
event package which further describes the semantics of the event or
event class. The "Event" header MAY also contain an "id" parameter.
This "id" parameter, if present, contains an opaque token which
identifies the specific subscription within a dialog. An "id"
parameter is only valid within the scope of a single dialog.
If the event package to which the event token corresponds defines
behavior associated with the body of its SUBSCRIBE requests, those
semantics apply.
Event packages may also define parameters for the Event header; if
they do so, they must define the semantics for such parameters.
<span class="h4"><a class="selflink" id="section-3.1.3" href="#section-3.1.3">3.1.3</a>. Additional SUBSCRIBE Header Values</span>
Because SUBSCRIBE requests create a dialog as defined in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>],
they MAY contain an "Accept" header. This header, if present,
indicates the body formats allowed in subsequent NOTIFY requests.
Event packages MUST define the behavior for SUBSCRIBE requests
without "Accept" headers; usually, this will connote a single,
default body type.
Header values not described in this document are to be interpreted as
described in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>].
<span class="h4"><a class="selflink" id="section-3.1.4" href="#section-3.1.4">3.1.4</a>. Subscriber SUBSCRIBE Behavior</span>
<span class="h5"><a class="selflink" id="section-3.1.4.1" href="#section-3.1.4.1">3.1.4.1</a>. Requesting a Subscription</span>
SUBSCRIBE is a dialog-creating method, as described in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>].
When a subscriber wishes to subscribe to a particular state for a
resource, it forms a SUBSCRIBE message. If the initial SUBSCRIBE
<span class="grey">Roach Standards Track [Page 7]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-8" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
represents a request outside of a dialog (as it typically will), its
construction follows the procedures outlined in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>] for UAC
request generation outside of a dialog.
This SUBSCRIBE request will be confirmed with a final response.
200-class responses indicate that the subscription has been accepted,
and that a NOTIFY will be sent immediately. A 200 response indicates
that the subscription has been accepted and that the user is
authorized to subscribe to the requested resource. A 202 response
merely indicates that the subscription has been understood, and that
authorization may or may not have been granted.
The "Expires" header in a 200-class response to SUBSCRIBE indicates
the actual duration for which the subscription will remain active
(unless refreshed).
Non-200 class final responses indicate that no subscription or dialog
has been created, and no subsequent NOTIFY message will be sent. All
non-200 class responses (with the exception of "489", described
herein) have the same meanings and handling as described in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>].
A SUBSCRIBE request MAY include an "id" parameter in its "Event"
header to allow differentiation between multiple subscriptions in the
same dialog.
<span class="h5"><a class="selflink" id="section-3.1.4.2" href="#section-3.1.4.2">3.1.4.2</a>. Refreshing of Subscriptions</span>
At any time before a subscription expires, the subscriber may refresh
the timer on such a subscription by sending another SUBSCRIBE request
on the same dialog as the existing subscription, and with the same
"Event" header "id" parameter (if one was present in the initial
subscription). The handling for such a request is the same as for
the initial creation of a subscription except as described below.
If the initial SUBSCRIBE message contained an "id" parameter on
the "Event" header, then refreshes of the subscription must also
contain an identical "id" parameter; they will otherwise be
considered new subscriptions in an existing dialog.
If a SUBSCRIBE request to refresh a subscription receives a "481"
response, this indicates that the subscription has been terminated
and that the subscriber did not receive notification of this fact.
In this case, the subscriber should consider the subscription
invalid. If the subscriber wishes to re-subscribe to the state, he
does so by composing an unrelated initial SUBSCRIBE request with a
freshly-generated Call-ID and a new, unique "From" tag (see <a href="#section-3.1.4.1">section</a>
<a href="#section-3.1.4.1">3.1.4.1</a>.)
<span class="grey">Roach Standards Track [Page 8]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-9" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
If a SUBSCRIBE request to refresh a subscription fails with a non-481
response, the original subscription is still considered valid for the
duration of the most recently known "Expires" value as negotiated by
SUBSCRIBE and its response, or as communicated by NOTIFY in the
"Subscription-State" header "expires" parameter.
Note that many such errors indicate that there may be a problem
with the network or the notifier such that no further NOTIFY
messages will be received.
<span class="h5"><a class="selflink" id="section-3.1.4.3" href="#section-3.1.4.3">3.1.4.3</a>. Unsubscribing</span>
Unsubscribing is handled in the same way as refreshing of a
subscription, with the "Expires" header set to "0". Note that a
successful unsubscription will also trigger a final NOTIFY message.
<span class="h5"><a class="selflink" id="section-3.1.4.4" href="#section-3.1.4.4">3.1.4.4</a>. Confirmation of Subscription Creation</span>
The subscriber can expect to receive a NOTIFY message from each node
which has processed a successful subscription or subscription
refresh. Until the first NOTIFY message arrives, the subscriber
should consider the state of the subscribed resource to be in a
neutral state. Documents which define new event packages MUST define
this "neutral state" in such a way that makes sense for their
application (see <a href="#section-4.4.7">section 4.4.7</a>.).
Due to the potential for both out-of-order messages and forking, the
subscriber MUST be prepared to receive NOTIFY messages before the
SUBSCRIBE transaction has completed.
Except as noted above, processing of this NOTIFY is the same as in
<a href="#section-3.2.4">section 3.2.4</a>.
<span class="h4"><a class="selflink" id="section-3.1.5" href="#section-3.1.5">3.1.5</a>. Proxy SUBSCRIBE Behavior</span>
Proxies need no additional behavior beyond that described in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>]
to support SUBSCRIBE. If a proxy wishes to see all of the SUBSCRIBE
and NOTIFY requests for a given dialog, it MUST record-route the
initial SUBSCRIBE and any dialog-establishing NOTIFY requests. Such
proxies SHOULD also record-route all other SUBSCRIBE and NOTIFY
requests.
Note that subscribers and notifiers may elect to use S/MIME
encryption of SUBSCRIBE and NOTIFY requests; consequently, proxies
cannot rely on being able to access any information that is not
explicitly required to be proxy-readable by SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>].
<span class="grey">Roach Standards Track [Page 9]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-10" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
<span class="h4"><a class="selflink" id="section-3.1.6" href="#section-3.1.6">3.1.6</a>. Notifier SUBSCRIBE Behavior</span>
<span class="h5"><a class="selflink" id="section-3.1.6.1" href="#section-3.1.6.1">3.1.6.1</a>. Initial SUBSCRIBE Transaction Processing</span>
In no case should a SUBSCRIBE transaction extend for any longer than
the time necessary for automated processing. In particular,
notifiers MUST NOT wait for a user response before returning a final
response to a SUBSCRIBE request.
This requirement is imposed primarily to prevent the non-INVITE
transaction timeout timer F (see [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>]) from firing during the
SUBSCRIBE transaction, since interaction with a user would often
exceed 64*T1 seconds.
The notifier SHOULD check that the event package specified in the
"Event" header is understood. If not, the notifier SHOULD return a
"489 Bad Event" response to indicate that the specified event/event
class is not understood.
The notifier SHOULD also perform any necessary authentication and
authorization per its local policy. See <a href="#section-3.1.6.3">section 3.1.6.3</a>.
The notifier MAY also check that the duration in the "Expires" header
is not too small. If and only if the expiration interval is greater
than zero AND smaller than one hour AND less than a notifier-
configured minimum, the notifier MAY return a "423 Interval too
small" error which contains a "Min-Expires" header field. The "Min-
Expires" header field is described in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>].
If the notifier is able to immediately determine that it understands
the event package, that the authenticated subscriber is authorized to
subscribe, and that there are no other barriers to creating the
subscription, it creates the subscription and a dialog (if
necessary), and returns a "200 OK" response (unless doing so would
reveal authorization policy in an undesirable fashion; see <a href="#section-5.2">section</a>
<a href="#section-5.2">5.2</a>.).
If the notifier cannot immediately create the subscription (e.g., it
needs to wait for user input for authorization, or is acting for
another node which is not currently reachable), or wishes to mask
authorization policy, it will return a "202 Accepted" response. This
response indicates that the request has been received and understood,
but does not necessarily imply that the subscription has been
authorized yet.
When a subscription is created in the notifier, it stores the event
package name and the "Event" header "id" parameter (if present) as
part of the subscription information.
<span class="grey">Roach Standards Track [Page 10]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-11" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
The "Expires" values present in SUBSCRIBE 200-class responses behave
in the same way as they do in REGISTER responses: the server MAY
shorten the interval, but MUST NOT lengthen it.
If the duration specified in a SUBSCRIBE message is unacceptably
short, the notifier may be able to send a 423 response, as
described earlier in this section.
200-class responses to SUBSCRIBE requests will not generally contain
any useful information beyond subscription duration; their primary
purpose is to serve as a reliability mechanism. State information
will be communicated via a subsequent NOTIFY request from the
notifier.
The other response codes defined in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>] may be used in response
to SUBSCRIBE requests, as appropriate.
<span class="h5"><a class="selflink" id="section-3.1.6.2" href="#section-3.1.6.2">3.1.6.2</a>. Confirmation of Subscription Creation/Refreshing</span>
Upon successfully accepting or refreshing a subscription, notifiers
MUST send a NOTIFY message immediately to communicate the current
resource state to the subscriber. This NOTIFY message is sent on the
same dialog as created by the SUBSCRIBE response. If the resource
has no meaningful state at the time that the SUBSCRIBE message is
processed, this NOTIFY message MAY contain an empty or neutral body.
See <a href="#section-3.2.2">section 3.2.2</a>. for further details on NOTIFY message generation.
Note that a NOTIFY message is always sent immediately after any 200-
class response to a SUBSCRIBE request, regardless of whether the
subscription has already been authorized.
<span class="h5"><a class="selflink" id="section-3.1.6.3" href="#section-3.1.6.3">3.1.6.3</a>. Authentication/Authorization of SUBSCRIBE requests</span>
Privacy concerns may require that notifiers apply policy to determine
whether a particular subscriber is authorized to subscribe to a
certain set of events. Such policy may be defined by mechanisms such
as access control lists or real-time interaction with a user. In
general, authorization of subscribers prior to authentication is not
particularly useful.
SIP authentication mechanisms are discussed in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>]. Note that,
even if the notifier node typically acts as a proxy, authentication
for SUBSCRIBE requests will always be performed via a "401" response,
not a "407;" notifiers always act as a user agents when accepting
subscriptions and sending notifications.
<span class="grey">Roach Standards Track [Page 11]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-12" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
Of course, when acting as a proxy, a node will perform normal
proxy authentication (using 407). The foregoing explanation is a
reminder that notifiers are always UAs, and as such perform UA
authentication.
If authorization fails based on an access list or some other
automated mechanism (i.e., it can be automatically authoritatively
determined that the subscriber is not authorized to subscribe), the
notifier SHOULD reply to the request with a "403 Forbidden" or "603
Decline" response, unless doing so might reveal information that
should stay private; see <a href="#section-5.2">section 5.2</a>.
If the notifier owner is interactively queried to determine whether a
subscription is allowed, a "202 Accept" response is returned
immediately. Note that a NOTIFY message is still formed and sent
under these circumstances, as described in the previous section.
If subscription authorization was delayed and the notifier wishes to
convey that such authorization has been declined, it may do so by
sending a NOTIFY message containing a "Subscription-State" header
with a value of "terminated" and a reason parameter of "rejected".
<span class="h5"><a class="selflink" id="section-3.1.6.4" href="#section-3.1.6.4">3.1.6.4</a>. Refreshing of Subscriptions</span>
When a notifier receives a subscription refresh, assuming that the
subscriber is still authorized, the notifier updates the expiration
time for the subscription. As with the initial subscription, the
server MAY shorten the amount of time until expiration, but MUST NOT
increase it. The final expiration time is placed in the "Expires"
header in the response. If the duration specified in a SUBSCRIBE
message is unacceptably short, the notifier SHOULD respond with a
"423 Subscription Too Brief" message.
If no refresh for a notification address is received before its
expiration time, the subscription is removed. When removing a
subscription, the notifier SHOULD send a NOTIFY message with a
"Subscription-State" value of "terminated" to inform it that the
subscription is being removed. If such a message is sent, the
"Subscription-State" header SHOULD contain a "reason=timeout"
parameter.
The sending of a NOTIFY when a subscription expires allows the
corresponding dialog to be terminated, if appropriate.
<span class="grey">Roach Standards Track [Page 12]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-13" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
<span class="h3"><a class="selflink" id="section-3.2" href="#section-3.2">3.2</a>. Description of NOTIFY Behavior</span>
NOTIFY messages are sent to inform subscribers of changes in state to
which the subscriber has a subscription. Subscriptions are typically
put in place using the SUBSCRIBE method; however, it is possible that
other means have been used.
If any non-SUBSCRIBE mechanisms are defined to create subscriptions,
it is the responsibility of the parties defining those mechanisms to
ensure that correlation of a NOTIFY message to the corresponding
subscription is possible. Designers of such mechanisms are also
warned to make a distinction between sending a NOTIFY message to a
subscriber who is aware of the subscription, and sending a NOTIFY
message to an unsuspecting node. The latter behavior is invalid, and
MUST receive a "481 Subscription does not exist" response (unless
some other 400- or 500-class error code is more applicable), as
described in <a href="#section-3.2.4">section 3.2.4</a>. In other words, knowledge of a
subscription must exist in both the subscriber and the notifier to be
valid, even if installed via a non-SUBSCRIBE mechanism.
A NOTIFY does not terminate its corresponding subscription; in other
words, a single SUBSCRIBE request may trigger several NOTIFY
requests.
<span class="h4"><a class="selflink" id="section-3.2.1" href="#section-3.2.1">3.2.1</a>. Identification of Reported Events, Event Classes, and Current</span>
<span class="h4"> State</span>
Identification of events being reported in a notification is very
similar to that described for subscription to events (see <a href="#section-3.1.2">section</a>
<a href="#section-3.1.2">3.1.2</a>.).
As in SUBSCRIBE requests, NOTIFY "Event" headers will contain a
single event package name for which a notification is being
generated. The package name in the "Event" header MUST match the
"Event" header in the corresponding SUBSCRIBE message. If an "id"
parameter was present in the SUBSCRIBE message, that "id" parameter
MUST also be present in the corresponding NOTIFY messages.
Event packages may define semantics associated with the body of their
NOTIFY requests; if they do so, those semantics apply. NOTIFY bodies
are expected to provide additional details about the nature of the
event which has occurred and the resultant resource state.
When present, the body of the NOTIFY request MUST be formatted into
one of the body formats specified in the "Accept" header of the
corresponding SUBSCRIBE request. This body will contain either the
state of the subscribed resource or a pointer to such state in the
form of a URI (see <a href="#section-4.4.13">section 4.4.13</a>).
<span class="grey">Roach Standards Track [Page 13]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-14" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
<span class="h4"><a class="selflink" id="section-3.2.2" href="#section-3.2.2">3.2.2</a>. Notifier NOTIFY Behavior</span>
When a SUBSCRIBE request is answered with a 200-class response, the
notifier MUST immediately construct and send a NOTIFY request to the
subscriber. When a change in the subscribed state occurs, the
notifier SHOULD immediately construct and send a NOTIFY request,
subject to authorization, local policy, and throttling
considerations.
A NOTIFY request is considered failed if the response times out, or a
non-200 class response code is received which has no "Retry-After"
header and no implied further action which can be taken to retry the
request (e.g., "401 Authorization Required".)
If the NOTIFY request fails (as defined above) due to a timeout
condition, and the subscription was installed using a soft-state
mechanism (such as SUBSCRIBE), the notifier SHOULD remove the
subscription.
This behavior prevents unnecessary transmission of state
information for subscribers who have crashed or disappeared from
the network. Because such transmissions will be sent multiple
times, per the retransmission algorithm defined in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>]
(instead of the typical single transmission for functioning
clients), continuing to service them when no client is available
to acknowledge them could place undue strain on a network. Upon
client restart or reestablishment of a network connection, it is
expected that clients will send SUBSCRIBE messages to refresh
potentially stale state information; such messages will re-install
subscriptions in all relevant nodes.
If the NOTIFY request fails (as defined above) due to an error
response, and the subscription was installed using a soft-state
mechanism, the notifier MUST remove the corresponding subscription.
A notify error response would generally indicate that something
has gone wrong with the subscriber or with some proxy on the way
to the subscriber. If the subscriber is in error, it makes the
most sense to allow the subscriber to rectify the situation (by
re-subscribing) once the error condition has been handled. If a
proxy is in error, the periodic SUBSCRIBE refreshes will re-
install subscription state once the network problem has been
resolved.
If a NOTIFY request receives a 481 response, the notifier MUST remove
the corresponding subscription even if such subscription was
installed by non-SUBSCRIBE means (such as an administrative
interface).
<span class="grey">Roach Standards Track [Page 14]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-15" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
If the above behavior were not required, subscribers receiving a
notify for an unknown subscription would need to send an error
status code in response to the NOTIFY and also send a SUBSCRIBE
request to remove the subscription. Since this behavior would
make subscribers available for use as amplifiers in denial of
service attacks, we have instead elected to give the 481 response
special meaning: it is used to indicate that a subscription must
be cancelled under all circumstances.
NOTIFY requests MUST contain a "Subscription-State" header with a
value of "active", "pending", or "terminated". The "active" value
indicates that the subscription has been accepted and has been
authorized (in most cases; see <a href="#section-5.2">section 5.2</a>.). The "pending" value
indicates that the subscription has been received, but that policy
information is insufficient to accept or deny the subscription at
this time. The "terminated" value indicates that the subscription is
not active.
If the value of the "Subscription-State" header is "active" or
"pending", the notifier SHOULD also include in the "Subscription-
State" header an "expires" parameter which indicates the time
remaining on the subscription. The notifier MAY use this mechanism
to shorten a subscription; however, this mechanism MUST NOT be used
to lengthen a subscription.
Including expiration information for active and pending
subscriptions is useful in case the SUBSCRIBE request forks, since
the response to a forked SUBSCRIBE may not be received by the
subscriber. Note well that this "expires" value is a parameter on
the "Subscription-State" header, NOT an "Expires" header.
If the value of the "Subscription-State" header is "terminated", the
notifier SHOULD also include a "reason" parameter. The notifier MAY
also include a "retry-after" parameter, where appropriate. For
details on the value and semantics of the "reason" and "retry-after"
parameters, see <a href="#section-3.2.4">section 3.2.4</a>.
<span class="h4"><a class="selflink" id="section-3.2.3" href="#section-3.2.3">3.2.3</a>. Proxy NOTIFY Behavior</span>
Proxies need no additional behavior beyond that described in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>]
to support NOTIFY. If a proxy wishes to see all of the SUBSCRIBE and
NOTIFY requests for a given dialog, it MUST record-route the initial
SUBSCRIBE and any dialog-establishing NOTIFY requests. Such proxies
SHOULD also record-route all other SUBSCRIBE and NOTIFY requests.
<span class="grey">Roach Standards Track [Page 15]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-16" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
Note that subscribers and notifiers may elect to use S/MIME
encryption of SUBSCRIBE and NOTIFY requests; consequently, proxies
cannot rely on being able to access any information that is not
explicitly required to be proxy-readable by SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>].
<span class="h4"><a class="selflink" id="section-3.2.4" href="#section-3.2.4">3.2.4</a>. Subscriber NOTIFY Behavior</span>
Upon receiving a NOTIFY request, the subscriber should check that it
matches at least one of its outstanding subscriptions; if not, it
MUST return a "481 Subscription does not exist" response unless
another 400- or 500-class response is more appropriate. The rules
for matching NOTIFY requests with subscriptions that create a new
dialog are described in <a href="#section-3.3.4">section 3.3.4</a>. Notifications for
subscriptions which were created inside an existing dialog match if
they are in the same dialog and the "Event" headers match (as
described in <a href="#section-7.2.1">section 7.2.1</a>.)
If, for some reason, the event package designated in the "Event"
header of the NOTIFY request is not supported, the subscriber will
respond with a "489 Bad Event" response.
To prevent spoofing of events, NOTIFY requests SHOULD be
authenticated, using any defined SIP authentication mechanism.
NOTIFY requests MUST contain "Subscription-State" headers which
indicate the status of the subscription.
If the "Subscription-State" header value is "active", it means that
the subscription has been accepted and (in general) has been
authorized. If the header also contains an "expires" parameter, the
subscriber SHOULD take it as the authoritative subscription duration
and adjust accordingly. The "retry-after" and "reason" parameters
have no semantics for "active".
If the "Subscription-State" value is "pending", the subscription has
been received by the notifier, but there is insufficient policy
information to grant or deny the subscription yet. If the header
also contains an "expires" parameter, the subscriber SHOULD take it
as the authoritative subscription duration and adjust accordingly.
No further action is necessary on the part of the subscriber. The
"retry-after" and "reason" parameters have no semantics for
"pending".
If the "Subscription-State" value is "terminated", the subscriber
should consider the subscription terminated. The "expires" parameter
has no semantics for "terminated". If a reason code is present, the
client should behave as described below. If no reason code or an
unknown reason code is present, the client MAY attempt to re-
<span class="grey">Roach Standards Track [Page 16]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-17" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
subscribe at any time (unless a "retry-after" parameter is present,
in which case the client SHOULD NOT attempt re-subscription until
after the number of seconds specified by the "retry-after"
parameter). The defined reason codes are:
deactivated: The subscription has been terminated, but the subscriber
SHOULD retry immediately with a new subscription. One primary use
of such a status code is to allow migration of subscriptions
between nodes. The "retry-after" parameter has no semantics for
"deactivated".
probation: The subscription has been terminated, but the client
SHOULD retry at some later time. If a "retry-after" parameter is
also present, the client SHOULD wait at least the number of
seconds specified by that parameter before attempting to re-
subscribe.
rejected: The subscription has been terminated due to change in
authorization policy. Clients SHOULD NOT attempt to re-subscribe.
The "retry-after" parameter has no semantics for "rejected".
timeout: The subscription has been terminated because it was not
refreshed before it expired. Clients MAY re-subscribe
immediately. The "retry-after" parameter has no semantics for
"timeout".
giveup: The subscription has been terminated because the notifier
could not obtain authorization in a timely fashion. If a "retry-
after" parameter is also present, the client SHOULD wait at least
the number of seconds specified by that parameter before
attempting to re-subscribe; otherwise, the client MAY retry
immediately, but will likely get put back into pending state.
noresource: The subscription has been terminated because the resource
state which was being monitored no longer exists. Clients SHOULD
NOT attempt to re-subscribe. The "retry-after" parameter has no
semantics for "noresource".
Once the notification is deemed acceptable to the subscriber, the
subscriber SHOULD return a 200 response. In general, it is not
expected that NOTIFY responses will contain bodies; however, they
MAY, if the NOTIFY request contained an "Accept" header.
Other responses defined in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>] may also be returned, as
appropriate. In no case should a NOTIFY transaction extend for any
longer than the time necessary for automated processing. In
particular, subscribers MUST NOT wait for a user response before
returning a final response to a NOTIFY request.
<span class="grey">Roach Standards Track [Page 17]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-18" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
<span class="h3"><a class="selflink" id="section-3.3" href="#section-3.3">3.3</a>. General</span>
<span class="h4"><a class="selflink" id="section-3.3.1" href="#section-3.3.1">3.3.1</a>. Detecting support for SUBSCRIBE and NOTIFY</span>
Neither SUBSCRIBE nor NOTIFY necessitate the use of "Require" or
"Proxy-Require" headers; similarly, there is no token defined for
"Supported" headers. If necessary, clients may probe for the support
of SUBSCRIBE and NOTIFY using the OPTIONS request defined in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>].
The presence of the "Allow-Events" header in a message is sufficient
to indicate support for SUBSCRIBE and NOTIFY.
The "methods" parameter for Contact may also be used to
specifically announce support for SUBSCRIBE and NOTIFY messages
when registering. (See reference [<a href="#ref-8" title=""SIP Caller Preferences and Callee Capabilities"">8</a>] for details on the "methods"
parameter).
<span class="h4"><a class="selflink" id="section-3.3.2" href="#section-3.3.2">3.3.2</a>. CANCEL requests</span>
No semantics are associated with cancelling SUBSCRIBE or NOTIFY.
<span class="h4"><a class="selflink" id="section-3.3.3" href="#section-3.3.3">3.3.3</a>. Forking</span>
In accordance with the rules for proxying non-INVITE requests as
defined in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>], successful SUBSCRIBE requests will receive only
one 200-class response; however, due to forking, the subscription may
have been accepted by multiple nodes. The subscriber MUST therefore
be prepared to receive NOTIFY requests with "From:" tags which differ
from the "To:" tag received in the SUBSCRIBE 200-class response.
If multiple NOTIFY messages are received in different dialogs in
response to a single SUBSCRIBE message, each dialog represents a
different destination to which the SUBSCRIBE request was forked. For
information on subscriber handling in such situations, see <a href="#section-4.4.9">section</a>
<a href="#section-4.4.9">4.4.9</a>.
<span class="h4"><a class="selflink" id="section-3.3.4" href="#section-3.3.4">3.3.4</a>. Dialog creation and termination</span>
If an initial SUBSCRIBE request is not sent on a pre-existing dialog,
the subscriber will wait for a response to the SUBSCRIBE request or a
matching NOTIFY.
Responses are matched to such SUBSCRIBE requests if they contain the
same the same "Call-ID", the same "From" header "tag", and the same
"CSeq". Rules for the comparison of these headers are described in
SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>]. If a 200-class response matches such a SUBSCRIBE request,
it creates a new subscription and a new dialog (unless they have
already been created by a matching NOTIFY request; see below).
<span class="grey">Roach Standards Track [Page 18]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-19" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
NOTIFY requests are matched to such SUBSCRIBE requests if they
contain the same "Call-ID", a "To" header "tag" parameter which
matches the "From" header "tag" parameter of the SUBSCRIBE, and the
same "Event" header field. Rules for comparisons of the "Event"
headers are described in <a href="#section-7.2.1">section 7.2.1</a>. If a matching NOTIFY request
contains a "Subscription-State" of "active" or "pending", it creates
a new subscription and a new dialog (unless they have already been
created by a matching response, as described above).
If an initial SUBSCRIBE is sent on a pre-existing dialog, a matching
200-class response or successful NOTIFY request merely creates a new
subscription associated with that dialog.
Multiple subscriptions can be associated with a single dialog.
Subscriptions may also exist in dialogs associated with INVITE-
created application state and other application state created by
mechanisms defined in other specifications. These sets of
application state do not interact beyond the behavior described for a
dialog (e.g., route set handling).
A subscription is destroyed when a notifier sends a NOTIFY request
with a "Subscription-State" of "terminated".
A subscriber may send a SUBSCRIBE request with an "Expires" header
of 0 in order to trigger the sending of such a NOTIFY request;
however, for the purposes of subscription and dialog lifetime, the
subscription is not considered terminated until the NOTIFY with a
"Subscription-State" of "terminated" is sent.
If a subscription's destruction leaves no other application state
associated with the dialog, the dialog terminates. The destruction
of other application state (such as that created by an INVITE) will
not terminate the dialog if a subscription is still associated with
that dialog.
Note that the above behavior means that a dialog created with an
INVITE does not necessarily terminate upon receipt of a BYE.
Similarly, in the case that several subscriptions are associated
with a single dialog, the dialog does not terminate until all the
subscriptions in it are destroyed.
<span class="h4"><a class="selflink" id="section-3.3.5" href="#section-3.3.5">3.3.5</a>. State Agents and Notifier Migration</span>
When state agents (see <a href="#section-4.4.11">section 4.4.11</a>.) are used, it is often useful
to allow migration of subscriptions between state agents and the
nodes for which they are providing state aggregation (or even among
various state agents). Such migration may be effected by sending a
<span class="grey">Roach Standards Track [Page 19]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-20" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
NOTIFY message with a "Subscription-State" header of "terminated",
and a reason parameter of "deactivated". This NOTIFY request is
otherwise normal, and is formed as described in <a href="#section-3.2.2">section 3.2.2</a>.
Upon receipt of this NOTIFY message, the subscriber SHOULD attempt to
re-subscribe (as described in the preceding sections). Note that
this subscription is established on a new dialog, and does not re-use
the route set from the previous subscription dialog.
The actual migration is effected by making a change to the policy
(such as routing decisions) of one or more servers to which the
SUBSCRIBE request will be sent in such a way that a different node
ends up responding to the SUBSCRIBE request. This may be as simple
as a change in the local policy in the notifier from which the
subscription is migrating so that it serves as a proxy or redirect
server instead of a notifier.
Whether, when, and why to perform notifier migrations may be
described in individual event packages; otherwise, such decisions are
a matter of local notifier policy, and are left up to individual
implementations.
<span class="h4"><a class="selflink" id="section-3.3.6" href="#section-3.3.6">3.3.6</a>. Polling Resource State</span>
A natural consequence of the behavior described in the preceding
sections is that an immediate fetch without a persistent subscription
may be effected by sending a SUBSCRIBE with an "Expires" of 0.
Of course, an immediate fetch while a subscription is active may be
effected by sending a SUBSCRIBE with an "Expires" equal to the number
of seconds remaining in the subscription.
Upon receipt of this SUBSCRIBE request, the notifier (or notifiers,
if the SUBSCRIBE request was forked) will send a NOTIFY request
containing resource state in the same dialog.
Note that the NOTIFY messages triggered by SUBSCRIBE messages with
"Expires" headers of 0 will contain a "Subscription-State" value of
"terminated", and a "reason" parameter of "timeout".
Polling of event state can cause significant increases in load on the
network and notifiers; as such, it should be used only sparingly. In
particular, polling SHOULD NOT be used in circumstances in which it
will typically result in more network messages than long-running
subscriptions.
<span class="grey">Roach Standards Track [Page 20]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-21" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
When polling is used, subscribers SHOULD attempt to cache
authentication credentials between polls so as to reduce the number
of messages sent.
<span class="h4"><a class="selflink" id="section-3.3.7" href="#section-3.3.7">3.3.7</a>. Allow-Events header usage</span>
The "Allow-Events" header, if present, includes a list of tokens
which indicates the event packages supported by the client (if sent
in a request) or server (if sent in a response). In other words, a
node sending an "Allow-Events" header is advertising that it can
process SUBSCRIBE requests and generate NOTIFY requests for all of
the event packages listed in that header.
Any node implementing one or more event packages SHOULD include an
appropriate "Allow-Events" header indicating all supported events in
all methods which initiate dialogs and their responses (such as
INVITE) and OPTIONS responses.
This information is very useful, for example, in allowing user agents
to render particular interface elements appropriately according to
whether the events required to implement the features they represent
are supported by the appropriate nodes.
Note that "Allow-Events" headers MUST NOT be inserted by proxies.
<span class="h4"><a class="selflink" id="section-3.3.8" href="#section-3.3.8">3.3.8</a>. PINT Compatibility</span>
The "Event" header is considered mandatory for the purposes of this
document. However, to maintain compatibility with PINT (see [<a href="#ref-2" title=""The PINT Service Protocol"">2</a>]),
servers MAY interpret a SUBSCRIBE request with no "Event" header as
requesting a subscription to PINT events. If a server does not
support PINT, it SHOULD return "489 Bad Event" to any SUBSCRIBE
messages without an "Event" header.
<span class="h2"><a class="selflink" id="section-4" href="#section-4">4</a>. Event Packages</span>
This section covers several issues which should be taken into
consideration when event packages based on SUBSCRIBE and NOTIFY are
proposed.
<span class="h3"><a class="selflink" id="section-4.1" href="#section-4.1">4.1</a>. Appropriateness of Usage</span>
When designing an event package using the methods described in this
document for event notification, it is important to consider: is SIP
an appropriate mechanism for the problem set? Is SIP being selected
because of some unique feature provided by the protocol (e.g., user
mobility), or merely because "it can be done?" If you find yourself
<span class="grey">Roach Standards Track [Page 21]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-22" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
defining event packages for notifications related to, for example,
network management or the temperature inside your car's engine, you
may want to reconsider your selection of protocols.
Those interested in extending the mechanism defined in this
document are urged to follow the development of "Guidelines for
Authors of SIP Extensions" [<a href="#ref-7" title=""Guidelines for Authors of SIP Extensions"">7</a>] for further guidance regarding
appropriate uses of SIP.
Further, it is expected that this mechanism is not to be used in
applications where the frequency of reportable events is excessively
rapid (e.g., more than about once per second). A SIP network is
generally going to be provisioned for a reasonable signalling volume;
sending a notification every time a user's GPS position changes by
one hundredth of a second could easily overload such a network.
<span class="h3"><a class="selflink" id="section-4.2" href="#section-4.2">4.2</a>. Event Template-packages</span>
Normal event packages define a set of state applied to a specific
type of resource, such as user presence, call state, and messaging
mailbox state.
Event template-packages are a special type of package which define a
set of state applied to other packages, such as statistics, access
policy, and subscriber lists. Event template-packages may even be
applied to other event template-packages.
To extend the object-oriented analogy made earlier, event template-
packages can be thought of as templatized C++ packages which must be
applied to other packages to be useful.
The name of an event template-package as applied to a package is
formed by appending a period followed by the event template-package
name to the end of the package. For example, if a template-package
called "winfo" were being applied to a package called "presence", the
event token used in "Event" and "Allow-Events" would be
"presence.winfo".
Event template-packages must be defined so that they can be applied
to any arbitrary package. In other words, event template-packages
cannot be specifically tied to one or a few "parent" packages in such
a way that they will not work with other packages.
<span class="h3"><a class="selflink" id="section-4.3" href="#section-4.3">4.3</a>. Amount of State to be Conveyed</span>
When designing event packages, it is important to consider the type
of information which will be conveyed during a notification.
<span class="grey">Roach Standards Track [Page 22]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-23" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
A natural temptation is to convey merely the event (e.g., "a new
voice message just arrived") without accompanying state (e.g., "7
total voice messages"). This complicates implementation of
subscribing entities (since they have to maintain complete state for
the entity to which they have subscribed), and also is particularly
susceptible to synchronization problems.
There are two possible solutions to this problem that event packages
may choose to implement.
<span class="h4"><a class="selflink" id="section-4.3.1" href="#section-4.3.1">4.3.1</a>. Complete State Information</span>
For packages which typically convey state information that is
reasonably small (on the order of 1 kb or so), it is suggested that
event packages are designed so as to send complete state information
when an event occurs.
In some circumstances, conveying the current state alone may be
insufficient for a particular class of events. In these cases, the
event packages should include complete state information along with
the event that occurred. For example, conveying "no customer service
representatives available" may not be as useful as conveying "no
customer service representatives available; representative
sip:46@cs.xyz.int just logged off".
<span class="h4"><a class="selflink" id="section-4.3.2" href="#section-4.3.2">4.3.2</a>. State Deltas</span>
In the case that the state information to be conveyed is large, the
event package may choose to detail a scheme by which NOTIFY messages
contain state deltas instead of complete state.
Such a scheme would work as follows: any NOTIFY sent in immediate
response to a SUBSCRIBE contains full state information. NOTIFY
messages sent because of a state change will contain only the state
information that has changed; the subscriber will then merge this
information into its current knowledge about the state of the
resource.
Any event package that supports delta changes to states MUST include
a version number that increases by exactly one for each NOTIFY
transaction in a subscription. Note that the state version number
appears in the body of the message, not in a SIP header.
If a NOTIFY arrives that has a version number that is incremented by
more than one, the subscriber knows that a state delta has been
missed; it ignores the NOTIFY message containing the state delta
<span class="grey">Roach Standards Track [Page 23]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-24" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
(except for the version number, which it retains to detect message
loss), and re-sends a SUBSCRIBE to force a NOTIFY containing a
complete state snapshot.
<span class="h3"><a class="selflink" id="section-4.4" href="#section-4.4">4.4</a>. Event Package Responsibilities</span>
Event packages are not required to reiterate any of the behavior
described in this document, although they may choose to do so for
clarity or emphasis. In general, though, such packages are
expected to describe only the behavior that extends or modifies
the behavior described in this document.
Note that any behavior designated with "SHOULD" or "MUST" in this
document is not allowed to be weakened by extension documents;
however, such documents may elect to strengthen "SHOULD"
requirements to "MUST" strength if required by their application.
In addition to the normal sections expected in standards-track
RFCs and SIP extension documents, authors of event packages need
to address each of the issues detailed in the following
subsections, whenever applicable.
<span class="h4"><a class="selflink" id="section-4.4.1" href="#section-4.4.1">4.4.1</a>. Event Package Name</span>
This section, which MUST be present, defines the token name to be
used to designate the event package. It MUST include the information
which appears in the IANA registration of the token. For information
on registering such types, see <a href="#section-6">section 6</a>.
<span class="h4"><a class="selflink" id="section-4.4.2" href="#section-4.4.2">4.4.2</a>. Event Package Parameters</span>
If parameters are to be used on the "Event" header to modify the
behavior of the event package, the syntax and semantics of such
headers MUST be clearly defined.
<span class="h4"><a class="selflink" id="section-4.4.3" href="#section-4.4.3">4.4.3</a>. SUBSCRIBE Bodies</span>
It is expected that most, but not all, event packages will define
syntax and semantics for SUBSCRIBE method bodies; these bodies will
typically modify, expand, filter, throttle, and/or set thresholds for
the class of events being requested. Designers of event packages are
strongly encouraged to re-use existing MIME types for message bodies
where practical.
<span class="grey">Roach Standards Track [Page 24]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-25" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
This mandatory section of an event package defines what type or types
of event bodies are expected in SUBSCRIBE requests (or specify that
no event bodies are expected). It should point to detailed
definitions of syntax and semantics for all referenced body types.
<span class="h4"><a class="selflink" id="section-4.4.4" href="#section-4.4.4">4.4.4</a>. Subscription Duration</span>
It is RECOMMENDED that event packages give a suggested range of times
considered reasonable for the duration of a subscription. Such
packages MUST also define a default "Expires" value to be used if
none is specified.
<span class="h4"><a class="selflink" id="section-4.4.5" href="#section-4.4.5">4.4.5</a>. NOTIFY Bodies</span>
The NOTIFY body is used to report state on the resource being
monitored. Each package MUST define what type or types of event
bodies are expected in NOTIFY requests. Such packages MUST specify
or cite detailed specifications for the syntax and semantics
associated with such event body.
Event packages also MUST define which MIME type is to be assumed if
none are specified in the "Accept" header of the SUBSCRIBE request.
<span class="h4"><a class="selflink" id="section-4.4.6" href="#section-4.4.6">4.4.6</a>. Notifier processing of SUBSCRIBE requests</span>
This section describes the processing to be performed by the notifier
upon receipt of a SUBSCRIBE request. Such a section is required.
Information in this section includes details of how to authenticate
subscribers and authorization issues for the package. Such
authorization issues may include, for example, whether all SUBSCRIBE
requests for this package are answered with 202 responses (see
<a href="#section-5.2">section 5.2</a>.).
<span class="h4"><a class="selflink" id="section-4.4.7" href="#section-4.4.7">4.4.7</a>. Notifier generation of NOTIFY requests</span>
This section of an event package describes the process by which the
notifier generates and sends a NOTIFY request. This includes
detailed information about what events cause a NOTIFY to be sent, how
to compute the state information in the NOTIFY, how to generate
neutral or fake state information to hide authorization delays and
decisions from users, and whether state information is complete or
deltas for notifications; see <a href="#section-4.3">section 4.3</a>. Such a section is
required.
This section may optionally describe the behavior used to process the
subsequent response.
<span class="grey">Roach Standards Track [Page 25]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-26" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
<span class="h4"><a class="selflink" id="section-4.4.8" href="#section-4.4.8">4.4.8</a>. Subscriber processing of NOTIFY requests</span>
This section of an event package describes the process followed by
the subscriber upon receipt of a NOTIFY request, including any logic
required to form a coherent resource state (if applicable).
<span class="h4"><a class="selflink" id="section-4.4.9" href="#section-4.4.9">4.4.9</a>. Handling of forked requests</span>
Each event package MUST specify whether forked SUBSCRIBE requests are
allowed to install multiple subscriptions.
If such behavior is not allowed, the first potential dialog-
establishing message will create a dialog. All subsequent NOTIFY
messages which correspond to the SUBSCRIBE message (i.e., match "To",
"From", "From" header "tag" parameter, "Call-ID", "CSeq", "Event",
and "Event" header "id" parameter) but which do not match the dialog
would be rejected with a 481 response. Note that the 200-class
response to the SUBSCRIBE can arrive after a matching NOTIFY has been
received; such responses might not correlate to the same dialog
established by the NOTIFY. Except as required to complete the
SUBSCRIBE transaction, such non-matching 200-class responses are
ignored.
If installing of multiple subscriptions by way of a single forked
SUBSCRIBE is allowed, the subscriber establishes a new dialog towards
each notifier by returning a 200-class response to each NOTIFY. Each
dialog is then handled as its own entity, and is refreshed
independent of the other dialogs.
In the case that multiple subscriptions are allowed, the event
package MUST specify whether merging of the notifications to form a
single state is required, and how such merging is to be performed.
Note that it is possible that some event packages may be defined in
such a way that each dialog is tied to a mutually exclusive state
which is unaffected by the other dialogs; this MUST be clearly stated
if it is the case.
<span class="h4"><a class="selflink" id="section-4.4.10" href="#section-4.4.10">4.4.10</a>. Rate of notifications</span>
Each event package is expected to define a requirement (SHOULD or
MUST strength) which defines an absolute maximum on the rate at which
notifications are allowed to be generated by a single notifier.
Each package MAY further define a throttle mechanism which allows
subscribers to further limit the rate of notification.
<span class="grey">Roach Standards Track [Page 26]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-27" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
<span class="h4"><a class="selflink" id="section-4.4.11" href="#section-4.4.11">4.4.11</a>. State Agents</span>
Designers of event packages should consider whether their package can
benefit from network aggregation points (state agents) and/or nodes
which act on behalf of other nodes. (For example, nodes which
provide state information about a resource when such a resource is
unable or unwilling to provide such state information itself). An
example of such an application is a node which tracks the presence
and availability of a user in the network.
If state agents are to be used by the package, the package MUST
specify how such state agents aggregate information and how they
provide authentication and authorization.
Event packages MAY also outline specific scenarios under which
notifier migrations take place.
<span class="h4"><a class="selflink" id="section-4.4.12" href="#section-4.4.12">4.4.12</a>. Examples</span>
Event packages SHOULD include several demonstrative message flow
diagrams paired with several typical, syntactically correct, and
complete messages.
It is RECOMMENDED that documents describing event packages clearly
indicate that such examples are informative and not normative, with
instructions that implementors refer to the main text of the document
for exact protocol details.
<span class="h4"><a class="selflink" id="section-4.4.13" href="#section-4.4.13">4.4.13</a>. Use of URIs to Retrieve State</span>
Some types of event packages may define state information which is
potentially too large to reasonably send in a SIP message. To
alleviate this problem, event packages may include the ability to
convey a URI instead of state information; this URI will then be used
to retrieve the actual state information.
The precise mechanisms for conveying such URIs are out of the scope
of this document.
<span class="grey">Roach Standards Track [Page 27]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-28" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
<span class="h2"><a class="selflink" id="section-5" href="#section-5">5</a>. Security Considerations</span>
<span class="h3"><a class="selflink" id="section-5.1" href="#section-5.1">5.1</a>. Access Control</span>
The ability to accept subscriptions should be under the direct
control of the notifier's user, since many types of events may be
considered sensitive for the purposes of privacy. Similarly, the
notifier should have the ability to selectively reject subscriptions
based on the subscriber identity (based on access control lists),
using standard SIP authentication mechanisms. The methods for
creation and distribution of such access control lists is outside the
scope of this document.
<span class="h3"><a class="selflink" id="section-5.2" href="#section-5.2">5.2</a>. Notifier Privacy Mechanism</span>
The mere act of returning a 200 or certain 4xx and 6xx responses to
SUBSCRIBE requests may, under certain circumstances, create privacy
concerns by revealing sensitive policy information. In these cases,
the notifier SHOULD always return a 202 response. While the
subsequent NOTIFY message may not convey true state, it MUST appear
to contain a potentially correct piece of data from the point of view
of the subscriber, indistinguishable from a valid response.
Information about whether a user is authorized to subscribe to the
requested state is never conveyed back to the original user under
these circumstances.
Individual packages and their related documents for which such a mode
of operation makes sense can further describe how and why to generate
such potentially correct data. For example, such a mode of operation
is mandated by <a href="./rfc2779">RFC 2779</a> [<a href="#ref-6" title=""Instant Messaging/Presence Protocol Requirements"">6</a>] for user presence information.
<span class="h3"><a class="selflink" id="section-5.3" href="#section-5.3">5.3</a>. Denial-of-Service attacks</span>
The current model (one SUBSCRIBE request triggers a SUBSCRIBE
response and one or more NOTIFY requests) is a classic setup for an
amplifier node to be used in a smurf attack.
Also, the creation of state upon receipt of a SUBSCRIBE request can
be used by attackers to consume resources on a victim's machine,
rendering it unusable.
To reduce the chances of such an attack, implementations of notifiers
SHOULD require authentication. Authentication issues are discussed
in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>].
<span class="grey">Roach Standards Track [Page 28]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-29" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
<span class="h3"><a class="selflink" id="section-5.4" href="#section-5.4">5.4</a>. Replay Attacks</span>
Replaying of either SUBSCRIBE or NOTIFY can have detrimental effects.
In the case of SUBSCRIBE messages, attackers may be able to install
any arbitrary subscription which it witnessed being installed at some
point in the past. Replaying of NOTIFY messages may be used to spoof
old state information (although a good versioning mechanism in the
body of the NOTIFY messages may help mitigate such an attack). Note
that the prohibition on sending NOTIFY messages to nodes which have
not subscribed to an event also aids in mitigating the effects of
such an attack.
To prevent such attacks, implementations SHOULD require
authentication with anti-replay protection. Authentication issues
are discussed in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>].
<span class="h3"><a class="selflink" id="section-5.5" href="#section-5.5">5.5</a>. Man-in-the middle attacks</span>
Even with authentication, man-in-the-middle attacks using SUBSCRIBE
may be used to install arbitrary subscriptions, hijack existing
subscriptions, terminate outstanding subscriptions, or modify the
resource to which a subscription is being made. To prevent such
attacks, implementations SHOULD provide integrity protection across
"Contact", "Route", "Expires", "Event", and "To" headers of SUBSCRIBE
messages, at a minimum. If SUBSCRIBE bodies are used to define
further information about the state of the call, they SHOULD be
included in the integrity protection scheme.
Man-in-the-middle attacks may also attempt to use NOTIFY messages to
spoof arbitrary state information and/or terminate outstanding
subscriptions. To prevent such attacks, implementations SHOULD
provide integrity protection across the "Call-ID", "CSeq", and
"Subscription-State" headers and the bodies of NOTIFY messages.
Integrity protection of message headers and bodies is discussed in
SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>].
<span class="h3"><a class="selflink" id="section-5.6" href="#section-5.6">5.6</a>. Confidentiality</span>
The state information contained in a NOTIFY message has the potential
to contain sensitive information. Implementations MAY encrypt such
information to ensure confidentiality.
While less likely, it is also possible that the information contained
in a SUBSCRIBE message contains information that users might not want
to have revealed. Implementations MAY encrypt such information to
ensure confidentiality.
<span class="grey">Roach Standards Track [Page 29]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-30" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
To allow the remote party to hide information it considers sensitive,
all implementations SHOULD be able to handle encrypted SUBSCRIBE and
NOTIFY messages.
The mechanisms for providing confidentiality are detailed in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>].
<span class="h2"><a class="selflink" id="section-6" href="#section-6">6</a>. IANA Considerations</span>
This document defines an event-type namespace which requires a
central coordinating body. The body chosen for this coordination is
the Internet Assigned Numbers Authority (IANA).
There are two different types of event-types: normal event packages,
and event template-packages; see <a href="#section-4.2">section 4.2</a>. To avoid confusion,
template-package names and package names share the same namespace; in
other words, an event template-package MUST NOT share a name with a
package.
Following the policies outlined in "Guidelines for Writing an IANA
Considerations Section in RFCs" [<a href="#ref-4" title="">4</a>], normal event package
identification tokens are allocated as First Come First Served, and
event template-package identification tokens are allocated on a IETF
Consensus basis.
Registrations with the IANA MUST include the token being registered
and whether the token is a package or a template-package. Further,
packages MUST include contact information for the party responsible
for the registration and/or a published document which describes the
event package. Event template-package token registrations MUST
include a pointer to the published RFC which defines the event
template-package.
Registered tokens to designate packages and template-packages MUST
NOT contain the character ".", which is used to separate template-
packages from packages.
<span class="h3"><a class="selflink" id="section-6.1" href="#section-6.1">6.1</a>. Registration Information</span>
As this document specifies no package or template-package names, the
initial IANA registration for event types will be empty. The
remainder of the text in this section gives an example of the type of
information to be maintained by the IANA; it also demonstrates all
five possible permutations of package type, contact, and reference.
The table below lists the event packages and template-packages
defined in "SIP-Specific Event Notification" [<a href="./rfc3265">RFC3265</a>]. Each name is
designated as a package or a template-package under "Type".
<span class="grey">Roach Standards Track [Page 30]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-31" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
Package Name Type Contact Reference
------------ ---- ------- ---------
example1 package [Roach]
example2 package [Roach] [<a href="./rfc3265">RFC3265</a>]
example3 package [<a href="./rfc3265">RFC3265</a>]
example4 template [Roach] [<a href="./rfc3265">RFC3265</a>]
example5 template [<a href="./rfc3265">RFC3265</a>]
PEOPLE
------
[Roach] Adam Roach <adam@dynamicsoft.com>
REFERENCES
----------
[<a href="./rfc3265">RFC3265</a>] Roach, A., "SIP-Specific Event Notification", <a href="./rfc3265">RFC 3265</a>,
June 2002.
<span class="h3"><a class="selflink" id="section-6.2" href="#section-6.2">6.2</a>. Registration Template</span>
To: ietf-sip-events@iana.org
Subject: Registration of new SIP event package
Package Name:
(Package names must conform to the syntax described in
<a href="#section-7.2.1">section 7.2.1</a>.)
Is this registration for a Template Package:
(indicate yes or no)
Published Specification(s):
(Template packages require a published RFC. Other packages
may reference a specification when appropriate).
Person & email address to contact for further information:
<span class="h3"><a class="selflink" id="section-6.3" href="#section-6.3">6.3</a>. Header Field Names</span>
This document registers three new header field names, described
elsewhere in this document. These headers are defined by the
following information, which is to be added to the header sub-
registry under <a href="http://www.iana.org/assignments/sip-parameters">http://www.iana.org/assignments/sip-parameters</a>.
Header Name: Allow-Events
Compact Form: u
<span class="grey">Roach Standards Track [Page 31]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-32" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
Header Name: Subscription-State
Compact Form: (none)
Header Name: Event
Compact Form: o
<span class="h3"><a class="selflink" id="section-6.4" href="#section-6.4">6.4</a>. Response Codes</span>
This document registers two new response codes. These response codes
are defined by the following information, which is to be added to the
method and response-code sub-registry under
<a href="http://www.iana.org/assignments/sip-parameters">http://www.iana.org/assignments/sip-parameters</a>.
Response Code Number: 202
Default Reason Phrase: Accepted
Response Code Number: 489
Default Reason Phrase: Bad Event
<span class="h2"><a class="selflink" id="section-7" href="#section-7">7</a>. Syntax</span>
This section describes the syntax extensions required for event
notification in SIP. Semantics are described in <a href="#section-3">section 3</a>. Note
that the formal syntax definitions described in this document are
expressed in the ABNF format used in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>], and contain references
to elements defined therein.
<span class="h3"><a class="selflink" id="section-7.1" href="#section-7.1">7.1</a>. New Methods</span>
This document describes two new SIP methods: SUBSCRIBE and
NOTIFY.
This table expands on tables 2 and 3 in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>].
Header Where SUB NOT
------ ----- --- ---
Accept R o o
Accept 2xx - -
Accept 415 o o
Accept-Encoding R o o
Accept-Encoding 2xx - -
Accept-Encoding 415 o o
Accept-Language R o o
Accept-Language 2xx - -
Accept-Language 415 o o
Alert-Info R - -
Alert-Info 180 - -
Allow R o o
<span class="grey">Roach Standards Track [Page 32]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-33" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
Allow 2xx o o
Allow r o o
Allow 405 m m
Authentication-Info 2xx o o
Authorization R o o
Call-ID c m m
Contact R m m
Contact 1xx o o
Contact 2xx m o
Contact 3xx m m
Contact 485 o o
Content-Disposition o o
Content-Encoding o o
Content-Language o o
Content-Length t t
Content-Type * *
CSeq c m m
Date o o
Error-Info 300-699 o o
Expires o -
Expires 2xx m -
From c m m
In-Reply-To R - -
Max-Forwards R m m
Min-Expires 423 m -
MIME-Version o o
Organization o -
Priority R o -
Proxy-Authenticate 407 m m
Proxy-Authorization R o o
Proxy-Require R o o
RAck R - -
Record-Route R o o
Record-Route 2xx,401,484 o o
Reply-To - -
Require o o
Retry-After 404,413,480,486 o o
Retry-After 500,503 o o
Retry-After 600,603 o o
Route R c c
RSeq 1xx o o
Server r o o
Subject R - -
Supported R o o
Supported 2xx o o
Timestamp o o
To c(1) m m
Unsupported 420 o o
<span class="grey">Roach Standards Track [Page 33]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-34" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
User-Agent o o
Via c m m
Warning R - o
Warning r o o
WWW-Authenticate 401 m m
<span class="h4"><a class="selflink" id="section-7.1.1" href="#section-7.1.1">7.1.1</a>. SUBSCRIBE method</span>
"SUBSCRIBE" is added to the definition of the element "Method" in the
SIP message grammar.
Like all SIP method names, the SUBSCRIBE method name is case
sensitive. The SUBSCRIBE method is used to request asynchronous
notification of an event or set of events at a later time.
<span class="h4"><a class="selflink" id="section-7.1.2" href="#section-7.1.2">7.1.2</a>. NOTIFY method</span>
"NOTIFY" is added to the definition of the element "Method" in the
SIP message grammar.
The NOTIFY method is used to notify a SIP node that an event which
has been requested by an earlier SUBSCRIBE method has occurred. It
may also provide further details about the event.
<span class="h3"><a class="selflink" id="section-7.2" href="#section-7.2">7.2</a>. New Headers</span>
This table expands on tables 2 and 3 in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>], as amended by the
changes described in <a href="#section-7.1">section 7.1</a>.
Header field where proxy ACK BYE CAN INV OPT REG PRA SUB NOT
-----------------------------------------------------------------
Allow-Events R o o - o o o o o o
Allow-Events 2xx - o - o o o o o o
Allow-Events 489 - - - - - - - m m
Event R - - - - - - - m m
Subscription-State R - - - - - - - - m
<span class="h4"><a class="selflink" id="section-7.2.1" href="#section-7.2.1">7.2.1</a>. "Event" header</span>
Event is added to the definition of the element "message-header" in
the SIP message grammar.
For the purposes of matching responses and NOTIFY messages with
SUBSCRIBE messages, the event-type portion of the "Event" header is
compared byte-by-byte, and the "id" parameter token (if present) is
compared byte-by-byte. An "Event" header containing an "id"
parameter never matches an "Event" header without an "id" parameter.
No other parameters are considered when performing a comparison.
<span class="grey">Roach Standards Track [Page 34]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-35" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
Note that the forgoing text means that "Event: foo; id=1234" would
match "Event: foo; param=abcd; id=1234", but not "Event: foo" (id
does not match) or "Event: Foo; id=1234" (event portion does not
match).
This document does not define values for event-types. These values
will be defined by individual event packages, and MUST be registered
with the IANA.
There MUST be exactly one event type listed per event header.
Multiple events per message are disallowed.
<span class="h4"><a class="selflink" id="section-7.2.2" href="#section-7.2.2">7.2.2</a>. "Allow-Events" Header</span>
Allow-Events is added to the definition of the element "general-
header" in the SIP message grammar. Its usage is described in
<a href="#section-3.3.7">section 3.3.7</a>.
<span class="h4"><a class="selflink" id="section-7.2.3" href="#section-7.2.3">7.2.3</a>. "Subscription-State" Header</span>
Subscription-State is added to the definition of the element
"request-header" in the SIP message grammar. Its usage is described
in <a href="#section-3.2.4">section 3.2.4</a>.
<span class="h3"><a class="selflink" id="section-7.3" href="#section-7.3">7.3</a>. New Response Codes</span>
<span class="h4"><a class="selflink" id="section-7.3.1" href="#section-7.3.1">7.3.1</a>. "202 Accepted" Response Code</span>
The 202 response is added to the "Success" header field definition.
"202 Accepted" has the same meaning as that defined in HTTP/1.1 [<a href="#ref-3" title=""Hypertext Transfer Protocol -- HTTP/1.1"">3</a>].
<span class="h4"><a class="selflink" id="section-7.3.2" href="#section-7.3.2">7.3.2</a>. "489 Bad Event" Response Code</span>
The 489 event response is added to the "Client-Error" header field
definition. "489 Bad Event" is used to indicate that the server did
not understand the event package specified in a "Event" header field.
<span class="h3"><a class="selflink" id="section-7.4" href="#section-7.4">7.4</a>. Augmented BNF Definitions</span>
The Augmented BNF definitions for the various new and modified syntax
elements follows. The notation is as used in SIP [<a href="#ref-1" title=""SIP: Session Initiation Protocol"">1</a>], and any
elements not defined in this section are as defined in SIP and the
documents to which it refers.
SUBSCRIBEm = %x53.55.42.53.43.52.49.42.45 ; SUBSCRIBE in caps
NOTIFYm = %x4E.4F.54.49.46.59 ; NOTIFY in caps
extension-method = SUBSCRIBEm / NOTIFYm / token
<span class="grey">Roach Standards Track [Page 35]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-36" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
Event = ( "Event" / "o" ) HCOLON event-type
*( SEMI event-param )
event-type = event-package *( "." event-template )
event-package = token-nodot
event-template = token-nodot
token-nodot = 1*( alphanum / "-" / "!" / "%" / "*"
/ "_" / "+" / "`" / "'" / "~" )
event-param = generic-param / ( "id" EQUAL token )
Allow-Events = ( "Allow-Events" / "u" ) HCOLON event-type
*(COMMA event-type)
Subscription-State = "Subscription-State" HCOLON substate-value
*( SEMI subexp-params )
substate-value = "active" / "pending" / "terminated"
/ extension-substate
extension-substate = token
subexp-params = ("reason" EQUAL event-reason-value)
/ ("expires" EQUAL delta-seconds)
/ ("retry-after" EQUAL delta-seconds)
/ generic-param
event-reason-value = "deactivated"
/ "probation"
/ "rejected"
/ "timeout"
/ "giveup"
/ "noresource"
/ event-reason-extension
event-reason-extension = token
<span class="h2"><a class="selflink" id="section-8" href="#section-8">8</a>. Normative References</span>
[<a id="ref-1">1</a>] Rosenberg, J., Schulzrinne, H., Camarillo, G., Johnston, A.,
Peterson, J., Sparks, R., Handley, M. and E. Schooler, "SIP:
Session Initiation Protocol", <a href="./rfc3261">RFC 3261</a>, June 2002.
[<a id="ref-2">2</a>] Petrack, S. and L. Conroy, "The PINT Service Protocol", <a href="./rfc2848">RFC</a>
<a href="./rfc2848">2848</a>, June 2000.
[<a id="ref-3">3</a>] Fielding, R., Gettys, J., Mogul, J., Frystyk, H., Masinter, L.,
Leach, P. and T. Berners-Lee, "Hypertext Transfer Protocol --
HTTP/1.1", <a href="./rfc2616">RFC 2616</a>, June 1999.
[<a id="ref-4">4</a>] Narten, T. and H. Alvestrand, "Guidelines for Writing an IANA
Considerations Section in RFCs", <a href="https://www.rfc-editor.org/bcp/bcp26">BCP 26</a>, <a href="./rfc2434">RFC 2434</a>, October
1998.
<span class="grey">Roach Standards Track [Page 36]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-37" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
[<a id="ref-5">5</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>, March 1997.
[<a id="ref-6">6</a>] Day, M., Aggarwal, S., Mohr, G. and J. Vincent, "Instant
Messaging/Presence Protocol Requirements", <a href="./rfc2779">RFC 2779</a>, February
2000.
<span class="h2"><a class="selflink" id="section-9" href="#section-9">9</a>. Informative References</span>
[<a id="ref-7">7</a>] Rosenberg, J. and H. Schulzrinne, "Guidelines for Authors of
SIP Extensions", Work in Progress.
[<a id="ref-8">8</a>] Schulzrinne, H. and J. Rosenberg, "SIP Caller Preferences and
Callee Capabilities", Work in Progress.
<span class="h2"><a class="selflink" id="section-10" href="#section-10">10</a>. Acknowledgements</span>
Thanks to the participants in the Events BOF at the 48th IETF meeting
in Pittsburgh, as well as those who gave ideas and suggestions on the
SIP Events mailing list. In particular, I wish to thank Henning
Schulzrinne of Columbia University for coming up with the final
three-tiered event identification scheme, Sean Olson for
miscellaneous guidance, Jonathan Rosenberg for a thorough scrubbing
of the -00 draft, and the authors of the "SIP Extensions for
Presence" document for their input to SUBSCRIBE and NOTIFY request
semantics.
<span class="h2"><a class="selflink" id="section-11" href="#section-11">11</a>. Notice Regarding Intellectual Property Rights</span>
The IETF has been notified of intellectual property rights claimed in
regard to some or all of the specification contained in this
document. For more information, consult the online list of claimed
rights at <a href="http://www.ietf.org/ipr.html">http://www.ietf.org/ipr.html</a>
<span class="h2"><a class="selflink" id="section-12" href="#section-12">12</a>. Author's Address</span>
Adam Roach
dynamicsoft
5100 Tennyson Parkway
Suite 1200
Plano, TX 75024
USA
EMail: adam@dynamicsoft.com
Voice: sip:adam@dynamicsoft.com
<span class="grey">Roach Standards Track [Page 37]</span></pre>
<hr class='noprint'/><!--NewPage--><pre class='newpage'><span id="page-38" ></span>
<span class="grey"><a href="./rfc3265">RFC 3265</a> SIP-Specific Event Notification June 2002</span>
<span class="h2"><a class="selflink" id="section-13" href="#section-13">13</a>. Full Copyright Statement</span>
Copyright (C) The Internet Society (2002). All Rights Reserved.
This document and translations of it may be copied and furnished to
others, and derivative works that comment on or otherwise explain it
or assist in its implementation may be prepared, copied, published
and distributed, in whole or in part, without restriction of any
kind, provided that the above copyright notice and this paragraph are
included on all such copies and derivative works. However, this
document itself may not be modified in any way, such as by removing
the copyright notice or references to the Internet Society or other
Internet organizations, except as needed for the purpose of
developing Internet standards in which case the procedures for
copyrights defined in the Internet Standards process must be
followed, or as required to translate it into languages other than
English.
The limited permissions granted above are perpetual and will not be
revoked by the Internet Society or its successors or assigns.
This document and the information contained herein is provided on an
"AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
Acknowledgement
Funding for the RFC Editor function is currently provided by the
Internet Society.
Roach Standards Track [Page 38]
</pre>
|