blob: 77bfbd156815f3ba8d440a2c6bb789c00ef038cb [file] [log] [blame]
Kostya Serebryany6fb47af2013-02-27 11:22:40 +00001//===-- sanitizer_linux.h ---------------------------------------*- C++ -*-===//
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// Linux-specific syscall wrappers and classes.
11//
12//===----------------------------------------------------------------------===//
13#ifndef SANITIZER_LINUX_H
14#define SANITIZER_LINUX_H
15
Alexey Samsonov7847d772013-09-10 14:36:16 +000016#include "sanitizer_platform.h"
Stephen Hines2d1fdb22014-05-28 23:58:16 -070017#if SANITIZER_FREEBSD || SANITIZER_LINUX
Alexey Samsonov10f3ab72013-04-05 07:41:21 +000018#include "sanitizer_common.h"
Kostya Serebryany6fb47af2013-02-27 11:22:40 +000019#include "sanitizer_internal_defs.h"
Pirama Arumuga Nainar259f7062015-05-06 11:49:53 -070020#include "sanitizer_posix.h"
Dmitry Vyukov5f4984d2013-10-15 12:57:59 +000021#include "sanitizer_platform_limits_posix.h"
Kostya Serebryany6fb47af2013-02-27 11:22:40 +000022
Peter Collingbourne2e75ac92013-07-29 19:09:49 +000023struct link_map; // Opaque type returned by dlopen().
Kostya Serebryany6fb47af2013-02-27 11:22:40 +000024struct sigaltstack;
25
26namespace __sanitizer {
27// Dirent structure for getdents(). Note that this structure is different from
28// the one in <dirent.h>, which is used by readdir().
29struct linux_dirent;
30
31// Syscall wrappers.
Peter Collingbourne9578a3e2013-05-08 14:43:49 +000032uptr internal_getdents(fd_t fd, struct linux_dirent *dirp, unsigned int count);
Peter Collingbourne9578a3e2013-05-08 14:43:49 +000033uptr internal_sigaltstack(const struct sigaltstack* ss,
34 struct sigaltstack* oss);
Stephen Hines2d1fdb22014-05-28 23:58:16 -070035uptr internal_sigprocmask(int how, __sanitizer_sigset_t *set,
36 __sanitizer_sigset_t *oldset);
37void internal_sigfillset(__sanitizer_sigset_t *set);
Dmitry Vyukov0f7a2ac2013-10-15 11:31:51 +000038
Stephen Hines2d1fdb22014-05-28 23:58:16 -070039// Linux-only syscalls.
40#if SANITIZER_LINUX
41uptr internal_prctl(int option, uptr arg2, uptr arg3, uptr arg4, uptr arg5);
42// Used only by sanitizer_stoptheworld. Signal handlers that are actually used
43// (like the process-wide error reporting SEGV handler) must use
44// internal_sigaction instead.
45int internal_sigaction_norestorer(int signum, const void *act, void *oldact);
46void internal_sigdelset(__sanitizer_sigset_t *set, int signum);
Pirama Arumuga Nainar799172d2016-03-03 15:50:30 -080047#if defined(__x86_64__) || defined(__mips__) || defined(__aarch64__) \
48 || defined(__powerpc64__)
Sergey Matveevcb339102013-09-02 11:36:19 +000049uptr internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg,
50 int *parent_tidptr, void *newtls, int *child_tidptr);
51#endif
Stephen Hines2d1fdb22014-05-28 23:58:16 -070052#endif // SANITIZER_LINUX
Kostya Serebryany6fb47af2013-02-27 11:22:40 +000053
54// This class reads thread IDs from /proc/<pid>/task using only syscalls.
55class ThreadLister {
56 public:
57 explicit ThreadLister(int pid);
58 ~ThreadLister();
59 // GetNextTID returns -1 if the list of threads is exhausted, or if there has
60 // been an error.
61 int GetNextTID();
62 void Reset();
63 bool error();
64
65 private:
66 bool GetDirectoryEntries();
67
68 int pid_;
69 int descriptor_;
Alexey Samsonov10f3ab72013-04-05 07:41:21 +000070 InternalScopedBuffer<char> buffer_;
Kostya Serebryany6fb47af2013-02-27 11:22:40 +000071 bool error_;
72 struct linux_dirent* entry_;
73 int bytes_read_;
74};
Evgeniy Stepanovb9bf7002013-03-19 09:30:52 +000075
Sergey Matveev24323de2013-05-07 14:41:43 +000076// Exposed for testing.
77uptr ThreadDescriptorSize();
Sergey Matveev4c086442013-05-29 13:07:42 +000078uptr ThreadSelf();
79uptr ThreadSelfOffset();
Sergey Matveev24323de2013-05-07 14:41:43 +000080
Sergey Matveev3de00862013-05-14 13:24:46 +000081// Matches a library's file name against a base name (stripping path and version
82// information).
83bool LibraryNameIs(const char *full_name, const char *base_name);
84
Peter Collingbourne2e75ac92013-07-29 19:09:49 +000085// Call cb for each region mapped by map.
86void ForEachMappedRegion(link_map *map, void (*cb)(const void *, uptr));
Kostya Serebryany6fb47af2013-02-27 11:22:40 +000087} // namespace __sanitizer
88
Stephen Hines2d1fdb22014-05-28 23:58:16 -070089#endif // SANITIZER_FREEBSD || SANITIZER_LINUX
Kostya Serebryany6fb47af2013-02-27 11:22:40 +000090#endif // SANITIZER_LINUX_H