Logo AND Algorithmique Numérique Distribuée

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