blob: fd4706fac7d2a5764e70019a34bc2eb600393512 [file] [log] [blame]
njn204e21b2005-05-29 17:03:54 +00001
2/*--------------------------------------------------------------------*/
njnc0ae7052005-08-25 22:55:19 +00003/*--- Function replacement and wrapping. pub_core_redir.h ---*/
njn204e21b2005-05-29 17:03:54 +00004/*--------------------------------------------------------------------*/
5
6/*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
9
Elliott Hughesed398002017-06-21 14:41:24 -070010 Copyright (C) 2000-2017 Julian Seward
njn204e21b2005-05-29 17:03:54 +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_REDIR_H
32#define __PUB_CORE_REDIR_H
33
34//--------------------------------------------------------------------
35// PURPOSE: This module deals with:
sewardjf9ebc392010-05-09 22:30:43 +000036//
njn16eeb4e2005-06-16 03:56:58 +000037// - code replacement: intercepting calls to client functions, and
njn204e21b2005-05-29 17:03:54 +000038// pointing them to a different piece of code.
sewardjf9ebc392010-05-09 22:30:43 +000039//
njn16eeb4e2005-06-16 03:56:58 +000040// - loading notification: telling the core where certain client-space
41// functions are when they get loaded.
sewardjf9ebc392010-05-09 22:30:43 +000042//
njn204e21b2005-05-29 17:03:54 +000043// - function wrapping: add calls to code before and after client
44// functions execute, for inspection and/or modification.
sewardjf9ebc392010-05-09 22:30:43 +000045//
46// - checking of --require-text-symbol= specifications: when a new
47// object is loaded, its symbol table is examined, and if a symbol
48// (as required by the specifications) is not found then the run
49// is aborted. See comment by VG_(clo_n_req_tsyms) in
50// pub_core_options.h for background. This doesn't have anything
51// to do with function intercepting or wrapping, but it does have
52// to do with examining all symbols at object load time, so this
53// module seems like a logical place to put it.
54//
njn204e21b2005-05-29 17:03:54 +000055//--------------------------------------------------------------------
56
njn16eeb4e2005-06-16 03:56:58 +000057#include "pub_tool_redir.h"
florian535fb1b2013-09-15 13:54:34 +000058#include "pub_core_basics.h" // Addr
59#include "pub_core_debuginfo.h" // DebugInfo
njn16eeb4e2005-06-16 03:56:58 +000060
61//--------------------------------------------------------------------
sewardj0ec07f32006-01-12 12:32:32 +000062// Notifications - by which we are told of state changes
njn16eeb4e2005-06-16 03:56:58 +000063//--------------------------------------------------------------------
64
sewardjb8b79ad2008-03-03 01:35:41 +000065/* Notify the module of a new DebugInfo (called from m_debuginfo). */
florian518850b2014-10-22 22:25:30 +000066extern void VG_(redir_notify_new_DebugInfo)( const DebugInfo* );
njn16eeb4e2005-06-16 03:56:58 +000067
sewardjb8b79ad2008-03-03 01:35:41 +000068/* Notify the module of the disappearance of a DebugInfo (also called
sewardj0ec07f32006-01-12 12:32:32 +000069 from m_debuginfo). */
florian518850b2014-10-22 22:25:30 +000070extern void VG_(redir_notify_delete_DebugInfo)( const DebugInfo* );
njn3ced4ce2005-06-21 00:07:13 +000071
sewardj0ec07f32006-01-12 12:32:32 +000072/* Initialise the module, and load initial "hardwired" redirects. */
73extern void VG_(redir_initialise)( void );
njn204e21b2005-05-29 17:03:54 +000074
tomd2645142009-10-29 09:27:11 +000075/* Notify the module of a new target for an indirect function. */
76extern void VG_(redir_add_ifunc_target)( Addr old_from, Addr new_from );
njn204e21b2005-05-29 17:03:54 +000077
sewardj0ec07f32006-01-12 12:32:32 +000078//--------------------------------------------------------------------
79// Queries
80//--------------------------------------------------------------------
81
82/* This is the crucial redirection function. It answers the question:
83 should this code address be redirected somewhere else? It's used
84 just before translating a basic block. If a redir is found,
85 *isWrap allows to distinguish wrap- from replace- style
86 redirections. */
87extern Addr VG_(redir_do_lookup) ( Addr orig, Bool* isWrap );
njn204e21b2005-05-29 17:03:54 +000088
njn16eeb4e2005-06-16 03:56:58 +000089
90//--------------------------------------------------------------------
91// Loading notification
92//--------------------------------------------------------------------
93
94/* Functions named with this macro have the property that the core will
95 be told what their address is when they are loaded. This can be useful
96 if the core wants to call them at some point, and so needs to know their
97 address. This is a weaker but more general mechanism than code
98 replacement.
99
100 Functions named with this macro should be in client space, ie. in
njn7b4e5ba2005-08-25 22:53:57 +0000101 vgpreload_<tool>.h or vgpreload_core.h. */
njn16eeb4e2005-06-16 03:56:58 +0000102
sewardj0ec07f32006-01-12 12:32:32 +0000103#define VG_NOTIFY_ON_LOAD(name) _vgnU_##name
104#define VG_NOTIFY_ON_LOAD_PREFIX "_vgnU_"
105#define VG_NOTIFY_ON_LOAD_PREFIX_LEN 6
njn16eeb4e2005-06-16 03:56:58 +0000106
107
108//--------------------------------------------------------------------
109// Function wrapping
110//--------------------------------------------------------------------
111
112// This is currently not working(?) --njn
113
njn204e21b2005-05-29 17:03:54 +0000114/* Wrapping machinery */
sewardj0ec07f32006-01-12 12:32:32 +0000115//enum return_type {
116 // RT_RETURN,
117 // RT_LONGJMP,
118 // RT_EXIT,
119 //};
120//
121//typedef struct _FuncWrapper FuncWrapper;
122//struct _FuncWrapper {
123 // void *(*before)(va_list args);
124 // void (*after) (void *nonce, enum return_type, Word retval);
125 //};
126//
127//extern void VG_(wrap_function)(Addr eip, const FuncWrapper *wrapper);
128//extern const FuncWrapper *VG_(is_wrapped)(Addr eip);
129//extern Bool VG_(is_wrapper_return)(Addr eip);
njn204e21b2005-05-29 17:03:54 +0000130
131/* Primary interface for adding wrappers for client-side functions. */
florian19f91bb2012-11-10 22:29:54 +0000132//extern CodeRedirect *VG_(add_wrapper)(const HChar *from_lib, const HChar *from_sym,
sewardj0ec07f32006-01-12 12:32:32 +0000133// const FuncWrapper *wrapper);
134//
135//extern Bool VG_(is_resolved)(const CodeRedirect *redir);
njn204e21b2005-05-29 17:03:54 +0000136
137#endif // __PUB_CORE_REDIR_H
138
139/*--------------------------------------------------------------------*/
140/*--- end ---*/
141/*--------------------------------------------------------------------*/