Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://framagit.org/simgrid/simgrid
[simgrid.git] / src / s4u / s4u_VirtualMachine.cpp
1 /* Copyright (c) 2015-2023. 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 #include "simgrid/simix.hpp"
7 #include <simgrid/Exception.hpp>
8 #include <simgrid/kernel/routing/NetPoint.hpp>
9 #include <simgrid/vm.h>
10
11 #include "src/kernel/resource/VirtualMachineImpl.hpp"
12 #include "src/kernel/resource/models/cpu_cas01.hpp"
13
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(s4u_vm, s4u, "S4U virtual machines");
15
16 namespace simgrid::s4u {
17 xbt::signal<void(VirtualMachine&)> VirtualMachine::on_vm_creation;
18 xbt::signal<void(VirtualMachine const&)> VirtualMachine::on_start;
19 xbt::signal<void(VirtualMachine const&)> VirtualMachine::on_started;
20 xbt::signal<void(VirtualMachine const&)> VirtualMachine::on_shutdown;
21 xbt::signal<void(VirtualMachine const&)> VirtualMachine::on_suspend;
22 xbt::signal<void(VirtualMachine const&)> VirtualMachine::on_resume;
23 xbt::signal<void(VirtualMachine const&)> VirtualMachine::on_migration_start;
24 xbt::signal<void(VirtualMachine const&)> VirtualMachine::on_migration_end;
25 xbt::signal<void(VirtualMachine const&)> VirtualMachine::on_vm_destruction;
26
27 xbt::Extension<Host, VmHostExt> VmHostExt::EXTENSION_ID;
28
29 void VmHostExt::ensureVmExtInstalled()
30 {
31   if (not EXTENSION_ID.valid())
32     EXTENSION_ID = Host::extension_create<VmHostExt>();
33 }
34
35 VirtualMachine::VirtualMachine(const std::string& name, s4u::Host* physical_host, int core_amount, size_t ramsize)
36     : Host(new kernel::resource::VirtualMachineImpl(name, this, physical_host, core_amount, ramsize))
37     , pimpl_vm_(dynamic_cast<kernel::resource::VirtualMachineImpl*>(Host::get_impl()))
38 {
39   physical_host->get_impl()->create_vm(name, this);
40 }
41
42 VirtualMachine::VirtualMachine(kernel::resource::VirtualMachineImpl* impl)
43     : Host(impl), pimpl_vm_(dynamic_cast<kernel::resource::VirtualMachineImpl*>(Host::get_impl()))
44 {
45 }
46
47 void VirtualMachine::start()
48 {
49   kernel::actor::simcall_answered([this]() { pimpl_vm_->start(); });
50 }
51
52 void VirtualMachine::suspend()
53 {
54   const kernel::actor::ActorImpl* issuer = kernel::actor::ActorImpl::self();
55   kernel::actor::simcall_answered([this, issuer]() { pimpl_vm_->suspend(issuer); });
56 }
57
58 void VirtualMachine::resume()
59 {
60   pimpl_vm_->resume();
61 }
62
63 void VirtualMachine::shutdown()
64 {
65   kernel::actor::ActorImpl* issuer = kernel::actor::ActorImpl::self();
66   kernel::actor::simcall_answered([this, issuer]() { pimpl_vm_->shutdown(issuer); });
67 }
68
69 void VirtualMachine::destroy()
70 {
71   auto destroy_code = [this]() {
72     /* First, terminate all processes on the VM if necessary */
73     shutdown();
74
75     XBT_DEBUG("destroy %s", get_cname());
76     on_vm_destruction(*this);
77     /* Then, destroy the VM object */
78     kernel::actor::simcall_answered(
79         [this]() { get_vm_impl()->get_physical_host()->get_impl()->destroy_vm(get_name()); });
80   };
81
82   if (not this_actor::is_maestro() && this_actor::get_host() == this) {
83     XBT_VERB("Launch another actor on physical host %s to destroy my own VM: %s", get_pm()->get_cname(), get_cname());
84     simgrid::s4u::Actor::create(get_name() + "-vm_destroy", get_pm(), destroy_code);
85     simgrid::s4u::this_actor::yield();
86     XBT_CRITICAL("I should be dead now!");
87     DIE_IMPOSSIBLE;
88   }
89
90   destroy_code();
91 }
92
93 simgrid::s4u::Host* VirtualMachine::get_pm() const
94 {
95   return pimpl_vm_->get_physical_host();
96 }
97
98 VirtualMachine* VirtualMachine::set_pm(simgrid::s4u::Host* pm)
99 {
100   kernel::actor::simcall_answered([this, pm]() { pimpl_vm_->set_physical_host(pm); });
101   return this;
102 }
103
104 VirtualMachine::State VirtualMachine::get_state() const
105 {
106   return kernel::actor::simcall_answered([this]() { return pimpl_vm_->get_state(); });
107 }
108
109 size_t VirtualMachine::get_ramsize() const
110 {
111   return pimpl_vm_->get_ramsize();
112 }
113
114 VirtualMachine* VirtualMachine::set_ramsize(size_t ramsize)
115 {
116   pimpl_vm_->set_ramsize(ramsize);
117   return this;
118 }
119 /** @brief Set a CPU bound for a given VM.
120  *  @ingroup msg_VMs
121  *
122  * 1. Note that in some cases sg_exec_set_bound() may not intuitively work for VMs.
123  *
124  * For example,
125  *  On PM0, there are Task1 and VM0.
126  *  On VM0, there is Task2.
127  * Now we bound 75% to Task1\@PM0 and bound 25% to Task2\@VM0.
128  * Then,
129  *  Task1\@PM0 gets 50%.
130  *  Task2\@VM0 gets 25%.
131  * This is NOT 75% for Task1\@PM0 and 25% for Task2\@VM0, respectively.
132  *
133  * This is because a VM has the dummy CPU action in the PM layer. Putting a task on the VM does not affect the bound of
134  * the dummy CPU action. The bound of the dummy CPU action is unlimited.
135  *
136  * There are some solutions for this problem. One option is to update the bound of the dummy CPU action automatically.
137  * It should be the sum of all tasks on the VM. But, this solution might be costly, because we have to scan all tasks
138  * on the VM in share_resource() or we have to trap both the start and end of task execution.
139  *
140  * The current solution is to use set_bound(), which allows us to directly set the bound of the dummy CPU action.
141  *
142  * 2. Note that bound == 0 means no bound (i.e., unlimited). But, if a host has multiple CPU cores, the CPU share of a
143  *    computation task (or a VM) never exceeds the capacity of a CPU core.
144  */
145 VirtualMachine* VirtualMachine::set_bound(double bound)
146 {
147   kernel::actor::simcall_answered([this, bound]() { pimpl_vm_->set_bound(bound); });
148   return this;
149 }
150
151 void VirtualMachine::start_migration() const
152 {
153   pimpl_vm_->start_migration();
154 }
155
156 void VirtualMachine::end_migration() const
157 {
158   pimpl_vm_->end_migration();
159 }
160
161 } // namespace simgrid::s4u
162
163 /* **************************** Public C interface *************************** */
164
165 /** @brief Create a new VM object with the default parameters
166  * A VM is treated as a host. The name of the VM must be unique among all hosts.
167  */
168 sg_vm_t sg_vm_create_core(sg_host_t pm, const char* name)
169 {
170   return sg_vm_create_multicore(pm, name, 1);
171 }
172 /** @brief Create a new VM object with the default parameters, but with a specified amount of cores
173  * A VM is treated as a host. The name of the VM must be unique among all hosts.
174  */
175 sg_vm_t sg_vm_create_multicore(sg_host_t pm, const char* name, int coreAmount)
176 {
177   return pm->create_vm(name, coreAmount);
178 }
179
180 const char* sg_vm_get_name(const_sg_vm_t vm)
181 {
182   return vm->get_cname();
183 }
184
185 /** @brief Get the physical host of a given VM. */
186 sg_host_t sg_vm_get_pm(const_sg_vm_t vm)
187 {
188   return vm->get_pm();
189 }
190
191 void sg_vm_set_ramsize(sg_vm_t vm, size_t size)
192 {
193   vm->set_ramsize(size);
194 }
195
196 size_t sg_vm_get_ramsize(const_sg_vm_t vm)
197 {
198   return vm->get_ramsize();
199 }
200
201 void sg_vm_set_bound(sg_vm_t vm, double bound)
202 {
203   vm->set_bound(bound);
204 }
205
206 /** @brief Returns whether the given VM has just created, not running. */
207 int sg_vm_is_created(const_sg_vm_t vm)
208 {
209   return vm->get_state() == simgrid::s4u::VirtualMachine::State::CREATED;
210 }
211
212 /** @brief Returns whether the given VM is currently running */
213 int sg_vm_is_running(const_sg_vm_t vm)
214 {
215   return vm->get_state() == simgrid::s4u::VirtualMachine::State::RUNNING;
216 }
217
218 /** @brief Returns whether the given VM is currently suspended, not running. */
219 int sg_vm_is_suspended(const_sg_vm_t vm)
220 {
221   return vm->get_state() == simgrid::s4u::VirtualMachine::State::SUSPENDED;
222 }
223
224 /** @brief Start a vm (i.e., boot the guest operating system)
225  *  If the VM cannot be started (because of memory over-provisioning), an exception is generated.
226  */
227 void sg_vm_start(sg_vm_t vm)
228 {
229   vm->start();
230 }
231
232 /** @brief Immediately suspend the execution of all processes within the given VM.
233  *
234  * This function stops the execution of the VM. All the processes on this VM
235  * will pause. The state of the VM is preserved. We can later resume it again.
236  *
237  * No suspension cost occurs.
238  */
239 void sg_vm_suspend(sg_vm_t vm)
240 {
241   vm->suspend();
242 }
243
244 /** @brief Resume the execution of the VM. All processes on the VM run again.
245  * No resume cost occurs.
246  */
247 void sg_vm_resume(sg_vm_t vm)
248 {
249   vm->resume();
250 }
251
252 /** @brief Immediately kills all processes within the given VM.
253  *
254  @beginrst
255
256  The memory allocated by these actors is leaked, unless you used :cpp:func:`simgrid::s4u::Actor::on_exit`.
257
258  @endrst
259  *
260  * No extra delay occurs by default. You may let your actor sleep by a specific amount to simulate any extra delay that
261  you want.
262  */
263 void sg_vm_shutdown(sg_vm_t vm)
264 {
265   vm->shutdown();
266 }
267
268 /** @brief Destroy a VM. Destroy the VM object from the simulation. */
269 void sg_vm_destroy(sg_vm_t vm)
270 {
271   vm->destroy();
272 }