Logo AND Algorithmique Numérique Distribuée

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