Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
28b374d1c78eccf5ad320396f5884c65785a007a
[simgrid.git] / src / smpi / 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 <dlfcn.h>
7 #include <fcntl.h>
8 #include <spawn.h>
9 #include <sys/stat.h>
10 #include <sys/types.h>
11 #include <sys/wait.h>
12
13 #include "mc/mc.h"
14 #include "private.h"
15 #include "private.hpp"
16 #include "simgrid/s4u/Mailbox.hpp"
17 #include "smpi/smpi_shared_malloc.hpp"
18 #include "simgrid/sg_config.h"
19 #include "src/kernel/activity/SynchroComm.hpp"
20 #include "src/mc/mc_record.h"
21 #include "src/mc/mc_replay.h"
22 #include "src/msg/msg_private.h"
23 #include "src/simix/smx_private.h"
24 #include "src/surf/surf_interface.hpp"
25 #include "src/smpi/SmpiHost.hpp"
26 #include "surf/surf.h"
27 #include "xbt/replay.hpp"
28 #include <xbt/config.hpp>
29
30 #include <float.h> /* DBL_MAX */
31 #include <fstream>
32 #include <map>
33 #include <stdint.h>
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <string>
37 #include <utility>
38 #include <vector>
39 #include <memory>
40
41 #if HAVE_SENDFILE
42 #include <sys/sendfile.h>
43 #endif
44
45 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_kernel, smpi, "Logging specific to SMPI (kernel)");
46 #include <boost/tokenizer.hpp>
47 #include <boost/algorithm/string.hpp> /* trim_right / trim_left */
48
49 #ifndef RTLD_DEEPBIND
50 /* RTLD_DEEPBIND is a bad idea of GNU ld that obviously does not exist on other platforms
51  * See https://www.akkadia.org/drepper/dsohowto.pdf
52  * and https://lists.freebsd.org/pipermail/freebsd-current/2016-March/060284.html
53 */
54 #define RTLD_DEEPBIND 0
55 #endif
56
57 /* Mac OSX does not have any header file providing that definition so we have to duplicate it here. Bummers. */
58 extern char** environ; /* we use it in posix_spawnp below */
59
60 #if HAVE_PAPI
61 #include "papi.h"
62 const char* papi_default_config_name = "default";
63
64 struct papi_process_data {
65   papi_counter_t counter_data;
66   int event_set;
67 };
68
69 #endif
70 std::unordered_map<std::string, double> location2speedup;
71
72 simgrid::smpi::Process **process_data = nullptr;
73 int process_count = 0;
74 int smpi_universe_size = 0;
75 int* index_to_process_data = nullptr;
76 extern double smpi_total_benched_time;
77 xbt_os_timer_t global_timer;
78 MPI_Comm MPI_COMM_WORLD = MPI_COMM_UNINITIALIZED;
79 MPI_Errhandler *MPI_ERRORS_RETURN = nullptr;
80 MPI_Errhandler *MPI_ERRORS_ARE_FATAL = nullptr;
81 MPI_Errhandler *MPI_ERRHANDLER_NULL = nullptr;
82 static simgrid::config::Flag<double> smpi_wtime_sleep(
83   "smpi/wtime", "Minimum time to inject inside a call to MPI_Wtime", 0.0);
84 static simgrid::config::Flag<double> smpi_init_sleep(
85   "smpi/init", "Time to inject inside a call to MPI_Init", 0.0);
86
87 void (*smpi_comm_copy_data_callback) (smx_activity_t, void*, size_t) = &smpi_comm_copy_buffer_callback;
88
89
90
91 int smpi_process_count()
92 {
93   return process_count;
94 }
95
96 simgrid::smpi::Process* smpi_process()
97 {
98   simgrid::MsgActorExt* msgExt = static_cast<simgrid::MsgActorExt*>(SIMIX_process_self()->data);
99   return static_cast<simgrid::smpi::Process*>(msgExt->data);
100 }
101
102 simgrid::smpi::Process* smpi_process_remote(int index)
103 {
104   return process_data[index_to_process_data[index]];
105 }
106
107 MPI_Comm smpi_process_comm_self(){
108   return smpi_process()->comm_self();
109 }
110
111 void smpi_process_init(int *argc, char ***argv){
112   simgrid::smpi::Process::init(argc, argv);
113 }
114
115 int smpi_process_index(){
116   return smpi_process()->index();
117 }
118
119
120 int smpi_global_size()
121 {
122   char *value = getenv("SMPI_GLOBAL_SIZE");
123   xbt_assert(value,"Please set env var SMPI_GLOBAL_SIZE to the expected number of processes.");
124
125   return xbt_str_parse_int(value, "SMPI_GLOBAL_SIZE contains a non-numerical value: %s");
126 }
127
128 void smpi_comm_set_copy_data_callback(void (*callback) (smx_activity_t, void*, size_t))
129 {
130   smpi_comm_copy_data_callback = callback;
131 }
132
133 static void print(std::vector<std::pair<size_t, size_t>> vec) {
134   std::fprintf(stderr, "{");
135   for (auto elt : vec) {
136     std::fprintf(stderr, "(0x%zx, 0x%zx),", elt.first, elt.second);
137     }
138     std::fprintf(stderr, "}\n");
139 }
140 static void memcpy_private(void* dest, const void* src, std::vector<std::pair<size_t, size_t>>& private_blocks)
141 {
142   for(auto block : private_blocks) {
143     memcpy((uint8_t*)dest+block.first, (uint8_t*)src+block.first, block.second-block.first);
144   }
145 }
146
147 static void check_blocks(std::vector<std::pair<size_t, size_t>> &private_blocks, size_t buff_size) {
148   for(auto block : private_blocks) {
149     xbt_assert(block.first <= block.second && block.second <= buff_size, "Oops, bug in shared malloc.");
150   }
151 }
152
153 void smpi_comm_copy_buffer_callback(smx_activity_t synchro, void *buff, size_t buff_size)
154 {
155   simgrid::kernel::activity::Comm *comm = dynamic_cast<simgrid::kernel::activity::Comm*>(synchro);
156   int src_shared                        = 0;
157   int dst_shared                        = 0;
158   size_t src_offset                     = 0;
159   size_t dst_offset                     = 0;
160   std::vector<std::pair<size_t, size_t>> src_private_blocks;
161   std::vector<std::pair<size_t, size_t>> dst_private_blocks;
162   XBT_DEBUG("Copy the data over");
163   if((src_shared=smpi_is_shared(buff, src_private_blocks, &src_offset))) {
164     XBT_DEBUG("Sender %p is shared. Let's ignore it.", buff);
165     src_private_blocks = shift_and_frame_private_blocks(src_private_blocks, src_offset, buff_size);
166   }
167   else {
168     src_private_blocks.clear();
169     src_private_blocks.push_back(std::make_pair(0, buff_size));
170   }
171   if((dst_shared=smpi_is_shared((char*)comm->dst_buff, dst_private_blocks, &dst_offset))) {
172     XBT_DEBUG("Receiver %p is shared. Let's ignore it.", (char*)comm->dst_buff);
173     dst_private_blocks = shift_and_frame_private_blocks(dst_private_blocks, dst_offset, buff_size);
174   }
175   else {
176     dst_private_blocks.clear();
177     dst_private_blocks.push_back(std::make_pair(0, buff_size));
178   }
179   check_blocks(src_private_blocks, buff_size);
180   check_blocks(dst_private_blocks, buff_size);
181   auto private_blocks = merge_private_blocks(src_private_blocks, dst_private_blocks);
182   check_blocks(private_blocks, buff_size);
183   void* tmpbuff=buff;
184   if((smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP) && (static_cast<char*>(buff) >= smpi_start_data_exe)
185       && (static_cast<char*>(buff) < smpi_start_data_exe + smpi_size_data_exe )
186     ){
187        XBT_DEBUG("Privatization : We are copying from a zone inside global memory... Saving data to temp buffer !");
188
189        smpi_switch_data_segment(
190            (static_cast<simgrid::smpi::Process*>((static_cast<simgrid::MsgActorExt*>(comm->src_proc->data)->data))->index()));
191        tmpbuff = static_cast<void*>(xbt_malloc(buff_size));
192        memcpy_private(tmpbuff, buff, private_blocks);
193   }
194
195   if((smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP) && ((char*)comm->dst_buff >= smpi_start_data_exe)
196       && ((char*)comm->dst_buff < smpi_start_data_exe + smpi_size_data_exe )){
197        XBT_DEBUG("Privatization : We are copying to a zone inside global memory - Switch data segment");
198        smpi_switch_data_segment(
199            (static_cast<simgrid::smpi::Process*>((static_cast<simgrid::MsgActorExt*>(comm->dst_proc->data)->data))->index()));
200   }
201   XBT_DEBUG("Copying %zu bytes from %p to %p", buff_size, tmpbuff,comm->dst_buff);
202   memcpy_private(comm->dst_buff, tmpbuff, private_blocks);
203
204   if (comm->detached) {
205     // if this is a detached send, the source buffer was duplicated by SMPI
206     // sender to make the original buffer available to the application ASAP
207     xbt_free(buff);
208     //It seems that the request is used after the call there this should be free somewhere else but where???
209     //xbt_free(comm->comm.src_data);// inside SMPI the request is kept inside the user data and should be free
210     comm->src_buff = nullptr;
211   }
212   if(tmpbuff!=buff)xbt_free(tmpbuff);
213
214 }
215
216 void smpi_comm_null_copy_buffer_callback(smx_activity_t comm, void *buff, size_t buff_size)
217 {
218   /* nothing done in this version */
219 }
220
221 static void smpi_check_options(){
222   //check correctness of MPI parameters
223
224    xbt_assert(xbt_cfg_get_int("smpi/async-small-thresh") <= xbt_cfg_get_int("smpi/send-is-detached-thresh"));
225
226    if (xbt_cfg_is_default_value("smpi/host-speed")) {
227      XBT_INFO("You did not set the power of the host running the simulation.  "
228               "The timings will certainly not be accurate.  "
229               "Use the option \"--cfg=smpi/host-speed:<flops>\" to set its value."
230               "Check http://simgrid.org/simgrid/latest/doc/options.html#options_smpi_bench for more information.");
231    }
232
233    xbt_assert(xbt_cfg_get_double("smpi/cpu-threshold") >=0,
234        "The 'smpi/cpu-threshold' option cannot have negative values [anymore]. If you want to discard "
235        "the simulation of any computation, please use 'smpi/simulate-computation:no' instead.");
236 }
237
238 int smpi_enabled() {
239   return process_data != nullptr;
240 }
241
242 void smpi_global_init()
243 {
244   MPI_Group group;
245
246   if (!MC_is_active()) {
247     global_timer = xbt_os_timer_new();
248     xbt_os_walltimer_start(global_timer);
249   }
250
251   if (xbt_cfg_get_string("smpi/comp-adjustment-file")[0] != '\0') { 
252     std::string filename {xbt_cfg_get_string("smpi/comp-adjustment-file")};
253     std::ifstream fstream(filename);
254     if (!fstream.is_open()) {
255       xbt_die("Could not open file %s. Does it exist?", filename.c_str());
256     }
257
258     std::string line;
259     typedef boost::tokenizer< boost::escaped_list_separator<char>> Tokenizer;
260     std::getline(fstream, line); // Skip the header line
261     while (std::getline(fstream, line)) {
262       Tokenizer tok(line);
263       Tokenizer::iterator it  = tok.begin();
264       Tokenizer::iterator end = std::next(tok.begin());
265
266       std::string location = *it;
267       boost::trim(location);
268       location2speedup.insert(std::pair<std::string, double>(location, std::stod(*end)));
269     }
270   }
271
272 #if HAVE_PAPI
273   // This map holds for each computation unit (such as "default" or "process1" etc.)
274   // the configuration as given by the user (counter data as a pair of (counter_name, counter_counter))
275   // and the (computed) event_set.
276   std::map</* computation unit name */ std::string, papi_process_data> units2papi_setup;
277
278   if (xbt_cfg_get_string("smpi/papi-events")[0] != '\0') {
279     if (PAPI_library_init(PAPI_VER_CURRENT) != PAPI_VER_CURRENT)
280       XBT_ERROR("Could not initialize PAPI library; is it correctly installed and linked?"
281                 " Expected version is %i",
282                 PAPI_VER_CURRENT);
283
284     typedef boost::tokenizer<boost::char_separator<char>> Tokenizer;
285     boost::char_separator<char> separator_units(";");
286     std::string str = std::string(xbt_cfg_get_string("smpi/papi-events"));
287     Tokenizer tokens(str, separator_units);
288
289     // Iterate over all the computational units. This could be
290     // processes, hosts, threads, ranks... You name it. I'm not exactly
291     // sure what we will support eventually, so I'll leave it at the
292     // general term "units".
293     for (auto& 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   int smpirun = 0;
343   msg_bar_t finalization_barrier = nullptr;
344   if (process_count == 0){
345     process_count = SIMIX_process_count();
346     smpirun=1;
347     finalization_barrier = MSG_barrier_init(process_count);
348   }
349   smpi_universe_size = process_count;
350   process_data       = new simgrid::smpi::Process*[process_count];
351   for (int i = 0; i < process_count; i++) {
352     process_data[i] = new simgrid::smpi::Process(i, finalization_barrier);
353   }
354   //if the process was launched through smpirun script we generate a global mpi_comm_world
355   //if not, we let MPI_COMM_NULL, and the comm world will be private to each mpi instance
356   if (smpirun) {
357     group = new  simgrid::smpi::Group(process_count);
358     MPI_COMM_WORLD = new  simgrid::smpi::Comm(group, nullptr);
359     MPI_Attr_put(MPI_COMM_WORLD, MPI_UNIVERSE_SIZE, reinterpret_cast<void *>(process_count));
360
361     for (int i = 0; i < process_count; i++)
362       group->set_mapping(i, i);
363   }
364 }
365
366 void smpi_global_destroy()
367 {
368   int count = smpi_process_count();
369
370   smpi_bench_destroy();
371   smpi_shared_destroy();
372   if (MPI_COMM_WORLD != MPI_COMM_UNINITIALIZED){
373       delete MPI_COMM_WORLD->group();
374       MSG_barrier_destroy(process_data[0]->finalization_barrier());
375   }else{
376       smpi_deployment_cleanup_instances();
377   }
378   for (int i = 0; i < count; i++) {
379     if(process_data[i]->comm_self()!=MPI_COMM_NULL){
380       simgrid::smpi::Comm::destroy(process_data[i]->comm_self());
381     }
382     if(process_data[i]->comm_intra()!=MPI_COMM_NULL){
383       simgrid::smpi::Comm::destroy(process_data[i]->comm_intra());
384     }
385     xbt_os_timer_free(process_data[i]->timer());
386     xbt_mutex_destroy(process_data[i]->mailboxes_mutex());
387     delete process_data[i];
388   }
389   delete[] process_data;
390   process_data = nullptr;
391
392   if (MPI_COMM_WORLD != MPI_COMM_UNINITIALIZED){
393     MPI_COMM_WORLD->cleanup_smp();
394     MPI_COMM_WORLD->cleanup_attr<simgrid::smpi::Comm>();
395     if(simgrid::smpi::Colls::smpi_coll_cleanup_callback!=nullptr)
396       simgrid::smpi::Colls::smpi_coll_cleanup_callback();
397     delete MPI_COMM_WORLD;
398   }
399
400   MPI_COMM_WORLD = MPI_COMM_NULL;
401
402   if (!MC_is_active()) {
403     xbt_os_timer_free(global_timer);
404   }
405
406   xbt_free(index_to_process_data);
407   if(smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP)
408     smpi_destroy_global_memory_segments();
409   smpi_free_static();
410 }
411
412 extern "C" {
413
414 static void smpi_init_logs(){
415
416   /* Connect log categories.  See xbt/log.c */
417
418   XBT_LOG_CONNECT(smpi);  /* Keep this line as soon as possible in this function: xbt_log_appender_file.c depends on it
419                              DO NOT connect this in XBT or so, or it will be useless to xbt_log_appender_file.c */
420   XBT_LOG_CONNECT(instr_smpi);
421   XBT_LOG_CONNECT(smpi_bench);
422   XBT_LOG_CONNECT(smpi_coll);
423   XBT_LOG_CONNECT(smpi_colls);
424   XBT_LOG_CONNECT(smpi_comm);
425   XBT_LOG_CONNECT(smpi_datatype);
426   XBT_LOG_CONNECT(smpi_dvfs);
427   XBT_LOG_CONNECT(smpi_group);
428   XBT_LOG_CONNECT(smpi_kernel);
429   XBT_LOG_CONNECT(smpi_mpi);
430   XBT_LOG_CONNECT(smpi_memory);
431   XBT_LOG_CONNECT(smpi_op);
432   XBT_LOG_CONNECT(smpi_pmpi);
433   XBT_LOG_CONNECT(smpi_request);
434   XBT_LOG_CONNECT(smpi_replay);
435   XBT_LOG_CONNECT(smpi_rma);
436   XBT_LOG_CONNECT(smpi_shared);
437   XBT_LOG_CONNECT(smpi_utils);
438 }
439 }
440
441 static void smpi_init_options(){
442     //return if already called
443     if (smpi_cpu_threshold > -1)
444       return;
445     simgrid::smpi::Colls::set_collectives();
446     simgrid::smpi::Colls::smpi_coll_cleanup_callback=nullptr;
447     smpi_cpu_threshold = xbt_cfg_get_double("smpi/cpu-threshold");
448     smpi_host_speed = xbt_cfg_get_double("smpi/host-speed");
449     const char* smpi_privatize_option               = xbt_cfg_get_string("smpi/privatization");
450     if (std::strcmp(smpi_privatize_option, "no") == 0)
451       smpi_privatize_global_variables = SMPI_PRIVATIZE_NONE;
452     else if (std::strcmp(smpi_privatize_option, "yes") == 0)
453       smpi_privatize_global_variables = SMPI_PRIVATIZE_DEFAULT;
454     else if (std::strcmp(smpi_privatize_option, "mmap") == 0)
455       smpi_privatize_global_variables = SMPI_PRIVATIZE_MMAP;
456     else if (std::strcmp(smpi_privatize_option, "dlopen") == 0)
457       smpi_privatize_global_variables = SMPI_PRIVATIZE_DLOPEN;
458
459     // Some compatibility stuff:
460     else if (std::strcmp(smpi_privatize_option, "1") == 0)
461       smpi_privatize_global_variables = SMPI_PRIVATIZE_DEFAULT;
462     else if (std::strcmp(smpi_privatize_option, "0") == 0)
463       smpi_privatize_global_variables = SMPI_PRIVATIZE_NONE;
464
465     else
466       xbt_die("Invalid value for smpi/privatization: '%s'", smpi_privatize_option);
467
468     if (smpi_cpu_threshold < 0)
469       smpi_cpu_threshold = DBL_MAX;
470
471     char* val = xbt_cfg_get_string("smpi/shared-malloc");
472     if (!strcasecmp(val, "yes") || !strcmp(val, "1") || !strcasecmp(val, "on") || !strcasecmp(val, "global")) {
473       smpi_cfg_shared_malloc = shmalloc_global;
474     } else if (!strcasecmp(val, "local")) {
475       smpi_cfg_shared_malloc = shmalloc_local;
476     } else if (!strcasecmp(val, "no") || !strcmp(val, "0") || !strcasecmp(val, "off")) {
477       smpi_cfg_shared_malloc = shmalloc_none;
478     } else {
479       xbt_die("Invalid value '%s' for option smpi/shared-malloc. Possible values: 'on' or 'global', 'local', 'off'",
480               val);
481     }
482 }
483
484 typedef std::function<int(int argc, char *argv[])> smpi_entry_point_type;
485 typedef int (* smpi_c_entry_point_type)(int argc, char **argv);
486 typedef void (*smpi_fortran_entry_point_type)();
487
488 static int smpi_run_entry_point(smpi_entry_point_type entry_point, std::vector<std::string> args)
489 {
490   const int argc = args.size();
491   std::unique_ptr<char*[]> argv(new char*[argc + 1]);
492   for (int i = 0; i != argc; ++i)
493     argv[i] = args[i].empty() ? const_cast<char*>(""): &args[i].front();
494   argv[argc] = nullptr;
495
496   int res = entry_point(argc, argv.get());
497   if (res != 0){
498     XBT_WARN("SMPI process did not return 0. Return value : %d", res);
499     smpi_process()->set_return_value(res);
500   }
501   return 0;
502 }
503
504 // TODO, remove the number of functions involved here
505 static smpi_entry_point_type smpi_resolve_function(void* handle)
506 {
507   smpi_fortran_entry_point_type entry_point_fortran = (smpi_fortran_entry_point_type)dlsym(handle, "user_main_");
508   if (entry_point_fortran != nullptr) {
509     return [entry_point_fortran](int argc, char** argv) {
510       smpi_process_init(&argc, &argv);
511       entry_point_fortran();
512       return 0;
513     };
514   }
515
516   smpi_c_entry_point_type entry_point = (smpi_c_entry_point_type)dlsym(handle, "main");
517   if (entry_point != nullptr) {
518     return entry_point;
519   }
520
521   return smpi_entry_point_type();
522 }
523
524 int smpi_main(const char* executable, int argc, char *argv[])
525 {
526   srand(SMPI_RAND_SEED);
527
528   if (getenv("SMPI_PRETEND_CC") != nullptr) {
529     /* Hack to ensure that smpicc can pretend to be a simple compiler. Particularly handy to pass it to the
530      * configuration tools */
531     return 0;
532   }
533
534   TRACE_global_init(&argc, argv);
535
536   SIMIX_global_init(&argc, argv);
537   MSG_init(&argc,argv);
538
539   SMPI_switch_data_segment = &smpi_switch_data_segment;
540
541   simgrid::s4u::Host::onCreation.connect([](simgrid::s4u::Host& host) {
542     host.extension_set(new simgrid::smpi::SmpiHost(&host));
543   });
544
545   // parse the platform file: get the host list
546   SIMIX_create_environment(argv[1]);
547   SIMIX_comm_set_copy_data_callback(smpi_comm_copy_buffer_callback);
548
549   static std::size_t rank = 0;
550
551   smpi_init_options();
552
553   if (smpi_privatize_global_variables == SMPI_PRIVATIZE_DLOPEN) {
554
555     std::string executable_copy = executable;
556
557     // Prepare the copy of the binary (open the file and get its size)
558     // (fdin will remain open for the whole process execution. That's a sort of leak but we can live with it)
559     int fdin = open(executable_copy.c_str(), O_RDONLY);
560     xbt_assert(fdin >= 0, "Cannot read from %s", executable_copy.c_str());
561     struct stat fdin_stat;
562     fstat(fdin, &fdin_stat);
563     off_t fdin_size = fdin_stat.st_size;
564
565     simix_global->default_function = [executable_copy, fdin, fdin_size](std::vector<std::string> args) {
566       return std::function<void()>([executable_copy, fdin, fdin_size, args] {
567
568         // Copy the dynamic library:
569         std::string target_executable = executable_copy
570           + "_" + std::to_string(getpid())
571           + "_" + std::to_string(rank++) + ".so";
572
573         int fdout = open(target_executable.c_str(), O_CREAT | O_RDWR, S_IRWXU);
574         xbt_assert(fdout >= 0, "Cannot write into %s", target_executable.c_str());
575
576 #if HAVE_SENDFILE
577         off_t offset = 0;
578         sendfile(fdout, fdin, &offset, fdin_size);
579 #else
580         XBT_WARN("Copy %d bytes into %s", static_cast<int>(fdin_size), target_executable.c_str());
581         const int bufsize = 1024 * 1024 * 4;
582         char buf[bufsize];
583         while (int got = read(fdin, buf, bufsize)) {
584           if (got == -1) {
585             xbt_assert(errno == EINTR, "Cannot read from %s", executable_copy.c_str());
586           } else {
587             char* p  = buf;
588             int todo = got;
589             while (int done = write(fdout, p, todo)) {
590               if (done == -1) {
591                 xbt_assert(errno == EINTR, "Cannot write into %s", target_executable.c_str());
592               } else {
593                 p += done;
594                 todo -= done;
595               }
596             }
597           }
598         }
599 #endif
600         close(fdout);
601
602         // Load the copy and resolve the entry point:
603         void* handle = dlopen(target_executable.c_str(), RTLD_LAZY | RTLD_LOCAL | RTLD_DEEPBIND);
604         unlink(target_executable.c_str());
605         if (handle == nullptr)
606           xbt_die("dlopen failed: %s (errno: %d -- %s)", dlerror(), errno, strerror(errno));
607         smpi_entry_point_type entry_point = smpi_resolve_function(handle);
608         if (!entry_point)
609           xbt_die("Could not resolve entry point");
610
611         smpi_run_entry_point(entry_point, args);
612       });
613     };
614
615   }
616   else {
617
618     // Load the dynamic library and resolve the entry point:
619     void* handle = dlopen(executable, RTLD_LAZY | RTLD_LOCAL | RTLD_DEEPBIND);
620     if (handle == nullptr)
621       xbt_die("dlopen failed for %s", executable);
622     smpi_entry_point_type entry_point = smpi_resolve_function(handle);
623     if (!entry_point)
624       xbt_die("main not found in %s", executable);
625     // TODO, register the executable for SMPI privatization
626
627     // Execute the same entry point for each simulated process:
628     simix_global->default_function = [entry_point](std::vector<std::string> args) {
629       return std::function<void()>([entry_point, args] {
630         smpi_run_entry_point(entry_point, args);
631       });
632     };
633
634   }
635
636   SIMIX_launch_application(argv[2]);
637
638   SMPI_init();
639
640   /* Clean IO before the run */
641   fflush(stdout);
642   fflush(stderr);
643
644   if (MC_is_active()) {
645     MC_run();
646   } else {
647   
648     SIMIX_run();
649
650     xbt_os_walltimer_stop(global_timer);
651     if (xbt_cfg_get_boolean("smpi/display-timing")){
652       double global_time = xbt_os_timer_elapsed(global_timer);
653       XBT_INFO("Simulated time: %g seconds. \n\n"
654           "The simulation took %g seconds (after parsing and platform setup)\n"
655           "%g seconds were actual computation of the application",
656           SIMIX_get_clock(), global_time , smpi_total_benched_time);
657           
658       if (smpi_total_benched_time/global_time>=0.75)
659       XBT_INFO("More than 75%% of the time was spent inside the application code.\n"
660       "You may want to use sampling functions or trace replay to reduce this.");
661     }
662   }
663   int count = smpi_process_count();
664   int i, ret=0;
665   for (i = 0; i < count; i++) {
666     if(process_data[i]->return_value()!=0){
667       ret=process_data[i]->return_value();//return first non 0 value
668       break;
669     }
670   }
671   smpi_global_destroy();
672
673   TRACE_end();
674
675   return ret;
676 }
677
678 // Called either directly from the user code, or from the code called by smpirun
679 void SMPI_init(){
680   smpi_init_logs();
681   smpi_init_options();
682   smpi_global_init();
683   smpi_check_options();
684   TRACE_smpi_alloc();
685   simgrid::surf::surfExitCallbacks.connect(TRACE_smpi_release);
686   if(smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP)
687     smpi_initialize_global_memory_segments();
688 }
689
690 void SMPI_finalize(){
691   smpi_global_destroy();
692 }
693
694 void smpi_mpi_init() {
695   if(smpi_init_sleep > 0) 
696     simcall_process_sleep(smpi_init_sleep);
697 }
698
699 double smpi_mpi_wtime(){
700   double time;
701   if (smpi_process()->initialized() != 0 && smpi_process()->finalized() == 0 && smpi_process()->sampling() == 0) {
702     smpi_bench_end();
703     time = SIMIX_get_clock();
704     // to avoid deadlocks if used as a break condition, such as
705     //     while (MPI_Wtime(...) < time_limit) {
706     //       ....
707     //     }
708     // because the time will not normally advance when only calls to MPI_Wtime
709     // are made -> deadlock (MPI_Wtime never reaches the time limit)
710     if(smpi_wtime_sleep > 0) 
711       simcall_process_sleep(smpi_wtime_sleep);
712     smpi_bench_begin();
713   } else {
714     time = SIMIX_get_clock();
715   }
716   return time;
717 }
718