Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Rework SMPI initialization to handle argc and argv earlier than in MPI_Init when...
[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 Actor::self()->get_impl()->get_user_data();
128 }
129
130 void smpi_process_set_user_data(void *data){
131   Actor::self()->get_impl()->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   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   char ** argvptr=argv.get();
426
427   simgrid::smpi::ActorExt::init(&argc, &argvptr);
428
429   int res = entry_point(argc, argvptr);
430   if (res != 0){
431     XBT_WARN("SMPI process did not return 0. Return value : %d", res);
432     if (smpi_exit_status == 0)
433       smpi_exit_status = res;
434   }
435   return 0;
436 }
437
438
439 // TODO, remove the number of functions involved here
440 static smpi_entry_point_type smpi_resolve_function(void* handle)
441 {
442   smpi_fortran_entry_point_type entry_point_fortran = (smpi_fortran_entry_point_type)dlsym(handle, "user_main_");
443   if (entry_point_fortran != nullptr) {
444     return [entry_point_fortran](int argc, char** argv) {
445       entry_point_fortran();
446       return 0;
447     };
448   }
449
450   smpi_c_entry_point_type entry_point = (smpi_c_entry_point_type)dlsym(handle, "main");
451   if (entry_point != nullptr) {
452     return entry_point;
453   }
454
455   return smpi_entry_point_type();
456 }
457
458 static void smpi_copy_file(std::string src, std::string target, off_t fdin_size)
459 {
460   int fdin = open(src.c_str(), O_RDONLY);
461   xbt_assert(fdin >= 0, "Cannot read from %s. Please make sure that the file exists and is executable.", src.c_str());
462   int fdout = open(target.c_str(), O_CREAT | O_RDWR, S_IRWXU);
463   xbt_assert(fdout >= 0, "Cannot write into %s", target.c_str());
464
465   XBT_DEBUG("Copy %ld bytes into %s", static_cast<long>(fdin_size), target.c_str());
466 #if HAVE_SENDFILE
467   ssize_t sent_size = sendfile(fdout, fdin, NULL, fdin_size);
468   xbt_assert(sent_size == fdin_size, "Error while copying %s: only %zd bytes copied instead of %ld (errno: %d -- %s)",
469              target.c_str(), sent_size, fdin_size, errno, strerror(errno));
470 #else
471   const int bufsize = 1024 * 1024 * 4;
472   char buf[bufsize];
473   while (int got = read(fdin, buf, bufsize)) {
474     if (got == -1) {
475       xbt_assert(errno == EINTR, "Cannot read from %s", src.c_str());
476     } else {
477       char* p  = buf;
478       int todo = got;
479       while (int done = write(fdout, p, todo)) {
480         if (done == -1) {
481           xbt_assert(errno == EINTR, "Cannot write into %s", target.c_str());
482         } else {
483           p += done;
484           todo -= done;
485         }
486       }
487     }
488   }
489 #endif
490   close(fdin);
491   close(fdout);
492 }
493
494 #if not defined(__APPLE__)
495 static int visit_libs(struct dl_phdr_info* info, size_t, void* data)
496 {
497   char* libname = (char*)(data);
498   const char *path = info->dlpi_name;
499   if(strstr(path, libname)){
500     strncpy(libname, path, 512);
501     return 1;
502   }
503   
504   return 0;
505 }
506 #endif
507
508 static void smpi_init_privatization_dlopen(std::string executable)
509 {
510   // Prepare the copy of the binary (get its size)
511   struct stat fdin_stat;
512   stat(executable.c_str(), &fdin_stat);
513   off_t fdin_size         = fdin_stat.st_size;
514   static std::size_t rank = 0;
515
516   std::string libnames = simgrid::config::get_value<std::string>("smpi/privatize-libs");
517   if (not libnames.empty()) {
518     // split option
519     std::vector<std::string> privatize_libs;
520     boost::split(privatize_libs, libnames, boost::is_any_of(";"));
521
522     for (auto const& libname : privatize_libs) {
523       // load the library once to add it to the local libs, to get the absolute path
524       void* libhandle = dlopen(libname.c_str(), RTLD_LAZY);
525       // get library name from path
526       char fullpath[512] = {'\0'};
527       strcpy(fullpath, libname.c_str());
528 #if not defined(__APPLE__)
529       int ret = dl_iterate_phdr(visit_libs, fullpath);
530       if (ret == 0)
531         xbt_die("Can't find a linked %s - check the setting you gave to smpi/privatize-libs", fullpath);
532       else
533         XBT_DEBUG("Extra lib to privatize found : %s", fullpath);
534 #else
535       xbt_die("smpi/privatize-libs is not (yet) compatible with OSX");
536 #endif
537       privatize_libs_paths.push_back(fullpath);
538       dlclose(libhandle);
539     }
540   }
541
542   simix_global->default_function = [executable, fdin_size](std::vector<std::string> args) {
543     return std::function<void()>([executable, fdin_size, args] {
544
545       // Copy the dynamic library:
546       std::string target_executable =
547           executable + "_" + std::to_string(getpid()) + "_" + std::to_string(rank) + ".so";
548
549       smpi_copy_file(executable, target_executable, fdin_size);
550       // if smpi/privatize-libs is set, duplicate pointed lib and link each executable copy to a different one.
551       std::string target_lib;
552       for (auto const& libpath : privatize_libs_paths) {
553         // if we were given a full path, strip it
554         size_t index = libpath.find_last_of("/\\");
555         std::string libname;
556         if (index != std::string::npos)
557           libname = libpath.substr(index + 1);
558
559         if (not libname.empty()) {
560           // load the library to add it to the local libs, to get the absolute path
561           struct stat fdin_stat2;
562           stat(libpath.c_str(), &fdin_stat2);
563           off_t fdin_size2 = fdin_stat2.st_size;
564
565           // Copy the dynamic library, the new name must be the same length as the old one
566           // just replace the name with 7 digits for the rank and the rest of the name.
567           unsigned int pad = 7;
568           if (libname.length() < pad)
569             pad = libname.length();
570           target_lib =
571               std::string(pad - std::to_string(rank).length(), '0') + std::to_string(rank) + libname.substr(pad);
572           XBT_DEBUG("copy lib %s to %s, with size %lld", libpath.c_str(), target_lib.c_str(), (long long)fdin_size2);
573           smpi_copy_file(libpath, target_lib, fdin_size2);
574
575           std::string sedcommand = "sed -i -e 's/" + libname + "/" + target_lib + "/g' " + target_executable;
576           int ret                = system(sedcommand.c_str());
577           if (ret != 0)
578             xbt_die("error while applying sed command %s \n", sedcommand.c_str());
579         }
580       }
581
582       rank++;
583       // Load the copy and resolve the entry point:
584       void* handle    = dlopen(target_executable.c_str(), RTLD_LAZY | RTLD_LOCAL | RTLD_DEEPBIND);
585       int saved_errno = errno;
586       if (simgrid::config::get_value<bool>("smpi/keep-temps") == false) {
587         unlink(target_executable.c_str());
588         if (not target_lib.empty())
589           unlink(target_lib.c_str());
590       }
591       if (handle == nullptr)
592         xbt_die("dlopen failed: %s (errno: %d -- %s)", dlerror(), saved_errno, strerror(saved_errno));
593       smpi_entry_point_type entry_point = smpi_resolve_function(handle);
594       if (not entry_point)
595         xbt_die("Could not resolve entry point");
596       smpi_run_entry_point(entry_point, args);
597     });
598   };
599 }
600
601 static void smpi_init_privatization_no_dlopen(std::string executable)
602 {
603   if (smpi_privatize_global_variables == SmpiPrivStrategies::MMAP)
604     smpi_prepare_global_memory_segment();
605   // Load the dynamic library and resolve the entry point:
606   void* handle = dlopen(executable.c_str(), RTLD_LAZY | RTLD_LOCAL);
607   if (handle == nullptr)
608     xbt_die("dlopen failed for %s: %s (errno: %d -- %s)", executable.c_str(), dlerror(), errno, strerror(errno));
609   smpi_entry_point_type entry_point = smpi_resolve_function(handle);
610   if (not entry_point)
611     xbt_die("main not found in %s", executable.c_str());
612   if (smpi_privatize_global_variables == SmpiPrivStrategies::MMAP)
613     smpi_backup_global_memory_segment();
614
615   // Execute the same entry point for each simulated process:
616   simix_global->default_function = [entry_point](std::vector<std::string> args) {
617     return std::function<void()>([entry_point, args] { smpi_run_entry_point(entry_point, args); });
618   };
619 }
620
621 int smpi_main(const char* executable, int argc, char* argv[])
622 {
623   srand(SMPI_RAND_SEED);
624
625   if (getenv("SMPI_PRETEND_CC") != nullptr) {
626     /* Hack to ensure that smpicc can pretend to be a simple compiler. Particularly handy to pass it to the
627      * configuration tools */
628     return 0;
629   }
630
631   TRACE_global_init();
632   SIMIX_global_init(&argc, argv);
633
634   SMPI_switch_data_segment = &smpi_switch_data_segment;
635
636   // TODO This will not be executed in the case where smpi_main is not called,
637   // e.g., not for smpi_msg_masterslave. This should be moved to another location
638   // that is always called -- maybe close to Actor::on_creation?
639   simgrid::s4u::Host::on_creation.connect(
640       [](simgrid::s4u::Host& host) { host.extension_set(new simgrid::smpi::Host(&host)); });
641
642   // parse the platform file: get the host list
643   simgrid::s4u::Engine::get_instance()->load_platform(argv[1]);
644   SIMIX_comm_set_copy_data_callback(smpi_comm_copy_buffer_callback);
645
646   smpi_init_options();
647   if (smpi_privatize_global_variables == SmpiPrivStrategies::DLOPEN)
648     smpi_init_privatization_dlopen(executable);
649   else
650     smpi_init_privatization_no_dlopen(executable);
651
652   SMPI_init();
653   simgrid::s4u::Engine::get_instance()->load_deployment(argv[2]);
654   SMPI_app_instance_register(smpi_default_instance_name.c_str(), nullptr,
655                              process_data.size()); // This call has a side effect on process_count...
656   MPI_COMM_WORLD = *smpi_deployment_comm_world(smpi_default_instance_name);
657   smpi_universe_size = process_count;
658
659
660   /* Clean IO before the run */
661   fflush(stdout);
662   fflush(stderr);
663
664   if (MC_is_active()) {
665     MC_run();
666   } else {
667
668     SIMIX_run();
669
670     xbt_os_walltimer_stop(global_timer);
671     if (simgrid::config::get_value<bool>("smpi/display-timing")) {
672       double global_time = xbt_os_timer_elapsed(global_timer);
673       XBT_INFO("Simulated time: %g seconds. \n\n"
674           "The simulation took %g seconds (after parsing and platform setup)\n"
675           "%g seconds were actual computation of the application",
676           SIMIX_get_clock(), global_time , smpi_total_benched_time);
677
678       if (smpi_total_benched_time/global_time>=0.75)
679       XBT_INFO("More than 75%% of the time was spent inside the application code.\n"
680       "You may want to use sampling functions or trace replay to reduce this.");
681     }
682   }
683   smpi_global_destroy();
684
685   return smpi_exit_status;
686 }
687
688 // Called either directly from the user code, or from the code called by smpirun
689 void SMPI_init(){
690   simgrid::s4u::Actor::on_creation.connect([](simgrid::s4u::ActorPtr actor) {
691     if (not actor->is_daemon()) {
692       process_data.insert({actor, new simgrid::smpi::ActorExt(actor, nullptr)});
693     }
694   });
695   simgrid::s4u::Actor::on_destruction.connect([](simgrid::s4u::ActorPtr actor) {
696     auto it = process_data.find(actor);
697     if (it != process_data.end()) {
698       delete it->second;
699       process_data.erase(it);
700     }
701   });
702
703   smpi_init_options();
704   smpi_global_init();
705   smpi_check_options();
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