sanitizer_linux.cc revision 6d40a0a2ffa6735e45bd1d62c94ff725fd3e8b71
1//===-- sanitizer_linux.cc ------------------------------------------------===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file is shared between AddressSanitizer and ThreadSanitizer
11// run-time libraries and implements linux-specific functions from
12// sanitizer_libc.h.
13//===----------------------------------------------------------------------===//
14
15#include "sanitizer_platform.h"
16#if SANITIZER_LINUX
17
18#include "sanitizer_common.h"
19#include "sanitizer_internal_defs.h"
20#include "sanitizer_libc.h"
21#include "sanitizer_linux.h"
22#include "sanitizer_mutex.h"
23#include "sanitizer_placement_new.h"
24#include "sanitizer_procmaps.h"
25#include "sanitizer_stacktrace.h"
26#include "sanitizer_symbolizer.h"
27
28#include <asm/param.h>
29#include <dlfcn.h>
30#include <errno.h>
31#include <fcntl.h>
32#if !SANITIZER_ANDROID
33#include <link.h>
34#endif
35#include <pthread.h>
36#include <sched.h>
37#include <sys/mman.h>
38#include <sys/ptrace.h>
39#include <sys/resource.h>
40#include <sys/stat.h>
41#include <sys/syscall.h>
42#include <sys/time.h>
43#include <sys/types.h>
44#include <unistd.h>
45#include <unwind.h>
46
47#if !SANITIZER_ANDROID
48#include <sys/signal.h>
49#endif
50
51// <linux/time.h>
52struct kernel_timeval {
53  long tv_sec;
54  long tv_usec;
55};
56
57// <linux/futex.h> is broken on some linux distributions.
58const int FUTEX_WAIT = 0;
59const int FUTEX_WAKE = 1;
60
61// Are we using 32-bit or 64-bit syscalls?
62// x32 (which defines __x86_64__) has SANITIZER_WORDSIZE == 32
63// but it still needs to use 64-bit syscalls.
64#if defined(__x86_64__) || SANITIZER_WORDSIZE == 64
65# define SANITIZER_LINUX_USES_64BIT_SYSCALLS 1
66#else
67# define SANITIZER_LINUX_USES_64BIT_SYSCALLS 0
68#endif
69
70namespace __sanitizer {
71
72#ifdef __x86_64__
73#include "sanitizer_syscall_linux_x86_64.inc"
74#else
75#include "sanitizer_syscall_generic.inc"
76#endif
77
78// --------------- sanitizer_libc.h
79uptr internal_mmap(void *addr, uptr length, int prot, int flags,
80                    int fd, u64 offset) {
81#if SANITIZER_LINUX_USES_64BIT_SYSCALLS
82  return internal_syscall(__NR_mmap, addr, length, prot, flags, fd, offset);
83#else
84  return internal_syscall(__NR_mmap2, addr, length, prot, flags, fd, offset);
85#endif
86}
87
88uptr internal_munmap(void *addr, uptr length) {
89  return internal_syscall(__NR_munmap, addr, length);
90}
91
92uptr internal_close(fd_t fd) {
93  return internal_syscall(__NR_close, fd);
94}
95
96uptr internal_open(const char *filename, int flags) {
97  return internal_syscall(__NR_open, filename, flags);
98}
99
100uptr internal_open(const char *filename, int flags, u32 mode) {
101  return internal_syscall(__NR_open, filename, flags, mode);
102}
103
104uptr OpenFile(const char *filename, bool write) {
105  return internal_open(filename,
106      write ? O_WRONLY | O_CREAT /*| O_CLOEXEC*/ : O_RDONLY, 0660);
107}
108
109uptr internal_read(fd_t fd, void *buf, uptr count) {
110  sptr res;
111  HANDLE_EINTR(res, (sptr)internal_syscall(__NR_read, fd, buf, count));
112  return res;
113}
114
115uptr internal_write(fd_t fd, const void *buf, uptr count) {
116  sptr res;
117  HANDLE_EINTR(res, (sptr)internal_syscall(__NR_write, fd, buf, count));
118  return res;
119}
120
121#if !SANITIZER_LINUX_USES_64BIT_SYSCALLS
122static void stat64_to_stat(struct stat64 *in, struct stat *out) {
123  internal_memset(out, 0, sizeof(*out));
124  out->st_dev = in->st_dev;
125  out->st_ino = in->st_ino;
126  out->st_mode = in->st_mode;
127  out->st_nlink = in->st_nlink;
128  out->st_uid = in->st_uid;
129  out->st_gid = in->st_gid;
130  out->st_rdev = in->st_rdev;
131  out->st_size = in->st_size;
132  out->st_blksize = in->st_blksize;
133  out->st_blocks = in->st_blocks;
134  out->st_atime = in->st_atime;
135  out->st_mtime = in->st_mtime;
136  out->st_ctime = in->st_ctime;
137  out->st_ino = in->st_ino;
138}
139#endif
140
141uptr internal_stat(const char *path, void *buf) {
142#if SANITIZER_LINUX_USES_64BIT_SYSCALLS
143  return internal_syscall(__NR_stat, path, buf);
144#else
145  struct stat64 buf64;
146  int res = internal_syscall(__NR_stat64, path, &buf64);
147  stat64_to_stat(&buf64, (struct stat *)buf);
148  return res;
149#endif
150}
151
152uptr internal_lstat(const char *path, void *buf) {
153#if SANITIZER_LINUX_USES_64BIT_SYSCALLS
154  return internal_syscall(__NR_lstat, path, buf);
155#else
156  struct stat64 buf64;
157  int res = internal_syscall(__NR_lstat64, path, &buf64);
158  stat64_to_stat(&buf64, (struct stat *)buf);
159  return res;
160#endif
161}
162
163uptr internal_fstat(fd_t fd, void *buf) {
164#if SANITIZER_LINUX_USES_64BIT_SYSCALLS
165  return internal_syscall(__NR_fstat, fd, buf);
166#else
167  struct stat64 buf64;
168  int res = internal_syscall(__NR_fstat64, fd, &buf64);
169  stat64_to_stat(&buf64, (struct stat *)buf);
170  return res;
171#endif
172}
173
174uptr internal_filesize(fd_t fd) {
175  struct stat st;
176  if (internal_fstat(fd, &st))
177    return -1;
178  return (uptr)st.st_size;
179}
180
181uptr internal_dup2(int oldfd, int newfd) {
182  return internal_syscall(__NR_dup2, oldfd, newfd);
183}
184
185uptr internal_readlink(const char *path, char *buf, uptr bufsize) {
186  return internal_syscall(__NR_readlink, path, buf, bufsize);
187}
188
189uptr internal_unlink(const char *path) {
190  return internal_syscall(__NR_unlink, path);
191}
192
193uptr internal_sched_yield() {
194  return internal_syscall(__NR_sched_yield);
195}
196
197void internal__exit(int exitcode) {
198  internal_syscall(__NR_exit_group, exitcode);
199  Die();  // Unreachable.
200}
201
202uptr internal_execve(const char *filename, char *const argv[],
203                     char *const envp[]) {
204  return internal_syscall(__NR_execve, filename, argv, envp);
205}
206
207// ----------------- sanitizer_common.h
208bool FileExists(const char *filename) {
209  struct stat st;
210  if (internal_stat(filename, &st))
211    return false;
212  // Sanity check: filename is a regular file.
213  return S_ISREG(st.st_mode);
214}
215
216uptr GetTid() {
217  return internal_syscall(__NR_gettid);
218}
219
220u64 NanoTime() {
221  kernel_timeval tv = {};
222  internal_syscall(__NR_gettimeofday, &tv, 0);
223  return (u64)tv.tv_sec * 1000*1000*1000 + tv.tv_usec * 1000;
224}
225
226// Like getenv, but reads env directly from /proc and does not use libc.
227// This function should be called first inside __asan_init.
228const char *GetEnv(const char *name) {
229  static char *environ;
230  static uptr len;
231  static bool inited;
232  if (!inited) {
233    inited = true;
234    uptr environ_size;
235    len = ReadFileToBuffer("/proc/self/environ",
236                           &environ, &environ_size, 1 << 26);
237  }
238  if (!environ || len == 0) return 0;
239  uptr namelen = internal_strlen(name);
240  const char *p = environ;
241  while (*p != '\0') {  // will happen at the \0\0 that terminates the buffer
242    // proc file has the format NAME=value\0NAME=value\0NAME=value\0...
243    const char* endp =
244        (char*)internal_memchr(p, '\0', len - (p - environ));
245    if (endp == 0)  // this entry isn't NUL terminated
246      return 0;
247    else if (!internal_memcmp(p, name, namelen) && p[namelen] == '=')  // Match.
248      return p + namelen + 1;  // point after =
249    p = endp + 1;
250  }
251  return 0;  // Not found.
252}
253
254extern "C" {
255  SANITIZER_WEAK_ATTRIBUTE extern void *__libc_stack_end;
256}
257
258#if !SANITIZER_GO
259static void ReadNullSepFileToArray(const char *path, char ***arr,
260                                   int arr_size) {
261  char *buff;
262  uptr buff_size = 0;
263  *arr = (char **)MmapOrDie(arr_size * sizeof(char *), "NullSepFileArray");
264  ReadFileToBuffer(path, &buff, &buff_size, 1024 * 1024);
265  (*arr)[0] = buff;
266  int count, i;
267  for (count = 1, i = 1; ; i++) {
268    if (buff[i] == 0) {
269      if (buff[i+1] == 0) break;
270      (*arr)[count] = &buff[i+1];
271      CHECK_LE(count, arr_size - 1);  // FIXME: make this more flexible.
272      count++;
273    }
274  }
275  (*arr)[count] = 0;
276}
277#endif
278
279static void GetArgsAndEnv(char*** argv, char*** envp) {
280#if !SANITIZER_GO
281  if (&__libc_stack_end) {
282#endif
283    uptr* stack_end = (uptr*)__libc_stack_end;
284    int argc = *stack_end;
285    *argv = (char**)(stack_end + 1);
286    *envp = (char**)(stack_end + argc + 2);
287#if !SANITIZER_GO
288  } else {
289    static const int kMaxArgv = 2000, kMaxEnvp = 2000;
290    ReadNullSepFileToArray("/proc/self/cmdline", argv, kMaxArgv);
291    ReadNullSepFileToArray("/proc/self/environ", envp, kMaxEnvp);
292  }
293#endif
294}
295
296void ReExec() {
297  char **argv, **envp;
298  GetArgsAndEnv(&argv, &envp);
299  uptr rv = internal_execve("/proc/self/exe", argv, envp);
300  int rverrno;
301  CHECK_EQ(internal_iserror(rv, &rverrno), true);
302  Printf("execve failed, errno %d\n", rverrno);
303  Die();
304}
305
306void PrepareForSandboxing() {
307  // Some kinds of sandboxes may forbid filesystem access, so we won't be able
308  // to read the file mappings from /proc/self/maps. Luckily, neither the
309  // process will be able to load additional libraries, so it's fine to use the
310  // cached mappings.
311  MemoryMappingLayout::CacheMemoryMappings();
312  // Same for /proc/self/exe in the symbolizer.
313  SymbolizerPrepareForSandboxing();
314}
315
316// ----------------- sanitizer_procmaps.h
317// Linker initialized.
318ProcSelfMapsBuff MemoryMappingLayout::cached_proc_self_maps_;
319StaticSpinMutex MemoryMappingLayout::cache_lock_;  // Linker initialized.
320
321MemoryMappingLayout::MemoryMappingLayout(bool cache_enabled) {
322  proc_self_maps_.len =
323      ReadFileToBuffer("/proc/self/maps", &proc_self_maps_.data,
324                       &proc_self_maps_.mmaped_size, 1 << 26);
325  if (cache_enabled) {
326    if (proc_self_maps_.mmaped_size == 0) {
327      LoadFromCache();
328      CHECK_GT(proc_self_maps_.len, 0);
329    }
330  } else {
331    CHECK_GT(proc_self_maps_.mmaped_size, 0);
332  }
333  Reset();
334  // FIXME: in the future we may want to cache the mappings on demand only.
335  if (cache_enabled)
336    CacheMemoryMappings();
337}
338
339MemoryMappingLayout::~MemoryMappingLayout() {
340  // Only unmap the buffer if it is different from the cached one. Otherwise
341  // it will be unmapped when the cache is refreshed.
342  if (proc_self_maps_.data != cached_proc_self_maps_.data) {
343    UnmapOrDie(proc_self_maps_.data, proc_self_maps_.mmaped_size);
344  }
345}
346
347void MemoryMappingLayout::Reset() {
348  current_ = proc_self_maps_.data;
349}
350
351// static
352void MemoryMappingLayout::CacheMemoryMappings() {
353  SpinMutexLock l(&cache_lock_);
354  // Don't invalidate the cache if the mappings are unavailable.
355  ProcSelfMapsBuff old_proc_self_maps;
356  old_proc_self_maps = cached_proc_self_maps_;
357  cached_proc_self_maps_.len =
358      ReadFileToBuffer("/proc/self/maps", &cached_proc_self_maps_.data,
359                       &cached_proc_self_maps_.mmaped_size, 1 << 26);
360  if (cached_proc_self_maps_.mmaped_size == 0) {
361    cached_proc_self_maps_ = old_proc_self_maps;
362  } else {
363    if (old_proc_self_maps.mmaped_size) {
364      UnmapOrDie(old_proc_self_maps.data,
365                 old_proc_self_maps.mmaped_size);
366    }
367  }
368}
369
370void MemoryMappingLayout::LoadFromCache() {
371  SpinMutexLock l(&cache_lock_);
372  if (cached_proc_self_maps_.data) {
373    proc_self_maps_ = cached_proc_self_maps_;
374  }
375}
376
377// Parse a hex value in str and update str.
378static uptr ParseHex(char **str) {
379  uptr x = 0;
380  char *s;
381  for (s = *str; ; s++) {
382    char c = *s;
383    uptr v = 0;
384    if (c >= '0' && c <= '9')
385      v = c - '0';
386    else if (c >= 'a' && c <= 'f')
387      v = c - 'a' + 10;
388    else if (c >= 'A' && c <= 'F')
389      v = c - 'A' + 10;
390    else
391      break;
392    x = x * 16 + v;
393  }
394  *str = s;
395  return x;
396}
397
398static bool IsOneOf(char c, char c1, char c2) {
399  return c == c1 || c == c2;
400}
401
402static bool IsDecimal(char c) {
403  return c >= '0' && c <= '9';
404}
405
406bool MemoryMappingLayout::Next(uptr *start, uptr *end, uptr *offset,
407                               char filename[], uptr filename_size,
408                               uptr *protection) {
409  char *last = proc_self_maps_.data + proc_self_maps_.len;
410  if (current_ >= last) return false;
411  uptr dummy;
412  if (!start) start = &dummy;
413  if (!end) end = &dummy;
414  if (!offset) offset = &dummy;
415  char *next_line = (char*)internal_memchr(current_, '\n', last - current_);
416  if (next_line == 0)
417    next_line = last;
418  // Example: 08048000-08056000 r-xp 00000000 03:0c 64593   /foo/bar
419  *start = ParseHex(&current_);
420  CHECK_EQ(*current_++, '-');
421  *end = ParseHex(&current_);
422  CHECK_EQ(*current_++, ' ');
423  uptr local_protection = 0;
424  CHECK(IsOneOf(*current_, '-', 'r'));
425  if (*current_++ == 'r')
426    local_protection |= kProtectionRead;
427  CHECK(IsOneOf(*current_, '-', 'w'));
428  if (*current_++ == 'w')
429    local_protection |= kProtectionWrite;
430  CHECK(IsOneOf(*current_, '-', 'x'));
431  if (*current_++ == 'x')
432    local_protection |= kProtectionExecute;
433  CHECK(IsOneOf(*current_, 's', 'p'));
434  if (*current_++ == 's')
435    local_protection |= kProtectionShared;
436  if (protection) {
437    *protection = local_protection;
438  }
439  CHECK_EQ(*current_++, ' ');
440  *offset = ParseHex(&current_);
441  CHECK_EQ(*current_++, ' ');
442  ParseHex(&current_);
443  CHECK_EQ(*current_++, ':');
444  ParseHex(&current_);
445  CHECK_EQ(*current_++, ' ');
446  while (IsDecimal(*current_))
447    current_++;
448  // Qemu may lack the trailing space.
449  // http://code.google.com/p/address-sanitizer/issues/detail?id=160
450  // CHECK_EQ(*current_++, ' ');
451  // Skip spaces.
452  while (current_ < next_line && *current_ == ' ')
453    current_++;
454  // Fill in the filename.
455  uptr i = 0;
456  while (current_ < next_line) {
457    if (filename && i < filename_size - 1)
458      filename[i++] = *current_;
459    current_++;
460  }
461  if (filename && i < filename_size)
462    filename[i] = 0;
463  current_ = next_line + 1;
464  return true;
465}
466
467// Gets the object name and the offset by walking MemoryMappingLayout.
468bool MemoryMappingLayout::GetObjectNameAndOffset(uptr addr, uptr *offset,
469                                                 char filename[],
470                                                 uptr filename_size,
471                                                 uptr *protection) {
472  return IterateForObjectNameAndOffset(addr, offset, filename, filename_size,
473                                       protection);
474}
475
476enum MutexState {
477  MtxUnlocked = 0,
478  MtxLocked = 1,
479  MtxSleeping = 2
480};
481
482BlockingMutex::BlockingMutex(LinkerInitialized) {
483  CHECK_EQ(owner_, 0);
484}
485
486BlockingMutex::BlockingMutex() {
487  internal_memset(this, 0, sizeof(*this));
488}
489
490void BlockingMutex::Lock() {
491  atomic_uint32_t *m = reinterpret_cast<atomic_uint32_t *>(&opaque_storage_);
492  if (atomic_exchange(m, MtxLocked, memory_order_acquire) == MtxUnlocked)
493    return;
494  while (atomic_exchange(m, MtxSleeping, memory_order_acquire) != MtxUnlocked)
495    internal_syscall(__NR_futex, m, FUTEX_WAIT, MtxSleeping, 0, 0, 0);
496}
497
498void BlockingMutex::Unlock() {
499  atomic_uint32_t *m = reinterpret_cast<atomic_uint32_t *>(&opaque_storage_);
500  u32 v = atomic_exchange(m, MtxUnlocked, memory_order_relaxed);
501  CHECK_NE(v, MtxUnlocked);
502  if (v == MtxSleeping)
503    internal_syscall(__NR_futex, m, FUTEX_WAKE, 1, 0, 0, 0);
504}
505
506void BlockingMutex::CheckLocked() {
507  atomic_uint32_t *m = reinterpret_cast<atomic_uint32_t *>(&opaque_storage_);
508  CHECK_NE(MtxUnlocked, atomic_load(m, memory_order_relaxed));
509}
510
511// ----------------- sanitizer_linux.h
512// The actual size of this structure is specified by d_reclen.
513// Note that getdents64 uses a different structure format. We only provide the
514// 32-bit syscall here.
515struct linux_dirent {
516  unsigned long      d_ino;
517  unsigned long      d_off;
518  unsigned short     d_reclen;
519  char               d_name[256];
520};
521
522// Syscall wrappers.
523uptr internal_ptrace(int request, int pid, void *addr, void *data) {
524  return internal_syscall(__NR_ptrace, request, pid, addr, data);
525}
526
527uptr internal_waitpid(int pid, int *status, int options) {
528  return internal_syscall(__NR_wait4, pid, status, options, 0 /* rusage */);
529}
530
531uptr internal_getpid() {
532  return internal_syscall(__NR_getpid);
533}
534
535uptr internal_getppid() {
536  return internal_syscall(__NR_getppid);
537}
538
539uptr internal_getdents(fd_t fd, struct linux_dirent *dirp, unsigned int count) {
540  return internal_syscall(__NR_getdents, fd, dirp, count);
541}
542
543uptr internal_lseek(fd_t fd, OFF_T offset, int whence) {
544  return internal_syscall(__NR_lseek, fd, offset, whence);
545}
546
547uptr internal_prctl(int option, uptr arg2, uptr arg3, uptr arg4, uptr arg5) {
548  return internal_syscall(__NR_prctl, option, arg2, arg3, arg4, arg5);
549}
550
551uptr internal_sigaltstack(const struct sigaltstack *ss,
552                         struct sigaltstack *oss) {
553  return internal_syscall(__NR_sigaltstack, ss, oss);
554}
555
556// ThreadLister implementation.
557ThreadLister::ThreadLister(int pid)
558  : pid_(pid),
559    descriptor_(-1),
560    buffer_(4096),
561    error_(true),
562    entry_((struct linux_dirent *)buffer_.data()),
563    bytes_read_(0) {
564  char task_directory_path[80];
565  internal_snprintf(task_directory_path, sizeof(task_directory_path),
566                    "/proc/%d/task/", pid);
567  uptr openrv = internal_open(task_directory_path, O_RDONLY | O_DIRECTORY);
568  if (internal_iserror(openrv)) {
569    error_ = true;
570    Report("Can't open /proc/%d/task for reading.\n", pid);
571  } else {
572    error_ = false;
573    descriptor_ = openrv;
574  }
575}
576
577int ThreadLister::GetNextTID() {
578  int tid = -1;
579  do {
580    if (error_)
581      return -1;
582    if ((char *)entry_ >= &buffer_[bytes_read_] && !GetDirectoryEntries())
583      return -1;
584    if (entry_->d_ino != 0 && entry_->d_name[0] >= '0' &&
585        entry_->d_name[0] <= '9') {
586      // Found a valid tid.
587      tid = (int)internal_atoll(entry_->d_name);
588    }
589    entry_ = (struct linux_dirent *)(((char *)entry_) + entry_->d_reclen);
590  } while (tid < 0);
591  return tid;
592}
593
594void ThreadLister::Reset() {
595  if (error_ || descriptor_ < 0)
596    return;
597  internal_lseek(descriptor_, 0, SEEK_SET);
598}
599
600ThreadLister::~ThreadLister() {
601  if (descriptor_ >= 0)
602    internal_close(descriptor_);
603}
604
605bool ThreadLister::error() { return error_; }
606
607bool ThreadLister::GetDirectoryEntries() {
608  CHECK_GE(descriptor_, 0);
609  CHECK_NE(error_, true);
610  bytes_read_ = internal_getdents(descriptor_,
611                                  (struct linux_dirent *)buffer_.data(),
612                                  buffer_.size());
613  if (internal_iserror(bytes_read_)) {
614    Report("Can't read directory entries from /proc/%d/task.\n", pid_);
615    error_ = true;
616    return false;
617  } else if (bytes_read_ == 0) {
618    return false;
619  }
620  entry_ = (struct linux_dirent *)buffer_.data();
621  return true;
622}
623
624uptr GetPageSize() {
625#if defined(__x86_64__) || defined(__i386__)
626  return EXEC_PAGESIZE;
627#else
628  return sysconf(_SC_PAGESIZE);  // EXEC_PAGESIZE may not be trustworthy.
629#endif
630}
631
632// Match full names of the form /path/to/base_name{-,.}*
633bool LibraryNameIs(const char *full_name, const char *base_name) {
634  const char *name = full_name;
635  // Strip path.
636  while (*name != '\0') name++;
637  while (name > full_name && *name != '/') name--;
638  if (*name == '/') name++;
639  uptr base_name_length = internal_strlen(base_name);
640  if (internal_strncmp(name, base_name, base_name_length)) return false;
641  return (name[base_name_length] == '-' || name[base_name_length] == '.');
642}
643
644#if !SANITIZER_ANDROID
645// Call cb for each region mapped by map.
646void ForEachMappedRegion(link_map *map, void (*cb)(const void *, uptr)) {
647  typedef ElfW(Phdr) Elf_Phdr;
648  typedef ElfW(Ehdr) Elf_Ehdr;
649  char *base = (char *)map->l_addr;
650  Elf_Ehdr *ehdr = (Elf_Ehdr *)base;
651  char *phdrs = base + ehdr->e_phoff;
652  char *phdrs_end = phdrs + ehdr->e_phnum * ehdr->e_phentsize;
653
654  // Find the segment with the minimum base so we can "relocate" the p_vaddr
655  // fields.  Typically ET_DYN objects (DSOs) have base of zero and ET_EXEC
656  // objects have a non-zero base.
657  uptr preferred_base = (uptr)-1;
658  for (char *iter = phdrs; iter != phdrs_end; iter += ehdr->e_phentsize) {
659    Elf_Phdr *phdr = (Elf_Phdr *)iter;
660    if (phdr->p_type == PT_LOAD && preferred_base > (uptr)phdr->p_vaddr)
661      preferred_base = (uptr)phdr->p_vaddr;
662  }
663
664  // Compute the delta from the real base to get a relocation delta.
665  sptr delta = (uptr)base - preferred_base;
666  // Now we can figure out what the loader really mapped.
667  for (char *iter = phdrs; iter != phdrs_end; iter += ehdr->e_phentsize) {
668    Elf_Phdr *phdr = (Elf_Phdr *)iter;
669    if (phdr->p_type == PT_LOAD) {
670      uptr seg_start = phdr->p_vaddr + delta;
671      uptr seg_end = seg_start + phdr->p_memsz;
672      // None of these values are aligned.  We consider the ragged edges of the
673      // load command as defined, since they are mapped from the file.
674      seg_start = RoundDownTo(seg_start, GetPageSizeCached());
675      seg_end = RoundUpTo(seg_end, GetPageSizeCached());
676      cb((void *)seg_start, seg_end - seg_start);
677    }
678  }
679}
680#endif
681
682}  // namespace __sanitizer
683
684#endif  // SANITIZER_LINUX
685