Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'coverity_scan' of github.com:mquinson/simgrid
[simgrid.git] / src / simix / smx_global.cpp
1 /* Copyright (c) 2007-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 #include <stdlib.h>
8 #include "src/portable.h"
9 #ifdef HAVE_SYS_PTRACE_H
10 # include <sys/types.h>
11 # include <sys/ptrace.h>
12 #endif
13
14 #include "src/surf/surf_interface.hpp"
15 #include "smx_private.h"
16 #include "smx_private.hpp"
17 #include "xbt/heap.h"
18 #include "xbt/sysdep.h"
19 #include "xbt/log.h"
20 #include "xbt/str.h"
21 #include "xbt/ex.h"             /* ex_backtrace_display */
22 #include "mc/mc.h"
23 #include "src/mc/mc_replay.h"
24 #include "simgrid/sg_config.h"
25
26 #include "src/surf/callbacks.h"
27
28 #ifdef HAVE_MC
29 #include "src/mc/mc_private.h"
30 #include "src/mc/mc_protocol.h"
31 #include "src/mc/mc_client.h"
32 #endif
33
34 #ifdef HAVE_MC
35 #include <stdlib.h>
36 #include "src/mc/mc_protocol.h"
37 #endif 
38
39 #include "src/mc/mc_record.h"
40 #include "src/surf/platform.hpp"
41
42 #ifdef HAVE_SMPI
43 #include "src/smpi/private.h"
44 #endif
45
46 XBT_LOG_NEW_CATEGORY(simix, "All SIMIX categories");
47 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_kernel, simix,
48                                 "Logging specific to SIMIX (kernel)");
49
50 smx_global_t simix_global = NULL;
51 static xbt_heap_t simix_timers = NULL;
52
53 /** @brief Timer datatype */
54 typedef struct s_smx_timer {
55   double date;
56   void(* func)(void*);
57   void* args;
58 } s_smx_timer_t;
59
60 void (*SMPI_switch_data_segment)(int) = NULL;
61
62 static void* SIMIX_synchro_mallocator_new_f(void);
63 static void SIMIX_synchro_mallocator_free_f(void* synchro);
64 static void SIMIX_synchro_mallocator_reset_f(void* synchro);
65
66 /* FIXME: Yeah, I'll do it in a portable maner one day [Mt] */
67 #include <signal.h>
68
69 int _sg_do_verbose_exit = 1;
70 static void _XBT_CALL inthandler(int ignored)
71 {
72   if ( _sg_do_verbose_exit ) {
73      XBT_INFO("CTRL-C pressed. The current status will be displayed before exit (disable that behavior with option 'verbose-exit').");
74      SIMIX_display_process_status();
75   }
76   else {
77      XBT_INFO("CTRL-C pressed, exiting. Hiding the current process status since 'verbose-exit' is set to false.");
78   }
79   exit(1);
80 }
81
82 #ifndef WIN32
83 static void _XBT_CALL segvhandler(int signum, siginfo_t *siginfo, void *context)
84 {
85   if (siginfo->si_signo == SIGSEGV && siginfo->si_code == SEGV_ACCERR) {
86     fprintf(stderr,
87             "Access violation detected.\n"
88             "This can result from a programming error in your code or, although less likely,\n"
89             "from a bug in SimGrid itself.  This can also be the sign of a bug in the OS or\n"
90             "in third-party libraries.  Failing hardware can sometimes generate such errors\n"
91             "too.\n"
92             "Finally, if nothing of the above applies, this can result from a stack overflow.\n"
93             "Try to increase stack size with --cfg=contexts/stack_size (current size is %d KiB).\n",
94             smx_context_stack_size / 1024);
95     if (XBT_LOG_ISENABLED(simix_kernel, xbt_log_priority_debug)) {
96       fprintf(stderr,
97               "siginfo = {si_signo = %d, si_errno = %d, si_code = %d, si_addr = %p}\n",
98               siginfo->si_signo, siginfo->si_errno, siginfo->si_code, siginfo->si_addr);
99     }
100   } else  if (siginfo->si_signo == SIGSEGV) {
101     fprintf(stderr, "Segmentation fault.\n");
102 #ifdef HAVE_SMPI
103     if (smpi_enabled() && !smpi_privatize_global_variables) {
104 #ifdef HAVE_PRIVATIZATION
105       fprintf(stderr,
106         "Try to enable SMPI variable privatization with --cfg=smpi/privatize_global_variables:yes.\n");
107 #else
108       fprintf(stderr,
109         "Sadly, your system does not support --cfg=smpi/privatize_global_variables:yes (yet).\n");
110 #endif
111     }
112 #endif
113   }
114   raise(signum);
115 }
116
117 char sigsegv_stack[SIGSTKSZ];   /* alternate stack for SIGSEGV handler */
118
119 /**
120  * Install signal handler for SIGSEGV.  Check that nobody has already installed
121  * its own handler.  For example, the Java VM does this.
122  */
123 static void install_segvhandler(void)
124 {
125   stack_t stack, old_stack;
126   stack.ss_sp = sigsegv_stack;
127   stack.ss_size = sizeof sigsegv_stack;
128   stack.ss_flags = 0;
129
130   if (sigaltstack(&stack, &old_stack) == -1) {
131     XBT_WARN("Failed to register alternate signal stack: %s",
132              strerror(errno));
133     return;
134   }
135   if (!(old_stack.ss_flags & SS_DISABLE)) {
136     XBT_DEBUG("An alternate stack was already installed (sp=%p, size=%zd, flags=%x). Restore it.",
137               old_stack.ss_sp, old_stack.ss_size, old_stack.ss_flags);
138     sigaltstack(&old_stack, NULL);
139   }
140
141   struct sigaction action, old_action;
142   action.sa_sigaction = segvhandler;
143   action.sa_flags = SA_ONSTACK | SA_RESETHAND | SA_SIGINFO;
144   sigemptyset(&action.sa_mask);
145
146   if (sigaction(SIGSEGV, &action, &old_action) == -1) {
147     XBT_WARN("Failed to register signal handler for SIGSEGV: %s",
148              strerror(errno));
149     return;
150   }
151   if ((old_action.sa_flags & SA_SIGINFO) || old_action.sa_handler != SIG_DFL) {
152     XBT_DEBUG("A signal handler was already installed for SIGSEGV (%p). Restore it.",
153              (old_action.sa_flags & SA_SIGINFO) ?
154              (void*)old_action.sa_sigaction : (void*)old_action.sa_handler);
155     sigaction(SIGSEGV, &old_action, NULL);
156   }
157 }
158
159 #endif
160 /********************************* SIMIX **************************************/
161
162 double SIMIX_timer_next(void)
163 {
164   return xbt_heap_size(simix_timers) > 0 ? xbt_heap_maxkey(simix_timers) : -1.0;
165 }
166
167 static void kill_process(smx_process_t process)
168 {
169   SIMIX_process_kill(process, NULL);
170 }
171
172 static void SIMIX_storage_create_(smx_storage_t storage)
173 {
174   const char* key = xbt_dict_get_elm_key(storage);
175   SIMIX_storage_create(key, storage, NULL);
176 }
177
178 static std::function<void()> maestro_code;
179
180 namespace simgrid {
181 namespace simix {
182
183 XBT_PUBLIC(void) set_maestro(std::function<void()> code)
184 {
185   maestro_code = std::move(code);
186 }
187
188 }
189 }
190
191 void SIMIX_set_maestro(void (*code)(void*), void* data)
192 {
193   maestro_code = std::bind(code, data);
194 }
195
196 /**
197  * \ingroup SIMIX_API
198  * \brief Initialize SIMIX internal data.
199  *
200  * \param argc Argc
201  * \param argv Argv
202  */
203 void SIMIX_global_init(int *argc, char **argv)
204 {
205 #ifdef HAVE_MC
206   _sg_do_model_check = getenv(MC_ENV_VARIABLE) != NULL;
207 #endif
208
209   s_smx_process_t proc;
210
211   if (!simix_global) {
212     simix_global = xbt_new0(s_smx_global_t, 1);
213
214 #ifdef TIME_BENCH_AMDAHL
215     simix_global->timer_seq = xbt_os_timer_new();
216     simix_global->timer_par = xbt_os_timer_new();
217     xbt_os_cputimer_start(simix_global->timer_seq);
218 #endif
219     simix_global->process_to_run = xbt_dynar_new(sizeof(smx_process_t), NULL);
220     simix_global->process_that_ran = xbt_dynar_new(sizeof(smx_process_t), NULL);
221     simix_global->process_list =
222         xbt_swag_new(xbt_swag_offset(proc, process_hookup));
223     simix_global->process_to_destroy =
224         xbt_swag_new(xbt_swag_offset(proc, destroy_hookup));
225
226     simix_global->maestro_process = NULL;
227     simix_global->registered_functions = xbt_dict_new_homogeneous(NULL);
228
229     simix_global->create_process_function = SIMIX_process_create;
230     simix_global->kill_process_function = kill_process;
231     simix_global->cleanup_process_function = SIMIX_process_cleanup;
232     simix_global->synchro_mallocator = xbt_mallocator_new(65536,
233         SIMIX_synchro_mallocator_new_f, SIMIX_synchro_mallocator_free_f,
234         SIMIX_synchro_mallocator_reset_f);
235     simix_global->mutex = xbt_os_mutex_init();
236
237     surf_init(argc, argv);      /* Initialize SURF structures */
238     SIMIX_context_mod_init();
239
240     // Either create a new context with maestro or create
241     // a context object with the current context mestro):
242     simgrid::simix::create_maestro(maestro_code);
243
244     /* context exception handlers */
245     __xbt_running_ctx_fetch = SIMIX_process_get_running_context;
246     __xbt_ex_terminate = SIMIX_process_exception_terminate;
247
248     SIMIX_network_init();
249
250     /* Prepare to display some more info when dying on Ctrl-C pressing */
251     signal(SIGINT, inthandler);
252
253 #ifndef WIN32
254     install_segvhandler();
255 #endif
256     /* register a function to be called by SURF after the environment creation */
257     sg_platf_init();
258     simgrid::surf::on_postparse.connect(SIMIX_post_create_environment);
259     simgrid::s4u::Host::onCreation.connect([](simgrid::s4u::Host& host) {
260       SIMIX_host_create(&host);
261     });
262     surf_on_storage_created(SIMIX_storage_create_);
263
264   }
265   if (!simix_timers) {
266     simix_timers = xbt_heap_new(8, &free);
267   }
268
269   SIMIX_STORAGE_LEVEL = xbt_lib_add_level(storage_lib, SIMIX_storage_destroy);
270
271   if (sg_cfg_get_boolean("clean_atexit"))
272     atexit(SIMIX_clean);
273
274 #ifdef HAVE_MC
275   // The communication initialization is done ASAP.
276   // We need to communicate  initialization of the different layers to the model-checker.
277   MC_client_init();
278 #endif
279
280   if (_sg_cfg_exit_asap)
281     exit(0);
282 }
283
284 int smx_cleaned = 0;
285 /**
286  * \ingroup SIMIX_API
287  * \brief Clean the SIMIX simulation
288  *
289  * This functions remove the memory used by SIMIX
290  */
291 void SIMIX_clean(void)
292 {
293 #ifdef TIME_BENCH_PER_SR
294   smx_ctx_raw_new_sr();
295 #endif
296   if (smx_cleaned) return; // to avoid double cleaning by java and C
297   smx_cleaned = 1;
298   XBT_DEBUG("SIMIX_clean called. Simulation's over.");
299   if (!xbt_dynar_is_empty(simix_global->process_to_run) && SIMIX_get_clock() == 0.0) {
300     XBT_CRITICAL("   ");
301     XBT_CRITICAL("The time is still 0, and you still have processes ready to run.");
302     XBT_CRITICAL("It seems that you forgot to run the simulation that you setup.");
303     xbt_die("Bailing out to avoid that stop-before-start madness. Please fix your code.");
304   }
305   /* Kill all processes (but maestro) */
306   SIMIX_process_killall(simix_global->maestro_process, 1);
307
308   /* Exit the SIMIX network module */
309   SIMIX_network_exit();
310
311   xbt_heap_free(simix_timers);
312   simix_timers = NULL;
313   /* Free the remaining data structures */
314   xbt_dynar_free(&simix_global->process_to_run);
315   xbt_dynar_free(&simix_global->process_that_ran);
316   xbt_swag_free(simix_global->process_to_destroy);
317   xbt_swag_free(simix_global->process_list);
318   simix_global->process_list = NULL;
319   simix_global->process_to_destroy = NULL;
320   xbt_dict_free(&(simix_global->registered_functions));
321
322   xbt_os_mutex_destroy(simix_global->mutex);
323   simix_global->mutex = NULL;
324
325   /* Let's free maestro now */
326   SIMIX_context_free(simix_global->maestro_process->context);
327   xbt_free(simix_global->maestro_process->running_ctx);
328   xbt_free(simix_global->maestro_process);
329   simix_global->maestro_process = NULL;
330
331   /* Restore the default exception setup */
332   __xbt_running_ctx_fetch = &__xbt_ex_ctx_default;
333   __xbt_ex_terminate = &__xbt_ex_terminate_default;
334
335   /* Finish context module and SURF */
336   SIMIX_context_mod_exit();
337
338   surf_exit();
339
340 #ifdef TIME_BENCH_AMDAHL
341   xbt_os_cputimer_stop(simix_global->timer_seq);
342   XBT_INFO("Amdahl timing informations. Sequential time: %f; Parallel time: %f",
343            xbt_os_timer_elapsed(simix_global->timer_seq),
344            xbt_os_timer_elapsed(simix_global->timer_par));
345   xbt_os_timer_free(simix_global->timer_seq);
346   xbt_os_timer_free(simix_global->timer_par);
347 #endif
348
349   xbt_mallocator_free(simix_global->synchro_mallocator);
350   xbt_free(simix_global);
351   simix_global = NULL;
352
353   return;
354 }
355
356
357 /**
358  * \ingroup SIMIX_API
359  * \brief A clock (in second).
360  *
361  * \return Return the clock.
362  */
363 double SIMIX_get_clock(void)
364 {
365   if(MC_is_active() || MC_record_replay_is_active()){
366     return MC_process_clock_get(SIMIX_process_self());
367   }else{
368     return surf_get_clock();
369   }
370 }
371
372 static int process_syscall_color(void *p)
373 {
374   switch ((*(smx_process_t *)p)->simcall.call) {
375   case SIMCALL_NONE:
376   case SIMCALL_PROCESS_KILL:
377     return 2;
378   case SIMCALL_PROCESS_RESUME:
379     return 1;
380   default:
381     return 0;
382   }
383 }
384
385 /**
386  * \ingroup SIMIX_API
387  * \brief Run the main simulation loop.
388  */
389 void SIMIX_run(void)
390 {
391   if(MC_record_path) {
392     MC_record_replay_init();
393     MC_record_replay_from_string(MC_record_path);
394     return;
395   }
396
397   double time = 0;
398   smx_process_t process;
399   surf_action_t action;
400   smx_timer_t timer;
401   surf_model_t model;
402   unsigned int iter;
403
404   do {
405     XBT_DEBUG("New Schedule Round; size(queue)=%lu",
406         xbt_dynar_length(simix_global->process_to_run));
407 #ifdef TIME_BENCH_PER_SR
408     smx_ctx_raw_new_sr();
409 #endif
410     while (!xbt_dynar_is_empty(simix_global->process_to_run)) {
411       XBT_DEBUG("New Sub-Schedule Round; size(queue)=%lu",
412               xbt_dynar_length(simix_global->process_to_run));
413
414       /* Run all processes that are ready to run, possibly in parallel */
415 #ifdef TIME_BENCH_AMDAHL
416       xbt_os_cputimer_stop(simix_global->timer_seq);
417       xbt_os_cputimer_resume(simix_global->timer_par);
418 #endif
419       SIMIX_process_runall();
420 #ifdef TIME_BENCH_AMDAHL
421       xbt_os_cputimer_stop(simix_global->timer_par);
422       xbt_os_cputimer_resume(simix_global->timer_seq);
423 #endif
424
425       /* Move all killer processes to the end of the list, because killing a process that have an ongoing simcall is a bad idea */
426       xbt_dynar_three_way_partition(simix_global->process_that_ran, process_syscall_color);
427
428       /* answer sequentially and in a fixed arbitrary order all the simcalls that were issued during that sub-round */
429
430       /* WARNING, the order *must* be fixed or you'll jeopardize the simulation reproducibility (see RR-7653) */
431
432       /* Here, the order is ok because:
433        *
434        *   Short proof: only maestro adds stuff to the process_to_run array, so the execution order of user contexts do not impact its order.
435        *
436        *   Long proof: processes remain sorted through an arbitrary (implicit, complex but fixed) order in all cases.
437        *
438        *   - if there is no kill during the simulation, processes remain sorted according by their PID.
439        *     rational: This can be proved inductively.
440        *        Assume that process_to_run is sorted at a beginning of one round (it is at round 0: the deployment file is parsed linearly).
441        *        Let's show that it is still so at the end of this round.
442        *        - if a process is added when being created, that's from maestro. It can be either at startup
443        *          time (and then in PID order), or in response to a process_create simcall. Since simcalls are handled
444        *          in arbitrary order (inductive hypothesis), we are fine.
445        *        - If a process is added because it's getting killed, its subsequent actions shouldn't matter
446        *        - If a process gets added to process_to_run because one of their blocking action constituting the meat
447        *          of a simcall terminates, we're still good. Proof:
448        *          - You are added from SIMIX_simcall_answer() only. When this function is called depends on the resource
449        *            kind (network, cpu, disk, whatever), but the same arguments hold. Let's take communications as an example.
450        *          - For communications, this function is called from SIMIX_comm_finish().
451        *            This function itself don't mess with the order since simcalls are handled in FIFO order.
452        *            The function is called:
453        *            - before the comm starts (invalid parameters, or resource already dead or whatever).
454        *              The order then trivial holds since maestro didn't interrupt its handling of the simcall yet
455        *            - because the communication failed or were canceled after startup. In this case, it's called from the function
456        *              we are in, by the chunk:
457        *                       set = model->states.failed_action_set;
458        *                       while ((synchro = xbt_swag_extract(set)))
459        *                          SIMIX_simcall_post((smx_synchro_t) synchro->data);
460        *              This order is also fixed because it depends of the order in which the surf actions were
461        *              added to the system, and only maestro can add stuff this way, through simcalls.
462        *              We thus use the inductive hypothesis once again to conclude that the order in which synchros are
463        *              poped out of the swag does not depend on the user code's execution order.
464        *            - because the communication terminated. In this case, synchros are served in the order given by
465        *                       set = model->states.done_action_set;
466        *                       while ((synchro = xbt_swag_extract(set)))
467        *                          SIMIX_simcall_post((smx_synchro_t) synchro->data);
468        *              and the argument is very similar to the previous one.
469        *            So, in any case, the orders of calls to SIMIX_comm_finish() do not depend on the order in which user processes are executed.
470        *          So, in any cases, the orders of processes within process_to_run do not depend on the order in which user processes were executed previously.
471        *     So, if there is no killing in the simulation, the simulation reproducibility is not jeopardized.
472        *   - If there is some process killings, the order is changed by this decision that comes from user-land
473        *     But this decision may not have been motivated by a situation that were different because the simulation is not reproducible.
474        *     So, even the order change induced by the process killing is perfectly reproducible.
475        *
476        *   So science works, bitches [http://xkcd.com/54/].
477        *
478        *   We could sort the process_that_ran array completely so that we can describe the order in which simcalls are handled
479        *   (like "according to the PID of issuer"), but it's not mandatory (order is fixed already even if unfriendly).
480        *   That would thus be a pure waste of time.
481        */
482
483       xbt_dynar_foreach(simix_global->process_that_ran, iter, process) {
484         if (process->simcall.call != SIMCALL_NONE) {
485           SIMIX_simcall_handle(&process->simcall, 0);
486         }
487       }
488       /* Wake up all processes waiting for a Surf action to finish */
489       xbt_dynar_foreach(all_existing_models, iter, model) {
490         XBT_DEBUG("Handling process whose action failed");
491         while ((action = surf_model_extract_failed_action_set(model))) {
492           XBT_DEBUG("   Handling Action %p",action);
493           SIMIX_simcall_exit((smx_synchro_t) action->getData());
494         }
495         XBT_DEBUG("Handling process whose action terminated normally");
496         while ((action = surf_model_extract_done_action_set(model))) {
497           XBT_DEBUG("   Handling Action %p",action);
498           if (action->getData() == NULL)
499             XBT_DEBUG("probably vcpu's action %p, skip", action);
500           else
501             SIMIX_simcall_exit((smx_synchro_t) action->getData());
502         }
503       }
504     }
505
506     time = SIMIX_timer_next();
507     if (time != -1.0 || xbt_swag_size(simix_global->process_list) != 0) {
508       XBT_DEBUG("Calling surf_solve");
509       time = surf_solve(time);
510       XBT_DEBUG("Moving time ahead : %g", time);
511     }
512     /* Notify all the hosts that have failed */
513     /* FIXME: iterate through the list of failed host and mark each of them */
514     /* as failed. On each host, signal all the running processes with host_fail */
515
516     /* Handle any pending timer */
517     while (xbt_heap_size(simix_timers) > 0 && SIMIX_get_clock() >= SIMIX_timer_next()) {
518        //FIXME: make the timers being real callbacks
519        // (i.e. provide dispatchers that read and expand the args)
520        timer = (smx_timer_t) xbt_heap_pop(simix_timers);
521        if (timer->func)
522          timer->func(timer->args);
523        xbt_free(timer);
524     }
525
526     /* Wake up all processes waiting for a Surf action to finish */
527     xbt_dynar_foreach(all_existing_models, iter, model) {
528       XBT_DEBUG("Handling process whose action failed");
529       while ((action = surf_model_extract_failed_action_set(model))) {
530         XBT_DEBUG("   Handling Action %p",action);
531         SIMIX_simcall_exit((smx_synchro_t) action->getData());
532       }
533       XBT_DEBUG("Handling process whose action terminated normally");
534       while ((action = surf_model_extract_done_action_set(model))) {
535         XBT_DEBUG("   Handling Action %p",action);
536         if (action->getData() == NULL)
537           XBT_DEBUG("probably vcpu's action %p, skip", action);
538         else
539           SIMIX_simcall_exit((smx_synchro_t) action->getData());
540       }
541     }
542
543     /* Autorestart all process */
544     char *hostname = NULL;
545     xbt_dynar_foreach(host_that_restart,iter,hostname) {
546       XBT_INFO("Restart processes on host: %s",hostname);
547       SIMIX_host_autorestart(sg_host_by_name(hostname));
548     }
549     xbt_dynar_reset(host_that_restart);
550
551     /* Clean processes to destroy */
552     SIMIX_process_empty_trash();
553
554
555     XBT_DEBUG("### time %f, empty %d", time, xbt_dynar_is_empty(simix_global->process_to_run));
556
557   } while (time != -1.0 || !xbt_dynar_is_empty(simix_global->process_to_run));
558
559   if (xbt_swag_size(simix_global->process_list) != 0) {
560
561   TRACE_end();
562
563     XBT_CRITICAL("Oops ! Deadlock or code not perfectly clean.");
564     SIMIX_display_process_status();
565     xbt_abort();
566   }
567 }
568
569 /**
570  *   \brief Set the date to execute a function
571  *
572  * Set the date to execute the function on the surf.
573  *   \param date Date to execute function
574  *   \param function Function to be executed
575  *   \param arg Parameters of the function
576  *
577  */
578 smx_timer_t SIMIX_timer_set(double date, void (*function)(void*), void *arg)
579 {
580   smx_timer_t timer = xbt_new0(s_smx_timer_t, 1);
581
582   timer->date = date;
583   timer->func = function;
584   timer->args = arg;
585   xbt_heap_push(simix_timers, timer, date);
586   return timer;
587 }
588 /** @brief cancels a timer that was added earlier */
589 void SIMIX_timer_remove(smx_timer_t timer) {
590   xbt_heap_rm_elm(simix_timers, timer, timer->date);
591 }
592
593 /** @brief Returns the date at which the timer will trigger (or 0 if NULL timer) */
594 double SIMIX_timer_get_date(smx_timer_t timer) {
595   return timer?timer->date:0;
596 }
597
598 /**
599  * \brief Registers a function to create a process.
600  *
601  * This function registers a function to be called
602  * when a new process is created. The function has
603  * to call SIMIX_process_create().
604  * \param function create process function
605  */
606 void SIMIX_function_register_process_create(smx_creation_func_t
607                                                        function)
608 {
609   simix_global->create_process_function = function;
610 }
611
612 /**
613  * \brief Registers a function to kill a process.
614  *
615  * This function registers a function to be called when a
616  * process is killed. The function has to call the SIMIX_process_kill().
617  *
618  * \param function Kill process function
619  */
620 void SIMIX_function_register_process_kill(void_pfn_smxprocess_t
621                                                      function)
622 {
623   simix_global->kill_process_function = function;
624 }
625
626 /**
627  * \brief Registers a function to cleanup a process.
628  *
629  * This function registers a user function to be called when
630  * a process ends properly.
631  *
632  * \param function cleanup process function
633  */
634 void SIMIX_function_register_process_cleanup(void_pfn_smxprocess_t
635                                                         function)
636 {
637   simix_global->cleanup_process_function = function;
638 }
639
640
641 void SIMIX_display_process_status(void)
642 {
643   if (simix_global->process_list == NULL) {
644     return;
645   }
646
647   smx_process_t process = NULL;
648   int nbprocess = xbt_swag_size(simix_global->process_list);
649
650   XBT_INFO("%d processes are still running, waiting for something.", nbprocess);
651   /*  List the process and their state */
652   XBT_INFO
653     ("Legend of the following listing: \"Process <pid> (<name>@<host>): <status>\"");
654   xbt_swag_foreach(process, simix_global->process_list) {
655
656     if (process->waiting_synchro) {
657
658       const char* synchro_description = "unknown";
659       switch (process->waiting_synchro->type) {
660
661       case SIMIX_SYNC_EXECUTE:
662         synchro_description = "execution";
663         break;
664
665       case SIMIX_SYNC_PARALLEL_EXECUTE:
666         synchro_description = "parallel execution";
667         break;
668
669       case SIMIX_SYNC_COMMUNICATE:
670         synchro_description = "communication";
671         break;
672
673       case SIMIX_SYNC_SLEEP:
674         synchro_description = "sleeping";
675         break;
676
677       case SIMIX_SYNC_JOIN:
678         synchro_description = "joining";
679         break;
680
681       case SIMIX_SYNC_SYNCHRO:
682         synchro_description = "synchronization";
683         break;
684
685       case SIMIX_SYNC_IO:
686         synchro_description = "I/O";
687         break;
688       }
689       XBT_INFO("Process %lu (%s@%s): waiting for %s synchro %p (%s) in state %d to finish",
690           process->pid, process->name, sg_host_get_name(process->host),
691           synchro_description, process->waiting_synchro,
692           process->waiting_synchro->name, (int)process->waiting_synchro->state);
693     }
694     else {
695       XBT_INFO("Process %lu (%s@%s)", process->pid, process->name, sg_host_get_name(process->host));
696     }
697   }
698 }
699
700 static void* SIMIX_synchro_mallocator_new_f(void) {
701   smx_synchro_t synchro = xbt_new(s_smx_synchro_t, 1);
702   synchro->simcalls = xbt_fifo_new();
703   return synchro;
704 }
705
706 static void SIMIX_synchro_mallocator_free_f(void* synchro) {
707   xbt_fifo_free(((smx_synchro_t) synchro)->simcalls);
708   xbt_free(synchro);
709 }
710
711 static void SIMIX_synchro_mallocator_reset_f(void* synchro) {
712
713   // we also recycle the simcall list
714   xbt_fifo_t fifo = ((smx_synchro_t) synchro)->simcalls;
715   xbt_fifo_reset(fifo);
716   memset(synchro, 0, sizeof(s_smx_synchro_t));
717   ((smx_synchro_t) synchro)->simcalls = fifo;
718 }
719
720 xbt_dict_t simcall_HANDLER_asr_get_properties(smx_simcall_t simcall, const char *name){
721   return SIMIX_asr_get_properties(name);
722 }
723 xbt_dict_t SIMIX_asr_get_properties(const char *name)
724 {
725   return (xbt_dict_t) xbt_lib_get_or_null(as_router_lib, name, ROUTING_PROP_ASR_LEVEL);
726 }
727
728 int SIMIX_is_maestro()
729 {
730   return simix_global==NULL /*SimDag*/|| SIMIX_process_self() == simix_global->maestro_process;
731 }