X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c7585fbc7d027299ab42bb0a308f7cb55fc6f485..c01192e46cde5284797237ea9018333f4f97a742:/src/mc/remote/RemoteProcess.cpp diff --git a/src/mc/remote/RemoteProcess.cpp b/src/mc/remote/RemoteProcess.cpp index dd80f7e379..eb8275f763 100644 --- a/src/mc/remote/RemoteProcess.cpp +++ b/src/mc/remote/RemoteProcess.cpp @@ -19,6 +19,7 @@ #include #include #include +#include #include using simgrid::mc::remote; @@ -206,21 +207,6 @@ static ssize_t pwrite_whole(int fd, const void* buf, size_t count, off_t offset) return real_count; } -static pthread_once_t zero_buffer_flag = PTHREAD_ONCE_INIT; -static const void* zero_buffer; -static const size_t zero_buffer_size = 10 * 4096; - -static void zero_buffer_init() -{ - int fd = open("/dev/zero", O_RDONLY); - if (fd < 0) - xbt_die("Could not open /dev/zero"); - zero_buffer = mmap(nullptr, zero_buffer_size, PROT_READ, MAP_SHARED, fd, 0); - if (zero_buffer == MAP_FAILED) - xbt_die("Could not map the zero buffer"); - close(fd); -} - int open_vm(pid_t pid, int flags) { std::string buffer = "/proc/" + std::to_string(pid) + "/mem"; @@ -231,8 +217,14 @@ int open_vm(pid_t pid, int flags) RemoteProcess::RemoteProcess(pid_t pid) : AddressSpace(this), pid_(pid), running_(true) {} -void RemoteProcess::init() +void RemoteProcess::init(xbt_mheap_t mmalloc_default_mdp, unsigned long* maxpid, xbt_dynar_t actors, + xbt_dynar_t dead_actors) { + this->heap_address = remote(mmalloc_default_mdp); + this->maxpid_addr_ = remote(maxpid); + this->actors_addr_ = remote(actors); + this->dead_actors_addr_ = remote(dead_actors); + this->memory_map_ = simgrid::xbt::get_memory_map(this->pid_); this->init_memory_map_info(); @@ -240,12 +232,6 @@ void RemoteProcess::init() xbt_assert(fd >= 0, "Could not open file for process virtual address space"); this->memory_file = fd; - // Read std_heap (is a struct mdesc*): - const simgrid::mc::Variable* std_heap_var = this->find_variable("__mmalloc_default_mdp"); - xbt_assert(std_heap_var, "No heap information in the target process"); - xbt_assert(std_heap_var->address, "No constant address for this variable"); - this->read_bytes(&this->heap_address, sizeof(mdesc*), remote(std_heap_var->address)); - this->smx_actors_infos.clear(); this->smx_dead_actors_infos.clear(); this->unw_addr_space = simgrid::mc::UnwindContext::createUnwindAddressSpace(); @@ -278,7 +264,7 @@ void RemoteProcess::refresh_heap() // Read/dereference/refresh the std_heap pointer: if (not this->heap) this->heap = std::make_unique(); - this->read_bytes(this->heap.get(), sizeof(mdesc), remote(this->heap_address)); + this->read(this->heap.get(), this->heap_address); this->cache_flags_ |= RemoteProcess::cache_heap; } @@ -459,8 +445,8 @@ std::string RemoteProcess::read_string(RemotePtr address) const void* RemoteProcess::read_bytes(void* buffer, std::size_t size, RemotePtr address, ReadOptions /*options*/) const { - if (pread_whole(this->memory_file, buffer, size, (size_t)address.address()) < 0) - xbt_die("Read at %p from process %lli failed", (void*)address.address(), (long long)this->pid_); + xbt_assert(pread_whole(this->memory_file, buffer, size, (size_t)address.address()) != -1, + "Read at %p from process %lli failed", (void*)address.address(), (long long)this->pid_); return buffer; } @@ -472,13 +458,26 @@ void* RemoteProcess::read_bytes(void* buffer, std::size_t size, RemotePtr */ void RemoteProcess::write_bytes(const void* buffer, size_t len, RemotePtr address) const { - if (pwrite_whole(this->memory_file, buffer, len, (size_t)address.address()) < 0) - xbt_die("Write to process %lli failed", (long long)this->pid_); + xbt_assert(pwrite_whole(this->memory_file, buffer, len, (size_t)address.address()) != -1, + "Write to process %lli failed", (long long)this->pid_); +} + +static void zero_buffer_init(const void** zero_buffer, size_t zero_buffer_size) +{ + int fd = open("/dev/zero", O_RDONLY); + xbt_assert(fd >= 0, "Could not open /dev/zero"); + *zero_buffer = mmap(nullptr, zero_buffer_size, PROT_READ, MAP_SHARED, fd, 0); + xbt_assert(*zero_buffer != MAP_FAILED, "Could not map the zero buffer"); + close(fd); } void RemoteProcess::clear_bytes(RemotePtr address, size_t len) const { - pthread_once(&zero_buffer_flag, zero_buffer_init); + static constexpr size_t zero_buffer_size = 10 * 4096; + static const void* zero_buffer; + static std::once_flag zero_buffer_flag; + + std::call_once(zero_buffer_flag, zero_buffer_init, &zero_buffer, zero_buffer_size); while (len) { size_t s = len > zero_buffer_size ? zero_buffer_size : len; this->write_bytes(zero_buffer, s, address); @@ -569,19 +568,5 @@ void RemoteProcess::dump_stack() const _UPT_destroy(context); unw_destroy_addr_space(as); } - -unsigned long RemoteProcess::get_maxpid() const -{ - static const char* name = nullptr; - if (not name) { - name = "simgrid::kernel::actor::maxpid"; - if (find_variable(name) == nullptr) - name = "maxpid"; // We seem to miss the namespaces when compiling with GCC - } - unsigned long maxpid; - read_variable(name, &maxpid, sizeof(maxpid)); - return maxpid; -} - } // namespace mc } // namespace simgrid