Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
removed standard to make it work
[simgrid.git] / src / surf / network_ns3.cpp
1 /* Copyright (c) 2007-2020. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <string>
7 #include <unordered_set>
8
9 #include "xbt/config.hpp"
10 #include "xbt/string.hpp"
11 #include "xbt/utility.hpp"
12
13 #include <ns3/core-module.h>
14 #include <ns3/csma-helper.h>
15 #include <ns3/global-route-manager.h>
16 #include <ns3/internet-stack-helper.h>
17 #include <ns3/ipv4-address-helper.h>
18 #include <ns3/packet-sink-helper.h>
19 #include <ns3/point-to-point-helper.h>
20 #include <ns3/application-container.h>
21 #include <ns3/event-id.h>
22
23 #include "ns3/wifi-module.h"
24 #include "ns3/mobility-module.h"
25
26 #include "network_ns3.hpp"
27 #include "ns3/ns3_simulator.hpp"
28
29 #include "simgrid/kernel/routing/NetPoint.hpp"
30 #include "simgrid/plugins/energy.h"
31 #include "simgrid/s4u/Engine.hpp"
32 #include "simgrid/s4u/NetZone.hpp"
33 #include "src/instr/instr_private.hpp" // TRACE_is_enabled(). FIXME: remove by subscribing tracing to the surf signals
34 #include "src/surf/surf_interface.hpp"
35 #include "src/surf/xml/platf_private.hpp"
36 #include "surf/surf.hpp"
37
38 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(ns3, surf, "Logging specific to the SURF network ns-3 module");
39
40 std::vector<std::string> IPV4addr;
41
42 /*****************
43  * Crude globals *
44  *****************/
45
46 extern std::map<std::string, SgFlow*> flow_from_sock;
47 extern std::map<std::string, ns3::ApplicationContainer> sink_from_sock;
48
49 static ns3::InternetStackHelper stack;
50 static ns3::NodeContainer nodes;
51 static ns3::NodeContainer Cluster_nodes;
52 static ns3::Ipv4InterfaceContainer interfaces;
53
54 /* wifi globals */
55 static ns3::WifiHelper wifi;
56 static ns3::YansWifiPhyHelper wifiPhy = ns3::YansWifiPhyHelper::Default ();
57 static ns3::YansWifiChannelHelper wifiChannel = ns3::YansWifiChannelHelper::Default ();
58 static ns3::WifiMacHelper wifiMac;
59 static ns3::MobilityHelper mobility;
60 static int mobility_delta = 10;
61 static int mobility_base = 0;
62
63 static int number_of_nodes = 0;
64 static int number_of_clusters_nodes = 0;
65 static int number_of_links = 1;
66 static int number_of_networks = 1;
67
68 simgrid::xbt::Extension<simgrid::kernel::routing::NetPoint, NetPointNs3> NetPointNs3::EXTENSION_ID;
69
70 NetPointNs3::NetPointNs3() : ns3_node_(ns3::CreateObject<ns3::Node>(0))
71 {
72   XBT_INFO("NetPointNs3");
73   stack.Install(ns3_node_);
74   nodes.Add(ns3_node_);
75   node_num = number_of_nodes++;
76 }
77
78 /*************
79  * Callbacks *
80  *************/
81
82 static void clusterCreation_cb(simgrid::kernel::routing::ClusterCreationArgs const& cluster)
83 {
84   for (int const& i : *cluster.radicals) {
85     // Routers don't create a router on the other end of the private link by themselves.
86     // We just need this router to be given an ID so we create a temporary NetPointNS3 so that it gets one
87     auto* host_dst = new NetPointNs3();
88
89     // Create private link
90     std::string host_id = cluster.prefix + std::to_string(i) + cluster.suffix;
91     auto* host_src      = simgrid::s4u::Host::by_name(host_id)->get_netpoint()->extension<NetPointNs3>();
92     xbt_assert(host_src, "Cannot find a ns-3 host of name %s", host_id.c_str());
93
94     // Any ns-3 route is symmetrical
95     ns3_add_direct_route(host_src, host_dst, cluster.bw, cluster.lat, cluster.sharing_policy);
96
97     delete host_dst;
98   }
99
100   //Create link backbone
101   ns3_add_cluster(cluster.id.c_str(), cluster.bb_bw, cluster.bb_lat);
102 }
103
104 static void routeCreation_cb(bool symmetrical, simgrid::kernel::routing::NetPoint* src,
105                              simgrid::kernel::routing::NetPoint* dst, simgrid::kernel::routing::NetPoint* /*gw_src*/,
106                              simgrid::kernel::routing::NetPoint* /*gw_dst*/,
107                              std::vector<simgrid::kernel::resource::LinkImpl*> const& link_list)
108 {
109   XBT_INFO("ROUTE_CREATION");
110   if (link_list.size() == 1) {
111     auto* link = static_cast<simgrid::kernel::resource::LinkNS3*>(link_list[0]);
112
113     XBT_DEBUG("Route from '%s' to '%s' with link '%s' %s %s", src->get_cname(), dst->get_cname(), link->get_cname(),
114               (link->get_sharing_policy() == simgrid::s4u::Link::SharingPolicy::WIFI ? "(wifi)" : "(wired)"),
115               (symmetrical ? "(symmetrical)" : "(not symmetrical)"));
116
117     //   XBT_DEBUG("src (%s), dst (%s), src_id = %d, dst_id = %d",src,dst, src_id, dst_id);
118     XBT_DEBUG("\tLink (%s) bw:%fbps lat:%fs", link->get_cname(), link->get_bandwidth(), link->get_latency());
119
120     // create link ns3
121     auto* host_src = src->extension<NetPointNs3>();
122     auto* host_dst = dst->extension<NetPointNs3>();
123
124     xbt_assert(host_src != nullptr, "Network element %s does not seem to be ns-3-ready", src->get_cname());
125     xbt_assert(host_dst != nullptr, "Network element %s does not seem to be ns-3-ready", dst->get_cname());
126
127     ns3_add_direct_route(host_src, host_dst, link->get_bandwidth(), link->get_latency(), link->get_sharing_policy());
128   } else {
129     static bool warned_about_long_routes = false;
130
131     if (not warned_about_long_routes)
132       XBT_WARN("Ignoring a route between %s and %s of length %zu: Only routes of length 1 are considered with ns-3.\n"
133                "WARNING: You can ignore this warning if your hosts can still communicate when only considering routes "
134                "of length 1.\n"
135                "WARNING: Remove long routes to avoid this harmless message; subsequent long routes will be silently "
136                "ignored.",
137                src->get_cname(), dst->get_cname(), link_list.size());
138     warned_about_long_routes = true;
139   }
140 }
141
142 /* Create the ns3 topology based on routing strategy */
143 static void postparse_cb()
144 {
145   IPV4addr.shrink_to_fit();
146   ns3::GlobalRouteManager::BuildGlobalRoutingDatabase();
147   ns3::GlobalRouteManager::InitializeRoutes();
148 }
149
150 /*********
151  * Model *
152  *********/
153 void surf_network_model_init_NS3()
154 {
155   xbt_assert(surf_network_model == nullptr, "Cannot set the network model twice");
156
157   surf_network_model = new simgrid::kernel::resource::NetworkNS3Model();
158 }
159
160 static simgrid::config::Flag<std::string>
161     ns3_tcp_model("ns3/TcpModel", "The ns-3 tcp model can be : NewReno or Reno or Tahoe", "default");
162
163 namespace simgrid {
164 namespace kernel {
165 namespace resource {
166
167 NetworkNS3Model::NetworkNS3Model() : NetworkModel(Model::UpdateAlgo::FULL)
168 {
169   xbt_assert(not sg_link_energy_is_inited(),
170              "LinkEnergy plugin and ns-3 network models are not compatible. Are you looking for Ecofen, maybe?");
171
172   all_existing_models.push_back(this);
173
174   NetPointNs3::EXTENSION_ID = routing::NetPoint::extension_create<NetPointNs3>();
175
176   ns3_initialize(ns3_tcp_model.get());
177
178   routing::NetPoint::on_creation.connect([](routing::NetPoint& pt) {
179     pt.extension_set<NetPointNs3>(new NetPointNs3());
180     XBT_VERB("SimGrid's %s is known as node %d within ns-3", pt.get_cname(), pt.extension<NetPointNs3>()->node_num);
181   });
182   routing::on_cluster_creation.connect(&clusterCreation_cb);
183
184   s4u::Engine::on_platform_created.connect(&postparse_cb);
185   s4u::NetZone::on_route_creation.connect(&routeCreation_cb);
186 }
187
188 NetworkNS3Model::~NetworkNS3Model() {
189   IPV4addr.clear();
190 }
191
192 LinkImpl* NetworkNS3Model::create_link(const std::string& name, const std::vector<double>& bandwidths, double latency,
193                                        s4u::Link::SharingPolicy policy)
194 {
195   XBT_INFO("create_link");
196   xbt_assert(bandwidths.size() == 1, "ns-3 links must use only 1 bandwidth.");
197   return new LinkNS3(this, name, bandwidths[0], latency, policy);
198 }
199
200 Action* NetworkNS3Model::communicate(s4u::Host* src, s4u::Host* dst, double size, double rate)
201 {
202   xbt_assert(rate == -1,
203              "Communication over ns-3 links cannot specify a specific rate. Please use -1 as a value instead of %f.",
204              rate);
205   return new NetworkNS3Action(this, size, src, dst);
206 }
207
208 double NetworkNS3Model::next_occurring_event(double now)
209 {
210   double time_to_next_flow_completion = 0.0;
211   XBT_DEBUG("ns3_next_occurring_event");
212
213   //get the first relevant value from the running_actions list
214
215   // If there is no comms in NS-3, then we do not move it forward.
216   // We will synchronize NS-3 with SimGrid when starting a new communication.
217   // (see NetworkNS3Action::NetworkNS3Action() for more details on this point)
218   if (get_started_action_set()->empty() || now == 0.0)
219     return -1.0;
220
221   XBT_DEBUG("doing a ns3 simulation for a duration of %f", now);
222   ns3_simulator(now);
223   time_to_next_flow_completion = ns3::Simulator::Now().GetSeconds() - surf_get_clock();
224   // NS-3 stops as soon as a flow ends,
225   // but it does not process the other flows that may finish at the same (simulated) time.
226   // If another flow ends at the same time, time_to_next_flow_completion = 0
227   if(double_equals(time_to_next_flow_completion, 0, sg_surf_precision))
228     time_to_next_flow_completion = 0.0;
229
230   XBT_DEBUG("min       : %f", now);
231   XBT_DEBUG("ns3  time : %f", ns3::Simulator::Now().GetSeconds());
232   XBT_DEBUG("surf time : %f", surf_get_clock());
233   XBT_DEBUG("Next completion %f :", time_to_next_flow_completion);
234
235   return time_to_next_flow_completion;
236 }
237
238 void NetworkNS3Model::update_actions_state(double now, double delta)
239 {
240   static std::vector<std::string> socket_to_destroy;
241
242   std::string ns3_socket;
243   for (const auto& elm : flow_from_sock) {
244     ns3_socket                = elm.first;
245     SgFlow* sgFlow            = elm.second;
246     NetworkNS3Action * action = sgFlow->action_;
247     XBT_DEBUG("Processing socket %p (action %p)",sgFlow,action);
248     // Because NS3 stops as soon as a flow is finished, the other flows that ends at the same time may remains in an
249     // inconsistent state (i.e. remains_ == 0 but finished_ == false).
250     // However, SimGrid considers sometimes that an action with remains_ == 0 is finished.
251     // Thus, to avoid inconsistencies between SimGrid and NS3, set remains to 0 only when the flow is finished in NS3
252     int remains = action->get_cost() - sgFlow->sent_bytes_;
253     if(remains > 0)
254       action->set_remains(remains);
255
256     if (TRACE_is_enabled() && action->get_state() == kernel::resource::Action::State::STARTED) {
257       double data_delta_sent = sgFlow->sent_bytes_ - action->last_sent_;
258
259       std::vector<LinkImpl*> route = std::vector<LinkImpl*>();
260
261       action->get_src().route_to(&action->get_dst(), route, nullptr);
262       for (auto const& link : route)
263         instr::resource_set_utilization("LINK", "bandwidth_used", link->get_cname(), action->get_category(),
264                                         (data_delta_sent) / delta, now - delta, delta);
265
266       action->last_sent_ = sgFlow->sent_bytes_;
267     }
268
269     if(sgFlow->finished_){
270       socket_to_destroy.push_back(ns3_socket);
271       XBT_DEBUG("Destroy socket %p of action %p", ns3_socket.c_str(), action);
272       action->set_remains(0);
273       action->finish(Action::State::FINISHED);
274     } else {
275       XBT_DEBUG("Socket %p sent %u bytes out of %u (%u remaining)", ns3_socket.c_str(), sgFlow->sent_bytes_,
276                 sgFlow->total_bytes_, sgFlow->remaining_);
277     }
278   }
279
280   while (not socket_to_destroy.empty()) {
281     ns3_socket = socket_to_destroy.back();
282     socket_to_destroy.pop_back();
283     SgFlow* flow = flow_from_sock.at(ns3_socket);
284     if (XBT_LOG_ISENABLED(ns3, xbt_log_priority_debug)) {
285       XBT_DEBUG("Removing socket %p of action %p", ns3_socket.c_str(), flow->action_);
286     }
287     delete flow;
288     flow_from_sock.erase(ns3_socket);
289     sink_from_sock.erase(ns3_socket);
290   }
291 }
292
293 /************
294  * Resource *
295  ************/
296
297 LinkNS3::LinkNS3(NetworkNS3Model* model, const std::string& name, double bandwidth, double latency,
298                  s4u::Link::SharingPolicy policy)
299     : LinkImpl(model, name, nullptr)
300 {
301   XBT_INFO("LinkNS3");
302   bandwidth_.peak = bandwidth;
303   latency_.peak   = latency;
304   sharing_policy_ = policy;
305
306   /* If wifi, create the wifizone now. If not, don't do anything: the links will be created in routeCreate_cb */
307   if (policy == s4u::Link::SharingPolicy::WIFI) {
308 //        ns3::NodeContainer ap_nodes;
309 //        ap_nodes.Create(1);
310
311 //        phy.SetChannel (channel.Create ());
312
313 //        wifi.SetRemoteStationManager ("ns3::AarfWifiManager");
314
315 //        mac.SetType ("ns3::ApWifiMac");
316 //        ns3::NetDeviceContainer apDevices;
317 //        apDevices = wifi.Install (phy, mac, ap_nodes);
318
319 //        mobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
320 //        mobility.Install (ap_nodes);
321
322 //        stack.Install(ap_nodes);
323
324 //        ns3::Ipv4AddressHelper address;
325 //        std::string addr = simgrid::xbt::string_printf("%d.%d.0.0", number_of_networks, number_of_links);
326 //        address.SetBase(addr.c_str(), "255.255.0.0");
327 //        interfaces.Add(address.Assign(apDevices));
328   }
329   s4u::Link::on_creation(*this->get_iface());
330 }
331
332 LinkNS3::~LinkNS3() = default;
333
334 void LinkNS3::apply_event(profile::Event*, double)
335 {
336   THROW_UNIMPLEMENTED;
337 }
338 void LinkNS3::set_bandwidth_profile(profile::Profile*)
339 {
340   xbt_die("The ns-3 network model doesn't support bandwidth profiles");
341 }
342 void LinkNS3::set_latency_profile(profile::Profile*)
343 {
344   xbt_die("The ns-3 network model doesn't support latency profiles");
345 }
346
347 /**********
348  * Action *
349  **********/
350
351 NetworkNS3Action::NetworkNS3Action(Model* model, double totalBytes, s4u::Host* src, s4u::Host* dst)
352     : NetworkAction(model, *src, *dst, totalBytes, false)
353 {
354   // If there is no other started actions, we need to move NS-3 forward to be sync with SimGrid
355   if (model->get_started_action_set()->size()==1){
356     while(double_positive(surf_get_clock() - ns3::Simulator::Now().GetSeconds(), sg_surf_precision)){
357       XBT_DEBUG("Synchronizing NS-3 (time %f) with SimGrid (time %f)", ns3::Simulator::Now().GetSeconds(), surf_get_clock());
358       ns3_simulator(surf_get_clock() - ns3::Simulator::Now().GetSeconds());
359     }
360   }
361
362   XBT_DEBUG("Communicate from %s to %s", src->get_cname(), dst->get_cname());
363
364   static int port_number = 1025; // Port number is limited from 1025 to 65 000
365
366   unsigned int node1 = src->get_netpoint()->extension<NetPointNs3>()->node_num;
367   unsigned int node2 = dst->get_netpoint()->extension<NetPointNs3>()->node_num;
368
369   ns3::Ptr<ns3::Node> src_node = src->get_netpoint()->extension<NetPointNs3>()->ns3_node_;
370   ns3::Ptr<ns3::Node> dst_node = dst->get_netpoint()->extension<NetPointNs3>()->ns3_node_;
371
372   xbt_assert(node2 < IPV4addr.size(), "Element %s is unknown to ns-3. Is it connected to any one-hop link?",
373              dst->get_netpoint()->get_cname());
374   std::string& addr = IPV4addr[node2];
375   xbt_assert(not addr.empty(), "Element %s is unknown to ns-3. Is it connected to any one-hop link?",
376              dst->get_netpoint()->get_cname());
377
378   XBT_DEBUG("ns3: Create flow of %.0f Bytes from %u to %u with Interface %s", totalBytes, node1, node2, addr.c_str());
379   ns3::PacketSinkHelper sink("ns3::TcpSocketFactory", ns3::InetSocketAddress(ns3::Ipv4Address::GetAny(), port_number));
380   ns3::ApplicationContainer apps = sink.Install(dst_node);
381
382   ns3::Ptr<ns3::Socket> sock = ns3::Socket::CreateSocket(src_node, ns3::TcpSocketFactory::GetTypeId());
383
384   flow_from_sock.insert({transform_socket_ptr(sock), new SgFlow(totalBytes, this)});
385   sink_from_sock.insert({transform_socket_ptr(sock), apps});
386
387   sock->Bind(ns3::InetSocketAddress(port_number));
388
389   ns3::Simulator::ScheduleNow(&start_flow, sock, addr.c_str(), port_number);
390
391   port_number++;
392   if(port_number > 65000){
393     port_number = 1025;
394     XBT_WARN("Too many connections! Port number is saturated. Trying to use the oldest ports.");
395   }
396   xbt_assert(port_number <= 65000, "Too many connections! Port number is saturated.");
397
398   s4u::Link::on_communicate(*this);
399 }
400
401 void NetworkNS3Action::suspend() {
402   THROW_UNIMPLEMENTED;
403 }
404
405 void NetworkNS3Action::resume() {
406   THROW_UNIMPLEMENTED;
407 }
408
409 std::list<LinkImpl*> NetworkNS3Action::get_links() const
410 {
411   THROW_UNIMPLEMENTED;
412 }
413 void NetworkNS3Action::update_remains_lazy(double /*now*/)
414 {
415   THROW_IMPOSSIBLE;
416 }
417
418 } // namespace resource
419 } // namespace kernel
420 } // namespace simgrid
421
422 void ns3_simulator(double maxSeconds)
423 {
424   ns3::EventId id;
425   if (maxSeconds > 0.0) // If there is a maximum amount of time to run
426     id = ns3::Simulator::Schedule(ns3::Seconds(maxSeconds), &ns3::Simulator::Stop);
427
428   XBT_DEBUG("Start simulator for at most %fs (current time: %f)", maxSeconds, surf_get_clock());
429   ns3::Simulator::Run ();
430   XBT_DEBUG("Simulator stopped at %fs", ns3::Simulator::Now().GetSeconds());
431
432   if(maxSeconds > 0.0)
433     id.Cancel();
434 }
435
436 // initialize the ns-3 interface and environment
437 void ns3_initialize(std::string TcpProtocol)
438 {
439   //  tcpModel are:
440   //  "ns3::TcpNewReno"
441   //  "ns3::TcpReno"
442   //  "ns3::TcpTahoe"
443
444   ns3::Config::SetDefault ("ns3::TcpSocket::SegmentSize", ns3::UintegerValue (1000));
445   ns3::Config::SetDefault ("ns3::TcpSocket::DelAckCount", ns3::UintegerValue (1));
446   ns3::Config::SetDefault ("ns3::TcpSocketBase::Timestamp", ns3::BooleanValue (false));
447
448   if (TcpProtocol == "default") {
449     /* nothing to do */
450
451   } else if (TcpProtocol == "Reno") {
452     XBT_INFO("Switching Tcp protocol to '%s'", TcpProtocol.c_str());
453     ns3::Config::SetDefault ("ns3::TcpL4Protocol::SocketType", ns3::StringValue("ns3::TcpReno"));
454
455   } else if (TcpProtocol == "NewReno") {
456     XBT_INFO("Switching Tcp protocol to '%s'", TcpProtocol.c_str());
457     ns3::Config::SetDefault ("ns3::TcpL4Protocol::SocketType", ns3::StringValue("ns3::TcpNewReno"));
458
459   } else if (TcpProtocol == "Tahoe") {
460     XBT_INFO("Switching Tcp protocol to '%s'", TcpProtocol.c_str());
461     ns3::Config::SetDefault ("ns3::TcpL4Protocol::SocketType", ns3::StringValue("ns3::TcpTahoe"));
462
463   } else {
464     xbt_die("The ns3/TcpModel must be: NewReno or Reno or Tahoe");
465   }
466 }
467
468 void ns3_add_cluster(const char* /*id*/, double bw, double lat)
469 {
470   ns3::NodeContainer Nodes;
471
472   for (unsigned int i = number_of_clusters_nodes; i < Cluster_nodes.GetN(); i++) {
473     Nodes.Add(Cluster_nodes.Get(i));
474     XBT_DEBUG("Add node %u to cluster", i);
475   }
476   number_of_clusters_nodes = Cluster_nodes.GetN();
477
478   XBT_DEBUG("Add router %u to cluster", nodes.GetN() - Nodes.GetN() - 1);
479   Nodes.Add(nodes.Get(nodes.GetN()-Nodes.GetN()-1));
480
481   xbt_assert(Nodes.GetN() <= 65000, "Cluster with ns-3 is limited to 65000 nodes");
482   ns3::CsmaHelper csma;
483   csma.SetChannelAttribute("DataRate", ns3::DataRateValue(ns3::DataRate(bw * 8))); // ns-3 takes bps, but we provide Bps
484   csma.SetChannelAttribute("Delay", ns3::TimeValue(ns3::Seconds(lat)));
485   ns3::NetDeviceContainer devices = csma.Install(Nodes);
486   XBT_DEBUG("Create CSMA");
487
488   std::string addr = simgrid::xbt::string_printf("%d.%d.0.0", number_of_networks, number_of_links);
489   XBT_DEBUG("Assign IP Addresses %s to CSMA.", addr.c_str());
490   ns3::Ipv4AddressHelper ipv4;
491   ipv4.SetBase(addr.c_str(), "255.255.0.0");
492   interfaces.Add(ipv4.Assign (devices));
493
494   if(number_of_links == 255){
495     xbt_assert(number_of_networks < 255, "Number of links and networks exceed 255*255");
496     number_of_links = 1;
497     number_of_networks++;
498   }else{
499     number_of_links++;
500   }
501   XBT_DEBUG("Number of nodes in Cluster_nodes: %u", Cluster_nodes.GetN());
502 }
503
504 static std::string transformIpv4Address(ns3::Ipv4Address from)
505 {
506   std::stringstream sstream;
507   sstream << from ;
508   return sstream.str();
509 }
510
511 void ns3_add_direct_route(NetPointNs3* src, NetPointNs3* dst, double bw, double lat,
512                           simgrid::s4u::Link::SharingPolicy policy)
513 {
514
515   XBT_INFO("ns3_add_direct_route");
516   ns3::Ipv4AddressHelper address;
517   ns3::NetDeviceContainer netA;
518
519   int srcNum = src->node_num;
520   int dstNum = dst->node_num;
521
522   ns3::Ptr<ns3::Node> a = src->ns3_node_;
523   ns3::Ptr<ns3::Node> b = dst->ns3_node_;
524
525   if (policy == simgrid::s4u::Link::SharingPolicy::WIFI) {
526 //      wifi.SetStandard (ns3::WIFI_PHY_STANDARD_80211n_2_4GHZ);
527 //      wifi.SetStandard (ns3::WIFI_PHY_STANDARD_80211ac);
528
529       wifiChannel.SetPropagationDelay ("ns3::ConstantSpeedPropagationDelayModel");
530
531 //      wifiChannel.AddPropagationLoss ("ns3::LogDistancePropagationLossModel",
532 //                                      "Exponent", ns3::DoubleValue (3.0),
533 //                                      "ReferenceLoss", ns3::DoubleValue (40.0459));
534
535       wifiPhy.SetChannel (wifiChannel.Create ());
536
537 //      wifi.SetRemoteStationManager ("ns3::ConstantRateWifiManager",
538 //                                    "ControlMode", ns3::StringValue ("VhtMcs0"),
539 //                                    "DataMode", ns3::StringValue ("VhtMcs9"));
540
541       mobility.SetMobilityModel ("ns3::ConstantPositionMobilityModel");
542
543       ns3::Ssid ssid = ns3::Ssid (std::to_string(number_of_networks) + "_" + std::to_string(number_of_links));
544
545       wifiMac.SetType("ns3::ApWifiMac",
546                   "Ssid", ns3::SsidValue (ssid));
547       netA.Add(wifi.Install (wifiPhy, wifiMac, a));
548
549       wifiMac.SetType ("ns3::StaWifiMac",
550                    "Ssid", ns3::SsidValue (ssid),
551                    "ActiveProbing", ns3::BooleanValue (false));
552       netA.Add(wifi.Install (wifiPhy, wifiMac, b));
553
554       ns3::Ptr<ns3::ListPositionAllocator> positionAllocS = ns3::CreateObject<ns3::ListPositionAllocator> ();
555 //      positionAllocS->Add(ns3::Vector(-5, mobility_base, 0.0));
556 //      positionAllocS->Add(ns3::Vector(5, mobility_base, 0.0));
557       positionAllocS->Add(ns3::Vector(-5, 0, 0.0));
558       positionAllocS->Add(ns3::Vector(5, 0, 0.0));
559 //      mobility_base += mobility_delta;
560       mobility.SetPositionAllocator(positionAllocS);
561       mobility.Install(a);
562       mobility.Install(b);
563
564   } else {
565     ns3::PointToPointHelper pointToPoint;
566
567     XBT_DEBUG("\tAdd PTP from %d to %d bw:'%f Bps' lat:'%fs'", srcNum, dstNum, bw, lat);
568     pointToPoint.SetDeviceAttribute("DataRate",
569                                     ns3::DataRateValue(ns3::DataRate(bw * 8))); // ns-3 takes bps, but we provide Bps
570     pointToPoint.SetChannelAttribute("Delay", ns3::TimeValue(ns3::Seconds(lat)));
571
572     netA.Add(pointToPoint.Install(a, b));
573   }
574
575   std::string addr = simgrid::xbt::string_printf("%d.%d.0.0", number_of_networks, number_of_links);
576   address.SetBase(addr.c_str(), "255.255.0.0");
577   XBT_DEBUG("\tInterface stack '%s'", addr.c_str());
578   interfaces.Add(address.Assign (netA));
579
580   if (IPV4addr.size() <= (unsigned)srcNum)
581     IPV4addr.resize(srcNum + 1);
582   IPV4addr[srcNum] = transformIpv4Address(interfaces.GetAddress(interfaces.GetN() - 2));
583
584   if (IPV4addr.size() <= (unsigned)dstNum)
585     IPV4addr.resize(dstNum + 1);
586   IPV4addr[dstNum] = transformIpv4Address(interfaces.GetAddress(interfaces.GetN() - 1));
587
588   if (number_of_links == 255){
589     xbt_assert(number_of_networks < 255, "Number of links and networks exceed 255*255");
590     number_of_links = 1;
591     number_of_networks++;
592   } else {
593     number_of_links++;
594   }
595 }