blob: 55fa5973a800b7ddec6095ebc2743bb971931b45 [file] [log] [blame]
Alexander Afanasyeve2800232013-11-27 02:24:14 +00001.. _Interest:
Alexander Afanasyeveee8c252013-11-21 23:22:41 +00002
3Interest Packet
4---------------
5
Alexander Afanasyeve2800232013-11-27 02:24:14 +00006NDN Interest packet is TLV defined as follows:
7
8::
Alexander Afanasyeveee8c252013-11-21 23:22:41 +00009
Alexander Afanasyeva6fc7272014-06-13 11:58:06 -070010 Interest ::= INTEREST-TYPE TLV-LENGTH
Alexander Afanasyeveee8c252013-11-21 23:22:41 +000011 Name
12 Selectors?
13 Nonce
Alexander Afanasyeveee8c252013-11-21 23:22:41 +000014 InterestLifetime?
15
Alexander Afanasyev7455e9b2014-06-25 09:41:08 -070016``Name`` and ``Nonce`` are the only two required elements in an Interest packet.
Alexander Afanasyeveee8c252013-11-21 23:22:41 +000017Selectors are optional elements that further qualify Data that may match the Interest.
Alexander Afanasyeva6fc7272014-06-13 11:58:06 -070018They are used for discovering and selecting the Data that matches best to what the application wants. Selectors are placed right after the Name to facilitate implementations that may use continuous memory block of Name and Selectors TLVs together as the index for PIT lookup. By using a TLV to group all the Selectors, an implementation can easily skip them to find Nonce, which is used together with Name to identify looping Interests.
Alexander Afanasyeveee8c252013-11-21 23:22:41 +000019If Selectors TLV is present in the Interest, it MUST contain at least one selector.
20
Junxiao Shibdc75012015-01-13 22:09:12 -070021``InterestLifetime`` is optional and is referred to as a *Guider*.
22It affects Interest forwarding behavior, i.e., how long an Interest may be kept in the PIT.
23
24.. Guiders are not grouped.
Alexander Afanasyeveee8c252013-11-21 23:22:41 +000025
26
27Name
28~~~~
29
Alexander Afanasyeve2800232013-11-27 02:24:14 +000030The Name element in an Interest is synonymous with the term *prefix*.
31See :ref:`Name section <Name>` for details.
32
Alexander Afanasyev25286362016-09-05 20:55:25 -070033The Name element that can be put in the Interest is further restricted to have at least one NameComponent.
34Interests that include Name TLV that has zero name components MUST BE discarded.
35
Alexander Afanasyeve2800232013-11-27 02:24:14 +000036.. _Selectors:
Alexander Afanasyeveee8c252013-11-21 23:22:41 +000037
38Selectors
39~~~~~~~~~
Alexander Afanasyeve2800232013-11-27 02:24:14 +000040
41::
42
Alexander Afanasyeva6fc7272014-06-13 11:58:06 -070043 Selectors ::= SELECTORS-TYPE TLV-LENGTH
Alexander Afanasyeve2800232013-11-27 02:24:14 +000044 MinSuffixComponents?
45 MaxSuffixComponents?
46 PublisherPublicKeyLocator?
47 Exclude?
48 ChildSelector?
49 MustBeFresh?
50
Alexander Afanasyeveee8c252013-11-21 23:22:41 +000051MinSuffixComponents, MaxSuffixComponents
52++++++++++++++++++++++++++++++++++++++++
53
Alexander Afanasyeve2800232013-11-27 02:24:14 +000054::
Alexander Afanasyeveee8c252013-11-21 23:22:41 +000055
56 MinSuffixComponents ::= MIN-SUFFIX-COMPONENTS-TYPE TLV-LENGTH
57 nonNegativeInteger
58
59 MaxSuffixComponents ::= MAX-SUFFIX-COMPONENTS-TYPE TLV-LENGTH
60 nonNegativeInteger
61
Alexander Afanasyeva6fc7272014-06-13 11:58:06 -070062When needed, ``MinSuffixComponents`` and ``MaxSuffixComponents`` allow a data consumer to indicate whether the Name in the Interest is the full name including the digest, or the full name except for the digest, or the content it is seeking has a known range of legitimate component counts.
63These two parameters refer to the number of name components beyond those in the prefix, and counting the implicit digest, that may occur in the matching Data.
Alexander Afanasyeveee8c252013-11-21 23:22:41 +000064The default for ``MinSuffixComponents`` is 0 and for ``MaxSuffixComponents`` is effectively infinite, meaning that any Data whose name starts with the prefix is a match. Often only one of these will be needed to get the desired effect.
65
Alexander Afanasyeva6fc7272014-06-13 11:58:06 -070066
Alexander Afanasyeveee8c252013-11-21 23:22:41 +000067PublisherPublicKeyLocator
68+++++++++++++++++++++++++
69
Alexander Afanasyeve2800232013-11-27 02:24:14 +000070::
Alexander Afanasyeveee8c252013-11-21 23:22:41 +000071
Alexander Afanasyev23c2e412014-02-12 19:53:48 +000072 PublisherPublicKeyLocator ::= KeyLocator
Alexander Afanasyeveee8c252013-11-21 23:22:41 +000073
74This element specifies the name of the key which is used to sign the Data packet that the consumer is requesting.
75This is a way for the Interest to select answers from a particular publisher.
76
Alexander Afanasyev23c2e412014-02-12 19:53:48 +000077See :ref:`KeyLocator` section for more detail.
78
Alexander Afanasyeveee8c252013-11-21 23:22:41 +000079Exclude
80+++++++
81
Alexander Afanasyeve2800232013-11-27 02:24:14 +000082::
Alexander Afanasyeveee8c252013-11-21 23:22:41 +000083
84 Exclude ::= EXCLUDE-TYPE TLV-LENGTH Any? (NameComponent (Any)?)+
85 Any ::= ANY-TYPE TLV-LENGTH(=0)
86
Cenk Gündoğanbc5f0ec2016-09-14 15:49:52 +020087The ``Exclude`` selectors allow requesters to specify list and/or ranges of name components that MUST NOT appear as a continuation of the Name prefix in the responding Data packet to the Interest.
Alexander Afanasyev4b8be212014-10-06 10:55:04 -070088For example, if Interest is expressed for ``/ndn/edu`` and Exclude specifies one name component ``ucla``, then neither data producer nor conforming NDN routers are allowed to return any Data packet that has prefix ``/ndn/edu/ucla``.
Alexander Afanasyeveee8c252013-11-21 23:22:41 +000089
90Exclude filter applies only to a name component of the Data packet name that is located at a position that numerically equals to the number of name components in the Interest packet, assuming 0 is the first name component.
91
92The Components in the exclusion list MUST occur in strictly increasing order according to the canonical NDN name component ordering (:ref:`Name Section<name>`), with optional leading, trailing, and interleaved ``Any`` components. The following defines processing of ``Any`` components:
93
Cenk Gündoğanbc5f0ec2016-09-14 15:49:52 +020094- If none of the ``Any`` components are specified, the filter excludes only the names specified in the Exclude list.
Alexander Afanasyeveee8c252013-11-21 23:22:41 +000095
96- If a leading ``Any`` component is specified, then the filter excludes all names that are smaller or equal (in NDN name component canonical ordering) to the first NameComponent in the Exclude list.
97
98- If a trailing ``Any`` component is specified, then the filter excludes all names that are larger or equal (in NDN name component canonical ordering) to the last NameComponent in the Exclude list.
99
100- If ``Any`` component is specified between two NameComponents in the list, then the filter excludes all names from the range from the right NameComponent to the left NameComponent, including both ends.
101
102
Alexander Afanasyeve2800232013-11-27 02:24:14 +0000103Exclude filter MUST not consist of a single ``Any`` component or one NameComponent with leading and trailing ``Any`` components.
Alexander Afanasyeveee8c252013-11-21 23:22:41 +0000104
105
106ChildSelector
107+++++++++++++
108
Alexander Afanasyeve2800232013-11-27 02:24:14 +0000109::
Alexander Afanasyeveee8c252013-11-21 23:22:41 +0000110
Alexander Afanasyeva6fc7272014-06-13 11:58:06 -0700111 ChildSelector ::= CHILD-SELECTOR-TYPE TLV-LENGTH
Alexander Afanasyeveee8c252013-11-21 23:22:41 +0000112 nonNegativeInteger
113
114Often a given Interest can match more than one Data within a given content store.
115The ``ChildSelector`` provides a way of expressing a preference for which of these should be returned.
116If the value is 0, the leftmost child is preferred.
117If 1, the rightmost child is preferred.
118Here leftmost and rightmost refer to the least and greatest components according to the canonical NDN name component ordering (:ref:`Name Section<name>`).
119This ordering is only done at the level of the name hierarchy one past the name prefix.
120
Alexander Afanasyeva6fc7272014-06-13 11:58:06 -0700121For example, assuming in the name hierarchy the component immediately after the name prefix is the version number, whose next level is the segment number, then setting ChildSelector to be 1 will retrieve the rightmost version number (i.e., the latest version) and the leftmost segment number (i.e., the first segment). However, this selection is only done with respect to a single content store, not globally. Additional rounds that exclude the earlier versions may be used to explore other content stores for newer versions.
Alexander Afanasyeveee8c252013-11-21 23:22:41 +0000122In this case, the use of ChildSelector does not change the multi-round outcome, but it decreases the number of rounds needed to converge to an answer.
Alexander Afanasyeva6fc7272014-06-13 11:58:06 -0700123
Alexander Afanasyeveee8c252013-11-21 23:22:41 +0000124MustBeFresh
125+++++++++++
126
Alexander Afanasyeve2800232013-11-27 02:24:14 +0000127::
Alexander Afanasyeveee8c252013-11-21 23:22:41 +0000128
129 MustBeFresh ::= MUST-BE-FRESH-TYPE TLV-LENGTH(=0)
130
131This selector is encoded with Type and Length but no Value part.
Alexander Afanasyeva6fc7272014-06-13 11:58:06 -0700132When it is absent from an Interest packet, the router can respond with a Data packet from its content store whose FreshnessPeriod is either still valid or expired.
Alexander Afanasyeveee8c252013-11-21 23:22:41 +0000133When it is present in an Interest packet, the router should not return Data packet from its content store whose FreshnessPeriod has expired.
134
135The FreshnessPeriod carried in each Data packet (:ref:`Data Section<data>`) is set by the original producer. It starts counting down when the Data packet arrives at a node. Consequently if a node is N hops away from the original producer, it may not consider the Data stale until N *X* FreshnessPeriod after the Data is produced.
136
Alexander Afanasyevfffabfb2013-12-11 21:29:05 +0000137.. _Nonce:
138
139Nonce
140~~~~~
141
142Nonce defined as follows:
143
144::
145
146 Nonce ::= NONCE-TYPE TLV-LENGTH(=4) BYTE{4}
147
Alexander Afanasyev4b896112014-06-23 21:47:15 -0700148The Nonce carries a randomly-generated 4-octet long byte-string.
Alexander Afanasyevfffabfb2013-12-11 21:29:05 +0000149The combination of Name and Nonce should uniquely identify an Interest packet.
150This is used to detect looping Interests.
151
152.. _Guiders:
153
154Guiders
155~~~~~~~
156
Alexander Afanasyeveee8c252013-11-21 23:22:41 +0000157InterestLifetime
158++++++++++++++++
159
Alexander Afanasyeve2800232013-11-27 02:24:14 +0000160::
Alexander Afanasyeveee8c252013-11-21 23:22:41 +0000161
162 InterestLifetime ::= INTEREST-LIFETIME-TYPE TLV-LENGTH nonNegativeInteger
163
Alexander Afanasyeva6fc7272014-06-13 11:58:06 -0700164``InterestLifetime`` indicates the (approximate) time remaining before the Interest times out.
Alexander Afanasyeveee8c252013-11-21 23:22:41 +0000165The value is the number of milliseconds. The timeout is relative to the arrival time of the Interest at the current node.
166
167Nodes that forward Interests may decrease the lifetime to account for the time spent in the node before forwarding, but are not required to do so. It is recommended that these adjustments be done only for relatively large delays (measured in seconds).
168
169It is the application that sets the value for ``InterestLifetime``.
170If the ``InterestLifetime`` element is omitted, a default value of 4 seconds is used (4000).
171The missing element may be added before forwarding.