Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / smpi / internals / smpi_global.cpp
1 /* Copyright (c) 2007-2017. 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 "SmpiHost.hpp"
7 #include "mc/mc.h"
8 #include "private.hpp"
9 #include "simgrid/s4u/Host.hpp"
10 #include "simgrid/s4u/Mailbox.hpp"
11 #include "smpi_coll.hpp"
12 #include "smpi_comm.hpp"
13 #include "smpi_group.hpp"
14 #include "smpi_info.hpp"
15 #include "smpi_process.hpp"
16 #include "src/msg/msg_private.hpp"
17 #include "src/simix/smx_private.hpp"
18 #include "src/surf/surf_interface.hpp"
19 #include "xbt/config.hpp"
20
21 #include <cfloat> /* DBL_MAX */
22 #include <dlfcn.h>
23 #include <fcntl.h>
24 #include <fstream>
25 #include <sys/stat.h>
26
27 #if HAVE_SENDFILE
28 #include <sys/sendfile.h>
29 #endif
30
31 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_kernel, smpi, "Logging specific to SMPI (kernel)");
32 #include <boost/tokenizer.hpp>
33 #include <boost/algorithm/string.hpp> /* trim_right / trim_left */
34
35 #ifndef RTLD_DEEPBIND
36 /* RTLD_DEEPBIND is a bad idea of GNU ld that obviously does not exist on other platforms
37  * See https://www.akkadia.org/drepper/dsohowto.pdf
38  * and https://lists.freebsd.org/pipermail/freebsd-current/2016-March/060284.html
39 */
40 #define RTLD_DEEPBIND 0
41 #endif
42
43 #if HAVE_PAPI
44 #include "papi.h"
45 const char* papi_default_config_name = "default";
46
47 struct papi_process_data {
48   papi_counter_t counter_data;
49   int event_set;
50 };
51
52 #endif
53 std::unordered_map<std::string, double> location2speedup;
54
55 simgrid::smpi::Process **process_data = nullptr;
56 int process_count = 0;
57 int smpi_universe_size = 0;
58 int* index_to_process_data = nullptr;
59 extern double smpi_total_benched_time;
60 xbt_os_timer_t global_timer;
61 /**
62  * Setting MPI_COMM_WORLD to MPI_COMM_UNINITIALIZED (it's a variable)
63  * is important because the implementation of MPI_Comm checks
64  * "this == MPI_COMM_UNINITIALIZED"? If yes, it uses smpi_process()->comm_world()
65  * instead of "this".
66  * This is basically how we only have one global variable but all processes have
67  * different communicators (basically, the one their SMPI instance uses).
68  *
69  * See smpi_comm.cpp and the functions therein for details.
70  */
71 MPI_Comm MPI_COMM_WORLD = MPI_COMM_UNINITIALIZED;
72 MPI_Errhandler *MPI_ERRORS_RETURN = nullptr;
73 MPI_Errhandler *MPI_ERRORS_ARE_FATAL = nullptr;
74 MPI_Errhandler *MPI_ERRHANDLER_NULL = nullptr;
75 // No instance gets manually created; check also the smpirun.in script as
76 // this default name is used there as well (when the <actor> tag is generated).
77 static const char* smpi_default_instance_name = "smpirun";
78 static simgrid::config::Flag<double> smpi_wtime_sleep(
79   "smpi/wtime", "Minimum time to inject inside a call to MPI_Wtime", 0.0);
80 static simgrid::config::Flag<double> smpi_init_sleep(
81   "smpi/init", "Time to inject inside a call to MPI_Init", 0.0);
82
83 void (*smpi_comm_copy_data_callback) (smx_activity_t, void*, size_t) = &smpi_comm_copy_buffer_callback;
84
85 int smpi_process_count()
86 {
87   return process_count;
88 }
89
90 simgrid::smpi::Process* smpi_process()
91 {
92   smx_actor_t me = SIMIX_process_self();
93   if (me == nullptr) // This happens sometimes (eg, when linking against NS3 because it pulls openMPI...)
94     return nullptr;
95   simgrid::msg::ActorExt* msgExt = static_cast<simgrid::msg::ActorExt*>(me->userdata);
96   return static_cast<simgrid::smpi::Process*>(msgExt->data);
97 }
98
99 simgrid::smpi::Process* smpi_process_remote(int index)
100 {
101   return process_data[index_to_process_data[index]];
102 }
103
104 MPI_Comm smpi_process_comm_self(){
105   return smpi_process()->comm_self();
106 }
107
108 void smpi_process_init(int *argc, char ***argv){
109   simgrid::smpi::Process::init(argc, argv);
110 }
111
112 int smpi_process_index(){
113   return smpi_process()->index();
114 }
115
116 void * smpi_process_get_user_data(){
117   return smpi_process()->get_user_data();
118 }
119
120 void smpi_process_set_user_data(void *data){
121   return smpi_process()->set_user_data(data);
122 }
123
124
125 int smpi_global_size()
126 {
127   char *value = getenv("SMPI_GLOBAL_SIZE");
128   xbt_assert(value,"Please set env var SMPI_GLOBAL_SIZE to the expected number of processes.");
129
130   return xbt_str_parse_int(value, "SMPI_GLOBAL_SIZE contains a non-numerical value: %s");
131 }
132
133 void smpi_comm_set_copy_data_callback(void (*callback) (smx_activity_t, void*, size_t))
134 {
135   smpi_comm_copy_data_callback = callback;
136 }
137
138 static void print(std::vector<std::pair<size_t, size_t>> vec) {
139   std::fprintf(stderr, "{");
140   for (auto const& elt : vec) {
141     std::fprintf(stderr, "(0x%zx, 0x%zx),", elt.first, elt.second);
142   }
143   std::fprintf(stderr, "}\n");
144 }
145 static void memcpy_private(void* dest, const void* src, std::vector<std::pair<size_t, size_t>>& private_blocks)
146 {
147   for (auto const& block : private_blocks)
148     memcpy((uint8_t*)dest+block.first, (uint8_t*)src+block.first, block.second-block.first);
149 }
150
151 static void check_blocks(std::vector<std::pair<size_t, size_t>> &private_blocks, size_t buff_size) {
152   for (auto const& block : private_blocks)
153     xbt_assert(block.first <= block.second && block.second <= buff_size, "Oops, bug in shared malloc.");
154 }
155
156 void smpi_comm_copy_buffer_callback(smx_activity_t synchro, void *buff, size_t buff_size)
157 {
158   simgrid::kernel::activity::CommImplPtr comm =
159       boost::dynamic_pointer_cast<simgrid::kernel::activity::CommImpl>(synchro);
160   int src_shared                        = 0;
161   int dst_shared                        = 0;
162   size_t src_offset                     = 0;
163   size_t dst_offset                     = 0;
164   std::vector<std::pair<size_t, size_t>> src_private_blocks;
165   std::vector<std::pair<size_t, size_t>> dst_private_blocks;
166   XBT_DEBUG("Copy the data over");
167   if((src_shared=smpi_is_shared(buff, src_private_blocks, &src_offset))) {
168     XBT_DEBUG("Sender %p is shared. Let's ignore it.", buff);
169     src_private_blocks = shift_and_frame_private_blocks(src_private_blocks, src_offset, buff_size);
170   }
171   else {
172     src_private_blocks.clear();
173     src_private_blocks.push_back(std::make_pair(0, buff_size));
174   }
175   if((dst_shared=smpi_is_shared((char*)comm->dst_buff, dst_private_blocks, &dst_offset))) {
176     XBT_DEBUG("Receiver %p is shared. Let's ignore it.", (char*)comm->dst_buff);
177     dst_private_blocks = shift_and_frame_private_blocks(dst_private_blocks, dst_offset, buff_size);
178   }
179   else {
180     dst_private_blocks.clear();
181     dst_private_blocks.push_back(std::make_pair(0, buff_size));
182   }
183   check_blocks(src_private_blocks, buff_size);
184   check_blocks(dst_private_blocks, buff_size);
185   auto private_blocks = merge_private_blocks(src_private_blocks, dst_private_blocks);
186   check_blocks(private_blocks, buff_size);
187   void* tmpbuff=buff;
188   if ((smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP) && (static_cast<char*>(buff) >= smpi_data_exe_start) &&
189       (static_cast<char*>(buff) < smpi_data_exe_start + smpi_data_exe_size)) {
190     XBT_DEBUG("Privatization : We are copying from a zone inside global memory... Saving data to temp buffer !");
191
192     smpi_switch_data_segment(
193         static_cast<simgrid::smpi::Process*>((static_cast<simgrid::msg::ActorExt*>(comm->src_proc->userdata)->data))
194             ->index());
195     tmpbuff = static_cast<void*>(xbt_malloc(buff_size));
196     memcpy_private(tmpbuff, buff, private_blocks);
197   }
198
199   if ((smpi_privatize_global_variables == SMPI_PRIVATIZE_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(
203         static_cast<simgrid::smpi::Process*>((static_cast<simgrid::msg::ActorExt*>(comm->dst_proc->userdata)->data))
204             ->index());
205   }
206   XBT_DEBUG("Copying %zu bytes from %p to %p", buff_size, tmpbuff,comm->dst_buff);
207   memcpy_private(comm->dst_buff, tmpbuff, private_blocks);
208
209   if (comm->detached) {
210     // if this is a detached send, the source buffer was duplicated by SMPI
211     // sender to make the original buffer available to the application ASAP
212     xbt_free(buff);
213     //It seems that the request is used after the call there this should be free somewhere else but where???
214     //xbt_free(comm->comm.src_data);// inside SMPI the request is kept inside the user data and should be free
215     comm->src_buff = nullptr;
216   }
217   if (tmpbuff != buff)
218     xbt_free(tmpbuff);
219 }
220
221 void smpi_comm_null_copy_buffer_callback(smx_activity_t comm, void *buff, size_t buff_size)
222 {
223   /* nothing done in this version */
224 }
225
226 static void smpi_check_options(){
227   //check correctness of MPI parameters
228
229    xbt_assert(xbt_cfg_get_int("smpi/async-small-thresh") <= xbt_cfg_get_int("smpi/send-is-detached-thresh"));
230
231    if (xbt_cfg_is_default_value("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(xbt_cfg_get_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 process_data != nullptr;
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 = xbt_cfg_get_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   std::map</* computation unit name */ std::string, papi_process_data> units2papi_setup;
280
281   if (not xbt_cfg_get_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 %i",
285                 PAPI_VER_CURRENT);
286
287     typedef boost::tokenizer<boost::char_separator<char>> Tokenizer;
288     boost::char_separator<char> separator_units(";");
289     std::string str = xbt_cfg_get_string("smpi/papi-events");
290     Tokenizer tokens(str, separator_units);
291
292     // Iterate over all the computational units. This could be processes, hosts, threads, ranks... You name it.
293     // I'm not exactly sure what we will support eventually, so I'll leave it at the general term "units".
294     for (auto const& unit_it : tokens) {
295       boost::char_separator<char> separator_events(":");
296       Tokenizer event_tokens(unit_it, separator_events);
297
298       int event_set = PAPI_NULL;
299       if (PAPI_create_eventset(&event_set) != PAPI_OK) {
300         // TODO: Should this let the whole simulation die?
301         XBT_CRITICAL("Could not create PAPI event set during init.");
302       }
303
304       // NOTE: We cannot use a map here, as we must obey the order of the counters
305       // This is important for PAPI: We need to map the values of counters back
306       // to the event_names (so, when PAPI_read() has finished)!
307       papi_counter_t counters2values;
308
309       // Iterate over all counters that were specified for this specific
310       // unit.
311       // Note that we need to remove the name of the unit
312       // (that could also be the "default" value), which always comes first.
313       // Hence, we start at ++(events.begin())!
314       for (Tokenizer::iterator events_it = ++(event_tokens.begin()); events_it != event_tokens.end(); ++events_it) {
315
316         int event_code   = PAPI_NULL;
317         char* event_name = const_cast<char*>((*events_it).c_str());
318         if (PAPI_event_name_to_code(event_name, &event_code) == PAPI_OK) {
319           if (PAPI_add_event(event_set, event_code) != PAPI_OK) {
320             XBT_ERROR("Could not add PAPI event '%s'. Skipping.", event_name);
321             continue;
322           } else {
323             XBT_DEBUG("Successfully added PAPI event '%s' to the event set.", event_name);
324           }
325         } else {
326           XBT_CRITICAL("Could not find PAPI event '%s'. Skipping.", event_name);
327           continue;
328         }
329
330         counters2values.push_back(
331             // We cannot just pass *events_it, as this is of type const basic_string
332             std::make_pair<std::string, long long>(std::string(*events_it), 0));
333       }
334
335       std::string unit_name    = *(event_tokens.begin());
336       papi_process_data config = {.counter_data = std::move(counters2values), .event_set = event_set};
337
338       units2papi_setup.insert(std::make_pair(unit_name, std::move(config)));
339     }
340   }
341 #endif
342
343   if (index_to_process_data == nullptr) {
344     index_to_process_data = new int[SIMIX_process_count()];
345   }
346
347   bool smpirun = 0;
348   if (process_count == 0) { // The program has been dispatched but no other
349                             // SMPI instances have been registered. We're using smpirun.
350     smpirun = true;
351     SMPI_app_instance_register(smpi_default_instance_name, nullptr,
352                                SIMIX_process_count()); // This call has a side effect on process_count...
353     MPI_COMM_WORLD = *smpi_deployment_comm_world(smpi_default_instance_name);
354   }
355   smpi_universe_size = process_count;
356   process_data       = new simgrid::smpi::Process*[process_count];
357   for (int i = 0; i < process_count; i++) {
358     if (smpirun) {
359       process_data[i] = new simgrid::smpi::Process(i, smpi_deployment_finalization_barrier(smpi_default_instance_name));
360       smpi_deployment_register_process(smpi_default_instance_name, i, i);
361     } else {
362       // TODO We can pass a nullptr here because Process::set_data() assigns the
363       // barrier from the instance anyway. This is ugly and should be changed
364       process_data[i] = new simgrid::smpi::Process(i, nullptr);
365     }
366   }
367 }
368
369 void smpi_global_destroy()
370 {
371   smpi_bench_destroy();
372   smpi_shared_destroy();
373   smpi_deployment_cleanup_instances();
374   for (int i = 0, count = smpi_process_count(); i < count; i++) {
375     if(process_data[i]->comm_self()!=MPI_COMM_NULL){
376       simgrid::smpi::Comm::destroy(process_data[i]->comm_self());
377     }
378     if(process_data[i]->comm_intra()!=MPI_COMM_NULL){
379       simgrid::smpi::Comm::destroy(process_data[i]->comm_intra());
380     }
381     xbt_os_timer_free(process_data[i]->timer());
382     xbt_mutex_destroy(process_data[i]->mailboxes_mutex());
383     delete process_data[i];
384   }
385   delete[] process_data;
386   process_data = nullptr;
387
388   if (simgrid::smpi::Colls::smpi_coll_cleanup_callback != nullptr)
389     simgrid::smpi::Colls::smpi_coll_cleanup_callback();
390
391   MPI_COMM_WORLD = MPI_COMM_NULL;
392
393   if (not MC_is_active()) {
394     xbt_os_timer_free(global_timer);
395   }
396
397   xbt_free(index_to_process_data);
398   if(smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP)
399     smpi_destroy_global_memory_segments();
400   smpi_free_static();
401 }
402
403 extern "C" {
404
405 static void smpi_init_logs(){
406
407   /* Connect log categories.  See xbt/log.c */
408
409   XBT_LOG_CONNECT(smpi);  /* Keep this line as soon as possible in this function: xbt_log_appender_file.c depends on it
410                              DO NOT connect this in XBT or so, or it will be useless to xbt_log_appender_file.c */
411   XBT_LOG_CONNECT(instr_smpi);
412   XBT_LOG_CONNECT(smpi_bench);
413   XBT_LOG_CONNECT(smpi_coll);
414   XBT_LOG_CONNECT(smpi_colls);
415   XBT_LOG_CONNECT(smpi_comm);
416   XBT_LOG_CONNECT(smpi_datatype);
417   XBT_LOG_CONNECT(smpi_dvfs);
418   XBT_LOG_CONNECT(smpi_group);
419   XBT_LOG_CONNECT(smpi_host);
420   XBT_LOG_CONNECT(smpi_kernel);
421   XBT_LOG_CONNECT(smpi_mpi);
422   XBT_LOG_CONNECT(smpi_memory);
423   XBT_LOG_CONNECT(smpi_op);
424   XBT_LOG_CONNECT(smpi_pmpi);
425   XBT_LOG_CONNECT(smpi_process);
426   XBT_LOG_CONNECT(smpi_request);
427   XBT_LOG_CONNECT(smpi_replay);
428   XBT_LOG_CONNECT(smpi_rma);
429   XBT_LOG_CONNECT(smpi_shared);
430   XBT_LOG_CONNECT(smpi_utils);
431 }
432 }
433
434 static void smpi_init_options(){
435   // return if already called
436   if (smpi_cpu_threshold > -1)
437     return;
438   simgrid::smpi::Colls::set_collectives();
439   simgrid::smpi::Colls::smpi_coll_cleanup_callback = nullptr;
440   smpi_cpu_threshold                               = xbt_cfg_get_double("smpi/cpu-threshold");
441   smpi_host_speed                                  = xbt_cfg_get_double("smpi/host-speed");
442   std::string smpi_privatize_option                = xbt_cfg_get_string("smpi/privatization");
443   if (smpi_privatize_option == "no" || smpi_privatize_option == "0")
444     smpi_privatize_global_variables = SMPI_PRIVATIZE_NONE;
445   else if (smpi_privatize_option == "yes" || smpi_privatize_option == "1")
446     smpi_privatize_global_variables = SMPI_PRIVATIZE_DEFAULT;
447   else if (smpi_privatize_option == "mmap")
448     smpi_privatize_global_variables = SMPI_PRIVATIZE_MMAP;
449   else if (smpi_privatize_option == "dlopen")
450     smpi_privatize_global_variables = SMPI_PRIVATIZE_DLOPEN;
451   else
452     xbt_die("Invalid value for smpi/privatization: '%s'", smpi_privatize_option.c_str());
453
454 #if defined(__FreeBSD__)
455     if (smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP) {
456       XBT_INFO("Mixing mmap privatization is broken on FreeBSD, switching to dlopen privatization instead.");
457       smpi_privatize_global_variables = SMPI_PRIVATIZE_DLOPEN;
458     }
459 #endif
460
461     if (smpi_cpu_threshold < 0)
462       smpi_cpu_threshold = DBL_MAX;
463
464     const char* val = xbt_cfg_get_string("smpi/shared-malloc").c_str();
465     if (not strcasecmp(val, "yes") || not strcmp(val, "1") || not strcasecmp(val, "on") ||
466         not strcasecmp(val, "global")) {
467       smpi_cfg_shared_malloc = shmalloc_global;
468     } else if (not strcasecmp(val, "local")) {
469       smpi_cfg_shared_malloc = shmalloc_local;
470     } else if (not strcasecmp(val, "no") || not strcmp(val, "0") || not strcasecmp(val, "off")) {
471       smpi_cfg_shared_malloc = shmalloc_none;
472     } else {
473       xbt_die("Invalid value '%s' for option smpi/shared-malloc. Possible values: 'on' or 'global', 'local', 'off'",
474               val);
475     }
476 }
477
478 typedef std::function<int(int argc, char *argv[])> smpi_entry_point_type;
479 typedef int (* smpi_c_entry_point_type)(int argc, char **argv);
480 typedef void (*smpi_fortran_entry_point_type)();
481
482 static int smpi_run_entry_point(smpi_entry_point_type entry_point, std::vector<std::string> args)
483 {
484   char noarg[]   = {'\0'};
485   const int argc = args.size();
486   std::unique_ptr<char*[]> argv(new char*[argc + 1]);
487   for (int i = 0; i != argc; ++i)
488     argv[i] = args[i].empty() ? noarg : &args[i].front();
489   argv[argc] = nullptr;
490
491   int res = entry_point(argc, argv.get());
492   if (res != 0){
493     XBT_WARN("SMPI process did not return 0. Return value : %d", res);
494     smpi_process()->set_return_value(res);
495   }
496   return 0;
497 }
498
499 // TODO, remove the number of functions involved here
500 static smpi_entry_point_type smpi_resolve_function(void* handle)
501 {
502   smpi_fortran_entry_point_type entry_point_fortran = (smpi_fortran_entry_point_type)dlsym(handle, "user_main_");
503   if (entry_point_fortran != nullptr) {
504     return [entry_point_fortran](int argc, char** argv) {
505       smpi_process_init(&argc, &argv);
506       entry_point_fortran();
507       return 0;
508     };
509   }
510
511   smpi_c_entry_point_type entry_point = (smpi_c_entry_point_type)dlsym(handle, "main");
512   if (entry_point != nullptr) {
513     return entry_point;
514   }
515
516   return smpi_entry_point_type();
517 }
518
519 int smpi_main(const char* executable, int argc, char *argv[])
520 {
521   srand(SMPI_RAND_SEED);
522
523   if (getenv("SMPI_PRETEND_CC") != nullptr) {
524     /* Hack to ensure that smpicc can pretend to be a simple compiler. Particularly handy to pass it to the
525      * configuration tools */
526     return 0;
527   }
528
529   TRACE_global_init();
530
531   SIMIX_global_init(&argc, argv);
532   MSG_init(&argc,argv);
533
534   SMPI_switch_data_segment = &smpi_switch_data_segment;
535
536   simgrid::s4u::Host::onCreation.connect([](simgrid::s4u::Host& host) {
537     host.extension_set(new simgrid::smpi::SmpiHost(&host));
538   });
539
540   // parse the platform file: get the host list
541   SIMIX_create_environment(argv[1]);
542   SIMIX_comm_set_copy_data_callback(smpi_comm_copy_buffer_callback);
543
544   smpi_init_options();
545
546   if (smpi_privatize_global_variables == SMPI_PRIVATIZE_DLOPEN) {
547
548     std::string executable_copy = executable;
549
550     // Prepare the copy of the binary (get its size)
551     struct stat fdin_stat;
552     stat(executable_copy.c_str(), &fdin_stat);
553     off_t fdin_size = fdin_stat.st_size;
554     static std::size_t rank = 0;
555
556     simix_global->default_function = [executable_copy, fdin_size](std::vector<std::string> args) {
557       return std::function<void()>([executable_copy, fdin_size, args] {
558
559         // Copy the dynamic library:
560         std::string target_executable = executable_copy
561           + "_" + std::to_string(getpid())
562           + "_" + std::to_string(rank++) + ".so";
563
564         int fdin = open(executable_copy.c_str(), O_RDONLY);
565         xbt_assert(fdin >= 0, "Cannot read from %s", executable_copy.c_str());
566         int fdout = open(target_executable.c_str(), O_CREAT | O_RDWR, S_IRWXU);
567         xbt_assert(fdout >= 0, "Cannot write into %s", target_executable.c_str());
568
569 #if HAVE_SENDFILE
570         ssize_t sent_size = sendfile(fdout, fdin, NULL, fdin_size);
571         xbt_assert(sent_size == fdin_size,
572                    "Error while copying %s: only %zd bytes copied instead of %ld (errno: %d -- %s)",
573                    target_executable.c_str(), sent_size, fdin_size, errno, strerror(errno));
574 #else
575         XBT_VERB("Copy %d bytes into %s", static_cast<int>(fdin_size), target_executable.c_str());
576         const int bufsize = 1024 * 1024 * 4;
577         char buf[bufsize];
578         while (int got = read(fdin, buf, bufsize)) {
579           if (got == -1) {
580             xbt_assert(errno == EINTR, "Cannot read from %s", executable_copy.c_str());
581           } else {
582             char* p  = buf;
583             int todo = got;
584             while (int done = write(fdout, p, todo)) {
585               if (done == -1) {
586                 xbt_assert(errno == EINTR, "Cannot write into %s", target_executable.c_str());
587               } else {
588                 p += done;
589                 todo -= done;
590               }
591             }
592           }
593         }
594 #endif
595         close(fdin);
596         close(fdout);
597
598         // Load the copy and resolve the entry point:
599         void* handle = dlopen(target_executable.c_str(), RTLD_LAZY | RTLD_LOCAL | RTLD_DEEPBIND);
600         int saved_errno = errno;
601         if (xbt_cfg_get_boolean("smpi/keep-temps") == false)
602           unlink(target_executable.c_str());
603         if (handle == nullptr)
604           xbt_die("dlopen failed: %s (errno: %d -- %s)", dlerror(), saved_errno, strerror(saved_errno));
605         smpi_entry_point_type entry_point = smpi_resolve_function(handle);
606         if (not entry_point)
607           xbt_die("Could not resolve entry point");
608
609         smpi_run_entry_point(entry_point, args);
610       });
611     };
612
613   }
614   else {
615
616     // Load the dynamic library and resolve the entry point:
617     void* handle = dlopen(executable, RTLD_LAZY | RTLD_LOCAL | RTLD_DEEPBIND);
618     if (handle == nullptr)
619       xbt_die("dlopen failed for %s: %s (errno: %d -- %s)", executable, dlerror(), errno, strerror(errno));
620     smpi_entry_point_type entry_point = smpi_resolve_function(handle);
621     if (not entry_point)
622       xbt_die("main not found in %s", executable);
623     // TODO, register the executable for SMPI privatization
624
625     // Execute the same entry point for each simulated process:
626     simix_global->default_function = [entry_point](std::vector<std::string> args) {
627       return std::function<void()>([entry_point, args] {
628         smpi_run_entry_point(entry_point, args);
629       });
630     };
631
632   }
633
634   SIMIX_launch_application(argv[2]);
635
636   SMPI_init();
637
638   /* Clean IO before the run */
639   fflush(stdout);
640   fflush(stderr);
641
642   if (MC_is_active()) {
643     MC_run();
644   } else {
645
646     SIMIX_run();
647
648     xbt_os_walltimer_stop(global_timer);
649     if (xbt_cfg_get_boolean("smpi/display-timing")){
650       double global_time = xbt_os_timer_elapsed(global_timer);
651       XBT_INFO("Simulated time: %g seconds. \n\n"
652           "The simulation took %g seconds (after parsing and platform setup)\n"
653           "%g seconds were actual computation of the application",
654           SIMIX_get_clock(), global_time , smpi_total_benched_time);
655
656       if (smpi_total_benched_time/global_time>=0.75)
657       XBT_INFO("More than 75%% of the time was spent inside the application code.\n"
658       "You may want to use sampling functions or trace replay to reduce this.");
659     }
660   }
661   int ret   = 0;
662   for (int i = 0, count = smpi_process_count(); i < count; i++) {
663     if(process_data[i]->return_value()!=0){
664       ret=process_data[i]->return_value();//return first non 0 value
665       break;
666     }
667   }
668   smpi_global_destroy();
669
670   TRACE_end();
671
672   return ret;
673 }
674
675 // Called either directly from the user code, or from the code called by smpirun
676 void SMPI_init(){
677   smpi_init_logs();
678   smpi_init_options();
679   smpi_global_init();
680   smpi_check_options();
681   TRACE_smpi_alloc();
682   simgrid::surf::surfExitCallbacks.connect(TRACE_smpi_release);
683   if(smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP)
684     smpi_backup_global_memory_segment();
685 }
686
687 void SMPI_finalize(){
688   smpi_global_destroy();
689 }
690
691 void smpi_mpi_init() {
692   if(smpi_init_sleep > 0)
693     simcall_process_sleep(smpi_init_sleep);
694 }
695
696 double smpi_mpi_wtime(){
697   double time;
698   if (smpi_process()->initialized() != 0 && smpi_process()->finalized() == 0 && smpi_process()->sampling() == 0) {
699     smpi_bench_end();
700     time = SIMIX_get_clock();
701     // to avoid deadlocks if used as a break condition, such as
702     //     while (MPI_Wtime(...) < time_limit) {
703     //       ....
704     //     }
705     // because the time will not normally advance when only calls to MPI_Wtime
706     // are made -> deadlock (MPI_Wtime never reaches the time limit)
707     if(smpi_wtime_sleep > 0)
708       simcall_process_sleep(smpi_wtime_sleep);
709     smpi_bench_begin();
710   } else {
711     time = SIMIX_get_clock();
712   }
713   return time;
714 }
715