blob: e9fc4ad448d87e48623d02d6b18af82919b20f65 [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);
Stephen Hines86277eb2015-03-23 12:06:32 -070047#if defined(__x86_64__) || defined(__mips__)
Sergey Matveevcb339102013-09-02 11:36:19 +000048uptr internal_clone(int (*fn)(void *), void *child_stack, int flags, void *arg,
49 int *parent_tidptr, void *newtls, int *child_tidptr);
50#endif
Stephen Hines2d1fdb22014-05-28 23:58:16 -070051#endif // SANITIZER_LINUX
Kostya Serebryany6fb47af2013-02-27 11:22:40 +000052
53// This class reads thread IDs from /proc/<pid>/task using only syscalls.
54class ThreadLister {
55 public:
56 explicit ThreadLister(int pid);
57 ~ThreadLister();
58 // GetNextTID returns -1 if the list of threads is exhausted, or if there has
59 // been an error.
60 int GetNextTID();
61 void Reset();
62 bool error();
63
64 private:
65 bool GetDirectoryEntries();
66
67 int pid_;
68 int descriptor_;
Alexey Samsonov10f3ab72013-04-05 07:41:21 +000069 InternalScopedBuffer<char> buffer_;
Kostya Serebryany6fb47af2013-02-27 11:22:40 +000070 bool error_;
71 struct linux_dirent* entry_;
72 int bytes_read_;
73};
Evgeniy Stepanovb9bf7002013-03-19 09:30:52 +000074
Sergey Matveev24323de2013-05-07 14:41:43 +000075// Exposed for testing.
76uptr ThreadDescriptorSize();
Sergey Matveev4c086442013-05-29 13:07:42 +000077uptr ThreadSelf();
78uptr ThreadSelfOffset();
Sergey Matveev24323de2013-05-07 14:41:43 +000079
Sergey Matveev3de00862013-05-14 13:24:46 +000080// Matches a library's file name against a base name (stripping path and version
81// information).
82bool LibraryNameIs(const char *full_name, const char *base_name);
83
Peter Collingbourne2e75ac92013-07-29 19:09:49 +000084// Call cb for each region mapped by map.
85void ForEachMappedRegion(link_map *map, void (*cb)(const void *, uptr));
Kostya Serebryany6fb47af2013-02-27 11:22:40 +000086} // namespace __sanitizer
87
Stephen Hines2d1fdb22014-05-28 23:58:16 -070088#endif // SANITIZER_FREEBSD || SANITIZER_LINUX
Kostya Serebryany6fb47af2013-02-27 11:22:40 +000089#endif // SANITIZER_LINUX_H