blob: cbd8fd997736967831d1e9f2939e3d987fefc380 [file] [log] [blame]
Junxiao Shi80ee7cb2014-12-14 10:53:05 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -05002/*
3 * Copyright (c) 2014-2018, Regents of the University of California,
Junxiao Shi80ee7cb2014-12-14 10:53:05 -07004 * 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/** \file
27 * \brief allows testing forwarding in a network topology
28 */
29
Davide Pesavento97210d52016-10-14 15:45:48 +020030#ifndef NFD_TESTS_DAEMON_FW_TOPOLOGY_TESTER_HPP
31#define NFD_TESTS_DAEMON_FW_TOPOLOGY_TESTER_HPP
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070032
Junxiao Shi6535f1e2015-10-08 13:02:18 -070033#include "face/internal-transport.hpp"
Junxiao Shicde37ad2015-12-24 01:02:05 -070034#include "face/face.hpp"
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070035#include "fw/strategy.hpp"
Junxiao Shi0e4a1f12016-12-24 02:39:01 +000036#include "choose-strategy.hpp"
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070037#include "tests/test-common.hpp"
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070038
Davide Pesavento97210d52016-10-14 15:45:48 +020039#include <ndn-cxx/face.hpp>
40
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070041namespace nfd {
Spyridon Mastorakisd0381c02015-02-19 10:29:41 -080042namespace fw {
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070043namespace tests {
44
Spyridon Mastorakisd0381c02015-02-19 10:29:41 -080045using namespace nfd::tests;
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070046
47/** \brief identifies a node (forwarder) in the topology
48 */
49typedef size_t TopologyNode;
50
Junxiao Shi6535f1e2015-10-08 13:02:18 -070051/** \brief represents a network link in the topology which connects two or more nodes
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070052 */
Junxiao Shi6535f1e2015-10-08 13:02:18 -070053class TopologyLink : noncopyable
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070054{
55public:
Junxiao Shi6535f1e2015-10-08 13:02:18 -070056 explicit
Teng Liangf995f382017-04-04 22:09:39 +000057 TopologyLink(time::nanoseconds delay);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -070058
59 /** \brief fail the link, cause packets to be dropped silently
60 */
61 void
62 fail()
63 {
64 m_isUp = false;
65 }
66
67 /** \brief recover the link from a failure
68 */
69 void
70 recover()
71 {
72 m_isUp = true;
73 }
74
Teng Liangf995f382017-04-04 22:09:39 +000075 /** \brief block transmission from i to j
76 *
77 * Packets transmitted by i would not be delivered to j. Packets from j to i are unaffected.
78 * This can be used to simulate a wireless channel.
79 */
80 void
81 block(TopologyNode i, TopologyNode j);
82
83 /** \brief unblock transmission from i to j
84 */
85 void
86 unblock(TopologyNode i, TopologyNode j);
87
Hila Ben Abraham39a79be2016-03-30 22:00:55 -070088 /** \brief change the link delay
89 * \param delay link delay, must be positive
90 */
91 void
Teng Liangf995f382017-04-04 22:09:39 +000092 setDelay(time::nanoseconds delay);
Hila Ben Abraham39a79be2016-03-30 22:00:55 -070093
Junxiao Shicde37ad2015-12-24 01:02:05 -070094 /** \brief attach a face to the link
95 * \param i forwarder index
96 * \param face a Face with InternalForwarderTransport
97 */
Junxiao Shi5e5e4452015-09-24 16:56:52 -070098 void
Junxiao Shicde37ad2015-12-24 01:02:05 -070099 addFace(TopologyNode i, shared_ptr<Face> face);
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700100
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700101 /** \return a face of forwarder \p i which is attached to this link
102 */
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700103 Face&
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700104 getFace(TopologyNode i)
105 {
Teng Liangf995f382017-04-04 22:09:39 +0000106 return *m_transports.at(i).face;
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700107 }
108
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700109private:
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700110 void
111 transmit(TopologyNode i, const Block& packet);
112
113 void
114 scheduleReceive(face::InternalTransportBase* recipient, const Block& packet);
115
116private:
117 bool m_isUp;
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700118 time::nanoseconds m_delay;
Teng Liangf995f382017-04-04 22:09:39 +0000119
120 struct NodeTransport
121 {
122 face::InternalTransportBase* transport;
123 shared_ptr<Face> face;
124 std::set<TopologyNode> blockedDestinations;
125 };
126 std::unordered_map<TopologyNode, NodeTransport> m_transports;
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700127};
128
129/** \brief represents a link to a local application
130 */
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700131class TopologyAppLink : noncopyable
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700132{
133public:
Junxiao Shicde37ad2015-12-24 01:02:05 -0700134 /** \brief constructor
135 * \param forwarderFace a Face with InternalForwarderTransport
136 */
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700137 explicit
Junxiao Shicde37ad2015-12-24 01:02:05 -0700138 TopologyAppLink(shared_ptr<Face> forwarderFace);
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700139
140 /** \brief fail the link, cause packets to be dropped silently
141 */
142 void
143 fail();
144
145 /** \brief recover the link from a failure
146 */
147 void
148 recover();
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700149
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700150 /** \return face on forwarder side
151 */
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700152 Face&
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700153 getForwarderFace()
154 {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700155 return *m_face;
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700156 }
157
158 /** \return face on application side
159 */
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700160 ndn::Face&
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700161 getClientFace()
162 {
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700163 return *m_client;
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700164 }
165
166private:
Junxiao Shi6535f1e2015-10-08 13:02:18 -0700167 shared_ptr<Face> m_face;
168 face::InternalForwarderTransport* m_forwarderTransport;
169 shared_ptr<face::InternalClientTransport> m_clientTransport;
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700170 shared_ptr<ndn::Face> m_client;
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700171};
172
Junxiao Shifab9e0d2017-02-02 06:04:59 +0000173/** \brief captured packets on a face
174 */
175class TopologyPcap : noncopyable
176{
177public:
178 std::vector<Interest> sentInterests;
179 std::vector<Data> sentData;
180 std::vector<lp::Nack> sentNacks;
181};
182
183/** \brief captured packet timestamp tag
184 */
185using TopologyPcapTimestamp = ndn::SimpleTag<time::steady_clock::TimePoint, 0>;
186
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700187/** \brief builds a topology for forwarding tests
188 */
189class TopologyTester : noncopyable
190{
191public:
192 /** \brief creates a forwarder
193 * \return index of new forwarder
194 */
195 TopologyNode
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700196 addForwarder(const std::string& label);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700197
198 /** \return forwarder instance \p i
199 */
200 Forwarder&
201 getForwarder(TopologyNode i)
202 {
203 return *m_forwarders.at(i);
204 }
205
206 /** \brief sets strategy on forwarder \p i
Junxiao Shia49a1ab2016-07-15 18:24:36 +0000207 * \tparam S the strategy type
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700208 * \note Test scenario can also access StrategyChoice table directly.
209 */
210 template<typename S>
211 void
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -0500212 setStrategy(TopologyNode i, Name prefix = Name("ndn:/"),
213 Name instanceName = S::getStrategyName())
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700214 {
215 Forwarder& forwarder = this->getForwarder(i);
Ashlesh Gawande92e4ea52017-07-19 11:38:12 -0500216 choose<S>(forwarder, prefix, instanceName);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700217 }
218
219 /** \brief makes a link that interconnects two or more forwarders
Teng Liangf995f382017-04-04 22:09:39 +0000220 * \brief linkType desired link type; LINK_TYPE_NONE to use point-to-point for two forwarders
221 * and multi-access for more than two forwarders; it's an error to specify
222 * point-to-point when there are more than two forwarders
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700223 *
224 * A face is created on each of \p forwarders .
225 * When a packet is sent onto one of the faces on this link,
226 * this packet will be received by all other faces on this link after \p delay .
227 */
228 shared_ptr<TopologyLink>
Teng Liangf995f382017-04-04 22:09:39 +0000229 addLink(const std::string& label, time::nanoseconds delay,
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700230 std::initializer_list<TopologyNode> forwarders,
Teng Liangf995f382017-04-04 22:09:39 +0000231 ndn::nfd::LinkType linkType = ndn::nfd::LINK_TYPE_NONE);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700232
233 /** \brief makes a link to local application
234 */
235 shared_ptr<TopologyAppLink>
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700236 addAppFace(const std::string& label, TopologyNode i);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700237
238 /** \brief makes a link to local application, and register a prefix
239 */
240 shared_ptr<TopologyAppLink>
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700241 addAppFace(const std::string& label, TopologyNode i, const Name& prefix, uint64_t cost = 0);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700242
Junxiao Shifab9e0d2017-02-02 06:04:59 +0000243 /** \brief enables packet capture on every forwarder face
244 */
245 void
246 enablePcap(bool isEnabled = true);
247
248 /** \return captured packets on a forwarder face
249 * \pre enablePcap(true) is in effect when the face was created
250 */
251 TopologyPcap&
252 getPcap(const Face& face);
253
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700254 /** \brief registers a prefix on a forwarder face
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700255 */
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700256 void
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700257 registerPrefix(TopologyNode i, const Face& face, const Name& prefix, uint64_t cost = 0);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700258
259 /** \brief creates a producer application that answers every Interest with Data of same Name
260 */
261 void
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700262 addEchoProducer(ndn::Face& face, const Name& prefix = "/");
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700263
264 /** \brief creates a consumer application that sends \p n Interests under \p prefix
265 * at \p interval fixed rate.
Teng Liangf995f382017-04-04 22:09:39 +0000266 * \param seq if non-negative, append sequence number instead of timestamp
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700267 */
268 void
Teng Liangf995f382017-04-04 22:09:39 +0000269 addIntervalConsumer(ndn::Face& face, const Name& prefix, time::nanoseconds interval,
270 size_t n, int seq = -1);
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700271
272private:
Junxiao Shifab9e0d2017-02-02 06:04:59 +0000273 bool m_wantPcap = false;
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700274 std::vector<unique_ptr<Forwarder>> m_forwarders;
Junxiao Shi5e5e4452015-09-24 16:56:52 -0700275 std::vector<std::string> m_forwarderLabels;
276 std::vector<shared_ptr<TopologyLink>> m_links;
277 std::vector<shared_ptr<TopologyAppLink>> m_appLinks;
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700278};
279
280} // namespace tests
Spyridon Mastorakisd0381c02015-02-19 10:29:41 -0800281} // namespace fw
Junxiao Shi80ee7cb2014-12-14 10:53:05 -0700282} // namespace nfd
283
Davide Pesavento97210d52016-10-14 15:45:48 +0200284#endif // NFD_TESTS_DAEMON_FW_TOPOLOGY_TESTER_HPP