X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ea74f5d95928a521a588737e81f1de94eef25d19..02a0b077329593921105001a7f27463ba2d82ced:/src/mc/remote/mc_protocol.h diff --git a/src/mc/remote/mc_protocol.h b/src/mc/remote/mc_protocol.h index de67c9dbe5..156e3c7173 100644 --- a/src/mc/remote/mc_protocol.h +++ b/src/mc/remote/mc_protocol.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2022. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2015-2023. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -8,14 +8,10 @@ // ***** Environment variables for passing context to the model-checked process -/** Environment variable name used to pass the communication socket. - * - * It is set by `simgrid-mc` to enable MC support in the children processes - */ -#define MC_ENV_SOCKET_FD "SIMGRID_MC_SOCKET_FD" - #ifdef __cplusplus +#include "src/kernel/actor/SimcallObserver.hpp" + #include "mc/datatypes.h" #include "simgrid/forward.h" // aid_t #include @@ -25,18 +21,16 @@ #include // ***** Messages -namespace simgrid { -namespace mc { +namespace simgrid::mc { XBT_DECLARE_ENUM_CLASS(MessageType, NONE, INITIAL_ADDRESSES, CONTINUE, IGNORE_HEAP, UNIGNORE_HEAP, IGNORE_MEMORY, - STACK_REGION, REGISTER_SYMBOL, DEADLOCK_CHECK, DEADLOCK_CHECK_REPLY, WAITING, SIMCALL_HANDLE, - SIMCALL_IS_VISIBLE, SIMCALL_IS_VISIBLE_ANSWER, SIMCALL_TO_STRING, SIMCALL_TO_STRING_ANSWER, - SIMCALL_DOT_LABEL, ASSERTION_FAILED, ACTOR_ENABLED, ACTOR_ENABLED_REPLY, FINALIZE); + STACK_REGION, REGISTER_SYMBOL, DEADLOCK_CHECK, DEADLOCK_CHECK_REPLY, WAITING, SIMCALL_EXECUTE, + SIMCALL_EXECUTE_ANSWER, ASSERTION_FAILED, ACTORS_STATUS, ACTORS_STATUS_REPLY, FINALIZE, + FINALIZE_REPLY); +} // namespace simgrid::mc -} // namespace mc -} // namespace simgrid - -constexpr unsigned MC_MESSAGE_LENGTH = 512; +constexpr unsigned MC_MESSAGE_LENGTH = 512; +constexpr unsigned SIMCALL_SERIALIZATION_BUFFER_SIZE = 2048; /** Basic structure for a MC message * @@ -63,8 +57,6 @@ struct s_mc_message_initial_addresses_t { simgrid::mc::MessageType type; xbt_mheap_t mmalloc_default_mdp; unsigned long* maxpid; - xbt_dynar_t actors; - xbt_dynar_t dead_actors; }; struct s_mc_message_ignore_heap_t { @@ -94,40 +86,41 @@ struct s_mc_message_register_symbol_t { }; /* Server -> client */ -struct s_mc_message_simcall_handle_t { +struct s_mc_message_simcall_execute_t { simgrid::mc::MessageType type; aid_t aid_; int times_considered_; }; +struct s_mc_message_simcall_execute_answer_t { + simgrid::mc::MessageType type; + std::array buffer; +}; struct s_mc_message_restore_t { simgrid::mc::MessageType type; int index; }; -struct s_mc_message_actor_enabled_t { +struct s_mc_message_actors_status_answer_t { simgrid::mc::MessageType type; - aid_t aid; // actor ID + int count; + int transition_count; // The total number of transitions sent as a payload to the checker }; - -/* RPC */ -struct s_mc_message_simcall_is_visible_t { // MessageType::SIMCALL_IS_VISIBLE - simgrid::mc::MessageType type; +struct s_mc_message_actors_status_one_t { // an array of `s_mc_message_actors_status_one_t[count]` is sent right after + // after a `s_mc_message_actors_status_answer_t` aid_t aid; -}; -struct s_mc_message_simcall_is_visible_answer_t { // MessageType::SIMCALL_IS_VISIBLE_ANSWER - simgrid::mc::MessageType type; - bool value; -}; + bool enabled; + int max_considered; -struct s_mc_message_simcall_to_string_t { // MessageType::SIMCALL_TO_STRING or MessageType::SIMCALL_DOT_LABEL - simgrid::mc::MessageType type; - aid_t aid; - int time_considered; + // The total number of transitions that are serialized and associated with this actor. + // Enforced to be either `0` or the same as `max_considered` + int n_transitions; }; -struct s_mc_message_simcall_to_string_answer_t { // MessageType::SIMCALL_TO_STRING_ANSWER - simgrid::mc::MessageType type; - char value[1024]; + +// Answer from an actor to the question "what are you about to run?" +struct s_mc_message_simcall_probe_one_t { // an array of `s_mc_message_simcall_probe_one_t[n_transitions] + // is sent right after a `s_mc_message_actors_status_one_t` + std::array buffer; }; #endif // __cplusplus