Logo AND Algorithmique Numérique Distribuée

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