Logo AND Algorithmique Numérique Distribuée

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