Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Keep working on the communication optimization.
[simgrid.git] / src / smpi / smpi_shared.cpp
1 /* Copyright (c) 2007, 2009-2017. 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 /* Shared allocations are handled through shared memory segments.
7  * Associated data and metadata are used as follows:
8  *
9  *                                                                    mmap #1
10  *    `allocs' dict                                                     ---- -.
11  *    ----------      shared_data_t               shared_metadata_t   / |  |  |
12  * .->| <name> | ---> -------------------- <--.   -----------------   | |  |  |
13  * |  ----------      | fd of <name>     |    |   | size of mmap  | --| |  |  |
14  * |                  | count (2)        |    |-- | data          |   \ |  |  |
15  * `----------------- | <name>           |    |   -----------------     ----  |
16  *                    --------------------    |   ^                           |
17  *                                            |   |                           |
18  *                                            |   |   `allocs_metadata' dict  |
19  *                                            |   |   ----------------------  |
20  *                                            |   `-- | <addr of mmap #1>  |<-'
21  *                                            |   .-- | <addr of mmap #2>  |<-.
22  *                                            |   |   ----------------------  |
23  *                                            |   |                           |
24  *                                            |   |                           |
25  *                                            |   |                           |
26  *                                            |   |                   mmap #2 |
27  *                                            |   v                     ---- -'
28  *                                            |   shared_metadata_t   / |  |
29  *                                            |   -----------------   | |  |
30  *                                            |   | size of mmap  | --| |  |
31  *                                            `-- | data          |   | |  |
32  *                                                -----------------   | |  |
33  *                                                                    \ |  |
34  *                                                                      ----
35  */
36 #include <map>
37
38 #include "private.h"
39 #include "private.hpp"
40 #include "xbt/dict.h"
41 #include <errno.h>
42
43 #include <sys/types.h>
44 #ifndef WIN32
45 #include <sys/mman.h>
46 #endif
47 #include <sys/stat.h>
48 #include <fcntl.h>
49 #include <string.h>
50 #include <stdio.h>
51
52 #ifndef MAP_ANONYMOUS
53 #define MAP_ANONYMOUS MAP_ANON
54 #endif
55
56 #ifndef MAP_POPULATE
57 #define MAP_POPULATE 0
58 #endif
59
60 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_shared, smpi, "Logging specific to SMPI (shared memory macros)");
61
62 #define PTR_STRLEN (2 + 2 * sizeof(void*) + 1)
63
64 namespace{
65 /** Some location in the source code
66  *
67  *  This information is used by SMPI_SHARED_MALLOC to allocate  some shared memory for all simulated processes.
68  */
69
70 class smpi_source_location {
71 public:
72   smpi_source_location(const char* filename, int line)
73       : filename(xbt_strdup(filename)), filename_length(strlen(filename)), line(line)
74   {
75   }
76
77   /** Pointer to a static string containing the file name */
78   char* filename      = nullptr;
79   int filename_length = 0;
80   int line            = 0;
81
82   bool operator==(smpi_source_location const& that) const
83   {
84     return filename_length == that.filename_length && line == that.line &&
85            std::memcmp(filename, that.filename, filename_length) == 0;
86   }
87   bool operator!=(smpi_source_location const& that) const { return !(*this == that); }
88 };
89 }
90
91 namespace std {
92
93 template <> class hash<smpi_source_location> {
94 public:
95   typedef smpi_source_location argument_type;
96   typedef std::size_t result_type;
97   result_type operator()(smpi_source_location const& loc) const
98   {
99     return xbt_str_hash_ext(loc.filename, loc.filename_length) ^
100            xbt_str_hash_ext((const char*)&loc.line, sizeof(loc.line));
101   }
102 };
103 }
104
105 namespace{
106
107 typedef struct {
108   int fd    = -1;
109   int count = 0;
110 } shared_data_t;
111
112 std::unordered_map<smpi_source_location, shared_data_t> allocs;
113 typedef std::unordered_map<smpi_source_location, shared_data_t>::value_type shared_data_key_type;
114
115 typedef struct {
116   size_t size;
117   std::vector<std::pair<int, int>> private_blocks;
118   shared_data_key_type* data;
119 } shared_metadata_t;
120
121 std::map<void*, shared_metadata_t> allocs_metadata;
122 xbt_dict_t calls = nullptr;           /* Allocated on first use */
123 #ifndef WIN32
124 static int smpi_shared_malloc_bogusfile           = -1;
125 static unsigned long smpi_shared_malloc_blocksize = 1UL << 20;
126 #endif
127 }
128
129
130 void smpi_shared_destroy()
131 {
132   allocs.clear();
133   allocs_metadata.clear();
134   xbt_dict_free(&calls);
135 }
136
137 static size_t shm_size(int fd) {
138   struct stat st;
139
140   if(fstat(fd, &st) < 0) {
141     xbt_die("Could not stat fd %d: %s", fd, strerror(errno));
142   }
143   return static_cast<size_t>(st.st_size);
144 }
145
146 #ifndef WIN32
147 static void* shm_map(int fd, size_t size, shared_data_key_type* data) {
148   char loc[PTR_STRLEN];
149   shared_metadata_t meta;
150
151   if(size > shm_size(fd) && (ftruncate(fd, static_cast<off_t>(size)) < 0)) {
152     xbt_die("Could not truncate fd %d to %zu: %s", fd, size, strerror(errno));
153   }
154
155   void* mem = mmap(nullptr, size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
156   if(mem == MAP_FAILED) {
157     xbt_die(
158         "Failed to map fd %d with size %zu: %s\n"
159         "If you are running a lot of ranks, you may be exceeding the amount of mappings allowed per process.\n"
160         "On Linux systems, change this value with sudo sysctl -w vm.max_map_count=newvalue (default value: 65536)\n"
161         "Please see http://simgrid.gforge.inria.fr/simgrid/latest/doc/html/options.html#options_virt for more info.",
162         fd, size, strerror(errno));
163   }
164   snprintf(loc, PTR_STRLEN, "%p", mem);
165   meta.size = size;
166   meta.data = data;
167   allocs_metadata[mem] = meta;
168   XBT_DEBUG("MMAP %zu to %p", size, mem);
169   return mem;
170 }
171
172 void *smpi_shared_malloc_local(size_t size, const char *file, int line)
173 {
174   void* mem;
175   smpi_source_location loc(file, line);
176   auto res = allocs.insert(std::make_pair(loc, shared_data_t()));
177   auto data = res.first;
178   if (res.second) {
179     // The insertion did not take place.
180     // Generate a shared memory name from the address of the shared_data:
181     char shmname[32]; // cannot be longer than PSHMNAMLEN = 31 on Mac OS X (shm_open raises ENAMETOOLONG otherwise)
182     snprintf(shmname, 31, "/shmalloc%p", &*data);
183     int fd = shm_open(shmname, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR | S_IRGRP | S_IROTH);
184     if (fd < 0) {
185       if (errno == EEXIST)
186         xbt_die("Please cleanup /dev/shm/%s", shmname);
187       else
188         xbt_die("An unhandled error occurred while opening %s. shm_open: %s", shmname, strerror(errno));
189     }
190     data->second.fd = fd;
191     data->second.count = 1;
192     mem = shm_map(fd, size, &*data);
193     if (shm_unlink(shmname) < 0) {
194       XBT_WARN("Could not early unlink %s. shm_unlink: %s", shmname, strerror(errno));
195     }
196     XBT_DEBUG("Mapping %s at %p through %d", shmname, mem, fd);
197   } else {
198     mem = shm_map(data->second.fd, size, &*data);
199     data->second.count++;
200   }
201   XBT_DEBUG("Shared malloc %zu in %p (metadata at %p)", size, mem, &*data);
202   return mem;
203 }
204
205 // Align functions, from http://stackoverflow.com/questions/4840410/how-to-align-a-pointer-in-c
206 #define PAGE_SIZE 0x1000
207 #define ALIGN_UP(n, align) (((n) + (align)-1) & -(align))
208 #define ALIGN_DOWN(n, align) ((n) & -(align))
209
210 void *smpi_shared_malloc_global__(size_t size, const char *file, int line, int *shared_block_offsets, int nb_shared_blocks) {
211   void *mem;
212   xbt_assert(smpi_shared_malloc_blocksize % PAGE_SIZE == 0, "The block size of shared malloc should be a multiple of the page size.");
213   /* First reserve memory area */
214   mem = mmap(NULL, size, PROT_READ | PROT_WRITE, MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
215
216   xbt_assert(mem != MAP_FAILED, "Failed to allocate %luMiB of memory. Run \"sysctl vm.overcommit_memory=1\" as root "
217                                 "to allow big allocations.\n",
218              (unsigned long)(size >> 20));
219
220   /* Create bogus file if not done already */
221   if (smpi_shared_malloc_bogusfile == -1) {
222     /* Create a fd to a new file on disk, make it smpi_shared_malloc_blocksize big, and unlink it.
223      * It still exists in memory but not in the file system (thus it cannot be leaked). */
224     smpi_shared_malloc_blocksize = static_cast<unsigned long>(xbt_cfg_get_double("smpi/shared-malloc-blocksize"));
225     XBT_DEBUG("global shared allocation. Blocksize %lu", smpi_shared_malloc_blocksize);
226     char* name                   = xbt_strdup("/tmp/simgrid-shmalloc-XXXXXX");
227     smpi_shared_malloc_bogusfile = mkstemp(name);
228     unlink(name);
229     xbt_free(name);
230     char* dumb = (char*)calloc(1, smpi_shared_malloc_blocksize);
231     ssize_t err = write(smpi_shared_malloc_bogusfile, dumb, smpi_shared_malloc_blocksize);
232     if(err<0)
233       xbt_die("Could not write bogus file for shared malloc");
234     xbt_free(dumb);
235   }
236
237   /* Map the bogus file in place of the anonymous memory */
238   for(int i_block = 0; i_block < nb_shared_blocks; i_block ++) {
239     int start_offset = shared_block_offsets[2*i_block];
240     int stop_offset = shared_block_offsets[2*i_block+1];
241     xbt_assert(0 <= start_offset,          "start_offset (%d) should be greater than 0", start_offset);
242     xbt_assert(start_offset < stop_offset, "start_offset (%d) should be lower than stop offset (%d)", start_offset, stop_offset);
243     xbt_assert(stop_offset <= size,         "stop_offset (%d) should be lower than size (%lu)", stop_offset, size);
244     if(i_block < nb_shared_blocks-1)
245       xbt_assert(stop_offset < shared_block_offsets[2*i_block+2],
246               "stop_offset (%d) should be lower than its successor start offset (%d)", stop_offset, shared_block_offsets[2*i_block+2]);
247 //    fprintf(stderr, "shared block 0x%x - 0x%x\n", start_offset, stop_offset);
248     int start_block_offset = ALIGN_UP(start_offset, smpi_shared_malloc_blocksize);
249     int stop_block_offset = ALIGN_DOWN(stop_offset, smpi_shared_malloc_blocksize);
250     unsigned int i;
251     for (i = start_block_offset / smpi_shared_malloc_blocksize; i < stop_block_offset / smpi_shared_malloc_blocksize; i++) {
252 //      fprintf(stderr, "\tmmap:for  0x%x - 0x%x\n", i*smpi_shared_malloc_blocksize, smpi_shared_malloc_blocksize);
253       void* pos = (void*)((unsigned long)mem + i * smpi_shared_malloc_blocksize);
254       void* res = mmap(pos, smpi_shared_malloc_blocksize, PROT_READ | PROT_WRITE, MAP_FIXED | MAP_SHARED | MAP_POPULATE,
255                        smpi_shared_malloc_bogusfile, 0);
256       xbt_assert(res == pos, "Could not map folded virtual memory (%s). Do you perhaps need to increase the "
257                              "size of the mapped file using --cfg=smpi/shared-malloc-blocksize=newvalue (default 1048576) ?"
258                              "You can also try using  the sysctl vm.max_map_count",
259                  strerror(errno));
260     }
261     int low_page_start_offset = ALIGN_UP(start_offset, PAGE_SIZE);
262     int low_page_stop_offset = start_block_offset < ALIGN_DOWN(stop_offset, PAGE_SIZE) ? start_block_offset : ALIGN_DOWN(stop_offset, PAGE_SIZE);
263     if(low_page_start_offset < low_page_stop_offset) {
264 //      fprintf(stderr, "\tmmap:low  0x%x - 0x%x\n", low_page_start_offset, low_page_stop_offset-low_page_start_offset);
265       void* pos = (void*)((unsigned long)mem + low_page_start_offset);
266       void* res = mmap(pos, low_page_stop_offset-low_page_start_offset, PROT_READ | PROT_WRITE, MAP_FIXED | MAP_SHARED | MAP_POPULATE,
267                        smpi_shared_malloc_bogusfile, 0);
268       xbt_assert(res == pos, "Could not map folded virtual memory (%s). Do you perhaps need to increase the "
269                              "size of the mapped file using --cfg=smpi/shared-malloc-blocksize=newvalue (default 1048576) ?"
270                              "You can also try using  the sysctl vm.max_map_count",
271                  strerror(errno));
272     }
273     if(low_page_stop_offset <= stop_block_offset) {
274       int high_page_stop_offset = stop_offset == size ? size : ALIGN_DOWN(stop_offset, PAGE_SIZE);
275       if(high_page_stop_offset > stop_block_offset) {
276 //        fprintf(stderr, "\tmmap:high 0x%x - 0x%x\n", stop_block_offset, high_page_stop_offset-stop_block_offset);
277         void* pos = (void*)((unsigned long)mem + stop_block_offset);
278         void* res = mmap(pos, high_page_stop_offset-stop_block_offset, PROT_READ | PROT_WRITE, MAP_FIXED | MAP_SHARED | MAP_POPULATE,
279                          smpi_shared_malloc_bogusfile, 0);
280         xbt_assert(res == pos, "Could not map folded virtual memory (%s). Do you perhaps need to increase the "
281                                "size of the mapped file using --cfg=smpi/shared-malloc-blocksize=newvalue (default 1048576) ?"
282                                "You can also try using  the sysctl vm.max_map_count",
283                    strerror(errno));
284       }
285     }
286   }
287
288   shared_metadata_t newmeta;
289   //register metadata for memcpy avoidance
290   shared_data_key_type* data = (shared_data_key_type*)xbt_malloc(sizeof(shared_data_key_type));
291   data->second.fd = -1;
292   data->second.count = 1;
293   newmeta.size = size;
294   newmeta.data = data;
295   if(shared_block_offsets[0] > 0) {
296     newmeta.private_blocks.push_back(std::make_pair(0, shared_block_offsets[0]));
297   }
298   for(int i_block = 0; i_block < nb_shared_blocks-1; i_block ++) {
299     newmeta.private_blocks.push_back(std::make_pair(shared_block_offsets[2*i_block+1], shared_block_offsets[2*i_block+2]));
300   }
301   if(shared_block_offsets[nb_shared_blocks-1] < size) {
302     newmeta.private_blocks.push_back(std::make_pair(shared_block_offsets[nb_shared_blocks-1], size));
303   }
304   allocs_metadata[mem] = newmeta;
305
306   return mem;
307 }
308
309 /*
310  * When nb_shared_blocks == -1, default behavior of smpi_shared_malloc: everything is shared.
311  * Otherwise, only the blocks described by shared_block_offsets are shared.
312  * This array contains the offsets (in bytes) of the block to share.
313  * Even indices are the start offsets (included), odd indices are the stop offsets (excluded).
314  * For instance, if shared_block_offsets == {27, 42}, then the elements mem[27], mem[28], ..., mem[41] are shared. The others are not.
315  */
316 void *smpi_shared_malloc_global(size_t size, const char *file, int line, int *shared_block_offsets=NULL, int nb_shared_blocks=-1) {
317   int tmp_shared_block_offsets[2];
318   if(nb_shared_blocks == -1) {
319     nb_shared_blocks = 1;
320     shared_block_offsets = tmp_shared_block_offsets;
321     shared_block_offsets[0] = 0;
322     shared_block_offsets[1] = size;
323   }
324   return smpi_shared_malloc_global__(size, file, line, shared_block_offsets, nb_shared_blocks);
325 }
326
327 void *smpi_shared_malloc(size_t size, const char *file, int line) {
328   void *mem;
329   if (size > 0 && smpi_cfg_shared_malloc == shmalloc_local) {
330     mem = smpi_shared_malloc_local(size, file, line);
331   } else if (smpi_cfg_shared_malloc == shmalloc_global) {
332     mem = smpi_shared_malloc_global(size, file, line);
333   } else {
334     mem = xbt_malloc(size);
335     XBT_DEBUG("Classic malloc %zu in %p", size, mem);
336   }
337   return mem;
338 }
339
340 int smpi_is_shared(void* ptr, std::vector<std::pair<int, int>> &private_blocks, int *offset){
341   private_blocks.clear(); // being paranoid
342   if (allocs_metadata.empty())
343     return 0;
344   if ( smpi_cfg_shared_malloc == shmalloc_local || smpi_cfg_shared_malloc == shmalloc_global) {
345     auto low = allocs_metadata.lower_bound(ptr);
346     if (low->first==ptr) {
347       private_blocks = low->second.private_blocks;
348       *offset = 0;
349       return 1;
350     }
351     if (low == allocs_metadata.begin())
352       return 0;
353     low --;
354     if (ptr < (char*)low->first + low->second.size) {
355       *offset = ((uint8_t*) low->first) - ((uint8_t*)ptr);
356       private_blocks = low->second.private_blocks;
357       return 1;
358     }
359     return 0;
360   } else {
361     return 0;
362   }
363 }
364
365 std::vector<std::pair<int, int>> shift_private_blocks(const std::vector<std::pair<int, int>> vec, int offset) {
366   std::vector<std::pair<int, int>> result;
367   for(auto block: vec) {
368     auto new_block = std::make_pair(std::max(0, block.first-offset), std::max(0, block.second-offset));
369     if(new_block.second > 0)
370       result.push_back(new_block);
371   }
372   return result;
373 }
374
375 void append_or_merge_block(std::vector<std::pair<int, int>> &vec, std::pair<int, int> &block) {
376   if(vec.size() > 0 && block.first <= vec.back().second) { // overlapping with the last block inserted
377     vec.back().second = std::max(vec.back().second, block.second);
378   }
379   else { // not overlapping, we insert a new block
380     vec.push_back(block);
381   }
382 }
383
384 std::vector<std::pair<int, int>> merge_private_blocks(std::vector<std::pair<int, int>> src, std::vector<std::pair<int, int>> dst) {
385   std::vector<std::pair<int, int>> result;
386   unsigned i_src=0, i_dst=0;
387   while(i_src < src.size() && i_dst < dst.size()) {
388     std::pair<int, int> block;
389     if(src[i_src].first < dst[i_dst].first) {
390       block = src[i_src];
391       i_src ++;
392     }
393     else {
394       block = dst[i_dst];
395       i_dst ++;
396     }
397     append_or_merge_block(result, block);
398   }
399   for(; i_src < src.size(); i_src++) {
400     append_or_merge_block(result, src[i_src]);
401   }
402   for(; i_dst < dst.size(); i_dst++) {
403     append_or_merge_block(result, dst[i_dst]);
404   }
405   return result;
406 }
407
408 void smpi_shared_free(void *ptr)
409 {
410   if (smpi_cfg_shared_malloc == shmalloc_local) {
411     char loc[PTR_STRLEN];
412     snprintf(loc, PTR_STRLEN, "%p", ptr);
413     auto meta = allocs_metadata.find(ptr);
414     if (meta == allocs_metadata.end()) {
415       XBT_WARN("Cannot free: %p was not shared-allocated by SMPI - maybe its size was 0?", ptr);
416       return;
417     }
418     shared_data_t* data = &meta->second.data->second;
419     if (munmap(ptr, meta->second.size) < 0) {
420       XBT_WARN("Unmapping of fd %d failed: %s", data->fd, strerror(errno));
421     }
422     data->count--;
423     if (data->count <= 0) {
424       close(data->fd);
425       allocs.erase(allocs.find(meta->second.data->first));
426       allocs_metadata.erase(ptr);
427       XBT_DEBUG("Shared free - with removal - of %p", ptr);
428     } else {
429       XBT_DEBUG("Shared free - no removal - of %p, count = %d", ptr, data->count);
430     }
431
432   } else if (smpi_cfg_shared_malloc == shmalloc_global) {
433     auto meta = allocs_metadata.find(ptr);
434     if (meta != allocs_metadata.end()){
435       meta->second.data->second.count--;
436       if(meta->second.data->second.count==0)
437         xbt_free(meta->second.data);
438     }
439
440     munmap(ptr, 0); // the POSIX says that I should not give 0 as a length, but it seems to work OK
441   } else {
442     XBT_DEBUG("Classic free of %p", ptr);
443     xbt_free(ptr);
444   }
445 }
446 #endif
447
448 int smpi_shared_known_call(const char* func, const char* input)
449 {
450   char* loc = bprintf("%s:%s", func, input);
451   int known = 0;
452
453   if (calls==nullptr) {
454     calls = xbt_dict_new_homogeneous(nullptr);
455   }
456   try {
457     xbt_dict_get(calls, loc); /* Succeed or throw */
458     known = 1;
459     xbt_free(loc);
460   }
461   catch (xbt_ex& ex) {
462     xbt_free(loc);
463     if (ex.category != not_found_error)
464       throw;
465   }
466   catch(...) {
467     xbt_free(loc);
468     throw;
469   }
470   return known;
471 }
472
473 void* smpi_shared_get_call(const char* func, const char* input) {
474   char* loc = bprintf("%s:%s", func, input);
475
476   if (calls == nullptr)
477     calls    = xbt_dict_new_homogeneous(nullptr);
478   void* data = xbt_dict_get(calls, loc);
479   xbt_free(loc);
480   return data;
481 }
482
483 void* smpi_shared_set_call(const char* func, const char* input, void* data) {
484   char* loc = bprintf("%s:%s", func, input);
485
486   if (calls == nullptr)
487     calls = xbt_dict_new_homogeneous(nullptr);
488   xbt_dict_set(calls, loc, data, nullptr);
489   xbt_free(loc);
490   return data;
491 }
492