Logo AND Algorithmique Numérique Distribuée

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