Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Cross-process access to smx_process and simcall
[simgrid.git] / src / mc / mc_base.c
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 <simgrid/simix.h>
8
9 #include "mc_base.h"
10 #include "../simix/smx_private.h"
11 #include "mc_record.h"
12
13 #ifdef HAVE_MC
14 #include "mc_process.h"
15 #include "mc_model_checker.h"
16 #include "mc_protocol.h"
17 #endif
18
19 XBT_LOG_NEW_CATEGORY(mc, "All MC categories");
20
21 void MC_wait_for_requests(void)
22 {
23   smx_process_t process;
24   smx_simcall_t req;
25   unsigned int iter;
26
27   while (!xbt_dynar_is_empty(simix_global->process_to_run)) {
28     SIMIX_process_runall();
29     xbt_dynar_foreach(simix_global->process_that_ran, iter, process) {
30       req = &process->simcall;
31       if (req->call != SIMCALL_NONE && !MC_request_is_visible(req))
32         SIMIX_simcall_handle(req, 0);
33     }
34   }
35 }
36
37 int MC_request_is_enabled(smx_simcall_t req)
38 {
39   unsigned int index = 0;
40   smx_synchro_t act = 0;
41 #ifdef HAVE_MC
42   s_smx_synchro_t temp_synchro;
43 #endif
44
45   switch (req->call) {
46   case SIMCALL_NONE:
47     return FALSE;
48
49   case SIMCALL_COMM_WAIT:
50     /* FIXME: check also that src and dst processes are not suspended */
51     act = simcall_comm_wait__get__comm(req);
52
53 #ifdef HAVE_MC
54     // Fetch from MCed memory:
55     if (!MC_process_is_self(&mc_model_checker->process)) {
56       MC_process_read(&mc_model_checker->process, MC_PROCESS_NO_FLAG,
57         &temp_synchro, act, sizeof(temp_synchro),
58         MC_PROCESS_INDEX_ANY);
59       act = &temp_synchro;
60     }
61 #endif
62
63     if (simcall_comm_wait__get__timeout(req) >= 0) {
64       /* If it has a timeout it will be always be enabled, because even if the
65        * communication is not ready, it can timeout and won't block. */
66       if (_sg_mc_timeout == 1)
67         return TRUE;
68     } else {
69       /* On the other hand if it hasn't a timeout, check if the comm is ready.*/
70       if (act->comm.detached && act->comm.src_proc == NULL
71           && act->comm.type == SIMIX_COMM_READY)
72         return (act->comm.dst_proc != NULL);
73     }
74     return (act->comm.src_proc && act->comm.dst_proc);
75
76   case SIMCALL_COMM_WAITANY:
77     /* Check if it has at least one communication ready */
78     xbt_dynar_foreach(simcall_comm_waitany__get__comms(req), index, act) {
79
80 #ifdef HAVE_MC
81       // Fetch from MCed memory:
82       if (!MC_process_is_self(&mc_model_checker->process)) {
83         MC_process_read(&mc_model_checker->process, MC_PROCESS_NO_FLAG,
84           &temp_synchro, act, sizeof(temp_synchro),
85           MC_PROCESS_INDEX_ANY);
86         act = &temp_synchro;
87       }
88 #endif
89
90       if (act->comm.src_proc && act->comm.dst_proc)
91         return TRUE;
92     }
93     return FALSE;
94
95   default:
96     /* The rest of the requests are always enabled */
97     return TRUE;
98   }
99 }
100
101 int MC_request_is_visible(smx_simcall_t req)
102 {
103   return req->call == SIMCALL_COMM_ISEND
104       || req->call == SIMCALL_COMM_IRECV
105       || req->call == SIMCALL_COMM_WAIT
106       || req->call == SIMCALL_COMM_WAITANY
107       || req->call == SIMCALL_COMM_TEST
108       || req->call == SIMCALL_COMM_TESTANY
109       || req->call == SIMCALL_MC_RANDOM
110 #ifdef HAVE_MC
111       || req->call == SIMCALL_MC_SNAPSHOT
112       || req->call == SIMCALL_MC_COMPARE_SNAPSHOTS
113 #endif
114       ;
115 }
116
117 int MC_random(int min, int max)
118 {
119   /*FIXME: return mc_current_state->executed_transition->random.value; */
120   return simcall_mc_random(min, max);
121 }
122
123 static int prng_random(int min, int max)
124 {
125   unsigned long output_size = ((unsigned long) max - (unsigned long) min) + 1;
126   unsigned long input_size = (unsigned long) RAND_MAX + 1;
127   unsigned long reject_size = input_size % output_size;
128   unsigned long accept_size = input_size - reject_size; // module*accept_size
129
130   // Use rejection in order to avoid skew
131   long x;
132   do {
133 #ifndef _XBT_WIN32
134     x = random();
135 #else
136     x = rand();
137 #endif
138   } while( x >= accept_size );
139   return min + (x % output_size);
140 }
141
142 int simcall_HANDLER_mc_random(smx_simcall_t simcall, int min, int max)
143 {
144   if (!MC_is_active() && !MC_record_path){
145     return prng_random(min, max);
146   }
147
148   return simcall->mc_value;
149 }