Logo AND Algorithmique Numérique Distribuée

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