Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of github.com:simgrid/simgrid into dev_11
[simgrid.git] / src / mc / remote / mc_protocol.h
1 /* Copyright (c) 2015-2020. 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 "cstdint"
20 #include "mc/datatypes.h"
21 #include "simgrid/forward.h" // aid_t
22
23 // ***** Messages
24 namespace simgrid {
25 namespace mc {
26
27 enum class MessageType {
28   NONE,
29   CONTINUE,
30   IGNORE_HEAP,
31   UNIGNORE_HEAP,
32   IGNORE_MEMORY,
33   STACK_REGION,
34   REGISTER_SYMBOL,
35   DEADLOCK_CHECK,
36   DEADLOCK_CHECK_REPLY,
37   WAITING,
38   SIMCALL_HANDLE,
39   ASSERTION_FAILED,
40   ACTOR_ENABLED,
41   ACTOR_ENABLED_REPLY
42 };
43
44 } // namespace mc
45 } // namespace simgrid
46
47 #define MC_MESSAGE_LENGTH 512
48
49 /** Basic structure for a MC message
50  *
51  *  The current version of the client/server protocol sends C structures over `AF_LOCAL`
52  *  `SOCK_SEQPACKET` sockets. This means that the protocol is ABI/architecture specific:
53  *  we currently can't model-check a x86 process from a x86_64 process.
54  *
55  *  Moreover the protocol is not stable. The same version of the library should be used
56  *  for the client and the server.
57  */
58
59 /* Basic structure: all message start with a message type */
60 struct s_mc_message_t {
61   simgrid::mc::MessageType type;
62 };
63
64 struct s_mc_message_int_t {
65   simgrid::mc::MessageType type;
66   uint64_t value;
67 };
68
69 /* Client->Server */
70 struct s_mc_message_ignore_heap_t {
71   simgrid::mc::MessageType type;
72   int block;
73   int fragment;
74   void* address;
75   size_t size;
76 };
77
78 struct s_mc_message_ignore_memory_t {
79   simgrid::mc::MessageType type;
80   uint64_t addr;
81   size_t size;
82 };
83
84 struct s_mc_message_stack_region_t {
85   simgrid::mc::MessageType type;
86   s_stack_region_t stack_region;
87 };
88
89 struct s_mc_message_register_symbol_t {
90   simgrid::mc::MessageType type;
91   char name[128];
92   int (*callback)(void*);
93   void* data;
94 };
95
96 /* Server -> client */
97 struct s_mc_message_simcall_handle_t {
98   simgrid::mc::MessageType type;
99   unsigned long pid;
100   int value;
101 };
102
103 struct s_mc_message_restore_t {
104   simgrid::mc::MessageType type;
105   int index;
106 };
107
108 struct s_mc_message_actor_enabled_t {
109   simgrid::mc::MessageType type;
110   aid_t aid; // actor ID
111 };
112
113 XBT_PRIVATE const char* MC_message_type_name(simgrid::mc::MessageType type);
114
115 #endif // __cplusplus
116 #endif