Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics: kill some C type instances
[simgrid.git] / src / surf / HostImpl.cpp
1 /* Copyright (c) 2013-2016. 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/s4u/host.hpp>
7
8 #include "src/simix/smx_private.h"
9 #include "cpu_cas01.hpp"
10 #include "src/surf/HostImpl.hpp"
11 #include "simgrid/sg_config.h"
12
13 #include "network_interface.hpp"
14 #include "virtual_machine.hpp"
15
16 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_host, surf, "Logging specific to the SURF host module");
17
18 simgrid::surf::HostModel *surf_host_model = nullptr;
19
20 /*************
21  * Callbacks *
22  *************/
23
24 namespace simgrid {
25 namespace surf {
26
27 simgrid::xbt::Extension<simgrid::s4u::Host, HostImpl> HostImpl::EXTENSION_ID;
28
29 /*********
30  * Model *
31  *********/
32 HostImpl *HostModel::createHost(const char *name, kernel::routing::NetCard *netElm, Cpu *cpu){
33   xbt_dynar_t storageList = (xbt_dynar_t)xbt_lib_get_or_null(storage_lib, name, ROUTING_STORAGE_HOST_LEVEL);
34
35   HostImpl *host = new simgrid::surf::HostImpl(surf_host_model, name, storageList, cpu);
36   XBT_DEBUG("Create host %s with %ld mounted disks", name, xbt_dynar_length(host->storage_));
37   return host;
38 }
39
40 /* Each VM has a dummy CPU action on the PM layer. This CPU action works as the
41  * constraint (capacity) of the VM in the PM layer. If the VM does not have any
42  * active task, the dummy CPU action must be deactivated, so that the VM does
43  * not get any CPU share in the PM layer. */
44 void HostModel::adjustWeightOfDummyCpuActions()
45 {
46   /* iterate for all virtual machines */
47   for (VirtualMachine *ws_vm : VirtualMachine::allVms_) {
48
49     Cpu *cpu = ws_vm->cpu_;
50
51     int is_active = lmm_constraint_used(cpu->getModel()->getMaxminSystem(), cpu->getConstraint());
52
53     if (is_active) {
54       /* some tasks exist on this VM */
55       XBT_DEBUG("set the weight of the dummy CPU action on PM to 1");
56
57       /* FIXME: we should use lmm_update_variable_weight() ? */
58       /* FIXME: If we assign 1.05 and 0.05, the system makes apparently wrong values. */
59       ws_vm->action_->setPriority(1);
60
61     } else {
62       /* no task exits on this VM */
63       XBT_DEBUG("set the weight of the dummy CPU action on PM to 0");
64
65       ws_vm->action_->setPriority(0);
66     }
67   }
68 }
69
70 Action* HostModel::executeParallelTask(int host_nb, simgrid::s4u::Host** host_list, double* flops_amount,
71                                        double* bytes_amount, double rate)
72 {
73 #define cost_or_zero(array,pos) ((array)?(array)[pos]:0.0)
74   Action *action =nullptr;
75   if ((host_nb == 1)
76       && (cost_or_zero(bytes_amount, 0) == 0.0)){
77     action = host_list[0]->pimpl_cpu->execution_start(flops_amount[0]);
78   } else if ((host_nb == 1)
79            && (cost_or_zero(flops_amount, 0) == 0.0)) {
80     action = surf_network_model->communicate(host_list[0], host_list[0], bytes_amount[0], rate);
81   } else if ((host_nb == 2)
82              && (cost_or_zero(flops_amount, 0) == 0.0)
83              && (cost_or_zero(flops_amount, 1) == 0.0)) {
84     int i,nb = 0;
85     double value = 0.0;
86
87     for (i = 0; i < host_nb * host_nb; i++) {
88       if (cost_or_zero(bytes_amount, i) > 0.0) {
89         nb++;
90         value = cost_or_zero(bytes_amount, i);
91       }
92     }
93     if (nb == 1) {
94       action = surf_network_model->communicate(host_list[0], host_list[1], value, rate);
95     } else if (nb == 0) {
96        xbt_die("Cannot have a communication with no flop to exchange in this model. You should consider using the ptask model");
97     } else {       
98        xbt_die("Cannot have a communication that is not a simple point-to-point in this model. You should consider using the ptask model");
99     }
100   } else 
101     xbt_die("This model only accepts one of the following. You should consider using the ptask model for the other cases.\n - execution with one host only and no communication\n - Self-comms with one host only\n - Communications with two hosts and no computation");
102 #undef cost_or_zero
103   xbt_free(host_list);
104   return action;
105 }
106
107 /************
108  * Resource *
109  ************/
110 HostImpl::HostImpl(simgrid::surf::HostModel *model, const char *name, xbt_dynar_t storage, Cpu *cpu)
111  : Resource(model, name)
112  , PropertyHolder(nullptr)
113  , storage_(storage), cpu_(cpu)
114 {
115   if (!EXTENSION_ID.valid())
116     EXTENSION_ID = simgrid::s4u::Host::extension_create<simgrid::surf::HostImpl>();
117   params_.ramsize = 0;
118 }
119
120 HostImpl::HostImpl(simgrid::surf::HostModel *model, const char *name, lmm_constraint_t constraint,
121                  xbt_dynar_t storage, Cpu *cpu)
122  : Resource(model, name, constraint)
123  , PropertyHolder(nullptr)
124  , storage_(storage), cpu_(cpu)
125 {
126   params_.ramsize = 0;
127 }
128
129 /** @brief use destroy() instead of this destructor */
130 HostImpl::~HostImpl()
131 {
132 }
133
134 void HostImpl::attach(simgrid::s4u::Host* host)
135 {
136   if (piface_ != nullptr)
137     xbt_die("Already attached to host %s", host->name().c_str());
138   host->extension_set(this);
139   piface_ = host;
140 }
141
142 bool HostImpl::isOn() const {
143   return cpu_->isOn();
144 }
145 bool HostImpl::isOff() const {
146   return cpu_->isOff();
147 }
148 void HostImpl::turnOn(){
149   if (isOff()) {
150     cpu_->turnOn();
151     simgrid::s4u::Host::onStateChange(*this->piface_);
152   }
153 }
154 void HostImpl::turnOff(){
155   if (isOn()) {
156     cpu_->turnOff();
157     simgrid::s4u::Host::onStateChange(*this->piface_);
158   }
159 }
160
161 simgrid::surf::Storage *HostImpl::findStorageOnMountList(const char* mount)
162 {
163   simgrid::surf::Storage *st = nullptr;
164   s_mount_t mnt;
165   unsigned int cursor;
166
167   XBT_DEBUG("Search for storage name '%s' on '%s'", mount, getName());
168   xbt_dynar_foreach(storage_,cursor,mnt){
169     XBT_DEBUG("See '%s'",mnt.name);
170     if(!strcmp(mount,mnt.name)){
171       st = static_cast<simgrid::surf::Storage*>(mnt.storage);
172       break;
173     }
174   }
175   if(!st)
176     xbt_die("Can't find mount '%s' for '%s'", mount, getName());
177   return st;
178 }
179
180 xbt_dict_t HostImpl::getMountedStorageList()
181 {
182   s_mount_t mnt;
183   unsigned int i;
184   xbt_dict_t storage_list = xbt_dict_new_homogeneous(nullptr);
185   char *storage_name = nullptr;
186
187   xbt_dynar_foreach(storage_,i,mnt){
188     storage_name = (char *)static_cast<simgrid::surf::Storage*>(mnt.storage)->getName();
189     xbt_dict_set(storage_list,mnt.name,storage_name,nullptr);
190   }
191   return storage_list;
192 }
193
194 xbt_dynar_t HostImpl::getAttachedStorageList()
195 {
196   xbt_lib_cursor_t cursor;
197   char *key;
198   void **data;
199   xbt_dynar_t result = xbt_dynar_new(sizeof(void*), nullptr);
200   xbt_lib_foreach(storage_lib, cursor, key, data) {
201     if(xbt_lib_get_level(xbt_lib_get_elm_or_null(storage_lib, key), SURF_STORAGE_LEVEL) != nullptr) {
202     simgrid::surf::Storage *storage = static_cast<simgrid::surf::Storage*>(xbt_lib_get_level(xbt_lib_get_elm_or_null(storage_lib, key), SURF_STORAGE_LEVEL));
203     if(!strcmp((const char*)storage->attach_,this->getName())){
204       xbt_dynar_push_as(result, void *, (void*)storage->getName());
205     }
206   }
207   }
208   return result;
209 }
210
211 Action *HostImpl::open(const char* fullpath) {
212
213   simgrid::surf::Storage *st = nullptr;
214   s_mount_t mnt;
215   unsigned int cursor;
216   size_t longest_prefix_length = 0;
217   char *path = nullptr;
218   char *file_mount_name = nullptr;
219   char *mount_name = nullptr;
220
221   XBT_DEBUG("Search for storage name for '%s' on '%s'", fullpath, getName());
222   xbt_dynar_foreach(storage_,cursor,mnt)
223   {
224     XBT_DEBUG("See '%s'",mnt.name);
225     file_mount_name = (char *) xbt_malloc ((strlen(mnt.name)+1));
226     strncpy(file_mount_name,fullpath,strlen(mnt.name)+1);
227     file_mount_name[strlen(mnt.name)] = '\0';
228
229     if(!strcmp(file_mount_name,mnt.name) && strlen(mnt.name)>longest_prefix_length)
230     {/* The current mount name is found in the full path and is bigger than the previous*/
231       longest_prefix_length = strlen(mnt.name);
232       st = static_cast<simgrid::surf::Storage*>(mnt.storage);
233     }
234     free(file_mount_name);
235   }
236   if(longest_prefix_length>0)
237   { /* Mount point found, split fullpath into mount_name and path+filename*/
238   path = (char *) xbt_malloc ((strlen(fullpath)-longest_prefix_length+1));
239   mount_name = (char *) xbt_malloc ((longest_prefix_length+1));
240   strncpy(mount_name, fullpath, longest_prefix_length+1);
241   strncpy(path, fullpath+longest_prefix_length, strlen(fullpath)-longest_prefix_length+1);
242   path[strlen(fullpath)-longest_prefix_length] = '\0';
243   mount_name[longest_prefix_length] = '\0';
244   }
245   else
246     xbt_die("Can't find mount point for '%s' on '%s'", fullpath, getName());
247
248   XBT_DEBUG("OPEN %s on disk '%s'",path, st->getName());
249   Action *action = st->open((const char*)mount_name, (const char*)path);
250   free((char*)path);
251   free((char*)mount_name);
252   return action;
253 }
254
255 Action *HostImpl::close(surf_file_t fd) {
256   simgrid::surf::Storage *st = findStorageOnMountList(fd->mount);
257   XBT_DEBUG("CLOSE %s on disk '%s'",fd->name, st->getName());
258   return st->close(fd);
259 }
260
261 Action *HostImpl::read(surf_file_t fd, sg_size_t size) {
262   simgrid::surf::Storage *st = findStorageOnMountList(fd->mount);
263   XBT_DEBUG("READ %s on disk '%s'",fd->name, st->getName());
264   return st->read(fd, size);
265 }
266
267 Action *HostImpl::write(surf_file_t fd, sg_size_t size) {
268   simgrid::surf::Storage *st = findStorageOnMountList(fd->mount);
269   XBT_DEBUG("WRITE %s on disk '%s'",fd->name, st->getName());
270   return st->write(fd, size);
271 }
272
273 int HostImpl::unlink(surf_file_t fd) {
274   if (!fd){
275     XBT_WARN("No such file descriptor. Impossible to unlink");
276     return -1;
277   } else {
278
279     simgrid::surf::Storage *st = findStorageOnMountList(fd->mount);
280     /* Check if the file is on this storage */
281     if (!xbt_dict_get_or_null(st->content_, fd->name)){
282       XBT_WARN("File %s is not on disk %s. Impossible to unlink", fd->name,
283           st->getName());
284       return -1;
285     } else {
286       XBT_DEBUG("UNLINK %s on disk '%s'",fd->name, st->getName());
287       st->usedSize_ -= fd->size;
288
289       // Remove the file from storage
290       xbt_dict_remove(st->content_, fd->name);
291
292       xbt_free(fd->name);
293       xbt_free(fd->mount);
294       xbt_free(fd);
295       return 0;
296     }
297   }
298 }
299
300 sg_size_t HostImpl::getSize(surf_file_t fd){
301   return fd->size;
302 }
303
304 xbt_dynar_t HostImpl::getInfo( surf_file_t fd)
305 {
306   simgrid::surf::Storage *st = findStorageOnMountList(fd->mount);
307   sg_size_t *psize = xbt_new(sg_size_t, 1);
308   *psize = fd->size;
309   xbt_dynar_t info = xbt_dynar_new(sizeof(void*), nullptr);
310   xbt_dynar_push_as(info, sg_size_t *, psize);
311   xbt_dynar_push_as(info, void *, fd->mount);
312   xbt_dynar_push_as(info, void *, (void *)st->getName());
313   xbt_dynar_push_as(info, void *, st->typeId_);
314   xbt_dynar_push_as(info, void *, st->contentType_);
315
316   return info;
317 }
318
319 sg_size_t HostImpl::fileTell(surf_file_t fd){
320   return fd->current_position;
321 }
322
323 int HostImpl::fileSeek(surf_file_t fd, sg_offset_t offset, int origin){
324
325   switch (origin) {
326   case SEEK_SET:
327     fd->current_position = offset;
328     return 0;
329   case SEEK_CUR:
330     fd->current_position += offset;
331     return 0;
332   case SEEK_END:
333     fd->current_position = fd->size + offset;
334     return 0;
335   default:
336     return -1;
337   }
338 }
339
340 int HostImpl::fileMove(surf_file_t fd, const char* fullpath){
341   /* Check if the new full path is on the same mount point */
342   if(!strncmp((const char*)fd->mount, fullpath, strlen(fd->mount))) {
343     sg_size_t *psize, *new_psize;
344     psize = (sg_size_t*)
345         xbt_dict_get_or_null(findStorageOnMountList(fd->mount)->content_,
346                              fd->name);
347     new_psize = xbt_new(sg_size_t, 1);
348     *new_psize = *psize;
349     if (psize){// src file exists
350       xbt_dict_remove(findStorageOnMountList(fd->mount)->content_, fd->name);
351       char *path = (char *) xbt_malloc ((strlen(fullpath)-strlen(fd->mount)+1));
352       strncpy(path, fullpath+strlen(fd->mount),
353               strlen(fullpath)-strlen(fd->mount)+1);
354       xbt_dict_set(findStorageOnMountList(fd->mount)->content_, path,
355                    new_psize,nullptr);
356       XBT_DEBUG("Move file from %s to %s, size '%llu'",fd->name, fullpath, *psize);
357       free(path);
358       return 0;
359     } else {
360       XBT_WARN("File %s doesn't exist", fd->name);
361       return -1;
362     }
363   } else {
364     XBT_WARN("New full path %s is not on the same mount point: %s. Action has been canceled.",
365              fullpath, fd->mount);
366     return -1;
367   }
368 }
369
370 xbt_dynar_t HostImpl::getVms()
371 {
372   xbt_dynar_t dyn = xbt_dynar_new(sizeof(simgrid::surf::VirtualMachine*), nullptr);
373
374   for (VirtualMachine *ws_vm : VirtualMachine::allVms_) {
375     if (this == ws_vm->getPm()->extension<simgrid::surf::HostImpl>())
376       xbt_dynar_push(dyn, &ws_vm);
377   }
378
379   return dyn;
380 }
381
382 void HostImpl::getParams(vm_params_t params)
383 {
384   *params = params_;
385 }
386
387 void HostImpl::setParams(vm_params_t params)
388 {
389   /* may check something here. */
390   params_ = *params;
391 }
392
393 }}