Logo AND Algorithmique Numérique Distribuée

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