Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Fix bug when trying to handle DW_OP_regN in MC_dwarf_resolve_location
[simgrid.git] / src / surf / surf.c
1 /* Copyright (c) 2004-2013. 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 "xbt/module.h"
9 #include "mc/mc.h"
10 #include "simix/smx_host_private.h"
11 #include "surf/surf_resource.h"
12 #include "xbt/xbt_os_thread.h"
13 #include "simgrid/sg_config.h"
14
15 #include <ctype.h>
16
17 XBT_LOG_NEW_CATEGORY(surf, "All SURF categories");
18 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_kernel, surf,
19                                 "Logging specific to SURF (kernel)");
20
21 /* Additional declarations for Windows portability. */
22
23 #ifndef MAX_DRIVE
24 #define MAX_DRIVE 26
25 #endif
26
27 #ifdef _XBT_WIN32
28 #include <windows.h>
29 static const char *disk_drives_letter_table[MAX_DRIVE] = {
30   "A:\\",
31   "B:\\",
32   "C:\\",
33   "D:\\",
34   "E:\\",
35   "F:\\",
36   "G:\\",
37   "H:\\",
38   "I:\\",
39   "J:\\",
40   "K:\\",
41   "L:\\",
42   "M:\\",
43   "N:\\",
44   "O:\\",
45   "P:\\",
46   "Q:\\",
47   "R:\\",
48   "S:\\",
49   "T:\\",
50   "U:\\",
51   "V:\\",
52   "W:\\",
53   "X:\\",
54   "Y:\\",
55   "Z:\\"
56 };
57 #endif                          /* #ifdef _XBT_WIN32 */
58
59 /*
60  * Returns the initial path. On Windows the initial path is
61  * the current directory for the current process in the other
62  * case the function returns "./" that represents the current
63  * directory on Unix/Linux platforms.
64  */
65
66 const char *__surf_get_initial_path(void)
67 {
68
69 #ifdef _XBT_WIN32
70   unsigned i;
71   char current_directory[MAX_PATH + 1] = { 0 };
72   unsigned int len = GetCurrentDirectory(MAX_PATH + 1, current_directory);
73   char root[4] = { 0 };
74
75   if (!len)
76     return NULL;
77
78   strncpy(root, current_directory, 3);
79
80   for (i = 0; i < MAX_DRIVE; i++) {
81     if (toupper(root[0]) == disk_drives_letter_table[i][0])
82       return disk_drives_letter_table[i];
83   }
84
85   return NULL;
86 #else
87   return "./";
88 #endif
89 }
90
91 /* The __surf_is_absolute_file_path() returns 1 if
92  * file_path is a absolute file path, in the other
93  * case the function returns 0.
94  */
95 int __surf_is_absolute_file_path(const char *file_path)
96 {
97 #ifdef _XBT_WIN32
98   WIN32_FIND_DATA wfd = { 0 };
99   HANDLE hFile = FindFirstFile(file_path, &wfd);
100
101   if (INVALID_HANDLE_VALUE == hFile)
102     return 0;
103
104   FindClose(hFile);
105   return 1;
106 #else
107   return (file_path[0] == '/');
108 #endif
109 }
110
111 double NOW = 0;
112
113 xbt_dynar_t model_list = NULL;
114 tmgr_history_t history = NULL;
115 lmm_system_t maxmin_system = NULL;
116 xbt_dynar_t surf_path = NULL;
117 xbt_dynar_t host_that_restart = NULL;
118 xbt_dict_t watched_hosts_lib;
119
120 /* Don't forget to update the option description in smx_config when you change this */
121 s_surf_model_description_t surf_network_model_description[] = {
122   {"LV08",
123    "Realistic network analytic model (slow-start modeled by multiplying latency by 10.4, bandwidth by .92; bottleneck sharing uses a payload of S=8775 for evaluating RTT). ",
124    surf_network_model_init_LegrandVelho},
125   {"Constant",
126    "Simplistic network model where all communication take a constant time (one second). This model provides the lowest realism, but is (marginally) faster.",
127    surf_network_model_init_Constant},
128   {"SMPI",
129    "Realistic network model specifically tailored for HPC settings (accurate modeling of slow start with correction factors on three intervals: < 1KiB, < 64 KiB, >= 64 KiB)",
130    surf_network_model_init_SMPI},
131   {"CM02",
132    "Legacy network analytic model (Very similar to LV08, but without corrective factors. The timings of small messages are thus poorly modeled).",
133    surf_network_model_init_CM02},
134 #ifdef HAVE_GTNETS
135   {"GTNets",
136    "Network pseudo-model using the GTNets simulator instead of an analytic model",
137    surf_network_model_init_GTNETS},
138 #endif
139 #ifdef HAVE_NS3
140   {"NS3",
141    "Network pseudo-model using the NS3 tcp model instead of an analytic model",
142   surf_network_model_init_NS3},
143 #endif
144   {"Reno",
145    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
146    surf_network_model_init_Reno},
147   {"Reno2",
148    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
149    surf_network_model_init_Reno2},
150   {"Vegas",
151    "Model from Steven H. Low using lagrange_solve instead of lmm_solve (experts only; check the code for more info).",
152    surf_network_model_init_Vegas},
153   {NULL, NULL, NULL}      /* this array must be NULL terminated */
154 };
155
156 s_surf_model_description_t surf_cpu_model_description[] = {
157   {"Cas01",
158    "Simplistic CPU model (time=size/power).",
159    surf_cpu_model_init_Cas01},
160   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
161 };
162
163 s_surf_model_description_t surf_workstation_model_description[] = {
164   {"default",
165    "Default workstation model. Currently, CPU:Cas01 and network:LV08 (with cross traffic enabled)",
166    surf_workstation_model_init_current_default},
167   {"compound",
168    "Workstation model that is automatically chosen if you change the network and CPU models",
169    surf_workstation_model_init_compound},
170   {"ptask_L07", "Workstation model somehow similar to Cas01+CM02 but allowing parallel tasks",
171    surf_workstation_model_init_ptask_L07},
172   {NULL, NULL, NULL}      /* this array must be NULL terminated */
173 };
174
175 s_surf_model_description_t surf_optimization_mode_description[] = {
176   {"Lazy",
177    "Lazy action management (partial invalidation in lmm + heap in action remaining).",
178    NULL},
179   {"TI",
180    "Trace integration. Highly optimized mode when using availability traces (only available for the Cas01 CPU model for now).",
181     NULL},
182   {"Full",
183    "Full update of remaining and variables. Slow but may be useful when debugging.",
184    NULL},
185   {NULL, NULL, NULL}      /* this array must be NULL terminated */
186 };
187
188 s_surf_model_description_t surf_storage_model_description[] = {
189   {"default",
190    "Simplistic storage model.",
191    surf_storage_model_init_default},
192   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
193 };
194
195 /* ********************************************************************* */
196 /* TUTORIAL: New model                                                   */
197 s_surf_model_description_t surf_new_model_description[] = {
198   {"default",
199    "Tutorial model.",
200    surf_new_model_init_default},
201   {NULL, NULL,  NULL}      /* this array must be NULL terminated */
202 };
203 /* ********************************************************************* */
204
205 #ifdef CONTEXT_THREADS
206 static xbt_parmap_t surf_parmap = NULL; /* parallel map on models */
207 #endif
208
209 static double *surf_mins = NULL; /* return value of share_resources for each model */
210 static int surf_min_index;       /* current index in surf_mins */
211 static double min;               /* duration determined by surf_solve */
212
213 static void surf_share_resources(surf_model_t model);
214 static void surf_update_actions_state(surf_model_t model);
215
216 /** Displays the long description of all registered models, and quit */
217 void model_help(const char *category, s_surf_model_description_t * table)
218 {
219   int i;
220   printf("Long description of the %s models accepted by this simulator:\n",
221          category);
222   for (i = 0; table[i].name; i++)
223     printf("  %s: %s\n", table[i].name, table[i].description);
224 }
225
226 int find_model_description(s_surf_model_description_t * table,
227                            const char *name)
228 {
229   int i;
230   char *name_list = NULL;
231
232   for (i = 0; table[i].name; i++)
233     if (!strcmp(name, table[i].name)) {
234       return i;
235     }
236   if (!table[0].name)
237     xbt_die("No model is valid! This is a bug.");
238   name_list = xbt_strdup(table[0].name);
239   for (i = 1; table[i].name; i++) {
240     name_list =
241         xbt_realloc(name_list,
242                     strlen(name_list) + strlen(table[i].name) + 3);
243     strcat(name_list, ", ");
244     strcat(name_list, table[i].name);
245   }
246   xbt_die("Model '%s' is invalid! Valid models are: %s.", name, name_list);
247   return -1;
248 }
249
250 double generic_maxmin_share_resources(xbt_swag_t running_actions,
251                                       size_t offset,
252                                       lmm_system_t sys,
253                                       void (*solve) (lmm_system_t))
254 {
255   surf_action_t action = NULL;
256   double min = -1;
257   double value = -1;
258 #define VARIABLE(action) (*((lmm_variable_t*)(((char *) (action)) + (offset))))
259
260   solve(sys);
261
262   xbt_swag_foreach(action, running_actions) {
263     value = lmm_variable_getvalue(VARIABLE(action));
264     if ((value > 0) || (action->max_duration >= 0))
265       break;
266   }
267
268   if (!action)
269     return -1.0;
270
271   if (value > 0) {
272     if (action->remains > 0)
273       min = action->remains / value;
274     else
275       min = 0.0;
276     if ((action->max_duration >= 0) && (action->max_duration < min))
277       min = action->max_duration;
278   } else
279     min = action->max_duration;
280
281
282   for (action = xbt_swag_getNext(action, running_actions->offset);
283        action;
284        action = xbt_swag_getNext(action, running_actions->offset)) {
285     value = lmm_variable_getvalue(VARIABLE(action));
286     if (value > 0) {
287       if (action->remains > 0)
288         value = action->remains / value;
289       else
290         value = 0.0;
291       if (value < min) {
292         min = value;
293         XBT_DEBUG("Updating min (value) with %p: %f", action, min);
294       }
295     }
296     if ((action->max_duration >= 0) && (action->max_duration < min)) {
297       min = action->max_duration;
298       XBT_DEBUG("Updating min (duration) with %p: %f", action, min);
299     }
300   }
301   XBT_DEBUG("min value : %f", min);
302
303 #undef VARIABLE
304   return min;
305 }
306
307 double generic_share_resources_lazy(double now, surf_model_t model)
308 {
309   surf_action_lmm_t action = NULL;
310   double min = -1;
311   double value;
312
313   XBT_DEBUG
314       ("Before share resources, the size of modified actions set is %d",
315        xbt_swag_size(model->model_private->modified_set));
316
317   lmm_solve(model->model_private->maxmin_system);
318
319   XBT_DEBUG
320       ("After share resources, The size of modified actions set is %d",
321        xbt_swag_size(model->model_private->modified_set));
322
323   while((action = xbt_swag_extract(model->model_private->modified_set))) {
324     int max_dur_flag = 0;
325
326     if (action->generic_action.state_set !=
327         model->states.running_action_set)
328       continue;
329
330     /* bogus priority, skip it */
331     if (action->generic_action.priority <= 0)
332       continue;
333
334     generic_update_action_remaining_lazy(action,now);
335
336     min = -1;
337     value = lmm_variable_getvalue(action->variable);
338     if (value > 0) {
339       if (action->generic_action.remains > 0) {
340         value = action->generic_action.remains / value;
341         min = now + value;
342       } else {
343         value = 0.0;
344         min = now;
345       }
346     }
347
348     if ((action->generic_action.max_duration != NO_MAX_DURATION)
349         && (min == -1
350             || action->generic_action.start +
351             action->generic_action.max_duration < min)) {
352       min = action->generic_action.start +
353           action->generic_action.max_duration;
354       max_dur_flag = 1;
355     }
356
357     XBT_DEBUG("Action(%p) Start %f Finish %f Max_duration %f", action,
358         action->generic_action.start, now + value,
359         action->generic_action.max_duration);
360
361     if (min != -1) {
362       surf_action_lmm_heap_remove(model->model_private->action_heap,action);
363       surf_action_lmm_heap_insert(model->model_private->action_heap,action, min, max_dur_flag ? MAX_DURATION : NORMAL);
364       XBT_DEBUG("Insert at heap action(%p) min %f now %f", action, min,
365                 now);
366     } else DIE_IMPOSSIBLE;
367   }
368
369   //hereafter must have already the min value for this resource model
370   if (xbt_heap_size(model->model_private->action_heap) > 0)
371     min = xbt_heap_maxkey(model->model_private->action_heap) - now;
372   else
373     min = -1;
374
375   XBT_DEBUG("The minimum with the HEAP %f", min);
376
377   return min;
378 }
379 static XBT_INLINE void routing_asr_host_free(void *p)
380 {
381   sg_routing_edge_t elm = p;
382   free(elm->name);
383   xbt_free(elm);
384 }
385
386 static XBT_INLINE void routing_asr_prop_free(void *p)
387 {
388   xbt_dict_t elm = p;
389   xbt_dict_free(&elm);
390 }
391
392 void sg_version(int *ver_major,int *ver_minor,int *ver_patch) {
393   *ver_major = SIMGRID_VERSION_MAJOR;
394   *ver_minor = SIMGRID_VERSION_MINOR;
395   *ver_patch = SIMGRID_VERSION_PATCH;
396 }
397
398 void surf_init(int *argc, char **argv)
399 {
400   XBT_DEBUG("Create all Libs");
401   host_lib = xbt_lib_new();
402   link_lib = xbt_lib_new();
403   as_router_lib = xbt_lib_new();
404   storage_lib = xbt_lib_new();
405   storage_type_lib = xbt_lib_new();
406   watched_hosts_lib = xbt_dict_new_homogeneous(NULL);
407
408   XBT_DEBUG("Add routing levels");
409   ROUTING_HOST_LEVEL = xbt_lib_add_level(host_lib,routing_asr_host_free);
410   ROUTING_ASR_LEVEL  = xbt_lib_add_level(as_router_lib,routing_asr_host_free);
411   ROUTING_PROP_ASR_LEVEL = xbt_lib_add_level(as_router_lib,routing_asr_prop_free);
412
413   XBT_DEBUG("Add SURF levels");
414   SURF_CPU_LEVEL = xbt_lib_add_level(host_lib,surf_resource_free);
415   SURF_WKS_LEVEL = xbt_lib_add_level(host_lib,surf_resource_free);
416   SURF_LINK_LEVEL = xbt_lib_add_level(link_lib,surf_resource_free);
417
418   xbt_init(argc, argv);
419   if (!model_list)
420     model_list = xbt_dynar_new(sizeof(surf_model_private_t), NULL);
421   if (!history)
422     history = tmgr_history_new();
423
424 #ifdef HAVE_TRACING
425   TRACE_add_start_function(TRACE_surf_alloc);
426   TRACE_add_end_function(TRACE_surf_release);
427 #endif
428
429   sg_config_init(argc, argv);
430
431   surf_action_init();
432   if (MC_is_active())
433     MC_memory_init();
434 }
435
436 #ifdef _XBT_WIN32
437 # define FILE_DELIM "\\"
438 #else
439 # define FILE_DELIM "/"         /* FIXME: move to better location */
440 #endif
441
442 FILE *surf_fopen(const char *name, const char *mode)
443 {
444   unsigned int cpt;
445   char *path_elm = NULL;
446   char *buff;
447   FILE *file = NULL;
448
449   xbt_assert(name);
450
451   if (__surf_is_absolute_file_path(name))       /* don't mess with absolute file names */
452     return fopen(name, mode);
453
454   /* search relative files in the path */
455   xbt_dynar_foreach(surf_path, cpt, path_elm) {
456     buff = bprintf("%s" FILE_DELIM "%s", path_elm, name);
457     file = fopen(buff, mode);
458     free(buff);
459
460     if (file)
461       return file;
462   }
463   return NULL;
464 }
465
466 void surf_exit(void)
467 {
468   unsigned int iter;
469   surf_model_t model = NULL;
470
471 #ifdef HAVE_TRACING
472   TRACE_end();                  /* Just in case it was not called by the upper
473                                  * layer (or there is no upper layer) */
474 #endif
475
476   sg_config_finalize();
477
478   xbt_dynar_foreach(model_list, iter, model)
479       model->model_private->finalize();
480   xbt_dynar_free(&model_list);
481   routing_exit();
482
483   if (maxmin_system) {
484     lmm_system_free(maxmin_system);
485     maxmin_system = NULL;
486   }
487   if (history) {
488     tmgr_history_free(history);
489     history = NULL;
490   }
491   surf_action_exit();
492
493 #ifdef CONTEXT_THREADS
494   xbt_parmap_destroy(surf_parmap);
495   xbt_free(surf_mins);
496   surf_mins = NULL;
497 #endif
498   xbt_dynar_free(&host_that_restart);
499   xbt_dynar_free(&surf_path);
500
501   xbt_lib_free(&host_lib);
502   xbt_lib_free(&link_lib);
503   xbt_lib_free(&as_router_lib);
504   xbt_lib_free(&storage_lib);
505   xbt_lib_free(&storage_type_lib);
506
507   xbt_dict_free(&watched_hosts_lib);
508
509   tmgr_finalize();
510   surf_parse_lex_destroy();
511   surf_parse_free_callbacks();
512
513   NOW = 0;                      /* Just in case the user plans to restart the simulation afterward */
514 }
515
516 void surf_presolve(void)
517 {
518   double next_event_date = -1.0;
519   tmgr_trace_event_t event = NULL;
520   double value = -1.0;
521   surf_resource_t resource = NULL;
522   surf_model_t model = NULL;
523   unsigned int iter;
524
525   XBT_DEBUG
526       ("First Run! Let's \"purge\" events and put models in the right state");
527   while ((next_event_date = tmgr_history_next_date(history)) != -1.0) {
528     if (next_event_date > NOW)
529       break;
530     while ((event =
531             tmgr_history_get_next_event_leq(history, next_event_date,
532                                             &value,
533                                             (void **) &resource))) {
534       if (value >= 0){
535         resource->model->model_private->update_resource_state(resource,
536                                                               event, value,
537                                                               NOW);
538       }
539     }
540   }
541   xbt_dynar_foreach(model_list, iter, model)
542       model->model_private->update_actions_state(NOW, 0.0);
543 }
544
545 double surf_solve(double max_date)
546 {
547   min = -1.0; /* duration */
548   double next_event_date = -1.0;
549   double model_next_action_end = -1.0;
550   double value = -1.0;
551   surf_resource_t resource = NULL;
552   surf_model_t model = NULL;
553   tmgr_trace_event_t event = NULL;
554   unsigned int iter;
555
556   if(!host_that_restart)
557     host_that_restart = xbt_dynar_new(sizeof(char*), NULL);
558
559   if (max_date != -1.0 && max_date != NOW) {
560     min = max_date - NOW;
561   }
562
563   XBT_DEBUG("Looking for next action end for all models except NS3");
564
565   if (surf_mins == NULL) {
566     surf_mins = xbt_new(double, xbt_dynar_length(model_list));
567   }
568   surf_min_index = 0;
569
570   /* sequential version */
571   xbt_dynar_foreach(model_list, iter, model) {
572     surf_share_resources(model);
573   }
574
575   unsigned i;
576   for (i = 0; i < xbt_dynar_length(model_list); i++) {
577     if ((min < 0.0 || surf_mins[i] < min)
578         && surf_mins[i] >= 0.0) {
579       min = surf_mins[i];
580     }
581   }
582
583   XBT_DEBUG("Min for resources (remember that NS3 don't update that value) : %f", min);
584
585   XBT_DEBUG("Looking for next trace event");
586
587   do {
588     XBT_DEBUG("Next TRACE event : %f", next_event_date);
589
590     next_event_date = tmgr_history_next_date(history);
591
592     if(surf_network_model->name && !strcmp(surf_network_model->name,"network NS3")){
593       if(next_event_date!=-1.0 && min!=-1.0) {
594         min = MIN(next_event_date - NOW, min);
595       } else{
596         min = MAX(next_event_date - NOW, min);
597       }
598
599       XBT_DEBUG("Run for network at most %f", min);
600       // run until min or next flow
601       model_next_action_end = surf_network_model->model_private->share_resources(min);
602
603       XBT_DEBUG("Min for network : %f", model_next_action_end);
604       if(model_next_action_end>=0.0)
605         min = model_next_action_end;
606     }
607
608     if (next_event_date < 0.0) {
609       XBT_DEBUG("no next TRACE event. Stop searching for it");
610       break;
611     }
612
613     if ((min == -1.0) || (next_event_date > NOW + min)) break;
614
615     XBT_DEBUG("Updating models (min = %g, NOW = %g, next_event_date = %g)",min, NOW, next_event_date);
616     while ((event =
617             tmgr_history_get_next_event_leq(history, next_event_date,
618                                             &value,
619                                             (void **) &resource))) {
620       if (resource->model->model_private->resource_used(resource) ||
621           xbt_dict_get_or_null(watched_hosts_lib,resource->name)
622           ) {
623         min = next_event_date - NOW;
624         XBT_DEBUG
625             ("This event will modify model state. Next event set to %f",
626              min);
627       }
628       /* update state of model_obj according to new value. Does not touch lmm.
629          It will be modified if needed when updating actions */
630       XBT_DEBUG("Calling update_resource_state for resource %s with min %f",
631              resource->name, min);
632
633       resource->model->model_private->update_resource_state(resource,
634                                                             event, value,
635                                                             next_event_date);
636     }
637   } while (1);
638
639   /* FIXME: Moved this test to here to avoid stopping simulation if there are actions running on cpus and all cpus are with availability = 0.
640    * This may cause an infinite loop if one cpu has a trace with periodicity = 0 and the other a trace with periodicity > 0.
641    * The options are: all traces with same periodicity(0 or >0) or we need to change the way how the events are managed */
642   if (min == -1.0) {
643   XBT_DEBUG("No next event at all. Bail out now.");
644     return -1.0;
645   }
646
647   XBT_DEBUG("Duration set to %f", min);
648
649   NOW = NOW + min;
650
651   /* sequential version */
652   xbt_dynar_foreach(model_list, iter, model) {
653     surf_update_actions_state(model);
654   }
655
656 #ifdef HAVE_TRACING
657   TRACE_paje_dump_buffer (0);
658 #endif
659
660   return min;
661 }
662
663 XBT_INLINE double surf_get_clock(void)
664 {
665   return NOW;
666 }
667
668 static void surf_share_resources(surf_model_t model)
669 {
670   double next_action_end = -1.0;
671   int i = __sync_fetch_and_add(&surf_min_index, 1);
672   if (strcmp(model->name,"network NS3")) {
673     XBT_DEBUG("Running for Resource [%s]", model->name);
674     next_action_end = model->model_private->share_resources(NOW);
675     XBT_DEBUG("Resource [%s] : next action end = %f",
676         model->name, next_action_end);
677   }
678   surf_mins[i] = next_action_end;
679 }
680
681 static void surf_update_actions_state(surf_model_t model)
682 {
683   model->model_private->update_actions_state(NOW, min);
684 }
685