Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9ce6e459a0fe63cbd3c6e76f35c150977f19920a
[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_process_read(&mc_model_checker->process(), MC_ADDRESS_SPACE_READ_FLAGS_NONE,
73         &temp_synchro, act, sizeof(temp_synchro),
74         MC_PROCESS_INDEX_ANY);
75       act = &temp_synchro;
76     }
77 #endif
78
79     if (simcall_comm_wait__get__timeout(req) >= 0) {
80       /* If it has a timeout it will be always be enabled, because even if the
81        * communication is not ready, it can timeout and won't block. */
82       if (_sg_mc_timeout == 1)
83         return TRUE;
84     } else {
85       /* On the other hand if it hasn't a timeout, check if the comm is ready.*/
86       if (act->comm.detached && act->comm.src_proc == NULL
87           && act->comm.type == SIMIX_COMM_READY)
88         return (act->comm.dst_proc != NULL);
89     }
90     return (act->comm.src_proc && act->comm.dst_proc);
91
92   case SIMCALL_COMM_WAITANY: {
93 #ifdef HAVE_MC
94     xbt_dynar_t comms;
95     s_xbt_dynar_t comms_buffer;
96     size_t buffer_size;
97     if (mc_mode == MC_MODE_SERVER) {
98       // Read dynar:
99       MC_process_read_simple(&mc_model_checker->process(),
100         &comms_buffer, simcall_comm_waitany__get__comms(req), sizeof(comms_buffer));
101       assert(comms_buffer.elmsize == sizeof(act));
102       buffer_size = comms_buffer.elmsize * comms_buffer.used;
103       comms = &comms_buffer;
104     } else {
105       comms = simcall_comm_waitany__get__comms(req);
106     }
107     // Read all the dynar buffer:
108     char buffer[buffer_size];
109     if (mc_mode == MC_MODE_SERVER)
110       MC_process_read_simple(&mc_model_checker->process(),
111         buffer, comms->data, sizeof(buffer));
112 #endif
113
114     for (index = 0; index < comms->used; ++index) {
115 #ifdef HAVE_MC
116       // Fetch act from MCed memory:
117       if (mc_mode == MC_MODE_SERVER) {
118         memcpy(&act, buffer + comms->elmsize * index, sizeof(act));
119         MC_process_read(&mc_model_checker->process(), MC_ADDRESS_SPACE_READ_FLAGS_NONE,
120           &temp_synchro, act, sizeof(temp_synchro),
121           MC_PROCESS_INDEX_ANY);
122         act = &temp_synchro;
123       }
124       else
125 #endif
126         act = xbt_dynar_get_as(comms, index, smx_synchro_t);
127       if (act->comm.src_proc && act->comm.dst_proc)
128         return TRUE;
129     }
130     return FALSE;
131   }
132
133   case SIMCALL_MUTEX_LOCK: {
134     smx_mutex_t mutex = simcall_mutex_lock__get__mutex(req);
135 #ifdef HAVE_MC
136     s_smx_mutex_t temp_mutex;
137     if (mc_mode == MC_MODE_SERVER) {
138       MC_process_read(&mc_model_checker->process(), MC_ADDRESS_SPACE_READ_FLAGS_NONE,
139         &temp_mutex, mutex, sizeof(temp_mutex),
140         MC_PROCESS_INDEX_ANY);
141       mutex = &temp_mutex;
142     }
143 #endif
144     if(mutex->owner == NULL)
145       return TRUE;
146     else
147 #ifdef HAVE_MC
148       // TODO, *(mutex->owner) :/
149       return MC_smx_resolve_process(mutex->owner)->pid ==
150         MC_smx_resolve_process(req->issuer)->pid;
151 #else
152       return mutex->owner->pid == req->issuer->pid;
153 #endif
154     }
155
156   default:
157     /* The rest of the requests are always enabled */
158     return TRUE;
159   }
160 }
161
162 int MC_request_is_visible(smx_simcall_t req)
163 {
164   return req->call == SIMCALL_COMM_ISEND
165       || req->call == SIMCALL_COMM_IRECV
166       || req->call == SIMCALL_COMM_WAIT
167       || req->call == SIMCALL_COMM_WAITANY
168       || req->call == SIMCALL_COMM_TEST
169       || req->call == SIMCALL_COMM_TESTANY
170       || req->call == SIMCALL_MC_RANDOM
171       || req->call == SIMCALL_MUTEX_LOCK
172 #ifdef HAVE_MC
173       || req->call == SIMCALL_MC_SNAPSHOT
174       || req->call == SIMCALL_MC_COMPARE_SNAPSHOTS
175 #endif
176       ;
177 }
178
179 int MC_random(int min, int max)
180 {
181   /*FIXME: return mc_current_state->executed_transition->random.value; */
182   return simcall_mc_random(min, max);
183 }
184
185 static int prng_random(int min, int max)
186 {
187   unsigned long output_size = ((unsigned long) max - (unsigned long) min) + 1;
188   unsigned long input_size = (unsigned long) RAND_MAX + 1;
189   unsigned long reject_size = input_size % output_size;
190   unsigned long accept_size = input_size - reject_size; // module*accept_size
191
192   // Use rejection in order to avoid skew
193   unsigned long x;
194   do {
195 #ifndef _XBT_WIN32
196     x = (unsigned long) random();
197 #else
198     x = (unsigned long) rand();
199 #endif
200   } while( x >= accept_size );
201   return min + (x % output_size);
202 }
203
204 int simcall_HANDLER_mc_random(smx_simcall_t simcall, int min, int max)
205 {
206   if (!MC_is_active() && !MC_record_path){
207     return prng_random(min, max);
208   }
209
210   return simcall->mc_value;
211 }
212
213 void MC_simcall_handle(smx_simcall_t req, int value)
214 {
215 #ifndef HAVE_MC
216   SIMIX_simcall_handle(req, value);
217 #else
218   if (mc_mode == MC_MODE_CLIENT) {
219     SIMIX_simcall_handle(req, value);
220     return;
221   }
222
223   unsigned i;
224   mc_smx_process_info_t pi = NULL;
225
226   xbt_dynar_foreach_ptr(mc_model_checker->process().smx_process_infos, i, pi) {
227     if (req == &pi->copy.simcall) {
228       MC_server_simcall_handle(&mc_model_checker->process(), pi->copy.pid, value);
229       return;
230     }
231   }
232
233   xbt_die("Could not find the request");
234 #endif
235 }
236
237 }