Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Slightly simplify logic.
[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 "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 <cinttypes>
19 #include <cstdint> /* intmax_t */
20 #include <dlfcn.h>
21 #include <fcntl.h>
22 #include <fstream>
23
24 #if not defined(__APPLE__)
25 #include <link.h>
26 #endif
27
28 #if defined(__APPLE__)
29 # include <AvailabilityMacros.h>
30 # ifndef MAC_OS_X_VERSION_10_12
31 #   define MAC_OS_X_VERSION_10_12 101200
32 # endif
33 # define HAVE_WORKING_MMAP (MAC_OS_X_VERSION_MIN_REQUIRED >= MAC_OS_X_VERSION_10_12)
34 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
35 # define HAVE_WORKING_MMAP 0
36 #else
37 # define HAVE_WORKING_MMAP 1
38 #endif
39
40 #if SG_HAVE_SENDFILE
41 #include <sys/sendfile.h>
42 #endif
43
44 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_kernel, smpi, "Logging specific to SMPI (kernel)");
45 #include <boost/tokenizer.hpp>
46 #include <boost/algorithm/string.hpp> /* trim_right / trim_left */
47
48 #if SMPI_IFORT
49   extern "C" void for_rtl_init_ (int *, char **);
50   extern "C" void for_rtl_finish_ ();
51 #elif SMPI_FLANG
52   extern "C" void __io_set_argc(int);
53   extern "C" void __io_set_argv(char **);
54 #elif SMPI_GFORTRAN
55   extern "C" void _gfortran_set_args(int, char **);
56 #endif
57
58 /* RTLD_DEEPBIND is a bad idea of GNU ld that obviously does not exist on other platforms
59  * See https://www.akkadia.org/drepper/dsohowto.pdf
60  * and https://lists.freebsd.org/pipermail/freebsd-current/2016-March/060284.html
61 */
62 #if !defined(RTLD_DEEPBIND) || HAVE_SANITIZER_ADDRESS || HAVE_SANITIZER_THREAD
63 #define WANT_RTLD_DEEPBIND 0
64 #else
65 #define WANT_RTLD_DEEPBIND RTLD_DEEPBIND
66 #endif
67
68 #if HAVE_PAPI
69 #include "papi.h"
70 std::string papi_default_config_name = "default";
71 std::map</* computation unit name */ std::string, papi_process_data> units2papi_setup;
72 #endif
73
74 using simgrid::s4u::Actor;
75 using simgrid::s4u::ActorPtr;
76 std::unordered_map<std::string, double> location2speedup;
77
78 static std::map</*process_id*/ ActorPtr, 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) (smx_activity_t, void*, size_t) = &smpi_comm_copy_buffer_callback;
106
107 int smpi_process_count()
108 {
109   return process_count;
110 }
111
112 simgrid::smpi::ActorExt* smpi_process()
113 {
114   ActorPtr me = Actor::self();
115
116   if (me == nullptr) // This happens sometimes (eg, when linking against NS3 because it pulls openMPI...)
117     return nullptr;
118
119   return process_data.at(me);
120 }
121
122 simgrid::smpi::ActorExt* smpi_process_remote(ActorPtr actor)
123 {
124   return process_data.at(actor);
125 }
126
127 MPI_Comm smpi_process_comm_self(){
128   return smpi_process()->comm_self();
129 }
130
131 void smpi_process_init(int *argc, char ***argv){
132   simgrid::smpi::ActorExt::init();
133 }
134
135 void * smpi_process_get_user_data(){
136   return Actor::self()->get_impl()->get_user_data();
137 }
138
139 void smpi_process_set_user_data(void *data){
140   Actor::self()->get_impl()->set_user_data(data);
141 }
142
143
144 int smpi_global_size()
145 {
146   char *value = getenv("SMPI_GLOBAL_SIZE");
147   xbt_assert(value,"Please set env var SMPI_GLOBAL_SIZE to the expected number of processes.");
148
149   return xbt_str_parse_int(value, "SMPI_GLOBAL_SIZE contains a non-numerical value: %s");
150 }
151
152 void smpi_comm_set_copy_data_callback(void (*callback) (smx_activity_t, void*, size_t))
153 {
154   smpi_comm_copy_data_callback = callback;
155 }
156
157 static void memcpy_private(void* dest, const void* src, std::vector<std::pair<size_t, size_t>>& private_blocks)
158 {
159   for (auto const& block : private_blocks)
160     memcpy((uint8_t*)dest+block.first, (uint8_t*)src+block.first, block.second-block.first);
161 }
162
163 static void check_blocks(std::vector<std::pair<size_t, size_t>> &private_blocks, size_t buff_size) {
164   for (auto const& block : private_blocks)
165     xbt_assert(block.first <= block.second && block.second <= buff_size, "Oops, bug in shared malloc.");
166 }
167
168 void smpi_comm_copy_buffer_callback(smx_activity_t synchro, void *buff, size_t buff_size)
169 {
170   simgrid::kernel::activity::CommImplPtr comm =
171       boost::dynamic_pointer_cast<simgrid::kernel::activity::CommImpl>(synchro);
172   int src_shared                        = 0;
173   int dst_shared                        = 0;
174   size_t src_offset                     = 0;
175   size_t dst_offset                     = 0;
176   std::vector<std::pair<size_t, size_t>> src_private_blocks;
177   std::vector<std::pair<size_t, size_t>> dst_private_blocks;
178   XBT_DEBUG("Copy the data over");
179   if((src_shared=smpi_is_shared(buff, src_private_blocks, &src_offset))) {
180     XBT_DEBUG("Sender %p is shared. Let's ignore it.", buff);
181     src_private_blocks = shift_and_frame_private_blocks(src_private_blocks, src_offset, buff_size);
182   }
183   else {
184     src_private_blocks.clear();
185     src_private_blocks.push_back(std::make_pair(0, buff_size));
186   }
187   if((dst_shared=smpi_is_shared((char*)comm->dst_buff, dst_private_blocks, &dst_offset))) {
188     XBT_DEBUG("Receiver %p is shared. Let's ignore it.", (char*)comm->dst_buff);
189     dst_private_blocks = shift_and_frame_private_blocks(dst_private_blocks, dst_offset, buff_size);
190   }
191   else {
192     dst_private_blocks.clear();
193     dst_private_blocks.push_back(std::make_pair(0, buff_size));
194   }
195   check_blocks(src_private_blocks, buff_size);
196   check_blocks(dst_private_blocks, buff_size);
197   auto private_blocks = merge_private_blocks(src_private_blocks, dst_private_blocks);
198   check_blocks(private_blocks, buff_size);
199   void* tmpbuff=buff;
200   if ((smpi_privatize_global_variables == SmpiPrivStrategies::MMAP) &&
201       (static_cast<char*>(buff) >= smpi_data_exe_start) &&
202       (static_cast<char*>(buff) < smpi_data_exe_start + smpi_data_exe_size)) {
203     XBT_DEBUG("Privatization : We are copying from a zone inside global memory... Saving data to temp buffer !");
204     smpi_switch_data_segment(comm->src_proc->iface());
205     tmpbuff = static_cast<void*>(xbt_malloc(buff_size));
206     memcpy_private(tmpbuff, buff, private_blocks);
207   }
208
209   if ((smpi_privatize_global_variables == SmpiPrivStrategies::MMAP) && ((char*)comm->dst_buff >= smpi_data_exe_start) &&
210       ((char*)comm->dst_buff < smpi_data_exe_start + smpi_data_exe_size)) {
211     XBT_DEBUG("Privatization : We are copying to a zone inside global memory - Switch data segment");
212     smpi_switch_data_segment(comm->dst_proc->iface());
213   }
214   XBT_DEBUG("Copying %zu bytes from %p to %p", buff_size, tmpbuff,comm->dst_buff);
215   memcpy_private(comm->dst_buff, tmpbuff, private_blocks);
216
217   if (comm->detached) {
218     // if this is a detached send, the source buffer was duplicated by SMPI
219     // sender to make the original buffer available to the application ASAP
220     xbt_free(buff);
221     //It seems that the request is used after the call there this should be free somewhere else but where???
222     //xbt_free(comm->comm.src_data);// inside SMPI the request is kept inside the user data and should be free
223     comm->src_buff = nullptr;
224   }
225   if (tmpbuff != buff)
226     xbt_free(tmpbuff);
227 }
228
229 void smpi_comm_null_copy_buffer_callback(smx_activity_t comm, void *buff, size_t buff_size)
230 {
231   /* nothing done in this version */
232 }
233
234 static void smpi_check_options()
235 {
236   //check correctness of MPI parameters
237
238   xbt_assert(simgrid::config::get_value<int>("smpi/async-small-thresh") <=
239              simgrid::config::get_value<int>("smpi/send-is-detached-thresh"));
240
241   if (simgrid::config::is_default("smpi/host-speed")) {
242     XBT_INFO("You did not set the power of the host running the simulation.  "
243              "The timings will certainly not be accurate.  "
244              "Use the option \"--cfg=smpi/host-speed:<flops>\" to set its value."
245              "Check http://simgrid.org/simgrid/latest/doc/options.html#options_smpi_bench for more 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   smpi_free_static();
368   if(simgrid::smpi::F2C::lookup() != nullptr)
369     simgrid::smpi::F2C::delete_lookup();
370 }
371
372 static void smpi_init_options(){
373   // return if already called
374   if (smpi_cpu_threshold > -1)
375     return;
376   simgrid::smpi::Colls::set_collectives();
377   simgrid::smpi::Colls::smpi_coll_cleanup_callback = nullptr;
378   smpi_cpu_threshold                               = simgrid::config::get_value<double>("smpi/cpu-threshold");
379   smpi_host_speed                                  = simgrid::config::get_value<double>("smpi/host-speed");
380   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);
381   std::string smpi_privatize_option = simgrid::config::get_value<std::string>("smpi/privatization");
382   if (smpi_privatize_option == "no" || smpi_privatize_option == "0")
383     smpi_privatize_global_variables = SmpiPrivStrategies::NONE;
384   else if (smpi_privatize_option == "yes" || smpi_privatize_option == "1")
385     smpi_privatize_global_variables = SmpiPrivStrategies::DEFAULT;
386   else if (smpi_privatize_option == "mmap")
387     smpi_privatize_global_variables = SmpiPrivStrategies::MMAP;
388   else if (smpi_privatize_option == "dlopen")
389     smpi_privatize_global_variables = SmpiPrivStrategies::DLOPEN;
390   else
391     xbt_die("Invalid value for smpi/privatization: '%s'", smpi_privatize_option.c_str());
392
393   if (not SMPI_switch_data_segment) {
394     XBT_DEBUG("Running without smpi_main(); disable smpi/privatization.");
395     smpi_privatize_global_variables = SmpiPrivStrategies::NONE;
396   }
397 #if !HAVE_WORKING_MMAP
398   if (smpi_privatize_global_variables == SmpiPrivStrategies::MMAP) {
399     XBT_INFO("mmap privatization is broken on this platform, switching to dlopen privatization instead.");
400     smpi_privatize_global_variables = SmpiPrivStrategies::DLOPEN;
401   }
402 #endif
403
404   if (smpi_cpu_threshold < 0)
405     smpi_cpu_threshold = DBL_MAX;
406
407   std::string val = simgrid::config::get_value<std::string>("smpi/shared-malloc");
408   if ((val == "yes") || (val == "1") || (val == "on") || (val == "global")) {
409     smpi_cfg_shared_malloc = SharedMallocType::GLOBAL;
410   } else if (val == "local") {
411     smpi_cfg_shared_malloc = SharedMallocType::LOCAL;
412   } else if ((val == "no") || (val == "0") || (val == "off")) {
413     smpi_cfg_shared_malloc = SharedMallocType::NONE;
414   } else {
415     xbt_die("Invalid value '%s' for option smpi/shared-malloc. Possible values: 'on' or 'global', 'local', 'off'",
416             val.c_str());
417   }
418 }
419
420 typedef std::function<int(int argc, char *argv[])> smpi_entry_point_type;
421 typedef int (* smpi_c_entry_point_type)(int argc, char **argv);
422 typedef void (*smpi_fortran_entry_point_type)();
423
424 static int smpi_run_entry_point(smpi_entry_point_type entry_point, const std::string& executable_path,
425                                 std::vector<std::string> args)
426 {
427   // copy C strings, we need them writable
428   std::vector<char*>* args4argv = new std::vector<char*>(args.size());
429   std::transform(begin(args), end(args), begin(*args4argv), [](const std::string& s) { return xbt_strdup(s.c_str()); });
430
431   // set argv[0] to executable_path
432   xbt_free((*args4argv)[0]);
433   (*args4argv)[0] = xbt_strdup(executable_path.c_str());
434
435 #if !SMPI_IFORT
436   // take a copy of args4argv to keep reference of the allocated strings
437   const std::vector<char*> args2str(*args4argv);
438 #endif
439   int argc = args4argv->size();
440   args4argv->push_back(nullptr);
441   char** argv = args4argv->data();
442
443   simgrid::smpi::ActorExt::init();
444 #if SMPI_IFORT
445   for_rtl_init_ (&argc, argv);
446 #elif SMPI_FLANG
447   __io_set_argc(argc);
448   __io_set_argv(argv);
449 #elif SMPI_GFORTRAN
450   _gfortran_set_args(argc, argv);
451 #endif 
452   int res = entry_point(argc, argv);
453
454 #if SMPI_IFORT
455   for_rtl_finish_ ();
456 #else
457   for (char* s : args2str)
458     xbt_free(s);
459   delete args4argv;
460 #endif
461
462   if (res != 0){
463     XBT_WARN("SMPI process did not return 0. Return value : %d", res);
464     if (smpi_exit_status == 0)
465       smpi_exit_status = res;
466   }
467   return 0;
468 }
469
470
471 // TODO, remove the number of functions involved here
472 static smpi_entry_point_type smpi_resolve_function(void* handle)
473 {
474   smpi_fortran_entry_point_type entry_point_fortran = (smpi_fortran_entry_point_type)dlsym(handle, "user_main_");
475   if (entry_point_fortran != nullptr) {
476     return [entry_point_fortran](int argc, char** argv) {
477       entry_point_fortran();
478       return 0;
479     };
480   }
481
482   smpi_c_entry_point_type entry_point = (smpi_c_entry_point_type)dlsym(handle, "main");
483   if (entry_point != nullptr) {
484     return entry_point;
485   }
486
487   return smpi_entry_point_type();
488 }
489
490 static void smpi_copy_file(std::string src, std::string target, off_t fdin_size)
491 {
492   int fdin = open(src.c_str(), O_RDONLY);
493   xbt_assert(fdin >= 0, "Cannot read from %s. Please make sure that the file exists and is executable.", src.c_str());
494   int fdout = open(target.c_str(), O_CREAT | O_RDWR, S_IRWXU);
495   xbt_assert(fdout >= 0, "Cannot write into %s", target.c_str());
496
497   XBT_DEBUG("Copy %" PRIdMAX " bytes into %s", static_cast<intmax_t>(fdin_size), target.c_str());
498   bool slow_copy = true;
499 #if SG_HAVE_SENDFILE
500   ssize_t sent_size = sendfile(fdout, fdin, NULL, fdin_size);
501   if (sent_size == fdin_size)
502     slow_copy = false;
503   else if (sent_size != -1 || errno != ENOSYS)
504     xbt_die("Error while copying %s: only %zd bytes copied instead of %" PRIdMAX " (errno: %d -- %s)", target.c_str(),
505             sent_size, static_cast<intmax_t>(fdin_size), errno, strerror(errno));
506 #endif
507   if (slow_copy) {
508     const int bufsize = 1024 * 1024 * 4;
509     char buf[bufsize];
510     while (int got = read(fdin, buf, bufsize)) {
511       if (got == -1) {
512         xbt_assert(errno == EINTR, "Cannot read from %s", src.c_str());
513       } else {
514         char* p  = buf;
515         int todo = got;
516         while (int done = write(fdout, p, todo)) {
517           if (done == -1) {
518             xbt_assert(errno == EINTR, "Cannot write into %s", target.c_str());
519           } else {
520             p += done;
521             todo -= done;
522           }
523         }
524       }
525     }
526   }
527   close(fdin);
528   close(fdout);
529 }
530
531 #if not defined(__APPLE__)
532 static int visit_libs(struct dl_phdr_info* info, size_t, void* data)
533 {
534   char* libname = (char*)(data);
535   const char *path = info->dlpi_name;
536   if(strstr(path, libname)){
537     strncpy(libname, path, 512);
538     return 1;
539   }
540   
541   return 0;
542 }
543 #endif
544
545 static void smpi_init_privatization_dlopen(const std::string& executable)
546 {
547   // Prepare the copy of the binary (get its size)
548   struct stat fdin_stat;
549   stat(executable.c_str(), &fdin_stat);
550   off_t fdin_size         = fdin_stat.st_size;
551   static std::size_t rank = 0;
552
553   std::string libnames = simgrid::config::get_value<std::string>("smpi/privatize-libs");
554   if (not libnames.empty()) {
555     // split option
556     std::vector<std::string> privatize_libs;
557     boost::split(privatize_libs, libnames, boost::is_any_of(";"));
558
559     for (auto const& libname : privatize_libs) {
560       // load the library once to add it to the local libs, to get the absolute path
561       void* libhandle = dlopen(libname.c_str(), RTLD_LAZY);
562       // get library name from path
563       char fullpath[512] = {'\0'};
564       strncpy(fullpath, libname.c_str(), 511);
565 #if not defined(__APPLE__)
566       int ret = dl_iterate_phdr(visit_libs, fullpath);
567       if (ret == 0)
568         xbt_die("Can't find a linked %s - check the setting you gave to smpi/privatize-libs", fullpath);
569       else
570         XBT_DEBUG("Extra lib to privatize found : %s", fullpath);
571 #else
572       xbt_die("smpi/privatize-libs is not (yet) compatible with OSX");
573 #endif
574       privatize_libs_paths.push_back(fullpath);
575       dlclose(libhandle);
576     }
577   }
578
579   simix_global->default_function = [executable, fdin_size](std::vector<std::string> args) {
580     return std::function<void()>([executable, fdin_size, args] {
581       // Copy the dynamic library:
582       std::string target_executable =
583           executable + "_" + std::to_string(getpid()) + "_" + std::to_string(rank) + ".so";
584
585       smpi_copy_file(executable, target_executable, fdin_size);
586       // if smpi/privatize-libs is set, duplicate pointed lib and link each executable copy to a different one.
587       std::vector<std::string> target_libs;
588       for (auto const& libpath : privatize_libs_paths) {
589         // if we were given a full path, strip it
590         size_t index = libpath.find_last_of("/\\");
591         std::string libname;
592         if (index != std::string::npos)
593           libname = libpath.substr(index + 1);
594
595         if (not libname.empty()) {
596           // load the library to add it to the local libs, to get the absolute path
597           struct stat fdin_stat2;
598           stat(libpath.c_str(), &fdin_stat2);
599           off_t fdin_size2 = fdin_stat2.st_size;
600
601           // Copy the dynamic library, the new name must be the same length as the old one
602           // just replace the name with 7 digits for the rank and the rest of the name.
603           unsigned int pad = 7;
604           if (libname.length() < pad)
605             pad = libname.length();
606           std::string target_lib =
607               std::string(pad - std::to_string(rank).length(), '0') + std::to_string(rank) + libname.substr(pad);
608           target_libs.push_back(target_lib);
609           XBT_DEBUG("copy lib %s to %s, with size %lld", libpath.c_str(), target_lib.c_str(), (long long)fdin_size2);
610           smpi_copy_file(libpath, target_lib, fdin_size2);
611
612           std::string sedcommand = "sed -i -e 's/" + libname + "/" + target_lib + "/g' " + target_executable;
613           int ret                = system(sedcommand.c_str());
614           if (ret != 0)
615             xbt_die("error while applying sed command %s \n", sedcommand.c_str());
616         }
617       }
618
619       rank++;
620       // Load the copy and resolve the entry point:
621       void* handle    = dlopen(target_executable.c_str(), RTLD_LAZY | RTLD_LOCAL | WANT_RTLD_DEEPBIND);
622       int saved_errno = errno;
623       if (simgrid::config::get_value<bool>("smpi/keep-temps") == false) {
624         unlink(target_executable.c_str());
625         for (const std::string& target_lib : target_libs)
626           unlink(target_lib.c_str());
627       }
628       if (handle == nullptr)
629         xbt_die("dlopen failed: %s (errno: %d -- %s)", dlerror(), saved_errno, strerror(saved_errno));
630       smpi_entry_point_type entry_point = smpi_resolve_function(handle);
631       if (not entry_point)
632         xbt_die("Could not resolve entry point");
633       smpi_run_entry_point(entry_point, executable, args);
634     });
635   };
636 }
637
638 static void smpi_init_privatization_no_dlopen(const std::string& executable)
639 {
640   if (smpi_privatize_global_variables == SmpiPrivStrategies::MMAP)
641     smpi_prepare_global_memory_segment();
642   // Load the dynamic library and resolve the entry point:
643   void* handle = dlopen(executable.c_str(), RTLD_LAZY | RTLD_LOCAL);
644   if (handle == nullptr)
645     xbt_die("dlopen failed for %s: %s (errno: %d -- %s)", executable.c_str(), dlerror(), errno, strerror(errno));
646   smpi_entry_point_type entry_point = smpi_resolve_function(handle);
647   if (not entry_point)
648     xbt_die("main not found in %s", executable.c_str());
649   if (smpi_privatize_global_variables == SmpiPrivStrategies::MMAP)
650     smpi_backup_global_memory_segment();
651
652   // Execute the same entry point for each simulated process:
653   simix_global->default_function = [entry_point, executable](std::vector<std::string> args) {
654     return std::function<void()>(
655         [entry_point, executable, args] { smpi_run_entry_point(entry_point, executable, args); });
656   };
657 }
658
659 int smpi_main(const char* executable, int argc, char* argv[])
660 {
661   srand(SMPI_RAND_SEED);
662
663   if (getenv("SMPI_PRETEND_CC") != nullptr) {
664     /* Hack to ensure that smpicc can pretend to be a simple compiler. Particularly handy to pass it to the
665      * configuration tools */
666     return 0;
667   }
668
669   TRACE_global_init();
670   SIMIX_global_init(&argc, argv);
671
672   SMPI_switch_data_segment = &smpi_switch_data_segment;
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   simgrid::s4u::Host::on_creation.connect(
735       [](simgrid::s4u::Host& host) { host.extension_set(new simgrid::smpi::Host(&host)); });
736
737   smpi_init_options();
738   smpi_global_init();
739   smpi_check_options();
740 }
741
742 void SMPI_finalize(){
743   smpi_global_destroy();
744 }
745
746 void smpi_mpi_init() {
747   smpi_init_fortran_types();
748   if(smpi_init_sleep > 0)
749     simcall_process_sleep(smpi_init_sleep);
750 }