Logo AND Algorithmique Numérique Distribuée

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