blob: f561988fee5726bbc76c721797c66c1cd9a6c457 [file] [log] [blame]
Alexander Afanasyev40ee3812014-07-01 00:25:21 -07001.. _NFD Release Notes:
Beichuan Zhang55b8ed42014-04-26 22:25:44 -07002
Alexander Afanasyev40ee3812014-07-01 00:25:21 -07003NFD Release Notes
4=================
Beichuan Zhang55b8ed42014-04-26 22:25:44 -07005
Alexander Afanasyeved808ab2015-05-11 14:35:05 -07006NFD version 0.3.2 (changes since version 0.3.1)
7+++++++++++++++++++++++++++++++++++++++++++++++
8
9Release date: May 12, 2015
10
11New features:
12^^^^^^^^^^^^^
13
14- **Tables**
15
16 * Change lookup API to allow async implementations of ContentStore (:issue:`2411`)
17
18- **Management**
19
20 * Perform FIB updates before modifying RIB (:issue:`1941`)
21
22Updates and bug fixes:
23^^^^^^^^^^^^^^^^^^^^^^
24
25- **Documentation**
26
27 * Update planned Features: face enhancements (:issue:`2617`)
28
29 * Updated NFD's developer guide to reflect new changes and adding a new section on
30 NFD/ndn-cxx unit testing
31
32- **Face**
33
34 * Refactor channel acceptors to avoid use of shared pointers (:issue:`2613`)
35
36 * Refactor code to avoid deprecated `Block::fromBuffer` overloads (:issue:`2553`)
37
38 * Refactor code to use move semantics for sockets where possible (:issue:`2613`)
39
40 * Switch to non-throwing version of websocketpp APIs (:issue:`2630`)
41
42- **Forwarding**
43
44 * Extend measurements lifetime in AccessStrategy (:issue:`2452`)
45
46- **Management**
47
48 * Stop removed namespace from inheriting ancestor route (:issue:`2757`)
49
50 * Fix TestFibUpdates/EraseFace on Ubuntu 14.04 32-bit (:issue:`2697`)
51
52- **Tools**
53
54 * Fix hanging of `nfdc` on wrong input (:issue:`2690`)
55
56- **Build**
57
58 * Make build scripts compatible with Python 3 (:issue:`2625`)
59
60 * Get rid of the last use of ndn::dns in NFD (:issue:`2422`)
61
62 * Update waf build system to version 1.8.9 (:issue:`2209`, :issue:`2657`, :issue:`2792`)
63
64 * Tweak default pkg-config search paths (:issue:`2711`)
65
66 * Use C version of snprintf (:issue:`2299`)
67
68 * Emulate `std::to_string` when it is missing (:issue:`2299`)
69
70 * Fix several "defined but not used" warnings with gcc-5 (:issue:`2767`)
71
72****************************************************************************
73
Alexander Afanasyev58ad5d42015-03-01 14:04:21 -080074NFD version 0.3.1 (changes since version 0.3.0)
75-----------------------------------------------
76
77Release date: March 3, 2015
78
79New features:
80^^^^^^^^^^^^^
81
82- ``nfd`` and ``nrd`` daemons are now merged into a single process using separate threads
83 (:issue:`2489`)
84
85- **Core**
86
87 - Extend ConfigFile to support passing a parsed ConfigSection (:issue:`2495`)
88
89 - Allow customization of Logger and LoggerFactory (:issue:`2433`)
90
91 - Make global io_service, scheduler, and global random generator thread-local, and logger
92 thread-safe (:issue:`2489`)
93
94- **Forwarding**
95
96 - Introduce exponential back-off interest retransmission suppression mechanism and enable
97 its use in the best-route strategy (:issue:`1913`)
98
99 - Strategies are now registered with a macro, making it simpler to introduce new strategies
100 to NFD codebase (:issue:`2410`)
101
102- **Tables**
103
104 - ContentStore now recognizes CachingPolicy-NoCache from LocalControlHeader (:issue:`2185`)
105
106Updates and bug fixes:
107^^^^^^^^^^^^^^^^^^^^^^
108
109- **Faces**
110
111 - Remove Tcp|UdpChannel::connect overloads that perform DNS resolution (:issue:`2422`)
112
113 - Properly handle error conditions in UdpChannel::newPeer (:issue:`2516`)
114
115 - Fix inconsistency of UDP face timeouts in sample `nfd.conf` and actual defaults
116 (:issue:`2473`)
117
118 - Introduce Face-specific logging macros (:issue:`2450`)
119
120 - Refactor handling of LinkType face trait and fix FaceStatus reporting: the link type was
121 not properly propagated (:issue:`2563`)
122
123 - Avoid exceptions in NDNLP PartialMessageStore (:issue:`2261`)
124
125 - Update websocketpp to version 0.5.1
126
127- **Tables**
128
129 - Reduce priority of DeadNonceList log messages from DEBUG to TRACE
130
131- **Management**
132
133 - Change register/unregister logging in RibManager to INFO level (:issue:`2547`)
134
135- **Tools**
136
137 - Change prefix for :ref:`the local hub prefix discovery <local-prefix-discovery>` to be
138 under ``/localhop/nfd`` (:issue:`2479`, :issue:`2512`)
139
140- **Tests**
141
142 - Change naming conventions for unit test files and test suite names (:issue:`2497`)
143
144 - Fix segfault in TableNameTree test suite when all test logs are enabled (:issue:`2564`)
145
146****************************************************************************
147
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800148NFD version 0.3.0 (changes since version 0.2.0)
149-----------------------------------------------
150
151Release date: February 2, 2015
152
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800153New features:
154^^^^^^^^^^^^^
155
156- **Build**
157
158 + The code now requires C++11. The minimum supported gcc version is 4.6, as earlier versions
159 do not have proper support for C++11 features.
160
161- **Faces**
162
163 + Enable detection of WebSocket connection failures using ping/pong messages (:issue:`1903`)
164
165 + In EthernetFace:
166
167 * Avoid putting the NIC in promiscuous mode if possible (:issue:`1278`)
168
169 * Report packets dropped by the kernel if debug is enabled (:issue:`2441`)
170
171 * Integrate NDNLP fragmentation (:issue:`1209`)
172
173- **Forwarding**
174
175 + Strategy versioning (:issue:`1893`)
176
177 + New Dead Nonce List table to supplement PIT for loop detection (:issue:`1953`)
178
179 + Abstract retransmission suppression logic (:issue:`2377`)
180
181 + New forwarding strategy for access router (:issue:`1999`)
182
183- **Management**
184
185 + Add config file-based strategy selection (:issue:`2053`)
186
187 The sample config file now includes strategy selection for ``/``, ``/localhost``,
188 ``/localhost/nfd``, and ``/ndn/broadcast`` namespaces as follows:
189
190 ::
191
192 tables
193 {
194 ...
195 strategy_choice
196 {
197 / /localhost/nfd/strategy/best-route
198 /localhost /localhost/nfd/strategy/broadcast
199 /localhost/nfd /localhost/nfd/strategy/best-route
200 /ndn/broadcast /localhost/nfd/strategy/broadcast
201 }
202 }
203
204 + Implement Query Operation in FaceManager (:issue:`1993`)
205
206 + FaceManager now responds with producer-generated NACK when query is invalid (:issue:`1993`)
207
208 + Add functionality for automatic remote prefix registration (:issue:`2056`)
209
210 + Only canonical FaceUri are allowed in faces/create commands (:issue:`1910`)
211
212- **Tables**
213
214 + StrategyInfoHost can now store multiple StrategyInfo of distinct types (:issue:`2240`)
215
216 + Enable iteration over PIT and CS entries (:issue:`2339`)
217
218 + Allow predicate to be specified in Measurements::findLongestPrefixMatch (:issue:`2314`)
219
220 + Calculate the implicit digest of Data packets in CS only when necessary (:issue:`1706`)
221
222- **Tools**
223
224 + Publish ``/localhop/ndn-autoconf/routable-prefixes`` from ``ndn-autoconfig-server``
225 (:issue:`1954`)
226
227 + Display detailed NFD software verion in ``nfd-status-http-server`` and ``nfd-status``
228 (:issue:`1916`)
229
230 + ``nfdc`` now accepts FaceUri in all commands (:issue:`1995`)
231
232 + Add daemon mode for ``ndn-autoconfig`` to re-run detection when connectivity changes
233 (:issue:`2417`)
234
235- **Core**
236
237 + New scheduler::ScopedEventId class to automatically handle scheduled event lifetime
238 (:issue:`2295`)
239
240Updates and bug fixes:
241^^^^^^^^^^^^^^^^^^^^^^
242
243- **Documentation**
244
245 + NFD Developer's guide has been updated to reflect changes in the codebase
246
247 + Installation instruction updates
248
249 + Update of config file instructions for disabling unix sockets (:issue:`2190`)
250
251- **Core**
252
253 + Use implementations moved to ndn-cxx library
254
255 + Use Signal from ndn-cxx (:issue:`2272`, :issue:`2300`)
256
257 + use ethernet::Address from ndn-cxx (:issue:`2142`)
258
259 + Use MAX_NDN_PACKET_SIZE constant from ndn-cxx (:issue:`2099`)
260
261 + Use DEFAULT_INTEREST_LIFETIME from ndn-cxx (:issue:`2202`)
262
263 + Use FaceUri from ndn-cxx (:issue:`2143`)
264
265 + Use DummyClientFace from ndn-cxx (:issue:`2186`)
266
267 + Use ndn::dns from ndn-cxx (:issue:`2207`)
268
269 + Move Network class implementation from ``tools/`` to ``core/``
270
271 + Ignore non-Ethernet ``AF_LINK`` addresses when enumerating NICs on OSX and other BSD systems
272
273 + Fix bug on not properly setting FreshnessPeriod inside SegmentPublisher (:issue:`2438`)
274
275- **Faces**
276
277 + Fix spurious assertion failure in StreamFace (:issue:`1856`)
278
279 + Update websocketpp submodule (:issue:`1903`)
280
281 + Replace FaceFlags with individual fields (:issue:`1992`)
282
283 + Drop WebSocket message if the size is larger than maximum NDN packet size (:issue:`2081`)
284
285 + Make EthernetFace more robust against errors (:issue:`1984`)
286
287 + Prevent potential infinite loop in TcpFactory and UdpFactory (:issue:`2292`)
288
289 + Prevent crashes when attempting to create a UdpFace over a half-working connection
290 (:issue:`2311`)
291
292 + Support MTU larger than 1500 in EthernetFace (for jumbo frames) (:issue:`2305`)
293
294 + Re-enable EthernetFace on OS X platform with boost >=1.57.0 (:issue:`1922`)
295
296 + Fix ``ioctl()`` calls on platforms where libpcap uses ``/dev/bpf*`` (:issue:`2327`)
297
298 + Fix overhead estimation in NDNLP slicer (:issue:`2317`)
299
300 + Replace usage of deprecated EventEmitter with Signal in Face abstractions (:issue:`2300`)
301
302 + Fix NDNLP PartialMessage cleanup scheduling (:issue:`2414`)
303
304 + Remove unnecessary use of DNS resolver in (Udp|Tcp|WebSocket)Factory (:issue:`2422`)
305
306- **Forwarding**
307
308 + Updates related to NccStrategy
309
310 * Fix to prevent remembering of suboptimal upstreams (:issue:`1961`)
311
312 * Optimizing FwNccStrategy/FavorRespondingUpstream test case (:issue:`2037`)
313
314 * Proper detection for new PIT entry (:issue:`1971`)
315
316 * Use UnitTestTimeFixture in NCC test case (:issue:`2163`)
317
318 * Fix loop back to sole downstream (:issue:`1998`)
319
320 + Updates related to BestRoute strategy
321
322 + Redesign best-route v2 strategy test case (:issue:`2126`)
323
324 + Fix clang compilation error in best-route v2 test case (:issue:`2179`)
325
326 + Use UnitTestClock in BestRouteStrategy2 test (:issue:`2160`)
327
328 + Allow strategies limited access to FaceTable (:issue:`2272`)
329
330- **Tables**
331
332 + Ensure that eviction of unsolicited Data is done in FIFO order (:issue:`2043`)
333
334 + Simplify table implementations with C++11 features (:issue:`2100`)
335
336 + Fix issue with Fib::removeNextHopFromAllEntries invalidating NameTree iterator
337 (:issue:`2177`)
338
339 + Replace deprecated EventEmitter with Signal in FaceTable (:issue:`2272`)
340
341 + Refactored implementation of ContentStore based on std::set (:issue:`2254`)
342
343- **Management**
344
345 + Allow omitted FaceId in faces/create command (:issue:`2031`)
346
347 + Avoid deprecated ``ndn::nfd::Controller(Face&)`` constructor (:issue:`2039`)
348
349 + Enable check of command length before accessing verb (:issue:`2151`)
350
351 + Rename FaceEntry to Route (:issue:`2159`)
352
353 + Insert RIB command prefixes into RIB (:issue:`2312`)
354
355- **Tools**
356
357 + Display face attribute fields instead of FaceFlags in ``nfd-status`` and
358 ``nfd-status-http-server`` output (:issue:`1991`)
359
360 + Fix ``nfd-status-http-server`` hanging when nfd-status output is >64k (:issue:`2121`)
361
362 + Ensure that ``ndn-autoconfig`` canonizes FaceUri before sending commands to NFD
363 (:issue:`2387`)
364
365 + Refactored ndn-autoconfig implementation (:issue:`2421`)
366
367 + ndn-autoconfig will now register also ``/localhop/nfd`` prefix towards the hub (:issue:`2416`)
368
369- **Tests**
370
371 + Use UnitTestClock in Forwarder persistent loop test case (:issue:`2162`)
372
373 + Use LimitedIo in FwForwarder/SimpleExchange test case (:issue:`2161`)
374
375- **Build**
376
377 + Fix build error with python3 (:issue:`1302`)
378
379 + Embed CI build and test running script
380
381 + Properly disable assertions in release builds (:issue:`2139`)
382
383 + Embed setting of ``PKG_CONFIG_PATH`` variable to commonly used values (:issue:`2178`)
384
385 + Add conditional compilation for NetworkInterface and PrivilegeHelper
386
387 + Support tools with multiple translation units (:issue:`2344`)
388
389Removals
390^^^^^^^^
391
392- Remove ``listen`` option from unix channel configuration (:issue:`2188`)
393
394- Remove usage of deprecated ``MetaInfo::TYPE_*`` constants (:issue:`2128`)
395
396- Eliminate MapValueIterator in favor of ``boost::adaptors::map_values``
397
398****************************************************************************
399
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700400NFD version 0.2.0 (changes since version 0.1.0)
401-----------------------------------------------
402
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700403Release date: August 25, 2014
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700404
405- **Documentation**
406
407 + `"NFD Developer's Guide" by NFD authors
408 <http://named-data.net/wp-content/uploads/2014/07/NFD-developer-guide.pdf>`_ that
409 explains NFD's internals including the overall design, major modules, their
410 implementation, and their interactions
411
412 + New detailed instructions on how to enable auto-start of NFD using OSX ``launchd``
413 and Ubuntu's ``upstart`` (see `contrib/ folder
414 <https://github.com/named-data/NFD/tree/master/contrib>`_)
415
416- **Core**
417
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800418 + Add support for temporary privilege drop and elevation (:issue:`1370`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700419
420 + Add support to reinitialize multicast Faces and (partially) reload config file
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800421 (:issue:`1584`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700422
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800423 + Randomization routines are now uniform across all NFD modules (:issue:`1369`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700424
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800425 + Enable use of new NDN naming conventions (:issue:`1837` and :issue:`1838`)
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700426
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700427- **Faces**
428
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800429 + `WebSocket <http://tools.ietf.org/html/rfc6455>`_ Face support (:issue:`1468`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700430
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800431 + Fix Ethernet Face support on Linux with ``libpcap`` version >=1.5.0 (:issue:`1511`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700432
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800433 + Fix to recognize IPv4-mapped IPv6 addresses in ``FaceUri`` (:issue:`1635`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700434
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800435 + Fix to avoid multiple onFail events (:issue:`1497`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700436
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800437 + Fix broken support of multicast UDP Faces on OSX (:issue:`1668`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700438
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800439 + On Linux, path MTU discovery on unicast UDPv4 faces is now disabled (:issue:`1651`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700440
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800441 + Added link layer byte counts in FaceCounters (:issue:`1729`)
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700442
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800443 + Face IDs 0-255 are now reserved for internal NFD use (:issue:`1620`)
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700444
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800445 + Serialized StreamFace::send(Interest|Data) operations using queue (:issue:`1777`)
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700446
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700447- **Forwarding**
448
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800449 + Outgoing Interest pipeline now allows strategies to request a fresh ``Nonce`` (e.g., when
450 the strategy needs to re-express the Interest) (:issue:`1596`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700451
452 + Fix in the incoming Data pipeline to avoid sending packets to the incoming Face
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800453 (:issue:`1556`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700454
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800455 + New ``RttEstimator`` class that implements the Mean-Deviation RTT estimator to be used in
456 forwarding strategies
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700457
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800458 + Fix memory leak caused by not removing PIT entry when Interest matches CS (:issue:`1882`)
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700459
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800460 + Fix spurious assertion in NCC strategy (:issue:`1853`)
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700461
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700462- **Tables**
463
464 + Fix in ContentStore to properly adjust internal structure when ``Cs::setLimit`` is called
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800465 (:issue:`1646`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700466
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800467 + New option in configuration file to set an upper bound on ContentStore size (:issue:`1623`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700468
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800469 + Fix to prevent infinite lifetime of Measurement entries (:issue:`1665`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700470
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800471 + Introducing capacity limit in PIT NonceList (:issue:`1770`)
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700472
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800473 + Fix memory leak in NameTree (:issue:`1803`)
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700474
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800475 + Fix segfault during Fib::removeNextHopFromAllEntries (:issue:`1816`)
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700476
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700477- **Management**
478
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800479 + RibManager now fully support ``CHILD_INHERIT`` and ``CAPTURE`` flags (:issue:`1325`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700480
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800481 + Fix in ``FaceManager`` to respond with canonical form of Face URI for Face creation command
482 (:issue:`1619`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700483
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800484 + Fix to prevent creation of duplicate TCP/UDP Faces due to async calls (:issue:`1680`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700485
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800486 + Fix to properly handle optional ExpirationPeriod in RibRegister command (:issue:`1772`)
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700487
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800488 + Added functionality of publishing RIB status (RIB dataset) by RibManager (:issue:`1662`)
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700489
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800490 + Fix issue of not properly canceling route expiration during processing of ``unregister``
491 command (:issue:`1902`)
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700492
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800493 + Enable periodic clean up of route entries that refer to non-existing faces (:issue:`1875`)
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700494
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700495- **Tools**
496
497 + Extended functionality of ``nfd-status``
498
499 * ``-x`` to output in XML format, see :ref:`nfd-status xml schema`
500 * ``-c`` to retrieve channel status information (enabled by default)
501 * ``-s`` to retrieve configured strategy choice for NDN namespaces (enabled by default)
502 * Face status now includes reporting of Face flags (``local`` and ``on-demand``)
503 * On-demand UDP Faces now report remaining lifetime (``expirationPeriod``)
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700504 * ``-r`` to retrieve RIB information
505
506 + Improved ``nfd-status-http-server``
507
508 * HTTP server now presents status as XSL-formatted XML page
509 * XML dataset and formatted page now include certificate name of the corresponding NFD
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800510 (:issue:`1807`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700511
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800512 + Several fixes in ``ndn-autoconfig`` tool (:issue:`1595`)
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700513
514 + Extended options in ``nfdc``:
515
516 * ``-e`` to set expiration time for registered routes
517 * ``-o`` to specify origin for registration and unregistration commands
518
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700519 + Enable ``all-faces-prefix'' option in ``nfd-autoreg`` to register prefix for all face
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800520 (on-demand and non-on-demand) (:issue:`1861`)
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700521
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800522 + Enable processing auto-registration in ``nfd-autoreg`` for faces that existed prior to
523 start of the tool (:issue:`1863`)
Alexander Afanasyev186c3162014-07-29 08:59:49 -0700524
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700525- **Build**
526
527 + Enable support of precompiled headers for clang and gcc to speed up compilation
528
529- `Other small fixes and extensions
530 <https://github.com/named-data/NFD/compare/NFD-0.1.0...master>`_
531
Alexander Afanasyev7c10b3b2015-01-20 12:24:27 -0800532****************************************************************************
533
Alexander Afanasyev40ee3812014-07-01 00:25:21 -0700534NFD version 0.1.0
535-----------------
536
537Release date: May 7, 2014
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700538
539This is an incomplete list of features that are implemented in NFD version 0.1.0.
540
Alexander Afanasyev26181532014-05-07 23:38:51 -0700541- **Packet Format**
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700542
543 + `NDN-TLV <http://named-data.net/doc/ndn-tlv/>`_
544 + LocalControlHeader, to allow apps to set outgoing face and learn incoming face.
545
Alexander Afanasyev26181532014-05-07 23:38:51 -0700546- **Faces**
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700547
548 + Unix stream socket
549 + UDP unicast
550 + UDP multicast
551 + TCP
552 + Ethernet, currently without fragmentation.
553
554 .. note::
555 Ethernet support will not work properly on Linux kernels with TPACKET_V3 flexible
556 buffer implementation (>= 3.2.0) and libpcap >= 1.5.0 (e.g., Ubuntu Linux 14.04).
557 Refer to `Issue 1551 <http://redmine.named-data.net/issues/1511>`_ for more
558 detail and implementation progress.
559
Alexander Afanasyev26181532014-05-07 23:38:51 -0700560- **Management**
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700561
562 + Use of signed Interests as commands, with authentication and authorization.
563 + Face management
564 + FIB management
565 + Per-namespace strategy selection
566 + NFD status publishing
567 + Notification to authorized apps of internal events, including Face creation and destruction.
568
Alexander Afanasyev26181532014-05-07 23:38:51 -0700569- **Tables and forwarding pipelines** support most Interest/Data processing, including
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700570 selectors.
571
Alexander Afanasyev26181532014-05-07 23:38:51 -0700572- **RIB Management** that runs as a separate process, ``nrd``. It supports basic prefix
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700573 registration by applications, but no flags yet.
574
Alexander Afanasyev26181532014-05-07 23:38:51 -0700575- **Strategies**
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700576
577 + ``broadcast``
578 + ``best-route``
579 + ``ncc``: based on ccnx 0.7 for experimentation
580 + ``client-control``: authorized application can directly control Interest forwarding
581
Alexander Afanasyev26181532014-05-07 23:38:51 -0700582- **Name-based scoping**
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700583
584 + ``/localhost``: communication only within localhost using "local" Faces
585 (UnixStreamFace, LocalTcpFace). NFD will strictly enforce this scope for Interests
586 and Data packets
587 + ``/localhop``: one-hop communication (e.g., if at least one incoming or outgoing Face
588 in PIT entry is non-local, the Interest cannot be forwarded to any non-local Face)
589
Alexander Afanasyev26181532014-05-07 23:38:51 -0700590- **Support configuration file**, which is in the Boost INFO format.
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700591
Alexander Afanasyev26181532014-05-07 23:38:51 -0700592- **Applications**
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700593
594 + Tools to discover hubs on NDN testbed.
595 + peek/poke and traffic generators for testing and debugging.
596 + ``nfdc``, a command-line tool to configure NFD.
597 + ``nfd-status``, a command-line tool to query NFD status.
598 + ``nfd-status-http-server``, which reads the NFD status and publishes over HTTP.
599
600
601Planned Functions and Features for Next Releases
602------------------------------------------------
603
604- NACK
605 A packet sent back by a producer or a router to signal the unavailability of a requested
606 Data packet. The protocol specification for NACK is in progress.
607
608- New strategies
609 Additional strategies, including self-learning that populates the FIB by observing
610 Interest and Data exchange.
611
Alexander Afanasyev26181532014-05-07 23:38:51 -0700612- Hop-by-hop Interest limit mechanism
613 For congestion control
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700614
615- Face enhancements
Junxiao Shie8f42462015-04-06 21:37:28 -0700616 Add faces for new underlying protocols such as WiFi direct.
617 Introduce the concept of "permanent faces" that can survive socket errors.
618 Design a new hop-by-hop header that supports fragmentation, reliability improvement, etc.
Beichuan Zhang55b8ed42014-04-26 22:25:44 -0700619
620- Tables
621 Experiment and evaluate different data structures and algorithms.
622
623- RIB management
624 Move to more scalable data structures and support all flags in prefix registrations.
625
626- Tunnel management
627 For hub nodes to authenticate incoming tunnel requests and maintain the tunnels.
628
629- Extensible name-based scoping
Alexander Afanasyev26181532014-05-07 23:38:51 -0700630 Configurable organization-based scoping