Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove unnecessary comment out
[simgrid.git] / src / msg / msg_vm.c
1 /* Copyright (c) 2012-2014. 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 very
10  *    experimental code generating micro computation tasks
11  */
12
13
14
15 #include "msg_private.h"
16 #include "xbt/sysdep.h"
17 #include "xbt/log.h"
18 #include "simgrid/platf.h"
19
20 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_vm, msg,
21                                 "Cloud-oriented parts of the MSG API");
22
23
24 /* **** ******** GENERAL ********* **** */
25
26 /** \ingroup m_vm_management
27  * \brief Returns the value of a given vm property
28  *
29  * \param vm a vm
30  * \param name a property name
31  * \return value of a property (or NULL if property not set)
32  */
33
34 const char *MSG_vm_get_property_value(msg_vm_t vm, const char *name)
35 {
36   return MSG_host_get_property_value(vm, name);
37 }
38
39 /** \ingroup m_vm_management
40  * \brief Returns a xbt_dict_t consisting of the list of properties assigned to this host
41  *
42  * \param vm a vm
43  * \return a dict containing the properties
44  */
45 xbt_dict_t MSG_vm_get_properties(msg_vm_t vm)
46 {
47   xbt_assert((vm != NULL), "Invalid parameters (vm is NULL)");
48
49   return (simcall_host_get_properties(vm));
50 }
51
52 /** \ingroup m_host_management
53  * \brief Change the value of a given host property
54  *
55  * \param vm a vm
56  * \param name a property name
57  * \param value what to change the property to
58  * \param free_ctn the freeing function to use to kill the value on need
59  */
60 void MSG_vm_set_property_value(msg_vm_t vm, const char *name, void *value, void_f_pvoid_t free_ctn)
61 {
62   xbt_dict_set(MSG_host_get_properties(vm), name, value, free_ctn);
63 }
64
65 /** \ingroup msg_vm_management
66  * \brief Finds a msg_vm_t using its name.
67  *
68  * This is a name directory service
69  * \param name the name of a vm.
70  * \return the corresponding vm
71  *
72  * Please note that a VM is a specific host. Hence, you should give a different name
73  * for each VM/PM.
74  */
75
76 msg_vm_t MSG_vm_get_by_name(const char *name)
77 {
78   return MSG_get_host_by_name(name);
79 }
80
81 /** \ingroup m_vm_management
82  *
83  * \brief Return the name of the #msg_host_t.
84  *
85  * This functions checks whether \a host is a valid pointer or not and return
86    its name.
87  */
88 const char *MSG_vm_get_name(msg_vm_t vm)
89 {
90   return MSG_host_get_name(vm);
91 }
92
93
94 /* **** Check state of a VM **** */
95 static inline int __MSG_vm_is_state(msg_vm_t vm, e_surf_vm_state_t state)
96 {
97   return simcall_vm_get_state(vm) == state;
98 }
99
100 /** @brief Returns whether the given VM has just created, not running.
101  *  @ingroup msg_VMs
102  */
103 int MSG_vm_is_created(msg_vm_t vm)
104 {
105   return __MSG_vm_is_state(vm, SURF_VM_STATE_CREATED);
106 }
107
108 /** @brief Returns whether the given VM is currently running
109  *  @ingroup msg_VMs
110  */
111 int MSG_vm_is_running(msg_vm_t vm)
112 {
113   return __MSG_vm_is_state(vm, SURF_VM_STATE_RUNNING);
114 }
115
116 /** @brief Returns whether the given VM is currently migrating
117  *  @ingroup msg_VMs
118  */
119 int MSG_vm_is_migrating(msg_vm_t vm)
120 {
121   msg_host_priv_t priv = msg_host_resource_priv(vm);
122   return priv->is_migrating;
123 }
124
125 /** @brief Returns whether the given VM is currently suspended, not running.
126  *  @ingroup msg_VMs
127  */
128 int MSG_vm_is_suspended(msg_vm_t vm)
129 {
130   return __MSG_vm_is_state(vm, SURF_VM_STATE_SUSPENDED);
131 }
132
133 /** @brief Returns whether the given VM is being saved (FIXME: live saving or not?).
134  *  @ingroup msg_VMs
135  */
136 int MSG_vm_is_saving(msg_vm_t vm)
137 {
138   return __MSG_vm_is_state(vm, SURF_VM_STATE_SAVING);
139 }
140
141 /** @brief Returns whether the given VM has been saved, not running.
142  *  @ingroup msg_VMs
143  */
144 int MSG_vm_is_saved(msg_vm_t vm)
145 {
146   return __MSG_vm_is_state(vm, SURF_VM_STATE_SAVED);
147 }
148
149 /** @brief Returns whether the given VM is being restored, not running.
150  *  @ingroup msg_VMs
151  */
152 int MSG_vm_is_restoring(msg_vm_t vm)
153 {
154   return __MSG_vm_is_state(vm, SURF_VM_STATE_RESTORING);
155 }
156
157
158
159 /* ------------------------------------------------------------------------- */
160 /* ------------------------------------------------------------------------- */
161
162 /* **** ******** MSG vm actions ********* **** */
163
164 /** @brief Create a new VM with specified parameters.
165  *  @ingroup msg_VMs*
166  *  All parameters are in MBytes
167  *
168  */
169 msg_vm_t MSG_vm_create(msg_host_t ind_pm, const char *name,
170                        int ncpus, int ramsize,
171                        int net_cap, char *disk_path, int disksize,
172                        int mig_netspeed, int dp_intensity)
173 {
174   /* For the moment, intensity_rate is the percentage against the migration
175    * bandwidth */
176   double host_speed = MSG_get_host_speed(ind_pm);
177   double update_speed = ((double)dp_intensity/100) * mig_netspeed;
178
179   msg_vm_t vm = MSG_vm_create_core(ind_pm, name);
180   s_ws_params_t params;
181   memset(&params, 0, sizeof(params));
182   params.ramsize = (sg_size_t)ramsize * 1024 * 1024;
183   //params.overcommit = 0;
184   params.devsize = 0;
185   params.skip_stage2 = 0;
186   params.max_downtime = 0.03;
187   params.dp_rate = (update_speed * 1024 * 1024) / host_speed;
188   params.dp_cap = params.ramsize * 0.9; // assume working set memory is 90% of ramsize
189   params.mig_speed = (double)mig_netspeed * 1024 * 1024; // mig_speed
190
191   //XBT_INFO("dp rate %f migspeed : %f intensity mem : %d, updatespeed %f, hostspeed %f",params.dp_rate, params.mig_speed, dp_intensity, update_speed, host_speed);
192   simcall_host_set_params(vm, &params);
193
194   return vm;
195 }
196
197
198 /** @brief Create a new VM object. The VM is not yet started. The resource of the VM is allocated upon MSG_vm_start().
199  *  @ingroup msg_VMs*
200  *
201  * A VM is treated as a host. The name of the VM must be unique among all hosts.
202  */
203 msg_vm_t MSG_vm_create_core(msg_host_t ind_pm, const char *name)
204 {
205   /* make sure the VM of the same name does not exit */
206   {
207     xbt_dictelm_t ind_host_tmp = xbt_lib_get_elm_or_null(host_lib, name);
208     if (ind_host_tmp && xbt_lib_get_level(ind_host_tmp, SIMIX_HOST_LEVEL) != NULL) {
209       XBT_ERROR("host %s already exits", name);
210       return NULL;
211     }
212   }
213
214   /* Note: ind_vm and vm_workstation point to the same elm object. */
215   msg_vm_t ind_vm = NULL;
216   void *ind_vm_workstation =  NULL;
217
218   /* Ask the SIMIX layer to create the surf vm resource */
219   ind_vm_workstation = simcall_vm_create(name, ind_pm);
220   ind_vm = (msg_vm_t) __MSG_host_create(ind_vm_workstation);
221
222   XBT_DEBUG("A new VM (%s) has been created", name);
223
224   #ifdef HAVE_TRACING
225   TRACE_msg_vm_create(name, ind_pm);
226   #endif
227
228   return ind_vm;
229 }
230
231 /** @brief Destroy a VM. Destroy the VM object from the simulation.
232  *  @ingroup msg_VMs
233  */
234 void MSG_vm_destroy(msg_vm_t vm)
235 {
236   if (MSG_vm_is_migrating(vm))
237     THROWF(vm_error, 0, "VM(%s) is migrating", sg_host_name(vm));
238
239   /* First, terminate all processes on the VM if necessary */
240   if (MSG_vm_is_running(vm))
241       simcall_vm_shutdown(vm);
242
243   if (!MSG_vm_is_created(vm)) {
244     XBT_CRITICAL("shutdown the given VM before destroying it");
245     DIE_IMPOSSIBLE;
246   }
247
248   /* Then, destroy the VM object */
249   simcall_vm_destroy(vm);
250
251   __MSG_host_destroy(vm);
252
253   #ifdef HAVE_TRACING
254   TRACE_msg_vm_end(vm);
255   #endif
256 }
257
258
259 /** @brief Start a vm (i.e., boot the guest operating system)
260  *  @ingroup msg_VMs
261  *
262  *  If the VM cannot be started, an exception is generated.
263  *
264  */
265 void MSG_vm_start(msg_vm_t vm)
266 {
267   simcall_vm_start(vm);
268
269   #ifdef HAVE_TRACING
270   TRACE_msg_vm_start(vm);
271   #endif
272 }
273
274
275
276 /** @brief Immediately kills all processes within the given VM. Any memory that they allocated will be leaked.
277  *  @ingroup msg_VMs
278  *
279  * FIXME: No extra delay occurs. If you want to simulate this too, you want to
280  * use a #MSG_process_sleep() or something. I'm not quite sure.
281  */
282 void MSG_vm_shutdown(msg_vm_t vm)
283 {
284   /* msg_vm_t equals to msg_host_t */
285   simcall_vm_shutdown(vm);
286
287   // #ifdef HAVE_TRACING
288   // TRACE_msg_vm_(vm);
289   // #endif
290 }
291
292
293
294 /* We have two mailboxes. mbox is used to transfer migration data between
295  * source and destination PMs. mbox_ctl is used to detect the completion of a
296  * migration. The names of these mailboxes must not conflict with others. */
297 static inline char *get_mig_mbox_src_dst(msg_vm_t vm, msg_host_t src_pm, msg_host_t dst_pm)
298 {
299   char *vm_name = sg_host_name(vm);
300   char *src_pm_name = sg_host_name(src_pm);
301   char *dst_pm_name = sg_host_name(dst_pm);
302
303   return bprintf("__mbox_mig_src_dst:%s(%s-%s)", vm_name, src_pm_name, dst_pm_name);
304 }
305
306 static inline char *get_mig_mbox_ctl(msg_vm_t vm, msg_host_t src_pm, msg_host_t dst_pm)
307 {
308   char *vm_name = sg_host_name(vm);
309   char *src_pm_name = sg_host_name(src_pm);
310   char *dst_pm_name = sg_host_name(dst_pm);
311
312   return bprintf("__mbox_mig_ctl:%s(%s-%s)", vm_name, src_pm_name, dst_pm_name);
313 }
314
315 static inline char *get_mig_process_tx_name(msg_vm_t vm, msg_host_t src_pm, msg_host_t dst_pm)
316 {
317   char *vm_name = sg_host_name(vm);
318   char *src_pm_name = sg_host_name(src_pm);
319   char *dst_pm_name = sg_host_name(dst_pm);
320
321   return bprintf("__pr_mig_tx:%s(%s-%s)", vm_name, src_pm_name, dst_pm_name);
322 }
323
324 static inline char *get_mig_process_rx_name(msg_vm_t vm, msg_host_t src_pm, msg_host_t dst_pm)
325 {
326   char *vm_name = sg_host_name(vm);
327   char *src_pm_name = sg_host_name(src_pm);
328   char *dst_pm_name = sg_host_name(dst_pm);
329
330   return bprintf("__pr_mig_rx:%s(%s-%s)", vm_name, src_pm_name, dst_pm_name);
331 }
332
333 static inline char *get_mig_task_name(msg_vm_t vm, msg_host_t src_pm, msg_host_t dst_pm, int stage)
334 {
335   char *vm_name = sg_host_name(vm);
336   char *src_pm_name = sg_host_name(src_pm);
337   char *dst_pm_name = sg_host_name(dst_pm);
338
339   return bprintf("__task_mig_stage%d:%s(%s-%s)", stage, vm_name, src_pm_name, dst_pm_name);
340 }
341
342
343 struct migration_session {
344   msg_vm_t vm;
345   msg_host_t src_pm;
346   msg_host_t dst_pm;
347
348   /* The miration_rx process uses mbox_ctl to let the caller of do_migration()
349    * know the completion of the migration. */
350   char *mbox_ctl;
351   /* The migration_rx and migration_tx processes use mbox to transfer migration
352    * data. */
353   char *mbox;
354 };
355
356
357 static int migration_rx_fun(int argc, char *argv[])
358 {
359   XBT_DEBUG("mig: rx_start");
360
361   // The structure has been created in the do_migration function and should only be freed in the same place ;)
362   struct migration_session *ms = MSG_process_get_data(MSG_process_self());
363
364   s_ws_params_t params;
365   simcall_host_get_params(ms->vm, &params);
366
367   int need_exit = 0;
368
369   char *finalize_task_name = get_mig_task_name(ms->vm, ms->src_pm, ms->dst_pm, 3);
370
371   int ret = 0;
372   for (;;) {
373     msg_task_t task = NULL;
374     ret = MSG_task_recv(&task, ms->mbox);
375     {
376       if (ret != MSG_OK) {
377         // An error occured, clean the code and return
378         // The owner did not change, hence the task should be only destroyed on the other side
379         xbt_free(finalize_task_name);
380         return 0;
381       }
382     }
383
384     if (strcmp(task->name, finalize_task_name) == 0)
385       need_exit = 1;
386
387     MSG_task_destroy(task);
388
389     if (need_exit)
390       break;
391   }
392
393   // Here Stage 1, 2  and 3 have been performed.
394   // Hence complete the migration
395
396   // Copy the reference to the vm (if SRC crashes now, do_migration will free ms)
397   // This is clearly ugly but I (Adrien) need more time to do something cleaner (actually we should copy the whole ms structure at the begining and free it at the end of each function)
398    msg_vm_t vm = ms->vm;
399    msg_host_t src_pm = ms->src_pm;
400    msg_host_t dst_pm = ms-> dst_pm;
401    msg_host_priv_t priv = msg_host_resource_priv(vm);
402
403 // TODO: we have an issue, if the DST node is turning off during the three next calls, then the VM is in an inconsistent state
404 // I should check with Takahiro in order to make this portion of code atomic
405   /* deinstall the current affinity setting for the CPU */
406   simcall_vm_set_affinity(vm, src_pm, 0);
407
408   /* Update the vm location */
409   simcall_vm_migrate(vm, dst_pm);
410  
411   /* Resume the VM */
412   simcall_vm_resume(vm);
413
414   /* install the affinity setting of the VM on the destination pm */
415   {
416
417     unsigned long affinity_mask = (unsigned long) xbt_dict_get_or_null_ext(priv->affinity_mask_db, (char *)dst_pm, sizeof(msg_host_t));
418     simcall_vm_set_affinity(vm, dst_pm, affinity_mask);
419     XBT_DEBUG("set affinity(0x%04lx@%s) for %s", affinity_mask, MSG_host_get_name(dst_pm), MSG_host_get_name(vm));
420   }
421
422   {
423
424    // Now the VM is running on the new host (the migration is completed) (even if the SRC crash)
425    msg_host_priv_t priv = msg_host_resource_priv(vm);
426    priv->is_migrating = 0;
427    XBT_DEBUG("VM(%s) moved from PM(%s) to PM(%s)", ms->vm->key, ms->src_pm->key, ms->dst_pm->key);
428    #ifdef HAVE_TRACING
429     TRACE_msg_vm_change_host(ms->vm, ms->src_pm, ms->dst_pm);
430    #endif
431
432   }
433   // Inform the SRC that the migration has been correctly performed
434   {
435     char *task_name = get_mig_task_name(ms->vm, ms->src_pm, ms->dst_pm, 4);
436     msg_task_t task = MSG_task_create(task_name, 0, 0, NULL);
437     msg_error_t ret = MSG_task_send(task, ms->mbox_ctl);
438     // xbt_assert(ret == MSG_OK);
439     if(ret == MSG_HOST_FAILURE){
440       // The DST has crashed, this is a problem has the VM since we are not sure whether SRC is considering that the VM has been correctly migrated on the DST node
441       // TODO What does it mean ? What should we do ?
442       MSG_task_destroy(task);
443     } else if(ret == MSG_TRANSFER_FAILURE){
444       // The SRC has crashed, this is not a problem has the VM has been correctly migrated on the DST node
445       MSG_task_destroy(task);
446     }
447
448     xbt_free(task_name);
449   }
450
451
452   xbt_free(finalize_task_name);
453
454   XBT_DEBUG("mig: rx_done");
455
456   return 0;
457 }
458
459 static void reset_dirty_pages(msg_vm_t vm)
460 {
461   msg_host_priv_t priv = msg_host_resource_priv(vm);
462
463   char *key = NULL;
464   xbt_dict_cursor_t cursor = NULL;
465   dirty_page_t dp = NULL;
466   xbt_dict_foreach(priv->dp_objs, cursor, key, dp) {
467     double remaining = MSG_task_get_remaining_computation(dp->task);
468     dp->prev_clock = MSG_get_clock();
469     dp->prev_remaining = remaining;
470
471     // XBT_INFO("%s@%s remaining %f", key, sg_host_name(vm), remaining);
472   }
473 }
474
475 static void start_dirty_page_tracking(msg_vm_t vm)
476 {
477   msg_host_priv_t priv = msg_host_resource_priv(vm);
478   priv->dp_enabled = 1;
479
480   reset_dirty_pages(vm);
481 }
482
483 static void stop_dirty_page_tracking(msg_vm_t vm)
484 {
485   msg_host_priv_t priv = msg_host_resource_priv(vm);
486   priv->dp_enabled = 0;
487 }
488
489 #if 0
490 /* It might be natural that we define dp_rate for each task. But, we will also
491  * have to care about how each task behavior affects the memory update behavior
492  * at the operating system level. It may not be easy to model it with a simple algorithm. */
493 double calc_updated_pages(char *key, msg_vm_t vm, dirty_page_t dp, double remaining, double clock)
494 {
495     double computed = dp->prev_remaining - remaining;
496     double duration = clock - dp->prev_clock;
497     double updated = dp->task->dp_rate * computed;
498
499     XBT_INFO("%s@%s: computated %f ops (remaining %f -> %f) in %f secs (%f -> %f)",
500         key, sg_host_name(vm), computed, dp->prev_remaining, remaining, duration, dp->prev_clock, clock);
501     XBT_INFO("%s@%s: updated %f bytes, %f Mbytes/s",
502         key, sg_host_name(vm), updated, updated / duration / 1000 / 1000);
503
504     return updated;
505 }
506 #endif
507
508 static double get_computed(char *key, msg_vm_t vm, dirty_page_t dp, double remaining, double clock)
509 {
510   double computed = dp->prev_remaining - remaining;
511   double duration = clock - dp->prev_clock;
512
513   XBT_DEBUG("%s@%s: computed %f ops (remaining %f -> %f) in %f secs (%f -> %f)",
514       key, sg_host_name(vm), computed, dp->prev_remaining, remaining, duration, dp->prev_clock, clock);
515
516   return computed;
517 }
518
519 static double lookup_computed_flop_counts(msg_vm_t vm, int stage_for_fancy_debug, int stage2_round_for_fancy_debug)
520 {
521   msg_host_priv_t priv = msg_host_resource_priv(vm);
522   double total = 0;
523
524   char *key = NULL;
525   xbt_dict_cursor_t cursor = NULL;
526   dirty_page_t dp = NULL;
527   xbt_dict_foreach(priv->dp_objs, cursor, key, dp) {
528     double remaining = MSG_task_get_remaining_computation(dp->task);
529
530     double clock = MSG_get_clock();
531
532     // total += calc_updated_pages(key, vm, dp, remaining, clock);
533     total += get_computed(key, vm, dp, remaining, clock);
534
535     dp->prev_remaining = remaining;
536     dp->prev_clock = clock;
537   }
538
539   total += priv->dp_updated_by_deleted_tasks;
540
541   XBT_DEBUG("mig-stage%d.%d: computed %f flop_counts (including %f by deleted tasks)",
542       stage_for_fancy_debug,
543       stage2_round_for_fancy_debug,
544       total, priv->dp_updated_by_deleted_tasks);
545
546
547
548   priv->dp_updated_by_deleted_tasks = 0;
549
550
551   return total;
552 }
553
554 // TODO Is this code redundant with the information provided by
555 // msg_process_t MSG_process_create(const char *name, xbt_main_func_t code, void *data, msg_host_t host)
556 void MSG_host_add_task(msg_host_t host, msg_task_t task)
557 {
558   msg_host_priv_t priv = msg_host_resource_priv(host);
559   double remaining = MSG_task_get_remaining_computation(task);
560   char *key = bprintf("%s-%p", task->name, task);
561
562   dirty_page_t dp = xbt_new0(s_dirty_page, 1);
563   dp->task = task;
564
565   /* It should be okay that we add a task onto a migrating VM. */
566   if (priv->dp_enabled) {
567     dp->prev_clock = MSG_get_clock();
568     dp->prev_remaining = remaining;
569   }
570
571   xbt_assert(xbt_dict_get_or_null(priv->dp_objs, key) == NULL);
572   xbt_dict_set(priv->dp_objs, key, dp, NULL);
573   XBT_DEBUG("add %s on %s (remaining %f, dp_enabled %d)", key, sg_host_name(host), remaining, priv->dp_enabled);
574
575   xbt_free(key);
576 }
577
578 void MSG_host_del_task(msg_host_t host, msg_task_t task)
579 {
580   msg_host_priv_t priv = msg_host_resource_priv(host);
581
582   char *key = bprintf("%s-%p", task->name, task);
583
584   dirty_page_t dp = xbt_dict_get_or_null(priv->dp_objs, key);
585   xbt_assert(dp->task == task);
586
587   /* If we are in the middle of dirty page tracking, we record how much
588    * computation has been done until now, and keep the information for the
589    * lookup_() function that will called soon. */
590   if (priv->dp_enabled) {
591     double remaining = MSG_task_get_remaining_computation(task);
592     double clock = MSG_get_clock();
593     // double updated = calc_updated_pages(key, host, dp, remaining, clock);
594     double updated = get_computed(key, host, dp, remaining, clock);
595
596     priv->dp_updated_by_deleted_tasks += updated;
597   }
598
599   xbt_dict_remove(priv->dp_objs, key);
600   xbt_free(dp);
601
602   XBT_DEBUG("del %s on %s", key, sg_host_name(host));
603
604   xbt_free(key);
605 }
606
607
608
609
610 static void send_migration_data(msg_vm_t vm, msg_host_t src_pm, msg_host_t dst_pm,
611     sg_size_t size, char *mbox, int stage, int stage2_round, double mig_speed)
612 {
613   char *task_name = get_mig_task_name(vm, src_pm, dst_pm, stage);
614   msg_task_t task = MSG_task_create(task_name, 0, size, NULL);
615
616   /* TODO: clean up */
617
618   double clock_sta = MSG_get_clock();
619
620   msg_error_t ret;
621   if (mig_speed > 0)
622     ret = MSG_task_send_bounded(task, mbox, mig_speed);
623   else
624     ret = MSG_task_send(task, mbox);
625
626   xbt_free(task_name);
627   if(ret == MSG_HOST_FAILURE){
628         //XBT_INFO("SRC host failed during migration of %s (stage %d)", sg_host_name(vm), stage);
629         MSG_task_destroy(task);
630         THROWF(host_error, 0, "SRC host failed during migration of %s (stage %d)", sg_host_name(vm), stage);
631    }else if(ret == MSG_TRANSFER_FAILURE){
632         //XBT_INFO("DST host failed during migration of %s (stage %d)", sg_host_name(vm), stage);
633         MSG_task_destroy(task);
634         THROWF(host_error, 0, "DST host failed during migration of %s (stage %d)", sg_host_name(vm), stage);
635   }
636
637   double clock_end = MSG_get_clock();
638   double duration = clock_end - clock_sta;
639   double actual_speed = size / duration;
640
641   if (stage == 2)
642     XBT_DEBUG("mig-stage%d.%d: sent %llu duration %f actual_speed %f (target %f)", stage, stage2_round, size, duration, actual_speed, mig_speed);
643   else
644     XBT_DEBUG("mig-stage%d: sent %llu duration %f actual_speed %f (target %f)", stage, size, duration, actual_speed, mig_speed);
645
646 }
647
648 static double get_updated_size(double computed, double dp_rate, double dp_cap)
649 {
650   double updated_size = computed * dp_rate;
651   XBT_DEBUG("updated_size %f dp_rate %f", updated_size, dp_rate);
652   if (updated_size > dp_cap) {
653     // XBT_INFO("mig-stage2.%d: %f bytes updated, but cap it with the working set size %f", stage2_round, updated_size, dp_cap);
654     updated_size = dp_cap;
655   }
656
657   return updated_size;
658 }
659
660 static double send_stage1(struct migration_session *ms,
661     sg_size_t ramsize, double mig_speed, double dp_rate, double dp_cap)
662 {
663
664   // const long chunksize = (sg_size_t)1024 * 1024 * 100;
665   const sg_size_t chunksize = (sg_size_t)1024 * 1024 * 100000;
666   sg_size_t remaining = ramsize;
667   double computed_total = 0;
668
669   while (remaining > 0) {
670     sg_size_t datasize = chunksize;
671     if (remaining < chunksize)
672       datasize = remaining;
673
674     remaining -= datasize;
675     send_migration_data(ms->vm, ms->src_pm, ms->dst_pm, datasize, ms->mbox, 1, 0, mig_speed);
676     double computed = lookup_computed_flop_counts(ms->vm, 1, 0);
677     computed_total += computed;
678   }
679
680   return computed_total;
681 }
682
683
684
685 static double get_threshold_value(double bandwidth, double max_downtime)
686 {
687   return max_downtime * bandwidth;
688 }
689
690 static int migration_tx_fun(int argc, char *argv[])
691 {
692   XBT_DEBUG("mig: tx_start");
693
694   // Note that the ms structure has been allocated in do_migration and hence should be freed in the same function ;)
695   struct migration_session *ms = MSG_process_get_data(MSG_process_self());
696
697   s_ws_params_t params;
698   simcall_host_get_params(ms->vm, &params);
699   const sg_size_t ramsize   = params.ramsize;
700   const sg_size_t devsize   = params.devsize;
701   const int skip_stage1     = params.skip_stage1;
702   const int skip_stage2     = params.skip_stage2;
703   const double dp_rate      = params.dp_rate;
704   const double dp_cap       = params.dp_cap;
705   const double mig_speed    = params.mig_speed;
706
707
708   double remaining_size = ramsize + devsize;
709
710   double max_downtime = params.max_downtime;
711   if (max_downtime == 0) {
712     XBT_WARN("use the default max_downtime value 30ms");
713     max_downtime = 0.03;
714   }
715
716   double threshold = 0.00001; /* TODO: cleanup */
717
718   /* setting up parameters has done */
719
720
721   if (ramsize == 0)
722     XBT_WARN("migrate a VM, but ramsize is zero");
723
724
725   XBT_DEBUG("mig-stage1: remaining_size %f", remaining_size);
726
727   /* Stage1: send all memory pages to the destination. */
728   start_dirty_page_tracking(ms->vm);
729
730   double computed_during_stage1 = 0;
731   if (!skip_stage1) {
732     double clock_prev_send = MSG_get_clock();
733
734     TRY {
735       computed_during_stage1 = send_stage1(ms, ramsize, mig_speed, dp_rate, dp_cap);
736     } CATCH_ANONYMOUS{
737       //hostfailure (if you want to know whether this is the SRC or the DST please check directly in send_migration_data code)
738       // Stop the dirty page tracking an return (there is no memory space to release)
739       stop_dirty_page_tracking(ms->vm);
740       return 0;
741     }
742     remaining_size -= ramsize;
743
744     double clock_post_send = MSG_get_clock();
745     double bandwidth = ramsize / (clock_post_send - clock_prev_send);
746     threshold = get_threshold_value(bandwidth, max_downtime);
747     XBT_DEBUG("actual bandwidth %f (MB/s), threshold %f", bandwidth / 1024 / 1024, threshold);
748   }
749
750
751   /* Stage2: send update pages iteratively until the size of remaining states
752    * becomes smaller than the threshold value. */
753   if (skip_stage2)
754     goto stage3;
755   if (max_downtime == 0) {
756     XBT_WARN("no max_downtime parameter, skip stage2");
757     goto stage3;
758   }
759
760
761   int stage2_round = 0;
762   for (;;) {
763
764     double updated_size = 0;
765     if (stage2_round == 0)  {
766       /* just after stage1, nothing has been updated. But, we have to send the data updated during stage1 */
767       updated_size = get_updated_size(computed_during_stage1, dp_rate, dp_cap);
768     } else {
769       double computed = lookup_computed_flop_counts(ms->vm, 2, stage2_round);
770       updated_size = get_updated_size(computed, dp_rate, dp_cap);
771     }
772
773     XBT_DEBUG("mig-stage 2:%d updated_size %f computed_during_stage1 %f dp_rate %f dp_cap %f",
774         stage2_round, updated_size, computed_during_stage1, dp_rate, dp_cap);
775
776
777
778
779     {
780       remaining_size += updated_size;
781
782       XBT_DEBUG("mig-stage2.%d: remaining_size %f (%s threshold %f)", stage2_round,
783           remaining_size, (remaining_size < threshold) ? "<" : ">", threshold);
784
785       if (remaining_size < threshold)
786         break;
787     }
788
789     double clock_prev_send = MSG_get_clock();
790     TRY{
791       send_migration_data(ms->vm, ms->src_pm, ms->dst_pm, updated_size, ms->mbox, 2, stage2_round, mig_speed);
792     }CATCH_ANONYMOUS{
793       //hostfailure (if you want to know whether this is the SRC or the DST please check directly in send_migration_data code)
794       // Stop the dirty page tracking an return (there is no memory space to release)
795       stop_dirty_page_tracking(ms->vm);
796       return 0;
797     }
798     double clock_post_send = MSG_get_clock();
799
800     double bandwidth = updated_size / (clock_post_send - clock_prev_send);
801     threshold = get_threshold_value(bandwidth, max_downtime);
802     XBT_DEBUG("actual bandwidth %f, threshold %f", bandwidth / 1024 / 1024, threshold);
803
804
805     remaining_size -= updated_size;
806     stage2_round += 1;
807   }
808
809
810 stage3:
811   /* Stage3: stop the VM and copy the rest of states. */
812   XBT_DEBUG("mig-stage3: remaining_size %f", remaining_size);
813   simcall_vm_suspend(ms->vm);
814   stop_dirty_page_tracking(ms->vm);
815
816   TRY {
817     send_migration_data(ms->vm, ms->src_pm, ms->dst_pm, remaining_size, ms->mbox, 3, 0, mig_speed, -1);
818   } CATCH_ANONYMOUS {
819     //hostfailure (if you want to know whether this is the SRC or the DST please check directly in send_migration_data code)
820     // Stop the dirty page tracking an return (there is no memory space to release)
821     simcall_vm_resume(ms->vm);
822     return 0;
823   }
824
825   // At that point the Migration is considered valid for the SRC node but remind that the DST side should relocate effectively the VM on the DST node.
826
827   XBT_DEBUG("mig: tx_done");
828
829   return 0;
830 }
831
832
833
834 static int do_migration(msg_vm_t vm, msg_host_t src_pm, msg_host_t dst_pm)
835 {
836   struct migration_session *ms = xbt_new(struct migration_session, 1);
837   ms->vm = vm;
838   ms->src_pm = src_pm;
839   ms->dst_pm = dst_pm;
840   ms->mbox_ctl = get_mig_mbox_ctl(vm, src_pm, dst_pm);
841   ms->mbox = get_mig_mbox_src_dst(vm, src_pm, dst_pm);
842  
843
844   char *pr_rx_name = get_mig_process_rx_name(vm, src_pm, dst_pm);
845   char *pr_tx_name = get_mig_process_tx_name(vm, src_pm, dst_pm);
846
847 //  MSG_process_create(pr_rx_name, migration_rx_fun, ms, dst_pm);
848 //  MSG_process_create(pr_tx_name, migration_tx_fun, ms, src_pm);
849 #if 1
850  {
851  char **argv = xbt_new(char *, 2);
852  argv[0] = pr_rx_name;
853  argv[1] = NULL;
854  MSG_process_create_with_arguments(pr_rx_name, migration_rx_fun, ms, dst_pm, 1, argv);
855  }
856  {
857  char **argv = xbt_new(char *, 2);
858  argv[0] = pr_tx_name;
859  argv[1] = NULL;
860  MSG_process_create_with_arguments(pr_tx_name, migration_tx_fun, ms, src_pm, 1, argv);
861  }
862 #endif
863
864   /* wait until the migration have finished or on error has occured */
865   {
866     XBT_DEBUG("wait for reception of the final ACK (i.e. migration has been correctly performed");
867     msg_task_t task = NULL;
868     msg_error_t ret = MSG_TIMEOUT;
869     while (ret == MSG_TIMEOUT && MSG_host_is_on(dst_pm)) //Wait while you receive the message o
870      ret = MSG_task_receive_with_timeout(&task, ms->mbox_ctl, 10);
871
872     xbt_free(ms->mbox_ctl);
873     xbt_free(ms->mbox);
874     xbt_free(ms);
875    
876     //xbt_assert(ret == MSG_OK);
877     if(ret == MSG_HOST_FAILURE){
878         // Note that since the communication failed, the owner did not change and the task should be destroyed on the other side.
879         // Hence, just throw the execption
880         //XBT_INFO("SRC crashes, throw an exception (m-control)");
881         return -1;
882     }
883     else if((ret == MSG_TRANSFER_FAILURE) || (ret == MSG_TIMEOUT)){ // MSG_TIMEOUT here means that MSG_host_is_avail() returned false.
884         //XBT_INFO("DST crashes, throw an exception (m-control)");
885         return -2; 
886     }
887
888    
889     char *expected_task_name = get_mig_task_name(vm, src_pm, dst_pm, 4);
890     xbt_assert(strcmp(task->name, expected_task_name) == 0);
891     xbt_free(expected_task_name);
892     MSG_task_destroy(task);
893     return 0;
894   }
895 }
896
897
898
899
900 /** @brief Migrate the VM to the given host.
901  *  @ingroup msg_VMs
902  *
903  * FIXME: No migration cost occurs. If you want to simulate this too, you want to use a
904  * MSG_task_send() before or after, depending on whether you want to do cold or hot
905  * migration.
906  */
907 void MSG_vm_migrate(msg_vm_t vm, msg_host_t new_pm)
908 {
909   /* some thoughts:
910    * - One approach is ...
911    *   We first create a new VM (i.e., destination VM) on the destination
912    *   physical host. The destination VM will receive the state of the source
913    *   VM over network. We will finally destroy the source VM.
914    *   - This behavior is similar to the way of migration in the real world.
915    *     Even before a migration is completed, we will see a destination VM,
916    *     consuming resources.
917    *   - We have to relocate all processes. The existing process migraion code
918    *     will work for this?
919    *   - The name of the VM is a somewhat unique ID in the code. It is tricky
920    *     for the destination VM?
921    *
922    * - Another one is ...
923    *   We update the information of the given VM to place it to the destination
924    *   physical host.
925    *
926    * The second one would be easier.
927    *  
928    */
929
930   msg_host_t old_pm = simcall_vm_get_pm(vm);
931
932   if (!MSG_vm_is_running(vm))
933     THROWF(vm_error, 0, "VM(%s) is not running", sg_host_name(vm));
934
935   if (MSG_vm_is_migrating(vm))
936     THROWF(vm_error, 0, "VM(%s) is already migrating", sg_host_name(vm));
937
938   msg_host_priv_t priv = msg_host_resource_priv(vm);
939   priv->is_migrating = 1;
940
941   {
942   
943     int ret = do_migration(vm, old_pm, new_pm);
944     if (ret == -1){
945      priv->is_migrating = 0;
946      THROWF(host_error, 0, "SRC host failed during migration");
947     }
948     else if(ret == -2){
949      priv->is_migrating = 0;
950      THROWF(host_error, 0, "DST host failed during migration");
951     }
952   }
953
954   // This part is done in the RX code, to handle the corner case where SRC can crash just at the end of the migration process
955   // In that case, the VM has been already assigned to the DST node.
956   //XBT_DEBUG("VM(%s) moved from PM(%s) to PM(%s)", vm->key, old_pm->key, new_pm->key);
957   //#ifdef HAVE_TRACING
958   //TRACE_msg_vm_change_host(vm, old_pm, new_pm);
959   //#endif
960 }
961
962
963 /** @brief Immediately suspend the execution of all processes within the given VM.
964  *  @ingroup msg_VMs
965  *
966  * This function stops the execution of the VM. All the processes on this VM
967  * will pause. The state of the VM is preserved. We can later resume it again.
968  *
969  * No suspension cost occurs.
970  */
971 void MSG_vm_suspend(msg_vm_t vm)
972 {
973   if (MSG_vm_is_migrating(vm))
974     THROWF(vm_error, 0, "VM(%s) is migrating", sg_host_name(vm));
975
976   simcall_vm_suspend(vm);
977
978   XBT_DEBUG("vm_suspend done");
979
980   #ifdef HAVE_TRACING
981   TRACE_msg_vm_suspend(vm);
982   #endif
983 }
984
985
986 /** @brief Resume the execution of the VM. All processes on the VM run again.
987  *  @ingroup msg_VMs
988  *
989  * No resume cost occurs.
990  */
991 void MSG_vm_resume(msg_vm_t vm)
992 {
993   simcall_vm_resume(vm);
994
995   #ifdef HAVE_TRACING
996   TRACE_msg_vm_resume(vm);
997   #endif
998 }
999
1000
1001 /** @brief Immediately save the execution of all processes within the given VM.
1002  *  @ingroup msg_VMs
1003  *
1004  * This function stops the execution of the VM. All the processes on this VM
1005  * will pause. The state of the VM is preserved. We can later resume it again.
1006  *
1007  * FIXME: No suspension cost occurs. If you want to simulate this too, you want to
1008  * use a \ref MSG_file_write() before or after, depending on the exact semantic
1009  * of VM save to you.
1010  */
1011 void MSG_vm_save(msg_vm_t vm)
1012 {
1013   if (MSG_vm_is_migrating(vm))
1014     THROWF(vm_error, 0, "VM(%s) is migrating", sg_host_name(vm));
1015
1016   simcall_vm_save(vm);
1017   #ifdef HAVE_TRACING
1018   TRACE_msg_vm_save(vm);
1019   #endif
1020 }
1021
1022 /** @brief Restore the execution of the VM. All processes on the VM run again.
1023  *  @ingroup msg_VMs
1024  *
1025  * FIXME: No restore cost occurs. If you want to simulate this too, you want to
1026  * use a \ref MSG_file_read() before or after, depending on the exact semantic
1027  * of VM restore to you.
1028  */
1029 void MSG_vm_restore(msg_vm_t vm)
1030 {
1031   simcall_vm_restore(vm);
1032
1033   #ifdef HAVE_TRACING
1034   TRACE_msg_vm_restore(vm);
1035   #endif
1036 }
1037
1038
1039 /** @brief Get the physical host of a given VM.
1040  *  @ingroup msg_VMs
1041  */
1042 msg_host_t MSG_vm_get_pm(msg_vm_t vm)
1043 {
1044   return simcall_vm_get_pm(vm);
1045 }
1046
1047
1048 /** @brief Set a CPU bound for a given VM.
1049  *  @ingroup msg_VMs
1050  *
1051  * 1.
1052  * Note that in some cases MSG_task_set_bound() may not intuitively work for VMs.
1053  *
1054  * For example,
1055  *  On PM0, there are Task1 and VM0.
1056  *  On VM0, there is Task2.
1057  * Now we bound 75% to Task1\@PM0 and bound 25% to Task2\@VM0.
1058  * Then,
1059  *  Task1\@PM0 gets 50%.
1060  *  Task2\@VM0 gets 25%.
1061  * This is NOT 75% for Task1\@PM0 and 25% for Task2\@VM0, respectively.
1062  *
1063  * This is because a VM has the dummy CPU action in the PM layer. Putting a
1064  * task on the VM does not affect the bound of the dummy CPU action. The bound
1065  * of the dummy CPU action is unlimited.
1066  *
1067  * There are some solutions for this problem. One option is to update the bound
1068  * of the dummy CPU action automatically. It should be the sum of all tasks on
1069  * the VM. But, this solution might be costly, because we have to scan all tasks
1070  * on the VM in share_resource() or we have to trap both the start and end of
1071  * task execution.
1072  *
1073  * The current solution is to use MSG_vm_set_bound(), which allows us to
1074  * directly set the bound of the dummy CPU action.
1075  *
1076  *
1077  * 2.
1078  * Note that bound == 0 means no bound (i.e., unlimited). But, if a host has
1079  * multiple CPU cores, the CPU share of a computation task (or a VM) never
1080  * exceeds the capacity of a CPU core.
1081  */
1082 void MSG_vm_set_bound(msg_vm_t vm, double bound)
1083 {
1084   return simcall_vm_set_bound(vm, bound);
1085 }
1086
1087
1088 /** @brief Set the CPU affinity of a given VM.
1089  *  @ingroup msg_VMs
1090  *
1091  * This function changes the CPU affinity of a given VM. Usage is the same as
1092  * MSG_task_set_affinity(). See the MSG_task_set_affinity() for details.
1093  */
1094 void MSG_vm_set_affinity(msg_vm_t vm, msg_host_t pm, unsigned long mask)
1095 {
1096   msg_host_priv_t priv = msg_host_resource_priv(vm);
1097
1098   if (mask == 0)
1099     xbt_dict_remove_ext(priv->affinity_mask_db, (char *) pm, sizeof(pm));
1100   else
1101     xbt_dict_set_ext(priv->affinity_mask_db, (char *) pm, sizeof(pm), (void *) mask, NULL);
1102
1103   msg_host_t pm_now = MSG_vm_get_pm(vm);
1104   if (pm_now == pm) {
1105     XBT_DEBUG("set affinity(0x%04lx@%s) for %s", mask, MSG_host_get_name(pm), MSG_host_get_name(vm));
1106     simcall_vm_set_affinity(vm, pm, mask);
1107   } else
1108     XBT_DEBUG("set affinity(0x%04lx@%s) for %s (not active now)", mask, MSG_host_get_name(pm), MSG_host_get_name(vm));
1109 }