Logo AND Algorithmique Numérique Distribuée

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