Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Comment unused function parameters.
[simgrid.git] / src / mc / mc_base.cpp
1 /* Copyright (c) 2008-2018. 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 <simgrid/config.h>
7
8 #include "mc/mc.h"
9 #include "src/mc/mc_base.h"
10 #include "src/mc/mc_config.hpp"
11 #include "src/mc/mc_forward.hpp"
12 #include "src/mc/mc_replay.hpp"
13 #include "src/simix/smx_private.hpp"
14
15 #include "src/kernel/activity/MutexImpl.hpp"
16
17 #if SIMGRID_HAVE_MC
18 #include "src/mc/ModelChecker.hpp"
19 #include "src/mc/remote/RemoteClient.hpp"
20
21 using simgrid::mc::remote;
22 #endif
23
24 XBT_LOG_NEW_DEFAULT_CATEGORY(mc, "All MC categories");
25
26 int MC_random(int min, int max)
27 {
28 #if SIMGRID_HAVE_MC
29   xbt_assert(mc_model_checker == nullptr);
30 #endif
31   /* TODO, if the MC is disabled we do not really need to make a simcall for this :) */
32   return simcall_mc_random(min, max);
33 }
34
35 namespace simgrid {
36 namespace mc {
37
38 void wait_for_requests()
39 {
40 #if SIMGRID_HAVE_MC
41   xbt_assert(mc_model_checker == nullptr, "This must be called from the client");
42 #endif
43   while (not simix_global->process_to_run.empty()) {
44     SIMIX_process_runall();
45     for (smx_actor_t const& process : simix_global->process_that_ran) {
46       smx_simcall_t req = &process->simcall;
47       if (req->call != SIMCALL_NONE && not simgrid::mc::request_is_visible(req))
48         SIMIX_simcall_handle(req, 0);
49     }
50   }
51 #if SIMGRID_HAVE_MC
52   xbt_dynar_reset(simix_global->actors_vector);
53   for (std::pair<aid_t, smx_actor_t> const& kv : simix_global->process_list) {
54     xbt_dynar_push_as(simix_global->actors_vector, smx_actor_t, kv.second);
55   }
56 #endif
57 }
58
59 /** @brief returns if there this transition can proceed in a finite amount of time
60  *
61  * It is used in the model-checker to not get into self-deadlock where it would execute a never ending transition.
62  *
63  * Only WAIT operations (on comm, on mutex, etc) can ever return false because they could lock the MC exploration.
64  * Wait operations are OK and return true in only two situations:
65  *  - if the wait will succeed immediately (if both peer of the comm are there already or if the mutex is available)
66  *  - if a timeout is provided, because we can fire the timeout if the transition is not ready without blocking in this
67  * transition for ever.
68  *
69  */
70 // Called from both MCer and MCed:
71 bool actor_is_enabled(smx_actor_t actor)
72 {
73 #if SIMGRID_HAVE_MC
74   // If in the MCer, ask the client app since it has all the data
75   if (mc_model_checker != nullptr) {
76     return mc_model_checker->process().actor_is_enabled(actor->pid);
77   }
78 #endif
79
80   // Now, we are in the client app, no need for remote memory reading.
81   smx_simcall_t req = &actor->simcall;
82
83   switch (req->call) {
84     case SIMCALL_NONE:
85       return false;
86
87     case SIMCALL_COMM_WAIT: {
88       /* FIXME: check also that src and dst processes are not suspended */
89       simgrid::kernel::activity::CommImpl* act =
90           static_cast<simgrid::kernel::activity::CommImpl*>(simcall_comm_wait__getraw__comm(req));
91
92       if (act->src_timeout || act->dst_timeout) {
93         /* If it has a timeout it will be always be enabled (regardless of who declared the timeout),
94          * because even if the communication is not ready, it can timeout and won't block. */
95         if (_sg_mc_timeout == 1)
96           return true;
97       }
98       /* On the other hand if it hasn't a timeout, check if the comm is ready.*/
99       else if (act->detached && act->src_proc == nullptr && act->type == SIMIX_COMM_READY)
100         return (act->dst_proc != nullptr);
101       return (act->src_proc && act->dst_proc);
102     }
103
104     case SIMCALL_COMM_WAITANY: {
105       xbt_dynar_t comms = simcall_comm_waitany__get__comms(req);
106       for (unsigned int index = 0; index < comms->used; ++index) {
107         simgrid::kernel::activity::CommImpl* act = xbt_dynar_get_as(comms, index, simgrid::kernel::activity::CommImpl*);
108         if (act->src_proc && act->dst_proc)
109           return true;
110       }
111       return false;
112     }
113
114     case SIMCALL_MUTEX_LOCK: {
115       smx_mutex_t mutex = simcall_mutex_lock__get__mutex(req);
116
117       if (mutex->owner == nullptr)
118         return true;
119       return mutex->owner->pid == req->issuer->pid;
120     }
121
122     case SIMCALL_SEM_ACQUIRE: {
123       static int warned = 0;
124       if (not warned)
125         XBT_INFO("Using semaphore in model-checked code is still experimental. Use at your own risk");
126       warned = 1;
127       return true;
128     }
129
130     case SIMCALL_COND_WAIT: {
131       static int warned = 0;
132       if (not warned)
133         XBT_INFO("Using condition variables in model-checked code is still experimental. Use at your own risk");
134       warned = 1;
135       return true;
136     }
137
138     default:
139       /* The rest of the requests are always enabled */
140       return true;
141   }
142 }
143
144 /* This is the list of requests that are visible from the checker algorithm.
145  * Any other requests are handled right away on the application side.
146  */
147 bool request_is_visible(smx_simcall_t req)
148 {
149 #if SIMGRID_HAVE_MC
150   xbt_assert(mc_model_checker == nullptr, "This should be called from the client side");
151 #endif
152
153   return req->call == SIMCALL_COMM_ISEND || req->call == SIMCALL_COMM_IRECV || req->call == SIMCALL_COMM_WAIT ||
154          req->call == SIMCALL_COMM_WAITANY || req->call == SIMCALL_COMM_TEST || req->call == SIMCALL_COMM_TESTANY ||
155          req->call == SIMCALL_MC_RANDOM || req->call == SIMCALL_MUTEX_LOCK || req->call == SIMCALL_MUTEX_TRYLOCK ||
156          req->call == SIMCALL_MUTEX_UNLOCK;
157 }
158
159 }
160 }
161
162 static int prng_random(int min, int max)
163 {
164   unsigned long output_size = ((unsigned long) max - (unsigned long) min) + 1;
165   unsigned long input_size = (unsigned long) RAND_MAX + 1;
166   unsigned long reject_size = input_size % output_size;
167   unsigned long accept_size = input_size - reject_size; // module*accept_size
168
169   // Use rejection in order to avoid skew
170   unsigned long x;
171   do {
172 #ifndef _WIN32
173     x = (unsigned long) random();
174 #else
175     x = (unsigned long) rand();
176 #endif
177   } while( x >= accept_size );
178   return min + (x % output_size);
179 }
180
181 int simcall_HANDLER_mc_random(smx_simcall_t simcall, int min, int max)
182 {
183   if (not MC_is_active() && MC_record_path.empty())
184     return prng_random(min, max);
185   return simcall->mc_value;
186 }