Logo AND Algorithmique Numérique Distribuée

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