Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Remove ugly #include
[simgrid.git] / src / mc / mc_process.cpp
1 /* Copyright (c) 2014-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <assert.h>
8 #include <stddef.h>
9 #include <stdbool.h>
10 #include <stdint.h>
11 #include <errno.h>
12
13 #include <sys/types.h>
14 #include <fcntl.h>
15 #include <unistd.h>
16 #include <regex.h>
17 #include <sys/mman.h> // PROT_*
18
19 #include <pthread.h>
20
21 #include <libgen.h>
22
23 #include <libunwind.h>
24 #include <libunwind-ptrace.h>
25
26 #include <xbt/mmalloc.h>
27
28 #include "mc_process.h"
29 #include "mc_object_info.h"
30 #include "AddressSpace.hpp"
31 #include "mc_unw.h"
32 #include "mc_snapshot.h"
33 #include "mc_ignore.h"
34 #include "mc_smx.h"
35 #include "mc_server.h"
36
37 using simgrid::mc::remote;
38
39 extern "C" {
40
41 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_process, mc,
42                                 "MC process information");
43
44 // ***** Helper stuff
45
46 #define SO_RE "\\.so[\\.0-9]*$"
47 #define VERSION_RE "-[\\.0-9]*$"
48
49 static const char *const FILTERED_LIBS[] = {
50   "libstdc++",
51   "libboost_context",
52   "libc++",
53   "libm",
54   "libgcc_s",
55   "libpthread",
56   "libunwind",
57   "libunwind-x86_64",
58   "libunwind-x86",
59   "libunwind-ptrace",
60   "libdw",
61   "libdl",
62   "librt",
63   "liblzma",
64   "libelf",
65   "libbz2",
66   "libz",
67   "libelf",
68   "libc",
69   "ld"
70 };
71
72 static bool MC_is_simgrid_lib(const char* libname)
73 {
74   return !strcmp(libname, "libsimgrid");
75 }
76
77 static bool MC_is_filtered_lib(const char* libname)
78 {
79   for (const char* filtered_lib : FILTERED_LIBS)
80     if (strcmp(libname, filtered_lib)==0)
81       return true;
82   return false;
83 }
84
85 struct s_mc_memory_map_re {
86   regex_t so_re;
87   regex_t version_re;
88 };
89
90 static char* MC_get_lib_name(const char* pathname, struct s_mc_memory_map_re* res)
91 {
92   const char* map_basename = basename((char*) pathname);
93
94   regmatch_t match;
95   if(regexec(&res->so_re, map_basename, 1, &match, 0))
96     return NULL;
97
98   char* libname = strndup(map_basename, match.rm_so);
99
100   // Strip the version suffix:
101   if(libname && !regexec(&res->version_re, libname, 1, &match, 0)) {
102     char* temp = libname;
103     libname = strndup(temp, match.rm_so);
104     free(temp);
105   }
106
107   return libname;
108 }
109
110 static ssize_t pread_whole(int fd, void *buf, size_t count, off_t offset)
111 {
112   char* buffer = (char*) buf;
113   ssize_t real_count = count;
114   while (count) {
115     ssize_t res = pread(fd, buffer, count, offset);
116     if (res > 0) {
117       count  -= res;
118       buffer += res;
119       offset += res;
120     } else if (res==0) {
121       return -1;
122     } else if (errno != EINTR) {
123       return -1;
124     }
125   }
126   return real_count;
127 }
128
129 static ssize_t pwrite_whole(int fd, const void *buf, size_t count, off_t offset)
130 {
131   const char* buffer = (const char*) buf;
132   ssize_t real_count = count;
133   while (count) {
134     ssize_t res = pwrite(fd, buffer, count, offset);
135     if (res > 0) {
136       count  -= res;
137       buffer += res;
138       offset += res;
139     } else if (res==0) {
140       return -1;
141     } else if (errno != EINTR) {
142       return -1;
143     }
144   }
145   return real_count;
146 }
147
148 static pthread_once_t zero_buffer_flag = PTHREAD_ONCE_INIT;
149 static const void* zero_buffer;
150 static const size_t zero_buffer_size = 10 * 4096;
151
152 static void MC_zero_buffer_init(void)
153 {
154   int fd = open("/dev/zero", O_RDONLY);
155   if (fd<0)
156     xbt_die("Could not open /dev/zero");
157   zero_buffer = mmap(NULL, zero_buffer_size, PROT_READ, MAP_SHARED, fd, 0);
158   if (zero_buffer == MAP_FAILED)
159     xbt_die("Could not map the zero buffer");
160   close(fd);
161 }
162
163 }
164
165 namespace simgrid {
166 namespace mc {
167
168 int open_vm(pid_t pid, int flags)
169 {
170   const size_t buffer_size = 30;
171   char buffer[buffer_size];
172   int res = snprintf(buffer, buffer_size, "/proc/%lli/mem", (long long) pid);
173   if (res < 0 || (size_t) res >= buffer_size) {
174     errno = ENAMETOOLONG;
175     return -1;
176   }
177   return open(buffer, flags);
178 }
179
180   
181 }
182 }
183
184 // ***** Process
185
186 namespace simgrid {
187 namespace mc {
188
189 Process::Process(pid_t pid, int sockfd)
190 {
191   Process* process = this;
192
193   process->process_flags = MC_PROCESS_NO_FLAG;
194   process->socket_ = sockfd;
195   process->pid_ = pid;
196   if (pid==getpid())
197     process->process_flags |= MC_PROCESS_SELF_FLAG;
198   process->running_ = true;
199   process->status_ = 0;
200   process->memory_map_ = get_memory_map(pid);
201   process->cache_flags = MC_PROCESS_CACHE_FLAG_NONE;
202   process->heap = NULL;
203   process->heap_info = NULL;
204   process->init_memory_map_info();
205
206   // Open the memory file
207   if (process->is_self())
208     process->memory_file = -1;
209   else {
210     int fd = open_vm(process->pid_, O_RDWR);
211     if (fd<0)
212       xbt_die("Could not open file for process virtual address space");
213     process->memory_file = fd;
214   }
215
216   // Read std_heap (is a struct mdesc*):
217   dw_variable_t std_heap_var = process->find_variable("__mmalloc_default_mdp");
218   if (!std_heap_var)
219     xbt_die("No heap information in the target process");
220   if(!std_heap_var->address)
221     xbt_die("No constant address for this variable");
222   process->read_bytes(&process->heap_address, sizeof(struct mdesc*),
223     remote(std_heap_var->address),
224     simgrid::mc::ProcessIndexDisabled);
225
226   process->smx_process_infos = MC_smx_process_info_list_new();
227   process->smx_old_process_infos = MC_smx_process_info_list_new();
228
229   process->unw_addr_space = unw_create_addr_space(&mc_unw_accessors  , __BYTE_ORDER);
230   if (process->process_flags & MC_PROCESS_SELF_FLAG) {
231     process->unw_underlying_addr_space = unw_local_addr_space;
232     process->unw_underlying_context = NULL;
233   } else {
234     process->unw_underlying_addr_space = unw_create_addr_space(&mc_unw_vmread_accessors, __BYTE_ORDER);
235     process->unw_underlying_context = _UPT_create(pid);
236   }
237 }
238
239 Process::~Process()
240 {
241   Process* process = this;
242
243   if (this->socket_ >= 0 && close(this->socket_) < 0)
244     xbt_die("Could not close communication socket");
245
246   process->process_flags = MC_PROCESS_NO_FLAG;
247   process->pid_ = 0;
248
249   process->maestro_stack_start_ = nullptr;
250   process->maestro_stack_end_ = nullptr;
251
252   xbt_dynar_free(&process->smx_process_infos);
253   xbt_dynar_free(&process->smx_old_process_infos);
254
255   if (process->memory_file >= 0) {
256     close(process->memory_file);
257   }
258
259   if (process->unw_underlying_addr_space != unw_local_addr_space) {
260     unw_destroy_addr_space(process->unw_underlying_addr_space);
261     _UPT_destroy(process->unw_underlying_context);
262   }
263   process->unw_underlying_context = NULL;
264   process->unw_underlying_addr_space = NULL;
265
266   unw_destroy_addr_space(process->unw_addr_space);
267   process->unw_addr_space = NULL;
268
269   process->cache_flags = MC_PROCESS_CACHE_FLAG_NONE;
270
271   free(process->heap);
272   process->heap = NULL;
273
274   free(process->heap_info);
275   process->heap_info = NULL;
276 }
277
278 /** Refresh the information about the process
279  *
280  *  Do not use direclty, this is used by the getters when appropriate
281  *  in order to have fresh data.
282  */
283 void Process::refresh_heap()
284 {
285   xbt_assert(mc_mode == MC_MODE_SERVER);
286   xbt_assert(!this->is_self());
287   // Read/dereference/refresh the std_heap pointer:
288   if (!this->heap) {
289     this->heap = (struct mdesc*) malloc(sizeof(struct mdesc));
290   }
291   this->read_bytes(this->heap, sizeof(struct mdesc), remote(this->heap_address),
292     simgrid::mc::ProcessIndexDisabled);
293   this->cache_flags |= MC_PROCESS_CACHE_FLAG_HEAP;
294 }
295
296 /** Refresh the information about the process
297  *
298  *  Do not use direclty, this is used by the getters when appropriate
299  *  in order to have fresh data.
300  * */
301 void Process::refresh_malloc_info()
302 {
303   xbt_assert(mc_mode == MC_MODE_SERVER);
304   xbt_assert(!this->is_self());
305   if (!(this->cache_flags & MC_PROCESS_CACHE_FLAG_HEAP))
306     this->refresh_heap();
307   // Refresh process->heapinfo:
308   size_t malloc_info_bytesize =
309     (this->heap->heaplimit + 1) * sizeof(malloc_info);
310   this->heap_info = (malloc_info*) realloc(this->heap_info, malloc_info_bytesize);
311   this->read_bytes(this->heap_info, malloc_info_bytesize,
312     remote(this->heap->heapinfo), simgrid::mc::ProcessIndexDisabled);
313   this->cache_flags |= MC_PROCESS_CACHE_FLAG_MALLOC_INFO;
314 }
315
316 /** @brief Finds the range of the different memory segments and binary paths */
317 void Process::init_memory_map_info()
318 {
319   XBT_DEBUG("Get debug information ...");
320   this->maestro_stack_start_ = nullptr;
321   this->maestro_stack_end_ = nullptr;
322   this->object_infos.resize(0);
323   this->binary_info = NULL;
324   this->libsimgrid_info = NULL;
325
326   struct s_mc_memory_map_re res;
327
328   if(regcomp(&res.so_re, SO_RE, 0) || regcomp(&res.version_re, VERSION_RE, 0))
329     xbt_die(".so regexp did not compile");
330
331   std::vector<simgrid::mc::VmMap> const& maps = this->memory_map_;
332
333   const char* current_name = NULL;
334
335   this->object_infos.resize(0);
336
337   for (size_t i=0; i < maps.size(); i++) {
338     simgrid::mc::VmMap const& reg = maps[i];
339     const char* pathname = maps[i].pathname.c_str();
340
341     // Nothing to do
342     if (maps[i].pathname.empty()) {
343       current_name = NULL;
344       continue;
345     }
346
347     // [stack], [vvar], [vsyscall], [vdso] ...
348     if (pathname[0] == '[') {
349       if ((reg.prot & PROT_WRITE) && !memcmp(pathname, "[stack]", 7)) {
350         this->maestro_stack_start_ = remote(reg.start_addr);
351         this->maestro_stack_end_ = remote(reg.end_addr);
352       }
353       current_name = NULL;
354       continue;
355     }
356
357     if (current_name && strcmp(current_name, pathname)==0)
358       continue;
359
360     current_name = pathname;
361     if (!(reg.prot & PROT_READ) && (reg.prot & PROT_EXEC))
362       continue;
363
364     const bool is_executable = !i;
365     char* libname = NULL;
366     if (!is_executable) {
367       libname = MC_get_lib_name(pathname, &res);
368       if(!libname)
369         continue;
370       if (MC_is_filtered_lib(libname)) {
371         free(libname);
372         continue;
373       }
374     }
375
376     std::shared_ptr<s_mc_object_info_t> info =
377       MC_find_object_info(this->memory_map_, pathname, is_executable);
378     this->object_infos.push_back(info);
379     if (is_executable)
380       this->binary_info = info;
381     else if (libname && MC_is_simgrid_lib(libname))
382       this->libsimgrid_info = info;
383     free(libname);
384   }
385
386   regfree(&res.so_re);
387   regfree(&res.version_re);
388
389   // Resolve time (including accross differents objects):
390   for (auto const& object_info : this->object_infos)
391     MC_post_process_object_info(this, object_info.get());
392
393   xbt_assert(this->maestro_stack_start_, "Did not find maestro_stack_start");
394   xbt_assert(this->maestro_stack_end_, "Did not find maestro_stack_end");
395
396   XBT_DEBUG("Get debug information done !");
397 }
398
399 std::shared_ptr<s_mc_object_info_t> Process::find_object_info(remote_ptr<void> addr) const
400 {
401   for (auto const& object_info : this->object_infos) {
402     if (addr.address() >= (std::uint64_t)object_info->start
403         && addr.address() <= (std::uint64_t)object_info->end) {
404       return object_info;
405     }
406   }
407   return NULL;
408 }
409
410 std::shared_ptr<s_mc_object_info_t> Process::find_object_info_exec(remote_ptr<void> addr) const
411 {
412   for (std::shared_ptr<s_mc_object_info> const& info : this->object_infos) {
413     if (addr.address() >= (std::uint64_t) info->start_exec
414         && addr.address() <= (std::uint64_t) info->end_exec) {
415       return info;
416     }
417   }
418   return nullptr;
419 }
420
421 std::shared_ptr<s_mc_object_info_t> Process::find_object_info_rw(remote_ptr<void> addr) const
422 {
423   for (std::shared_ptr<s_mc_object_info> const& info : this->object_infos) {
424     if (addr.address() >= (std::uint64_t)info->start_rw
425         && addr.address() <= (std::uint64_t)info->end_rw) {
426       return info;
427     }
428   }
429   return nullptr;
430 }
431
432 dw_frame_t Process::find_function(remote_ptr<void> ip) const
433 {
434   std::shared_ptr<s_mc_object_info_t> info = this->find_object_info_exec(ip);
435   if (!info)
436     return nullptr;
437   else
438     return MC_file_object_info_find_function(info.get(), (void*) ip.address());
439 }
440
441 /** Find (one occurence of) the named variable definition
442  */
443 dw_variable_t Process::find_variable(const char* name) const
444 {
445   // First lookup the variable in the executable shared object.
446   // A global variable used directly by the executable code from a library
447   // is reinstanciated in the executable memory .data/.bss.
448   // We need to look up the variable in the execvutable first.
449   if (this->binary_info) {
450     std::shared_ptr<s_mc_object_info_t> const& info = this->binary_info;
451     dw_variable_t var = MC_file_object_info_find_variable_by_name(info.get(), name);
452     if (var)
453       return var;
454   }
455
456   for (std::shared_ptr<s_mc_object_info_t> const& info : this->object_infos) {
457     dw_variable_t var = MC_file_object_info_find_variable_by_name(info.get(), name);
458     if (var)
459       return var;
460   }
461
462   return NULL;
463 }
464
465 void Process::read_variable(const char* name, void* target, size_t size) const
466 {
467   dw_variable_t var = this->find_variable(name);
468   if (!var->address)
469     xbt_die("No simple location for this variable");
470   if (!var->type->full_type)
471     xbt_die("Partial type for %s, cannot check size", name);
472   if ((size_t) var->type->full_type->byte_size != size)
473     xbt_die("Unexpected size for %s (expected %zi, was %zi)",
474       name, size, (size_t) var->type->full_type->byte_size);
475   this->read_bytes(target, size, remote(var->address));
476 }
477
478 char* Process::read_string(remote_ptr<void> address) const
479 {
480   if (!address)
481     return NULL;
482   if (this->is_self())
483     return xbt_strdup((char*) address.address());
484
485   off_t len = 128;
486   char* res = (char*) malloc(len);
487   off_t off = 0;
488
489   while (1) {
490     ssize_t c = pread(this->memory_file, res + off, len - off, (off_t) address.address() + off);
491     if (c == -1) {
492       if (errno == EINTR)
493         continue;
494       else
495         xbt_die("Could not read from from remote process");
496     }
497     if (c==0)
498       xbt_die("Could not read string from remote process");
499
500     void* p = memchr(res + off, '\0', c);
501     if (p)
502       return res;
503
504     off += c;
505     if (off == len) {
506       len *= 2;
507       res = (char*) realloc(res, len);
508     }
509   }
510 }
511
512 const void *Process::read_bytes(void* buffer, std::size_t size,
513   remote_ptr<void> address, int process_index,
514   AddressSpace::ReadMode mode) const
515 {
516   if (process_index != simgrid::mc::ProcessIndexDisabled) {
517     std::shared_ptr<s_mc_object_info_t> const& info =
518       this->find_object_info_rw((void*)address.address());
519     // Segment overlap is not handled.
520     if (MC_object_info_is_privatized(info.get())) {
521       if (process_index < 0)
522         xbt_die("Missing process index");
523       if (process_index >= (int) MC_smpi_process_count())
524         xbt_die("Invalid process index");
525
526       // Read smpi_privatisation_regions from MCed:
527       smpi_privatisation_region_t remote_smpi_privatisation_regions =
528         mc_model_checker->process().read_variable<smpi_privatisation_region_t>(
529           "smpi_privatisation_regions");
530
531       s_smpi_privatisation_region_t privatisation_region =
532         mc_model_checker->process().read<s_smpi_privatisation_region_t>(
533           remote(remote_smpi_privatisation_regions + process_index));
534
535       // Address translation in the privaization segment:
536       size_t offset = address.address() - (std::uint64_t)info->start_rw;
537       address = remote((char*)privatisation_region.address + offset);
538     }
539   }
540
541   if (this->is_self()) {
542     if (mode == simgrid::mc::AddressSpace::Lazy)
543       return (void*)address.address();
544     else {
545       memcpy(buffer, (void*)address.address(), size);
546       return buffer;
547     }
548   } else {
549     if (pread_whole(this->memory_file, buffer, size, (off_t) address.address()) < 0)
550       xbt_die("Read from process %lli failed", (long long) this->pid_);
551     return buffer;
552   }
553 }
554
555 /** Write data to a process memory
556  *
557  *  @param process the process
558  *  @param local   local memory address (source)
559  *  @param remote  target process memory address (target)
560  *  @param len     data size
561  */
562 void Process::write_bytes(const void* buffer, size_t len, remote_ptr<void> address)
563 {
564   if (this->is_self()) {
565     memcpy((void*)address.address(), buffer, len);
566   } else {
567     if (pwrite_whole(this->memory_file, buffer, len, address.address()) < 0)
568       xbt_die("Write to process %lli failed", (long long) this->pid_);
569   }
570 }
571
572 void Process::clear_bytes(remote_ptr<void> address, size_t len)
573 {
574   if (this->is_self()) {
575     memset((void*)address.address(), 0, len);
576   } else {
577     pthread_once(&zero_buffer_flag, MC_zero_buffer_init);
578     while (len) {
579       size_t s = len > zero_buffer_size ? zero_buffer_size : len;
580       this->write_bytes(zero_buffer, s, address);
581       address = remote((char*) address.address() + s);
582       len -= s;
583     }
584   }
585 }
586
587 void Process::ignore_region(std::uint64_t addr, std::size_t size)
588 {
589   IgnoredRegion region;
590   region.addr = addr;
591   region.size = size;
592
593   if (ignored_regions_.empty()) {
594     ignored_regions_.push_back(region);
595     return;
596   }
597
598   unsigned int cursor = 0;
599   IgnoredRegion* current_region = nullptr;
600
601   int start = 0;
602   int end = ignored_regions_.size() - 1;
603   while (start <= end) {
604     cursor = (start + end) / 2;
605     current_region = &ignored_regions_[cursor];
606     if (current_region->addr == addr) {
607       if (current_region->size == size)
608         return;
609       else if (current_region->size < size)
610         start = cursor + 1;
611       else
612         end = cursor - 1;
613     } else if (current_region->addr < addr)
614       start = cursor + 1;
615     else
616       end = cursor - 1;
617   }
618
619   std::size_t position;
620   if (current_region->addr == addr) {
621     if (current_region->size < size) {
622       position = cursor + 1;
623     } else {
624       position = cursor;
625     }
626   } else if (current_region->addr < addr) {
627     position = cursor + 1;
628   } else {
629     position = cursor;
630   }
631   ignored_regions_.insert(
632     ignored_regions_.begin() + position, region);
633 }
634
635 }
636 }