blob: 209213fe7a3421cf5b47417bc1609ec0906687e8 [file] [log] [blame]
njna7598f62005-06-18 03:27:58 +00001
2/*--------------------------------------------------------------------*/
3/*--- The trampoline code page. pub_core_trampoline.h ---*/
4/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
sewardj03f8d3f2012-08-05 15:46:46 +000010 Copyright (C) 2000-2012 Julian Seward
njna7598f62005-06-18 03:27:58 +000011 jseward@acm.org
12
13 This program is free software; you can redistribute it and/or
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
16 License, or (at your option) any later version.
17
18 This program is distributed in the hope that it will be useful, but
19 WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
21 General Public License for more details.
22
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
26 02111-1307, USA.
27
28 The GNU General Public License is contained in the file COPYING.
29*/
30
31#ifndef __PUB_CORE_TRAMPOLINE_H
32#define __PUB_CORE_TRAMPOLINE_H
33
34//--------------------------------------------------------------------
sewardjb9bce632005-06-21 01:41:34 +000035// PURPOSE: This module defines a few replacement functions for Linux
36// vsyscalls, which we can't implement directly. It also contains
37// stubs for signal returns. Note, all the code within runs on the
38// simulated CPU. The vsyscall stubs are gotten to by use of the
39// redirect mechanism.
sewardja672ea32006-04-29 18:03:14 +000040//
41// Note: generally, putting replacement functions in here is a bad
42// idea, since any Dwarf frame-unwind info attached to them will not
43// be seen by the unwinder in gcc's runtime support. This means
44// unwinding during exception handling by gcc tends to fail if it
45// encounters one of these replacement functions. A better place to
46// put them is in one of the .so's preloaded into the client, since
47// the client's ld.so will know about it and so gcc's unwinder
48// (somehow) is able to get hold of it.
njna7598f62005-06-18 03:27:58 +000049//--------------------------------------------------------------------
50
sewardjb9bce632005-06-21 01:41:34 +000051/* These two delimit our handwritten assembly code, so we can tell
52 tools which track memory that this area should be regarded as
53 readable, at least. Otherwise Memcheck complains we're jumping to
54 invalid addresses. */
njn7d2a9c42005-06-19 21:49:28 +000055
bartbecedea2010-07-29 18:12:23 +000056extern Addr VG_(trampoline_stuff_start);
57extern Addr VG_(trampoline_stuff_end);
njna7598f62005-06-18 03:27:58 +000058
sewardjb9bce632005-06-21 01:41:34 +000059#if defined(VGP_x86_linux)
bartbecedea2010-07-29 18:12:23 +000060extern Addr VG_(x86_linux_SUBST_FOR_sigreturn);
61extern Addr VG_(x86_linux_SUBST_FOR_rt_sigreturn);
sewardj6a443b22005-11-20 19:37:54 +000062extern Char* VG_(x86_linux_REDIR_FOR_index) ( const Char*, Int );
sewardjd28cc962011-03-28 08:22:55 +000063extern UInt VG_(x86_linux_REDIR_FOR_strlen)( void* );
sewardjb9bce632005-06-21 01:41:34 +000064#endif
njna7598f62005-06-18 03:27:58 +000065
sewardjb9bce632005-06-21 01:41:34 +000066#if defined(VGP_amd64_linux)
bartbecedea2010-07-29 18:12:23 +000067extern Addr VG_(amd64_linux_SUBST_FOR_rt_sigreturn);
68extern Addr VG_(amd64_linux_REDIR_FOR_vgettimeofday);
69extern Addr VG_(amd64_linux_REDIR_FOR_vtime);
tomd6ae9e62012-02-09 11:54:16 +000070extern Addr VG_(amd64_linux_REDIR_FOR_vgetcpu);
sewardjb57e6932009-08-02 12:21:31 +000071extern UInt VG_(amd64_linux_REDIR_FOR_strlen)( void* );
sewardjb9bce632005-06-21 01:41:34 +000072#endif
sewardjad50be32005-08-18 11:54:30 +000073
74#if defined(VGP_ppc32_linux)
bartbecedea2010-07-29 18:12:23 +000075extern Addr VG_(ppc32_linux_SUBST_FOR_sigreturn);
76extern Addr VG_(ppc32_linux_SUBST_FOR_rt_sigreturn);
sewardj31d83422005-10-15 02:00:41 +000077extern UInt VG_(ppc32_linux_REDIR_FOR_strlen)( void* );
78extern UInt VG_(ppc32_linux_REDIR_FOR_strcmp)( void*, void* );
79extern void* VG_(ppc32_linux_REDIR_FOR_strchr)( void*, Int );
sewardjad50be32005-08-18 11:54:30 +000080#endif
sewardjf0915fc2006-01-05 14:07:04 +000081
82#if defined(VGP_ppc64_linux)
bartbecedea2010-07-29 18:12:23 +000083extern Addr VG_(ppc64_linux_SUBST_FOR_rt_sigreturn);
sewardjf0915fc2006-01-05 14:07:04 +000084extern UInt VG_(ppc64_linux_REDIR_FOR_strlen)( void* );
sewardj1a85f4f2006-01-12 21:15:35 +000085extern void* VG_(ppc64_linux_REDIR_FOR_strchr)( void*, Int );
sewardj658f05a2006-01-17 02:21:09 +000086/* A label (sans dot) marking the ultra-magical return stub via which
87 all redirected and wrapped functions are made to "return" on
sewardj6e9de462011-06-28 07:25:29 +000088 ppc64-linux. The one insn at this label is never really
89 translated. Instead, m_translate generates IR to restore the
90 thread's LR and R2 registers from a small stack in the ppc64 guest
91 state structure, and then branch to LR. Convoluted? Confusing?
92 You betcha. Could I think of anything simpler? No. */
bartbecedea2010-07-29 18:12:23 +000093extern Addr VG_(ppctoc_magic_redirect_return_stub);
sewardjf832bb92006-10-17 01:54:54 +000094#endif
95
sewardj59570ff2010-01-01 11:59:33 +000096#if defined(VGP_arm_linux)
sewardjbc33be62011-11-20 09:35:51 +000097extern Addr VG_(arm_linux_SUBST_FOR_sigreturn);
98extern Addr VG_(arm_linux_SUBST_FOR_rt_sigreturn);
sewardj59570ff2010-01-01 11:59:33 +000099extern UInt VG_(arm_linux_REDIR_FOR_strlen)( void* );
100//extern void* VG_(arm_linux_REDIR_FOR_index) ( void*, Int );
101extern void* VG_(arm_linux_REDIR_FOR_memcpy)( void*, void*, Int );
102#endif
103
njnea2d6fd2010-07-01 00:20:20 +0000104#if defined(VGP_x86_darwin)
bartbecedea2010-07-29 18:12:23 +0000105extern Addr VG_(x86_darwin_SUBST_FOR_sigreturn);
njnea2d6fd2010-07-01 00:20:20 +0000106extern SizeT VG_(x86_darwin_REDIR_FOR_strlen)( void* );
107extern SizeT VG_(x86_darwin_REDIR_FOR_strcmp)( void*, void* );
108extern void* VG_(x86_darwin_REDIR_FOR_strcat)( void*, void * );
109extern char* VG_(x86_darwin_REDIR_FOR_strcpy)( char *s1, char *s2 );
110extern SizeT VG_(x86_darwin_REDIR_FOR_strlcat)( char *s1, const char *s2,
111 SizeT size );
112#endif
113
114#if defined(VGP_amd64_darwin)
bartbecedea2010-07-29 18:12:23 +0000115extern Addr VG_(amd64_darwin_SUBST_FOR_sigreturn);
njnea2d6fd2010-07-01 00:20:20 +0000116extern SizeT VG_(amd64_darwin_REDIR_FOR_strlen)( void* );
117extern SizeT VG_(amd64_darwin_REDIR_FOR_strcmp)( void*, void* );
118extern void* VG_(amd64_darwin_REDIR_FOR_strcat)( void*, void * );
119extern char* VG_(amd64_darwin_REDIR_FOR_strcpy)( char *s1, char *s2 );
120extern SizeT VG_(amd64_darwin_REDIR_FOR_strlcat)( char *s1, const char *s2,
121 SizeT size );
122extern UInt VG_(amd64_darwin_REDIR_FOR_arc4random)( void );
njnf76d27a2009-05-28 01:53:07 +0000123#endif
124
sewardjb5b87402011-03-07 16:05:35 +0000125#if defined(VGP_s390x_linux)
126extern Addr VG_(s390x_linux_SUBST_FOR_sigreturn);
127extern Addr VG_(s390x_linux_SUBST_FOR_rt_sigreturn);
128#endif
129
sewardj5db15402012-06-07 09:13:21 +0000130#if defined(VGP_mips32_linux)
131extern Addr VG_(mips32_linux_SUBST_FOR_sigreturn);
132extern Addr VG_(mips32_linux_SUBST_FOR_rt_sigreturn);
133extern UInt VG_(mips32_linux_REDIR_FOR_strlen)( void* );
134#endif
135
njna7598f62005-06-18 03:27:58 +0000136#endif // __PUB_CORE_TRAMPOLINE_H
137
138/*--------------------------------------------------------------------*/
139/*--- end ---*/
140/*--------------------------------------------------------------------*/