Logo AND Algorithmique Numérique Distribuée

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