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 / checker / 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/Session.hpp"
23 #include "src/mc/checker/Checker.hpp"
24 #include "src/mc/mc_base.h"
25 #include "src/mc/mc_comm_pattern.h"
26 #include "src/mc/mc_exit.h"
27 #include "src/mc/mc_private.h"
28 #include "src/mc/mc_safety.h"
29 #include "src/mc/remote/mc_protocol.h"
30
31 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_main, mc, "Entry point for simgrid-mc");
32
33 static inline
34 char** argvdup(int argc, char** argv)
35 {
36   char** argv_copy = xbt_new(char*, argc+1);
37   std::memcpy(argv_copy, argv, sizeof(char*) * argc);
38   argv_copy[argc] = nullptr;
39   return argv_copy;
40 }
41
42 static
43 std::unique_ptr<simgrid::mc::Checker> createChecker(simgrid::mc::Session& session)
44 {
45   if (_sg_mc_comms_determinism || _sg_mc_send_determinism)
46     return std::unique_ptr<simgrid::mc::Checker>(
47       simgrid::mc::createCommunicationDeterminismChecker(session));
48   else if (!_sg_mc_property_file || _sg_mc_property_file[0] == '\0')
49     return std::unique_ptr<simgrid::mc::Checker>(
50       simgrid::mc::createSafetyChecker(session));
51   else
52     return std::unique_ptr<simgrid::mc::Checker>(
53       simgrid::mc::createLivenessChecker(session));
54 }
55
56 int main(int argc, char** argv)
57 {
58   using simgrid::mc::Session;
59
60   try {
61     if (argc < 2)
62       xbt_die("Missing arguments.\n");
63
64     // Currently, we need this before sg_config_init:
65     _sg_do_model_check = 1;
66
67     // The initialization function can touch argv.
68     // We make a copy of argv before modifying it in order to pass the original
69     // value to the model-checked:
70     char** argv_copy = argvdup(argc, argv);
71     xbt_log_init(&argc, argv);
72     sg_config_init(&argc, argv);
73
74     std::unique_ptr<Session> session =
75       std::unique_ptr<Session>(Session::spawnvp(argv_copy[1], argv_copy+1));
76     free(argv_copy);
77
78     simgrid::mc::session = session.get();
79     std::unique_ptr<simgrid::mc::Checker> checker = createChecker(*session);
80     int res = SIMGRID_MC_EXIT_SUCCESS;
81     try {
82       checker->run();
83     } catch (simgrid::mc::DeadlockError& de) {
84       res = SIMGRID_MC_EXIT_DEADLOCK;
85     } catch (simgrid::mc::TerminationError& te) {
86       res = SIMGRID_MC_EXIT_NON_TERMINATION;
87     } catch (simgrid::mc::LivenessError& le) {
88       res = SIMGRID_MC_EXIT_LIVENESS;
89     }
90     checker = nullptr;
91     session->close();
92     return res;
93   }
94   catch(std::exception& e) {
95     XBT_ERROR("Exception: %s", e.what());
96     return SIMGRID_MC_EXIT_ERROR;
97   }
98   catch(...) {
99     XBT_ERROR("Unknown exception");
100     return SIMGRID_MC_EXIT_ERROR;
101   }
102 }