Logo AND Algorithmique Numérique Distribuée

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