Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
fix some doxygen warnings
[simgrid.git] / src / msg / msg_vm.cpp
1 /* Copyright (c) 2012-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 /* TODO:
8  * 1. add the support of trace
9  * 2. use parallel tasks to simulate CPU overhead and remove the experimental code generating micro computation tasks
10  */
11
12 #include <xbt/ex.hpp>
13
14 #include "src/instr/instr_private.h"
15 #include "src/msg/msg_private.h"
16 #include "src/plugins/vm/VirtualMachineImpl.hpp"
17 #include "src/plugins/vm/VmHostExt.hpp"
18
19 #include "simgrid/host.h"
20 #include "simgrid/simix.hpp"
21
22 struct dirty_page {
23   double prev_clock;
24   double prev_remaining;
25   msg_task_t task;
26 };
27 typedef struct dirty_page s_dirty_page;
28 typedef struct dirty_page* dirty_page_t;
29
30 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_vm, msg, "Cloud-oriented parts of the MSG API");
31
32 /* **** ******** GENERAL ********* **** */
33
34 /** \ingroup m_vm_management
35  * \brief Set the parameters of a given host
36  *
37  * \param vm a vm
38  * \param params a parameter object
39  */
40 void MSG_vm_set_params(msg_vm_t vm, vm_params_t params)
41 {
42   static_cast<simgrid::s4u::VirtualMachine*>(vm)->setParameters(params);
43 }
44
45 /** \ingroup m_vm_management
46  * \brief Get the parameters of a given host
47  *
48  * \param vm the vm you are interested into
49  * \param params a prameter object
50  */
51 void MSG_vm_get_params(msg_vm_t vm, vm_params_t params)
52 {
53   static_cast<simgrid::s4u::VirtualMachine*>(vm)->parameters(params);
54 }
55
56 /* **** Check state of a VM **** */
57 static inline int __MSG_vm_is_state(msg_vm_t vm, e_surf_vm_state_t state)
58 {
59   return static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_->getState() == state;
60 }
61
62 /** @brief Returns whether the given VM has just created, not running.
63  *  @ingroup msg_VMs
64  */
65 int MSG_vm_is_created(msg_vm_t vm)
66 {
67   return __MSG_vm_is_state(vm, SURF_VM_STATE_CREATED);
68 }
69
70 /** @brief Returns whether the given VM is currently running
71  *  @ingroup msg_VMs
72  */
73 int MSG_vm_is_running(msg_vm_t vm)
74 {
75   return __MSG_vm_is_state(vm, SURF_VM_STATE_RUNNING);
76 }
77
78 /** @brief Returns whether the given VM is currently migrating
79  *  @ingroup msg_VMs
80  */
81 int MSG_vm_is_migrating(msg_vm_t vm)
82 {
83   return static_cast<simgrid::s4u::VirtualMachine*>(vm)->isMigrating();
84 }
85
86 /** @brief Returns whether the given VM is currently suspended, not running.
87  *  @ingroup msg_VMs
88  */
89 int MSG_vm_is_suspended(msg_vm_t vm)
90 {
91   return __MSG_vm_is_state(vm, SURF_VM_STATE_SUSPENDED);
92 }
93
94 /* **** ******** MSG vm actions ********* **** */
95 /** @brief Create a new VM with specified parameters.
96  *  @ingroup msg_VMs*
97  *  @param pm        Physical machine that will host the VM
98  *  @param name      Must be unique
99  *  @param ramsize   [TODO]
100  *  @param mig_netspeed Amount of Mbyte/s allocated to the migration (cannot be larger than net_cap). Use 0 if unsure.
101  *  @param dp_intensity Dirty page percentage according to migNetSpeed, [0-100]. Use 0 if unsure.
102  */
103 msg_vm_t MSG_vm_create(msg_host_t pm, const char* name, int ramsize, int mig_netspeed, int dp_intensity)
104 {
105   simgrid::vm::VmHostExt::ensureVmExtInstalled();
106
107   /* For the moment, intensity_rate is the percentage against the migration bandwidth */
108   double host_speed = MSG_host_get_speed(pm);
109   double update_speed = ((double)dp_intensity/100) * mig_netspeed;
110
111   msg_vm_t vm = MSG_vm_create_core(pm, name);
112   s_vm_params_t params;
113   memset(&params, 0, sizeof(params));
114   params.ramsize = (sg_size_t)ramsize * 1024 * 1024;
115   params.devsize = 0;
116   params.skip_stage2 = 0;
117   params.max_downtime = 0.03;
118   params.dp_rate = (update_speed * 1024 * 1024) / host_speed;
119   params.dp_cap = params.ramsize * 0.9; // assume working set memory is 90% of ramsize
120   params.mig_speed = (double)mig_netspeed * 1024 * 1024; // mig_speed
121
122   XBT_DEBUG("dp rate %f migspeed : %f intensity mem : %d, updatespeed %f, hostspeed %f", params.dp_rate,
123             params.mig_speed, dp_intensity, update_speed, host_speed);
124   static_cast<simgrid::s4u::VirtualMachine*>(vm)->setParameters(&params);
125
126   return vm;
127 }
128
129 /** @brief Create a new VM object. The VM is not yet started. The resource of the VM is allocated upon MSG_vm_start().
130  *  @ingroup msg_VMs*
131  *
132  * A VM is treated as a host. The name of the VM must be unique among all hosts.
133  */
134 msg_vm_t MSG_vm_create_core(msg_host_t pm, const char* name)
135 {
136   xbt_assert(sg_host_by_name(name) == nullptr,
137              "Cannot create a VM named %s: this name is already used by an host or a VM", name);
138
139   return new simgrid::s4u::VirtualMachine(name, pm);
140 }
141
142 /** @brief Destroy a VM. Destroy the VM object from the simulation.
143  *  @ingroup msg_VMs
144  */
145 void MSG_vm_destroy(msg_vm_t vm)
146 {
147   if (MSG_vm_is_migrating(vm))
148     THROWF(vm_error, 0, "Cannot destroy VM '%s', which is migrating.", vm->cname());
149
150   /* First, terminate all processes on the VM if necessary */
151   if (MSG_vm_is_running(vm))
152     MSG_vm_shutdown(vm);
153
154   xbt_assert(MSG_vm_is_created(vm), "shutdown the given VM before destroying it");
155
156   /* Then, destroy the VM object */
157   simgrid::simix::kernelImmediate([vm]() {
158     vm->destroy();
159   });
160
161   if (TRACE_msg_vm_is_enabled()) {
162     container_t container = PJ_container_get(vm->cname());
163     PJ_container_remove_from_parent(container);
164     PJ_container_free(container);
165   }
166 }
167
168 /** @brief Start a vm (i.e., boot the guest operating system)
169  *  @ingroup msg_VMs
170  *
171  *  If the VM cannot be started (because of memory overprovisionning), an exception is generated.
172  */
173 void MSG_vm_start(msg_vm_t vm)
174 {
175   simgrid::simix::kernelImmediate([vm]() {
176     simgrid::vm::VmHostExt::ensureVmExtInstalled();
177
178     simgrid::s4u::VirtualMachine* typedVM = static_cast<simgrid::s4u::VirtualMachine*>(vm);
179     simgrid::s4u::Host* pm                = typedVM->pimpl_vm_->getPm();
180     if (pm->extension<simgrid::vm::VmHostExt>() == nullptr)
181       pm->extension_set(new simgrid::vm::VmHostExt());
182
183     long pm_ramsize   = pm->extension<simgrid::vm::VmHostExt>()->ramsize;
184     int pm_overcommit = pm->extension<simgrid::vm::VmHostExt>()->overcommit;
185     long vm_ramsize   = typedVM->getRamsize();
186
187     if (pm_ramsize && !pm_overcommit) { /* Only verify that we don't overcommit on need */
188       /* Retrieve the memory occupied by the VMs on that host. Yep, we have to traverse all VMs of all hosts for that */
189       long total_ramsize_of_vms = 0;
190       for (simgrid::s4u::VirtualMachine* ws_vm : simgrid::vm::VirtualMachineImpl::allVms_)
191         if (pm == ws_vm->pimpl_vm_->getPm())
192           total_ramsize_of_vms += ws_vm->pimpl_vm_->getRamsize();
193
194       if (vm_ramsize > pm_ramsize - total_ramsize_of_vms) {
195         XBT_WARN("cannnot start %s@%s due to memory shortage: vm_ramsize %ld, free %ld, pm_ramsize %ld (bytes).",
196                  vm->cname(), pm->cname(), vm_ramsize, pm_ramsize - total_ramsize_of_vms, pm_ramsize);
197         THROWF(vm_error, 0, "Memory shortage on host '%s', VM '%s' cannot be started", pm->cname(), vm->cname());
198       }
199     }
200
201     typedVM->pimpl_vm_->setState(SURF_VM_STATE_RUNNING);
202   });
203
204   if (TRACE_msg_vm_is_enabled()) {
205     container_t vm_container = PJ_container_get(vm->cname());
206     type_t type              = PJ_type_get("MSG_VM_STATE", vm_container->type);
207     val_t value              = PJ_value_get_or_new("start", "0 0 1", type); // start is blue
208     new_pajePushState(MSG_get_clock(), vm_container, type, value);
209   }
210 }
211
212 /** @brief Immediately kills all processes within the given VM.
213  *  @ingroup msg_VMs
214  *
215  * Any memory that they allocated will be leaked, unless you used #MSG_process_on_exit().
216  *
217  * No extra delay occurs. If you want to simulate this too, you want to use a #MSG_process_sleep().
218  */
219 void MSG_vm_shutdown(msg_vm_t vm)
220 {
221   smx_actor_t issuer=SIMIX_process_self();
222   simgrid::simix::kernelImmediate([vm,issuer]() {
223     static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_->shutdown(issuer);
224   });
225
226   // Make sure that the processes in the VM are killed in this scheduling round before processing
227   // (eg with the VM destroy)
228   MSG_process_sleep(0.);
229 }
230
231 static inline char *get_mig_process_tx_name(msg_vm_t vm, msg_host_t src_pm, msg_host_t dst_pm)
232 {
233   return bprintf("__pr_mig_tx:%s(%s-%s)", vm->cname(), src_pm->cname(), dst_pm->cname());
234 }
235
236 static inline char *get_mig_process_rx_name(msg_vm_t vm, msg_host_t src_pm, msg_host_t dst_pm)
237 {
238   return bprintf("__pr_mig_rx:%s(%s-%s)", vm->cname(), src_pm->cname(), dst_pm->cname());
239 }
240
241 static inline char *get_mig_task_name(msg_vm_t vm, msg_host_t src_pm, msg_host_t dst_pm, int stage)
242 {
243   return bprintf("__task_mig_stage%d:%s(%s-%s)", stage, vm->cname(), src_pm->cname(), dst_pm->cname());
244 }
245
246 struct migration_session {
247   msg_vm_t vm;
248   msg_host_t src_pm;
249   msg_host_t dst_pm;
250
251   /* The miration_rx process uses mbox_ctl to let the caller of do_migration()
252    * know the completion of the migration. */
253   char *mbox_ctl;
254   /* The migration_rx and migration_tx processes use mbox to transfer migration data. */
255   char *mbox;
256 };
257
258 static int migration_rx_fun(int argc, char *argv[])
259 {
260   XBT_DEBUG("mig: rx_start");
261
262   // The structure has been created in the do_migration function and should only be freed in the same place ;)
263   struct migration_session *ms = (migration_session *) MSG_process_get_data(MSG_process_self());
264
265   bool received_finalize = false;
266
267   char *finalize_task_name = get_mig_task_name(ms->vm, ms->src_pm, ms->dst_pm, 3);
268   while (!received_finalize) {
269     msg_task_t task = nullptr;
270     int ret         = MSG_task_recv(&task, ms->mbox);
271
272     if (ret != MSG_OK) {
273       // An error occurred, clean the code and return
274       // The owner did not change, hence the task should be only destroyed on the other side
275       xbt_free(finalize_task_name);
276       return 0;
277     }
278
279     if (strcmp(task->name, finalize_task_name) == 0)
280       received_finalize = 1;
281
282     MSG_task_destroy(task);
283   }
284   xbt_free(finalize_task_name);
285
286   // Here Stage 1, 2  and 3 have been performed.
287   // Hence complete the migration
288
289   // Copy the reference to the vm (if SRC crashes now, do_migration will free ms)
290   // This is clearly ugly but I (Adrien) need more time to do something cleaner (actually we should copy the whole ms
291   // structure at the beginning and free it at the end of each function)
292   simgrid::s4u::VirtualMachine* vm = static_cast<simgrid::s4u::VirtualMachine*>(ms->vm);
293   msg_host_t src_pm                = ms->src_pm;
294   msg_host_t dst_pm                = ms->dst_pm;
295
296   // Make sure that we cannot get interrupted between the migrate and the resume to not end in an inconsistent state
297   simgrid::simix::kernelImmediate([vm, src_pm, dst_pm]() {
298     /* Update the vm location */
299     /* precopy migration makes the VM temporally paused */
300     xbt_assert(vm->pimpl_vm_->getState() == SURF_VM_STATE_SUSPENDED);
301
302     /* Update the vm location and resume it */
303     vm->pimpl_vm_->setPm(dst_pm);
304     vm->pimpl_vm_->resume();
305   });
306
307   {
308     // Now the VM is running on the new host (the migration is completed) (even if the SRC crash)
309     vm->pimpl_vm_->isMigrating = false;
310     XBT_DEBUG("VM(%s) moved from PM(%s) to PM(%s)", ms->vm->cname(), ms->src_pm->cname(), ms->dst_pm->cname());
311
312     if (TRACE_msg_vm_is_enabled()) {
313       static long long int counter = 0;
314       char key[INSTR_DEFAULT_STR_SIZE];
315       snprintf(key, INSTR_DEFAULT_STR_SIZE, "%lld", counter++);
316
317       // start link
318       container_t msg = PJ_container_get(vm->cname());
319       type_t type     = PJ_type_get("MSG_VM_LINK", PJ_type_get_root());
320       new_pajeStartLink(MSG_get_clock(), PJ_container_get_root(), type, msg, "M", key);
321
322       // destroy existing container of this vm
323       container_t existing_container = PJ_container_get(vm->cname());
324       PJ_container_remove_from_parent(existing_container);
325       PJ_container_free(existing_container);
326
327       // create new container on the new_host location
328       PJ_container_new(vm->cname(), INSTR_MSG_VM, PJ_container_get(ms->dst_pm->cname()));
329
330       // end link
331       msg  = PJ_container_get(vm->cname());
332       type = PJ_type_get("MSG_VM_LINK", PJ_type_get_root());
333       new_pajeEndLink(MSG_get_clock(), PJ_container_get_root(), type, msg, "M", key);
334     }
335   }
336   // Inform the SRC that the migration has been correctly performed
337   {
338     char *task_name = get_mig_task_name(ms->vm, ms->src_pm, ms->dst_pm, 4);
339     msg_task_t task = MSG_task_create(task_name, 0, 0, nullptr);
340     msg_error_t ret = MSG_task_send(task, ms->mbox_ctl);
341     // xbt_assert(ret == MSG_OK);
342     if(ret == MSG_HOST_FAILURE){
343       // The DST has crashed, this is a problem has the VM since we are not sure whether SRC is considering that the VM
344       // has been correctly migrated on the DST node
345       // TODO What does it mean ? What should we do ?
346       MSG_task_destroy(task);
347     } else if(ret == MSG_TRANSFER_FAILURE){
348       // The SRC has crashed, this is not a problem has the VM has been correctly migrated on the DST node
349       MSG_task_destroy(task);
350     }
351     xbt_free(task_name);
352   }
353
354   XBT_DEBUG("mig: rx_done");
355   return 0;
356 }
357
358 static void start_dirty_page_tracking(msg_vm_t vm)
359 {
360   simgrid::vm::VirtualMachineImpl* pimpl = static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_;
361
362   pimpl->dp_enabled = 1;
363   if (!pimpl->dp_objs)
364     return;
365
366   char *key = nullptr;
367   xbt_dict_cursor_t cursor = nullptr;
368   dirty_page_t dp = nullptr;
369   xbt_dict_foreach (pimpl->dp_objs, cursor, key, dp) {
370     double remaining = MSG_task_get_flops_amount(dp->task);
371     dp->prev_clock = MSG_get_clock();
372     dp->prev_remaining = remaining;
373
374     // XBT_INFO("%s@%s remaining %f", key, sg_host_name(vm), remaining);
375   }
376 }
377
378 static void stop_dirty_page_tracking(msg_vm_t vm)
379 {
380   static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_->dp_enabled = 0;
381 }
382
383 static double get_computed(char *key, msg_vm_t vm, dirty_page_t dp, double remaining, double clock)
384 {
385   double computed = dp->prev_remaining - remaining;
386   double duration = clock - dp->prev_clock;
387
388   XBT_DEBUG("%s@%s: computed %f ops (remaining %f -> %f) in %f secs (%f -> %f)", key, vm->cname(), computed,
389             dp->prev_remaining, remaining, duration, dp->prev_clock, clock);
390
391   return computed;
392 }
393
394 static double lookup_computed_flop_counts(msg_vm_t vm, int stage_for_fancy_debug, int stage2_round_for_fancy_debug)
395 {
396   simgrid::vm::VirtualMachineImpl* pimpl = static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_;
397   double total = 0;
398
399   char *key = nullptr;
400   xbt_dict_cursor_t cursor = nullptr;
401   dirty_page_t dp = nullptr;
402   xbt_dict_foreach (pimpl->dp_objs, cursor, key, dp) {
403     double remaining = MSG_task_get_flops_amount(dp->task);
404
405     double clock = MSG_get_clock();
406
407     // total += calc_updated_pages(key, vm, dp, remaining, clock);
408     total += get_computed(key, vm, dp, remaining, clock);
409
410     dp->prev_remaining = remaining;
411     dp->prev_clock = clock;
412   }
413
414   total += pimpl->dp_updated_by_deleted_tasks;
415
416   XBT_DEBUG("mig-stage%d.%d: computed %f flop_counts (including %f by deleted tasks)", stage_for_fancy_debug,
417             stage2_round_for_fancy_debug, total, pimpl->dp_updated_by_deleted_tasks);
418
419   pimpl->dp_updated_by_deleted_tasks = 0;
420
421   return total;
422 }
423
424 // TODO Is this code redundant with the information provided by
425 // msg_process_t MSG_process_create(const char *name, xbt_main_func_t code, void *data, msg_host_t host)
426 /** @brief take care of the dirty page tracking, in case we're adding a task to a migrating VM */
427 void MSG_host_add_task(msg_host_t host, msg_task_t task)
428 {
429   simgrid::s4u::VirtualMachine* vm = dynamic_cast<simgrid::s4u::VirtualMachine*>(host);
430   if (vm == nullptr)
431     return;
432   simgrid::vm::VirtualMachineImpl* pimpl = static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_;
433
434   double remaining = MSG_task_get_flops_amount(task);
435   char *key = bprintf("%s-%p", task->name, task);
436
437   dirty_page_t dp = xbt_new0(s_dirty_page, 1);
438   dp->task = task;
439   if (pimpl->dp_enabled) {
440     dp->prev_clock = MSG_get_clock();
441     dp->prev_remaining = remaining;
442   }
443   if (!pimpl->dp_objs)
444     pimpl->dp_objs = xbt_dict_new_homogeneous(nullptr);
445   xbt_assert(xbt_dict_get_or_null(pimpl->dp_objs, key) == nullptr);
446   xbt_dict_set(pimpl->dp_objs, key, dp, nullptr);
447   XBT_DEBUG("add %s on %s (remaining %f, dp_enabled %d)", key, host->cname(), remaining, pimpl->dp_enabled);
448
449   xbt_free(key);
450 }
451
452 void MSG_host_del_task(msg_host_t host, msg_task_t task)
453 {
454   simgrid::s4u::VirtualMachine* vm = dynamic_cast<simgrid::s4u::VirtualMachine*>(host);
455   if (vm == nullptr)
456     return;
457   simgrid::vm::VirtualMachineImpl* pimpl = static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_;
458
459   char *key = bprintf("%s-%p", task->name, task);
460   dirty_page_t dp = (dirty_page_t)(pimpl->dp_objs ? xbt_dict_get_or_null(pimpl->dp_objs, key) : NULL);
461   xbt_assert(dp->task == task);
462
463   /* If we are in the middle of dirty page tracking, we record how much computation has been done until now, and keep
464    * the information for the lookup_() function that will called soon. */
465   if (pimpl->dp_enabled) {
466     double remaining = MSG_task_get_flops_amount(task);
467     double clock = MSG_get_clock();
468     // double updated = calc_updated_pages(key, host, dp, remaining, clock);
469     double updated = get_computed(key, host, dp, remaining, clock);
470
471     pimpl->dp_updated_by_deleted_tasks += updated;
472   }
473   if (pimpl->dp_objs)
474     xbt_dict_remove(pimpl->dp_objs, key);
475   xbt_free(dp);
476
477   XBT_DEBUG("del %s on %s", key, host->cname());
478   xbt_free(key);
479 }
480
481 static sg_size_t send_migration_data(msg_vm_t vm, msg_host_t src_pm, msg_host_t dst_pm, sg_size_t size, char* mbox,
482                                      int stage, int stage2_round, double mig_speed, double timeout)
483 {
484   sg_size_t sent = 0;
485   char *task_name = get_mig_task_name(vm, src_pm, dst_pm, stage);
486   msg_task_t task = MSG_task_create(task_name, 0, (double)size, nullptr);
487
488   /* TODO: clean up */
489
490   double clock_sta = MSG_get_clock();
491
492   msg_error_t ret;
493   if (mig_speed > 0)
494     ret = MSG_task_send_with_timeout_bounded(task, mbox, timeout, mig_speed);
495   else
496     ret = MSG_task_send(task, mbox);
497
498   xbt_free(task_name);
499
500   if (ret == MSG_OK) {
501     sent = size;
502   } else if (ret == MSG_TIMEOUT) {
503     sg_size_t remaining = (sg_size_t)MSG_task_get_remaining_communication(task);
504     sent = size - remaining;
505     XBT_VERB("timeout (%lf s) in sending_migration_data, remaining %llu bytes of %llu", timeout, remaining, size);
506   }
507
508   /* FIXME: why try-and-catch is used here? */
509   if(ret == MSG_HOST_FAILURE){
510     //XBT_DEBUG("SRC host failed during migration of %s (stage %d)", sg_host_name(vm), stage);
511     MSG_task_destroy(task);
512     THROWF(host_error, 0, "SRC host failed during migration of %s (stage %d)", vm->cname(), stage);
513   }else if(ret == MSG_TRANSFER_FAILURE){
514     //XBT_DEBUG("DST host failed during migration of %s (stage %d)", sg_host_name(vm), stage);
515     MSG_task_destroy(task);
516     THROWF(host_error, 0, "DST host failed during migration of %s (stage %d)", vm->cname(), stage);
517   }
518
519   double clock_end = MSG_get_clock();
520   double duration = clock_end - clock_sta;
521   double actual_speed = size / duration;
522
523   if (stage == 2)
524     XBT_DEBUG("mig-stage%d.%d: sent %llu duration %f actual_speed %f (target %f)", stage, stage2_round, size, duration,
525               actual_speed, mig_speed);
526   else
527     XBT_DEBUG("mig-stage%d: sent %llu duration %f actual_speed %f (target %f)", stage, size, duration, actual_speed,
528               mig_speed);
529
530   return sent;
531 }
532
533 static sg_size_t get_updated_size(double computed, double dp_rate, double dp_cap)
534 {
535   double updated_size = computed * dp_rate;
536   XBT_DEBUG("updated_size %f dp_rate %f", updated_size, dp_rate);
537   if (updated_size > dp_cap) {
538     // XBT_INFO("mig-stage2.%d: %f bytes updated, but cap it with the working set size %f", stage2_round, updated_size,
539     //          dp_cap);
540     updated_size = dp_cap;
541   }
542
543   return (sg_size_t) updated_size;
544 }
545
546 static int migration_tx_fun(int argc, char *argv[])
547 {
548   XBT_DEBUG("mig: tx_start");
549
550   // Note that the ms structure has been allocated in do_migration and hence should be freed in the same function ;)
551   migration_session *ms = (migration_session *) MSG_process_get_data(MSG_process_self());
552
553   s_vm_params_t params;
554   static_cast<simgrid::s4u::VirtualMachine*>(ms->vm)->parameters(&params);
555   const sg_size_t ramsize   = params.ramsize;
556   const sg_size_t devsize   = params.devsize;
557   const int skip_stage1     = params.skip_stage1;
558   int skip_stage2           = params.skip_stage2;
559   const double dp_rate      = params.dp_rate;
560   const double dp_cap       = params.dp_cap;
561   const double mig_speed    = params.mig_speed;
562   double max_downtime       = params.max_downtime;
563
564   double mig_timeout = 10000000.0;
565
566   double remaining_size = (double) (ramsize + devsize);
567   double threshold = 0.0;
568
569   /* check parameters */
570   if (ramsize == 0)
571     XBT_WARN("migrate a VM, but ramsize is zero");
572
573   if (max_downtime <= 0) {
574     XBT_WARN("use the default max_downtime value 30ms");
575     max_downtime = 0.03;
576   }
577
578   /* Stage1: send all memory pages to the destination. */
579   XBT_DEBUG("mig-stage1: remaining_size %f", remaining_size);
580   start_dirty_page_tracking(ms->vm);
581
582   double computed_during_stage1 = 0;
583   if (!skip_stage1) {
584     double clock_prev_send = MSG_get_clock();
585
586     try {
587       /* At stage 1, we do not need timeout. We have to send all the memory pages even though the duration of this
588        * transfer exceeds the timeout value. */
589       XBT_VERB("Stage 1: Gonna send %llu", ramsize);
590       sg_size_t sent = send_migration_data(ms->vm, ms->src_pm, ms->dst_pm, ramsize, ms->mbox, 1, 0, mig_speed, -1);
591       remaining_size -= sent;
592       computed_during_stage1 = lookup_computed_flop_counts(ms->vm, 1, 0);
593
594       if (sent < ramsize) {
595         XBT_VERB("mig-stage1: timeout, force moving to stage 3");
596         skip_stage2 = 1;
597       } else if (sent > ramsize)
598         XBT_CRITICAL("bug");
599
600     }
601     catch (xbt_ex& e) {
602       //hostfailure (if you want to know whether this is the SRC or the DST check directly in send_migration_data code)
603       // Stop the dirty page tracking an return (there is no memory space to release)
604       stop_dirty_page_tracking(ms->vm);
605       return 0;
606     }
607
608     double clock_post_send = MSG_get_clock();
609     mig_timeout -= (clock_post_send - clock_prev_send);
610     if (mig_timeout < 0) {
611       XBT_VERB("The duration of stage 1 exceeds the timeout value, skip stage 2");
612       skip_stage2 = 1;
613     }
614
615     /* estimate bandwidth */
616     double bandwidth = ramsize / (clock_post_send - clock_prev_send);
617     threshold        = bandwidth * max_downtime;
618     XBT_DEBUG("actual bandwidth %f (MB/s), threshold %f", bandwidth / 1024 / 1024, threshold);
619   }
620
621
622   /* Stage2: send update pages iteratively until the size of remaining states becomes smaller than threshold value. */
623   if (!skip_stage2) {
624
625     int stage2_round = 0;
626     for (;;) {
627
628       sg_size_t updated_size = 0;
629       if (stage2_round == 0) {
630         /* just after stage1, nothing has been updated. But, we have to send the data updated during stage1 */
631         updated_size = get_updated_size(computed_during_stage1, dp_rate, dp_cap);
632       } else {
633         double computed = lookup_computed_flop_counts(ms->vm, 2, stage2_round);
634         updated_size    = get_updated_size(computed, dp_rate, dp_cap);
635       }
636
637       XBT_DEBUG("mig-stage 2:%d updated_size %llu computed_during_stage1 %f dp_rate %f dp_cap %f", stage2_round,
638                 updated_size, computed_during_stage1, dp_rate, dp_cap);
639
640       /* Check whether the remaining size is below the threshold value. If so, move to stage 3. */
641       remaining_size += updated_size;
642       XBT_DEBUG("mig-stage2.%d: remaining_size %f (%s threshold %f)", stage2_round, remaining_size,
643                 (remaining_size < threshold) ? "<" : ">", threshold);
644       if (remaining_size < threshold)
645         break;
646
647       sg_size_t sent         = 0;
648       double clock_prev_send = MSG_get_clock();
649       try {
650         XBT_DEBUG("Stage 2, gonna send %llu", updated_size);
651         sent = send_migration_data(ms->vm, ms->src_pm, ms->dst_pm, updated_size, ms->mbox, 2, stage2_round, mig_speed,
652                                    mig_timeout);
653       } catch (xbt_ex& e) {
654         // hostfailure (if you want to know whether this is the SRC or the DST check directly in send_migration_data
655         // code)
656         // Stop the dirty page tracking an return (there is no memory space to release)
657         stop_dirty_page_tracking(ms->vm);
658         return 0;
659       }
660       double clock_post_send = MSG_get_clock();
661
662       if (sent == updated_size) {
663         /* timeout did not happen */
664         double bandwidth = updated_size / (clock_post_send - clock_prev_send);
665         threshold        = bandwidth * max_downtime;
666         XBT_DEBUG("actual bandwidth %f, threshold %f", bandwidth / 1024 / 1024, threshold);
667         remaining_size -= sent;
668         stage2_round += 1;
669         mig_timeout -= (clock_post_send - clock_prev_send);
670         xbt_assert(mig_timeout > 0);
671
672       } else if (sent < updated_size) {
673         /* When timeout happens, we move to stage 3. The size of memory pages
674          * updated before timeout must be added to the remaining size. */
675         XBT_VERB("mig-stage2.%d: timeout, force moving to stage 3. sent %llu / %llu, eta %lf", stage2_round, sent,
676                  updated_size, (clock_post_send - clock_prev_send));
677         remaining_size -= sent;
678
679         double computed = lookup_computed_flop_counts(ms->vm, 2, stage2_round);
680         updated_size    = get_updated_size(computed, dp_rate, dp_cap);
681         remaining_size += updated_size;
682         break;
683       } else
684         XBT_CRITICAL("bug");
685     }
686   }
687
688   /* Stage3: stop the VM and copy the rest of states. */
689   XBT_DEBUG("mig-stage3: remaining_size %f", remaining_size);
690   simgrid::vm::VirtualMachineImpl* pimpl = static_cast<simgrid::s4u::VirtualMachine*>(ms->vm)->pimpl_vm_;
691   pimpl->setState(SURF_VM_STATE_RUNNING); // FIXME: this bypass of the checks in suspend() is not nice
692   pimpl->isMigrating = false;             // FIXME: this bypass of the checks in suspend() is not nice
693   pimpl->suspend(SIMIX_process_self());
694   stop_dirty_page_tracking(ms->vm);
695
696   try {
697     XBT_DEBUG("Stage 3: Gonna send %f", remaining_size);
698     send_migration_data(ms->vm, ms->src_pm, ms->dst_pm, (sg_size_t)remaining_size, ms->mbox, 3, 0, mig_speed, -1);
699   }
700   catch(xbt_ex& e) {
701     //hostfailure (if you want to know whether this is the SRC or the DST check directly in send_migration_data code)
702     // Stop the dirty page tracking an return (there is no memory space to release)
703     static_cast<simgrid::s4u::VirtualMachine*>(ms->vm)->pimpl_vm_->resume();
704     return 0;
705   }
706
707   // At that point the Migration is considered valid for the SRC node but remind that the DST side should relocate
708   // effectively the VM on the DST node.
709   XBT_DEBUG("mig: tx_done");
710
711   return 0;
712 }
713
714 /** @brief Migrate the VM to the given host.
715  *  @ingroup msg_VMs
716  */
717 void MSG_vm_migrate(msg_vm_t vm, msg_host_t dst_pm)
718 {
719   /* some thoughts:
720    * - One approach is ...
721    *   We first create a new VM (i.e., destination VM) on the destination   physical host. The destination VM will
722    *   receive the state of the source
723    *   VM over network. We will finally destroy the source VM.
724    *   - This behavior is similar to the way of migration in the real world.
725    *     Even before a migration is completed, we will see a destination VM, consuming resources.
726    *   - We have to relocate all processes. The existing process migration code will work for this?
727    *   - The name of the VM is a somewhat unique ID in the code. It is tricky for the destination VM?
728    *
729    * - Another one is ...
730    *   We update the information of the given VM to place it to the destination physical host.
731    *
732    * The second one would be easier.
733    */
734
735   simgrid::s4u::VirtualMachine* typedVm  = static_cast<simgrid::s4u::VirtualMachine*>(vm);
736   simgrid::vm::VirtualMachineImpl* pimpl = typedVm->pimpl_vm_;
737   msg_host_t src_pm                      = pimpl->getPm();
738
739   if (src_pm->isOff())
740     THROWF(vm_error, 0, "Cannot migrate VM '%s' from host '%s', which is offline.", vm->cname(), src_pm->cname());
741   if (dst_pm->isOff())
742     THROWF(vm_error, 0, "Cannot migrate VM '%s' to host '%s', which is offline.", vm->cname(), dst_pm->cname());
743   if (!MSG_vm_is_running(vm))
744     THROWF(vm_error, 0, "Cannot migrate VM '%s' that is not running yet.", vm->cname());
745   if (typedVm->isMigrating())
746     THROWF(vm_error, 0, "Cannot migrate VM '%s' that is already migrating.", vm->cname());
747
748   pimpl->isMigrating = true;
749
750   struct migration_session *ms = xbt_new(struct migration_session, 1);
751   ms->vm = vm;
752   ms->src_pm = src_pm;
753   ms->dst_pm = dst_pm;
754
755   /* We have two mailboxes. mbox is used to transfer migration data between source and destination PMs. mbox_ctl is used
756    * to detect the completion of a migration. The names of these mailboxes must not conflict with others. */
757   ms->mbox_ctl = bprintf("__mbox_mig_ctl:%s(%s-%s)", vm->cname(), src_pm->cname(), dst_pm->cname());
758   ms->mbox     = bprintf("__mbox_mig_src_dst:%s(%s-%s)", vm->cname(), src_pm->cname(), dst_pm->cname());
759
760   char *pr_rx_name = get_mig_process_rx_name(vm, src_pm, dst_pm);
761   char *pr_tx_name = get_mig_process_tx_name(vm, src_pm, dst_pm);
762
763   char** argv = xbt_new(char*, 2);
764   argv[0]     = pr_rx_name;
765   argv[1]     = nullptr;
766   MSG_process_create_with_arguments(pr_rx_name, migration_rx_fun, ms, dst_pm, 1, argv);
767
768   argv        = xbt_new(char*, 2);
769   argv[0]     = pr_tx_name;
770   argv[1]     = nullptr;
771   MSG_process_create_with_arguments(pr_tx_name, migration_tx_fun, ms, src_pm, 1, argv);
772
773   /* wait until the migration have finished or on error has occurred */
774   XBT_DEBUG("wait for reception of the final ACK (i.e. migration has been correctly performed");
775   msg_task_t task = nullptr;
776   msg_error_t ret = MSG_TIMEOUT;
777   while (ret == MSG_TIMEOUT && dst_pm->isOn()) // The rx will tell me when he gots the VM
778     ret = MSG_task_receive_with_timeout(&task, ms->mbox_ctl, 4);
779
780   pimpl->isMigrating = false;
781
782   xbt_free(ms->mbox_ctl);
783   xbt_free(ms->mbox);
784   xbt_free(ms);
785
786   if (ret == MSG_HOST_FAILURE) {
787     // Note that since the communication failed, the owner did not change and the task should be destroyed on the
788     // other side. Hence, just throw the execption
789     XBT_ERROR("SRC crashes, throw an exception (m-control)");
790     // MSG_process_kill(tx_process); // Adrien, I made a merge on Nov 28th 2014, I'm not sure whether this line is
791     // required or not
792     THROWF(host_error, 0, "Source host '%s' failed during the migration of VM '%s'.", src_pm->cname(), vm->cname());
793   } else if ((ret == MSG_TRANSFER_FAILURE) || (ret == MSG_TIMEOUT)) {
794     // MSG_TIMEOUT here means that MSG_host_is_avail() returned false.
795     XBT_ERROR("DST crashes, throw an exception (m-control)");
796     THROWF(host_error, 0, "Destination host '%s' failed during the migration of VM '%s'.", dst_pm->cname(),
797            vm->cname());
798   }
799
800   char* expected_task_name = get_mig_task_name(vm, src_pm, dst_pm, 4);
801   xbt_assert(strcmp(task->name, expected_task_name) == 0);
802   xbt_free(expected_task_name);
803   MSG_task_destroy(task);
804 }
805
806 /** @brief Immediately suspend the execution of all processes within the given VM.
807  *  @ingroup msg_VMs
808  *
809  * This function stops the execution of the VM. All the processes on this VM
810  * will pause. The state of the VM is preserved. We can later resume it again.
811  *
812  * No suspension cost occurs.
813  */
814 void MSG_vm_suspend(msg_vm_t vm)
815 {
816   smx_actor_t issuer = SIMIX_process_self();
817   simgrid::simix::kernelImmediate([vm,issuer]() {
818     static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_->suspend(issuer);
819   });
820
821   XBT_DEBUG("vm_suspend done");
822
823   if (TRACE_msg_vm_is_enabled()) {
824     container_t vm_container = PJ_container_get(vm->cname());
825     type_t type              = PJ_type_get("MSG_VM_STATE", vm_container->type);
826     val_t value              = PJ_value_get_or_new("suspend", "1 0 0", type); // suspend is red
827     new_pajePushState(MSG_get_clock(), vm_container, type, value);
828   }
829 }
830
831 /** @brief Resume the execution of the VM. All processes on the VM run again.
832  *  @ingroup msg_VMs
833  *
834  * No resume cost occurs.
835  */
836 void MSG_vm_resume(msg_vm_t vm)
837 {
838   static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_->resume();
839
840   if (TRACE_msg_vm_is_enabled()) {
841     container_t vm_container = PJ_container_get(vm->cname());
842     type_t type              = PJ_type_get("MSG_VM_STATE", vm_container->type);
843     new_pajePopState(MSG_get_clock(), vm_container, type);
844   }
845 }
846
847 /** @brief Get the physical host of a given VM.
848  *  @ingroup msg_VMs
849  */
850 msg_host_t MSG_vm_get_pm(msg_vm_t vm)
851 {
852   return static_cast<simgrid::s4u::VirtualMachine*>(vm)->pm();
853 }
854
855 /** @brief Set a CPU bound for a given VM.
856  *  @ingroup msg_VMs
857  *
858  * 1. Note that in some cases MSG_task_set_bound() may not intuitively work for VMs.
859  *
860  * For example,
861  *  On PM0, there are Task1 and VM0.
862  *  On VM0, there is Task2.
863  * Now we bound 75% to Task1\@PM0 and bound 25% to Task2\@VM0.
864  * Then,
865  *  Task1\@PM0 gets 50%.
866  *  Task2\@VM0 gets 25%.
867  * This is NOT 75% for Task1\@PM0 and 25% for Task2\@VM0, respectively.
868  *
869  * This is because a VM has the dummy CPU action in the PM layer. Putting a task on the VM does not affect the bound of
870  * the dummy CPU action. The bound of the dummy CPU action is unlimited.
871  *
872  * There are some solutions for this problem. One option is to update the bound of the dummy CPU action automatically.
873  * It should be the sum of all tasks on the VM. But, this solution might be costly, because we have to scan all tasks
874  * on the VM in share_resource() or we have to trap both the start and end of task execution.
875  *
876  * The current solution is to use MSG_vm_set_bound(), which allows us to directly set the bound of the dummy CPU action.
877  *
878  * 2. Note that bound == 0 means no bound (i.e., unlimited). But, if a host has multiple CPU cores, the CPU share of a
879  *    computation task (or a VM) never exceeds the capacity of a CPU core.
880  */
881 void MSG_vm_set_bound(msg_vm_t vm, double bound)
882 {
883   simgrid::simix::kernelImmediate(
884       [vm, bound]() { static_cast<simgrid::s4u::VirtualMachine*>(vm)->pimpl_vm_->setBound(bound); });
885 }