X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/52f5862b6fa36444df90587234b36308bb645121..9dbeb2372ad9a123d0558132ebb6e003e10aa641:/src/mc/mc_process.h diff --git a/src/mc/mc_process.h b/src/mc/mc_process.h index 238fa366a5..b357134907 100644 --- a/src/mc/mc_process.h +++ b/src/mc/mc_process.h @@ -4,13 +4,15 @@ /* 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. */ -#ifndef MC_PROCESS_H -#define MC_PROCESS_H +#ifndef SIMGRID_MC_PROCESS_H +#define SIMGRID_MC_PROCESS_H + +#include -#include #include #include +#include #include "simgrid_config.h" #include @@ -61,6 +63,7 @@ public: Process(pid_t pid, int sockfd); ~Process(); + bool is_self() const { return this->process_flags & MC_PROCESS_SELF_FLAG; @@ -69,8 +72,16 @@ public: // Read memory: const void* read_bytes(void* buffer, std::size_t size, remote_ptr address, int process_index = ProcessIndexAny, - ReadMode mode = Normal) const override; + ReadMode mode = Normal) const MC_OVERRIDE; void read_variable(const char* name, void* target, size_t size) const; + template + T read_variable(const char *name) const + { + static_assert(std::is_trivial::value, "Cannot read a non-trivial type"); + T res; + read_variable(name, &res, sizeof(T)); + return res; + } char* read_string(remote_ptr address) const; // Write memory: @@ -78,9 +89,9 @@ public: void clear_bytes(remote_ptr address, size_t len); // Debug information: - mc_object_info_t find_object_info(remote_ptr addr) const; - mc_object_info_t find_object_info_exec(remote_ptr addr) const; - mc_object_info_t find_object_info_rw(remote_ptr addr) const; + std::shared_ptr find_object_info(remote_ptr addr) const; + std::shared_ptr find_object_info_exec(remote_ptr addr) const; + std::shared_ptr find_object_info_rw(remote_ptr addr) const; dw_frame_t find_function(remote_ptr ip) const; dw_variable_t find_variable(const char* name) const; @@ -106,6 +117,46 @@ public: pid_t pid() const { return pid_; } + bool in_maestro_stack(remote_ptr p) const + { + return p >= this->maestro_stack_start_ && p < this->maestro_stack_end_; + } + + bool running() const + { + return running_; + } + + void terminate(int status) + { + status_ = status; + running_ = false; + } + + int status() const + { + return status_; + } + + template + typename std::enable_if< std::is_class::value && std::is_trivial::value, int >::type + send_message(M const& m) + { + return MC_protocol_send(this->socket_, &m, sizeof(M)); + } + + int send_message(e_mc_message_type message_id) + { + return MC_protocol_send_simple_message(this->socket_, message_id); + } + + template + typename std::enable_if< std::is_class::value && std::is_trivial::value, ssize_t >::type + receive_message(M& m) + { + return MC_receive_message(this->socket_, &m, sizeof(M), 0); + } + private: void init_memory_map_info(); void refresh_heap(); @@ -113,18 +164,21 @@ private: private: mc_process_flags_t process_flags; pid_t pid_; -public: // to be private - int socket; - int status; - bool running; - memory_map_t memory_map; - void *maestro_stack_start, *maestro_stack_end; - mc_object_info_t libsimgrid_info; - mc_object_info_t binary_info; - mc_object_info_t* object_infos; - size_t object_infos_size; + int socket_; + int status_; + bool running_; + std::vector memory_map_; + remote_ptr maestro_stack_start_, maestro_stack_end_; int memory_file; + std::vector ignored_regions_; + +public: // object info + // TODO, make private (first, objectify mc_object_info_t) + std::vector> object_infos; + std::shared_ptr libsimgrid_info; + std::shared_ptr binary_info; +public: // Copies of MCed SMX data structures /** Copy of `simix_global->process_list` * * See mc_smx.c. @@ -159,7 +213,7 @@ public: // to be private */ malloc_info* heap_info; - // ***** Libunwind-data +public: // Libunwind-data /** Full-featured MC-aware libunwind address space for the process * @@ -179,9 +233,6 @@ public: // to be private /** The corresponding context */ void* unw_underlying_context; - -private: - std::vector ignored_regions_; }; /** Open a FD to a remote process memory (`/dev/$pid/mem`)