Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Modify iteration over models in surf_solve
[simgrid.git] / src / plugins / vm / VirtualMachineImpl.cpp
1 /* Copyright (c) 2013-2021. 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 "src/plugins/vm/VirtualMachineImpl.hpp"
7 #include "simgrid/Exception.hpp"
8 #include "simgrid/s4u/Exec.hpp"
9 #include "src/include/surf/surf.hpp"
10 #include "src/kernel/activity/ExecImpl.hpp"
11
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(res_vm, ker_resource, "Virtual Machines, containing actors and mobile accross hosts");
13
14 simgrid::vm::VMModel* surf_vm_model = nullptr;
15
16 void surf_vm_model_init_HL13()
17 {
18   if (surf_cpu_model_vm != nullptr)
19     surf_vm_model = new simgrid::vm::VMModel();
20 }
21
22 namespace simgrid {
23
24 template class xbt::Extendable<vm::VirtualMachineImpl>;
25
26 namespace vm {
27 /*************
28  * Callbacks *
29  *************/
30 xbt::signal<void(VirtualMachineImpl&)> VirtualMachineImpl::on_creation;
31 xbt::signal<void(VirtualMachineImpl const&)> VirtualMachineImpl::on_destruction;
32
33 /*********
34  * Model *
35  *********/
36
37 std::deque<s4u::VirtualMachine*> VirtualMachineImpl::allVms_;
38
39 /* In the real world, processes on the guest operating system will be somewhat degraded due to virtualization overhead.
40  * The total CPU share these processes get is smaller than that of the VM process gets on a host operating system.
41  * FIXME: add a configuration flag for this
42  */
43 const double virt_overhead = 1; // 0.95
44
45 static void host_state_change(s4u::Host const& host)
46 {
47   if (not host.is_on()) { // just turned off.
48     std::vector<s4u::VirtualMachine*> trash;
49     /* Find all VMs living on that host */
50     for (s4u::VirtualMachine* const& vm : VirtualMachineImpl::allVms_)
51       if (vm->get_pm() == &host)
52         trash.push_back(vm);
53     for (s4u::VirtualMachine* vm : trash)
54       vm->shutdown();
55   }
56 }
57
58 static void add_active_exec(s4u::Exec const& task)
59 {
60   const s4u::VirtualMachine* vm = dynamic_cast<s4u::VirtualMachine*>(task.get_host());
61   if (vm != nullptr) {
62     VirtualMachineImpl* vm_impl = vm->get_impl();
63     vm_impl->add_active_exec();
64     vm_impl->update_action_weight();
65   }
66 }
67
68 static void remove_active_exec(s4u::Exec const& task)
69 {
70   const s4u::VirtualMachine* vm = dynamic_cast<s4u::VirtualMachine*>(task.get_host());
71   if (vm != nullptr) {
72     VirtualMachineImpl* vm_impl = vm->get_impl();
73     vm_impl->remove_active_exec();
74     vm_impl->update_action_weight();
75   }
76 }
77
78 static s4u::VirtualMachine* get_vm_from_activity(kernel::activity::ActivityImpl const& act)
79 {
80   auto* exec = dynamic_cast<kernel::activity::ExecImpl const*>(&act);
81   return exec != nullptr ? dynamic_cast<s4u::VirtualMachine*>(exec->get_host()) : nullptr;
82 }
83
84 static void add_active_activity(kernel::activity::ActivityImpl const& act)
85 {
86   const s4u::VirtualMachine* vm = get_vm_from_activity(act);
87   if (vm != nullptr) {
88     VirtualMachineImpl* vm_impl = vm->get_impl();
89     vm_impl->add_active_exec();
90     vm_impl->update_action_weight();
91   }
92 }
93
94 static void remove_active_activity(kernel::activity::ActivityImpl const& act)
95 {
96   const s4u::VirtualMachine* vm = get_vm_from_activity(act);
97   if (vm != nullptr) {
98     VirtualMachineImpl* vm_impl = vm->get_impl();
99     vm_impl->remove_active_exec();
100     vm_impl->update_action_weight();
101   }
102 }
103
104 VMModel::VMModel()
105 {
106   all_existing_models.push_back(this);
107   models_by_type[simgrid::kernel::resource::Model::Type::VM].push_back(this);
108   s4u::Host::on_state_change.connect(host_state_change);
109   s4u::Exec::on_start.connect(add_active_exec);
110   s4u::Exec::on_completion.connect(remove_active_exec);
111   kernel::activity::ActivityImpl::on_resumed.connect(add_active_activity);
112   kernel::activity::ActivityImpl::on_suspended.connect(remove_active_activity);
113 }
114
115 double VMModel::next_occurring_event(double now)
116 {
117   /* TODO: update action's cost with the total cost of processes on the VM. */
118
119   /* 1. Now we know how many resource should be assigned to each virtual
120    * machine. We update constraints of the virtual machine layer.
121    *
122    * If we have two virtual machine (VM1 and VM2) on a physical machine (PM1).
123    *     X1 + X2 = C       (Equation 1)
124    * where
125    *    the resource share of VM1: X1
126    *    the resource share of VM2: X2
127    *    the capacity of PM1: C
128    *
129    * Then, if we have two process (P1 and P2) on VM1.
130    *     X1_1 + X1_2 = X1  (Equation 2)
131    * where
132    *    the resource share of P1: X1_1
133    *    the resource share of P2: X1_2
134    *    the capacity of VM1: X1
135    *
136    * Equation 1 was solved in the physical machine layer.
137    * Equation 2 is solved in the virtual machine layer (here).
138    * X1 must be passed to the virtual machine layer as a constraint value.
139    **/
140
141   /* iterate for all virtual machines */
142   for (s4u::VirtualMachine* const& ws_vm : VirtualMachineImpl::allVms_) {
143     if (ws_vm->get_state() == s4u::VirtualMachine::state::SUSPENDED) // Ignore suspended VMs
144       continue;
145
146     const kernel::resource::Cpu* cpu = ws_vm->pimpl_cpu;
147
148     // solved_value below is X1 in comment above: what this VM got in the sharing on the PM
149     double solved_value = ws_vm->get_impl()->get_action()->get_variable()->get_value();
150     XBT_DEBUG("assign %f to vm %s @ pm %s", solved_value, ws_vm->get_cname(), ws_vm->get_pm()->get_cname());
151
152     xbt_assert(cpu->get_model() == surf_cpu_model_vm);
153     kernel::lmm::System* vcpu_system = cpu->get_model()->get_maxmin_system();
154     vcpu_system->update_constraint_bound(cpu->get_constraint(), virt_overhead * solved_value);
155   }
156
157   /* 2. Ready. Get the next occurring event */
158   return surf_cpu_model_vm->next_occurring_event(now);
159 }
160
161 /************
162  * Resource *
163  ************/
164
165 VirtualMachineImpl::VirtualMachineImpl(simgrid::s4u::VirtualMachine* piface, simgrid::s4u::Host* host_PM,
166                                        int core_amount, size_t ramsize)
167     : HostImpl(piface), physical_host_(host_PM), core_amount_(core_amount), ramsize_(ramsize)
168 {
169   /* Register this VM to the list of all VMs */
170   allVms_.push_back(piface);
171
172   /* We create cpu_action corresponding to a VM process on the host operating system. */
173   /* TODO: we have to periodically input GUESTOS_NOISE to the system? how ?
174    * The value for GUESTOS_NOISE corresponds to the cost of the global action associated to the VM.  It corresponds to
175    * the cost of a VM running no tasks.
176    */
177   action_ = physical_host_->pimpl_cpu->execution_start(0, core_amount_);
178
179   // It's empty for now, so it should not request resources in the PM
180   update_action_weight();
181
182   XBT_VERB("Create VM(%s)@PM(%s)", piface->get_cname(), physical_host_->get_cname());
183   on_creation(*this);
184 }
185
186 /** @brief A physical host does not disappear in the current SimGrid code, but a VM may disappear during a simulation */
187 VirtualMachineImpl::~VirtualMachineImpl()
188 {
189   on_destruction(*this);
190   /* I was already removed from the allVms set if the VM was destroyed cleanly */
191   auto iter = find(allVms_.begin(), allVms_.end(), piface_);
192   if (iter != allVms_.end())
193     allVms_.erase(iter);
194
195   /* Free the cpu_action of the VM. */
196   XBT_ATTRIB_UNUSED bool ret = action_->unref();
197   xbt_assert(ret, "Bug: some resource still remains");
198 }
199
200 void VirtualMachineImpl::suspend(smx_actor_t issuer)
201 {
202   if (get_state() != s4u::VirtualMachine::state::RUNNING)
203     throw VmFailureException(XBT_THROW_POINT,
204                              xbt::string_printf("Cannot suspend VM %s: it is not running.", piface_->get_cname()));
205   if (issuer->get_host() == piface_)
206     throw VmFailureException(XBT_THROW_POINT, xbt::string_printf("Actor %s cannot suspend the VM %s in which it runs",
207                                                                  issuer->get_cname(), piface_->get_cname()));
208
209   XBT_DEBUG("suspend VM(%s), where %zu actors exist", piface_->get_cname(), get_actor_count());
210
211   action_->suspend();
212
213   foreach_actor([](auto& actor) {
214     XBT_DEBUG("suspend %s", actor.get_cname());
215     actor.suspend();
216   });
217
218   XBT_DEBUG("suspend all actors on the VM done done");
219
220   vm_state_ = s4u::VirtualMachine::state::SUSPENDED;
221 }
222
223 void VirtualMachineImpl::resume()
224 {
225   if (get_state() != s4u::VirtualMachine::state::SUSPENDED)
226     throw VmFailureException(XBT_THROW_POINT,
227                              xbt::string_printf("Cannot resume VM %s: it was not suspended", piface_->get_cname()));
228
229   XBT_DEBUG("Resume VM %s, containing %zu actors.", piface_->get_cname(), get_actor_count());
230
231   action_->resume();
232
233   foreach_actor([](auto& actor) {
234     XBT_DEBUG("resume %s", actor.get_cname());
235     actor.resume();
236   });
237
238   vm_state_ = s4u::VirtualMachine::state::RUNNING;
239 }
240
241 /** @brief Power off a VM.
242  *
243  * All hosted processes will be killed, but the VM state is preserved on memory.
244  * It can later be restarted.
245  *
246  * @param issuer the actor requesting the shutdown
247  */
248 void VirtualMachineImpl::shutdown(smx_actor_t issuer)
249 {
250   if (get_state() != s4u::VirtualMachine::state::RUNNING) {
251     const char* stateName;
252     switch (get_state()) {
253       case s4u::VirtualMachine::state::CREATED:
254         stateName = "created, but not yet started";
255         break;
256       case s4u::VirtualMachine::state::SUSPENDED:
257         stateName = "suspended";
258         break;
259       case s4u::VirtualMachine::state::DESTROYED:
260         stateName = "destroyed";
261         break;
262       default: /* SURF_VM_STATE_RUNNING or unexpected values */
263         THROW_IMPOSSIBLE;
264     }
265     XBT_VERB("Shutting down the VM %s even if it's not running but %s", piface_->get_cname(), stateName);
266   }
267
268   XBT_DEBUG("shutdown VM %s, that contains %zu actors", piface_->get_cname(), get_actor_count());
269
270   foreach_actor([issuer](auto& actor) {
271     XBT_DEBUG("kill %s@%s on behalf of %s which shutdown that VM.", actor.get_cname(), actor.get_host()->get_cname(),
272               issuer->get_cname());
273     issuer->kill(&actor);
274   });
275
276   set_state(s4u::VirtualMachine::state::DESTROYED);
277
278   /* FIXME: we may have to do something at the surf layer, e.g., vcpu action */
279 }
280
281 /** @brief Change the physical host on which the given VM is running
282  *
283  * This is an instantaneous migration.
284  */
285 void VirtualMachineImpl::set_physical_host(s4u::Host* destination)
286 {
287   std::string vm_name     = piface_->get_name();
288   std::string pm_name_src = physical_host_->get_name();
289   std::string pm_name_dst = destination->get_name();
290
291   /* update net_elm with that of the destination physical host */
292   piface_->set_netpoint(destination->get_netpoint());
293
294   /* Adapt the speed, pstate and other physical characteristics to the one of our new physical CPU */
295   piface_->pimpl_cpu->reset_vcpu(destination->pimpl_cpu);
296
297   physical_host_ = destination;
298
299   /* Update vcpu's action for the new pm */
300   /* create a cpu action bound to the pm model at the destination. */
301   kernel::resource::CpuAction* new_cpu_action = destination->pimpl_cpu->execution_start(0, this->core_amount_);
302
303   if (action_->get_remains_no_update() > 0)
304     XBT_CRITICAL("FIXME: need copy the state(?), %f", action_->get_remains_no_update());
305
306   /* keep the bound value of the cpu action of the VM. */
307   double old_bound = action_->get_bound();
308   if (old_bound > 0) {
309     XBT_DEBUG("migrate VM(%s): set bound (%f) at %s", vm_name.c_str(), old_bound, pm_name_dst.c_str());
310     new_cpu_action->set_bound(old_bound);
311   }
312
313   XBT_ATTRIB_UNUSED bool ret = action_->unref();
314   xbt_assert(ret, "Bug: some resource still remains");
315
316   action_ = new_cpu_action;
317
318   XBT_DEBUG("migrate VM(%s): change PM (%s to %s)", vm_name.c_str(), pm_name_src.c_str(), pm_name_dst.c_str());
319 }
320
321 void VirtualMachineImpl::set_bound(double bound)
322 {
323   user_bound_ = bound;
324   action_->set_user_bound(user_bound_);
325   update_action_weight();
326 }
327
328 void VirtualMachineImpl::update_action_weight()
329 {
330   /* The impact of the VM over its PM is the min between its vCPU amount and the amount of tasks it contains */
331   int impact = std::min(active_execs_, get_core_amount());
332
333   XBT_DEBUG("set the weight of the dummy CPU action of VM%p on PM to %d (#tasks: %u)", this, impact, active_execs_);
334
335   if (impact > 0)
336     action_->set_sharing_penalty(1. / impact);
337   else
338     action_->set_sharing_penalty(0.);
339
340   action_->set_bound(std::min(impact * physical_host_->get_speed(), user_bound_));
341 }
342
343 } // namespace vm
344 } // namespace simgrid