Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rename smx_process to ActorImpl
[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/ex.hpp>
9 #include "xbt/sysdep.h"
10 #include "mc/mc.h"
11 #include "src/mc/mc_replay.h"
12 #include "src/surf/virtual_machine.hpp"
13 #include "src/surf/HostImpl.hpp"
14
15 #include "src/kernel/activity/SynchroExec.hpp"
16 #include "src/kernel/activity/SynchroComm.hpp"
17
18 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_host, simix, "SIMIX hosts");
19
20 /** @brief Internal function to create a SIMIX host. */
21 void SIMIX_host_create(sg_host_t host) // FIXME: braindead prototype. Take sg_host as parameter
22 {
23   smx_host_priv_t smx_host = xbt_new0(s_smx_host_priv_t, 1);
24
25   /* Host structure */
26   simgrid::simix::ActorImpl proc;
27   smx_host->process_list = xbt_swag_new(xbt_swag_offset(proc, host_proc_hookup));
28
29   /* Update global variables */
30   sg_host_simix_set(host, smx_host);
31 }
32
33 /** @brief Start the host if it is off */
34 void SIMIX_host_on(sg_host_t h)
35 {
36   smx_host_priv_t host = sg_host_simix(h);
37
38   xbt_assert((host != nullptr), "Invalid parameters");
39
40   if (h->isOff()) {
41     simgrid::surf::HostImpl* surf_host = h->extension<simgrid::surf::HostImpl>();
42     surf_host->turnOn();
43
44     unsigned int cpt;
45     smx_process_arg_t arg;
46     xbt_dynar_foreach(host->boot_processes,cpt,arg) {
47       XBT_DEBUG("Booting Process %s(%s) right now",
48         arg->name.c_str(), arg->hostname);
49       if (simix_global->create_process_function) {
50         simix_global->create_process_function(arg->name.c_str(),
51                                               arg->code,
52                                               nullptr,
53                                               arg->hostname,
54                                               arg->kill_time,
55                                               arg->properties,
56                                               arg->auto_restart,
57                                               nullptr);
58       } else {
59         simcall_process_create(arg->name.c_str(),
60                                arg->code,
61                                nullptr,
62                                arg->hostname,
63                                arg->kill_time,
64                                arg->properties,
65                                arg->auto_restart);
66       }
67     }
68   }
69 }
70
71 /** @brief Stop the host if it is on */
72 void SIMIX_host_off(sg_host_t h, smx_process_t issuer)
73 {
74   smx_host_priv_t host = sg_host_simix(h);
75
76   xbt_assert((host != nullptr), "Invalid parameters");
77
78   if (h->isOn()) {
79     simgrid::surf::HostImpl* surf_host = h->extension<simgrid::surf::HostImpl>();
80     surf_host->turnOff();
81
82     /* Clean Simulator data */
83     if (xbt_swag_size(host->process_list) != 0) {
84       smx_process_t process = nullptr;
85       xbt_swag_foreach(process, host->process_list) {
86         SIMIX_process_kill(process, issuer);
87         XBT_DEBUG("Killing %s on %s by %s",
88           process->name.c_str(),  sg_host_get_name(process->host),
89           issuer->name.c_str());
90       }
91     }
92   } else {
93     XBT_INFO("Host %s is already off", h->name().c_str());
94   }
95 }
96
97 /**
98  * \brief Internal function to destroy a SIMIX host.
99  *
100  * \param h the host to destroy (a sg_host_t)
101  */
102 void SIMIX_host_destroy(void *h)
103 {
104   smx_host_priv_t host = static_cast<smx_host_priv_t>(h);
105
106   xbt_assert((host != nullptr), "Invalid parameters");
107
108   /* Clean Simulator data */
109   if (xbt_swag_size(host->process_list) != 0) {
110     char *msg = xbt_strdup("Shutting down host, but it's not empty:");
111     char *tmp;
112     smx_process_t process = nullptr;
113
114     xbt_swag_foreach(process, host->process_list) {
115       tmp = bprintf("%s\n\t%s", msg, process->name.c_str());
116       free(msg);
117       msg = tmp;
118     }
119     SIMIX_display_process_status();
120     THROWF(arg_error, 0, "%s", msg);
121   }
122   xbt_dynar_free(&host->auto_restart_processes);
123   xbt_dynar_free(&host->boot_processes);
124   xbt_swag_free(host->process_list);
125
126   /* Clean host structure */
127   free(host);
128   return;
129 }
130
131 sg_host_t SIMIX_host_self(void)
132 {
133   smx_process_t process = SIMIX_process_self();
134   return (process == nullptr) ? nullptr : process->host;
135 }
136
137 /* needs to be public and without simcall for exceptions and logging events */
138 const char* SIMIX_host_self_get_name(void)
139 {
140   sg_host_t host = SIMIX_host_self();
141   if (host == nullptr || SIMIX_process_self() == simix_global->maestro_process)
142     return "";
143
144   return sg_host_get_name(host);
145 }
146
147 void _SIMIX_host_free_process_arg(void *data)
148 {
149   smx_process_arg_t arg = *(static_cast<smx_process_arg_t*>(data));
150   delete arg;
151 }
152 /**
153  * \brief Add a process to the list of the processes that the host will restart when it comes back
154  * This function add a process to the list of the processes that will be restarted when the host comes
155  * back. It is expected that this function is called when the host is down.
156  * The processes will only be restarted once, meaning that you will have to register the process
157  * again to restart the process again.
158  */
159 void SIMIX_host_add_auto_restart_process(
160   sg_host_t host, const char *name, std::function<void()> code,
161   void* data, const char *hostname, double kill_time,
162   xbt_dict_t properties, int auto_restart)
163 {
164   if (!sg_host_simix(host)->auto_restart_processes) {
165     sg_host_simix(host)->auto_restart_processes = xbt_dynar_new(sizeof(smx_process_arg_t),_SIMIX_host_free_process_arg);
166   }
167   smx_process_arg_t arg = new simgrid::simix::ProcessArg();
168   arg->name = name;
169   arg->code = std::move(code);
170   arg->data = data;
171   arg->hostname = hostname;
172   arg->kill_time = kill_time;
173   arg->properties = properties;
174   arg->auto_restart = auto_restart;
175
176   if( host->isOff() && !xbt_dict_get_or_null(watched_hosts_lib,sg_host_get_name(host))){
177     xbt_dict_set(watched_hosts_lib,sg_host_get_name(host),host,nullptr);
178     XBT_DEBUG("Push host %s to watched_hosts_lib because state == SURF_RESOURCE_OFF",sg_host_get_name(host));
179   }
180   xbt_dynar_push_as(sg_host_simix(host)->auto_restart_processes,smx_process_arg_t,arg);
181 }
182 /** @brief Restart the list of processes that have been registered to the host */
183 void SIMIX_host_autorestart(sg_host_t host)
184 {
185   unsigned int cpt;
186   smx_process_arg_t arg;
187   xbt_dynar_t process_list = sg_host_simix(host)->auto_restart_processes;
188   if (!process_list)
189     return;
190
191   xbt_dynar_foreach (process_list, cpt, arg) {
192
193     XBT_DEBUG("Restarting Process %s(%s) right now", arg->name.c_str(), arg->hostname);
194     if (simix_global->create_process_function) {
195       simix_global->create_process_function(arg->name.c_str(), arg->code, nullptr, arg->hostname, arg->kill_time,
196                                             arg->properties, arg->auto_restart, nullptr);
197     } else {
198       simcall_process_create(arg->name.c_str(), arg->code, nullptr, arg->hostname, arg->kill_time, arg->properties,
199                              arg->auto_restart);
200     }
201   }
202   xbt_dynar_reset(process_list);
203 }
204
205 smx_synchro_t simcall_HANDLER_execution_start(smx_simcall_t simcall, const char* name, double flops_amount,
206                                               double priority, double bound, unsigned long affinity_mask) {
207   return SIMIX_execution_start(simcall->issuer, name,flops_amount,priority,bound,affinity_mask);
208 }
209
210 smx_synchro_t SIMIX_execution_start(smx_process_t issuer, const char *name, double flops_amount, double priority,
211                                     double bound, unsigned long affinity_mask){
212
213   /* alloc structures and initialize */
214   simgrid::kernel::activity::Exec *exec = new simgrid::kernel::activity::Exec(name, issuer->host);
215
216   /* set surf's action */
217   if (!MC_is_active() && !MC_record_replay_is_active()) {
218
219     exec->surf_exec = issuer->host->pimpl_cpu->execution_start(flops_amount);
220     exec->surf_exec->setData(exec);
221     exec->surf_exec->setPriority(priority);
222
223     if (bound > 0)
224       static_cast<simgrid::surf::CpuAction*>(exec->surf_exec)->setBound(bound);
225
226     if (affinity_mask != 0) {
227       /* just a double check to confirm that this host is the host where this task is running. */
228       xbt_assert(exec->host == issuer->host);
229       static_cast<simgrid::surf::CpuAction*>(exec->surf_exec)
230         ->setAffinity(issuer->host->pimpl_cpu, affinity_mask);
231     }
232   }
233
234   XBT_DEBUG("Create execute synchro %p: %s", exec, exec->name.c_str());
235
236   return exec;
237 }
238
239 smx_synchro_t SIMIX_execution_parallel_start(const char *name, int host_nb, sg_host_t *host_list, double *flops_amount,
240                                              double *bytes_amount, double amount, double rate){
241
242   /* alloc structures and initialize */
243   simgrid::kernel::activity::Exec *exec = new simgrid::kernel::activity::Exec(name, nullptr);
244
245   /* set surf's synchro */
246   sg_host_t *host_list_cpy = xbt_new0(sg_host_t, host_nb);
247   for (int i = 0; i < host_nb; i++)
248     host_list_cpy[i] = host_list[i];
249
250   /* Check that we are not mixing VMs and PMs in the parallel task */
251   simgrid::surf::HostImpl *host = host_list[0]->extension<simgrid::surf::HostImpl>();
252   bool is_a_vm = (nullptr != dynamic_cast<simgrid::surf::VirtualMachine*>(host));
253   for (int i = 1; i < host_nb; i++) {
254     bool tmp_is_a_vm = (nullptr != dynamic_cast<simgrid::surf::VirtualMachine*>(host_list[i]->extension<simgrid::surf::HostImpl>()));
255     xbt_assert(is_a_vm == tmp_is_a_vm, "parallel_execute: mixing VMs and PMs is not supported (yet).");
256   }
257
258   /* set surf's synchro */
259   if (!MC_is_active() && !MC_record_replay_is_active()) {
260     exec->surf_exec = surf_host_model->executeParallelTask(host_nb, host_list_cpy, flops_amount, bytes_amount, rate);
261     exec->surf_exec->setData(exec);
262   }
263   XBT_DEBUG("Create parallel execute synchro %p", exec);
264
265   return exec;
266 }
267
268 void SIMIX_execution_cancel(smx_synchro_t synchro)
269 {
270   XBT_DEBUG("Cancel synchro %p", synchro);
271   simgrid::kernel::activity::Exec *exec = static_cast<simgrid::kernel::activity::Exec *>(synchro);
272
273   if (exec->surf_exec)
274     exec->surf_exec->cancel();
275 }
276
277 void SIMIX_execution_set_priority(smx_synchro_t synchro, double priority)
278 {
279   simgrid::kernel::activity::Exec *exec = static_cast<simgrid::kernel::activity::Exec *>(synchro);
280   if(exec->surf_exec)
281     exec->surf_exec->setPriority(priority);
282 }
283
284 void SIMIX_execution_set_bound(smx_synchro_t synchro, double bound)
285 {
286   simgrid::kernel::activity::Exec *exec = static_cast<simgrid::kernel::activity::Exec *>(synchro);
287   if(exec->surf_exec)
288     static_cast<simgrid::surf::CpuAction*>(exec->surf_exec)->setBound(bound);
289 }
290
291 void SIMIX_execution_set_affinity(smx_synchro_t synchro, sg_host_t host, unsigned long mask)
292 {
293   simgrid::kernel::activity::Exec *exec = static_cast<simgrid::kernel::activity::Exec *>(synchro);
294   if(exec->surf_exec) {
295     /* just a double check to confirm that this host is the host where this task is running. */
296     xbt_assert(exec->host == host);
297     static_cast<simgrid::surf::CpuAction*>(exec->surf_exec)->setAffinity(host->pimpl_cpu, mask);
298   }
299 }
300
301 void simcall_HANDLER_execution_wait(smx_simcall_t simcall, smx_synchro_t synchro)
302 {
303   simgrid::kernel::activity::Exec *exec = static_cast<simgrid::kernel::activity::Exec *>(synchro);
304   XBT_DEBUG("Wait for execution of synchro %p, state %d", synchro, (int)synchro->state);
305
306   /* Associate this simcall to the synchro */
307   synchro->simcalls.push_back(simcall);
308   simcall->issuer->waiting_synchro = synchro;
309
310   /* set surf's synchro */
311   if (MC_is_active() || MC_record_replay_is_active()) {
312     synchro->state = SIMIX_DONE;
313     SIMIX_execution_finish(exec);
314     return;
315   }
316
317   /* If the synchro is already finished then perform the error handling */
318   if (synchro->state != SIMIX_RUNNING)
319     SIMIX_execution_finish(exec);
320 }
321
322 void SIMIX_execution_finish(simgrid::kernel::activity::Exec *exec)
323 {
324   for (smx_simcall_t simcall : exec->simcalls) {
325     switch (exec->state) {
326
327       case SIMIX_DONE:
328         /* do nothing, synchro done */
329         XBT_DEBUG("SIMIX_execution_finished: execution successful");
330         break;
331
332       case SIMIX_FAILED:
333         XBT_DEBUG("SIMIX_execution_finished: host '%s' failed", sg_host_get_name(simcall->issuer->host));
334         simcall->issuer->context->iwannadie = 1;
335         SMX_EXCEPTION(simcall->issuer, host_error, 0, "Host failed");
336         break;
337
338       case SIMIX_CANCELED:
339         XBT_DEBUG("SIMIX_execution_finished: execution canceled");
340         SMX_EXCEPTION(simcall->issuer, cancel_error, 0, "Canceled");
341         break;
342
343       default:
344         xbt_die("Internal error in SIMIX_execution_finish: unexpected synchro state %d",
345             (int)exec->state);
346     }
347     /* Fail the process if the host is down */
348     if (simcall->issuer->host->isOff())
349       simcall->issuer->context->iwannadie = 1;
350
351     simcall->issuer->waiting_synchro = nullptr;
352     simcall_execution_wait__set__result(simcall, exec->state);
353     SIMIX_simcall_answer(simcall);
354   }
355
356   /* We no longer need it */
357   exec->unref();
358 }
359
360 void SIMIX_set_category(smx_synchro_t synchro, const char *category)
361 {
362   if (synchro->state != SIMIX_RUNNING)
363     return;
364
365   simgrid::kernel::activity::Exec *exec = dynamic_cast<simgrid::kernel::activity::Exec *>(synchro);
366   if (exec != nullptr) {
367     exec->surf_exec->setCategory(category);
368     return;
369   }
370
371   simgrid::kernel::activity::Comm *comm = dynamic_cast<simgrid::kernel::activity::Comm *>(synchro);
372   if (comm != nullptr) {
373     comm->surf_comm->setCategory(category);
374     return;
375   }
376 }