Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / mc / simgrid_mc.cpp
1 /* Copyright (c) 2015. 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 <exception>
8
9 #include <cstdlib>
10 #include <cstdio>
11 #include <cstring>
12
13 #include <utility>
14
15 #include <unistd.h>
16
17 #include <xbt/log.h>
18
19 #include "simgrid/sg_config.h"
20 #include "src/xbt_modinter.h"
21
22 #include "src/mc/mc_base.h"
23 #include "src/mc/mc_private.h"
24 #include "src/mc/mc_protocol.h"
25 #include "src/mc/mc_safety.h"
26 #include "src/mc/mc_comm_pattern.h"
27 #include "src/mc/LivenessChecker.hpp"
28 #include "src/mc/mc_exit.h"
29 #include "src/mc/Session.hpp"
30 #include "src/mc/Checker.hpp"
31 #include "src/mc/CommunicationDeterminismChecker.hpp"
32 #include "src/mc/SafetyChecker.hpp"
33
34 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_main, mc, "Entry point for simgrid-mc");
35
36 static inline
37 char** argvdup(int argc, char** argv)
38 {
39   char** argv_copy = xbt_new(char*, argc+1);
40   std::memcpy(argv_copy, argv, sizeof(char*) * argc);
41   argv_copy[argc] = nullptr;
42   return argv_copy;
43 }
44
45 static
46 std::unique_ptr<simgrid::mc::Checker> createChecker(simgrid::mc::Session& session)
47 {
48   using simgrid::mc::Session;
49   using simgrid::mc::FunctionalChecker;
50
51   std::function<int(Session& session)> code;
52   if (_sg_mc_comms_determinism || _sg_mc_send_determinism)
53     return std::unique_ptr<simgrid::mc::Checker>(
54       new simgrid::mc::CommunicationDeterminismChecker(session));
55   else if (!_sg_mc_property_file || _sg_mc_property_file[0] == '\0')
56     return std::unique_ptr<simgrid::mc::Checker>(
57       new simgrid::mc::SafetyChecker(session));
58   else
59     return std::unique_ptr<simgrid::mc::Checker>(
60       new simgrid::mc::LivenessChecker(session));
61
62   return std::unique_ptr<simgrid::mc::Checker>(
63     new FunctionalChecker(session, std::move(code)));
64 }
65
66 int main(int argc, char** argv)
67 {
68   using simgrid::mc::Session;
69
70   try {
71     if (argc < 2)
72       xbt_die("Missing arguments.\n");
73
74     // Currently, we need this before sg_config_init:
75     _sg_do_model_check = 1;
76     mc_mode = MC_MODE_SERVER;
77
78     // The initialisation function can touch argv.
79     // We make a copy of argv before modifying it in order to pass the original
80     // value to the model-checked:
81     char** argv_copy = argvdup(argc, argv);
82     xbt_log_init(&argc, argv);
83     sg_config_init(&argc, argv);
84
85     std::unique_ptr<Session> session =
86       std::unique_ptr<Session>(Session::spawnvp(argv_copy[1], argv_copy+1));
87     free(argv_copy);
88
89     simgrid::mc::session = session.get();
90     std::unique_ptr<simgrid::mc::Checker> checker = createChecker(*session);
91     int res = checker->run();
92     session->close();
93     return res;
94   }
95   catch(std::exception& e) {
96     XBT_ERROR("Exception: %s", e.what());
97     return SIMGRID_MC_EXIT_ERROR;
98   }
99   catch(...) {
100     XBT_ERROR("Unknown exception");
101     return SIMGRID_MC_EXIT_ERROR;
102   }
103 }