blob: b7c8a01888d1a0bab026c2a5bf034431dfe70392 [file] [log] [blame]
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Alexander Afanasyev45b92d42011-08-14 23:11:38 -07002/*
3 * Copyright (c) 2011 UCLA
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation;
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 *
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070018 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
Ilya Moiseenkofbd0a8b2011-10-28 13:07:16 -070019 * Ilya Moiseenko <iliamo@cs.ucla.edu>
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070020 */
21
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070022#include "ns3/assert.h"
23#include "ns3/log.h"
24#include "ns3/object.h"
25#include "ns3/names.h"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070026#include "ns3/packet-socket-factory.h"
27#include "ns3/config.h"
28#include "ns3/simulator.h"
29#include "ns3/string.h"
30#include "ns3/net-device.h"
31#include "ns3/callback.h"
32#include "ns3/node.h"
33#include "ns3/core-config.h"
Alexander Afanasyev07827182011-12-13 01:07:32 -080034#include "ns3/point-to-point-net-device.h"
35#include "ns3/point-to-point-helper.h"
36
37#include "../model/ccnx-forwarding-strategy.h"
Alexander Afanasyevf9f4eb02011-12-16 01:51:14 -080038#include "../model/ccnx-net-device-face.h"
39#include "../model/ccnx-l3-protocol.h"
40#include "../model/ccnx-fib.h"
Alexander Afanasyev07827182011-12-13 01:07:32 -080041
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -080042#include "ns3/node-list.h"
Alexander Afanasyev11453142011-11-25 16:13:33 -080043#include "ns3/loopback-net-device.h"
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -080044#include "ns3/global-router-interface.h"
Alexander Afanasyev11453142011-11-25 16:13:33 -080045#include "ns3/ipv4.h"
46#include "ns3/ipv4-global-routing.h"
Alexander Afanasyevf9f4eb02011-12-16 01:51:14 -080047#include "../utils/ipv4-global-routing-ordered-nexthops.h"
48
Alexander Afanasyev11453142011-11-25 16:13:33 -080049#include "ns3/ipv4-routing-helper.h"
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -080050#include "ns3/ipv4-global-routing-helper.h"
Alexander Afanasyev11453142011-11-25 16:13:33 -080051#include "ns3/data-rate.h"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070052
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -070053#include "ccnx-face-container.h"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070054#include "ccnx-stack-helper.h"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070055
56#include <limits>
57#include <map>
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -080058#include <boost/foreach.hpp>
Alexander Afanasyevb7626842012-01-12 13:43:33 -080059#include <boost/lexical_cast.hpp>
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080060
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070061NS_LOG_COMPONENT_DEFINE ("CcnxStackHelper");
62
63namespace ns3 {
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070064
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070065CcnxStackHelper::CcnxStackHelper ()
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -080066 : m_limitsEnabled (false)
67 , m_needSetDefaultRoutes (false)
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070068{
Alexander Afanasyev11453142011-11-25 16:13:33 -080069 m_strategyFactory.SetTypeId ("ns3::CcnxFloodingStrategy");
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070070}
71
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070072CcnxStackHelper::~CcnxStackHelper ()
73{
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070074}
75
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070076void
Alexander Afanasyev11453142011-11-25 16:13:33 -080077CcnxStackHelper::SetForwardingStrategy (std::string strategy)
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070078{
Alexander Afanasyev11453142011-11-25 16:13:33 -080079 m_strategyFactory.SetTypeId (strategy);
80}
81
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -080082
83void
84CcnxStackHelper::SetDefaultRoutes (bool needSet)
85{
86 NS_LOG_FUNCTION (this << needSet);
87 m_needSetDefaultRoutes = needSet;
88}
89
Alexander Afanasyev11453142011-11-25 16:13:33 -080090void
Alexander Afanasyev33d62312012-01-09 13:50:20 -080091CcnxStackHelper::EnableLimits (bool enable/* = true*/,
92 Time avgRtt/*=Seconds(0.1)*/,
93 uint32_t avgContentObject/*=1100*/,
94 uint32_t avgInterest/*=40*/)
Alexander Afanasyev11453142011-11-25 16:13:33 -080095{
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -080096 NS_LOG_INFO ("EnableLimits: " << enable);
Alexander Afanasyev11453142011-11-25 16:13:33 -080097 m_limitsEnabled = enable;
Alexander Afanasyev8f5a9bb2011-12-18 19:49:02 -080098 m_avgRtt = avgRtt;
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -080099 m_avgContentObjectSize = avgContentObject;
100 m_avgInterestSize = avgInterest;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700101}
102
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700103Ptr<CcnxFaceContainer>
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700104CcnxStackHelper::Install (NodeContainer c) const
105{
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700106 Ptr<CcnxFaceContainer> faces = Create<CcnxFaceContainer> ();
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700107 for (NodeContainer::Iterator i = c.Begin (); i != c.End (); ++i)
108 {
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700109 faces->AddAll (Install (*i));
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700110 }
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700111 return faces;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700112}
113
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700114Ptr<CcnxFaceContainer>
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700115CcnxStackHelper::InstallAll (void) const
116{
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700117 return Install (NodeContainer::GetGlobal ());
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700118}
119
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700120Ptr<CcnxFaceContainer>
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700121CcnxStackHelper::Install (Ptr<Node> node) const
122{
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700123 // NS_ASSERT_MSG (m_forwarding, "SetForwardingHelper() should be set prior calling Install() method");
124 Ptr<CcnxFaceContainer> faces = Create<CcnxFaceContainer> ();
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700125
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700126 if (node->GetObject<Ccnx> () != 0)
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700127 {
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700128 NS_FATAL_ERROR ("CcnxStackHelper::Install (): Installing "
129 "a CcnxStack to a node with an existing Ccnx object");
130 return 0;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700131 }
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700132
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700133 Ptr<CcnxFib> fib = CreateObject<CcnxFib> ();
134 node->AggregateObject (fib);
135
Ilya Moiseenkofbd0a8b2011-10-28 13:07:16 -0700136 Ptr<CcnxL3Protocol> ccnx = CreateObject<CcnxL3Protocol> ();
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700137 node->AggregateObject (ccnx);
138
Alexander Afanasyevf377b332011-12-16 15:32:12 -0800139 ccnx->SetForwardingStrategy (m_strategyFactory.Create<CcnxForwardingStrategy> ());
Alexander Afanasyev11453142011-11-25 16:13:33 -0800140
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700141 for (uint32_t index=0; index < node->GetNDevices (); index++)
142 {
Alexander Afanasyev11453142011-11-25 16:13:33 -0800143 Ptr<NetDevice> device = node->GetDevice (index);
144 if (DynamicCast<LoopbackNetDevice> (device) != 0)
145 continue; // don't create face for a LoopbackNetDevice
146
Alexander Afanasyevcbe92ae2011-12-16 13:06:18 -0800147 Ptr<CcnxNetDeviceFace> face = CreateObject<CcnxNetDeviceFace> (node, device);
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800148
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800149 ccnx->AddFace (face);
150 NS_LOG_LOGIC ("Node " << node->GetId () << ": added CcnxNetDeviceFace as face #" << *face);
Alexander Afanasyev11453142011-11-25 16:13:33 -0800151
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800152 if (m_needSetDefaultRoutes)
153 {
154 // default route with lowest priority possible
155 AddRoute (node, "/", face, std::numeric_limits<int32_t>::max ());
156 }
157
Alexander Afanasyev11453142011-11-25 16:13:33 -0800158 if (m_limitsEnabled)
159 {
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -0800160 NS_LOG_INFO ("Limits are enabled");
Alexander Afanasyev11453142011-11-25 16:13:33 -0800161 Ptr<PointToPointNetDevice> p2p = DynamicCast<PointToPointNetDevice> (device);
Alexander Afanasyev3f1c8b02012-01-19 19:41:34 -0800162 if (p2p != 0)
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -0800163 {
Alexander Afanasyev3f1c8b02012-01-19 19:41:34 -0800164 // Setup bucket filtering
165 // Assume that we know average data packet size, and this size is equal default size
166 // Set maximum buckets (averaging over 1 second)
Ilya Moiseenkoc9266042011-11-02 17:49:21 -0700167
Alexander Afanasyev3f1c8b02012-01-19 19:41:34 -0800168 DataRateValue dataRate; device->GetAttribute ("DataRate", dataRate);
Alexander Afanasyev11453142011-11-25 16:13:33 -0800169
Alexander Afanasyev3f1c8b02012-01-19 19:41:34 -0800170 NS_LOG_INFO("DataRate for this link is " << dataRate.Get());
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -0800171
Alexander Afanasyev3f1c8b02012-01-19 19:41:34 -0800172 double maxInterestPackets = 1.0 * dataRate.Get ().GetBitRate () / 8.0 / (m_avgContentObjectSize + m_avgInterestSize);
173 NS_LOG_INFO ("Max packets per second: " << maxInterestPackets);
174 NS_LOG_INFO ("Max burst: " << m_avgRtt.ToDouble (Time::S) * maxInterestPackets);
Alexander Afanasyevc39f0b42011-11-28 12:51:12 -0800175
Alexander Afanasyev3f1c8b02012-01-19 19:41:34 -0800176 // Set bucket max to BDP
177 face->SetBucketMax (m_avgRtt.ToDouble (Time::S) * maxInterestPackets); // number of interests allowed
178 face->SetBucketLeak (maxInterestPackets);
179 }
Alexander Afanasyev11453142011-11-25 16:13:33 -0800180 }
Ilya Moiseenkoc9266042011-11-02 17:49:21 -0700181
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -0700182 face->SetUp ();
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700183 faces->Add (face);
184 }
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -0700185
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700186 return faces;
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700187}
188
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700189Ptr<CcnxFaceContainer>
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700190CcnxStackHelper::Install (std::string nodeName) const
191{
192 Ptr<Node> node = Names::Find<Node> (nodeName);
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700193 return Install (node);
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700194}
195
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700196
197void
Alexander Afanasyevb7626842012-01-12 13:43:33 -0800198CcnxStackHelper::AddRoute (Ptr<Node> node, std::string prefix, Ptr<CcnxFace> face, int32_t metric)
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800199{
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800200 NS_LOG_LOGIC ("[" << node->GetId () << "]$ route add " << prefix << " via " << *face << " metric " << metric);
201
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800202 Ptr<CcnxFib> fib = node->GetObject<CcnxFib> ();
203
204 CcnxNameComponentsValue prefixValue;
205 prefixValue.DeserializeFromString (prefix, MakeCcnxNameComponentsChecker ());
206 fib->Add (prefixValue.Get (), face, metric);
207}
208
209void
Alexander Afanasyevb7626842012-01-12 13:43:33 -0800210CcnxStackHelper::AddRoute (std::string nodeName, std::string prefix, uint32_t faceId, int32_t metric)
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700211{
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700212 Ptr<Node> node = Names::Find<Node> (nodeName);
213 NS_ASSERT_MSG (node != 0, "Node [" << nodeName << "] does not exist");
Alexander Afanasyeva4e3f852011-11-15 20:39:33 -0800214
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800215 Ptr<Ccnx> ccnx = node->GetObject<Ccnx> ();
216 NS_ASSERT_MSG (ccnx != 0, "Ccnx stack should be installed on the node");
217
218 Ptr<CcnxFace> face = ccnx->GetFace (faceId);
219 NS_ASSERT_MSG (face != 0, "Face with ID [" << faceId << "] does not exist on node [" << nodeName << "]");
220
221 AddRoute (node, prefix, face, metric);
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700222}
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800223
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700224
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800225void
Alexander Afanasyev36d5c2a2012-01-02 19:09:19 -0800226CcnxStackHelper::InstallFakeGlobalRoutesImpl ()
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800227{
228 for (NodeList::Iterator node = NodeList::Begin ();
229 node != NodeList::End ();
230 node ++)
231 {
232 NS_ASSERT_MSG ((*node)->GetObject<Ipv4> () != 0,
233 "InternetStack should be installed on all nodes");
234
235 NS_ASSERT_MSG (Ipv4RoutingHelper::GetRouting<Ipv4GlobalRoutingOrderedNexthops>
236 (
237 (*node)->GetObject<Ipv4> ()->GetRoutingProtocol ()
Alexander Afanasyev11453142011-11-25 16:13:33 -0800238 ),
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800239 "InternetStack should have Ipv4GlobalRoutingOrderedNexthops as routing protocol");
240 // Example:
241 //
242 // Ipv4GlobalRoutingHelper ipv4RoutingHelper ("ns3::Ipv4GlobalRoutingUnorderedNexthops");
243 // stack.SetRoutingHelper (ipv4RoutingHelper);
244 //
245
246 Ptr<GlobalRouter> globalRouter = (*node)->GetObject<GlobalRouter> ();
247 if (globalRouter == 0) continue;
248
249 globalRouter->InjectRoute (Ipv4Address((*node)->GetId ()), Ipv4Mask("255.255.255.255"));
250 }
Alexander Afanasyev36d5c2a2012-01-02 19:09:19 -0800251}
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800252
Alexander Afanasyev36d5c2a2012-01-02 19:09:19 -0800253void
254CcnxStackHelper::InstallFakeGlobalRoutes ()
255{
256 InstallFakeGlobalRoutesImpl ();
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800257 Ipv4GlobalRoutingHelper::PopulateAllPossibleRoutingTables ();
258}
259
260void
261CcnxStackHelper::InstallRouteTo (Ptr<Node> destNode)
262{
Alexander Afanasyevb7626842012-01-12 13:43:33 -0800263 InstallRouteTo (boost::lexical_cast<std::string> (destNode->GetId ()), destNode);
264}
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800265
Alexander Afanasyevb7626842012-01-12 13:43:33 -0800266void
267CcnxStackHelper::InstallRouteTo (const std::string &prefix, Ptr<Node> destNode)
268{
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800269 Ipv4Address destIpv4 = Ipv4Address(destNode->GetId ());
270
271 for (NodeList::Iterator node = NodeList::Begin ();
272 node != NodeList::End ();
273 node ++)
274 {
275 if (destNode == *node) continue;
276
277 Ptr<Ccnx> ccnx = (*node)->GetObject<Ccnx> ();
278 NS_ASSERT_MSG (ccnx != 0, "CCNx stack should be installed on all nodes");
279
280 Ptr<Ipv4> ipv4 = (*node)->GetObject<Ipv4> ();
281 NS_ASSERT_MSG (ipv4 != 0,
282 "InternetStack should be installed on all nodes");
283
284 Ptr<Ipv4GlobalRoutingOrderedNexthops> routing =
285 Ipv4RoutingHelper::GetRouting<Ipv4GlobalRoutingOrderedNexthops> (ipv4->GetRoutingProtocol ());
286 NS_ASSERT_MSG (routing != 0, "Ipv4GlobalRoutingOrderedNexthops should be used in InternetStack");
287
288 Ptr<Ipv4GlobalRoutingOrderedNexthops::EntryContainer>
289 routes = routing->Lookup (destIpv4);
290
291 NS_ASSERT_MSG (routes != 0, "Should not happen... Call the developer");
292
293 BOOST_FOREACH (const Ipv4RoutingTableEntry &entry, *routes)
294 {
295 Ptr<NetDevice> netDevice = ipv4->GetNetDevice (entry.GetInterface ());
296 NS_ASSERT_MSG (netDevice != 0, "Should never happen. Call the popos");
297
298 Ptr<CcnxFace> face = ccnx->GetFaceByNetDevice (netDevice);
299 NS_ASSERT_MSG (face != 0, "Definitely should never happen. Call the president");
300
Alexander Afanasyevb7626842012-01-12 13:43:33 -0800301 AddRoute (*node, prefix, face, entry.GetMetric ());
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800302 }
303 }
304}
305
306void
307CcnxStackHelper::InstallRoutesToAll ()
308{
309 for (NodeList::Iterator node = NodeList::Begin ();
310 node != NodeList::End ();
311 node ++)
312 {
313 InstallRouteTo (*node);
314 }
315}
316
317
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700318} // namespace ns3