Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add ModelChecker::finalize_app(), but don't use it as it don't work yet
[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/utility.hpp>
24
25 // ***** Messages
26 namespace simgrid {
27 namespace mc {
28
29 XBT_DECLARE_ENUM_CLASS(MessageType, NONE, INITIAL_ADDRESSES, CONTINUE, IGNORE_HEAP, UNIGNORE_HEAP, IGNORE_MEMORY,
30                        STACK_REGION, REGISTER_SYMBOL, DEADLOCK_CHECK, DEADLOCK_CHECK_REPLY, WAITING, SIMCALL_HANDLE,
31                        SIMCALL_IS_VISIBLE, SIMCALL_IS_VISIBLE_ANSWER, SIMCALL_TO_STRING, SIMCALL_TO_STRING_ANSWER,
32                        SIMCALL_DOT_LABEL, ASSERTION_FAILED, ACTOR_ENABLED, ACTOR_ENABLED_REPLY, FINALIZE);
33
34 } // namespace mc
35 } // namespace simgrid
36
37 constexpr unsigned MC_MESSAGE_LENGTH = 512;
38
39 /** Basic structure for a MC message
40  *
41  *  The current version of the client/server protocol sends C structures over `AF_LOCAL`
42  *  `SOCK_SEQPACKET` sockets. This means that the protocol is ABI/architecture specific:
43  *  we currently can't model-check a x86 process from a x86_64 process.
44  *
45  *  Moreover the protocol is not stable. The same version of the library should be used
46  *  for the client and the server.
47  */
48
49 /* Basic structure: all message start with a message type */
50 struct s_mc_message_t {
51   simgrid::mc::MessageType type;
52 };
53
54 struct s_mc_message_int_t {
55   simgrid::mc::MessageType type;
56   uint64_t value;
57 };
58
59 /* Client->Server */
60 struct s_mc_message_initial_addresses_t {
61   simgrid::mc::MessageType type;
62   void* mmalloc_default_mdp;
63   void* maxpid;
64   void* actors;
65   void* dead_actors;
66 };
67
68 struct s_mc_message_ignore_heap_t {
69   simgrid::mc::MessageType type;
70   int block;
71   int fragment;
72   void* address;
73   size_t size;
74 };
75
76 struct s_mc_message_ignore_memory_t {
77   simgrid::mc::MessageType type;
78   uint64_t addr;
79   size_t size;
80 };
81
82 struct s_mc_message_stack_region_t {
83   simgrid::mc::MessageType type;
84   s_stack_region_t stack_region;
85 };
86
87 struct s_mc_message_register_symbol_t {
88   simgrid::mc::MessageType type;
89   std::array<char, 128> name;
90   int (*callback)(void*);
91   void* data;
92 };
93
94 /* Server -> client */
95 struct s_mc_message_simcall_handle_t {
96   simgrid::mc::MessageType type;
97   unsigned long pid_;
98   int times_considered_;
99 };
100
101 struct s_mc_message_restore_t {
102   simgrid::mc::MessageType type;
103   int index;
104 };
105
106 struct s_mc_message_actor_enabled_t {
107   simgrid::mc::MessageType type;
108   aid_t aid; // actor ID
109 };
110
111 /* RPC */
112 struct s_mc_message_simcall_is_visible_t { // MessageType::SIMCALL_IS_VISIBLE
113   simgrid::mc::MessageType type;
114   int aid;
115 };
116 struct s_mc_message_simcall_is_visible_answer_t { // MessageType::SIMCALL_IS_VISIBLE_ANSWER
117   simgrid::mc::MessageType type;
118   bool value;
119 };
120
121 struct s_mc_message_simcall_to_string_t { // MessageType::SIMCALL_TO_STRING or MessageType::SIMCALL_DOT_LABEL
122   simgrid::mc::MessageType type;
123   int aid;
124   int time_considered;
125 };
126 struct s_mc_message_simcall_to_string_answer_t { // MessageType::SIMCALL_TO_STRING_ANSWER
127   simgrid::mc::MessageType type;
128   char value[1024];
129 };
130
131 #endif // __cplusplus
132 #endif