Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
bcfc8290b9ad350b29b5231d963e806b032afbba
[simgrid.git] / src / msg / msg_vm.c
1 /* Copyright (c) 2012. The SimGrid Team. All rights reserved.               */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 // QUESTIONS:
7 // 1./ check how and where a new VM is added to the list of the hosts
8 // 2./ Diff between SIMIX_Actions and SURF_Actions
9 // => SIMIX_actions : point synchro entre processus de niveau (theoretically speaking I do not have to create such SIMIX_ACTION
10 // =>  Surf_Actions
11
12 // TODO
13 //      MSG_TRACE can be revisited in order to use  the host
14 //      To implement a mixed model between workstation and vm_workstation,
15 //     please give a look at surf_model_private_t model_private at SURF Level and to the share resource functions
16 //     double (*share_resources) (double now);
17 //      For the action into the vm workstation model, we should be able to leverage the usual one (and if needed, look at
18 //              the workstation model.
19
20 #include "msg_private.h"
21 #include "xbt/sysdep.h"
22 #include "xbt/log.h"
23
24 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(msg_vm, msg,
25                                 "Cloud-oriented parts of the MSG API");
26
27
28 /* **** ******** GENERAL ********* **** */
29
30 /** \ingroup m_vm_management
31  * \brief Returns the value of a given vm property
32  *
33  * \param vm a vm
34  * \param name a property name
35  * \return value of a property (or NULL if property not set)
36  */
37
38 const char *MSG_vm_get_property_value(msg_vm_t vm, const char *name)
39 {
40   return MSG_host_get_property_value(vm, name);
41 }
42
43 /** \ingroup m_vm_management
44  * \brief Returns a xbt_dict_t consisting of the list of properties assigned to this host
45  *
46  * \param vm a vm
47  * \return a dict containing the properties
48  */
49 xbt_dict_t MSG_vm_get_properties(msg_vm_t vm)
50 {
51   xbt_assert((vm != NULL), "Invalid parameters (vm is NULL)");
52
53   return (simcall_host_get_properties(vm));
54 }
55
56 /** \ingroup m_host_management
57  * \brief Change the value of a given host property
58  *
59  * \param host a host
60  * \param name a property name
61  * \param value what to change the property to
62  * \param free_ctn the freeing function to use to kill the value on need
63  */
64 void MSG_vm_set_property_value(msg_vm_t vm, const char *name, void *value,void_f_pvoid_t free_ctn) {
65
66   xbt_dict_set(MSG_host_get_properties(vm), name, value,free_ctn);
67 }
68
69 /** \ingroup msg_vm_management
70  * \brief Finds a msg_vm_t using its name.
71  *
72  * This is a name directory service
73  * \param name the name of a vm.
74  * \return the corresponding vm
75  *
76  * Please note that a VM is a specific host. Hence, you should give a different name
77  * for each VM/PM.
78  */
79
80 msg_vm_t MSG_vm_get_by_name(const char *name){
81         return MSG_get_host_by_name(name);
82 }
83
84 /** \ingroup m_vm_management
85  *
86  * \brief Return the name of the #msg_host_t.
87  *
88  * This functions checks whether \a host is a valid pointer or not and return
89    its name.
90  */
91 const char *MSG_vm_get_name(msg_vm_t vm) {
92   return MSG_host_get_name(vm);
93 }
94
95 /* **** ******** MSG vm actions ********* **** */
96
97 /** @brief Create a new VM (the VM is just attached to the location but it is not started yet).
98  *  @ingroup msg_VMs*
99  *
100  * Please note that a VM is a specific host. Hence, you should give a different name
101  * for each VM/PM.
102  */
103 msg_vm_t MSG_vm_create(msg_host_t ind_host, const char *name,
104                                              int core_nb, int mem_cap, int net_cap){
105
106   // Note new and vm_workstation refer to the same area (due to the lib/dict appraoch)
107   msg_vm_t new = NULL;
108   void *ind_vm_workstation =  NULL;
109   // Ask simix to create the surf vm resource
110   ind_vm_workstation = simcall_vm_create(name,ind_host);
111   new = (msg_vm_t) __MSG_host_create(ind_vm_workstation);
112
113   MSG_vm_set_property_value(new, "CORE_NB", bprintf("%d", core_nb), free);
114   MSG_vm_set_property_value(new, "MEM_CAP", bprintf("%d", mem_cap), free);
115   MSG_vm_set_property_value(new, "NET_CAP", bprintf("%d", net_cap), free);
116
117   XBT_DEBUG("A new VM has been created");
118   // TODO check whether the vm (i.e the virtual host) has been correctly added into the list of all hosts.
119
120   #ifdef HAVE_TRACING
121   TRACE_msg_vm_create(name, ind_host);
122   #endif
123
124   return new;
125 }
126
127 /** @brief Start a vm (ie. boot)
128  *  @ingroup msg_VMs
129  *
130  *  If the VM cannot be started, an exception is generated.
131  *
132  */
133 void MSG_vm_start(msg_vm_t vm) {
134
135   //Please note that vm start can raise an exception if the VM cannot be started.
136   simcall_vm_start(vm);
137
138   #ifdef HAVE_TRACING
139   TRACE_msg_vm_start(vm);
140   #endif
141 }
142
143 /* **** Check state of a VM **** */
144 int __MSG_vm_is_state(msg_vm_t vm, e_msg_vm_state_t state) {
145         return simcall_vm_get_state(vm) == state ;
146 }
147
148 /** @brief Returns whether the given VM is currently suspended
149  *  @ingroup msg_VMs
150  */
151 int MSG_vm_is_suspended(msg_vm_t vm) {
152         return __MSG_vm_is_state(vm, msg_vm_state_suspended);
153 }
154 /** @brief Returns whether the given VM is currently running
155  *  @ingroup msg_VMs
156  */
157 int MSG_vm_is_running(msg_vm_t vm) {
158   return __MSG_vm_is_state(vm, msg_vm_state_running);
159 }
160
161 // TODO Implement the functions for the different state
162
163
164 /** @brief Immediately kills all processes within the given VM. Any memory that they allocated will be leaked.
165  *  @ingroup msg_VMs
166  *
167  * FIXME: No extra delay occurs. If you want to simulate this too, you want to
168  * use a #MSG_process_sleep() or something. I'm not quite sure.
169  */
170 void MSG_vm_shutdown(msg_vm_t vm)
171 {
172   /* msg_vm_t equals to msg_host_t */
173   simcall_vm_shutdown(vm);
174
175   // #ifdef HAVE_TRACING
176   // TRACE_msg_vm_(vm);
177   // #endif
178 }
179
180
181
182 /** @brief Migrate the VM to the given host.
183  *  @ingroup msg_VMs
184  *
185  * FIXME: update comments.
186  * No migration cost occurs. If you want to simulate this too, you want to use a
187  * MSG_task_send() before or after, depending on whether you want to do cold or hot
188  * migration.
189  */
190 void MSG_vm_migrate(msg_vm_t vm, msg_host_t destination)
191 {
192   /* some thoughts:
193    * - One approach is ...
194    *   We first create a new VM (i.e., destination VM) on the destination
195    *   physical host. The destination VM will receive the state of the source
196    *   VM over network. We will finally destroy the source VM.
197    *   - This behavior is similar to the way of migration in the real world.
198    *     Even before a migration is completed, we will see a destination VM,
199    *     consuming resources.
200    *   - We have to relocate all processes. The existing process migraion code
201    *     will work for this?
202    *   - The name of the VM is a somewhat unique ID in the code. It is tricky
203    *     for the destination VM?
204    *
205    * - Another one is ...
206    *   We update the information of the given VM to place it to the destination
207    *   physical host.
208    *
209    * The second one would be easier.
210    *   
211    */
212
213   #ifdef HAVE_TRACING
214   const char *old_pm_name = simcall_vm_get_phys_host(vm);
215   msg_host_t old_pm_ind  = xbt_lib_get_elm_or_null(host_lib, old_pm_name);
216   #endif
217
218   simcall_vm_migrate(vm, destination);
219
220
221   #ifdef HAVE_TRACING
222   TRACE_msg_vm_change_host(vm, old_pm_ind, destination);
223   #endif
224 }
225
226
227 /** @brief Immediately suspend the execution of all processes within the given VM.
228  *  @ingroup msg_VMs
229  *
230  * This function stops the exection of the VM. All the processes on this VM
231  * will pause. The state of the VM is perserved. We can later resume it again.
232  *
233  * FIXME: No suspension cost occurs. If you want to simulate this too, you want to
234  * use a \ref MSG_file_write() before or after, depending on the exact semantic
235  * of VM suspend to you.
236  */
237 void MSG_vm_suspend(msg_vm_t vm)
238 {
239   simcall_vm_suspend(vm);
240
241   #ifdef HAVE_TRACING
242   TRACE_msg_vm_suspend(vm);
243   #endif
244 }
245
246
247
248 /** @brief Resume the execution of the VM. All processes on the VM run again.
249  *  @ingroup msg_VMs
250  *
251  * No resume cost occurs. If you want to simulate this too, you want to
252  * use a \ref MSG_file_read() before or after, depending on the exact semantic
253  * of VM resume to you.
254  */
255 void MSG_vm_resume(msg_vm_t vm)
256 {
257   simcall_vm_resume(vm);
258
259   #ifdef HAVE_TRACING
260   TRACE_msg_vm_resume(vm);
261   #endif
262 }
263
264 //
265 ///**
266 // * \ingroup msg_VMs
267 // * \brief Reboot the VM, restarting all the processes in it.
268 // */
269 //void MSG_vm_reboot(msg_vm_t vm)
270 //{
271 //  xbt_dynar_t new_processes = xbt_dynar_new(sizeof(msg_process_t),NULL);
272 //
273 //  msg_process_t process;
274 //  unsigned int cpt;
275 //
276 //  xbt_dynar_foreach(vm->processes,cpt,process) {
277 //    msg_process_t new_process = MSG_process_restart(process);
278 //    xbt_dynar_push_as(new_processes,msg_process_t,new_process);
279 //
280 //  }
281 //
282 //  xbt_dynar_foreach(new_processes, cpt, process) {
283 //    MSG_vm_bind(vm,process);
284 //  }
285 //
286 //  xbt_dynar_free(&new_processes);
287 //}
288 //
289
290 /** @brief Destroy a VM. Destroy the VM object from the simulation.
291  *  @ingroup msg_VMs
292  */
293 void MSG_vm_destroy(msg_vm_t vm)
294 {
295   /* First, terminate all processes on the VM */
296   simcall_vm_shutdown(vm);
297
298   /* Then, destroy the VM object */
299   simcall_vm_destroy(vm);
300
301   #ifdef HAVE_TRACING
302   TRACE_msg_vm_end(vm);
303   #endif
304 }