Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove function calls with side effects from xbt_assert.
[simgrid.git] / src / mc / Session.cpp
1 /* Copyright (c) 2015-2021. 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 "src/mc/Session.hpp"
7 #include "src/mc/checker/Checker.hpp"
8 #include "src/mc/mc_config.hpp"
9 #include "src/internal_config.h" // HAVE_SMPI
10 #if HAVE_SMPI
11 #include "smpi/smpi.h"
12 #endif
13 #include "src/mc/mc_private.hpp"
14 #include "src/mc/mc_state.hpp"
15 #include "xbt/log.h"
16 #include "xbt/system_error.hpp"
17
18 #include <array>
19 #include <memory>
20 #include <string>
21
22 #include <fcntl.h>
23 #ifdef __linux__
24 #include <sys/prctl.h>
25 #endif
26
27 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_Session, mc, "Model-checker session");
28
29 namespace simgrid {
30 namespace mc {
31
32 template <class Code> void run_child_process(int socket, Code code)
33 {
34   /* On startup, simix_global_init() calls simgrid::mc::Client::initialize(), which checks whether the MC_ENV_SOCKET_FD
35    * env variable is set. If so, MC mode is assumed, and the client is setup from its side
36    */
37
38 #ifdef __linux__
39   // Make sure we do not outlive our parent
40   sigset_t mask;
41   sigemptyset (&mask);
42   int sigprocmask_res = sigprocmask(SIG_SETMASK, &mask, nullptr);
43   xbt_assert(sigprocmask_res >= 0, "Could not unblock signals");
44   int prctl_res = prctl(PR_SET_PDEATHSIG, SIGHUP);
45   xbt_assert(prctl_res == 0, "Could not PR_SET_PDEATHSIG");
46 #endif
47
48   // Remove CLOEXEC to pass the socket to the application
49   int fdflags   = fcntl(socket, F_GETFD, 0);
50   int fcntl_res = fdflags != -1 ? fcntl(socket, F_SETFD, fdflags & ~FD_CLOEXEC) : -1;
51   xbt_assert(fcntl_res != -1, "Could not remove CLOEXEC for socket");
52
53   // Disable lazy relocation in the model-checked process to prevent the application from
54   // modifying its .got.plt during snapshot.
55   setenv("LC_BIND_NOW", "1", 1);
56
57   setenv(MC_ENV_SOCKET_FD, std::to_string(socket).c_str(), 1);
58
59   code();
60 }
61
62 Session::Session(const std::function<void()>& code)
63 {
64 #if HAVE_SMPI
65   smpi_init_options();//only performed once
66   xbt_assert(smpi_cfg_privatization() != SmpiPrivStrategies::MMAP,
67              "Please use the dlopen privatization schema when model-checking SMPI code");
68 #endif
69
70   // Create an AF_LOCAL socketpair used for exchanging messages
71   // between the model-checker process (ourselves) and the model-checked
72   // process:
73   int sockets[2];
74   int res = socketpair(AF_LOCAL, SOCK_SEQPACKET | SOCK_CLOEXEC, 0, sockets);
75   xbt_assert(res != -1, "Could not create socketpair");
76
77   pid_t pid = fork();
78   xbt_assert(pid >= 0, "Could not fork model-checked process");
79
80   if (pid == 0) { // Child
81     ::close(sockets[1]);
82     run_child_process(sockets[0], code);
83     DIE_IMPOSSIBLE;
84   }
85
86   // Parent (model-checker):
87   ::close(sockets[0]);
88
89   xbt_assert(mc_model_checker == nullptr, "Did you manage to start the MC twice in this process?");
90
91   auto process   = std::make_unique<simgrid::mc::RemoteProcess>(pid);
92   model_checker_ = std::make_unique<simgrid::mc::ModelChecker>(std::move(process), sockets[1]);
93
94   mc_model_checker = model_checker_.get();
95   model_checker_->start();
96 }
97
98 Session::~Session()
99 {
100   this->close();
101 }
102
103 /** The application must be stopped. */
104 void Session::take_initial_snapshot()
105 {
106   xbt_assert(initial_snapshot_ == nullptr);
107   model_checker_->wait_for_requests();
108   initial_snapshot_ = std::make_shared<simgrid::mc::Snapshot>(0);
109 }
110
111 void Session::execute(Transition const& transition) const
112 {
113   model_checker_->handle_simcall(transition);
114   model_checker_->wait_for_requests();
115 }
116
117 void Session::restore_initial_state() const
118 {
119   this->initial_snapshot_->restore(&model_checker_->get_remote_process());
120 }
121
122 void Session::log_state() const
123 {
124   model_checker_->getChecker()->log_state();
125
126   if (not _sg_mc_dot_output_file.get().empty()) {
127     fprintf(dot_output, "}\n");
128     fclose(dot_output);
129   }
130   if (getenv("SIMGRID_MC_SYSTEM_STATISTICS")){
131     int ret=system("free");
132     if (ret != 0)
133       XBT_WARN("Call to system(free) did not return 0, but %d", ret);
134   }
135 }
136
137 void Session::close()
138 {
139   initial_snapshot_ = nullptr;
140   if (model_checker_) {
141     model_checker_->shutdown();
142     model_checker_   = nullptr;
143     mc_model_checker = nullptr;
144   }
145 }
146
147 bool Session::actor_is_enabled(aid_t pid) const
148 {
149   s_mc_message_actor_enabled_t msg{};
150   msg.type = simgrid::mc::MessageType::ACTOR_ENABLED;
151   msg.aid  = pid;
152   model_checker_->channel().send(msg);
153   std::array<char, MC_MESSAGE_LENGTH> buff;
154   ssize_t received = model_checker_->channel().receive(buff.data(), buff.size(), true);
155   xbt_assert(received == sizeof(s_mc_message_int_t), "Unexpected size in answer to ACTOR_ENABLED");
156   return ((s_mc_message_int_t*)buff.data())->value;
157 }
158
159 simgrid::mc::Session* session_singleton;
160 }
161 }