Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / src / simix / smx_host.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 "smx_private.h"
8 #include "xbt/sysdep.h"
9 #include "mc/mc.h"
10 #include "src/mc/mc_replay.h"
11 #include "src/surf/virtual_machine.hpp"
12 #include "src/surf/HostImpl.hpp"
13
14 #include "src/simix/SynchroExec.hpp"
15 #include "src/simix/SynchroComm.hpp"
16
17 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_host, simix, "SIMIX hosts");
18
19 static void SIMIX_execution_finish(smx_synchro_t synchro);
20
21 /**
22  * \brief Internal function to create a SIMIX host.
23  * \param name name of the host to create
24  */
25 void SIMIX_host_create(sg_host_t host) // FIXME: braindead prototype. Take sg_host as parameter
26 {
27   smx_host_priv_t smx_host = xbt_new0(s_smx_host_priv_t, 1);
28   s_smx_process_t proc;
29
30   /* Host structure */
31   smx_host->process_list = xbt_swag_new(xbt_swag_offset(proc, host_proc_hookup));
32
33   /* Update global variables */
34   sg_host_simix_set(host, smx_host);
35 }
36
37 /**
38  * \brief Start the host if it is off
39  *
40  */
41 void SIMIX_host_on(sg_host_t h)
42 {
43   smx_host_priv_t host = sg_host_simix(h);
44
45   xbt_assert((host != NULL), "Invalid parameters");
46
47   if (h->isOff()) {
48     simgrid::surf::HostImpl* surf_host = h->extension<simgrid::surf::HostImpl>();
49     surf_host->turnOn();
50
51     unsigned int cpt;
52     smx_process_arg_t arg;
53     xbt_dynar_foreach(host->boot_processes,cpt,arg) {
54
55       char** argv = xbt_new(char*, arg->argc);
56       for (int i=0; i<arg->argc; i++)
57         argv[i] = xbt_strdup(arg->argv[i]);
58
59       XBT_DEBUG("Booting Process %s(%s) right now", arg->argv[0], arg->hostname);
60       if (simix_global->create_process_function) {
61         simix_global->create_process_function(argv[0],
62                                               arg->code,
63                                               NULL,
64                                               arg->hostname,
65                                               arg->kill_time,
66                                               arg->argc,
67                                               argv,
68                                               arg->properties,
69                                               arg->auto_restart,
70                                               NULL);
71       } else {
72         simcall_process_create(arg->argv[0],
73                                arg->code,
74                                NULL,
75                                arg->hostname,
76                                arg->kill_time,
77                                arg->argc,
78                                argv,
79                                arg->properties,
80                                arg->auto_restart);
81       }
82     }
83   }
84 }
85
86 /**
87  * \brief Stop the host if it is on
88  *
89  */
90 void SIMIX_host_off(sg_host_t h, smx_process_t issuer)
91 {
92   smx_host_priv_t host = sg_host_simix(h);
93
94   xbt_assert((host != NULL), "Invalid parameters");
95
96   if (h->isOn()) {
97     simgrid::surf::HostImpl* surf_host = h->extension<simgrid::surf::HostImpl>();
98     surf_host->turnOff();
99
100     /* Clean Simulator data */
101     if (xbt_swag_size(host->process_list) != 0) {
102       smx_process_t process = NULL;
103       xbt_swag_foreach(process, host->process_list) {
104         SIMIX_process_kill(process, issuer);
105         XBT_DEBUG("Killing %s on %s by %s", process->name,  sg_host_get_name(process->host), issuer->name);
106       }
107     }
108   } else {
109     XBT_INFO("Host %s is already off",h->name().c_str());
110   }
111 }
112
113 /**
114  * \brief Internal function to destroy a SIMIX host.
115  *
116  * \param h the host to destroy (a sg_host_t)
117  */
118 void SIMIX_host_destroy(void *h)
119 {
120   smx_host_priv_t host = (smx_host_priv_t) h;
121
122   xbt_assert((host != NULL), "Invalid parameters");
123
124   /* Clean Simulator data */
125   if (xbt_swag_size(host->process_list) != 0) {
126     char *msg = xbt_strdup("Shutting down host, but it's not empty:");
127     char *tmp;
128     smx_process_t process = NULL;
129
130     xbt_swag_foreach(process, host->process_list) {
131       tmp = bprintf("%s\n\t%s", msg, process->name);
132       free(msg);
133       msg = tmp;
134     }
135     SIMIX_display_process_status();
136     THROWF(arg_error, 0, "%s", msg);
137   }
138   xbt_dynar_free(&host->auto_restart_processes);
139   xbt_dynar_free(&host->boot_processes);
140   xbt_swag_free(host->process_list);
141
142   /* Clean host structure */
143   free(host);
144   return;
145 }
146
147 sg_host_t SIMIX_host_self(void)
148 {
149   smx_process_t process = SIMIX_process_self();
150   return (process == NULL) ? NULL : SIMIX_process_get_host(process);
151 }
152
153 /* needs to be public and without simcall because it is called
154    by exceptions and logging events */
155 const char* SIMIX_host_self_get_name(void)
156 {
157   sg_host_t host = SIMIX_host_self();
158   if (host == NULL || SIMIX_process_self() == simix_global->maestro_process)
159     return "";
160
161   return sg_host_get_name(host);
162 }
163
164 void _SIMIX_host_free_process_arg(void *data)
165 {
166   smx_process_arg_t arg = *(smx_process_arg_t*)data;
167   for (int i = 0; i < arg->argc; i++)
168     xbt_free(arg->argv[i]);
169   xbt_free(arg->argv);
170   xbt_free(arg->name);
171   xbt_free(arg);
172 }
173 /**
174  * \brief Add a process to the list of the processes that the host will restart when it comes back
175  * This function add a process to the list of the processes that will be restarted when the host comes
176  * back. It is expected that this function is called when the host is down.
177  * The processes will only be restarted once, meaning that you will have to register the process
178  * again to restart the process again.
179  */
180 void SIMIX_host_add_auto_restart_process(sg_host_t host,
181                                          const char *name,
182                                          xbt_main_func_t code,
183                                          void *data,
184                                          const char *hostname,
185                                          double kill_time,
186                                          int argc, char **argv,
187                                          xbt_dict_t properties,
188                                          int auto_restart)
189 {
190   if (!sg_host_simix(host)->auto_restart_processes) {
191     sg_host_simix(host)->auto_restart_processes = xbt_dynar_new(sizeof(smx_process_arg_t),_SIMIX_host_free_process_arg);
192   }
193   smx_process_arg_t arg = xbt_new(s_smx_process_arg_t,1);
194   arg->name = xbt_strdup(name);
195   arg->code = code;
196   arg->data = data;
197   arg->hostname = hostname;
198   arg->kill_time = kill_time;
199   arg->argc = argc;
200
201   arg->argv = xbt_new(char*,argc + 1);
202
203   for (int i = 0; i < argc; i++)
204     arg->argv[i] = xbt_strdup(argv[i]);
205   arg->argv[argc] = NULL;
206
207   arg->properties = properties;
208   arg->auto_restart = auto_restart;
209
210   if( host->isOff() && !xbt_dict_get_or_null(watched_hosts_lib,sg_host_get_name(host))){
211     xbt_dict_set(watched_hosts_lib,sg_host_get_name(host),host,NULL);
212     XBT_DEBUG("Push host %s to watched_hosts_lib because state == SURF_RESOURCE_OFF",sg_host_get_name(host));
213   }
214   xbt_dynar_push_as(sg_host_simix(host)->auto_restart_processes,smx_process_arg_t,arg);
215 }
216 /**
217  * \brief Restart the list of processes that have been registered to the host
218  */
219 void SIMIX_host_autorestart(sg_host_t host)
220 {
221   unsigned int cpt;
222   smx_process_arg_t arg;
223   xbt_dynar_t process_list = sg_host_simix(host)->auto_restart_processes;
224   if (!process_list)
225     return;
226
227   xbt_dynar_foreach (process_list, cpt, arg) {
228
229     XBT_DEBUG("Restarting Process %s(%s) right now", arg->argv[0], arg->hostname);
230     if (simix_global->create_process_function) {
231       simix_global->create_process_function(arg->argv[0],
232                                             arg->code,
233                                             NULL,
234                                             arg->hostname,
235                                             arg->kill_time,
236                                             arg->argc,
237                                             arg->argv,
238                                             arg->properties,
239                                             arg->auto_restart,
240                                             NULL);
241     } else {
242       simcall_process_create(arg->argv[0],
243                              (xbt_main_func_t) arg->code,
244                              NULL,
245                              arg->hostname,
246                              arg->kill_time,
247                              arg->argc,
248                              arg->argv,
249                              arg->properties,
250                              arg->auto_restart);
251
252     }
253     /* arg->argv is used by the process created above.  Hide it to
254      * _SIMIX_host_free_process_arg() which is called by xbt_dynar_reset()
255      * below. */
256     arg->argc = 0;
257     arg->argv = NULL;
258   }
259   xbt_dynar_reset(process_list);
260 }
261
262 smx_synchro_t simcall_HANDLER_execution_start(smx_simcall_t simcall,
263     const char* name, double flops_amount, double priority, double bound, unsigned long affinity_mask) {
264   return SIMIX_execution_start(simcall->issuer, name,flops_amount,priority,bound,affinity_mask);
265 }
266 smx_synchro_t SIMIX_execution_start(smx_process_t issuer, const char *name,
267      double flops_amount, double priority, double bound, unsigned long affinity_mask){
268
269   /* alloc structures and initialize */
270   simgrid::simix::Exec *exec = new simgrid::simix::Exec();
271   exec->name = xbt_strdup(name);
272   exec->state = SIMIX_RUNNING;
273   exec->host = issuer->host;
274
275   /* set surf's action */
276   if (!MC_is_active() && !MC_record_replay_is_active()) {
277
278     exec->surf_exec = issuer->host->pimpl_cpu->execution_start(flops_amount);
279     exec->surf_exec->setData(exec);
280     exec->surf_exec->setPriority(priority);
281
282     if (bound != 0)
283       static_cast<simgrid::surf::CpuAction*>(exec->surf_exec)->setBound(bound);
284
285     if (affinity_mask != 0) {
286       /* just a double check to confirm that this host is the host where this task is running. */
287       xbt_assert(exec->host == issuer->host);
288       static_cast<simgrid::surf::CpuAction*>(exec->surf_exec)
289         ->setAffinity(issuer->host->pimpl_cpu, affinity_mask);
290     }
291   }
292
293   XBT_DEBUG("Create execute synchro %p: %s", exec, exec->name);
294
295   return exec;
296 }
297
298 smx_synchro_t SIMIX_execution_parallel_start(const char *name,
299     int host_nb, sg_host_t *host_list,
300     double *flops_amount, double *bytes_amount,
301     double amount, double rate){
302
303   sg_host_t *host_list_cpy = NULL;
304   int i;
305
306   /* alloc structures and initialize */
307   simgrid::simix::Exec *exec = new simgrid::simix::Exec();
308   exec->name = xbt_strdup(name);
309   exec->state = SIMIX_RUNNING;
310   exec->host = nullptr; /* FIXME: do we need the list of hosts? */
311
312   /* set surf's synchro */
313   host_list_cpy = xbt_new0(sg_host_t, host_nb);
314   for (i = 0; i < host_nb; i++)
315     host_list_cpy[i] = host_list[i];
316
317   /* Check that we are not mixing VMs and PMs in the parallel task */
318   simgrid::surf::HostImpl *host = host_list[0]->extension<simgrid::surf::HostImpl>();
319   bool is_a_vm = (nullptr != dynamic_cast<simgrid::surf::VirtualMachine*>(host));
320   for (i = 1; i < host_nb; i++) {
321     bool tmp_is_a_vm = (nullptr != dynamic_cast<simgrid::surf::VirtualMachine*>(host_list[i]->extension<simgrid::surf::HostImpl>()));
322     xbt_assert(is_a_vm == tmp_is_a_vm, "parallel_execute: mixing VMs and PMs is not supported (yet).");
323   }
324
325   /* set surf's synchro */
326   if (!MC_is_active() && !MC_record_replay_is_active()) {
327     exec->surf_exec = surf_host_model->executeParallelTask(host_nb, host_list_cpy, flops_amount, bytes_amount, rate);
328     exec->surf_exec->setData(exec);
329   }
330   XBT_DEBUG("Create parallel execute synchro %p", exec);
331
332   return exec;
333 }
334
335 void SIMIX_execution_destroy(smx_synchro_t synchro)
336 {
337   XBT_DEBUG("Destroy synchro %p", synchro);
338   simgrid::simix::Exec *exec = static_cast<simgrid::simix::Exec *>(synchro);
339
340   if (exec->surf_exec) {
341     exec->surf_exec->unref();
342     exec->surf_exec = NULL;
343   }
344   delete exec;
345 }
346
347 void SIMIX_execution_cancel(smx_synchro_t synchro)
348 {
349   XBT_DEBUG("Cancel synchro %p", synchro);
350   simgrid::simix::Exec *exec = static_cast<simgrid::simix::Exec *>(synchro);
351
352   if (exec->surf_exec)
353     exec->surf_exec->cancel();
354 }
355
356 double SIMIX_execution_get_remains(smx_synchro_t synchro)
357 {
358   double result = 0.0;
359   simgrid::simix::Exec *exec = static_cast<simgrid::simix::Exec *>(synchro);
360
361   if (synchro->state == SIMIX_RUNNING)
362     result = exec->surf_exec->getRemains();
363
364   return result;
365 }
366
367 e_smx_state_t SIMIX_execution_get_state(smx_synchro_t synchro)
368 {
369   return synchro->state;
370 }
371
372 void SIMIX_execution_set_priority(smx_synchro_t synchro, double priority)
373 {
374   simgrid::simix::Exec *exec = static_cast<simgrid::simix::Exec *>(synchro);
375   if(exec->surf_exec)
376     exec->surf_exec->setPriority(priority);
377 }
378
379 void SIMIX_execution_set_bound(smx_synchro_t synchro, double bound)
380 {
381   simgrid::simix::Exec *exec = static_cast<simgrid::simix::Exec *>(synchro);
382   if(exec->surf_exec)
383     static_cast<simgrid::surf::CpuAction*>(exec->surf_exec)->setBound(bound);
384 }
385
386 void SIMIX_execution_set_affinity(smx_synchro_t synchro, sg_host_t host, unsigned long mask)
387 {
388   simgrid::simix::Exec *exec = static_cast<simgrid::simix::Exec *>(synchro);
389   if(exec->surf_exec) {
390     /* just a double check to confirm that this host is the host where this task is running. */
391     xbt_assert(exec->host == host);
392     static_cast<simgrid::surf::CpuAction*>(exec->surf_exec)->setAffinity(host->pimpl_cpu, mask);
393   }
394 }
395
396 void simcall_HANDLER_execution_wait(smx_simcall_t simcall, smx_synchro_t synchro)
397 {
398
399   XBT_DEBUG("Wait for execution of synchro %p, state %d", synchro, (int)synchro->state);
400
401   /* Associate this simcall to the synchro */
402   xbt_fifo_push(synchro->simcalls, simcall);
403   simcall->issuer->waiting_synchro = synchro;
404
405   /* set surf's synchro */
406   if (MC_is_active() || MC_record_replay_is_active()) {
407     synchro->state = SIMIX_DONE;
408     SIMIX_execution_finish(synchro);
409     return;
410   }
411
412   /* If the synchro is already finished then perform the error handling */
413   if (synchro->state != SIMIX_RUNNING)
414     SIMIX_execution_finish(synchro);
415 }
416
417 void SIMIX_execution_suspend(smx_synchro_t synchro)
418 {
419   simgrid::simix::Exec *exec = static_cast<simgrid::simix::Exec *>(synchro);
420   if(exec->surf_exec)
421     exec->surf_exec->suspend();
422 }
423
424 void SIMIX_execution_resume(smx_synchro_t synchro)
425 {
426   simgrid::simix::Exec *exec = static_cast<simgrid::simix::Exec *>(synchro);
427   if(exec->surf_exec)
428     exec->surf_exec->resume();
429 }
430
431 void SIMIX_execution_finish(smx_synchro_t synchro)
432 {
433   xbt_fifo_item_t item;
434   smx_simcall_t simcall;
435
436   xbt_fifo_foreach(synchro->simcalls, item, simcall, smx_simcall_t) {
437
438     switch (synchro->state) {
439
440       case SIMIX_DONE:
441         /* do nothing, synchro done */
442         XBT_DEBUG("SIMIX_execution_finished: execution successful");
443         break;
444
445       case SIMIX_FAILED:
446         XBT_DEBUG("SIMIX_execution_finished: host '%s' failed", sg_host_get_name(simcall->issuer->host));
447         simcall->issuer->context->iwannadie = 1;
448         SMX_EXCEPTION(simcall->issuer, host_error, 0, "Host failed");
449         break;
450
451       case SIMIX_CANCELED:
452         XBT_DEBUG("SIMIX_execution_finished: execution canceled");
453         SMX_EXCEPTION(simcall->issuer, cancel_error, 0, "Canceled");
454         break;
455
456       default:
457         xbt_die("Internal error in SIMIX_execution_finish: unexpected synchro state %d",
458             (int)synchro->state);
459     }
460     /* check if the host is down */
461     if (simcall->issuer->host->isOff()) {
462       simcall->issuer->context->iwannadie = 1;
463     }
464
465     simcall->issuer->waiting_synchro =    NULL;
466     simcall_execution_wait__set__result(simcall, synchro->state);
467     SIMIX_simcall_answer(simcall);
468   }
469
470   /* We no longer need it */
471   SIMIX_execution_destroy(synchro);
472 }
473
474
475 void SIMIX_post_host_execute(smx_synchro_t synchro)
476 {
477   simgrid::simix::Exec *exec = dynamic_cast<simgrid::simix::Exec *>(synchro);
478
479   if (exec != nullptr && exec->host && /* FIMXE: handle resource failure for parallel tasks too */
480       exec->host->isOff()) {
481     /* If the host running the synchro failed, notice it. This way, the asking
482      * process can be killed if it runs on that host itself */
483     synchro->state = SIMIX_FAILED;
484   } else if (exec->surf_exec->getState() == simgrid::surf::Action::State::failed) {
485     /* If the host running the synchro didn't fail, then the synchro was canceled */
486     synchro->state = SIMIX_CANCELED;
487   } else {
488     synchro->state = SIMIX_DONE;
489   }
490
491   if (exec != nullptr && exec->surf_exec) {
492     exec->surf_exec->unref();
493     exec->surf_exec = NULL;
494   }
495
496   /* If there are simcalls associated with the synchro, then answer them */
497   if (xbt_fifo_size(synchro->simcalls)) {
498     SIMIX_execution_finish(synchro);
499   }
500 }
501
502
503 void SIMIX_set_category(smx_synchro_t synchro, const char *category)
504 {
505   if (synchro->state != SIMIX_RUNNING) return;
506
507   simgrid::simix::Exec *exec = dynamic_cast<simgrid::simix::Exec *>(synchro);
508   if (exec != nullptr) {
509     exec->surf_exec->setCategory(category);
510     return;
511   }
512
513   simgrid::simix::Comm *comm = dynamic_cast<simgrid::simix::Comm *>(synchro);
514   if (comm != nullptr) {
515     comm->surf_comm->setCategory(category);
516     return;
517   }
518 }