Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
1 a.m. lazy commit. Plenty of new libs appeared on our radar on fedora after an updat...
[simgrid.git] / src / mc / remote / RemoteClient.cpp
1 /* Copyright (c) 2014-2019. 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 #define _FILE_OFFSET_BITS 64 /* needed for pread_whole to work as expected on 32bits */
7
8 #include "src/mc/remote/RemoteClient.hpp"
9
10 #include "src/mc/mc_smx.hpp"
11 #include "src/mc/sosp/Snapshot.hpp"
12 #include "xbt/file.hpp"
13 #include "xbt/log.h"
14
15 #include <fcntl.h>
16 #include <libunwind-ptrace.h>
17 #include <sys/mman.h> // PROT_*
18
19 using simgrid::mc::remote;
20
21 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_process, mc, "MC process information");
22
23 namespace simgrid {
24 namespace mc {
25
26 // ***** Helper stuff
27
28 // List of library which memory segments are not considered:
29 static const std::vector<std::string> filtered_libraries = {
30 #ifdef __linux__
31     "ld",
32 #elif defined __FreeBSD__
33     "ld-elf",
34     "ld-elf32",
35     "libkvm",      /* kernel data access library */
36     "libprocstat", /* process and file information retrieval */
37     "libthr",      /* thread library */
38     "libutil",
39 #endif
40     "libargp", /* workarounds for glibc-less systems */
41     "libasan", /* gcc sanitizers */
42     "libboost_chrono",
43     "libboost_context",
44     "libboost_context-mt",
45     "libboost_stacktrace_addr2line",
46     "libboost_stacktrace_backtrace",
47     "libboost_system",
48     "libboost_thread",
49     "libboost_timer",
50     "libbz2",
51     "libc",
52     "libc++",
53     "libcdt",
54     "libcgraph",
55     "libcrypto",
56     "libcxxrt",
57     "libdl",
58     "libdw",
59     "libelf",
60     "libevent",
61     "libexecinfo",
62     "libflang",
63     "libflangrti",
64     "libgcc_s",
65     "libgfortran",
66     "libimf",
67     "libintlc",
68     "libirng",
69     "liblua5.1",
70     "liblua5.3",
71     "liblzma",
72     "libm",
73     "libomp",
74     "libpapi",
75     "libpcre2",
76     "libpfm",
77     "libpgmath",
78     "libpthread",
79     "libquadmath",
80     "librt",
81     "libstdc++",
82     "libsvml",
83     "libtsan",  /* gcc sanitizers */
84     "libubsan", /* gcc sanitizers */
85     "libunwind",
86     "libunwind-ptrace",
87     "libunwind-x86",
88     "libunwind-x86_64",
89     "libz",
90     "libkrb5support", /*odd behaviour on fedora rawhide ... remove these when fixed*/
91     "libkeyutils",
92     "libunistring",
93     "libbrotlidec",
94     "liblber",
95     "libldap",
96     "libcom_err",
97     "libk5crypto",
98     "libkrb5",
99     "libgssapi_krb5",
100     "libssl",
101     "libpsl",
102     "libssh",
103     "libidn2",
104     "libnghttp2",
105     "libcurl",
106     "libdebuginfod",
107     "libbrotlicommon",
108     "libsasl2",
109     "libresolv",
110     "libcrypt",
111     "libselinux"
112 };
113
114 static bool is_simgrid_lib(const std::string& libname)
115 {
116   return libname == "libsimgrid";
117 }
118
119 static bool is_filtered_lib(const std::string& libname)
120 {
121   return std::find(begin(filtered_libraries), end(filtered_libraries), libname) != end(filtered_libraries);
122 }
123
124 static std::string get_lib_name(const std::string& pathname)
125 {
126   std::string map_basename = simgrid::xbt::Path(pathname).get_base_name();
127   std::string libname;
128
129   size_t pos = map_basename.rfind(".so");
130   if (pos != std::string::npos) {
131     // strip the extension (matching regex "\.so.*$")
132     libname.assign(map_basename, 0, pos);
133
134     // strip the version suffix (matching regex "-[.0-9-]*$")
135     while (true) {
136       pos = libname.rfind('-');
137       if (pos == std::string::npos || libname.find_first_not_of(".0123456789", pos + 1) != std::string::npos)
138         break;
139       libname.erase(pos);
140     }
141   }
142
143   return libname;
144 }
145
146 static ssize_t pread_whole(int fd, void* buf, size_t count, off_t offset)
147 {
148   char* buffer       = (char*)buf;
149   ssize_t real_count = count;
150   while (count) {
151     ssize_t res = pread(fd, buffer, count, offset);
152     if (res > 0) {
153       count -= res;
154       buffer += res;
155       offset += res;
156     } else if (res == 0)
157       return -1;
158     else if (errno != EINTR) {
159       perror("pread_whole");
160       return -1;
161     }
162   }
163   return real_count;
164 }
165
166 static ssize_t pwrite_whole(int fd, const void* buf, size_t count, off_t offset)
167 {
168   const char* buffer = (const char*)buf;
169   ssize_t real_count = count;
170   while (count) {
171     ssize_t res = pwrite(fd, buffer, count, offset);
172     if (res > 0) {
173       count -= res;
174       buffer += res;
175       offset += res;
176     } else if (res == 0)
177       return -1;
178     else if (errno != EINTR)
179       return -1;
180   }
181   return real_count;
182 }
183
184 static pthread_once_t zero_buffer_flag = PTHREAD_ONCE_INIT;
185 static const void* zero_buffer;
186 static const size_t zero_buffer_size = 10 * 4096;
187
188 static void zero_buffer_init()
189 {
190   int fd = open("/dev/zero", O_RDONLY);
191   if (fd < 0)
192     xbt_die("Could not open /dev/zero");
193   zero_buffer = mmap(nullptr, zero_buffer_size, PROT_READ, MAP_SHARED, fd, 0);
194   if (zero_buffer == MAP_FAILED)
195     xbt_die("Could not map the zero buffer");
196   close(fd);
197 }
198
199 int open_vm(pid_t pid, int flags)
200 {
201   const size_t buffer_size = 30;
202   char buffer[buffer_size];
203   int res = snprintf(buffer, buffer_size, "/proc/%lli/mem", (long long)pid);
204   if (res < 0 || (size_t)res >= buffer_size) {
205     errno = ENAMETOOLONG;
206     return -1;
207   }
208   return open(buffer, flags);
209 }
210
211 // ***** Process
212
213 RemoteClient::RemoteClient(pid_t pid, int sockfd) : AddressSpace(this), pid_(pid), channel_(sockfd), running_(true)
214 {
215 }
216
217 void RemoteClient::init()
218 {
219   this->memory_map_ = simgrid::xbt::get_memory_map(this->pid_);
220   this->init_memory_map_info();
221
222   int fd = open_vm(this->pid_, O_RDWR);
223   if (fd < 0)
224     xbt_die("Could not open file for process virtual address space");
225   this->memory_file = fd;
226
227   // Read std_heap (is a struct mdesc*):
228   const simgrid::mc::Variable* std_heap_var = this->find_variable("__mmalloc_default_mdp");
229   if (not std_heap_var)
230     xbt_die("No heap information in the target process");
231   if (not std_heap_var->address)
232     xbt_die("No constant address for this variable");
233   this->read_bytes(&this->heap_address, sizeof(mdesc*), remote(std_heap_var->address));
234
235   this->smx_actors_infos.clear();
236   this->smx_dead_actors_infos.clear();
237   this->unw_addr_space            = simgrid::mc::UnwindContext::createUnwindAddressSpace();
238   this->unw_underlying_addr_space = simgrid::unw::create_addr_space();
239   this->unw_underlying_context    = simgrid::unw::create_context(this->unw_underlying_addr_space, this->pid_);
240 }
241
242 RemoteClient::~RemoteClient()
243 {
244   if (this->memory_file >= 0)
245     close(this->memory_file);
246
247   if (this->unw_underlying_addr_space != unw_local_addr_space) {
248     if (this->unw_underlying_addr_space)
249       unw_destroy_addr_space(this->unw_underlying_addr_space);
250     if (this->unw_underlying_context)
251       _UPT_destroy(this->unw_underlying_context);
252   }
253
254   unw_destroy_addr_space(this->unw_addr_space);
255 }
256
257 /** Refresh the information about the process
258  *
259  *  Do not use directly, this is used by the getters when appropriate
260  *  in order to have fresh data.
261  */
262 void RemoteClient::refresh_heap()
263 {
264   // Read/dereference/refresh the std_heap pointer:
265   if (not this->heap)
266     this->heap.reset(new s_xbt_mheap_t());
267   this->read_bytes(this->heap.get(), sizeof(mdesc), remote(this->heap_address));
268   this->cache_flags_ |= RemoteClient::cache_heap;
269 }
270
271 /** Refresh the information about the process
272  *
273  *  Do not use directly, this is used by the getters when appropriate
274  *  in order to have fresh data.
275  * */
276 void RemoteClient::refresh_malloc_info()
277 {
278   // Refresh process->heapinfo:
279   if (this->cache_flags_ & RemoteClient::cache_malloc)
280     return;
281   size_t count = this->heap->heaplimit + 1;
282   if (this->heap_info.size() < count)
283     this->heap_info.resize(count);
284   this->read_bytes(this->heap_info.data(), count * sizeof(malloc_info), remote(this->heap->heapinfo));
285   this->cache_flags_ |= RemoteClient::cache_malloc;
286 }
287
288 /** @brief Finds the range of the different memory segments and binary paths */
289 void RemoteClient::init_memory_map_info()
290 {
291   XBT_DEBUG("Get debug information ...");
292   this->maestro_stack_start_ = nullptr;
293   this->maestro_stack_end_   = nullptr;
294   this->object_infos.resize(0);
295   this->binary_info     = nullptr;
296   this->libsimgrid_info = nullptr;
297
298   std::vector<simgrid::xbt::VmMap> const& maps = this->memory_map_;
299
300   const char* current_name = nullptr;
301
302   this->object_infos.clear();
303
304   for (size_t i = 0; i < maps.size(); i++) {
305     simgrid::xbt::VmMap const& reg = maps[i];
306     const char* pathname           = maps[i].pathname.c_str();
307
308     // Nothing to do
309     if (maps[i].pathname.empty()) {
310       current_name = nullptr;
311       continue;
312     }
313
314     // [stack], [vvar], [vsyscall], [vdso] ...
315     if (pathname[0] == '[') {
316       if ((reg.prot & PROT_WRITE) && not memcmp(pathname, "[stack]", 7)) {
317         this->maestro_stack_start_ = remote(reg.start_addr);
318         this->maestro_stack_end_   = remote(reg.end_addr);
319       }
320       current_name = nullptr;
321       continue;
322     }
323
324     if (current_name && strcmp(current_name, pathname) == 0)
325       continue;
326
327     current_name = pathname;
328     if (not(reg.prot & PROT_READ) && (reg.prot & PROT_EXEC))
329       continue;
330
331     const bool is_executable = not i;
332     std::string libname;
333     if (not is_executable) {
334       libname = get_lib_name(pathname);
335       if (is_filtered_lib(libname)) {
336         continue;
337       }
338     }
339
340     std::shared_ptr<simgrid::mc::ObjectInformation> info =
341         simgrid::mc::createObjectInformation(this->memory_map_, pathname);
342     this->object_infos.push_back(info);
343     if (is_executable)
344       this->binary_info = info;
345     else if (is_simgrid_lib(libname))
346       this->libsimgrid_info = info;
347   }
348
349   // Resolve time (including across different objects):
350   for (auto const& object_info : this->object_infos)
351     postProcessObjectInformation(this, object_info.get());
352
353   xbt_assert(this->maestro_stack_start_, "Did not find maestro_stack_start");
354   xbt_assert(this->maestro_stack_end_, "Did not find maestro_stack_end");
355
356   XBT_DEBUG("Get debug information done !");
357 }
358
359 std::shared_ptr<simgrid::mc::ObjectInformation> RemoteClient::find_object_info(RemotePtr<void> addr) const
360 {
361   for (auto const& object_info : this->object_infos)
362     if (addr.address() >= (std::uint64_t)object_info->start && addr.address() <= (std::uint64_t)object_info->end)
363       return object_info;
364   return nullptr;
365 }
366
367 std::shared_ptr<ObjectInformation> RemoteClient::find_object_info_exec(RemotePtr<void> addr) const
368 {
369   for (std::shared_ptr<ObjectInformation> const& info : this->object_infos)
370     if (addr.address() >= (std::uint64_t)info->start_exec && addr.address() <= (std::uint64_t)info->end_exec)
371       return info;
372   return nullptr;
373 }
374
375 std::shared_ptr<ObjectInformation> RemoteClient::find_object_info_rw(RemotePtr<void> addr) const
376 {
377   for (std::shared_ptr<ObjectInformation> const& info : this->object_infos)
378     if (addr.address() >= (std::uint64_t)info->start_rw && addr.address() <= (std::uint64_t)info->end_rw)
379       return info;
380   return nullptr;
381 }
382
383 simgrid::mc::Frame* RemoteClient::find_function(RemotePtr<void> ip) const
384 {
385   std::shared_ptr<simgrid::mc::ObjectInformation> info = this->find_object_info_exec(ip);
386   return info ? info->find_function((void*)ip.address()) : nullptr;
387 }
388
389 /** Find (one occurrence of) the named variable definition
390  */
391 const simgrid::mc::Variable* RemoteClient::find_variable(const char* name) const
392 {
393   // First lookup the variable in the executable shared object.
394   // A global variable used directly by the executable code from a library
395   // is reinstantiated in the executable memory .data/.bss.
396   // We need to look up the variable in the executable first.
397   if (this->binary_info) {
398     std::shared_ptr<simgrid::mc::ObjectInformation> const& info = this->binary_info;
399     const simgrid::mc::Variable* var                            = info->find_variable(name);
400     if (var)
401       return var;
402   }
403
404   for (std::shared_ptr<simgrid::mc::ObjectInformation> const& info : this->object_infos) {
405     const simgrid::mc::Variable* var = info->find_variable(name);
406     if (var)
407       return var;
408   }
409
410   return nullptr;
411 }
412
413 void RemoteClient::read_variable(const char* name, void* target, size_t size) const
414 {
415   const simgrid::mc::Variable* var = this->find_variable(name);
416   xbt_assert(var, "Variable %s not found", name);
417   xbt_assert(var->address, "No simple location for this variable");
418   xbt_assert(var->type->full_type, "Partial type for %s, cannot check size", name);
419   xbt_assert((size_t)var->type->full_type->byte_size == size, "Unexpected size for %s (expected %zu, was %zu)", name,
420              size, (size_t)var->type->full_type->byte_size);
421   this->read_bytes(target, size, remote(var->address));
422 }
423
424 std::string RemoteClient::read_string(RemotePtr<char> address) const
425 {
426   if (not address)
427     return {};
428
429   std::vector<char> res(128);
430   off_t off = 0;
431
432   while (1) {
433     ssize_t c = pread(this->memory_file, res.data() + off, res.size() - off, (off_t)address.address() + off);
434     if (c == -1 && errno == EINTR)
435       continue;
436     xbt_assert(c > 0, "Could not read string from remote process");
437
438     void* p = memchr(res.data() + off, '\0', c);
439     if (p)
440       return std::string(res.data());
441
442     off += c;
443     if (off == (off_t)res.size())
444       res.resize(res.size() * 2);
445   }
446 }
447
448 void* RemoteClient::read_bytes(void* buffer, std::size_t size, RemotePtr<void> address, ReadOptions /*options*/) const
449 {
450   if (pread_whole(this->memory_file, buffer, size, (size_t)address.address()) < 0)
451     xbt_die("Read at %p from process %lli failed", (void*)address.address(), (long long)this->pid_);
452   return buffer;
453 }
454
455 /** Write data to a process memory
456  *
457  *  @param buffer   local memory address (source)
458  *  @param len      data size
459  *  @param address  target process memory address (target)
460  */
461 void RemoteClient::write_bytes(const void* buffer, size_t len, RemotePtr<void> address)
462 {
463   if (pwrite_whole(this->memory_file, buffer, len, (size_t)address.address()) < 0)
464     xbt_die("Write to process %lli failed", (long long)this->pid_);
465 }
466
467 void RemoteClient::clear_bytes(RemotePtr<void> address, size_t len)
468 {
469   pthread_once(&zero_buffer_flag, zero_buffer_init);
470   while (len) {
471     size_t s = len > zero_buffer_size ? zero_buffer_size : len;
472     this->write_bytes(zero_buffer, s, address);
473     address = remote((char*)address.address() + s);
474     len -= s;
475   }
476 }
477
478 void RemoteClient::ignore_region(std::uint64_t addr, std::size_t size)
479 {
480   IgnoredRegion region;
481   region.addr = addr;
482   region.size = size;
483
484   if (ignored_regions_.empty()) {
485     ignored_regions_.push_back(region);
486     return;
487   }
488
489   unsigned int cursor           = 0;
490   IgnoredRegion* current_region = nullptr;
491
492   int start = 0;
493   int end   = ignored_regions_.size() - 1;
494   while (start <= end) {
495     cursor         = (start + end) / 2;
496     current_region = &ignored_regions_[cursor];
497     if (current_region->addr == addr) {
498       if (current_region->size == size)
499         return;
500       else if (current_region->size < size)
501         start = cursor + 1;
502       else
503         end = cursor - 1;
504     } else if (current_region->addr < addr)
505       start = cursor + 1;
506     else
507       end = cursor - 1;
508   }
509
510   std::size_t position;
511   if (current_region->addr == addr) {
512     if (current_region->size < size)
513       position = cursor + 1;
514     else
515       position = cursor;
516   } else if (current_region->addr < addr)
517     position = cursor + 1;
518   else
519     position = cursor;
520   ignored_regions_.insert(ignored_regions_.begin() + position, region);
521 }
522
523 void RemoteClient::ignore_heap(IgnoredHeapRegion const& region)
524 {
525   if (ignored_heap_.empty()) {
526     ignored_heap_.push_back(std::move(region));
527     return;
528   }
529
530   typedef std::vector<IgnoredHeapRegion>::size_type size_type;
531
532   size_type start = 0;
533   size_type end   = ignored_heap_.size() - 1;
534
535   // Binary search the position of insertion:
536   size_type cursor;
537   while (start <= end) {
538     cursor               = start + (end - start) / 2;
539     auto& current_region = ignored_heap_[cursor];
540     if (current_region.address == region.address)
541       return;
542     else if (current_region.address < region.address)
543       start = cursor + 1;
544     else if (cursor != 0)
545       end = cursor - 1;
546     // Avoid underflow:
547     else
548       break;
549   }
550
551   // Insert it mc_heap_ignore_region_t:
552   if (ignored_heap_[cursor].address < region.address)
553     ++cursor;
554   ignored_heap_.insert(ignored_heap_.begin() + cursor, region);
555 }
556
557 void RemoteClient::unignore_heap(void* address, size_t size)
558 {
559   typedef std::vector<IgnoredHeapRegion>::size_type size_type;
560
561   size_type start = 0;
562   size_type end   = ignored_heap_.size() - 1;
563
564   // Binary search:
565   size_type cursor;
566   while (start <= end) {
567     cursor       = (start + end) / 2;
568     auto& region = ignored_heap_[cursor];
569     if (region.address < address)
570       start = cursor + 1;
571     else if ((char*)region.address <= ((char*)address + size)) {
572       ignored_heap_.erase(ignored_heap_.begin() + cursor);
573       return;
574     } else if (cursor != 0)
575       end = cursor - 1;
576     // Avoid underflow:
577     else
578       break;
579   }
580 }
581
582 void RemoteClient::ignore_local_variable(const char* var_name, const char* frame_name)
583 {
584   if (frame_name != nullptr && strcmp(frame_name, "*") == 0)
585     frame_name = nullptr;
586   for (std::shared_ptr<simgrid::mc::ObjectInformation> const& info : this->object_infos)
587     info->remove_local_variable(var_name, frame_name);
588 }
589
590 std::vector<simgrid::mc::ActorInformation>& RemoteClient::actors()
591 {
592   this->refresh_simix();
593   return smx_actors_infos;
594 }
595
596 std::vector<simgrid::mc::ActorInformation>& RemoteClient::dead_actors()
597 {
598   this->refresh_simix();
599   return smx_dead_actors_infos;
600 }
601
602 void RemoteClient::dump_stack()
603 {
604   unw_addr_space_t as = unw_create_addr_space(&_UPT_accessors, BYTE_ORDER);
605   if (as == nullptr) {
606     XBT_ERROR("Could not initialize ptrace address space");
607     return;
608   }
609
610   void* context = _UPT_create(this->pid_);
611   if (context == nullptr) {
612     unw_destroy_addr_space(as);
613     XBT_ERROR("Could not initialize ptrace context");
614     return;
615   }
616
617   unw_cursor_t cursor;
618   if (unw_init_remote(&cursor, as, context) != 0) {
619     _UPT_destroy(context);
620     unw_destroy_addr_space(as);
621     XBT_ERROR("Could not initialiez ptrace cursor");
622     return;
623   }
624
625   simgrid::mc::dumpStack(stderr, std::move(cursor));
626
627   _UPT_destroy(context);
628   unw_destroy_addr_space(as);
629 }
630
631 bool RemoteClient::actor_is_enabled(aid_t pid)
632 {
633   s_mc_message_actor_enabled_t msg{MC_MESSAGE_ACTOR_ENABLED, pid};
634   process()->get_channel().send(msg);
635   char buff[MC_MESSAGE_LENGTH];
636   ssize_t received = process()->get_channel().receive(buff, MC_MESSAGE_LENGTH, true);
637   xbt_assert(received == sizeof(s_mc_message_int_t), "Unexpected size in answer to ACTOR_ENABLED");
638   return ((s_mc_message_int_t*)buff)->value;
639 }
640 }
641 }