Logo AND Algorithmique Numérique Distribuée

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