Logo AND Algorithmique Numérique Distribuée

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