Logo AND Algorithmique Numérique Distribuée

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