Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
avoid warnings (and errors) without debug enabled
[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     void *ind_host_tmp = xbt_lib_get_elm_or_null(host_lib, name);
208     if (ind_host_tmp) {
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 static void launch_deferred_exec_process(msg_host_t host, double computation, double prio);
343
344
345 struct migration_session {
346   msg_vm_t vm;
347   msg_host_t src_pm;
348   msg_host_t dst_pm;
349
350   /* The miration_rx process uses mbox_ctl to let the caller of do_migration()
351    * know the completion of the migration. */
352   char *mbox_ctl;
353   /* The migration_rx and migration_tx processes use mbox to transfer migration
354    * data. */
355   char *mbox;
356 };
357
358
359 static int migration_rx_fun(int argc, char *argv[])
360 {
361   XBT_DEBUG("mig: rx_start");
362
363   // The structure has been created in the do_migration function and should only be freed in the same place ;)
364   struct migration_session *ms = MSG_process_get_data(MSG_process_self());
365
366   s_ws_params_t params;
367   simcall_host_get_params(ms->vm, &params);
368   const double xfer_cpu_overhead = params.xfer_cpu_overhead;
369
370   int need_exit = 0;
371
372   char *finalize_task_name = get_mig_task_name(ms->vm, ms->src_pm, ms->dst_pm, 3);
373
374   for (;;) {
375     msg_task_t task = NULL;
376     MSG_task_recv(&task, ms->mbox);
377     {
378       double received ;
379       if (task)
380         received = MSG_task_get_data_size(task);
381       else{
382         // An error occured, clean the code and return
383         // The owner did not change, hence the task should be only destroyed on the other side
384         xbt_free(finalize_task_name);
385          return 0;
386       }
387       /* TODO: clean up */
388       // const double alpha = 0.22L * 1.0E8 / (80L * 1024 * 1024);
389       launch_deferred_exec_process(ms->vm, received * xfer_cpu_overhead, 1);
390     }
391
392     if (strcmp(task->name, finalize_task_name) == 0)
393       need_exit = 1;
394
395     MSG_task_destroy(task);
396
397     if (need_exit)
398       break;
399   }
400
401   // Here Stage 1, 2  and 3 have been performed. 
402   // Hence complete the migration
403
404 // 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
405 // I should check with Takahiro in order to make this portion of code atomic
406   /* deinstall the current affinity setting for the CPU */
407   simcall_vm_set_affinity(ms->vm, ms->src_pm, 0);
408
409   /* Update the vm location */
410   simcall_vm_migrate(ms->vm, ms->dst_pm);
411   
412   /* Resume the VM */
413   simcall_vm_resume(ms->vm);
414
415   /* install the affinity setting of the VM on the destination pm */
416   {
417     msg_host_priv_t priv = msg_host_resource_priv(ms->vm);
418
419     unsigned long affinity_mask = (unsigned long) xbt_dict_get_or_null_ext(priv->affinity_mask_db, (char *) ms->dst_pm, sizeof(msg_host_t));
420     simcall_vm_set_affinity(ms->vm, ms->dst_pm, affinity_mask);
421     XBT_INFO("set affinity(0x%04lx@%s) for %s", affinity_mask, MSG_host_get_name(ms->dst_pm), MSG_host_get_name(ms->vm));
422   }
423
424   {
425     char *task_name = get_mig_task_name(ms->vm, ms->src_pm, ms->dst_pm, 4);
426
427     msg_task_t task = MSG_task_create(task_name, 0, 0, NULL);
428     msg_error_t ret = MSG_task_send(task, ms->mbox_ctl);
429     // xbt_assert(ret == MSG_OK);
430     if(ret == MSG_HOST_FAILURE){
431     // The SRC has crashed, this is not a problem has the VM has been correctly migrated on the DST node
432      MSG_task_destroy(task);
433     }
434     xbt_free(task_name);
435   }
436
437
438   xbt_free(finalize_task_name);
439
440   XBT_DEBUG("mig: rx_done");
441
442   return 0;
443 }
444
445 static void reset_dirty_pages(msg_vm_t vm)
446 {
447   msg_host_priv_t priv = msg_host_resource_priv(vm);
448
449   char *key = NULL;
450   xbt_dict_cursor_t cursor = NULL;
451   dirty_page_t dp = NULL;
452   xbt_dict_foreach(priv->dp_objs, cursor, key, dp) {
453     double remaining = MSG_task_get_remaining_computation(dp->task);
454     dp->prev_clock = MSG_get_clock();
455     dp->prev_remaining = remaining;
456
457     // XBT_INFO("%s@%s remaining %f", key, sg_host_name(vm), remaining);
458   }
459 }
460
461 static void start_dirty_page_tracking(msg_vm_t vm)
462 {
463   msg_host_priv_t priv = msg_host_resource_priv(vm);
464   priv->dp_enabled = 1;
465
466   reset_dirty_pages(vm);
467 }
468
469 static void stop_dirty_page_tracking(msg_vm_t vm)
470 {
471   msg_host_priv_t priv = msg_host_resource_priv(vm);
472   priv->dp_enabled = 0;
473 }
474
475 #if 0
476 /* It might be natural that we define dp_rate for each task. But, we will also
477  * have to care about how each task behavior affects the memory update behavior
478  * at the operating system level. It may not be easy to model it with a simple algorithm. */
479 double calc_updated_pages(char *key, msg_vm_t vm, dirty_page_t dp, double remaining, double clock)
480 {
481     double computed = dp->prev_remaining - remaining;
482     double duration = clock - dp->prev_clock;
483     double updated = dp->task->dp_rate * computed;
484
485     XBT_INFO("%s@%s: computated %f ops (remaining %f -> %f) in %f secs (%f -> %f)",
486         key, sg_host_name(vm), computed, dp->prev_remaining, remaining, duration, dp->prev_clock, clock);
487     XBT_INFO("%s@%s: updated %f bytes, %f Mbytes/s",
488         key, sg_host_name(vm), updated, updated / duration / 1000 / 1000);
489
490     return updated;
491 }
492 #endif
493
494 static double get_computed(char *key, msg_vm_t vm, dirty_page_t dp, double remaining, double clock)
495 {
496   double computed = dp->prev_remaining - remaining;
497   double duration = clock - dp->prev_clock;
498
499   XBT_DEBUG("%s@%s: computed %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
502   return computed;
503 }
504
505 static double lookup_computed_flop_counts(msg_vm_t vm, int stage_for_fancy_debug, int stage2_round_for_fancy_debug)
506 {
507   msg_host_priv_t priv = msg_host_resource_priv(vm);
508   double total = 0;
509
510   char *key = NULL;
511   xbt_dict_cursor_t cursor = NULL;
512   dirty_page_t dp = NULL;
513   xbt_dict_foreach(priv->dp_objs, cursor, key, dp) {
514     double remaining = MSG_task_get_remaining_computation(dp->task);
515
516          double clock = MSG_get_clock();
517
518     // total += calc_updated_pages(key, vm, dp, remaining, clock);
519     total += get_computed(key, vm, dp, remaining, clock);
520
521     dp->prev_remaining = remaining;
522     dp->prev_clock = clock;
523   }
524
525   total += priv->dp_updated_by_deleted_tasks;
526
527   XBT_DEBUG("mig-stage%d.%d: computed %f flop_counts (including %f by deleted tasks)",
528       stage_for_fancy_debug,
529       stage2_round_for_fancy_debug,
530       total, priv->dp_updated_by_deleted_tasks);
531
532
533
534   priv->dp_updated_by_deleted_tasks = 0;
535
536
537   return total;
538 }
539
540 // TODO Is this code redundant with the information provided by
541 // msg_process_t MSG_process_create(const char *name, xbt_main_func_t code, void *data, msg_host_t host)
542 void MSG_host_add_task(msg_host_t host, msg_task_t task)
543 {
544   msg_host_priv_t priv = msg_host_resource_priv(host);
545   double remaining = MSG_task_get_remaining_computation(task);
546   char *key = bprintf("%s-%p", task->name, task);
547
548   dirty_page_t dp = xbt_new0(s_dirty_page, 1);
549   dp->task = task;
550
551   /* It should be okay that we add a task onto a migrating VM. */
552   if (priv->dp_enabled) {
553     dp->prev_clock = MSG_get_clock();
554     dp->prev_remaining = remaining;
555   }
556
557   xbt_assert(xbt_dict_get_or_null(priv->dp_objs, key) == NULL);
558   xbt_dict_set(priv->dp_objs, key, dp, NULL);
559   XBT_DEBUG("add %s on %s (remaining %f, dp_enabled %d)", key, sg_host_name(host), remaining, priv->dp_enabled);
560
561   xbt_free(key);
562 }
563
564 void MSG_host_del_task(msg_host_t host, msg_task_t task)
565 {
566   msg_host_priv_t priv = msg_host_resource_priv(host);
567
568   char *key = bprintf("%s-%p", task->name, task);
569
570   dirty_page_t dp = xbt_dict_get_or_null(priv->dp_objs, key);
571   xbt_assert(dp->task == task);
572
573   /* If we are in the middle of dirty page tracking, we record how much
574    * computation has been done until now, and keep the information for the
575    * lookup_() function that will called soon. */
576   if (priv->dp_enabled) {
577     double remaining = MSG_task_get_remaining_computation(task);
578     double clock = MSG_get_clock();
579     // double updated = calc_updated_pages(key, host, dp, remaining, clock);
580     double updated = get_computed(key, host, dp, remaining, clock);
581
582     priv->dp_updated_by_deleted_tasks += updated;
583   }
584
585   xbt_dict_remove(priv->dp_objs, key);
586   xbt_free(dp);
587
588   XBT_DEBUG("del %s on %s", key, sg_host_name(host));
589
590   xbt_free(key);
591 }
592
593
594 static int deferred_exec_fun(int argc, char *argv[])
595 {
596   xbt_assert(argc == 3);
597   const char *comp_str = argv[1];
598   double computaion = atof(comp_str);
599   const char *prio_str = argv[2];
600   double prio = atof(prio_str);
601
602   msg_task_t task = MSG_task_create("__task_deferred", computaion, 0, NULL);
603   // XBT_INFO("exec deferred %f", computation);
604
605   /* dpt is the results of the VM activity */
606   MSG_task_set_priority(task, prio);
607   MSG_task_execute(task);
608
609
610
611   MSG_task_destroy(task);
612
613   return 0;
614 }
615
616 static void launch_deferred_exec_process(msg_host_t host, double computation, double prio)
617 {
618   char *pr_name = bprintf("__pr_deferred_exec_%s", MSG_host_get_name(host));
619
620   int nargvs = 4;
621   char **argv = xbt_new(char *, nargvs);
622   argv[0] = pr_name;
623   argv[1] = bprintf("%f", computation);
624   argv[2] = bprintf("%f", prio);
625   argv[3] = NULL;
626
627   MSG_process_create_with_arguments(pr_name, deferred_exec_fun, NULL, host, nargvs - 1, argv);
628 }
629
630
631 static int task_tx_overhead_fun(int argc, char *argv[])
632 {
633   xbt_assert(argc == 2);
634   const char *mbox = argv[1];
635
636   int need_exit = 0;
637
638   // XBT_INFO("start %s", mbox);
639
640   for (;;) {
641     msg_task_t task = NULL;
642     MSG_task_recv(&task, mbox);
643
644     // XBT_INFO("task->name %s", task->name);
645
646     if (strcmp(task->name, "finalize_making_overhead") == 0)
647       need_exit = 1;
648
649     // XBT_INFO("exec");
650     // MSG_task_set_priority(task, 1000000);
651     MSG_task_execute(task);
652     MSG_task_destroy(task);
653
654     if (need_exit)
655       break;
656   }
657
658   // XBT_INFO("bye");
659
660   return 0;
661 }
662
663 static void start_overhead_process(msg_task_t comm_task)
664 {
665   char *pr_name = bprintf("__pr_task_tx_overhead_%s", MSG_task_get_name(comm_task));
666   char *mbox    = bprintf("__mb_task_tx_overhead_%s", MSG_task_get_name(comm_task));
667
668   int nargvs = 3;
669   char **argv = xbt_new(char *, nargvs);
670   argv[0] = pr_name;
671   argv[1] = mbox;
672   argv[2] = NULL;
673
674   // XBT_INFO("micro start: mbox %s", mbox);
675   MSG_process_create_with_arguments(pr_name, task_tx_overhead_fun, NULL, MSG_host_self(), nargvs - 1, argv);
676 }
677
678 static void shutdown_overhead_process(msg_task_t comm_task)
679 {
680   char *mbox = bprintf("__mb_task_tx_overhead_%s", MSG_task_get_name(comm_task));
681
682   msg_task_t task = MSG_task_create("finalize_making_overhead", 0, 0, NULL);
683
684   // XBT_INFO("micro shutdown: mbox %s", mbox);
685   msg_error_t ret = MSG_task_send(task, mbox);
686   if(ret != MSG_OK)
687     xbt_die("shutdown error - task not sent");
688
689   xbt_free(mbox);
690   // XBT_INFO("shutdown done");
691 }
692
693 static void request_overhead(msg_task_t comm_task, double computation)
694 {
695   char *mbox = bprintf("__mb_task_tx_overhead_%s", MSG_task_get_name(comm_task));
696
697   msg_task_t task = MSG_task_create("micro", computation, 0, NULL);
698
699   // XBT_INFO("req overhead");
700   msg_error_t ret = MSG_task_send(task, mbox);
701   if(ret != MSG_OK)
702     xbt_die("req overhead error - task not sent");
703
704   xbt_free(mbox);
705 }
706
707 /* alpha is (floating_operations / bytes).
708  *
709  * When actual migration traffic was 32 mbytes/s, we observed the CPU
710  * utilization of the main thread of the Qemu process was 10 %. 
711  *   alpha = 0.1 * C / (32 * 1024 * 1024)
712  * where the CPU capacity of the PM is C flops/s.
713  *
714  * */
715 static void task_send_bounded_with_cpu_overhead(msg_task_t comm_task, char *mbox, double mig_speed, double alpha)
716 {
717   const double chunk_size = 1024 * 1024 * 10;
718   double remaining = MSG_task_get_data_size(comm_task);
719
720   start_overhead_process(comm_task);
721
722
723   while (remaining > 0) {
724     double data_size = chunk_size;
725     if (remaining < chunk_size)
726       data_size = remaining;
727
728     remaining -= data_size;
729
730     // XBT_INFO("remaining %f bytes", remaining);
731
732
733     double clock_sta = MSG_get_clock();
734
735     /* create a micro task */
736     {
737       char *mtask_name = bprintf("__micro_%s", MSG_task_get_name(comm_task));
738       msg_task_t mtask = MSG_task_create(mtask_name, 0, data_size, NULL);
739
740       request_overhead(comm_task, data_size * alpha);
741
742       msg_error_t ret = MSG_task_send(mtask, mbox);
743       if(ret != MSG_OK)
744         xbt_die("migration error - task not sent");
745
746       xbt_free(mtask_name);
747     }
748
749 #if 0
750     {
751       /* In the real world, sending data involves small CPU computation. */
752       char *mtask_name = bprintf("__micro_%s", MSG_task_get_name(comm_task));
753       msg_task_t mtask = MSG_task_create(mtask_name, data_size * alpha, data_size, NULL);
754       MSG_task_execute(mtask);
755       MSG_task_destroy(mtask);
756       xbt_free(mtask_name);
757     }
758 #endif
759    
760     /* TODO */
761
762     double clock_end = MSG_get_clock();
763
764
765     if (mig_speed > 0) {
766       /*
767        * (max bandwidth) > data_size / ((elapsed time) + time_to_sleep)
768        *
769        * Thus, we get
770        *   time_to_sleep > data_size / (max bandwidth) - (elapsed time)
771        *
772        * If time_to_sleep is smaller than zero, the elapsed time was too big. We
773        * do not need a micro sleep.
774        **/
775       double time_to_sleep = data_size / mig_speed - (clock_end - clock_sta);
776       if (time_to_sleep > 0)
777         MSG_process_sleep(time_to_sleep);
778
779
780       //XBT_INFO("duration %f", clock_end - clock_sta);
781       //XBT_INFO("time_to_sleep %f", time_to_sleep);
782     }
783   }
784
785   // XBT_INFO("%s", MSG_task_get_name(comm_task));
786   shutdown_overhead_process(comm_task);
787
788 }
789
790
791 #if 0
792 static void make_cpu_overhead_of_data_transfer(msg_task_t comm_task, double init_comm_size)
793 {
794   double prev_remaining = init_comm_size;
795
796   for (;;) {
797     double remaining = MSG_task_get_remaining_communication(comm_task);
798     if (remaining == 0)
799       need_exit = 1;
800
801     double sent = prev_remaining - remaining;
802     double comp_size = sent * overhead;
803
804
805     char *comp_task_name = bprintf("__sender_overhead%s", MSG_task_get_name(comm_task));
806     msg_task_t comp_task = MSG_task_create(comp_task_name, comp_size, 0, NULL);
807     MSG_task_execute(comp_task);
808     MSG_task_destroy(comp_task);
809
810     if (need_exit)
811       break;
812
813     prev_remaining = remaining;
814
815   }
816
817   xbt_free(comp_task_name);
818 }
819 #endif
820
821 // #define USE_MICRO_TASK 1
822
823 #if 0
824 // const double alpha = 0.1L * 1.0E8 / (32L * 1024 * 1024);
825 // const double alpha = 0.25L * 1.0E8 / (85L * 1024 * 1024);
826 // const double alpha = 0.20L * 1.0E8 / (85L * 1024 * 1024);
827 // const double alpha = 0.25L * 1.0E8 / (85L * 1024 * 1024);
828 // const double alpha = 0.32L * 1.0E8 / (24L * 1024 * 1024);   // makes super good values for 32 mbytes/s
829 //const double alpha = 0.32L * 1.0E8 / (32L * 1024 * 1024);
830 // const double alpha = 0.56L * 1.0E8 / (80L * 1024 * 1024);
831 ////const double alpha = 0.20L * 1.0E8 / (80L * 1024 * 1024);
832 // const double alpha = 0.56L * 1.0E8 / (90L * 1024 * 1024);
833 // const double alpha = 0.66L * 1.0E8 / (90L * 1024 * 1024);
834 // const double alpha = 0.20L * 1.0E8 / (80L * 1024 * 1024);
835
836 /* CPU 22% when 80Mbyte/s */
837 const double alpha = 0.22L * 1.0E8 / (80L * 1024 * 1024);
838 #endif
839
840
841 static void send_migration_data(msg_vm_t vm, msg_host_t src_pm, msg_host_t dst_pm,
842     sg_size_t size, char *mbox, int stage, int stage2_round, double mig_speed, double xfer_cpu_overhead)
843 {
844   char *task_name = get_mig_task_name(vm, src_pm, dst_pm, stage);
845   msg_task_t task = MSG_task_create(task_name, 0, size, NULL);
846
847   /* TODO: clean up */
848
849   double clock_sta = MSG_get_clock();
850
851 #ifdef USE_MICRO_TASK
852
853   task_send_bounded_with_cpu_overhead(task, mbox, mig_speed, xfer_cpu_overhead);
854
855 #else
856   msg_error_t ret;
857   if (mig_speed > 0)
858     ret = MSG_task_send_bounded(task, mbox, mig_speed);
859   else
860     ret = MSG_task_send(task, mbox);
861 //  xbt_assert(ret == MSG_OK);
862     xbt_free(task_name);
863     if(ret == MSG_HOST_FAILURE){
864         THROWF(host_error, 0, "host failed during migration of %s (stage %d)", sg_host_name(vm), stage);
865         //XBT_INFO("host failed during migration of %s (stage %d)", sg_host_name(vm), stage);
866         MSG_task_destroy(task);
867         return; 
868       
869      }
870 #endif
871
872   double clock_end = MSG_get_clock();
873   double duration = clock_end - clock_sta;
874   double actual_speed = size / duration;
875 #ifdef USE_MICRO_TASK
876   double cpu_utilization = size * xfer_cpu_overhead / duration / 1.0E8;
877 #else
878   double cpu_utilization = 0;
879 #endif
880
881   if (stage == 2){
882     XBT_DEBUG("mig-stage%d.%d: sent %llu duration %f actual_speed %f (target %f) cpu %f", stage, stage2_round, size, duration, actual_speed, mig_speed, cpu_utilization);}
883   else{
884     XBT_DEBUG("mig-stage%d: sent %llu duration %f actual_speed %f (target %f) cpu %f", stage, size, duration, actual_speed, mig_speed, cpu_utilization);
885   }
886
887
888 #ifdef USE_MICRO_TASK
889   /* The name of a micro task starts with __micro, which does not match the
890    * special name that finalizes the receiver loop. Thus, we send the special task.
891    **/
892   {
893     if (stage == 3) {
894       char *task_name = get_mig_task_name(vm_name, src_pm_name, dst_pm_name, stage);
895       msg_task_t task = MSG_task_create(task_name, 0, 0, NULL);
896       msg_error_t ret = MSG_task_send(task, mbox);
897 //      xbt_assert(ret == MSG_OK);
898       xbt_free(task_name);
899       if(ret == MSG_HOST_FAILURE){
900         THROWF(host_error, 0, "host failed during migration of VM %s (stage 3)", sg_host_name(vm));
901         //XBT_INFO("host failed during migration of %s (stage 3)", sg_host_name(vm));
902         // The owner of the task did not change so destroy the task 
903         MSG_task_destroy(task);
904         return; 
905       }
906     }
907   }
908 #endif
909
910 }
911
912 static double get_updated_size(double computed, double dp_rate, double dp_cap)
913 {
914   double updated_size = computed * dp_rate;
915   XBT_DEBUG("updated_size %f dp_rate %f", updated_size, dp_rate);
916   if (updated_size > dp_cap) {
917     // XBT_INFO("mig-stage2.%d: %f bytes updated, but cap it with the working set size %f", stage2_round, updated_size, dp_cap);
918     updated_size = dp_cap;
919   }
920
921   return updated_size;
922 }
923
924 static double send_stage1(struct migration_session *ms,
925     sg_size_t ramsize, double mig_speed, double xfer_cpu_overhead, double dp_rate, double dp_cap, double dpt_cpu_overhead)
926 {
927
928   // const long chunksize = (sg_size_t)1024 * 1024 * 100;
929   const sg_size_t chunksize = (sg_size_t)1024 * 1024 * 100000;
930   sg_size_t remaining = ramsize;
931   double computed_total = 0;
932
933   while (remaining > 0) {
934     sg_size_t datasize = chunksize;
935     if (remaining < chunksize)
936       datasize = remaining;
937
938     remaining -= datasize;
939
940     send_migration_data(ms->vm, ms->src_pm, ms->dst_pm, datasize, ms->mbox, 1, 0, mig_speed, xfer_cpu_overhead);
941     double computed = lookup_computed_flop_counts(ms->vm, 1, 0);
942     computed_total += computed;
943
944     // {
945     //   double updated_size = get_updated_size(computed, dp_rate, dp_cap);
946
947     //   double overhead = dpt_cpu_overhead * updated_size;
948     //   launch_deferred_exec_process(vm, overhead, 10000);
949     // }
950   }
951
952   return computed_total;
953 }
954
955
956
957 static double get_threshold_value(double bandwidth, double max_downtime)
958 {
959   /* This value assumes the network link is 1Gbps. */
960   // double threshold = max_downtime * 125 * 1024 * 1024;
961   double threshold = max_downtime * bandwidth;
962
963   return threshold;
964 }
965
966 static int migration_tx_fun(int argc, char *argv[])
967 {
968   XBT_DEBUG("mig: tx_start");
969
970   // Note that the ms structure has been allocated in do_migration and hence should be freed in the same function ;) 
971   struct migration_session *ms = MSG_process_get_data(MSG_process_self());
972
973   s_ws_params_t params;
974   simcall_host_get_params(ms->vm, &params);
975   const sg_size_t ramsize   = params.ramsize;
976   const sg_size_t devsize   = params.devsize;
977   const int skip_stage1     = params.skip_stage1;
978   const int skip_stage2     = params.skip_stage2;
979   const double dp_rate      = params.dp_rate;
980   const double dp_cap       = params.dp_cap;
981   const double mig_speed    = params.mig_speed;
982   const double xfer_cpu_overhead = params.xfer_cpu_overhead;
983   const double dpt_cpu_overhead = params.dpt_cpu_overhead;
984
985   double remaining_size = ramsize + devsize;
986
987   double max_downtime = params.max_downtime;
988   if (max_downtime == 0) {
989     XBT_WARN("use the default max_downtime value 30ms");
990     max_downtime = 0.03;
991   }
992
993   double threshold = 0.00001; /* TODO: cleanup */
994
995   /* setting up parameters has done */
996
997
998   if (ramsize == 0)
999     XBT_WARN("migrate a VM, but ramsize is zero");
1000
1001
1002   XBT_INFO("mig-stage1: remaining_size %f", remaining_size);
1003
1004   /* Stage1: send all memory pages to the destination. */
1005   start_dirty_page_tracking(ms->vm);
1006
1007   double computed_during_stage1 = 0;
1008   if (!skip_stage1) {
1009     // send_migration_data(vm_name, src_pm_name, dst_pm_name, ramsize, mbox, 1, 0, mig_speed, xfer_cpu_overhead);
1010
1011     /* send ramsize, but split it */
1012     double clock_prev_send = MSG_get_clock();
1013
1014     TRY{
1015         computed_during_stage1 = send_stage1(ms, ramsize, mig_speed, xfer_cpu_overhead, dp_rate, dp_cap, dpt_cpu_overhead);
1016     } CATCH_ANONYMOUS{
1017       //hostfailure
1018      // Stop the dirty page tracking an return (there is no memory space to release) 
1019       stop_dirty_page_tracking(ms->vm);
1020       return 0; 
1021     }
1022     remaining_size -= ramsize;
1023
1024     double clock_post_send = MSG_get_clock();
1025     double bandwidth = ramsize / (clock_post_send - clock_prev_send);
1026     threshold = get_threshold_value(bandwidth, max_downtime);
1027     XBT_INFO("actual bandwidth %f (MB/s), threshold %f", bandwidth / 1024 / 1024, threshold);
1028   }
1029
1030
1031   /* Stage2: send update pages iteratively until the size of remaining states
1032    * becomes smaller than the threshold value. */
1033   if (skip_stage2)
1034     goto stage3;
1035   if (max_downtime == 0) {
1036     XBT_WARN("no max_downtime parameter, skip stage2");
1037     goto stage3;
1038   }
1039
1040
1041   int stage2_round = 0;
1042   for (;;) {
1043
1044     double updated_size = 0;
1045     if (stage2_round == 0)  {
1046       /* just after stage1, nothing has been updated. But, we have to send the data updated during stage1 */
1047       updated_size = get_updated_size(computed_during_stage1, dp_rate, dp_cap);
1048     } else {
1049       double computed = lookup_computed_flop_counts(ms->vm, 2, stage2_round);
1050       updated_size = get_updated_size(computed, dp_rate, dp_cap);
1051     }
1052
1053     XBT_INFO("mig-stage 2:%d updated_size %f computed_during_stage1 %f dp_rate %f dp_cap %f",
1054         stage2_round, updated_size, computed_during_stage1, dp_rate, dp_cap);
1055
1056
1057     // if (stage2_round != 0) {
1058     //   /* during stage1, we have already created overhead tasks */
1059     //   double overhead = dpt_cpu_overhead * updated_size;
1060     //   XBT_DEBUG("updated %f overhead %f", updated_size, overhead);
1061     //   launch_deferred_exec_process(vm, overhead, 10000);
1062     // }
1063
1064
1065     {
1066       remaining_size += updated_size;
1067
1068       XBT_INFO("mig-stage2.%d: remaining_size %f (%s threshold %f)", stage2_round,
1069           remaining_size, (remaining_size < threshold) ? "<" : ">", threshold);
1070
1071       if (remaining_size < threshold)
1072         break;
1073     }
1074
1075     double clock_prev_send = MSG_get_clock();
1076     TRY{
1077       send_migration_data(ms->vm, ms->src_pm, ms->dst_pm, updated_size, ms->mbox, 2, stage2_round, mig_speed, xfer_cpu_overhead);
1078     }CATCH_ANONYMOUS{
1079       //hostfailure
1080       // Stop the dirty page tracking an return (there is no memory space to release) 
1081       stop_dirty_page_tracking(ms->vm);
1082       return 0; 
1083     }
1084     double clock_post_send = MSG_get_clock();
1085
1086     double bandwidth = updated_size / (clock_post_send - clock_prev_send);
1087     threshold = get_threshold_value(bandwidth, max_downtime);
1088     XBT_INFO("actual bandwidth %f, threshold %f", bandwidth / 1024 / 1024, threshold);
1089
1090
1091     remaining_size -= updated_size;
1092     stage2_round += 1;
1093   }
1094
1095
1096 stage3:
1097   /* Stage3: stop the VM and copy the rest of states. */
1098   XBT_INFO("mig-stage3: remaining_size %f", remaining_size);
1099   simcall_vm_suspend(ms->vm);
1100   stop_dirty_page_tracking(ms->vm);
1101  
1102  TRY{
1103     send_migration_data(ms->vm, ms->src_pm, ms->dst_pm, remaining_size, ms->mbox, 3, 0, mig_speed, xfer_cpu_overhead);
1104   }CATCH_ANONYMOUS{
1105       //hostfailure
1106       // Stop the dirty page tracking an return (there is no memory space to release) 
1107       simcall_vm_resume(ms->vm);
1108       return 0; 
1109     }
1110   
1111  // 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. 
1112
1113   XBT_DEBUG("mig: tx_done");
1114
1115   return 0;
1116 }
1117
1118
1119
1120 static void do_migration(msg_vm_t vm, msg_host_t src_pm, msg_host_t dst_pm)
1121 {
1122   struct migration_session *ms = xbt_new(struct migration_session, 1);
1123   ms->vm = vm;
1124   ms->src_pm = src_pm;
1125   ms->dst_pm = dst_pm;
1126   ms->mbox_ctl = get_mig_mbox_ctl(vm, src_pm, dst_pm);
1127   ms->mbox = get_mig_mbox_src_dst(vm, src_pm, dst_pm);
1128   
1129
1130   char *pr_rx_name = get_mig_process_rx_name(vm, src_pm, dst_pm);
1131   char *pr_tx_name = get_mig_process_tx_name(vm, src_pm, dst_pm);
1132
1133 //  MSG_process_create(pr_rx_name, migration_rx_fun, ms, dst_pm);
1134 //  MSG_process_create(pr_tx_name, migration_tx_fun, ms, src_pm);
1135 #if 1
1136  {
1137  char **argv = xbt_new(char *, 2);
1138  argv[0] = pr_rx_name;
1139  argv[1] = NULL;
1140  MSG_process_create_with_arguments(pr_rx_name, migration_rx_fun, ms, dst_pm, 1, argv);
1141  }
1142  {
1143  char **argv = xbt_new(char *, 2);
1144  argv[0] = pr_tx_name;
1145  argv[1] = NULL;
1146  MSG_process_create_with_arguments(pr_tx_name, migration_tx_fun, ms, src_pm, 1, argv);
1147  }
1148 #endif
1149
1150   /* wait until the migration have finished or on error has occured */
1151   {
1152     msg_task_t task = NULL;
1153     msg_error_t ret = MSG_task_recv(&task, ms->mbox_ctl);
1154
1155     xbt_free(ms->mbox_ctl);
1156     xbt_free(ms->mbox);
1157     xbt_free(ms);
1158     
1159     //xbt_assert(ret == MSG_OK);
1160     if(ret == MSG_HOST_FAILURE){
1161         // Note that since the communication failed, the owner did not change and the task should be destroyed on the other side.
1162         // Hence, just throw the execption
1163         THROWF(host_error, 0, "DST host failed during the migration of %s", sg_host_name(vm));
1164     } 
1165
1166     char *expected_task_name = get_mig_task_name(vm, src_pm, dst_pm, 4);
1167     xbt_assert(strcmp(task->name, expected_task_name) == 0);
1168     xbt_free(expected_task_name);
1169     MSG_task_destroy(task);
1170   }
1171 }
1172
1173
1174
1175
1176 /** @brief Migrate the VM to the given host.
1177  *  @ingroup msg_VMs
1178  *
1179  * FIXME: No migration cost occurs. If you want to simulate this too, you want to use a
1180  * MSG_task_send() before or after, depending on whether you want to do cold or hot
1181  * migration.
1182  */
1183 void MSG_vm_migrate(msg_vm_t vm, msg_host_t new_pm)
1184 {
1185   /* some thoughts:
1186    * - One approach is ...
1187    *   We first create a new VM (i.e., destination VM) on the destination
1188    *   physical host. The destination VM will receive the state of the source
1189    *   VM over network. We will finally destroy the source VM.
1190    *   - This behavior is similar to the way of migration in the real world.
1191    *     Even before a migration is completed, we will see a destination VM,
1192    *     consuming resources.
1193    *   - We have to relocate all processes. The existing process migraion code
1194    *     will work for this?
1195    *   - The name of the VM is a somewhat unique ID in the code. It is tricky
1196    *     for the destination VM?
1197    *
1198    * - Another one is ...
1199    *   We update the information of the given VM to place it to the destination
1200    *   physical host.
1201    *
1202    * The second one would be easier.
1203    *   
1204    */
1205
1206   msg_host_t old_pm = simcall_vm_get_pm(vm);
1207
1208   if (!MSG_vm_is_running(vm))
1209     THROWF(vm_error, 0, "VM(%s) is not running", sg_host_name(vm));
1210
1211   if (MSG_vm_is_migrating(vm))
1212     THROWF(vm_error, 0, "VM(%s) is already migrating", sg_host_name(vm));
1213
1214   msg_host_priv_t priv = msg_host_resource_priv(vm);
1215   priv->is_migrating = 1;
1216
1217   TRY{
1218    do_migration(vm, old_pm, new_pm);
1219   } CATCH_ANONYMOUS{
1220    RETHROW; 
1221    // TODO clean the code Adrien
1222   }
1223   priv->is_migrating = 0;
1224
1225   XBT_DEBUG("VM(%s) moved from PM(%s) to PM(%s)", vm->key, old_pm->key, new_pm->key);
1226
1227   #ifdef HAVE_TRACING
1228   TRACE_msg_vm_change_host(vm, old_pm, new_pm);
1229   #endif
1230 }
1231
1232
1233 /** @brief Immediately suspend the execution of all processes within the given VM.
1234  *  @ingroup msg_VMs
1235  *
1236  * This function stops the execution of the VM. All the processes on this VM
1237  * will pause. The state of the VM is preserved. We can later resume it again.
1238  *
1239  * No suspension cost occurs.
1240  */
1241 void MSG_vm_suspend(msg_vm_t vm)
1242 {
1243   if (MSG_vm_is_migrating(vm))
1244     THROWF(vm_error, 0, "VM(%s) is migrating", sg_host_name(vm));
1245
1246   simcall_vm_suspend(vm);
1247
1248   XBT_DEBUG("vm_suspend done");
1249
1250   #ifdef HAVE_TRACING
1251   TRACE_msg_vm_suspend(vm);
1252   #endif
1253 }
1254
1255
1256 /** @brief Resume the execution of the VM. All processes on the VM run again.
1257  *  @ingroup msg_VMs
1258  *
1259  * No resume cost occurs.
1260  */
1261 void MSG_vm_resume(msg_vm_t vm)
1262 {
1263   simcall_vm_resume(vm);
1264
1265   #ifdef HAVE_TRACING
1266   TRACE_msg_vm_resume(vm);
1267   #endif
1268 }
1269
1270
1271 /** @brief Immediately save the execution of all processes within the given VM.
1272  *  @ingroup msg_VMs
1273  *
1274  * This function stops the execution of the VM. All the processes on this VM
1275  * will pause. The state of the VM is preserved. We can later resume it again.
1276  *
1277  * FIXME: No suspension cost occurs. If you want to simulate this too, you want to
1278  * use a \ref MSG_file_write() before or after, depending on the exact semantic
1279  * of VM save to you.
1280  */
1281 void MSG_vm_save(msg_vm_t vm)
1282 {
1283   if (MSG_vm_is_migrating(vm))
1284     THROWF(vm_error, 0, "VM(%s) is migrating", sg_host_name(vm));
1285
1286   simcall_vm_save(vm);
1287   #ifdef HAVE_TRACING
1288   TRACE_msg_vm_save(vm);
1289   #endif
1290 }
1291
1292 /** @brief Restore the execution of the VM. All processes on the VM run again.
1293  *  @ingroup msg_VMs
1294  *
1295  * FIXME: No restore cost occurs. If you want to simulate this too, you want to
1296  * use a \ref MSG_file_read() before or after, depending on the exact semantic
1297  * of VM restore to you.
1298  */
1299 void MSG_vm_restore(msg_vm_t vm)
1300 {
1301   simcall_vm_restore(vm);
1302
1303   #ifdef HAVE_TRACING
1304   TRACE_msg_vm_restore(vm);
1305   #endif
1306 }
1307
1308
1309 /** @brief Get the physical host of a given VM.
1310  *  @ingroup msg_VMs
1311  */
1312 msg_host_t MSG_vm_get_pm(msg_vm_t vm)
1313 {
1314   return simcall_vm_get_pm(vm);
1315 }
1316
1317
1318 /** @brief Set a CPU bound for a given VM.
1319  *  @ingroup msg_VMs
1320  *
1321  * 1.
1322  * Note that in some cases MSG_task_set_bound() may not intuitively work for VMs.
1323  *
1324  * For example,
1325  *  On PM0, there are Task1 and VM0.
1326  *  On VM0, there is Task2.
1327  * Now we bound 75% to Task1\@PM0 and bound 25% to Task2\@VM0.
1328  * Then, 
1329  *  Task1\@PM0 gets 50%.
1330  *  Task2\@VM0 gets 25%.
1331  * This is NOT 75% for Task1\@PM0 and 25% for Task2\@VM0, respectively.
1332  *
1333  * This is because a VM has the dummy CPU action in the PM layer. Putting a
1334  * task on the VM does not affect the bound of the dummy CPU action. The bound
1335  * of the dummy CPU action is unlimited.
1336  *
1337  * There are some solutions for this problem. One option is to update the bound
1338  * of the dummy CPU action automatically. It should be the sum of all tasks on
1339  * the VM. But, this solution might be costly, because we have to scan all tasks
1340  * on the VM in share_resource() or we have to trap both the start and end of
1341  * task execution.
1342  *
1343  * The current solution is to use MSG_vm_set_bound(), which allows us to
1344  * directly set the bound of the dummy CPU action.
1345  *
1346  *
1347  * 2.
1348  * Note that bound == 0 means no bound (i.e., unlimited). But, if a host has
1349  * multiple CPU cores, the CPU share of a computation task (or a VM) never
1350  * exceeds the capacity of a CPU core.
1351  */
1352 void MSG_vm_set_bound(msg_vm_t vm, double bound)
1353 {
1354         return simcall_vm_set_bound(vm, bound);
1355 }
1356
1357
1358 /** @brief Set the CPU affinity of a given VM.
1359  *  @ingroup msg_VMs
1360  *
1361  * This function changes the CPU affinity of a given VM. Usage is the same as
1362  * MSG_task_set_affinity(). See the MSG_task_set_affinity() for details.
1363  */
1364 void MSG_vm_set_affinity(msg_vm_t vm, msg_host_t pm, unsigned long mask)
1365 {
1366   msg_host_priv_t priv = msg_host_resource_priv(vm);
1367
1368   if (mask == 0)
1369     xbt_dict_remove_ext(priv->affinity_mask_db, (char *) pm, sizeof(pm));
1370   else
1371     xbt_dict_set_ext(priv->affinity_mask_db, (char *) pm, sizeof(pm), (void *) mask, NULL);
1372
1373   msg_host_t pm_now = MSG_vm_get_pm(vm);
1374   if (pm_now == pm) {
1375     XBT_INFO("set affinity(0x%04lx@%s) for %s", mask, MSG_host_get_name(pm), MSG_host_get_name(vm));
1376     simcall_vm_set_affinity(vm, pm, mask);
1377   } else
1378     XBT_INFO("set affinity(0x%04lx@%s) for %s (not active now)", mask, MSG_host_get_name(pm), MSG_host_get_name(vm));
1379 }