Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
align namespaces on directories for kernel::activity
[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/kernel/activity/Synchro.h"
24 #include "src/kernel/activity/SynchroIo.hpp"
25 #include "src/kernel/activity/SynchroComm.hpp"
26 #include "src/kernel/activity/SynchroRaw.hpp"
27 #include "src/kernel/activity/SynchroSleep.hpp"
28 #include "src/kernel/activity/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::kernel::activity::Comm *act =
90         static_cast<simgrid::kernel::activity::Comm*>(simcall_comm_wait__get__comm(req));
91
92 #if HAVE_MC
93     // Fetch from MCed memory:
94     // HACK, type puning
95     simgrid::mc::Remote<simgrid::kernel::activity::Comm> temp_comm;
96     if (mc_model_checker != nullptr) {
97       mc_model_checker->process().read(temp_comm, remote(act));
98       act = static_cast<simgrid::kernel::activity::Comm*>(temp_comm.getBuffer());
99     }
100 #endif
101
102     if (simcall_comm_wait__get__timeout(req) >= 0) {
103       /* If it has a timeout it will be always be enabled, because even if the
104        * communication is not ready, it can timeout and won't block. */
105       if (_sg_mc_timeout == 1)
106         return true;
107     }
108     /* On the other hand if it hasn't a timeout, check if the comm is ready.*/
109     else if (act->detached && act->src_proc == nullptr
110           && act->type == SIMIX_COMM_READY)
111         return (act->dst_proc != nullptr);
112     return (act->src_proc && act->dst_proc);
113   }
114
115   case SIMCALL_COMM_WAITANY: {
116     xbt_dynar_t comms;
117     simgrid::kernel::activity::Comm *act =
118         static_cast<simgrid::kernel::activity::Comm*>(simcall_comm_wait__get__comm(req));
119 #if HAVE_MC
120
121     s_xbt_dynar_t comms_buffer;
122     size_t buffer_size = 0;
123     if (mc_model_checker != nullptr) {
124       // Read dynar:
125       mc_model_checker->process().read(
126         &comms_buffer, remote(simcall_comm_waitany__get__comms(req)));
127       assert(comms_buffer.elmsize == sizeof(act));
128       buffer_size = comms_buffer.elmsize * comms_buffer.used;
129       comms = &comms_buffer;
130     } else
131       comms = simcall_comm_waitany__get__comms(req);
132
133     // Read all the dynar buffer:
134     char buffer[buffer_size];
135     if (mc_model_checker != nullptr)
136       mc_model_checker->process().read_bytes(buffer, sizeof(buffer),
137         remote(comms->data));
138 #else
139     comms = simcall_comm_waitany__get__comms(req);
140 #endif
141
142     for (index = 0; index < comms->used; ++index) {
143 #if HAVE_MC
144       // Fetch act from MCed memory:
145       // HACK, type puning
146       simgrid::mc::Remote<simgrid::kernel::activity::Comm> temp_comm;
147       if (mc_model_checker != nullptr) {
148         memcpy(&act, buffer + comms->elmsize * index, sizeof(act));
149         mc_model_checker->process().read(temp_comm, remote(act));
150         act = static_cast<simgrid::kernel::activity::Comm*>(temp_comm.getBuffer());
151       }
152       else
153 #endif
154         act = xbt_dynar_get_as(comms, index, simgrid::kernel::activity::Comm*);
155       if (act->src_proc && act->dst_proc)
156         return true;
157     }
158     return false;
159   }
160
161   case SIMCALL_MUTEX_TRYLOCK:
162     return true;
163
164   case SIMCALL_MUTEX_LOCK: {
165     smx_mutex_t mutex = simcall_mutex_lock__get__mutex(req);
166 #if HAVE_MC
167     simgrid::mc::Remote<simgrid::simix::Mutex> temp_mutex;
168     if (mc_model_checker != nullptr) {
169       mc_model_checker->process().read(temp_mutex.getBuffer(), remote(mutex));
170       mutex = temp_mutex.getBuffer();
171     }
172 #endif
173
174     if(mutex->owner == nullptr)
175       return true;
176 #if HAVE_MC
177     else if (mc_model_checker != nullptr) {
178       simgrid::mc::Process& modelchecked = mc_model_checker->process();
179       // TODO, *(mutex->owner) :/
180       return modelchecked.resolveProcess(simgrid::mc::remote(mutex->owner))->pid
181         == modelchecked.resolveProcess(simgrid::mc::remote(req->issuer))->pid;
182     }
183 #endif
184     else
185       return mutex->owner->pid == req->issuer->pid;
186     }
187
188   default:
189     /* The rest of the requests are always enabled */
190     return true;
191   }
192 }
193
194 bool request_is_visible(smx_simcall_t req)
195 {
196   return req->call == SIMCALL_COMM_ISEND
197       || req->call == SIMCALL_COMM_IRECV
198       || req->call == SIMCALL_COMM_WAIT
199       || req->call == SIMCALL_COMM_WAITANY
200       || req->call == SIMCALL_COMM_TEST
201       || req->call == SIMCALL_COMM_TESTANY
202       || req->call == SIMCALL_MC_RANDOM
203       || req->call == SIMCALL_MUTEX_LOCK
204       || req->call == SIMCALL_MUTEX_TRYLOCK
205       ;
206 }
207
208 }
209 }
210
211 static int prng_random(int min, int max)
212 {
213   unsigned long output_size = ((unsigned long) max - (unsigned long) min) + 1;
214   unsigned long input_size = (unsigned long) RAND_MAX + 1;
215   unsigned long reject_size = input_size % output_size;
216   unsigned long accept_size = input_size - reject_size; // module*accept_size
217
218   // Use rejection in order to avoid skew
219   unsigned long x;
220   do {
221 #ifndef _WIN32
222     x = (unsigned long) random();
223 #else
224     x = (unsigned long) rand();
225 #endif
226   } while( x >= accept_size );
227   return min + (x % output_size);
228 }
229
230 int simcall_HANDLER_mc_random(smx_simcall_t simcall, int min, int max)
231 {
232   if (!MC_is_active() && !MC_record_path)
233     return prng_random(min, max);
234   return simcall->mc_value;
235 }