Logo AND Algorithmique Numérique Distribuée

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