Logo AND Algorithmique Numérique Distribuée

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