Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
21325c2e7efeacb1faabc67954080454be1dd186
[simgrid.git] / src / surf / network_ns3.cpp
1 /* Copyright (c) 2007-2016. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <unordered_set>
7
8 #include <xbt/config.hpp>
9
10 #include "ns3/core-module.h"
11 #include "ns3/node.h"
12
13 #include "ns3/ns3_interface.h"
14 #include "ns3/ns3_simulator.h"
15 #include "network_ns3.hpp"
16
17 #include "src/surf/HostImpl.hpp"
18 #include "src/surf/surf_private.h"
19 #include "simgrid/sg_config.h"
20 #include "src/instr/instr_private.h" // TRACE_is_enabled(). FIXME: remove by subscribing tracing to the surf signals
21
22 #include "simgrid/s4u/As.hpp"
23
24 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ns3, surf, "Logging specific to the SURF network NS3 module");
25
26 xbt_dynar_t IPV4addr = xbt_dynar_new(sizeof(char*),free);
27
28 /*****************
29  * Crude globals *
30  *****************/
31
32 extern xbt_dict_t flowFromSock;
33
34 static ns3::InternetStackHelper stack;
35 static ns3::NodeContainer nodes;
36 static ns3::NodeContainer Cluster_nodes;
37 static ns3::Ipv4InterfaceContainer interfaces;
38
39 static int number_of_nodes = 0;
40 static int number_of_clusters_nodes = 0;
41 static int number_of_links = 1;
42 static int number_of_networks = 1;
43 static int port_number = 1025; //Port number is limited from 1025 to 65 000
44
45 HostNs3::HostNs3()
46 {
47   ns3::Ptr<ns3::Node> node = ns3::CreateObject<ns3::Node>(0);
48   stack.Install(node);
49   nodes.Add(node);
50   node_num = number_of_nodes++;
51 }
52
53 /*************
54  * Callbacks *
55  *************/
56
57 static void ns3_add_host(simgrid::s4u::Host& host)
58 {
59   host.extension_set<HostNs3>(new HostNs3());
60 }
61
62 static void ns3_add_netcard(simgrid::kernel::routing::NetCard* netcard)
63 {
64   xbt_lib_set(as_router_lib, netcard->name().c_str(), NS3_ASR_LEVEL, new HostNs3());
65 }
66
67 #include "src/surf/xml/platf.hpp" // FIXME: move that back to the parsing area
68 static void parse_ns3_add_cluster(sg_platf_cluster_cbarg_t cluster)
69 {
70   char* lat = bprintf("%fs", cluster->lat);
71   char* bw  = bprintf("%fBps", cluster->bw);
72
73   for (int i : *cluster->radicals) {
74     char* router_id = bprintf("router_%s%d%s", cluster->prefix, i, cluster->suffix);
75
76     simgrid::s4u::Host* router = new simgrid::s4u::Host(router_id);
77     ns3_add_host(*router);
78
79     // Create private link
80     char* host_id = bprintf("%s%d%s", cluster->prefix, i, cluster->suffix);
81     HostNs3* host_src = ns3_find_host(host_id);
82     HostNs3* host_dst = router->extension<HostNs3>();
83
84     xbt_assert(host_src && host_dst, "\tns3_add_link from %d to %d",host_src->node_num,host_dst->node_num);
85
86     ns3_add_link(host_src->node_num, host_dst->node_num, bw,lat);
87
88     free(router_id);
89     free(host_id);
90   }
91   xbt_free(lat);
92   xbt_free(bw);
93
94   //Create link backbone
95   lat = bprintf("%fs", cluster->bb_lat);
96   bw =  bprintf("%fBps", cluster->bb_bw);
97   ns3_add_cluster(cluster->id, bw, lat);
98   xbt_free(lat);
99   xbt_free(bw);
100 }
101
102 /* Create the ns3 topology based on routing strategy */
103 static void create_ns3_topology(void)
104 {
105   XBT_DEBUG("Starting topology generation");
106
107   xbt_dynar_shrink(IPV4addr,0);
108
109   //get the onelinks from the parsed platform
110   xbt_dynar_t onelink_routes = routing_platf->getOneLinkRoutes();
111
112   std::unordered_set<simgrid::surf::LinkNS3*> already_seen = std::unordered_set<simgrid::surf::LinkNS3*>();
113
114   XBT_DEBUG("There is %ld one-link routes",onelink_routes->used);
115   simgrid::kernel::routing::Onelink *onelink;
116   unsigned int iter;
117   xbt_dynar_foreach(onelink_routes, iter, onelink) {
118     const char* src              = onelink->src_->name().c_str();
119     const char* dst              = onelink->dst_->name().c_str();
120     simgrid::surf::LinkNS3 *link = static_cast<simgrid::surf::LinkNS3 *>(onelink->link_);
121
122     if (strcmp(src,dst) && (already_seen.find(link) == already_seen.end())) {
123       already_seen.insert(link);
124       XBT_DEBUG("Route from '%s' to '%s' with link '%s'", src, dst, link->getName());
125       char* link_bdw = bprintf("%fBps", link->bandwidth());
126       char* link_lat = bprintf("%fs", link->latency());
127
128       //   XBT_DEBUG("src (%s), dst (%s), src_id = %d, dst_id = %d",src,dst, src_id, dst_id);
129       XBT_DEBUG("\tLink (%s) bdw:%s lat:%s", link->getName(), link_bdw, link_lat);
130
131       //create link ns3
132       HostNs3* host_src = ns3_find_host(src);
133       if (!host_src)
134         host_src        = static_cast<HostNs3*>(xbt_lib_get_or_null(as_router_lib, src, NS3_ASR_LEVEL));
135       HostNs3* host_dst = ns3_find_host(dst);
136       if(!host_dst)
137         host_dst = static_cast<HostNs3*>(xbt_lib_get_or_null(as_router_lib, dst, NS3_ASR_LEVEL));
138
139       if (!host_src || !host_dst)
140           xbt_die("\tns3_add_link from %d to %d",host_src->node_num,host_dst->node_num);
141
142       ns3_add_link(host_src->node_num, host_dst->node_num, link_bdw, link_lat);
143
144       xbt_free(link_bdw);
145       xbt_free(link_lat);
146     }
147   }
148
149   ns3::GlobalRouteManager::BuildGlobalRoutingDatabase();
150   ns3::GlobalRouteManager::InitializeRoutes();
151 }
152
153 /*********
154  * Model *
155  *********/
156 void surf_network_model_init_NS3()
157 {
158   if (surf_network_model)
159     return;
160
161   surf_network_model = new simgrid::surf::NetworkNS3Model();
162   all_existing_models->push_back(surf_network_model);
163 }
164
165 static simgrid::config::Flag<std::string> ns3_tcp_model("ns3/TcpModel",
166   "The ns3 tcp model can be : NewReno or Reno or Tahoe",
167   "default");
168
169 simgrid::xbt::Extension<simgrid::s4u::Host, HostNs3> HostNs3::EXTENSION_ID;
170
171 namespace simgrid {
172 namespace surf {
173
174 NetworkNS3Model::NetworkNS3Model() : NetworkModel() {
175   ns3_initialize(ns3_tcp_model.get().c_str());
176
177   simgrid::s4u::Host::onCreation.connect(ns3_add_host);
178   simgrid::kernel::routing::netcardCreatedCallbacks.connect(ns3_add_netcard);
179   simgrid::surf::on_cluster.connect (&parse_ns3_add_cluster);
180   simgrid::surf::on_postparse.connect(&create_ns3_topology);
181
182   HostNs3::EXTENSION_ID = simgrid::s4u::Host::extension_create<HostNs3>();
183
184   NS3_ASR_LEVEL  = xbt_lib_add_level(as_router_lib, xbt_free_f);
185
186   LogComponentEnable("UdpEchoClientApplication", ns3::LOG_LEVEL_INFO);
187   LogComponentEnable("UdpEchoServerApplication", ns3::LOG_LEVEL_INFO);
188 }
189
190 NetworkNS3Model::~NetworkNS3Model() {
191   xbt_dynar_free_container(&IPV4addr);
192   xbt_dict_free(&flowFromSock);
193 }
194
195 Link* NetworkNS3Model::createLink(const char* name, double bandwidth, double latency,
196                                   e_surf_link_sharing_policy_t policy)
197 {
198   return new LinkNS3(this, name, bandwidth, latency);
199 }
200
201 Action* NetworkNS3Model::communicate(s4u::Host* src, s4u::Host* dst, double size, double rate)
202 {
203   return new NetworkNS3Action(this, size, src, dst);
204 }
205
206 double NetworkNS3Model::nextOccuringEvent(double now)
207 {
208   double time_to_next_flow_completion;
209   XBT_DEBUG("ns3_next_occuring_event");
210
211   //get the first relevant value from the running_actions list
212   if (!getRunningActionSet()->size() || now == 0.0)
213     return -1.0;
214   else
215     do {
216       ns3_simulator(now);
217       time_to_next_flow_completion = ns3::Simulator::Now().GetSeconds() - surf_get_clock();
218     } while(double_equals(time_to_next_flow_completion, 0, sg_surf_precision));
219
220   XBT_DEBUG("min       : %f", now);
221   XBT_DEBUG("ns3  time : %f", ns3::Simulator::Now().GetSeconds());
222   XBT_DEBUG("surf time : %f", surf_get_clock());
223   XBT_DEBUG("Next completion %f :", time_to_next_flow_completion);
224
225   return time_to_next_flow_completion;
226 }
227
228 void NetworkNS3Model::updateActionsState(double now, double delta)
229 {
230   static xbt_dynar_t socket_to_destroy = xbt_dynar_new(sizeof(char*),nullptr);
231
232   /* If there are no running flows, advance the NS3 simulator and return */
233   if (getRunningActionSet()->empty()) {
234
235     while(double_positive(now - ns3::Simulator::Now().GetSeconds(), sg_surf_precision))
236       ns3_simulator(now-ns3::Simulator::Now().GetSeconds());
237
238     return;
239   }
240
241   xbt_dict_cursor_t cursor = nullptr;
242   char *ns3Socket;
243   SgFlow *sgFlow;
244   xbt_dict_foreach(flowFromSock,cursor,ns3Socket,sgFlow){
245     NetworkNS3Action * action = sgFlow->action_;
246     XBT_DEBUG("Processing socket %p (action %p)",sgFlow,action);
247     action->setRemains(action->getCost() - sgFlow->sentBytes_);
248
249     if (TRACE_is_enabled() &&
250         action->getState() == Action::State::running){
251       double data_delta_sent = sgFlow->sentBytes_ - action->lastSent_;
252
253       std::vector<Link*> route = std::vector<Link*>();
254
255       routing_platf->getRouteAndLatency(action->src_->pimpl_netcard, action->dst_->pimpl_netcard, &route, nullptr);
256       for (auto link : route)
257         TRACE_surf_link_set_utilization (link->getName(), action->getCategory(), (data_delta_sent)/delta, now-delta, delta);
258
259       action->lastSent_ = sgFlow->sentBytes_;
260     }
261
262     if(sgFlow->finished_){
263       xbt_dynar_push(socket_to_destroy,&ns3Socket);
264       XBT_DEBUG("Destroy socket %p of action %p", ns3Socket, action);
265       action->finish();
266       action->setState(Action::State::done);
267     }
268   }
269
270   while (!xbt_dynar_is_empty(socket_to_destroy)){
271     xbt_dynar_pop(socket_to_destroy,&ns3Socket);
272
273     if (XBT_LOG_ISENABLED(ns3, xbt_log_priority_debug)) {
274       SgFlow *flow = (SgFlow*)xbt_dict_get (flowFromSock, ns3Socket);
275       XBT_DEBUG ("Removing socket %p of action %p", ns3Socket, flow->action_);
276     }
277     xbt_dict_remove(flowFromSock, ns3Socket);
278   }
279 }
280
281 /************
282  * Resource *
283  ************/
284
285 LinkNS3::LinkNS3(NetworkNS3Model* model, const char* name, double bandwidth, double latency)
286     : Link(model, name, nullptr)
287 {
288   bandwidth_.peak = bandwidth;
289   latency_.peak   = latency;
290
291   Link::onCreation(this);
292 }
293
294 LinkNS3::~LinkNS3()
295 {
296 }
297
298 void LinkNS3::apply_event(tmgr_trace_iterator_t event, double value)
299 {
300   THROW_UNIMPLEMENTED;
301 }
302 void LinkNS3::setBandwidthTrace(tmgr_trace_t trace) {
303   xbt_die("The NS3 network model doesn't support bandwidth traces");
304 }
305 void LinkNS3::setLatencyTrace(tmgr_trace_t trace) {
306   xbt_die("The NS3 network model doesn't support latency traces");
307 }
308
309 /**********
310  * Action *
311  **********/
312
313 NetworkNS3Action::NetworkNS3Action(Model* model, double size, s4u::Host* src, s4u::Host* dst)
314     : NetworkAction(model, size, false)
315 {
316   XBT_DEBUG("Communicate from %s to %s", src->name().c_str(), dst->name().c_str());
317
318   src_ = src;
319   dst_ = dst;
320   ns3_create_flow(src->name().c_str(), dst->name().c_str(), surf_get_clock(), size, this);
321
322   Link::onCommunicate(this, src, dst);
323 }
324
325 void NetworkNS3Action::suspend() {
326   THROW_UNIMPLEMENTED;
327 }
328
329 void NetworkNS3Action::resume() {
330   THROW_UNIMPLEMENTED;
331 }
332
333   /* Test whether a flow is suspended */
334 bool NetworkNS3Action::isSuspended()
335 {
336   return false;
337 }
338
339 int NetworkNS3Action::unref()
340 {
341   refcount_--;
342   if (!refcount_) {
343     if (action_hook.is_linked())
344       stateSet_->erase(stateSet_->iterator_to(*this));
345     XBT_DEBUG ("Removing action %p", this);
346     delete this;
347     return 1;
348   }
349   return 0;
350 }
351
352 }
353 }
354
355 void ns3_simulator(double maxSeconds){
356   if (maxSeconds > 0.0) // If there is a maximum amount of time to run
357     ns3::Simulator::Stop(ns3::Seconds(maxSeconds));
358   XBT_DEBUG("Start simulator for at most %fs",maxSeconds);
359   ns3::Simulator::Run ();
360 }
361
362 void ns3_create_flow(const char* a,const char *b,double startTime,u_int32_t TotalBytes,simgrid::surf::NetworkNS3Action * action)
363 {
364   int node1 = ns3_find_host(a)->node_num;
365   int node2 = ns3_find_host(b)->node_num;
366
367   ns3::Ptr<ns3::Node> src_node = nodes.Get(node1);
368   ns3::Ptr<ns3::Node> dst_node = nodes.Get(node2);
369
370   char* addr = (char*)xbt_dynar_get_as(IPV4addr,node2,char*);
371
372   XBT_DEBUG("ns3_create_flow %d Bytes from %d to %d with Interface %s",TotalBytes, node1, node2,addr);
373   ns3::PacketSinkHelper sink("ns3::TcpSocketFactory", ns3::InetSocketAddress (ns3::Ipv4Address::GetAny(), port_number));
374   sink.Install (dst_node);
375
376   ns3::Ptr<ns3::Socket> sock = ns3::Socket::CreateSocket (src_node, ns3::TcpSocketFactory::GetTypeId());
377
378   xbt_dict_set(flowFromSock, transformSocketPtr(sock), new SgFlow(TotalBytes, action), nullptr);
379
380   sock->Bind(ns3::InetSocketAddress(port_number));
381   XBT_DEBUG("Create flow starting to %fs + %fs = %fs",
382       startTime-ns3::Simulator::Now().GetSeconds(), ns3::Simulator::Now().GetSeconds(), startTime);
383
384   ns3::Simulator::Schedule (ns3::Seconds(startTime-ns3::Simulator::Now().GetSeconds()),
385       &StartFlow, sock, addr, port_number);
386
387   port_number++;
388   xbt_assert(port_number <= 65000, "Too many connections! Port number is saturated.");
389 }
390
391 // initialize the NS3 interface and environment
392 void ns3_initialize(const char* TcpProtocol){
393 //  tcpModel are:
394 //  "ns3::TcpNewReno"
395 //  "ns3::TcpReno"
396 //  "ns3::TcpTahoe"
397
398   ns3::Config::SetDefault ("ns3::TcpSocket::SegmentSize", ns3::UintegerValue (1024)); // 1024-byte packet for easier reading
399   ns3::Config::SetDefault ("ns3::TcpSocket::DelAckCount", ns3::UintegerValue (1));
400
401   if (!strcmp(TcpProtocol,"default"))
402     return;
403
404   if (!strcmp(TcpProtocol,"Reno")) {
405     XBT_INFO("Switching Tcp protocol to '%s'",TcpProtocol);
406     ns3::Config::SetDefault ("ns3::TcpL4Protocol::SocketType", ns3::StringValue("ns3::TcpReno"));
407     return;
408   }
409   if (!strcmp(TcpProtocol,"NewReno")) {
410     XBT_INFO("Switching Tcp protocol to '%s'",TcpProtocol);
411     ns3::Config::SetDefault ("ns3::TcpL4Protocol::SocketType", ns3::StringValue("ns3::TcpNewReno"));
412     return;
413   }
414   if(!strcmp(TcpProtocol,"Tahoe")){
415     XBT_INFO("Switching Tcp protocol to '%s'",TcpProtocol);
416     ns3::Config::SetDefault ("ns3::TcpL4Protocol::SocketType", ns3::StringValue("ns3::TcpTahoe"));
417     return;
418   }
419
420   xbt_die("The ns3/TcpModel must be : NewReno or Reno or Tahoe");
421 }
422
423 void ns3_add_cluster(const char* id, char* bw, char* lat)
424 {
425   ns3::NodeContainer Nodes;
426
427   for (unsigned int i = number_of_clusters_nodes; i < Cluster_nodes.GetN(); i++) {
428     Nodes.Add(Cluster_nodes.Get(i));
429     XBT_DEBUG("Add node %d to cluster",i);
430   }
431   number_of_clusters_nodes = Cluster_nodes.GetN();
432
433   XBT_DEBUG("Add router %d to cluster",nodes.GetN()-Nodes.GetN()-1);
434   Nodes.Add(nodes.Get(nodes.GetN()-Nodes.GetN()-1));
435
436   xbt_assert(Nodes.GetN() <= 65000, "Cluster with NS3 is limited to 65000 nodes");
437   ns3::CsmaHelper csma;
438   csma.SetChannelAttribute ("DataRate", ns3::StringValue (bw));
439   csma.SetChannelAttribute ("Delay", ns3::StringValue (lat));
440   ns3::NetDeviceContainer devices = csma.Install (Nodes);
441   XBT_DEBUG("Create CSMA");
442
443   char * adr = bprintf("%d.%d.0.0",number_of_networks,number_of_links);
444   XBT_DEBUG("Assign IP Addresses %s to CSMA.",adr);
445   ns3::Ipv4AddressHelper ipv4;
446   ipv4.SetBase (adr, "255.255.0.0");
447   free(adr);
448   interfaces.Add(ipv4.Assign (devices));
449
450   if(number_of_links == 255){
451     xbt_assert(number_of_networks < 255, "Number of links and networks exceed 255*255");
452     number_of_links = 1;
453     number_of_networks++;
454   }else{
455     number_of_links++;
456   }
457   XBT_DEBUG("Number of nodes in Cluster_nodes: %d",Cluster_nodes.GetN());
458 }
459
460 static char* transformIpv4Address (ns3::Ipv4Address from){
461   std::stringstream sstream;
462   sstream << from ;
463   std::string s = sstream.str();
464   return bprintf("%s",s.c_str());
465 }
466
467 void ns3_add_link(int src, int dst, char *bw, char *lat)
468 {
469   ns3::PointToPointHelper pointToPoint;
470
471   ns3::NetDeviceContainer netA;
472   ns3::Ipv4AddressHelper address;
473
474   ns3::Ptr<ns3::Node> a = nodes.Get(src);
475   ns3::Ptr<ns3::Node> b = nodes.Get(dst);
476
477   XBT_DEBUG("\tAdd PTP from %d to %d bw:'%s' lat:'%s'",src,dst,bw,lat);
478   pointToPoint.SetDeviceAttribute ("DataRate", ns3::StringValue (bw));
479   pointToPoint.SetChannelAttribute ("Delay", ns3::StringValue (lat));
480
481   netA.Add(pointToPoint.Install (a, b));
482
483   char * adr = bprintf("%d.%d.0.0",number_of_networks,number_of_links);
484   address.SetBase (adr, "255.255.0.0");
485   XBT_DEBUG("\tInterface stack '%s'",adr);
486   free(adr);
487   interfaces.Add(address.Assign (netA));
488
489   char *tmp = transformIpv4Address(interfaces.GetAddress(interfaces.GetN()-2));
490   xbt_dynar_set_as(IPV4addr,src,char*,tmp);
491   XBT_DEBUG("Have write '%s' for Node '%d'",(char*)xbt_dynar_get_as(IPV4addr,src,char*),src);
492
493   tmp = transformIpv4Address(interfaces.GetAddress(interfaces.GetN()-1));
494   xbt_dynar_set_as(IPV4addr,dst,char*,tmp);
495   XBT_DEBUG("Have write '%s' for Node '%d'",(char*)xbt_dynar_get_as(IPV4addr,dst,char*),dst);
496
497   if (number_of_links == 255){
498     xbt_assert(number_of_networks < 255, "Number of links and networks exceed 255*255");
499     number_of_links = 1;
500     number_of_networks++;
501   } else {
502     number_of_links++;
503   }
504 }