blob: e5169af646214efeccc1809d899cad268fc1e32e [file] [log] [blame]
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2011-2015 Regents of the University of California.
Alexander Afanasyev7112f482011-08-17 14:05:57 -07004 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08005 * This file is part of ndnSIM. See AUTHORS for complete list of ndnSIM authors and
6 * contributors.
Alexander Afanasyev7112f482011-08-17 14:05:57 -07007 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -08008 * ndnSIM is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation,
10 * either version 3 of the License, or (at your option) any later version.
Alexander Afanasyev7112f482011-08-17 14:05:57 -070011 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -080012 * ndnSIM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
Alexander Afanasyev7112f482011-08-17 14:05:57 -070015 *
Alexander Afanasyev60a7b622014-12-20 17:04:07 -080016 * You should have received a copy of the GNU General Public License along with
17 * ndnSIM, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 **/
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070019
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070020#ifndef NDN_L3_PROTOCOL_H
21#define NDN_L3_PROTOCOL_H
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070022
Spyridon Mastorakis53e922f2014-10-17 17:29:26 -070023#include "ns3/ndnSIM/model/ndn-common.hpp"
24
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070025#include <list>
26#include <vector>
Alexander Afanasyev4975f732011-12-20 17:52:19 -080027
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070028#include "ns3/ptr.h"
29#include "ns3/net-device.h"
Ilya Moiseenkod83eb0d2011-11-16 15:23:46 -080030#include "ns3/nstime.h"
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -080031#include "ns3/traced-callback.h"
32
Alexander Afanasyevdde1e812015-01-06 14:26:09 -080033#include <boost/property_tree/ptree_fwd.hpp>
34
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -080035namespace nfd {
36class Forwarder;
37class FibManager;
38class StrategyChoiceManager;
Alexander Afanasyevdde1e812015-01-06 14:26:09 -080039typedef boost::property_tree::ptree ConfigSection;
Alexander Afanasyevdc6fae82015-01-08 21:44:15 -080040namespace pit {
41class Entry;
42} // namespace pit
spirosmastorakis34eed982016-11-02 15:20:50 -070043namespace cs {
44class Policy;
45} // namespace cs
Alexander Afanasyevdc3c3a32019-02-17 20:17:32 -050046namespace rib {
47class Service;
48}
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -080049} // namespace nfd
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070050
51namespace ns3 {
52
53class Packet;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070054class Node;
Alexander Afanasyevc74a6022011-08-15 20:01:35 -070055class Header;
Ilya Moiseenko172763c2011-10-28 13:21:53 -070056
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070057namespace ndn {
58
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070059/**
60 * \defgroup ndn ndnSIM: NDN simulation module
61 *
Alexander Afanasyevb989b122013-07-10 17:15:46 -070062 * This is a modular implementation of NDN protocol for NS-3
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070063 */
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070064/**
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070065 * \ingroup ndn
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070066 * \brief Implementation network-layer of NDN stack
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070067 *
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070068 * This class defines the API to manipulate the following aspects of
69 * the NDN stack implementation:
70 * -# register a face (Face-derived object) for use by the NDN
71 * layer
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080072 *
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070073 * Each Face-derived object has conceptually a single NDN
74 * interface associated with it.
75 *
76 * In addition, this class defines NDN packet coding constants
77 *
78 * \see Face, ForwardingStrategy
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070079 */
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -080080class L3Protocol : boost::noncopyable, public Object {
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070081public:
Alexander Afanasyev7112f482011-08-17 14:05:57 -070082 /**
83 * \brief Interface ID
84 *
85 * \return interface ID
86 */
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -080087 static TypeId
88 GetTypeId();
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070089
Alexander Afanasyev016a5d82013-07-15 10:41:29 -070090 static const uint16_t ETHERNET_FRAME_TYPE; ///< @brief Ethernet Frame Type of Ndn
91 static const uint16_t IP_STACK_PORT; ///< @brief TCP/UDP port for NDN stack
92 // static const uint16_t IP_PROTOCOL_TYPE; ///< \brief IP protocol type of NDN
Alexander Afanasyev7112f482011-08-17 14:05:57 -070093
94 /**
95 * \brief Default constructor. Creates an empty stack without forwarding strategy set
96 */
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070097 L3Protocol();
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070098
Spyridon Mastorakis8fde22b2015-08-19 23:12:44 -070099 virtual ~L3Protocol();
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800100
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700101 /**
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -0800102 * \brief Get smart pointer to nfd::Forwarder installed on the node
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700103 */
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -0800104 shared_ptr<nfd::Forwarder>
105 getForwarder();
Alexander Afanasyevaebf5cf2012-08-28 17:32:17 -0700106
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700107 /**
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -0800108 * \brief Get smart pointer to nfd::FibManager, used by node's NFD
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700109 */
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -0800110 shared_ptr<nfd::FibManager>
111 getFibManager();
112
113 /**
Alexander Afanasyevdc3c3a32019-02-17 20:17:32 -0500114 * \brief Get nfd::StrategyChoiceManager, used by node's NFD
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -0800115 */
Alexander Afanasyevdc3c3a32019-02-17 20:17:32 -0500116 nfd::StrategyChoiceManager&
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -0800117 getStrategyChoiceManager();
118
Alexander Afanasyevdc3c3a32019-02-17 20:17:32 -0500119 ::nfd::rib::Service&
120 getRibService();
121
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -0800122 /**
123 * \brief Add face to NDN stack
124 *
125 * \param face smart pointer to Face-derived object (AppFace, NetDeviceFace)
126 * \return nfd::FaceId
127 *
128 * \see AppFace, NetDeviceFace
129 */
130 nfd::FaceId
131 addFace(shared_ptr<Face> face);
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800132
Alexander Afanasyevaebf5cf2012-08-28 17:32:17 -0700133 /**
134 * \brief Get face by face ID
135 * \param face The face ID number
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -0800136 * \returns The Face associated with the Ndn face number.
Alexander Afanasyevaebf5cf2012-08-28 17:32:17 -0700137 */
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -0800138 shared_ptr<Face>
139 getFaceById(nfd::FaceId face) const;
Alexander Afanasyev7112f482011-08-17 14:05:57 -0700140
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -0800141 // /**
142 // * \brief Remove face from ndn stack (remove callbacks)
143 // */
144 // virtual void
145 // removeFace(shared_ptr<Face> face);
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800146
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700147 /**
148 * \brief Get face for NetDevice
149 */
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -0800150 shared_ptr<Face>
151 getFaceByNetDevice(Ptr<NetDevice> netDevice) const;
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700152
Alexander Afanasyevdde1e812015-01-06 14:26:09 -0800153 /**
154 * \brief Get NFD config (boost::property_tree)
155 */
156 nfd::ConfigSection&
157 getConfig();
158
Alexander Afanasyevca3c67e2016-09-08 15:48:23 -0700159 /**
160 * \brief Inject interest through internal Face
161 */
162 void
163 injectInterest(const Interest& interest);
164
spirosmastorakis34eed982016-11-02 15:20:50 -0700165 typedef std::function<std::unique_ptr<nfd::cs::Policy>()> PolicyCreationCallback;
166
167 /**
168 * \brief Set the replacement policy of NFD's CS
169 */
170 void
171 setCsReplacementPolicy(const PolicyCreationCallback& policy);
172
Alexander Afanasyev6b2a3c02015-01-03 02:04:23 -0800173public: // Workaround for python bindings
174 static Ptr<L3Protocol>
175 getL3Protocol(Ptr<Object> node);
176
Alexander Afanasyevd6453cd2015-08-20 21:45:36 -0700177public:
178 typedef void (*InterestTraceCallback)(const Interest&, const Face&);
179 typedef void (*DataTraceCallback)(const Data&, const Face&);
180
181 typedef void (*SatisfiedInterestsCallback)(const nfd::pit::Entry& pitEntry, const Face& inFace, const Data& data);
182 typedef void (*TimedOutInterestsCallback)(const nfd::pit::Entry& pitEntry);
183
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700184protected:
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800185 virtual void
186 DoDispose(void); ///< @brief Do cleanup
Alexander Afanasyev7112f482011-08-17 14:05:57 -0700187
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700188 /**
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800189 * This function will notify other components connected to the node that a new stack member is now
190 * connected
191 * This will be used to notify Layer 3 protocol of layer 4 protocol stack to connect them
192 * together.
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700193 */
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800194 virtual void
195 NotifyNewAggregate();
Alexander Afanasyev98256102011-08-14 01:00:02 -0700196
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700197private:
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -0800198 void
Spyridon Mastorakis8fde22b2015-08-19 23:12:44 -0700199 initialize();
200
201 void
Alexander Afanasyevdde1e812015-01-06 14:26:09 -0800202 initializeManagement();
Alexander Afanasyevbe55cf62014-12-20 17:51:09 -0800203
Spyridon Mastorakis8fde22b2015-08-19 23:12:44 -0700204 void
205 initializeRibManager();
206
Alexander Afanasyev98256102011-08-14 01:00:02 -0700207private:
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -0800208 class Impl;
209 std::unique_ptr<Impl> m_impl;
210
211 // These objects are aggregated, but for optimization, get them here
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700212 Ptr<Node> m_node; ///< \brief node on which ndn stack is installed
Spyridon Mastorakis9760bd02014-11-12 13:32:55 -0800213
214 TracedCallback<const Interest&, const Face&>
215 m_inInterests; ///< @brief trace of incoming Interests
216 TracedCallback<const Interest&, const Face&>
217 m_outInterests; ///< @brief Transmitted interests trace
218
219 TracedCallback<const Data&, const Face&> m_outData; ///< @brief trace of outgoing Data
220 TracedCallback<const Data&, const Face&> m_inData; ///< @brief trace of incoming Data
Alexander Afanasyevdc6fae82015-01-08 21:44:15 -0800221
Spyridon Mastorakis5ea33222016-12-07 14:33:53 -0800222 TracedCallback<const lp::Nack&, const Face&> m_outNack; ///< @brief trace of outgoing Nack
223 TracedCallback<const lp::Nack&, const Face&> m_inNack; ///< @brief trace of incoming Nack
224
Alexander Afanasyevdc6fae82015-01-08 21:44:15 -0800225 TracedCallback<const nfd::pit::Entry&, const Face&/*in face*/, const Data&> m_satisfiedInterests;
226 TracedCallback<const nfd::pit::Entry&> m_timedOutInterests;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700227};
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -0700228
229} // namespace ndn
230} // namespace ns3
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700231
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700232#endif /* NDN_L3_PROTOCOL_H */