blob: e6d6591d7f426fabcb0986cf0d407cf710abfc2b [file] [log] [blame]
Alexander Afanasyeveee8c252013-11-21 23:22:41 +00001.. _data:
2
3Data Packet
4-----------
5
6NDN Data packet is TLV defined as follows::
7
8 Data ::= DATA-TLV TLV-LENGTH
9 Name
10 MetaInfo
11 Content
12 Signature
13
14The Data packet represents some arbitrary binary data (held in the Content element) together with its Name, some additional bits of information (MetaInfo), and a digital Signature of the other three elements. The Name is the first element since all NDN packet processing starts with the name. Signature is put at the end of the packet to ease the implementation because signature computation covers all the elements before Signature.
15
16Name
17~~~~
18
19See :ref:`Name section<name>` for details.
20
21MetaInfo
22~~~~~~~~
23
24.. [#f1] If both ``ContentType`` and ``FreshnessPeriod`` are optional, one may consider ``Metainfo`` itself should be optional. But would have all 4 parts of Data packet help simplify implementation? We leave this question to people who are more familiar with high speed implementations.
25
26.. code-block:: none
27
28 MetaInfo ::= META-INFO-TYPE TLV-LENGTH
29 ContentType?
30 FreshnessPeriod?
31
32Compared with CCNx, four fields are removed: PublisherPublicKeyDigest, ExtOpt, Timestamp, and FinalBlockID for the following reasons.
33
34
35- PublisherPublicKeyDigest is supposed to be used in selecting data packets signed by a particular key.
36 We replace PublisherPublicKeyDigest with KeyLocator, which is part of the Signature block (see :ref:`Signature Section<signature>`), due to the following consideration.
37 First, it requires data consumer to acquire a *valid* public key, as opposed to the key locator, before sending Interest out.
38 Second, if a router is to verify the content objects, it must have other means to locate the keys first.
39 Further, it may require publishers to maintain their public keys and certificates by their public key digests instead of names.
40
41- ExtOpt was intended for extending XML-based ccnb format. Since we are now using TLV, ExtOpt is no longer needed.
42
43- Timestamp and FinalBlockID can be useful meta information for applications, but do not need to be processed at the network layer.
44 Therefore, if desired, applications should encode such meta information as part of the content.
45
46
47ContentType
48+++++++++++
49
50.. code-block:: none
51
52 ContentType ::= CONTENT-TYPE-TYPE TLV-LENGTH nonNegativeInteger
53
54Three ContentTypes are currently defined: default (=0), LINK (=1), and KEY (=2). The **default** type of content is a BLOB (=0), which is the actual data bits identified by the data name. The \textbf{LINK} type of content is another name which identifies the actual data content. The ``KEY`` type of content is a public key.
55
56Compared with CCNx, three types, ENCR, GONE, and NACK are removed.
57ENCR means the content is encrypted, and since the network layer should not care whether content is encrypted or not, this type is not needed.
58GONE was a placeholder for implementing cache purging, however the research is yet to be carried out on how to accomplish this goal, if it is feasible to achieve, it is not included in this 0.1 version of NDN specification.
59NACK is used to signal a downstream node that the upstream node is unable to retrieve a matching data. Since the actual NACK mechanism is still under active investigation, we do not include it in this version of specification, but may add it back in a future version.
60
61
62FreshnessPeriod
63+++++++++++++++
64
65.. code-block:: none
66
67 FreshnessPeriod ::= FRESHNESS-PERIOD-TLV TYPE-TLV nonNegativeInteger
68
69The optional FreshnessPeriod indicates how long a node should wait after the arrival of this data before marking it as stale. The encoded value is number of milliseconds. Note that the stale data is still valid data; the expiration of FreshnessPeriod only means that the producer may have produced newer data.
70
71Each content store associates every piece of Data with a staleness bit.
72The initial setting of this bit for newly-arrived content is "not stale". If the Data carries FreshnessPeriod, then after the Data has been residing in the content store for FreshnessPeriod, it will be marked as stale. This is per object staleness and local to the NDN node. Another possible way to set the staleness bit of a local content is for a local client to send a command to the local NDN daemon.
73
74If an Interest contains MustBeFresh TLV, a Data that has the staleness bit set is not eligible to be sent in response to that Interest.
75The effect is the same as if that stale Data did not exist (i.e., the Interest might be matched by some other Data in the store, or, failing that, get forwarded to other nodes).
76If an exact duplicate of a stale Data arrives, the effect is the same as if the stale Data had not been present. In particular, the Data in the store is no longer stale. As a practical matter, a stale Data should be ranked high on the list of things to discard from the store when a storage quota has been reached.
77
78
79Content
80~~~~~~~
81
82.. code-block:: none
83
84 Content ::= CONTENT-TYPE TLV-LENGTH BYTE*
85
86
87Changes from CCNx
88~~~~~~~~~~~~~~~~~
89
90- The structure of Data packet is changed.
91
92- SignedInfo is renamed to MetaInfo and its content is changed.
93
94- PublisherPublicKeyDigest and ExtOpt are removed.
95
96- Timestamp and FinalBlockID are removed.
97
98- KeyLocator is moved to be inside the Signature block.
99
100- Three content types, ENCR, GONE, and NACK are removed.
101
102- FreshnessSeconds is renamed to FreshnessPeriod and is expressed in units of milliseconds.
103