blob: 91830aa145a97ee599ead6d864e9f89b22b03ce3 [file] [log] [blame]
Kostya Serebryany1e172b42011-11-30 01:07:02 +00001//===-- asan_interceptors.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// This file is a part of AddressSanitizer, an address sanity checker.
11//
12// ASan-private header for asan_interceptors.cc
13//===----------------------------------------------------------------------===//
14#ifndef ASAN_INTERCEPTORS_H
15#define ASAN_INTERCEPTORS_H
16
17#include "asan_internal.h"
Alexey Samsonov5b290182012-02-08 19:52:01 +000018#include "interception/interception.h"
Alexey Samsonovf2598fc2012-02-02 10:39:40 +000019
Chandler Carruth6bae39d2012-06-25 06:53:10 +000020DECLARE_REAL(int, memcmp, const void *a1, const void *a2, uptr size)
21DECLARE_REAL(void*, memcpy, void *to, const void *from, uptr size)
22DECLARE_REAL(void*, memset, void *block, int c, uptr size)
23DECLARE_REAL(char*, strchr, const char *str, int c)
24DECLARE_REAL(uptr, strlen, const char *s)
25DECLARE_REAL(char*, strncpy, char *to, const char *from, uptr size)
26DECLARE_REAL(uptr, strnlen, const char *s, uptr maxlen)
Alexander Potapenkoeb8c46e2012-08-24 09:22:05 +000027DECLARE_REAL(char*, strstr, const char *s1, const char *s2)
Alexey Samsonovda13ba82012-02-16 17:00:45 +000028struct sigaction;
29DECLARE_REAL(int, sigaction, int signum, const struct sigaction *act,
Chandler Carruth6bae39d2012-06-25 06:53:10 +000030 struct sigaction *oldact)
Alexey Samsonov3389b8e2012-01-30 13:42:44 +000031
Kostya Serebryany1e172b42011-11-30 01:07:02 +000032namespace __asan {
33
Kostya Serebryany1e172b42011-11-30 01:07:02 +000034void InitializeAsanInterceptors();
Alexey Samsonov5cf832d2012-03-21 12:29:54 +000035
Kostya Serebryany1e172b42011-11-30 01:07:02 +000036} // namespace __asan
37
38#endif // ASAN_INTERCEPTORS_H