blob: ed4772544cb15bfceba7774d84207849815acbd1 [file] [log] [blame]
Junxiao Shifef73e42016-03-29 14:15:05 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2016, Regents of the University of California,
4 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#ifndef NFD_DAEMON_FW_PIT_ALGORITHM_HPP
27#define NFD_DAEMON_FW_PIT_ALGORITHM_HPP
28
29#include "table/pit-entry.hpp"
30
31/** \file
32 * This file contains algorithms that operate on a PIT entry.
33 */
34
35namespace nfd {
Junxiao Shifef73e42016-03-29 14:15:05 -070036
37/** \brief contain Name prefix that affects namespace-based scope control
38 * \sa http://redmine.named-data.net/projects/nfd/wiki/ScopeControl
39 */
40namespace scope_prefix {
41
42/** \brief ndn:/localhost
43 *
44 * The localhost scope limits propagation to the applications on the originating host.
45 *
46 * Interest and Data packets under prefix ndn:/localhost are restricted by these rules:
47 * \li Interest can come from and go to local faces only.
48 * \li Data can come from and go to local faces only.
49 */
50extern const Name LOCALHOST;
51
52/** \brief ndn:/localhop
53 *
54 * The localhop scope limits propagation to no further than the next node.
55 *
56 * Interest packets under prefix ndn:/localhop are restricted by these rules:
57 * \li Interest can come from a local face or a non-local face.
58 * \li If PIT entry has at least one in-record from a local face,
59 * it can be forwarded to local faces and non-local faces.
60 * \li If PIT entry has all in-records from non-local faces,
61 * it can only be forwarded to local faces.
62 * \li PIT entry can be satisfied by Data from any source.
63 *
64 * Data packets under prefix ndn:/localhop are unrestricted.
65 */
66extern const Name LOCALHOP;
67
68} // namespace scope_prefix
69
Junxiao Shif3410d82016-04-05 13:49:44 -070070namespace fw {
71
Junxiao Shifef73e42016-03-29 14:15:05 -070072/** \brief determine whether forwarding the Interest in \p pitEntry to \p outFace would violate scope
73 * \sa http://redmine.named-data.net/projects/nfd/wiki/ScopeControl
74 */
75bool
76violatesScope(const pit::Entry& pitEntry, const Face& outFace);
77
78/** \brief decide whether Interest can be forwarded to face
79 *
80 * \return true if out-record of this face does not exist or has expired,
81 * and there is an in-record not of this face,
82 * and scope is not violated
83 *
84 * \note This algorithm has a weakness that it does not permit consumer retransmissions
85 * before out-record expires. Therefore, it's not recommended to use this function
86 * in new strategies.
87 * \todo find a better name for this function
88 */
89bool
90canForwardToLegacy(const pit::Entry& pitEntry, const Face& face);
91
92/** \brief indicates where duplicate Nonces are found
93 */
94enum DuplicateNonceWhere {
95 DUPLICATE_NONCE_NONE = 0, ///< no duplicate Nonce is found
96 DUPLICATE_NONCE_IN_SAME = (1 << 0), ///< in-record of same face
97 DUPLICATE_NONCE_IN_OTHER = (1 << 1), ///< in-record of other face
98 DUPLICATE_NONCE_OUT_SAME = (1 << 2), ///< out-record of same face
99 DUPLICATE_NONCE_OUT_OTHER = (1 << 3) ///< out-record of other face
100};
101
102/** \brief determine whether \p pitEntry has duplicate Nonce \p nonce
103 * \return OR'ed DuplicateNonceWhere
104 */
105int
106findDuplicateNonce(const pit::Entry& pitEntry, uint32_t nonce, const Face& face);
107
108/** \brief determine whether \p pitEntry has any pending out-records
Junxiao Shi8744c972016-04-06 10:33:46 -0700109 * \return true if there is at least one out-record waiting for Data
Junxiao Shifef73e42016-03-29 14:15:05 -0700110 */
111bool
112hasPendingOutRecords(const pit::Entry& pitEntry);
113
114} // namespace fw
115} // namespace nfd
116
117#endif // NFD_DAEMON_FW_PIT_ALGORITHM_HPP