Logo AND Algorithmique Numérique Distribuée

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