Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Stop using void* for xbt_mheap_t.
[simgrid.git] / src / mc / remote / mc_protocol.h
1 /* Copyright (c) 2015-2021. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SIMGRID_MC_PROTOCOL_H
7 #define SIMGRID_MC_PROTOCOL_H
8
9 // ***** Environment variables for passing context to the model-checked process
10
11 /** Environment variable name used to pass the communication socket.
12  *
13  * It is set by `simgrid-mc` to enable MC support in the children processes
14  */
15 #define MC_ENV_SOCKET_FD "SIMGRID_MC_SOCKET_FD"
16
17 #ifdef __cplusplus
18
19 #include "mc/datatypes.h"
20 #include "simgrid/forward.h" // aid_t
21 #include <array>
22 #include <cstdint>
23 #include <xbt/mmalloc.h>
24 #include <xbt/utility.hpp>
25
26 // ***** Messages
27 namespace simgrid {
28 namespace mc {
29
30 XBT_DECLARE_ENUM_CLASS(MessageType, NONE, INITIAL_ADDRESSES, CONTINUE, IGNORE_HEAP, UNIGNORE_HEAP, IGNORE_MEMORY,
31                        STACK_REGION, REGISTER_SYMBOL, DEADLOCK_CHECK, DEADLOCK_CHECK_REPLY, WAITING, SIMCALL_HANDLE,
32                        SIMCALL_IS_VISIBLE, SIMCALL_IS_VISIBLE_ANSWER, SIMCALL_TO_STRING, SIMCALL_TO_STRING_ANSWER,
33                        SIMCALL_DOT_LABEL, ASSERTION_FAILED, ACTOR_ENABLED, ACTOR_ENABLED_REPLY, FINALIZE);
34
35 } // namespace mc
36 } // namespace simgrid
37
38 constexpr unsigned MC_MESSAGE_LENGTH = 512;
39
40 /** Basic structure for a MC message
41  *
42  *  The current version of the client/server protocol sends C structures over `AF_LOCAL`
43  *  `SOCK_SEQPACKET` sockets. This means that the protocol is ABI/architecture specific:
44  *  we currently can't model-check a x86 process from a x86_64 process.
45  *
46  *  Moreover the protocol is not stable. The same version of the library should be used
47  *  for the client and the server.
48  */
49
50 /* Basic structure: all message start with a message type */
51 struct s_mc_message_t {
52   simgrid::mc::MessageType type;
53 };
54
55 struct s_mc_message_int_t {
56   simgrid::mc::MessageType type;
57   uint64_t value;
58 };
59
60 /* Client->Server */
61 struct s_mc_message_initial_addresses_t {
62   simgrid::mc::MessageType type;
63   xbt_mheap_t mmalloc_default_mdp;
64   void* maxpid;
65   void* actors;
66   void* dead_actors;
67 };
68
69 struct s_mc_message_ignore_heap_t {
70   simgrid::mc::MessageType type;
71   int block;
72   int fragment;
73   void* address;
74   size_t size;
75 };
76
77 struct s_mc_message_ignore_memory_t {
78   simgrid::mc::MessageType type;
79   uint64_t addr;
80   size_t size;
81 };
82
83 struct s_mc_message_stack_region_t {
84   simgrid::mc::MessageType type;
85   s_stack_region_t stack_region;
86 };
87
88 struct s_mc_message_register_symbol_t {
89   simgrid::mc::MessageType type;
90   std::array<char, 128> name;
91   int (*callback)(void*);
92   void* data;
93 };
94
95 /* Server -> client */
96 struct s_mc_message_simcall_handle_t {
97   simgrid::mc::MessageType type;
98   unsigned long aid_;
99   int times_considered_;
100 };
101
102 struct s_mc_message_restore_t {
103   simgrid::mc::MessageType type;
104   int index;
105 };
106
107 struct s_mc_message_actor_enabled_t {
108   simgrid::mc::MessageType type;
109   aid_t aid; // actor ID
110 };
111
112 /* RPC */
113 struct s_mc_message_simcall_is_visible_t { // MessageType::SIMCALL_IS_VISIBLE
114   simgrid::mc::MessageType type;
115   int aid;
116 };
117 struct s_mc_message_simcall_is_visible_answer_t { // MessageType::SIMCALL_IS_VISIBLE_ANSWER
118   simgrid::mc::MessageType type;
119   bool value;
120 };
121
122 struct s_mc_message_simcall_to_string_t { // MessageType::SIMCALL_TO_STRING or MessageType::SIMCALL_DOT_LABEL
123   simgrid::mc::MessageType type;
124   int aid;
125   int time_considered;
126 };
127 struct s_mc_message_simcall_to_string_answer_t { // MessageType::SIMCALL_TO_STRING_ANSWER
128   simgrid::mc::MessageType type;
129   char value[1024];
130 };
131
132 #endif // __cplusplus
133 #endif