Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
48a199419867f1f6a48444cd50d5de9c3dd3b6b7
[simgrid.git] / src / mc / checker / simgrid_mc.cpp
1 /* Copyright (c) 2015-2019. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "simgrid/sg_config.hpp"
8 #include "src/smpi/include/smpi_config.hpp"
9 #include "src/mc/Session.hpp"
10 #include "src/mc/checker/Checker.hpp"
11 #include "src/mc/mc_config.hpp"
12 #include "src/mc/mc_exit.hpp"
13
14 #if HAVE_SMPI
15 #include "smpi/smpi.h"
16 #endif
17
18 #include <cstring>
19 #include <memory>
20 #include <unistd.h>
21
22 static inline
23 char** argvdup(int argc, char** argv)
24 {
25   char** argv_copy = new char*[argc + 1];
26   std::memcpy(argv_copy, argv, sizeof(char*) * argc);
27   argv_copy[argc] = nullptr;
28   return argv_copy;
29 }
30
31 static std::unique_ptr<simgrid::mc::Checker> create_checker(simgrid::mc::Session& session)
32 {
33   if (_sg_mc_comms_determinism || _sg_mc_send_determinism)
34     return std::unique_ptr<simgrid::mc::Checker>(simgrid::mc::createCommunicationDeterminismChecker(session));
35   else if (_sg_mc_property_file.get().empty())
36     return std::unique_ptr<simgrid::mc::Checker>(simgrid::mc::createSafetyChecker(session));
37   else
38     return std::unique_ptr<simgrid::mc::Checker>(simgrid::mc::createLivenessChecker(session));
39 }
40
41 int main(int argc, char** argv)
42 {
43   if (argc < 2)
44     xbt_die("Missing arguments.\n");
45
46   // Currently, we need this before sg_config_init:
47   _sg_do_model_check = 1;
48
49   // The initialization function can touch argv.
50   // We make a copy of argv before modifying it in order to pass the original
51   // value to the model-checked:
52   char** argv_copy = argvdup(argc, argv);
53   xbt_log_init(&argc, argv);
54 #if HAVE_SMPI
55   smpi_init_options();//only performed once
56 #endif
57   sg_config_init(&argc, argv);
58   simgrid::mc::session = new simgrid::mc::Session([argv_copy] { execvp(argv_copy[1], argv_copy + 1); });
59   delete[] argv_copy;
60
61   std::unique_ptr<simgrid::mc::Checker> checker = create_checker(*simgrid::mc::session);
62   int res                                       = SIMGRID_MC_EXIT_SUCCESS;
63   try {
64     checker->run();
65   } catch (const simgrid::mc::DeadlockError&) {
66     res = SIMGRID_MC_EXIT_DEADLOCK;
67   } catch (const simgrid::mc::TerminationError&) {
68     res = SIMGRID_MC_EXIT_NON_TERMINATION;
69   } catch (const simgrid::mc::LivenessError&) {
70     res = SIMGRID_MC_EXIT_LIVENESS;
71   }
72   checker = nullptr;
73   simgrid::mc::session->close();
74   return res;
75 }