Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Improve the doc of parallel executions
[simgrid.git] / src / smpi / internals / smpi_global.cpp
1 /* Copyright (c) 2007-2018. 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 "mc/mc.h"
7 #include "simgrid/s4u/Engine.hpp"
8 #include "smpi_coll.hpp"
9 #include "smpi_f2c.hpp"
10 #include "smpi_host.hpp"
11 #include "src/kernel/activity/CommImpl.hpp"
12 #include "src/simix/smx_private.hpp"
13 #include "src/smpi/include/smpi_actor.hpp"
14 #include "xbt/config.hpp"
15
16 #include <algorithm>
17 #include <cfloat> /* DBL_MAX */
18 #include <dlfcn.h>
19 #include <fcntl.h>
20 #include <fstream>
21
22 #if not defined(__APPLE__)
23 #include <link.h>
24 #endif
25
26 #if defined(__APPLE__)
27 # include <AvailabilityMacros.h>
28 # ifndef MAC_OS_X_VERSION_10_12
29 #   define MAC_OS_X_VERSION_10_12 101200
30 # endif
31 # define HAVE_WORKING_MMAP (MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_12)
32 #elif defined(__FreeBSD__)
33 # define HAVE_WORKING_MMAP 0
34 #else
35 # define HAVE_WORKING_MMAP 1
36 #endif
37
38 #if HAVE_SENDFILE
39 #include <sys/sendfile.h>
40 #endif
41
42 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_kernel, smpi, "Logging specific to SMPI (kernel)");
43 #include <boost/tokenizer.hpp>
44 #include <boost/algorithm/string.hpp> /* trim_right / trim_left */
45
46 #if SMPI_IFORT
47   extern "C" void for_rtl_init_ (int *, char **);
48   extern "C" void for_rtl_finish_ ();
49 #elif SMPI_FLANG
50   extern "C" void __io_set_argc(int);
51   extern "C" void __io_set_argv(char **);
52 #elif SMPI_GFORTRAN
53   extern "C" void _gfortran_set_args(int, char **);
54 #endif
55
56 /* RTLD_DEEPBIND is a bad idea of GNU ld that obviously does not exist on other platforms
57  * See https://www.akkadia.org/drepper/dsohowto.pdf
58  * and https://lists.freebsd.org/pipermail/freebsd-current/2016-March/060284.html
59 */
60 #if !defined(RTLD_DEEPBIND) || HAVE_SANITIZER_ADDRESS || HAVE_SANITIZER_THREAD
61 #define WANT_RTLD_DEEPBIND 0
62 #else
63 #define WANT_RTLD_DEEPBIND RTLD_DEEPBIND
64 #endif
65
66 #if HAVE_PAPI
67 #include "papi.h"
68 std::string papi_default_config_name = "default";
69 std::map</* computation unit name */ std::string, papi_process_data> units2papi_setup;
70 #endif
71
72 using simgrid::s4u::Actor;
73 using simgrid::s4u::ActorPtr;
74 std::unordered_map<std::string, double> location2speedup;
75
76 static std::map</*process_id*/ ActorPtr, simgrid::smpi::ActorExt*> process_data;
77 int process_count = 0;
78 static int smpi_exit_status = 0;
79 int smpi_universe_size = 0;
80 extern double smpi_total_benched_time;
81 xbt_os_timer_t global_timer;
82 static std::vector<std::string> privatize_libs_paths;
83 /**
84  * Setting MPI_COMM_WORLD to MPI_COMM_UNINITIALIZED (it's a variable)
85  * is important because the implementation of MPI_Comm checks
86  * "this == MPI_COMM_UNINITIALIZED"? If yes, it uses smpi_process()->comm_world()
87  * instead of "this".
88  * This is basically how we only have one global variable but all processes have
89  * different communicators (the one their SMPI instance uses).
90  *
91  * See smpi_comm.cpp and the functions therein for details.
92  */
93 MPI_Comm MPI_COMM_WORLD = MPI_COMM_UNINITIALIZED;
94 MPI_Errhandler *MPI_ERRORS_RETURN = nullptr;
95 MPI_Errhandler *MPI_ERRORS_ARE_FATAL = nullptr;
96 MPI_Errhandler *MPI_ERRHANDLER_NULL = nullptr;
97 // No instance gets manually created; check also the smpirun.in script as
98 // this default name is used there as well (when the <actor> tag is generated).
99 static const std::string smpi_default_instance_name("smpirun");
100 static simgrid::config::Flag<double> smpi_init_sleep(
101   "smpi/init", "Time to inject inside a call to MPI_Init", 0.0);
102
103 void (*smpi_comm_copy_data_callback) (smx_activity_t, void*, size_t) = &smpi_comm_copy_buffer_callback;
104
105 int smpi_process_count()
106 {
107   return process_count;
108 }
109
110 simgrid::smpi::ActorExt* smpi_process()
111 {
112   ActorPtr me = Actor::self();
113
114   if (me == nullptr) // This happens sometimes (eg, when linking against NS3 because it pulls openMPI...)
115     return nullptr;
116
117   return process_data.at(me);
118 }
119
120 simgrid::smpi::ActorExt* smpi_process_remote(ActorPtr actor)
121 {
122   return process_data.at(actor);
123 }
124
125 MPI_Comm smpi_process_comm_self(){
126   return smpi_process()->comm_self();
127 }
128
129 void smpi_process_init(int *argc, char ***argv){
130   simgrid::smpi::ActorExt::init(argc, argv);
131 }
132
133 int smpi_process_index(){
134   return simgrid::s4u::this_actor::get_pid();
135 }
136
137 void * smpi_process_get_user_data(){
138   return Actor::self()->get_impl()->get_user_data();
139 }
140
141 void smpi_process_set_user_data(void *data){
142   Actor::self()->get_impl()->set_user_data(data);
143 }
144
145
146 int smpi_global_size()
147 {
148   char *value = getenv("SMPI_GLOBAL_SIZE");
149   xbt_assert(value,"Please set env var SMPI_GLOBAL_SIZE to the expected number of processes.");
150
151   return xbt_str_parse_int(value, "SMPI_GLOBAL_SIZE contains a non-numerical value: %s");
152 }
153
154 void smpi_comm_set_copy_data_callback(void (*callback) (smx_activity_t, void*, size_t))
155 {
156   smpi_comm_copy_data_callback = callback;
157 }
158
159 static void memcpy_private(void* dest, const void* src, std::vector<std::pair<size_t, size_t>>& private_blocks)
160 {
161   for (auto const& block : private_blocks)
162     memcpy((uint8_t*)dest+block.first, (uint8_t*)src+block.first, block.second-block.first);
163 }
164
165 static void check_blocks(std::vector<std::pair<size_t, size_t>> &private_blocks, size_t buff_size) {
166   for (auto const& block : private_blocks)
167     xbt_assert(block.first <= block.second && block.second <= buff_size, "Oops, bug in shared malloc.");
168 }
169
170 void smpi_comm_copy_buffer_callback(smx_activity_t synchro, void *buff, size_t buff_size)
171 {
172   simgrid::kernel::activity::CommImplPtr comm =
173       boost::dynamic_pointer_cast<simgrid::kernel::activity::CommImpl>(synchro);
174   int src_shared                        = 0;
175   int dst_shared                        = 0;
176   size_t src_offset                     = 0;
177   size_t dst_offset                     = 0;
178   std::vector<std::pair<size_t, size_t>> src_private_blocks;
179   std::vector<std::pair<size_t, size_t>> dst_private_blocks;
180   XBT_DEBUG("Copy the data over");
181   if((src_shared=smpi_is_shared(buff, src_private_blocks, &src_offset))) {
182     XBT_DEBUG("Sender %p is shared. Let's ignore it.", buff);
183     src_private_blocks = shift_and_frame_private_blocks(src_private_blocks, src_offset, buff_size);
184   }
185   else {
186     src_private_blocks.clear();
187     src_private_blocks.push_back(std::make_pair(0, buff_size));
188   }
189   if((dst_shared=smpi_is_shared((char*)comm->dst_buff, dst_private_blocks, &dst_offset))) {
190     XBT_DEBUG("Receiver %p is shared. Let's ignore it.", (char*)comm->dst_buff);
191     dst_private_blocks = shift_and_frame_private_blocks(dst_private_blocks, dst_offset, buff_size);
192   }
193   else {
194     dst_private_blocks.clear();
195     dst_private_blocks.push_back(std::make_pair(0, buff_size));
196   }
197   check_blocks(src_private_blocks, buff_size);
198   check_blocks(dst_private_blocks, buff_size);
199   auto private_blocks = merge_private_blocks(src_private_blocks, dst_private_blocks);
200   check_blocks(private_blocks, buff_size);
201   void* tmpbuff=buff;
202   if ((smpi_privatize_global_variables == SmpiPrivStrategies::MMAP) &&
203       (static_cast<char*>(buff) >= smpi_data_exe_start) &&
204       (static_cast<char*>(buff) < smpi_data_exe_start + smpi_data_exe_size)) {
205     XBT_DEBUG("Privatization : We are copying from a zone inside global memory... Saving data to temp buffer !");
206     smpi_switch_data_segment(comm->src_proc->iface());
207     tmpbuff = static_cast<void*>(xbt_malloc(buff_size));
208     memcpy_private(tmpbuff, buff, private_blocks);
209   }
210
211   if ((smpi_privatize_global_variables == SmpiPrivStrategies::MMAP) && ((char*)comm->dst_buff >= smpi_data_exe_start) &&
212       ((char*)comm->dst_buff < smpi_data_exe_start + smpi_data_exe_size)) {
213     XBT_DEBUG("Privatization : We are copying to a zone inside global memory - Switch data segment");
214     smpi_switch_data_segment(comm->dst_proc->iface());
215   }
216   XBT_DEBUG("Copying %zu bytes from %p to %p", buff_size, tmpbuff,comm->dst_buff);
217   memcpy_private(comm->dst_buff, tmpbuff, private_blocks);
218
219   if (comm->detached) {
220     // if this is a detached send, the source buffer was duplicated by SMPI
221     // sender to make the original buffer available to the application ASAP
222     xbt_free(buff);
223     //It seems that the request is used after the call there this should be free somewhere else but where???
224     //xbt_free(comm->comm.src_data);// inside SMPI the request is kept inside the user data and should be free
225     comm->src_buff = nullptr;
226   }
227   if (tmpbuff != buff)
228     xbt_free(tmpbuff);
229 }
230
231 void smpi_comm_null_copy_buffer_callback(smx_activity_t comm, void *buff, size_t buff_size)
232 {
233   /* nothing done in this version */
234 }
235
236 static void smpi_check_options()
237 {
238   //check correctness of MPI parameters
239
240   xbt_assert(simgrid::config::get_value<int>("smpi/async-small-thresh") <=
241              simgrid::config::get_value<int>("smpi/send-is-detached-thresh"));
242
243   if (simgrid::config::is_default("smpi/host-speed")) {
244     XBT_INFO("You did not set the power of the host running the simulation.  "
245              "The timings will certainly not be accurate.  "
246              "Use the option \"--cfg=smpi/host-speed:<flops>\" to set its value."
247              "Check http://simgrid.org/simgrid/latest/doc/options.html#options_smpi_bench for more information.");
248   }
249
250   xbt_assert(simgrid::config::get_value<double>("smpi/cpu-threshold") >= 0,
251              "The 'smpi/cpu-threshold' option cannot have negative values [anymore]. If you want to discard "
252              "the simulation of any computation, please use 'smpi/simulate-computation:no' instead.");
253 }
254
255 int smpi_enabled() {
256   return not process_data.empty();
257 }
258
259 void smpi_global_init()
260 {
261   if (not MC_is_active()) {
262     global_timer = xbt_os_timer_new();
263     xbt_os_walltimer_start(global_timer);
264   }
265
266   std::string filename = simgrid::config::get_value<std::string>("smpi/comp-adjustment-file");
267   if (not filename.empty()) {
268     std::ifstream fstream(filename);
269     if (not fstream.is_open()) {
270       xbt_die("Could not open file %s. Does it exist?", filename.c_str());
271     }
272
273     std::string line;
274     typedef boost::tokenizer< boost::escaped_list_separator<char>> Tokenizer;
275     std::getline(fstream, line); // Skip the header line
276     while (std::getline(fstream, line)) {
277       Tokenizer tok(line);
278       Tokenizer::iterator it  = tok.begin();
279       Tokenizer::iterator end = std::next(tok.begin());
280
281       std::string location = *it;
282       boost::trim(location);
283       location2speedup.insert(std::pair<std::string, double>(location, std::stod(*end)));
284     }
285   }
286
287 #if HAVE_PAPI
288   // This map holds for each computation unit (such as "default" or "process1" etc.)
289   // the configuration as given by the user (counter data as a pair of (counter_name, counter_counter))
290   // and the (computed) event_set.
291
292   if (not simgrid::config::get_value<std::string>("smpi/papi-events").empty()) {
293     if (PAPI_library_init(PAPI_VER_CURRENT) != PAPI_VER_CURRENT)
294       XBT_ERROR("Could not initialize PAPI library; is it correctly installed and linked?"
295                 " Expected version is %u", PAPI_VER_CURRENT);
296
297     typedef boost::tokenizer<boost::char_separator<char>> Tokenizer;
298     boost::char_separator<char> separator_units(";");
299     std::string str = simgrid::config::get_value<std::string>("smpi/papi-events");
300     Tokenizer tokens(str, separator_units);
301
302     // Iterate over all the computational units. This could be processes, hosts, threads, ranks... You name it.
303     // I'm not exactly sure what we will support eventually, so I'll leave it at the general term "units".
304     for (auto const& unit_it : tokens) {
305       boost::char_separator<char> separator_events(":");
306       Tokenizer event_tokens(unit_it, separator_events);
307
308       int event_set = PAPI_NULL;
309       if (PAPI_create_eventset(&event_set) != PAPI_OK) {
310         // TODO: Should this let the whole simulation die?
311         XBT_CRITICAL("Could not create PAPI event set during init.");
312       }
313
314       // NOTE: We cannot use a map here, as we must obey the order of the counters
315       // This is important for PAPI: We need to map the values of counters back
316       // to the event_names (so, when PAPI_read() has finished)!
317       papi_counter_t counters2values;
318
319       // Iterate over all counters that were specified for this specific
320       // unit.
321       // Note that we need to remove the name of the unit
322       // (that could also be the "default" value), which always comes first.
323       // Hence, we start at ++(events.begin())!
324       for (Tokenizer::iterator events_it = ++(event_tokens.begin()); events_it != event_tokens.end(); ++events_it) {
325
326         int event_code   = PAPI_NULL;
327         char* event_name = const_cast<char*>((*events_it).c_str());
328         if (PAPI_event_name_to_code(event_name, &event_code) == PAPI_OK) {
329           if (PAPI_add_event(event_set, event_code) != PAPI_OK) {
330             XBT_ERROR("Could not add PAPI event '%s'. Skipping.", event_name);
331             continue;
332           } else {
333             XBT_DEBUG("Successfully added PAPI event '%s' to the event set.", event_name);
334           }
335         } else {
336           XBT_CRITICAL("Could not find PAPI event '%s'. Skipping.", event_name);
337           continue;
338         }
339
340         counters2values.push_back(
341             // We cannot just pass *events_it, as this is of type const basic_string
342             std::make_pair<std::string, long long>(std::string(*events_it), 0));
343       }
344
345       std::string unit_name    = *(event_tokens.begin());
346       papi_process_data config = {.counter_data = std::move(counters2values), .event_set = event_set};
347
348       units2papi_setup.insert(std::make_pair(unit_name, std::move(config)));
349     }
350   }
351 #endif
352 }
353
354 void smpi_global_destroy()
355 {
356   smpi_bench_destroy();
357   smpi_shared_destroy();
358   smpi_deployment_cleanup_instances();
359
360   if (simgrid::smpi::Colls::smpi_coll_cleanup_callback != nullptr)
361     simgrid::smpi::Colls::smpi_coll_cleanup_callback();
362
363   MPI_COMM_WORLD = MPI_COMM_NULL;
364
365   if (not MC_is_active()) {
366     xbt_os_timer_free(global_timer);
367   }
368
369   if (smpi_privatize_global_variables == SmpiPrivStrategies::MMAP)
370     smpi_destroy_global_memory_segments();
371   smpi_free_static();
372   if(simgrid::smpi::F2C::lookup() != nullptr)
373     simgrid::smpi::F2C::delete_lookup();
374 }
375
376 static void smpi_init_options(){
377   // return if already called
378   if (smpi_cpu_threshold > -1)
379     return;
380   simgrid::smpi::Colls::set_collectives();
381   simgrid::smpi::Colls::smpi_coll_cleanup_callback = nullptr;
382   smpi_cpu_threshold                               = simgrid::config::get_value<double>("smpi/cpu-threshold");
383   smpi_host_speed                                  = simgrid::config::get_value<double>("smpi/host-speed");
384   xbt_assert(smpi_host_speed > 0.0, "You're trying to set the host_speed to a non-positive value (given: %f)", smpi_host_speed);
385   std::string smpi_privatize_option = simgrid::config::get_value<std::string>("smpi/privatization");
386   if (smpi_privatize_option == "no" || smpi_privatize_option == "0")
387     smpi_privatize_global_variables = SmpiPrivStrategies::NONE;
388   else if (smpi_privatize_option == "yes" || smpi_privatize_option == "1")
389     smpi_privatize_global_variables = SmpiPrivStrategies::DEFAULT;
390   else if (smpi_privatize_option == "mmap")
391     smpi_privatize_global_variables = SmpiPrivStrategies::MMAP;
392   else if (smpi_privatize_option == "dlopen")
393     smpi_privatize_global_variables = SmpiPrivStrategies::DLOPEN;
394   else
395     xbt_die("Invalid value for smpi/privatization: '%s'", smpi_privatize_option.c_str());
396
397   if (not SMPI_switch_data_segment) {
398     XBT_DEBUG("Running without smpi_main(); disable smpi/privatization.");
399     smpi_privatize_global_variables = SmpiPrivStrategies::NONE;
400   }
401 #if !HAVE_WORKING_MMAP
402   if (smpi_privatize_global_variables == SmpiPrivStrategies::MMAP) {
403     XBT_INFO("mmap privatization is broken on this platform, switching to dlopen privatization instead.");
404     smpi_privatize_global_variables = SmpiPrivStrategies::DLOPEN;
405   }
406 #endif
407
408   if (smpi_cpu_threshold < 0)
409     smpi_cpu_threshold = DBL_MAX;
410
411   std::string val = simgrid::config::get_value<std::string>("smpi/shared-malloc");
412   if ((val == "yes") || (val == "1") || (val == "on") || (val == "global")) {
413     smpi_cfg_shared_malloc = SharedMallocType::GLOBAL;
414   } else if (val == "local") {
415     smpi_cfg_shared_malloc = SharedMallocType::LOCAL;
416   } else if ((val == "no") || (val == "0") || (val == "off")) {
417     smpi_cfg_shared_malloc = SharedMallocType::NONE;
418   } else {
419     xbt_die("Invalid value '%s' for option smpi/shared-malloc. Possible values: 'on' or 'global', 'local', 'off'",
420             val.c_str());
421   }
422 }
423
424 typedef std::function<int(int argc, char *argv[])> smpi_entry_point_type;
425 typedef int (* smpi_c_entry_point_type)(int argc, char **argv);
426 typedef void (*smpi_fortran_entry_point_type)();
427
428 static int smpi_run_entry_point(smpi_entry_point_type entry_point, std::vector<std::string> args)
429 {
430   // copy C strings, we need them writable
431   std::vector<char*>* args4argv = new std::vector<char*>(args.size());
432   std::transform(begin(args), end(args), begin(*args4argv), [](const std::string& s) { return xbt_strdup(s.c_str()); });
433
434 #if !SMPI_IFORT
435   // take a copy of args4argv to keep reference of the allocated strings
436   const std::vector<char*> args2str(*args4argv);
437 #endif
438   int argc = args4argv->size();
439   args4argv->push_back(nullptr);
440   char** argv = args4argv->data();
441
442   simgrid::smpi::ActorExt::init(&argc, &argv);
443 #if SMPI_IFORT
444   for_rtl_init_ (&argc, argv);
445 #elif SMPI_FLANG
446   __io_set_argc(argc);
447   __io_set_argv(argv);
448 #elif SMPI_GFORTRAN
449   _gfortran_set_args(argc, argv);
450 #endif 
451   int res = entry_point(argc, argv);
452
453 #if SMPI_IFORT
454   for_rtl_finish_ ();
455 #else
456   for (char* s : args2str)
457     xbt_free(s);
458   delete args4argv;
459 #endif
460
461   if (res != 0){
462     XBT_WARN("SMPI process did not return 0. Return value : %d", res);
463     if (smpi_exit_status == 0)
464       smpi_exit_status = res;
465   }
466   return 0;
467 }
468
469
470 // TODO, remove the number of functions involved here
471 static smpi_entry_point_type smpi_resolve_function(void* handle)
472 {
473   smpi_fortran_entry_point_type entry_point_fortran = (smpi_fortran_entry_point_type)dlsym(handle, "user_main_");
474   if (entry_point_fortran != nullptr) {
475     return [entry_point_fortran](int argc, char** argv) {
476       entry_point_fortran();
477       return 0;
478     };
479   }
480
481   smpi_c_entry_point_type entry_point = (smpi_c_entry_point_type)dlsym(handle, "main");
482   if (entry_point != nullptr) {
483     return entry_point;
484   }
485
486   return smpi_entry_point_type();
487 }
488
489 static void smpi_copy_file(std::string src, std::string target, off_t fdin_size)
490 {
491   int fdin = open(src.c_str(), O_RDONLY);
492   xbt_assert(fdin >= 0, "Cannot read from %s. Please make sure that the file exists and is executable.", src.c_str());
493   int fdout = open(target.c_str(), O_CREAT | O_RDWR, S_IRWXU);
494   xbt_assert(fdout >= 0, "Cannot write into %s", target.c_str());
495
496   XBT_DEBUG("Copy %ld bytes into %s", static_cast<long>(fdin_size), target.c_str());
497 #if HAVE_SENDFILE
498   ssize_t sent_size = sendfile(fdout, fdin, NULL, fdin_size);
499   xbt_assert(sent_size == fdin_size, "Error while copying %s: only %zd bytes copied instead of %ld (errno: %d -- %s)",
500              target.c_str(), sent_size, fdin_size, errno, strerror(errno));
501 #else
502   const int bufsize = 1024 * 1024 * 4;
503   char buf[bufsize];
504   while (int got = read(fdin, buf, bufsize)) {
505     if (got == -1) {
506       xbt_assert(errno == EINTR, "Cannot read from %s", src.c_str());
507     } else {
508       char* p  = buf;
509       int todo = got;
510       while (int done = write(fdout, p, todo)) {
511         if (done == -1) {
512           xbt_assert(errno == EINTR, "Cannot write into %s", target.c_str());
513         } else {
514           p += done;
515           todo -= done;
516         }
517       }
518     }
519   }
520 #endif
521   close(fdin);
522   close(fdout);
523 }
524
525 #if not defined(__APPLE__)
526 static int visit_libs(struct dl_phdr_info* info, size_t, void* data)
527 {
528   char* libname = (char*)(data);
529   const char *path = info->dlpi_name;
530   if(strstr(path, libname)){
531     strncpy(libname, path, 512);
532     return 1;
533   }
534   
535   return 0;
536 }
537 #endif
538
539 static void smpi_init_privatization_dlopen(std::string executable)
540 {
541   // Prepare the copy of the binary (get its size)
542   struct stat fdin_stat;
543   stat(executable.c_str(), &fdin_stat);
544   off_t fdin_size         = fdin_stat.st_size;
545   static std::size_t rank = 0;
546
547   std::string libnames = simgrid::config::get_value<std::string>("smpi/privatize-libs");
548   if (not libnames.empty()) {
549     // split option
550     std::vector<std::string> privatize_libs;
551     boost::split(privatize_libs, libnames, boost::is_any_of(";"));
552
553     for (auto const& libname : privatize_libs) {
554       // load the library once to add it to the local libs, to get the absolute path
555       void* libhandle = dlopen(libname.c_str(), RTLD_LAZY);
556       // get library name from path
557       char fullpath[512] = {'\0'};
558       strcpy(fullpath, libname.c_str());
559 #if not defined(__APPLE__)
560       int ret = dl_iterate_phdr(visit_libs, fullpath);
561       if (ret == 0)
562         xbt_die("Can't find a linked %s - check the setting you gave to smpi/privatize-libs", fullpath);
563       else
564         XBT_DEBUG("Extra lib to privatize found : %s", fullpath);
565 #else
566       xbt_die("smpi/privatize-libs is not (yet) compatible with OSX");
567 #endif
568       privatize_libs_paths.push_back(fullpath);
569       dlclose(libhandle);
570     }
571   }
572
573   simix_global->default_function = [executable, fdin_size](std::vector<std::string> args) {
574     return std::function<void()>([executable, fdin_size, args] {
575
576       // Copy the dynamic library:
577       std::string target_executable =
578           executable + "_" + std::to_string(getpid()) + "_" + std::to_string(rank) + ".so";
579
580       smpi_copy_file(executable, target_executable, fdin_size);
581       // if smpi/privatize-libs is set, duplicate pointed lib and link each executable copy to a different one.
582       std::vector<std::string> target_libs;
583       for (auto const& libpath : privatize_libs_paths) {
584         // if we were given a full path, strip it
585         size_t index = libpath.find_last_of("/\\");
586         std::string libname;
587         if (index != std::string::npos)
588           libname = libpath.substr(index + 1);
589
590         if (not libname.empty()) {
591           // load the library to add it to the local libs, to get the absolute path
592           struct stat fdin_stat2;
593           stat(libpath.c_str(), &fdin_stat2);
594           off_t fdin_size2 = fdin_stat2.st_size;
595
596           // Copy the dynamic library, the new name must be the same length as the old one
597           // just replace the name with 7 digits for the rank and the rest of the name.
598           unsigned int pad = 7;
599           if (libname.length() < pad)
600             pad = libname.length();
601           std::string target_lib =
602               std::string(pad - std::to_string(rank).length(), '0') + std::to_string(rank) + libname.substr(pad);
603           target_libs.push_back(target_lib);
604           XBT_DEBUG("copy lib %s to %s, with size %lld", libpath.c_str(), target_lib.c_str(), (long long)fdin_size2);
605           smpi_copy_file(libpath, target_lib, fdin_size2);
606
607           std::string sedcommand = "sed -i -e 's/" + libname + "/" + target_lib + "/g' " + target_executable;
608           int ret                = system(sedcommand.c_str());
609           if (ret != 0)
610             xbt_die("error while applying sed command %s \n", sedcommand.c_str());
611         }
612       }
613
614       rank++;
615       // Load the copy and resolve the entry point:
616       void* handle    = dlopen(target_executable.c_str(), RTLD_LAZY | RTLD_LOCAL | WANT_RTLD_DEEPBIND);
617       int saved_errno = errno;
618       if (simgrid::config::get_value<bool>("smpi/keep-temps") == false) {
619         unlink(target_executable.c_str());
620         for (const std::string& target_lib : target_libs)
621           unlink(target_lib.c_str());
622       }
623       if (handle == nullptr)
624         xbt_die("dlopen failed: %s (errno: %d -- %s)", dlerror(), saved_errno, strerror(saved_errno));
625       smpi_entry_point_type entry_point = smpi_resolve_function(handle);
626       if (not entry_point)
627         xbt_die("Could not resolve entry point");
628       smpi_run_entry_point(entry_point, args);
629     });
630   };
631 }
632
633 static void smpi_init_privatization_no_dlopen(std::string executable)
634 {
635   if (smpi_privatize_global_variables == SmpiPrivStrategies::MMAP)
636     smpi_prepare_global_memory_segment();
637   // Load the dynamic library and resolve the entry point:
638   void* handle = dlopen(executable.c_str(), RTLD_LAZY | RTLD_LOCAL);
639   if (handle == nullptr)
640     xbt_die("dlopen failed for %s: %s (errno: %d -- %s)", executable.c_str(), dlerror(), errno, strerror(errno));
641   smpi_entry_point_type entry_point = smpi_resolve_function(handle);
642   if (not entry_point)
643     xbt_die("main not found in %s", executable.c_str());
644   if (smpi_privatize_global_variables == SmpiPrivStrategies::MMAP)
645     smpi_backup_global_memory_segment();
646
647   // Execute the same entry point for each simulated process:
648   simix_global->default_function = [entry_point](std::vector<std::string> args) {
649     return std::function<void()>([entry_point, args] { smpi_run_entry_point(entry_point, args); });
650   };
651 }
652
653 int smpi_main(const char* executable, int argc, char* argv[])
654 {
655   srand(SMPI_RAND_SEED);
656
657   if (getenv("SMPI_PRETEND_CC") != nullptr) {
658     /* Hack to ensure that smpicc can pretend to be a simple compiler. Particularly handy to pass it to the
659      * configuration tools */
660     return 0;
661   }
662
663   TRACE_global_init();
664   SIMIX_global_init(&argc, argv);
665
666   SMPI_switch_data_segment = &smpi_switch_data_segment;
667
668   // TODO This will not be executed in the case where smpi_main is not called,
669   // e.g., not for smpi_msg_masterslave. This should be moved to another location
670   // that is always called -- maybe close to Actor::on_creation?
671   simgrid::s4u::Host::on_creation.connect(
672       [](simgrid::s4u::Host& host) { host.extension_set(new simgrid::smpi::Host(&host)); });
673
674   // parse the platform file: get the host list
675   simgrid::s4u::Engine::get_instance()->load_platform(argv[1]);
676   SIMIX_comm_set_copy_data_callback(smpi_comm_copy_buffer_callback);
677
678   smpi_init_options();
679   if (smpi_privatize_global_variables == SmpiPrivStrategies::DLOPEN)
680     smpi_init_privatization_dlopen(executable);
681   else
682     smpi_init_privatization_no_dlopen(executable);
683
684   SMPI_init();
685   simgrid::s4u::Engine::get_instance()->load_deployment(argv[2]);
686   SMPI_app_instance_register(smpi_default_instance_name.c_str(), nullptr,
687                              process_data.size()); // This call has a side effect on process_count...
688   MPI_COMM_WORLD = *smpi_deployment_comm_world(smpi_default_instance_name);
689   smpi_universe_size = process_count;
690
691
692   /* Clean IO before the run */
693   fflush(stdout);
694   fflush(stderr);
695
696   if (MC_is_active()) {
697     MC_run();
698   } else {
699
700     SIMIX_run();
701
702     xbt_os_walltimer_stop(global_timer);
703     if (simgrid::config::get_value<bool>("smpi/display-timing")) {
704       double global_time = xbt_os_timer_elapsed(global_timer);
705       XBT_INFO("Simulated time: %g seconds. \n\n"
706           "The simulation took %g seconds (after parsing and platform setup)\n"
707           "%g seconds were actual computation of the application",
708           SIMIX_get_clock(), global_time , smpi_total_benched_time);
709
710       if (smpi_total_benched_time/global_time>=0.75)
711       XBT_INFO("More than 75%% of the time was spent inside the application code.\n"
712       "You may want to use sampling functions or trace replay to reduce this.");
713     }
714   }
715   smpi_global_destroy();
716
717   return smpi_exit_status;
718 }
719
720 // Called either directly from the user code, or from the code called by smpirun
721 void SMPI_init(){
722   simgrid::s4u::Actor::on_creation.connect([](simgrid::s4u::ActorPtr actor) {
723     if (not actor->is_daemon()) {
724       process_data.insert({actor, new simgrid::smpi::ActorExt(actor, nullptr)});
725     }
726   });
727   simgrid::s4u::Actor::on_destruction.connect([](simgrid::s4u::ActorPtr actor) {
728     auto it = process_data.find(actor);
729     if (it != process_data.end()) {
730       delete it->second;
731       process_data.erase(it);
732     }
733   });
734
735   smpi_init_options();
736   smpi_global_init();
737   smpi_check_options();
738 }
739
740 void SMPI_finalize(){
741   smpi_global_destroy();
742 }
743
744 void smpi_mpi_init() {
745   smpi_init_fortran_types();
746   if(smpi_init_sleep > 0)
747     simcall_process_sleep(smpi_init_sleep);
748 }