Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / src / mc / mc_base.cpp
1 /* Copyright (c) 2008-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 <cassert>
8
9 #include <simgrid_config.h>
10
11 #include <xbt/log.h>
12 #include <xbt/asserts.h>
13 #include <xbt/dynar.h>
14
15 #include <simgrid/simix.h>
16
17 #include "src/mc/mc_base.h"
18 #include "src/simix/smx_private.h"
19 #include "src/mc/mc_replay.h"
20 #include "mc/mc.h"
21 #include "src/mc/mc_protocol.h"
22
23 #include "src/simix/Synchro.h"
24 #include "src/simix/SynchroIo.hpp"
25 #include "src/simix/SynchroComm.hpp"
26 #include "src/simix/SynchroRaw.hpp"
27 #include "src/simix/SynchroSleep.hpp"
28 #include "src/simix/SynchroExec.hpp"
29
30 #if HAVE_MC
31 #include "src/mc/mc_request.h"
32 #include "src/mc/Process.hpp"
33 #include "src/mc/ModelChecker.hpp"
34 #include "src/mc/mc_smx.h"
35 #endif
36
37 #if HAVE_MC
38 using simgrid::mc::remote;
39 #endif
40
41 XBT_LOG_NEW_CATEGORY(mc, "All MC categories");
42
43 int MC_random(int min, int max)
44 {
45 #if HAVE_MC
46   xbt_assert(mc_model_checker == nullptr);
47   /* TODO, if the MC is disabled we do not really need to make a simcall for
48    * this :) */
49 #endif
50   return simcall_mc_random(min, max);
51 }
52
53 namespace simgrid {
54 namespace mc {
55
56 void wait_for_requests(void)
57 {
58 #if HAVE_MC
59   xbt_assert(mc_model_checker == nullptr);
60 #endif
61
62   smx_process_t process;
63   smx_simcall_t req;
64   unsigned int iter;
65
66   while (!xbt_dynar_is_empty(simix_global->process_to_run)) {
67     SIMIX_process_runall();
68     xbt_dynar_foreach(simix_global->process_that_ran, iter, process) {
69       req = &process->simcall;
70       if (req->call != SIMCALL_NONE && !simgrid::mc::request_is_visible(req))
71         SIMIX_simcall_handle(req, 0);
72     }
73   }
74 }
75
76 // Called from both MCer and MCed:
77 bool request_is_enabled(smx_simcall_t req)
78 {
79   unsigned int index = 0;
80   // TODO, add support for the subtypes?
81
82   switch (req->call) {
83   case SIMCALL_NONE:
84     return false;
85
86   case SIMCALL_COMM_WAIT:
87   {
88     /* FIXME: check also that src and dst processes are not suspended */
89     simgrid::simix::Comm *act = static_cast<simgrid::simix::Comm*>(simcall_comm_wait__get__comm(req));
90
91 #if HAVE_MC
92     // Fetch from MCed memory:
93     // HACK, type puning
94     simgrid::mc::Remote<simgrid::simix::Comm> temp_comm;
95     if (mc_model_checker != nullptr) {
96       mc_model_checker->process().read(temp_comm, remote(act));
97       act = static_cast<simgrid::simix::Comm*>(temp_comm.getBuffer());
98     }
99 #endif
100
101     if (simcall_comm_wait__get__timeout(req) >= 0) {
102       /* If it has a timeout it will be always be enabled, because even if the
103        * communication is not ready, it can timeout and won't block. */
104       if (_sg_mc_timeout == 1)
105         return true;
106     }
107     /* On the other hand if it hasn't a timeout, check if the comm is ready.*/
108     else if (act->detached && act->src_proc == nullptr
109           && act->type == SIMIX_COMM_READY)
110         return (act->dst_proc != nullptr);
111     return (act->src_proc && act->dst_proc);
112   }
113
114   case SIMCALL_COMM_WAITANY: {
115     xbt_dynar_t comms;
116     simgrid::simix::Comm *act = static_cast<simgrid::simix::Comm*>(simcall_comm_wait__get__comm(req));
117 #if HAVE_MC
118
119     s_xbt_dynar_t comms_buffer;
120     size_t buffer_size = 0;
121     if (mc_model_checker != nullptr) {
122       // Read dynar:
123       mc_model_checker->process().read(
124         &comms_buffer, remote(simcall_comm_waitany__get__comms(req)));
125       assert(comms_buffer.elmsize == sizeof(act));
126       buffer_size = comms_buffer.elmsize * comms_buffer.used;
127       comms = &comms_buffer;
128     } else
129       comms = simcall_comm_waitany__get__comms(req);
130
131     // Read all the dynar buffer:
132     char buffer[buffer_size];
133     if (mc_model_checker != nullptr)
134       mc_model_checker->process().read_bytes(buffer, sizeof(buffer),
135         remote(comms->data));
136 #else
137     comms = simcall_comm_waitany__get__comms(req);
138 #endif
139
140     for (index = 0; index < comms->used; ++index) {
141 #if HAVE_MC
142       // Fetch act from MCed memory:
143       // HACK, type puning
144       simgrid::mc::Remote<simgrid::simix::Comm> temp_comm;
145       if (mc_model_checker != nullptr) {
146         memcpy(&act, buffer + comms->elmsize * index, sizeof(act));
147         mc_model_checker->process().read(temp_comm, remote(act));
148         act = static_cast<simgrid::simix::Comm*>(temp_comm.getBuffer());
149       }
150       else
151 #endif
152         act = xbt_dynar_get_as(comms, index, simgrid::simix::Comm*);
153       if (act->src_proc && act->dst_proc)
154         return true;
155     }
156     return false;
157   }
158
159   case SIMCALL_MUTEX_TRYLOCK:
160     return true;
161
162   case SIMCALL_MUTEX_LOCK: {
163     smx_mutex_t mutex = simcall_mutex_lock__get__mutex(req);
164 #if HAVE_MC
165     simgrid::mc::Remote<simgrid::simix::Mutex> temp_mutex;
166     if (mc_model_checker != nullptr) {
167       mc_model_checker->process().read(temp_mutex.getBuffer(), remote(mutex));
168       mutex = temp_mutex.getBuffer();
169     }
170 #endif
171
172     if(mutex->owner == nullptr)
173       return true;
174 #if HAVE_MC
175     else if (mc_model_checker != nullptr) {
176       simgrid::mc::Process& modelchecked = mc_model_checker->process();
177       // TODO, *(mutex->owner) :/
178       return modelchecked.resolveProcess(simgrid::mc::remote(mutex->owner))->pid
179         == modelchecked.resolveProcess(simgrid::mc::remote(req->issuer))->pid;
180     }
181 #endif
182     else
183       return mutex->owner->pid == req->issuer->pid;
184     }
185
186   default:
187     /* The rest of the requests are always enabled */
188     return true;
189   }
190 }
191
192 bool request_is_visible(smx_simcall_t req)
193 {
194   return req->call == SIMCALL_COMM_ISEND
195       || req->call == SIMCALL_COMM_IRECV
196       || req->call == SIMCALL_COMM_WAIT
197       || req->call == SIMCALL_COMM_WAITANY
198       || req->call == SIMCALL_COMM_TEST
199       || req->call == SIMCALL_COMM_TESTANY
200       || req->call == SIMCALL_MC_RANDOM
201       || req->call == SIMCALL_MUTEX_LOCK
202       || req->call == SIMCALL_MUTEX_TRYLOCK
203       ;
204 }
205
206 }
207 }
208
209 static int prng_random(int min, int max)
210 {
211   unsigned long output_size = ((unsigned long) max - (unsigned long) min) + 1;
212   unsigned long input_size = (unsigned long) RAND_MAX + 1;
213   unsigned long reject_size = input_size % output_size;
214   unsigned long accept_size = input_size - reject_size; // module*accept_size
215
216   // Use rejection in order to avoid skew
217   unsigned long x;
218   do {
219 #ifndef _WIN32
220     x = (unsigned long) random();
221 #else
222     x = (unsigned long) rand();
223 #endif
224   } while( x >= accept_size );
225   return min + (x % output_size);
226 }
227
228 int simcall_HANDLER_mc_random(smx_simcall_t simcall, int min, int max)
229 {
230   if (!MC_is_active() && !MC_record_path)
231     return prng_random(min, max);
232   return simcall->mc_value;
233 }