Logo AND Algorithmique Numérique Distribuée

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