Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make sure that NS3 simulation advance if there are active flows even if NS3 returns...
[simgrid.git] / src / surf / network_ns3.c
1 /* Copyright (c) 2007, 2008, 2009, 2010, 2011. 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 "surf_private.h"
8 #include "surf/ns3/ns3_interface.h"
9 #include "xbt/lib.h"
10 #include "surf/network_ns3_private.h"
11 #include "xbt/str.h"
12
13 extern xbt_lib_t host_lib;
14 extern xbt_lib_t link_lib;
15 extern xbt_lib_t as_router_lib;
16
17 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_network_ns3, surf,
18                                 "Logging specific to the SURF network NS3 module");
19
20 #define MAX_LENGHT_IPV4 16 //255.255.255.255\0
21
22 extern routing_global_t global_routing;
23 extern xbt_dict_t dict_socket;
24
25 static double time_to_next_flow_completion = -1;
26
27 static double ns3_share_resources(double min);
28 static void ns3_update_actions_state(double now, double delta);
29 static void finalize(void);
30 static surf_action_t ns3_communicate(const char *src_name,
31                                  const char *dst_name, double size, double rate);
32 static void action_suspend(surf_action_t action);
33 static void action_resume(surf_action_t action);
34 static int action_is_suspended(surf_action_t action);
35 static int action_unref(surf_action_t action);
36
37 xbt_dynar_t IPV4addr;
38
39 static void replace_str(char *str, const char *orig, const char *rep)
40 {
41   char buffer[30];
42   char *p;
43
44   if(!(p = strstr(str, orig)))  // Is 'orig' even in 'str'?
45     return;
46
47   strncpy(buffer, str, p-str); // Copy characters from 'str' start to 'orig' st$
48   buffer[p-str] = '\0';
49
50   sprintf(buffer+(p-str), "%s%s", rep, p+strlen(orig));
51   xbt_free(str);
52   str = xbt_strdup(buffer);
53 }
54
55 static void replace_bdw_ns3(char * bdw)
56 {
57         char *temp = xbt_strdup(bdw);
58         xbt_free(bdw);
59         bdw = bprintf("%fBps",atof(temp));
60         xbt_free(temp);
61
62 }
63
64 static void replace_lat_ns3(char * lat)
65 {
66         char *temp = xbt_strdup(lat);
67         xbt_free(lat);
68         lat = bprintf("%fs",atof(temp));
69         xbt_free(temp);
70 }
71
72 void parse_ns3_add_host(void)
73 {
74         XBT_DEBUG("NS3_ADD_HOST '%s'",A_surfxml_host_id);
75         xbt_lib_set(host_lib,
76                                 A_surfxml_host_id,
77                                 NS3_HOST_LEVEL,
78                                 ns3_add_host(A_surfxml_host_id)
79                                 );
80 }
81
82 static void ns3_free_dynar(void * elmts){
83         if(elmts)
84                 free(elmts);
85         return;
86 }
87
88 void parse_ns3_add_link(void)
89 {
90         XBT_DEBUG("NS3_ADD_LINK '%s'",A_surfxml_link_id);
91
92         if(!IPV4addr) IPV4addr = xbt_dynar_new(MAX_LENGHT_IPV4*sizeof(char),ns3_free_dynar);
93
94         tmgr_trace_t bw_trace;
95         tmgr_trace_t state_trace;
96         tmgr_trace_t lat_trace;
97
98         bw_trace = tmgr_trace_new(A_surfxml_link_bandwidth_file);
99         lat_trace = tmgr_trace_new(A_surfxml_link_latency_file);
100         state_trace = tmgr_trace_new(A_surfxml_link_state_file);
101
102         if (bw_trace)
103                 XBT_INFO("The NS3 network model doesn't support bandwidth state traces");
104         if (lat_trace)
105                 XBT_INFO("The NS3 network model doesn't support latency state traces");
106         if (state_trace)
107                 XBT_INFO("The NS3 network model doesn't support link state traces");
108
109         ns3_link_t link_ns3 = xbt_new0(s_ns3_link_t,1);;
110         link_ns3->id = xbt_strdup(A_surfxml_link_id);
111         link_ns3->bdw = xbt_strdup(A_surfxml_link_bandwidth);
112         link_ns3->lat = xbt_strdup(A_surfxml_link_latency);
113
114         surf_ns3_link_t link = xbt_new0(s_surf_ns3_link_t,1);
115         link->generic_resource.name = xbt_strdup(A_surfxml_link_id);
116         link->generic_resource.properties = current_property_set;
117         link->data = link_ns3;
118         link->created = 1;
119
120         xbt_lib_set(link_lib,A_surfxml_link_id,NS3_LINK_LEVEL,link_ns3);
121         xbt_lib_set(link_lib,A_surfxml_link_id,SURF_LINK_LEVEL,link);
122 }
123 void parse_ns3_add_router(void)
124 {
125         XBT_DEBUG("NS3_ADD_ROUTER '%s'",A_surfxml_router_id);
126         xbt_lib_set(as_router_lib,
127                                 A_surfxml_router_id,
128                                 NS3_ASR_LEVEL,
129                                 ns3_add_router(A_surfxml_router_id)
130                                 );
131 }
132 void parse_ns3_add_AS(void)
133 {
134         XBT_DEBUG("NS3_ADD_AS '%s'",A_surfxml_AS_id);
135         xbt_lib_set(as_router_lib,
136                                 A_surfxml_AS_id,
137                                 NS3_ASR_LEVEL,
138                                 ns3_add_AS(A_surfxml_AS_id)
139                                 );
140 }
141 void parse_ns3_add_cluster(void)
142 {
143         char *cluster_prefix = A_surfxml_cluster_prefix;
144         char *cluster_suffix = A_surfxml_cluster_suffix;
145         char *cluster_radical = A_surfxml_cluster_radical;
146         char *cluster_bb_bw = A_surfxml_cluster_bb_bw;
147         char *cluster_bb_lat = A_surfxml_cluster_bb_lat;
148         char *cluster_bw = A_surfxml_cluster_bw;
149         char *cluster_lat = A_surfxml_cluster_lat;
150         char *groups = NULL;
151
152         int start, end, i;
153         unsigned int iter;
154
155         xbt_dynar_t radical_elements;
156         xbt_dynar_t radical_ends;
157         xbt_dynar_t tab_elements_num = xbt_dynar_new(sizeof(int), NULL);
158
159         char *router_id,*host_id;
160
161         radical_elements = xbt_str_split(cluster_radical, ",");
162         xbt_dynar_foreach(radical_elements, iter, groups) {
163                 radical_ends = xbt_str_split(groups, "-");
164
165                 switch (xbt_dynar_length(radical_ends)) {
166                 case 1:
167                   surf_parse_get_int(&start,xbt_dynar_get_as(radical_ends, 0, char *));
168                   xbt_dynar_push_as(tab_elements_num, int, start);
169                   router_id = bprintf("ns3_%s%d%s", cluster_prefix, start, cluster_suffix);
170                   xbt_lib_set(host_lib,
171                                                 router_id,
172                                                 NS3_HOST_LEVEL,
173                                                 ns3_add_host_cluster(router_id)
174                                                 );
175                   XBT_DEBUG("NS3_ADD_ROUTER '%s'",router_id);
176                   free(router_id);
177                   break;
178
179                 case 2:
180                   surf_parse_get_int(&start,xbt_dynar_get_as(radical_ends, 0, char *));
181                   surf_parse_get_int(&end, xbt_dynar_get_as(radical_ends, 1, char *));
182                   for (i = start; i <= end; i++){
183                         xbt_dynar_push_as(tab_elements_num, int, i);
184                         router_id = bprintf("ns3_%s%d%s", cluster_prefix, i, cluster_suffix);
185                         xbt_lib_set(host_lib,
186                                                 router_id,
187                                                 NS3_HOST_LEVEL,
188                                                 ns3_add_host_cluster(router_id)
189                                                 );
190                         XBT_DEBUG("NS3_ADD_ROUTER '%s'",router_id);
191                         free(router_id);
192                   }
193                   break;
194
195                 default:
196                   XBT_DEBUG("Malformed radical");
197                 }
198         }
199
200         //Create links
201         unsigned int cpt;
202         int elmts;
203         char * lat = xbt_strdup(cluster_lat);
204         char * bw =  xbt_strdup(cluster_bw);
205         replace_lat_ns3(lat);
206         replace_bdw_ns3(bw);
207
208         xbt_dynar_foreach(tab_elements_num,cpt,elmts)
209         {
210                 host_id   = bprintf("%s%d%s", cluster_prefix, elmts, cluster_suffix);
211                 router_id = bprintf("ns3_%s%d%s", cluster_prefix, elmts, cluster_suffix);
212                 XBT_DEBUG("Create link from '%s' to '%s'",host_id,router_id);
213
214                 ns3_nodes_t host_src = xbt_lib_get_or_null(host_lib,host_id,  NS3_HOST_LEVEL);
215                 ns3_nodes_t host_dst = xbt_lib_get_or_null(host_lib,router_id,NS3_HOST_LEVEL);
216
217                 if(host_src && host_dst){}
218                 else xbt_die("\tns3_add_link from %d to %d",host_src->node_num,host_dst->node_num);
219
220                 ns3_add_link(host_src->node_num,host_dst->node_num,bw,lat);
221
222                 free(router_id);
223                 free(host_id);
224         }
225         xbt_dynar_free(&tab_elements_num);
226
227
228         //Create link backbone
229         lat = xbt_strdup(cluster_bb_lat);
230         bw =  xbt_strdup(cluster_bb_bw);
231         replace_lat_ns3(lat);
232         replace_bdw_ns3(bw);
233         ns3_add_cluster(bw,lat,A_surfxml_cluster_id);
234         xbt_free(lat);
235         xbt_free(bw);   
236 }
237
238 double ns3_get_link_latency (const void *link)
239 {
240         double lat;
241         //XBT_DEBUG("link_id:%s link_lat:%s link_bdw:%s",((surf_ns3_link_t)link)->data->id,((surf_ns3_link_t)link)->data->lat,((surf_ns3_link_t)link)->data->bdw);
242         sscanf(((surf_ns3_link_t)link)->data->lat,"%lg",&lat);
243         return lat;
244 }
245 double ns3_get_link_bandwidth (const void *link)
246 {
247         double bdw;
248         //XBT_DEBUG("link_id:%s link_lat:%s link_bdw:%s",((surf_ns3_link_t)link)->data->id,((surf_ns3_link_t)link)->data->lat,((surf_ns3_link_t)link)->data->bdw);
249         sscanf(((surf_ns3_link_t)link)->data->bdw,"%lg",&bdw);
250         return bdw;
251 }
252
253 static xbt_dynar_t ns3_get_route(const char *src, const char *dst)
254 {
255   return global_routing->get_route(src, dst);
256 }
257
258 void parse_ns3_end_platform(void)
259 {
260         ns3_end_platform();
261 }
262
263 /* Create the ns3 topology based on routing strategy */
264 void create_ns3_topology()
265 {
266    XBT_DEBUG("Starting topology generation");
267
268    xbt_dynar_shrink(IPV4addr,0);
269
270    //get the onelinks from the parsed platform
271    xbt_dynar_t onelink_routes = global_routing->get_onelink_routes();
272    if (!onelink_routes)
273      xbt_die("There is no routes!");
274    XBT_DEBUG("Have get_onelink_routes, found %ld routes",onelink_routes->used);
275    //save them in trace file
276    onelink_t onelink;
277    unsigned int iter;
278    xbt_dynar_foreach(onelink_routes, iter, onelink) {
279      char *src = onelink->src;
280      char *dst = onelink->dst;
281      void *link = onelink->link_ptr;
282
283      if( strcmp(src,dst) && ((surf_ns3_link_t)link)->created){
284      XBT_DEBUG("Route from '%s' to '%s' with link '%s'",src,dst,((surf_ns3_link_t)link)->data->id);
285      char * link_bdw = bprintf("%s",((surf_ns3_link_t)link)->data->bdw);
286          char * link_lat = bprintf("%s",(((surf_ns3_link_t)link)->data->lat));
287          replace_lat_ns3(link_lat);
288          replace_bdw_ns3(link_bdw);
289          ((surf_ns3_link_t)link)->created = 0;
290
291          //      XBT_DEBUG("src (%s), dst (%s), src_id = %d, dst_id = %d",src,dst, src_id, dst_id);
292      XBT_DEBUG("\tLink (%s) bdw:%s lat:%s",((surf_ns3_link_t)link)->data->id,
293                  link_bdw,
294                  link_lat
295                  );
296
297      //create link ns3
298      ns3_nodes_t host_src = xbt_lib_get_or_null(host_lib,src,NS3_HOST_LEVEL);
299      if(!host_src) host_src = xbt_lib_get_or_null(as_router_lib,src,NS3_ASR_LEVEL);
300      ns3_nodes_t host_dst = xbt_lib_get_or_null(host_lib,dst,NS3_HOST_LEVEL);
301      if(!host_dst) host_dst = xbt_lib_get_or_null(as_router_lib,dst,NS3_ASR_LEVEL);
302
303      if(host_src && host_dst){}
304      else xbt_die("\tns3_add_link from %d to %d",host_src->node_num,host_dst->node_num);
305
306      ns3_add_link(host_src->node_num,host_dst->node_num,link_bdw,link_lat);
307
308      xbt_free(link_bdw);
309      xbt_free(link_lat);
310      }
311    }
312 }
313
314 static void define_callbacks_ns3(const char *filename)
315 {
316   surfxml_add_callback(STag_surfxml_host_cb_list, &parse_ns3_add_host);       //HOST
317   surfxml_add_callback(STag_surfxml_router_cb_list, &parse_ns3_add_router);       //ROUTER
318   surfxml_add_callback(STag_surfxml_link_cb_list, &parse_ns3_add_link);       //LINK
319   surfxml_add_callback(STag_surfxml_AS_cb_list, &parse_ns3_add_AS);                   //AS
320   surfxml_add_callback(STag_surfxml_cluster_cb_list, &parse_ns3_add_cluster); //CLUSTER
321
322   surfxml_add_callback(ETag_surfxml_platform_cb_list, &create_ns3_topology);    //get_one_link_routes
323   surfxml_add_callback(ETag_surfxml_platform_cb_list, &parse_ns3_end_platform); //InitializeRoutes
324 }
325
326 static void free_ns3_elmts(void * elmts)
327 {
328 }
329
330 static void free_ns3_link(void * elmts)
331 {
332         ns3_link_t link = elmts;
333         free(link->id);
334         free(link->bdw);
335         free(link->lat);
336         free(link);
337 }
338
339 static void free_ns3_host(void * elmts)
340 {
341         ns3_nodes_t host = elmts;
342         free(host);
343 }
344
345 #ifdef HAVE_LATENCY_BOUND_TRACKING
346 static int ns3_get_link_latency_limited(surf_action_t action)
347 {
348   return 0;
349 }
350 #endif
351
352 #ifdef HAVE_TRACING
353 static void ns3_action_set_category(surf_action_t action, const char *category)
354 {
355   action->category = xbt_strdup (category);
356 }
357 #endif
358
359 void surf_network_model_init_NS3(const char *filename)
360 {
361         if (surf_network_model)
362                 return;
363
364         surf_network_model = surf_model_init();
365         surf_network_model->name = "network NS3";
366         surf_network_model->extension.network.get_link_latency = ns3_get_link_latency;
367         surf_network_model->extension.network.get_link_bandwidth = ns3_get_link_bandwidth;
368         surf_network_model->extension.network.get_route = ns3_get_route;
369
370         surf_network_model->model_private->share_resources = ns3_share_resources;
371         surf_network_model->model_private->update_actions_state = ns3_update_actions_state;
372         surf_network_model->model_private->finalize = finalize;
373
374         surf_network_model->suspend = action_suspend;
375         surf_network_model->resume = action_resume;
376         surf_network_model->is_suspended = action_is_suspended;
377         surf_network_model->action_unref = action_unref;
378         surf_network_model->extension.network.communicate = ns3_communicate;
379
380 #ifdef HAVE_TRACING
381   surf_network_model->set_category = ns3_action_set_category;
382 #endif
383
384         /* Added the initialization for NS3 interface */
385
386         if (ns3_initialize(xbt_cfg_get_string(_surf_cfg_set,"ns3/TcpModel"))) {
387         xbt_die("Impossible to initialize NS3 interface");
388         }
389
390         routing_model_create(sizeof(s_surf_ns3_link_t), NULL, NULL);
391         define_callbacks_ns3(filename);
392
393         NS3_HOST_LEVEL = xbt_lib_add_level(host_lib,(void_f_pvoid_t)free_ns3_host);
394         NS3_ASR_LEVEL  = xbt_lib_add_level(as_router_lib,(void_f_pvoid_t)free_ns3_host);
395         NS3_LINK_LEVEL = xbt_lib_add_level(link_lib,(void_f_pvoid_t)free_ns3_link);
396
397         xbt_dynar_push(model_list, &surf_network_model);
398         update_model_description(surf_network_model_description,
399                     "NS3", surf_network_model);
400
401 #ifdef HAVE_LATENCY_BOUND_TRACKING
402         surf_network_model->get_latency_limited = ns3_get_link_latency_limited;
403 #endif
404 }
405
406 static void finalize(void)
407 {
408         ns3_finalize();
409         xbt_dynar_free_container(&IPV4addr);
410 }
411
412 static double ns3_share_resources(double min)
413 {
414         XBT_DEBUG("ns3_share_resources");
415
416         xbt_swag_t running_actions =
417           surf_network_model->states.running_action_set;
418
419         //get the first relevant value from the running_actions list
420         if (!xbt_swag_size(running_actions) || min == 0.0)
421           return -1.0;
422         else
423          do {
424            ns3_simulator(min);
425            time_to_next_flow_completion = ns3_time() - surf_get_clock();
426          } while(time_to_next_flow_completion==0.0);
427
428         XBT_DEBUG("min       : %f",min);
429         XBT_DEBUG("ns3  time : %f",ns3_time());
430         XBT_DEBUG("surf time : %f",surf_get_clock());
431         XBT_DEBUG("Next completion %f :",time_to_next_flow_completion);
432
433         return time_to_next_flow_completion;
434 }
435
436 static void ns3_update_actions_state(double now, double delta)
437 {
438           xbt_dict_cursor_t cursor = NULL;
439           char *key;
440           void *data;
441
442           surf_action_network_ns3_t action = NULL;
443           xbt_swag_t running_actions =
444               surf_network_model->states.running_action_set;
445
446           /* If there are no running flows, just return */
447           if (!xbt_swag_size(running_actions))
448                 return;
449
450           xbt_dict_foreach(dict_socket,cursor,key,data){
451             action = (surf_action_network_ns3_t)ns3_get_socket_action(data);
452             action->generic_action.remains = action->generic_action.cost - ns3_get_socket_sent(data);
453
454 #ifdef HAVE_TRACING
455             if (TRACE_is_enabled() &&
456                 surf_action_state_get(&(action->generic_action)) == SURF_ACTION_RUNNING){
457               double data_sent = ns3_get_socket_sent(data);
458               double data_delta_sent = data_sent - action->last_sent;
459
460               xbt_dynar_t route = global_routing->get_route(action->src_name, action->dst_name);
461               unsigned int i;
462               for (i = 0; i < xbt_dynar_length (route); i++){
463                 surf_ns3_link_t *link = ((surf_ns3_link_t*)xbt_dynar_get_ptr (route, i));
464                 TRACE_surf_link_set_utilization ((*link)->generic_resource.name,
465                     action->generic_action.data,
466                     (surf_action_t) action,
467                     (data_delta_sent)/delta,
468                     now-delta,
469                     delta);
470               }
471               action->last_sent = data_sent;
472             }
473 #endif
474
475             if(ns3_get_socket_is_finished(data) == 1){
476               action->generic_action.finish = now;
477               surf_action_state_set(&(action->generic_action), SURF_ACTION_DONE);
478             }
479           }
480           return;
481 }
482
483 /* Max durations are not supported */
484 static surf_action_t ns3_communicate(const char *src_name,
485                                  const char *dst_name, double size, double rate)
486 {
487   surf_action_network_ns3_t action = NULL;
488
489   XBT_DEBUG("Communicate from %s to %s",src_name,dst_name);
490   action = surf_action_new(sizeof(s_surf_action_network_ns3_t), size, surf_network_model, 0);
491
492   ns3_create_flow(src_name, dst_name, surf_get_clock(), size, action);
493
494 #ifdef HAVE_TRACING
495   action->last_sent = 0;
496   action->src_name = xbt_strdup (src_name);
497   action->dst_name = xbt_strdup (dst_name);
498 #endif
499
500   return (surf_action_t) action;
501 }
502
503 /* Suspend a flow() */
504 static void action_suspend(surf_action_t action)
505 {
506   THROW_UNIMPLEMENTED;
507 }
508
509 /* Resume a flow() */
510 static void action_resume(surf_action_t action)
511 {
512   THROW_UNIMPLEMENTED;
513 }
514
515 /* Test whether a flow is suspended */
516 static int action_is_suspended(surf_action_t action)
517 {
518   return 0;
519 }
520
521 static int action_unref(surf_action_t action)
522 {
523   action->refcount--;
524   if (!action->refcount) {
525     xbt_swag_remove(action, action->state_set);
526
527 #ifdef HAVE_TRACING
528     xbt_free(((surf_action_network_ns3_t)action)->src_name);
529     xbt_free(((surf_action_network_ns3_t)action)->dst_name);
530     if (action->category)
531       xbt_free(action->category);
532 #endif
533
534     surf_action_free(&action);
535     return 1;
536   }
537   return 0;
538 }