Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
0ee891868bfb4fab3c3b49e50c9add5bf9533cf9
[simgrid.git] / src / simix / smx_vm.c
1 /* Copyright (c) 2007-2012. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "smx_private.h"
8 #include "xbt/sysdep.h"
9 #include "xbt/log.h"
10 #include "xbt/dict.h"
11 #include "mc/mc.h"
12
13 //If you need to log some stuffs, just uncomment these two lines and uses XBT_DEBUG for instance
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(simix_vm, simix, "Logging specific to SIMIX (vms)");
15
16 /* **** create a VM **** */
17
18 /**
19  * \brief Internal function to create a SIMIX host.
20  * \param name name of the host to create
21  * \param data some user data (may be NULL)
22  */
23 smx_host_t SIMIX_vm_create(const char *name, smx_host_t ind_phys_host)
24 {
25
26   smx_host_priv_t smx_host = xbt_new0(s_smx_host_priv_t, 1);
27   s_smx_process_t proc;
28
29   // TODO check why we do not have any VM here and why we have the host_proc_hookup  ?
30
31   /* Host structure */
32   smx_host->data = NULL;
33   smx_host->process_list =
34       xbt_swag_new(xbt_swag_offset(proc, host_proc_hookup));
35
36   /* Update global variables */
37   xbt_lib_set(host_lib,name,SIMIX_HOST_LEVEL,smx_host);
38
39   /* Create surf associated resource */
40   // TODO change phys_host into the right workstation surf model
41   surf_vm_workstation_model->extension.vm_workstation.create(name, ind_phys_host);
42
43   return xbt_lib_get_elm_or_null(host_lib, name);
44 }
45
46
47 smx_host_t SIMIX_pre_vm_create(smx_simcall_t simcall, const char *name, smx_host_t ind_phys_host){
48    return SIMIX_vm_create(name, ind_phys_host);
49 }
50
51
52 /* **** start a VM **** */
53 int __can_be_started(smx_host_t vm){
54         // TODO add checking code related to overcommitment or not.
55         return 1;
56 }
57 void SIMIX_vm_start(smx_host_t ind_vm){
58
59   //TODO only start the VM if you can
60   if (can_be_started(ind_vm))
61           SIMIX_set_vm_state(ind_vm, msg_vm_state_running);
62   else
63           THROWF(vm_error, 0, "The VM %s cannot be started", SIMIX_host_get_name(ind_vm));
64 }
65
66 void SIMIX_pre_vm_start(smx_simcall_t simcall, smx_host_t ind_vm){
67    SIMIX_vm_start(ind_vm);
68 }
69
70 /* ***** set/get state of a VM ***** */
71 void SIMIX_set_vm_state(smx_host_t ind_vm, int state){
72         surf_vm_workstation_model->extension.vm_workstation.set_state(ind_vm, state);
73 }
74 void SIMIX_prev_set_vm_state(smx_host_t ind_vm, int state){
75         SIMIX_set_vm_state(ind_vm, state);
76 }
77
78 int SIMIX_get_vm_state(smx_host_t ind_vm){
79  return surf_vm_workstation_model->extension.vm_workstation.get_state(ind_vm);
80 }
81 int SIMIX_pre_vm_state(smx_host_t ind_vm){
82         return SIMIX_get_vm_state(ind_vm);
83 }
84
85 /**
86  * \brief Function to migrate a SIMIX VM host. This function stops the exection of the
87  * VM. All the processes on this VM will pause. The state of the VM is
88  * perserved. We can later resume it again.
89  *
90  * \param host the vm host to migrate (a smx_host_t)
91  */
92 void SIMIX_vm_migrate(smx_host_t ind_vm, smx_host_t ind_dst_pm)
93 {
94   /* TODO: check state */
95
96   /* TODO: Using the variable of the MSG layer is not clean. */
97   SIMIX_set_vm_state(ind_vm, msg_vm_state_migrating);
98
99   /* jump to vm_ws_destroy(). this will update the vm location. */
100   surf_vm_workstation_model->extension.vm_workstation.migrate(ind_vm, ind_dst);
101
102   SIMIX_set_vm_state(ind_vm, msg_vm_state_running);
103 }
104
105 void SIMIX_pre_vm_migrate(smx_simcall_t simcall, smx_host_t ind_vm, smx_host_t ind_dst_pm){
106    SIMIX_vm_migrate(ind_vm, ind_dst_pm);
107 }
108
109 /**
110  * \brief Function to suspend a SIMIX VM host. This function stops the exection of the
111  * VM. All the processes on this VM will pause. The state of the VM is
112  * perserved. We can later resume it again.
113  *
114  * \param host the vm host to suspend (a smx_host_t)
115  */
116 void SIMIX_vm_suspend(smx_host_t ind_vm)
117 {
118   /* TODO: check state */
119
120   XBT_DEBUG("%lu processes in the VM", xbt_swag_size(SIMIX_host_priv(ind_vm)->process_list));
121
122   smx_process_t smx_process, smx_process_safe;
123   xbt_swag_foreach_safe(smx_process, smx_process_safe, SIMIX_host_priv(ind_vm)->process_list) {
124          XBT_DEBUG("suspend %s", SIMIX_host_get_name(ind_vm));
125          /* FIXME: calling a simcall from the SIMIX layer is strange. */
126          simcall_process_suspend(smx_process);
127   }
128
129   /* TODO: Using the variable of the MSG layer is not clean. */
130   SIMIX_set_vm_state(ind_vm, msg_vm_state_suspended);
131 }
132
133 void SIMIX_pre_vm_suspend(smx_simcall_t simcall, smx_host_t ind_vm){
134    SIMIX_vm_suspend(ind_vm);
135 }
136
137 /**
138  * \brief Function to resume a SIMIX VM host. This function restart the execution of the
139  * VM. All the processes on this VM will run again. 
140  *
141  * \param host the vm host to resume (a smx_host_t)
142  */
143 void SIMIX_vm_resume(smx_host_t ind_vm)
144 {
145   /* TODO: check state */
146
147   XBT_DEBUG("%lu processes in the VM", xbt_swag_size(SIMIX_host_priv(ind_vm)->process_list));
148
149   smx_process_t smx_process, smx_process_safe;
150   xbt_swag_foreach_safe(smx_process, smx_process_safe, SIMIX_host_priv(ind_vm)->process_list) {
151          XBT_DEBUG("resume %s", SIMIX_host_get_name(ind_vm));
152          /* FIXME: calling a simcall from the SIMIX layer is strange. */
153          simcall_process_resume(smx_process);
154   }
155
156   /* TODO: Using the variable of the MSG layer is not clean. */
157   SIMIX_set_vm_state(ind_vm, msg_vm_state_resumeed);
158 }
159
160 void SIMIX_pre_vm_resume(smx_simcall_t simcall, smx_host_t ind_vm){
161    SIMIX_vm_resume(ind_vm);
162 }
163
164 /**
165  * \brief Function to shutdown a SIMIX VM host. This function powers off the
166  * VM. All the processes on this VM will be killed. But, the state of the VM is
167  * perserved. We can later start it again.
168  *
169  * \param host the vm host to shutdown (a smx_host_t)
170  */
171 void SIMIX_vm_shutdown(smx_host_t ind_vm, smx_process_t issuer)
172 {
173   /* TODO: check state */
174
175   XBT_DEBUG("%lu processes in the VM", xbt_swag_size(SIMIX_host_priv(ind_vm)->process_list));
176
177   smx_process_t smx_process, smx_process_safe;
178   xbt_swag_foreach_safe(smx_process, smx_process_safe, SIMIX_host_priv(ind_vm)->process_list) {
179          XBT_DEBUG("kill %s", SIMIX_host_get_name(ind_vm));
180
181          SIMIX_process_kill(smx_process, issuer);
182   }
183
184   /* TODO: Using the variable of the MSG layer is not clean. */
185   SIMIX_set_vm_state(ind_vm, msg_vm_state_sleeping);
186 }
187
188 void SIMIX_pre_vm_shutdown(smx_simcall_t simcall, smx_host_t ind_vm){
189    SIMIX_vm_shutdown(ind_vm, simcall->issuer);
190 }
191
192 /**
193  * \brief Function to destroy a SIMIX VM host.
194  *
195  * \param host the vm host to destroy (a smx_host_t)
196  */
197 void SIMIX_vm_destroy(smx_host_t ind_vm)
198 {
199   /* this code basically performs a similar thing like SIMIX_host_destroy() */
200
201   xbt_assert((ind_vm != NULL), "Invalid parameters");
202   const char *hostname = SIMIX_host_get_name(ind_vm);
203
204   smx_host_priv_t host_priv = SIMIX_host_priv(ind_vm);
205
206   /* this will call the registered callback function, i.e., SIMIX_host_destroy().  */
207   xbt_lib_unset(host_lib, hostname, SIMIX_HOST_LEVEL);
208
209   /* jump to vm_ws_destroy(). The surf level resource will be freed. */
210   surf_vm_workstation_model->extension.vm_workstation.destroy(ind_vm);
211 }
212
213 void SIMIX_pre_vm_destroy(smx_simcall_t simcall, smx_host_t ind_vm){
214    SIMIX_vm_destroy(ind_vm);
215 }