Logo AND Algorithmique Numérique Distribuée

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