Logo AND Algorithmique Numérique Distribuée

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