Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
further rework the option mechanism
[simgrid.git] / src / simgrid / sg_config.cpp
1 /* Copyright (c) 2009-2010, 2012-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 /* sg_config: configuration infrastructure for the simulation world       */
8
9 #include "xbt/misc.h"
10 #include "xbt/config.h"
11 #include "xbt/log.h"
12 #include "xbt/mallocator.h"
13 #include "xbt/str.h"
14 #include "xbt/lib.h"
15 #include "xbt/sysdep.h"
16 #include "surf/surf.h"
17 #include "surf/maxmin.h"
18 #include "instr/instr_interface.h"
19 #include "simgrid/simix.h"
20 #include "simgrid/sg_config.h"
21 #include "simgrid_config.h" /* what was compiled in? */
22 #if HAVE_SMPI
23 #include "smpi/smpi_interface.h"
24 #endif
25 #include "mc/mc.h"
26 #include "simgrid/instr.h"
27 #include "src/mc/mc_replay.h"
28
29 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_config, surf, "About the configuration of SimGrid");
30
31
32 /* 0: beginning of time (config cannot be changed yet);
33  * 1: initialized: cfg_set created (config can now be changed);
34  * 2: configured: command line parsed and config part of platform file was
35  *    integrated also, platform construction ongoing or done.
36  *    (Config cannot be changed anymore!)
37  */
38 int _sg_cfg_init_status = 0;
39
40 /* instruct the upper layer (simix or simdag) to exit as soon as possible */
41 int _sg_cfg_exit_asap = 0;
42
43 #define sg_cfg_exit_early() do { _sg_cfg_exit_asap = 1; return; } while (0)
44
45 /* Parse the command line, looking for options */
46 static void sg_config_cmd_line(int *argc, char **argv)
47 {
48   int shall_exit = 0;
49   int i, j;
50   char *opt;
51
52   for (j = i = 1; i < *argc; i++) {
53     if (!strncmp(argv[i], "--cfg=", strlen("--cfg="))) {
54       opt = strchr(argv[i], '=');
55       opt++;
56
57       xbt_cfg_set_parse(_sg_cfg_set, opt);
58       XBT_DEBUG("Did apply '%s' as config setting", opt);
59     } else if (!strcmp(argv[i], "--version")) {
60       printf("%s\n", SIMGRID_VERSION_STRING);
61       shall_exit = 1;
62     } else if (!strcmp(argv[i], "--cfg-help") || !strcmp(argv[i], "--help")) {
63       printf("Description of the configuration accepted by this simulator:\n");
64       xbt_cfg_help(_sg_cfg_set);
65       printf(
66           "\n"
67           "Each of these configurations can be used by adding\n"
68           "    --cfg=<option name>:<option value>\n"
69           "to the command line.\n"
70           "\n"
71           "For more information, please refer to:\n"
72           "   --help-aliases for the list of all option aliases.\n"
73           "   --help-logs and --help-log-categories for the details of logging output.\n"
74           "   --help-models for a list of all models known by this simulator.\n"
75           "   --help-tracing for the details of all tracing options known by this simulator.\n"
76           "   --version to get SimGrid version information.\n"
77           "\n"
78         );
79       shall_exit = 1;
80     } else if (!strcmp(argv[i], "--help-aliases")) {
81       printf("Here is a list of all deprecated option names, with their replacement.\n");
82       xbt_cfg_aliases(_sg_cfg_set);
83       printf("Please consider using the recent names\n");
84       shall_exit = 1;
85     } else if (!strcmp(argv[i], "--help-models")) {
86       int k;
87
88       model_help("host", surf_host_model_description);
89       printf("\n");
90       model_help("CPU", surf_cpu_model_description);
91       printf("\n");
92       model_help("network", surf_network_model_description);
93       printf("\nLong description of all optimization levels accepted by the models of this simulator:\n");
94       for (k = 0; surf_optimization_mode_description[k].name; k++)
95         printf("  %s: %s\n",
96                surf_optimization_mode_description[k].name,
97                surf_optimization_mode_description[k].description);
98       printf("Both network and CPU models have 'Lazy' as default optimization level\n\n");
99       shall_exit = 1;
100     } else if (!strcmp(argv[i], "--help-tracing")) {
101       TRACE_help (1);
102       shall_exit = 1;
103     } else {
104       argv[j++] = argv[i];
105     }
106   }
107   if (j < *argc) {
108     argv[j] = NULL;
109     *argc = j;
110   }
111   if (shall_exit)
112     sg_cfg_exit_early();
113 }
114
115 /* callback of the plugin variable */
116 static void _sg_cfg_cb__plugin(const char *name, int pos)
117 {
118   char *val;
119
120   XBT_VERB("PLUGIN");
121   xbt_assert(_sg_cfg_init_status < 2,
122               "Cannot load a plugin after the initialization");
123
124   val = xbt_cfg_get_string(_sg_cfg_set, name);
125
126   if (!strcmp(val, "help")) {
127     model_help("plugin", surf_plugin_description);
128     sg_cfg_exit_early();
129   }
130
131   /* New Module missing */
132   int plugin_id = find_model_description(surf_plugin_description, val);
133   surf_plugin_description[plugin_id].model_init_preparse();
134 }
135
136 /* callback of the host/model variable */
137 static void _sg_cfg_cb__host_model(const char *name, int pos)
138 {
139   char *val;
140
141   xbt_assert(_sg_cfg_init_status < 2,
142               "Cannot change the model after the initialization");
143
144   val = xbt_cfg_get_string(_sg_cfg_set, name);
145
146   if (!strcmp(val, "help")) {
147     model_help("host", surf_host_model_description);
148     sg_cfg_exit_early();
149   }
150
151   /* Make sure that the model exists */
152   find_model_description(surf_host_model_description, val);
153 }
154
155 /* callback of the vm/model variable */
156 static void _sg_cfg_cb__vm_model(const char *name, int pos)
157 {
158   char *val;
159
160   xbt_assert(_sg_cfg_init_status < 2,
161               "Cannot change the model after the initialization");
162
163   val = xbt_cfg_get_string(_sg_cfg_set, name);
164
165   if (!strcmp(val, "help")) {
166     model_help("vm", surf_vm_model_description);
167     sg_cfg_exit_early();
168   }
169
170   /* Make sure that the model exists */
171   find_model_description(surf_vm_model_description, val);
172 }
173
174 /* callback of the cpu/model variable */
175 static void _sg_cfg_cb__cpu_model(const char *name, int pos)
176 {
177   char *val;
178
179   xbt_assert(_sg_cfg_init_status < 2,
180               "Cannot change the model after the initialization");
181
182   val = xbt_cfg_get_string(_sg_cfg_set, name);
183
184   if (!strcmp(val, "help")) {
185     model_help("CPU", surf_cpu_model_description);
186     sg_cfg_exit_early();
187   }
188
189   /* New Module missing */
190   find_model_description(surf_cpu_model_description, val);
191 }
192
193 /* callback of the cpu/model variable */
194 static void _sg_cfg_cb__optimization_mode(const char *name, int pos)
195 {
196   char *val;
197
198   xbt_assert(_sg_cfg_init_status < 2,
199               "Cannot change the model after the initialization");
200
201   val = xbt_cfg_get_string(_sg_cfg_set, name);
202
203   if (!strcmp(val, "help")) {
204     model_help("optimization", surf_optimization_mode_description);
205     sg_cfg_exit_early();
206   }
207
208   /* New Module missing */
209   find_model_description(surf_optimization_mode_description, val);
210 }
211
212 /* callback of the cpu/model variable */
213 static void _sg_cfg_cb__storage_mode(const char *name, int pos)
214 {
215   char *val;
216
217   xbt_assert(_sg_cfg_init_status < 2,
218               "Cannot change the model after the initialization");
219
220   val = xbt_cfg_get_string(_sg_cfg_set, name);
221
222   if (!strcmp(val, "help")) {
223     model_help("storage", surf_storage_model_description);
224     sg_cfg_exit_early();
225   }
226
227   /* New Module missing */
228   find_model_description(surf_storage_model_description, val);
229 }
230
231 /* callback of the network_model variable */
232 static void _sg_cfg_cb__network_model(const char *name, int pos)
233 {
234   char *val;
235
236   xbt_assert(_sg_cfg_init_status < 2,
237               "Cannot change the model after the initialization");
238
239   val = xbt_cfg_get_string(_sg_cfg_set, name);
240
241   if (!strcmp(val, "help")) {
242     model_help("network", surf_network_model_description);
243     sg_cfg_exit_early();
244   }
245
246   /* New Module missing */
247   find_model_description(surf_network_model_description, val);
248 }
249
250 /* callbacks of the network models values */
251 static void _sg_cfg_cb__tcp_gamma(const char *name, int pos)
252 {
253   sg_tcp_gamma = xbt_cfg_get_double(_sg_cfg_set, name);
254 }
255
256 static void _sg_cfg_cb__maxmin_precision(const char* name, int pos)
257 {
258   sg_maxmin_precision = xbt_cfg_get_double(_sg_cfg_set, name);
259 }
260
261 static void _sg_cfg_cb__surf_precision(const char* name, int pos)
262 {
263   sg_surf_precision = xbt_cfg_get_double(_sg_cfg_set, name);
264 }
265
266 static void _sg_cfg_cb__sender_gap(const char* name, int pos)
267 {
268   sg_sender_gap = xbt_cfg_get_double(_sg_cfg_set, name);
269 }
270
271 static void _sg_cfg_cb__latency_factor(const char *name, int pos)
272 {
273   sg_latency_factor = xbt_cfg_get_double(_sg_cfg_set, name);
274 }
275
276 static void _sg_cfg_cb__bandwidth_factor(const char *name, int pos)
277 {
278   sg_bandwidth_factor = xbt_cfg_get_double(_sg_cfg_set, name);
279 }
280
281 static void _sg_cfg_cb__weight_S(const char *name, int pos)
282 {
283   sg_weight_S_parameter = xbt_cfg_get_double(_sg_cfg_set, name);
284 }
285
286 #if HAVE_SMPI
287 /* callback of the mpi collectives */
288 static void _sg_cfg_cb__coll(const char *category,
289                              s_mpi_coll_description_t * table,
290                              const char *name, int pos)
291 {
292   char *val;
293
294   xbt_assert(_sg_cfg_init_status < 2,
295               "Cannot change the model after the initialization");
296
297   val = xbt_cfg_get_string(_sg_cfg_set, name);
298
299   if (!strcmp(val, "help")) {
300     coll_help(category, table);
301     sg_cfg_exit_early();
302   }
303
304   /* New Module missing */
305   find_coll_description(table, val, category);
306 }
307 static void _sg_cfg_cb__coll_gather(const char *name, int pos){
308   _sg_cfg_cb__coll("gather", mpi_coll_gather_description, name, pos);
309 }
310 static void _sg_cfg_cb__coll_allgather(const char *name, int pos){
311   _sg_cfg_cb__coll("allgather", mpi_coll_allgather_description, name, pos);
312 }
313 static void _sg_cfg_cb__coll_allgatherv(const char *name, int pos){
314   _sg_cfg_cb__coll("allgatherv", mpi_coll_allgatherv_description, name, pos);
315 }
316 static void _sg_cfg_cb__coll_allreduce(const char *name, int pos)
317 {
318   _sg_cfg_cb__coll("allreduce", mpi_coll_allreduce_description, name, pos);
319 }
320 static void _sg_cfg_cb__coll_alltoall(const char *name, int pos)
321 {
322   _sg_cfg_cb__coll("alltoall", mpi_coll_alltoall_description, name, pos);
323 }
324 static void _sg_cfg_cb__coll_alltoallv(const char *name, int pos)
325 {
326   _sg_cfg_cb__coll("alltoallv", mpi_coll_alltoallv_description, name, pos);
327 }
328 static void _sg_cfg_cb__coll_bcast(const char *name, int pos)
329 {
330   _sg_cfg_cb__coll("bcast", mpi_coll_bcast_description, name, pos);
331 }
332 static void _sg_cfg_cb__coll_reduce(const char *name, int pos)
333 {
334   _sg_cfg_cb__coll("reduce", mpi_coll_reduce_description, name, pos);
335 }
336 static void _sg_cfg_cb__coll_reduce_scatter(const char *name, int pos){
337   _sg_cfg_cb__coll("reduce_scatter", mpi_coll_reduce_scatter_description, name, pos);
338 }
339 static void _sg_cfg_cb__coll_scatter(const char *name, int pos){
340   _sg_cfg_cb__coll("scatter", mpi_coll_scatter_description, name, pos);
341 }
342 static void _sg_cfg_cb__coll_barrier(const char *name, int pos){
343   _sg_cfg_cb__coll("barrier", mpi_coll_barrier_description, name, pos);
344 }
345
346 static void _sg_cfg_cb__wtime_sleep(const char *name, int pos){
347   smpi_wtime_sleep = xbt_cfg_get_double(_sg_cfg_set, name);
348 }
349
350 static void _sg_cfg_cb__iprobe_sleep(const char *name, int pos){
351   smpi_iprobe_sleep = xbt_cfg_get_double(_sg_cfg_set, name);
352 }
353
354 static void _sg_cfg_cb__test_sleep(const char *name, int pos){
355   smpi_test_sleep = xbt_cfg_get_double(_sg_cfg_set, name);
356 }
357
358
359
360 #endif
361
362 /* callback of the inclusion path */
363 static void _sg_cfg_cb__surf_path(const char *name, int pos)
364 {
365   char *path = xbt_strdup(xbt_cfg_get_string_at(_sg_cfg_set, name, pos));
366   xbt_dynar_push(surf_path, &path);
367 }
368
369 /* callback to decide if we want to use the model-checking */
370 #include "src/xbt_modinter.h"
371
372 #if HAVE_MC
373 extern int _sg_do_model_check;   /* this variable lives in xbt_main until I find a right location for it */
374 extern int _sg_do_model_check_record;
375 #endif
376
377 static void _sg_cfg_cb_model_check_replay(const char *name, int pos) {
378   MC_record_path = xbt_cfg_get_string(_sg_cfg_set, name);
379 }
380
381 #if HAVE_MC
382 static void _sg_cfg_cb_model_check_record(const char *name, int pos) {
383   _sg_do_model_check_record = xbt_cfg_get_boolean(_sg_cfg_set, name);
384 }
385 #endif
386
387 extern int _sg_do_verbose_exit;
388
389 static void _sg_cfg_cb_verbose_exit(const char *name, int pos)
390 {
391   _sg_do_verbose_exit = xbt_cfg_get_boolean(_sg_cfg_set, name);
392 }
393
394 extern int _sg_do_clean_atexit;
395
396 static void _sg_cfg_cb_clean_atexit(const char *name, int pos)
397 {
398   _sg_do_clean_atexit = xbt_cfg_get_boolean(_sg_cfg_set, name);
399 }
400
401 static void _sg_cfg_cb_context_factory(const char *name, int pos)
402 {
403   smx_context_factory_name = xbt_cfg_get_string(_sg_cfg_set, name);
404 }
405
406 static void _sg_cfg_cb_context_stack_size(const char *name, int pos)
407 {
408   smx_context_stack_size_was_set = 1;
409   smx_context_stack_size = xbt_cfg_get_int(_sg_cfg_set, name) * 1024;
410 }
411
412 static void _sg_cfg_cb_context_guard_size(const char *name, int pos)
413 {
414   smx_context_guard_size_was_set = 1;
415   smx_context_guard_size = xbt_cfg_get_int(_sg_cfg_set, name) * xbt_pagesize;
416 }
417
418 static void _sg_cfg_cb_contexts_nthreads(const char *name, int pos)
419 {
420   SIMIX_context_set_nthreads(xbt_cfg_get_int(_sg_cfg_set, name));
421 }
422
423 static void _sg_cfg_cb_contexts_parallel_threshold(const char *name, int pos)
424 {
425   SIMIX_context_set_parallel_threshold(xbt_cfg_get_int(_sg_cfg_set, name));
426 }
427
428 static void _sg_cfg_cb_contexts_parallel_mode(const char *name, int pos)
429 {
430   const char* mode_name = xbt_cfg_get_string(_sg_cfg_set, name);
431   if (!strcmp(mode_name, "posix")) {
432     SIMIX_context_set_parallel_mode(XBT_PARMAP_POSIX);
433   }
434   else if (!strcmp(mode_name, "futex")) {
435     SIMIX_context_set_parallel_mode(XBT_PARMAP_FUTEX);
436   }
437   else if (!strcmp(mode_name, "busy_wait")) {
438     SIMIX_context_set_parallel_mode(XBT_PARMAP_BUSY_WAIT);
439   }
440   else {
441     xbt_die("Command line setting of the parallel synchronization mode should "
442             "be one of \"posix\", \"futex\" or \"busy_wait\"");
443   }
444 }
445
446 static void _sg_cfg_cb__surf_network_coordinates(const char *name,
447                                                  int pos)
448 {
449   static int already_set = 0;
450   int val = xbt_cfg_get_boolean(_sg_cfg_set, name);
451   if (val) {
452     if (!already_set) {
453       COORD_HOST_LEVEL = sg_host_extension_create(xbt_dynar_free_voidp);
454       COORD_ASR_LEVEL  = xbt_lib_add_level(as_router_lib,xbt_dynar_free_voidp);
455     }
456     already_set = 1;
457   } else
458     if (already_set)
459       xbt_die("Setting of whether to use coordinate cannot be disabled once set.");
460 }
461
462 static void _sg_cfg_cb__surf_network_crosstraffic(const char *name,
463                                                   int pos)
464 {
465   sg_network_crosstraffic = xbt_cfg_get_boolean(_sg_cfg_set, name);
466 }
467
468 /* build description line with possible values */
469 static void describe_model(char *result,
470                            const s_surf_model_description_t model_description[],
471                            const char *name,
472                            const char *description)
473 {
474   char *p = result +
475     sprintf(result, "%s. Possible values: %s", description,
476             model_description[0].name ? model_description[0].name : "n/a");
477   int i;
478   for (i = 1; model_description[i].name; i++)
479     p += sprintf(p, ", %s", model_description[i].name);
480   sprintf(p,
481       ".\n       (use 'help' as a value to see the long description of each %s)",
482           name);
483 }
484
485 /* create the config set, register what should be and parse the command line*/
486 void sg_config_init(int *argc, char **argv)
487 {
488   char description[1024];
489
490   /* Create the configuration support */
491   if (_sg_cfg_init_status == 0) { /* Only create stuff if not already inited */
492
493     /* Plugins configuration */
494     describe_model(description, surf_plugin_description,
495                    "plugin", "The plugins");
496     xbt_cfg_register(&_sg_cfg_set, "plugin", description,
497                      xbt_cfgelm_string, 0, 1, &_sg_cfg_cb__plugin);
498
499     describe_model(description, surf_cpu_model_description, "model", "The model to use for the CPU");
500     xbt_cfg_register_string("cpu/model", description, "Cas01", &_sg_cfg_cb__cpu_model);
501
502     describe_model(description, surf_optimization_mode_description, "optimization mode", "The optimization modes to use for the CPU");
503     xbt_cfg_register_string("cpu/optim", description, "Lazy", &_sg_cfg_cb__optimization_mode);
504
505     describe_model(description, surf_storage_model_description, "model", "The model to use for the storage");
506     xbt_cfg_register_string("storage/model", description, "default", &_sg_cfg_cb__storage_mode);
507
508     describe_model(description, surf_network_model_description, "model", "The model to use for the network");
509     xbt_cfg_register_string("network/model", description, "LV08", &_sg_cfg_cb__network_model);
510
511     describe_model(description, surf_optimization_mode_description, "optimization mode", "The optimization modes to use for the network");
512     xbt_cfg_register_string("network/optim", description, "Lazy", &_sg_cfg_cb__optimization_mode);
513
514     describe_model(description, surf_host_model_description, "model", "The model to use for the host");
515     xbt_cfg_register_string("host/model", description, "default", &_sg_cfg_cb__host_model);
516
517     describe_model(description, surf_vm_model_description, "model", "The model to use for the vm");
518     xbt_cfg_register_string("vm/model", description, "default", &_sg_cfg_cb__vm_model);
519
520     xbt_cfg_register_double("network/TCP_gamma",
521         "Size of the biggest TCP window (cat /proc/sys/net/ipv4/tcp_[rw]mem for recv/send window; Use the last given value, which is the max window size)",
522         4194304.0, _sg_cfg_cb__tcp_gamma);
523
524     xbt_cfg_register_double("surf/precision", "Numerical precision used when updating simulation times (in seconds)",
525         0.00001, _sg_cfg_cb__surf_precision);
526
527     xbt_cfg_register_double("maxmin/precision",
528         "Numerical precision used when computing resource sharing (in ops/sec or bytes/sec)",
529         0.00001, _sg_cfg_cb__maxmin_precision);
530
531     /* The parameters of network models */
532
533     xbt_cfg_register_double("network/sender_gap", "Minimum gap between two overlapping sends", NAN, _sg_cfg_cb__sender_gap); /* real default for "network/sender_gap" is set in network_smpi.cpp */
534     xbt_cfg_register_double("network/latency_factor", "Correction factor to apply to the provided latency (default value set by network model)",
535         1.0, _sg_cfg_cb__latency_factor);
536     xbt_cfg_register_double("network/bandwidth_factor", "Correction factor to apply to the provided bandwidth (default value set by network model)",
537         1.0, _sg_cfg_cb__bandwidth_factor);
538     xbt_cfg_register_double("network/weight_S",
539         "Correction factor to apply to the weight of competing streams (default value set by network model)",
540         NAN, _sg_cfg_cb__weight_S); /* real default for "network/weight_S" is set in network_*.cpp */
541
542     /* Inclusion path */
543     xbt_cfg_register(&_sg_cfg_set, "path", "Lookup path for inclusions in platform and deployment XML files",
544                      xbt_cfgelm_string, 1, 0, _sg_cfg_cb__surf_path);
545
546     xbt_cfg_register_boolean("cpu/maxmin_selective_update",
547         "Update the constraint set propagating recursively to others constraints (off by default when optim is set to lazy)",
548         "no", NULL);
549     xbt_cfg_register_boolean("network/maxmin_selective_update",
550         "Update the constraint set propagating recursively to others constraints (off by default when optim is set to lazy)",
551         "no", NULL);
552     /* Replay (this part is enabled even if MC it disabled) */
553     xbt_cfg_register(&_sg_cfg_set, "model-check/replay", "Enable replay mode with the given path", xbt_cfgelm_string, 0, 1, _sg_cfg_cb_model_check_replay);
554
555 #if HAVE_MC
556     /* do model-checking-record */
557     xbt_cfg_register_boolean("model-check/record", "Record the model-checking paths", "no", _sg_cfg_cb_model_check_record);
558
559     xbt_cfg_register_int("model-check/checkpoint",
560                      "Specify the amount of steps between checkpoints during stateful model-checking (default: 0 => stateless verification). "
561                      "If value=1, one checkpoint is saved for each step => faster verification, but huge memory consumption; higher values are good compromises between speed and memory consumption.",
562                      0, _mc_cfg_cb_checkpoint);
563
564     xbt_cfg_register_boolean("model-check/sparse_checkpoint", "Use sparse per-page snapshots.", "no", _mc_cfg_cb_sparse_checkpoint);
565     xbt_cfg_register_boolean("model-check/soft-dirty", "Use sparse per-page snapshots.", "no", _mc_cfg_cb_soft_dirty);
566     xbt_cfg_register_boolean("model-check/ksm", "Kernel same-page merging", "no", _mc_cfg_cb_ksm);
567
568     xbt_cfg_register_string("model-check/property", "Name of the file containing the property, as formated by the ltl2ba program.",
569         "", _mc_cfg_cb_property);
570
571     xbt_cfg_register_boolean("model-check/communications_determinism",
572         "Whether to enable the detection of communication determinism", "no", _mc_cfg_cb_comms_determinism);
573
574     xbt_cfg_register_boolean("model-check/send_determinism",
575         "Enable/disable the detection of send-determinism in the communications schemes", "no", _mc_cfg_cb_send_determinism);
576
577     /* Specify the kind of model-checking reduction */
578     xbt_cfg_register_string("model-check/reduction", "Specify the kind of exploration reduction (either none or DPOR)", "dpor", _mc_cfg_cb_reduce);
579     xbt_cfg_register_boolean("model-check/timeout", "Whether to enable timeouts for wait requests", "no",  _mc_cfg_cb_timeout);
580
581     xbt_cfg_register_boolean("model-check/hash", "Whether to enable state hash for state comparison (experimental)", "no", _mc_cfg_cb_hash);
582     xbt_cfg_register_boolean("model-check/snapshot_fds", "Whether file descriptors must be snapshoted (currently unusable)", "no",  _mc_cfg_cb_snapshot_fds);
583     xbt_cfg_register_int("model-check/max_depth", "Maximal exploration depth (default: 1000)", 1000, _mc_cfg_cb_max_depth);
584     xbt_cfg_register_int("model-check/visited",
585         "Specify the number of visited state stored for state comparison reduction. If value=5, the last 5 visited states are stored. If value=0 (the default), all states are stored.",
586         0, _mc_cfg_cb_visited);
587
588     xbt_cfg_register_string("model-check/dot_output", "Name of dot output file corresponding to graph state", "", _mc_cfg_cb_dot_output);
589     xbt_cfg_register_boolean("model-check/termination", "Whether to enable non progressive cycle detection", "no", _mc_cfg_cb_termination);
590 #endif
591
592     xbt_cfg_register_boolean("verbose-exit", "Activate the \"do nothing\" mode in Ctrl-C", "yes", _sg_cfg_cb_verbose_exit);
593
594     /* context factory */
595     const char *dflt_ctx_fact = "thread";
596     {
597       char *p = description +
598         sprintf(description,
599                 "Context factory to use in SIMIX. Possible values: %s",
600                 dflt_ctx_fact);
601 #if HAVE_UCONTEXT_CONTEXTS
602       dflt_ctx_fact = "ucontext";
603       p += sprintf(p, ", %s", dflt_ctx_fact);
604 #endif
605 #if HAVE_RAW_CONTEXTS
606       dflt_ctx_fact = "raw";
607       p += sprintf(p, ", %s", dflt_ctx_fact);
608 #endif
609       sprintf(p, ".");
610     }
611     xbt_cfg_register_string("contexts/factory", description, dflt_ctx_fact, _sg_cfg_cb_context_factory);
612
613     xbt_cfg_register_int("contexts/stack_size", "Stack size of contexts in KiB", 8*1024, _sg_cfg_cb_context_stack_size);
614     /* (FIXME: this is unpleasant) Reset this static variable that was altered when setting the default value. */
615     smx_context_stack_size_was_set = 0;
616
617     /* guard size for contexts stacks in memory pages */
618     xbt_cfg_register_int("contexts/guard_size", "Guard size for contexts stacks in memory pages",
619 #if defined(_WIN32) || (PTH_STACKGROWTH != -1)
620         0, _sg_cfg_cb_context_guard_size);
621 #else
622         1, _sg_cfg_cb_context_guard_size);
623 #endif
624     /* No, it was not set yet (the above setdefault() changed this to 1). */
625     smx_context_guard_size_was_set = 0;
626
627     xbt_cfg_register_int("contexts/nthreads", "Number of parallel threads used to execute user contexts", 1, _sg_cfg_cb_contexts_nthreads);
628
629     xbt_cfg_register_int("contexts/parallel_threshold", "Minimal number of user contexts to be run in parallel (raw contexts only)",
630         2, _sg_cfg_cb_contexts_parallel_threshold);
631
632     /* synchronization mode for parallel user contexts */
633     xbt_cfg_register_string("contexts/synchro", "Synchronization mode to use when running contexts in parallel (either futex, posix or busy_wait)",
634 #if HAVE_FUTEX_H
635     "futex",     _sg_cfg_cb_contexts_parallel_mode);
636 #else //No futex on mac and posix is unimplememted yet
637     "busy_wait", _sg_cfg_cb_contexts_parallel_mode);
638 #endif
639
640     xbt_cfg_register_boolean("network/coordinates", "Whether we use a coordinate-based routing (as Vivaldi)",
641         "no", _sg_cfg_cb__surf_network_coordinates);
642
643     xbt_cfg_register_boolean("network/crosstraffic", "Activate the interferences between uploads and downloads for fluid max-min models (LV08, CM02)",
644         "yes", _sg_cfg_cb__surf_network_crosstraffic);
645
646 #if HAVE_NS3
647     xbt_cfg_register_string("ns3/TcpModel", "The ns3 tcp model can be : NewReno or Reno or Tahoe", "default", NULL);
648 #endif
649
650     //For smpi/bw_factor and smpi/lat_factor
651     //Default value have to be "threshold0:value0;threshold1:value1;...;thresholdN:valueN"
652     //test is if( size >= thresholdN ) return valueN;
653     //Values can be modified with command line --cfg=smpi/bw_factor:"threshold0:value0;threshold1:value1;...;thresholdN:valueN"
654     //  or with tag config put line <prop id="smpi/bw_factor" value="threshold0:value0;threshold1:value1;...;thresholdN:valueN"></prop>
655     // SMPI model can be used without enable_smpi, so keep this out of the ifdef.
656     xbt_cfg_register_string("smpi/bw_factor", "Bandwidth factors for smpi.",
657         "65472:0.940694;15424:0.697866;9376:0.58729;5776:1.08739;3484:0.77493;1426:0.608902;732:0.341987;257:0.338112;0:0.812084", NULL);
658
659     xbt_cfg_register_string("smpi/lat_factor", "Latency factors for smpi.",
660         "65472:11.6436;15424:3.48845;9376:2.59299;5776:2.18796;3484:1.88101;1426:1.61075;732:1.9503;257:1.95341;0:2.01467", NULL);
661     
662     xbt_cfg_register_string("smpi/IB_penalty_factors",
663         "Correction factor to communications using Infiniband model with contention (default value based on Stampede cluster profiling)",
664         "0.965;0.925;1.35", NULL);
665     
666 #if HAVE_SMPI
667     xbt_cfg_register_double("smpi/running_power", "Power of the host running the simulation (in flop/s). Used to bench the operations.", 20000.0, NULL);
668     xbt_cfg_register_boolean("smpi/display_timing", "Whether we should display the timing after simulation.", "no", NULL);
669     xbt_cfg_register_boolean("smpi/simulate_computation", "Whether the computational part of the simulated application should be simulated.", "yes", NULL);
670     xbt_cfg_register_boolean("smpi/use_shared_malloc", "Whether SMPI_SHARED_MALLOC is enabled. Disable it for debugging purposes.", "yes", NULL);
671     xbt_cfg_register_double("smpi/cpu_threshold", "Minimal computation time (in seconds) not discarded, or -1 for infinity.", 1e-6, NULL);
672     xbt_cfg_register_int("smpi/async_small_thresh", "Maximal size of messages that are to be sent asynchronously, without waiting for the receiver",
673         0, NULL);
674     xbt_cfg_register_int("smpi/send_is_detached_thresh", "Threshold of message size where MPI_Send stops behaving like MPI_Isend and becomes MPI_Ssend",
675         65536, NULL);
676
677     xbt_cfg_register_boolean("smpi/privatize_global_variables", "Whether we should privatize global variable at runtime.", "no", NULL);
678     xbt_cfg_register_string("smpi/os",  "Small messages timings (MPI_Send minimum time for small messages)", "1:0:0:0:0", NULL);
679     xbt_cfg_register_string("smpi/ois", "Small messages timings (MPI_Isend minimum time for small messages)", "1:0:0:0:0", NULL);
680     xbt_cfg_register_string("smpi/or",  "Small messages timings (MPI_Recv minimum time for small messages)", "1:0:0:0:0", NULL);
681     xbt_cfg_register_double("smpi/iprobe", "Minimum time to inject inside a call to MPI_Iprobe", 1e-4, _sg_cfg_cb__iprobe_sleep);
682     xbt_cfg_register_double("smpi/test", "Minimum time to inject inside a call to MPI_Test", 1e-4, _sg_cfg_cb__test_sleep);
683     xbt_cfg_register_double("smpi/wtime", "Minimum time to inject inside a call to MPI_Wtime", 0.0, _sg_cfg_cb__wtime_sleep);
684
685     xbt_cfg_register(&_sg_cfg_set, "smpi/coll_selector",
686                      "Which collective selector to use",
687                      xbt_cfgelm_string, 1, 1, NULL);
688     xbt_cfg_setdefault_string(_sg_cfg_set, "smpi/coll_selector", "default");
689
690     xbt_cfg_register(&_sg_cfg_set, "smpi/gather",
691                      "Which collective to use for gather",
692                      xbt_cfgelm_string, 0, 1, &_sg_cfg_cb__coll_gather);
693
694     xbt_cfg_register(&_sg_cfg_set, "smpi/allgather",
695                      "Which collective to use for allgather",
696                      xbt_cfgelm_string, 0, 1, &_sg_cfg_cb__coll_allgather);
697
698     xbt_cfg_register(&_sg_cfg_set, "smpi/barrier",
699                      "Which collective to use for barrier",
700                      xbt_cfgelm_string, 0, 1, &_sg_cfg_cb__coll_barrier);
701
702     xbt_cfg_register(&_sg_cfg_set, "smpi/reduce_scatter",
703                      "Which collective to use for reduce_scatter",
704                      xbt_cfgelm_string, 0, 1, &_sg_cfg_cb__coll_reduce_scatter);
705
706     xbt_cfg_register(&_sg_cfg_set, "smpi/scatter",
707                      "Which collective to use for scatter",
708                      xbt_cfgelm_string, 0, 1, &_sg_cfg_cb__coll_scatter);
709
710     xbt_cfg_register(&_sg_cfg_set, "smpi/allgatherv",
711                      "Which collective to use for allgatherv",
712                      xbt_cfgelm_string, 0, 1, &_sg_cfg_cb__coll_allgatherv);
713
714     xbt_cfg_register(&_sg_cfg_set, "smpi/allreduce",
715                      "Which collective to use for allreduce",
716                      xbt_cfgelm_string, 0, 1, &_sg_cfg_cb__coll_allreduce);
717
718     xbt_cfg_register(&_sg_cfg_set, "smpi/alltoall",
719                      "Which collective to use for alltoall",
720                      xbt_cfgelm_string, 0, 1, &_sg_cfg_cb__coll_alltoall);
721
722     xbt_cfg_register(&_sg_cfg_set, "smpi/alltoallv",
723                      "Which collective to use for alltoallv",
724                      xbt_cfgelm_string, 0, 1, &_sg_cfg_cb__coll_alltoallv);
725
726     xbt_cfg_register(&_sg_cfg_set, "smpi/bcast",
727                      "Which collective to use for bcast",
728                      xbt_cfgelm_string, 0, 1, &_sg_cfg_cb__coll_bcast);
729
730     xbt_cfg_register(&_sg_cfg_set, "smpi/reduce",
731                      "Which collective to use for reduce",
732                      xbt_cfgelm_string, 0, 1, &_sg_cfg_cb__coll_reduce);
733 #endif // HAVE_SMPI
734
735     xbt_cfg_register_boolean("exception/cutpath", "Whether to cut all path information from call traces, used e.g. in exceptions.", "no", NULL);
736
737     xbt_cfg_register_boolean("clean_atexit", "Whether to cleanup SimGrid (XBT,SIMIX,MSG) at exit. Disable it if your code segfaults at ending.",
738                      "yes", _sg_cfg_cb_clean_atexit);
739
740     if (!surf_path) {
741       /* retrieves the current directory of the current process */
742       const char *initial_path = __surf_get_initial_path();
743       xbt_assert((initial_path), "__surf_get_initial_path() failed! Can't resolve current Windows directory");
744
745       surf_path = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
746       xbt_cfg_setdefault_string(_sg_cfg_set, "path", initial_path);
747     }
748
749     xbt_cfg_check(_sg_cfg_set);
750     _sg_cfg_init_status = 1;
751
752     sg_config_cmd_line(argc, argv);
753
754     xbt_mallocator_initialization_is_done(SIMIX_context_is_parallel());
755   } else {
756     XBT_WARN("Call to sg_config_init() after initialization ignored");
757   }
758 }
759
760 void sg_config_finalize(void)
761 {
762   if (!_sg_cfg_init_status)
763     return;                     /* Not initialized yet. Nothing to do */
764
765   xbt_cfg_free(&_sg_cfg_set);
766   _sg_cfg_init_status = 0;
767 }
768
769 int sg_cfg_is_default_value(const char *name)
770 {
771   return xbt_cfg_is_default_value(_sg_cfg_set, name);
772 }
773
774 int sg_cfg_get_int(const char* name)
775 {
776   return xbt_cfg_get_int(_sg_cfg_set, name);
777 }
778
779 double sg_cfg_get_double(const char* name)
780 {
781   return xbt_cfg_get_double(_sg_cfg_set, name);
782 }
783
784 char* sg_cfg_get_string(const char* name)
785 {
786   return xbt_cfg_get_string(_sg_cfg_set, name);
787 }
788
789 int sg_cfg_get_boolean(const char* name)
790 {
791   return xbt_cfg_get_boolean(_sg_cfg_set, name);
792 }
793
794 xbt_dynar_t sg_cfg_get_dynar(const char* name)
795 {
796   return xbt_cfg_get_dynar(_sg_cfg_set, name);
797 }