Logo AND Algorithmique Numérique Distribuée

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