blob: 012c2b0cc4443fb753bb3d409ef299450a02ce7e [file] [log] [blame]
sewardjde4a1d02002-03-22 01:27:54 +00001
2/*--------------------------------------------------------------------*/
njn25e49d8e72002-09-23 09:36:25 +00003/*--- A header file for all private parts of Valgrind's core. ---*/
nethercote5a2664c2004-09-02 15:37:39 +00004/*--- Include no other! (more or less...) ---*/
rjwalsh7109a8c2004-09-02 00:31:02 +00005/*--- core.h ---*/
sewardjde4a1d02002-03-22 01:27:54 +00006/*--------------------------------------------------------------------*/
7
8/*
njnc9539842002-10-02 13:26:35 +00009 This file is part of Valgrind, an extensible x86 protected-mode
10 emulator for monitoring program execution on x86-Unixes.
sewardjde4a1d02002-03-22 01:27:54 +000011
nethercotebb1c9912004-01-04 16:43:23 +000012 Copyright (C) 2000-2004 Julian Seward
sewardjde4a1d02002-03-22 01:27:54 +000013 jseward@acm.org
sewardjde4a1d02002-03-22 01:27:54 +000014
15 This program is free software; you can redistribute it and/or
16 modify it under the terms of the GNU General Public License as
17 published by the Free Software Foundation; either version 2 of the
18 License, or (at your option) any later version.
19
20 This program is distributed in the hope that it will be useful, but
21 WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
23 General Public License for more details.
24
25 You should have received a copy of the GNU General Public License
26 along with this program; if not, write to the Free Software
27 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
28 02111-1307, USA.
29
njn25e49d8e72002-09-23 09:36:25 +000030 The GNU General Public License is contained in the file COPYING.
sewardjde4a1d02002-03-22 01:27:54 +000031*/
32
rjwalsh7109a8c2004-09-02 00:31:02 +000033#ifndef __CORE_H
34#define __CORE_H
sewardjde4a1d02002-03-22 01:27:54 +000035
nethercote7be47252004-09-02 16:02:58 +000036/*
37 Header hierarchy:
38
39 - core C files include core.h
40 - core asm files include core_asm.h
41 - tool C files include tool.h
42 - tool asm files include tool_asm.h
43
44 - The hierarchy of the header files themselves is based around the
45 following rules:
46
47 - core headers include tool headers
48 - generic headers include arch/OS/platform headers
49 - C headers include asm headers
50
51 This gives the following hierarchy (only showing 'arch' headers, not
nethercote80cca432004-09-02 16:25:49 +000052 'os' or 'platform' headers), where arrows indicate inclusion, and
53 $VG_ARCH==x86:
nethercote7be47252004-09-02 16:02:58 +000054
nethercote80cca432004-09-02 16:25:49 +000055
56 (include/x86/tool_arch_asm.h?) <----- coregrind/x86/core_arch_asm.h
57 ^ ^ ^ ^
58 / \ / \
59 / \ / \
60 / \ / \
61 include/tool_asm.h <-\---- coregrind/core_asm.h \
62 ^ \ ^ \
63 \ include/x86/tool_arch.h <--------coregrind/x86/core_arch.h
64 \ ^ \ ^
65 \ / \ /
66 \ / \ /
67 \ / \ /
68 include/tool.h <------------ coregrind/core.h
69
nethercote7be47252004-09-02 16:02:58 +000070
71 Note that core.h contains the *declarations* of arch-specific functions
72 and variables, which can be used by the core_arch.h file of any
73 architecture. (The functions/variables are *defined* within arch/.)
74 However, arch-specific macros and types cannot go into core.h, because
75 there is no separation between declaration and definition for
76 macros/types, so they instead go into $VG_ARCH/core_arch.h.
nethercote80cca432004-09-02 16:25:49 +000077
78 The tool-specific headers are all in include/ so they can be seen by any
79 external tools.
nethercote7be47252004-09-02 16:02:58 +000080*/
81
jsgf855d93d2003-10-13 22:26:55 +000082/* For system call numbers __NR_... */
nethercotef94fe2f2004-09-10 14:23:59 +000083#include "vki_unistd.h"
jsgf855d93d2003-10-13 22:26:55 +000084
nethercote13343132004-09-02 15:49:09 +000085#include "core_asm.h" // asm stuff
86#include "tool.h" // tool stuff
nethercotebb4222b2004-09-10 17:42:11 +000087#include "core_arch.h" // arch-specific stuff, eg. x86/core_arch.h
nethercote8ff888f2004-11-17 17:11:45 +000088
89// Ugly: this is needed by linux/core_os.h
90typedef struct _ThreadState ThreadState;
91
92#include "core_os.h" // OS-specific stuff, eg. linux/core_os.h
nethercotebb4222b2004-09-10 17:42:11 +000093#include "core_platform.h" // platform-specific stuff,
94 // eg. x86-linux/core_platform.h
sewardjde4a1d02002-03-22 01:27:54 +000095
fitzhardinge39de4b42003-10-31 07:12:21 +000096#include "valgrind.h"
sewardjde4a1d02002-03-22 01:27:54 +000097
njn26f02512004-11-22 18:33:15 +000098#undef TL_
99#define TL_(x) vgToolInternal_##x
fitzhardinge98abfc72003-12-16 02:05:15 +0000100
nethercote7be47252004-09-02 16:02:58 +0000101
sewardj2a99cf62004-11-24 10:44:19 +0000102/* ToDo: nuke */
103#define INVALID_OFFSET (-1)
104
nethercote7be47252004-09-02 16:02:58 +0000105/* ---------------------------------------------------------------------
106 Build options and table sizes. You should be able to change these
107 options or sizes, recompile, and still have a working system.
108 ------------------------------------------------------------------ */
109
sewardjde4a1d02002-03-22 01:27:54 +0000110/* Constants for the slow translation lookup cache. */
111#define VG_TRANSTAB_SLOW_BITS 11
112#define VG_TRANSTAB_SLOW_SIZE (1 << VG_TRANSTAB_SLOW_BITS)
113#define VG_TRANSTAB_SLOW_MASK ((VG_TRANSTAB_SLOW_SIZE) - 1)
114
115/* Size of a buffer used for creating messages. */
116#define M_VG_MSGBUF 10000
117
118/* Size of a smallish table used to read /proc/self/map entries. */
sewardjebc82332002-04-24 14:44:23 +0000119#define M_PROCMAP_BUF 50000
sewardjde4a1d02002-03-22 01:27:54 +0000120
121/* Max length of pathname to a .so/executable file. */
122#define M_VG_LIBNAMESTR 100
123
124/* Max length of a text fragment used to construct error messages. */
nethercote3b38c1d2004-10-18 15:47:18 +0000125#define M_VG_ERRTXT 4096
sewardjde4a1d02002-03-22 01:27:54 +0000126
127/* Max length of the string copied from env var VG_ARGS at startup. */
128#define M_VG_CMDLINE_STRLEN 1000
129
130/* Max number of options for Valgrind which we can handle. */
131#define M_VG_CMDLINE_OPTS 100
132
133/* After this many different unsuppressed errors have been observed,
134 be more conservative about collecting new ones. */
135#define M_VG_COLLECT_ERRORS_SLOWLY_AFTER 50
136
137/* After this many different unsuppressed errors have been observed,
138 stop collecting errors at all, and tell the user their program is
139 evidently a steaming pile of camel dung. */
sewardj1bebcbf2002-04-24 21:24:18 +0000140#define M_VG_COLLECT_NO_ERRORS_AFTER_SHOWN 300
sewardjf2537be2002-04-24 21:03:47 +0000141
142/* After this many total errors have been observed, stop collecting
143 errors at all. Counterpart to M_VG_COLLECT_NO_ERRORS_AFTER_SHOWN. */
sewardj1bebcbf2002-04-24 21:24:18 +0000144#define M_VG_COLLECT_NO_ERRORS_AFTER_FOUND 30000
sewardjde4a1d02002-03-22 01:27:54 +0000145
sewardjde4a1d02002-03-22 01:27:54 +0000146/* The maximum number of calls we're prepared to save in a
147 backtrace. */
148#define VG_DEEPEST_BACKTRACE 50
149
sewardjde4a1d02002-03-22 01:27:54 +0000150/* Number of lists in which we keep track of ExeContexts. Should be
151 prime. */
sewardj59fb25c2003-09-28 16:32:58 +0000152#define VG_N_EC_LISTS 4999 /* a prime number */
sewardjde4a1d02002-03-22 01:27:54 +0000153
sewardj2e93c502002-04-12 11:12:52 +0000154/* Defines the thread-scheduling timeslice, in terms of the number of
155 basic blocks we attempt to run each thread for. Smaller values
156 give finer interleaving but much increased scheduling overheads. */
sewardj4505b9e2002-05-28 11:27:31 +0000157#define VG_SCHEDULING_QUANTUM 50000
sewardj2e93c502002-04-12 11:12:52 +0000158
fitzhardingef0046f22003-12-18 02:39:22 +0000159/* Number of file descriptors that Valgrind tries to reserve for
160 it's own use - two per thread plues a small number of extras. */
161#define VG_N_RESERVED_FDS (VG_N_THREADS*2 + 4)
sewardj2e93c502002-04-12 11:12:52 +0000162
sewardjbf290b92002-05-01 02:28:01 +0000163/* Stack size for a thread. We try and check that they do not go
164 beyond it. */
sewardjf0b06452002-06-04 08:38:04 +0000165#define VG_PTHREAD_STACK_SIZE (1 << 20)
sewardjbf290b92002-05-01 02:28:01 +0000166
sewardj8ad94e12002-05-29 00:10:20 +0000167/* Number of entries in each thread's cleanup stack. */
sewardj61821c02003-05-04 13:02:10 +0000168#define VG_N_CLEANUPSTACK 16
sewardj8ad94e12002-05-29 00:10:20 +0000169
sewardj2cb00342002-06-28 01:46:26 +0000170/* Number of entries in each thread's fork-handler stack. */
sewardj4700f042003-07-26 17:49:58 +0000171#define VG_N_FORKHANDLERSTACK 4
sewardj2cb00342002-06-28 01:46:26 +0000172
njn25e49d8e72002-09-23 09:36:25 +0000173/* Max number of callers for context in a suppression. */
174#define VG_N_SUPP_CALLERS 4
sewardj73cf3bc2002-11-03 03:20:15 +0000175
thughes8abf3922004-10-16 10:59:49 +0000176/* Numer of entries in each thread's signal queue. */
177#define VG_N_SIGNALQUEUE 8
178
fitzhardinge98abfc72003-12-16 02:05:15 +0000179/* Useful macros */
180/* a - alignment - must be a power of 2 */
181#define ROUNDDN(p, a) ((Addr)(p) & ~((a)-1))
182#define ROUNDUP(p, a) ROUNDDN((p)+(a)-1, (a))
nethercote73b526f2004-10-31 18:48:21 +0000183#define PGROUNDDN(p) ROUNDDN(p, VKI_PAGE_SIZE)
184#define PGROUNDUP(p) ROUNDUP(p, VKI_PAGE_SIZE)
fitzhardinge98abfc72003-12-16 02:05:15 +0000185
nethercote80013e92004-09-05 20:39:51 +0000186/* ---------------------------------------------------------------------
187 Environment variables
188 ------------------------------------------------------------------ */
189
190/* The directory we look for all our auxillary files in */
191#define VALGRINDLIB "VALGRINDLIB"
192
193/* Additional command-line arguments; they are overridden by actual
194 command-line option. Each argument is separated by spaces. There
195 is no quoting mechanism.
196 */
197#define VALGRINDOPTS "VALGRIND_OPTS"
198
199/* If this variable is present in the environment, then valgrind will
200 not parse the command line for options at all; all options come
201 from this variable. Arguments are terminated by ^A (\001). There
202 is no quoting mechanism.
203
204 This variable is not expected to be set by anything other than
205 Valgrind itself, as part of its handling of execve with
206 --trace-children=yes. This variable should not be present in the
207 client environment.
208 */
209#define VALGRINDCLO "_VALGRIND_CLO"
210
fitzhardinge98abfc72003-12-16 02:05:15 +0000211
sewardjde4a1d02002-03-22 01:27:54 +0000212/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000213 Command-line-settable options
214 ------------------------------------------------------------------ */
215
sewardj4f094a72002-11-05 23:37:35 +0000216/* Default destination port to be used in logging over a network, if
217 none specified. */
218#define VG_CLO_DEFAULT_LOGPORT 1500
sewardj73cf3bc2002-11-03 03:20:15 +0000219
220/* The max number of suppression files. */
sewardjde4a1d02002-03-22 01:27:54 +0000221#define VG_CLO_MAX_SFILES 10
222
nethercote04d0fbc2004-01-26 16:48:06 +0000223/* Default debugger command. */
224#define VG_CLO_DEFAULT_DBCOMMAND GDB_PATH " -nw %f %p"
225
sewardj4cf05692002-10-27 20:28:29 +0000226/* Describes where logging output is to be sent. */
227typedef
228 enum {
229 VgLogTo_Fd,
230 VgLogTo_File,
231 VgLogTo_Socket
232 } VgLogTo;
233
jsgf855d93d2003-10-13 22:26:55 +0000234/* pid of main process */
235extern Int VG_(main_pid);
236
237/* pgrp of process (global to all threads) */
238extern Int VG_(main_pgrp);
sewardj4cf05692002-10-27 20:28:29 +0000239
thughesad1c9562004-06-26 11:27:52 +0000240/* Application-visible file descriptor limits */
241extern Int VG_(fd_soft_limit);
242extern Int VG_(fd_hard_limit);
fitzhardingef0046f22003-12-18 02:39:22 +0000243
sewardj8b635a42004-11-22 19:01:47 +0000244/* Vex iropt control */
245extern VexControl VG_(clo_vex_control);
sewardj72f98ff2002-06-13 17:23:38 +0000246/* Should we stop collecting errors if too many appear? default: YES */
sewardj2e432902002-06-13 20:44:00 +0000247extern Bool VG_(clo_error_limit);
nethercote04d0fbc2004-01-26 16:48:06 +0000248/* Enquire about whether to attach to a debugger at errors? default: NO */
249extern Bool VG_(clo_db_attach);
250/* The debugger command? default: whatever gdb ./configure found */
251extern Char* VG_(clo_db_command);
njn43c799e2003-04-08 00:08:52 +0000252/* Enquire about generating a suppression for each error? default: NO */
253extern Bool VG_(clo_gen_suppressions);
sewardjde4a1d02002-03-22 01:27:54 +0000254/* Sanity-check level: 0 = none, 1 (default), > 1 = expensive. */
nethercote27fec902004-06-16 21:26:32 +0000255extern Int VG_(clo_sanity_level);
sewardjde4a1d02002-03-22 01:27:54 +0000256/* Automatically attempt to demangle C++ names? default: YES */
257extern Bool VG_(clo_demangle);
sewardjde4a1d02002-03-22 01:27:54 +0000258/* Simulate child processes? default: NO */
259extern Bool VG_(clo_trace_children);
sewardj4cf05692002-10-27 20:28:29 +0000260
261/* Where logging output is to be sent to.
262
nethercotef8548672004-06-21 12:42:35 +0000263 When log_to == VgLogTo_Fd, clo_log_fd holds the file id, and is
264 taken from the command line. clo_log_name is irrelevant.
sewardj4cf05692002-10-27 20:28:29 +0000265
nethercotef8548672004-06-21 12:42:35 +0000266 When log_to == VgLogTo_File, clo_log_name holds the log-file
267 name, and is taken from the command line. clo_log_fd is then
268 made to hold the relevant file id, by opening clo_log_name
sewardj4cf05692002-10-27 20:28:29 +0000269 (concatenated with the process ID) for writing.
270
nethercotef8548672004-06-21 12:42:35 +0000271 When log_to == VgLogTo_Socket, clo_log_name holds the
sewardj4cf05692002-10-27 20:28:29 +0000272 hostname:portnumber pair, and is taken from the command line.
nethercotef8548672004-06-21 12:42:35 +0000273 clo_log_fd is then made to hold the relevant file handle, by
sewardj4cf05692002-10-27 20:28:29 +0000274 opening a connection to said hostname:portnumber pair.
275
nethercotef8548672004-06-21 12:42:35 +0000276 Global default is to set log_to == VgLogTo_Fd and log_fd == 2
sewardj4cf05692002-10-27 20:28:29 +0000277 (stderr). */
278extern VgLogTo VG_(clo_log_to);
nethercotef8548672004-06-21 12:42:35 +0000279extern Int VG_(clo_log_fd);
280extern Char* VG_(clo_log_name);
sewardjde4a1d02002-03-22 01:27:54 +0000281
thughes6233a382004-08-21 11:10:44 +0000282/* Add timestamps to log messages? default: NO */
283extern Bool VG_(clo_time_stamp);
284
sewardj6024b212003-07-13 10:54:33 +0000285/* The file descriptor to read for input. default: 0 == stdin */
286extern Int VG_(clo_input_fd);
sewardjde4a1d02002-03-22 01:27:54 +0000287/* The number of suppression files specified. */
288extern Int VG_(clo_n_suppressions);
289/* The names of the suppression files. */
290extern Char* VG_(clo_suppressions)[VG_CLO_MAX_SFILES];
291
sewardj8e4d7dc2004-11-28 18:07:41 +0000292/* PROFILE: collect bb profiling data? default: NO */
293extern Bool VG_(clo_bbprofile);
294
njn25e49d8e72002-09-23 09:36:25 +0000295/* DEBUG: print generated code? default: 00000 ( == NO ) */
296extern Bool VG_(clo_trace_codegen);
sewardjde4a1d02002-03-22 01:27:54 +0000297/* DEBUG: print system calls? default: NO */
298extern Bool VG_(clo_trace_syscalls);
299/* DEBUG: print signal details? default: NO */
300extern Bool VG_(clo_trace_signals);
301/* DEBUG: print symtab details? default: NO */
302extern Bool VG_(clo_trace_symtab);
sewardj8937c812002-04-12 20:12:20 +0000303/* DEBUG: print thread scheduling events? default: NO */
304extern Bool VG_(clo_trace_sched);
sewardj45b4b372002-04-16 22:50:32 +0000305/* DEBUG: print pthread (mutex etc) events? default: 0 (none), 1
306 (some), 2 (all) */
307extern Int VG_(clo_trace_pthread_level);
sewardjde4a1d02002-03-22 01:27:54 +0000308/* Display gory details for the k'th most popular error. default:
309 Infinity. */
310extern Int VG_(clo_dump_error);
311/* Number of parents of a backtrace. Default: 8. */
312extern Int VG_(clo_backtrace_size);
daywalker7e73e5f2003-07-04 16:18:15 +0000313/* Engage miscellaneous weird hacks needed for some progs. */
sewardj8d365b52002-05-12 10:52:16 +0000314extern Char* VG_(clo_weird_hacks);
jsgf855d93d2003-10-13 22:26:55 +0000315/* How often we should poll for signals, assuming we need to poll for
316 signals. */
317extern Int VG_(clo_signal_polltime);
318
319/* Low latency syscalls and signals */
320extern Bool VG_(clo_lowlat_syscalls);
321extern Bool VG_(clo_lowlat_signals);
322
rjwalshf5f536f2003-11-17 17:45:00 +0000323/* Track open file descriptors? */
324extern Bool VG_(clo_track_fds);
325
sewardj858964b2002-10-05 14:15:43 +0000326/* Should we run __libc_freeres at exit? Sometimes causes crashes.
327 Default: YES. Note this is subservient to VG_(needs).libc_freeres;
328 if the latter says False, then the setting of VG_(clo_weird_hacks)
nethercote996901a2004-08-03 13:29:09 +0000329 is ignored. Ie if a tool says no, I don't want this to run, that
sewardj858964b2002-10-05 14:15:43 +0000330 cannot be overridden from the command line. */
331extern Bool VG_(clo_run_libc_freeres);
fitzhardinge462f4f92003-12-18 02:10:54 +0000332/* Generate branch-prediction hints? */
333extern Bool VG_(clo_branchpred);
nethercote77eba602003-11-13 17:35:04 +0000334/* Continue stack traces below main()? Default: NO */
335extern Bool VG_(clo_show_below_main);
fitzhardinge98abfc72003-12-16 02:05:15 +0000336/* Test each client pointer dereference to check it's within the
337 client address space bounds */
338extern Bool VG_(clo_pointercheck);
sewardjde4a1d02002-03-22 01:27:54 +0000339
rjwalshe4e779d2004-04-16 23:02:29 +0000340/* Set up the libc freeres wrapper */
341extern void VG_(intercept_libc_freeres_wrapper)(Addr);
342
sewardjde4a1d02002-03-22 01:27:54 +0000343/* ---------------------------------------------------------------------
nethercote85cdd342004-08-01 22:36:40 +0000344 Profiling stuff
sewardjde4a1d02002-03-22 01:27:54 +0000345 ------------------------------------------------------------------ */
346
sewardjde4a1d02002-03-22 01:27:54 +0000347extern void VGP_(init_profiling) ( void );
348extern void VGP_(done_profiling) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000349
njn25e49d8e72002-09-23 09:36:25 +0000350#undef VGP_PUSHCC
351#undef VGP_POPCC
352#define VGP_PUSHCC(x) if (VG_(clo_profile)) VGP_(pushcc)(x)
353#define VGP_POPCC(x) if (VG_(clo_profile)) VGP_(popcc)(x)
sewardjde4a1d02002-03-22 01:27:54 +0000354
sewardjde4a1d02002-03-22 01:27:54 +0000355/* ---------------------------------------------------------------------
nethercote996901a2004-08-03 13:29:09 +0000356 Tool-related types
njn810086f2002-11-14 12:42:47 +0000357 ------------------------------------------------------------------ */
nethercote996901a2004-08-03 13:29:09 +0000358/* These structs are not exposed to tools to mitigate possibility of
359 binary-incompatibilities when the core/tool interface changes. Instead,
nethercote46063202004-09-02 08:51:43 +0000360 set functions are provided (see include/tool.h). */
njn810086f2002-11-14 12:42:47 +0000361typedef
362 struct {
363 Char* name;
364 Char* version;
365 Char* description;
366 Char* copyright_author;
367 Char* bug_reports_to;
njn120281f2003-02-03 12:20:07 +0000368 UInt avg_translation_sizeB;
njn810086f2002-11-14 12:42:47 +0000369 }
370 VgDetails;
371
372extern VgDetails VG_(details);
373
374/* If new fields are added to this type, update:
375 * - vg_main.c:initialisation of VG_(needs)
376 * - vg_main.c:sanity_check_needs()
377 *
378 * If the name of this type or any of its fields change, update:
379 * - dependent comments (just search for "VG_(needs)").
380 */
381typedef
382 struct {
383 Bool libc_freeres;
384 Bool core_errors;
njn95ec8702004-11-22 16:46:13 +0000385 Bool tool_errors;
njn810086f2002-11-14 12:42:47 +0000386 Bool basic_block_discards;
njnabb14ad2004-11-24 16:57:16 +0000387 Bool no_longer_used_1; // for backwards compatibility
njn810086f2002-11-14 12:42:47 +0000388 Bool command_line_options;
389 Bool client_requests;
njn37624a72004-11-22 20:37:42 +0000390 Bool no_longer_used_0; // for backwards compatibility
njn810086f2002-11-14 12:42:47 +0000391 Bool syscall_wrapper;
njn810086f2002-11-14 12:42:47 +0000392 Bool sanity_checks;
393 Bool data_syms;
fitzhardinge98abfc72003-12-16 02:05:15 +0000394 Bool shadow_memory;
njn810086f2002-11-14 12:42:47 +0000395 }
396 VgNeeds;
397
398extern VgNeeds VG_(needs);
399
fitzhardinge98abfc72003-12-16 02:05:15 +0000400extern void VG_(tool_init_dlsym)(void *dlhandle);
njn810086f2002-11-14 12:42:47 +0000401
fitzhardinge98abfc72003-12-16 02:05:15 +0000402#include "vg_toolint.h"
njn810086f2002-11-14 12:42:47 +0000403
404/* ---------------------------------------------------------------------
405 Exports of vg_needs.c
406 ------------------------------------------------------------------ */
407
408void VG_(sanity_check_needs)(void);
409
410/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000411 Exports of vg_malloc2.c
412 ------------------------------------------------------------------ */
413
414/* Allocation arenas.
njn3e884182003-04-15 13:03:23 +0000415
416 CORE for the core's general use.
nethercote60f5b822004-01-26 17:24:42 +0000417 TOOL for the tool to use (and the only one it uses).
njn3e884182003-04-15 13:03:23 +0000418 SYMTAB for Valgrind's symbol table storage.
419 JITTER for small storage during translation.
nethercote996901a2004-08-03 13:29:09 +0000420 CLIENT for the client's mallocs/frees, if the tool replaces glibc's
421 malloc() et al -- redzone size is chosen by the tool.
njn3e884182003-04-15 13:03:23 +0000422 DEMANGLE for the C++ demangler.
423 EXECTXT for storing ExeContexts.
424 ERRORS for storing CoreErrors.
425 TRANSIENT for very short-term use. It should be empty in between uses.
426
njn25e49d8e72002-09-23 09:36:25 +0000427 When adding a new arena, remember also to add it to ensure_mm_init().
sewardjde4a1d02002-03-22 01:27:54 +0000428*/
429typedef Int ArenaId;
430
njn3e884182003-04-15 13:03:23 +0000431#define VG_N_ARENAS 9
sewardjde4a1d02002-03-22 01:27:54 +0000432
njn3e884182003-04-15 13:03:23 +0000433#define VG_AR_CORE 0
nethercote60f5b822004-01-26 17:24:42 +0000434#define VG_AR_TOOL 1
njn3e884182003-04-15 13:03:23 +0000435#define VG_AR_SYMTAB 2
436#define VG_AR_JITTER 3
437#define VG_AR_CLIENT 4
438#define VG_AR_DEMANGLE 5
439#define VG_AR_EXECTXT 6
440#define VG_AR_ERRORS 7
441#define VG_AR_TRANSIENT 8
sewardjde4a1d02002-03-22 01:27:54 +0000442
nethercote2d5b8162004-08-11 09:40:52 +0000443// This is both the minimum payload size of a malloc'd block, and its
444// minimum alignment. Must be a power of 2 greater than 4, and should be
445// greater than 8.
446#define VG_MIN_MALLOC_SZB 8
447
448// Round-up size for --sloppy-malloc=yes.
449#define VG_SLOPPY_MALLOC_SZB 4
450
nethercote7ac7f7b2004-11-02 12:36:02 +0000451extern void* VG_(arena_malloc) ( ArenaId arena, SizeT nbytes );
njn25e49d8e72002-09-23 09:36:25 +0000452extern void VG_(arena_free) ( ArenaId arena, void* ptr );
nethercote7ac7f7b2004-11-02 12:36:02 +0000453extern void* VG_(arena_calloc) ( ArenaId arena, SizeT alignment,
454 SizeT nmemb, SizeT nbytes );
455extern void* VG_(arena_realloc) ( ArenaId arena, void* ptr, SizeT alignment,
456 SizeT size );
457extern void* VG_(arena_malloc_aligned) ( ArenaId aid, SizeT req_alignB,
458 SizeT req_pszB );
sewardjde4a1d02002-03-22 01:27:54 +0000459
nethercote7ac7f7b2004-11-02 12:36:02 +0000460extern SizeT VG_(arena_payload_szB) ( ArenaId aid, void* payload );
njn8a6b6c02003-04-22 22:45:55 +0000461
nethercote885dd912004-08-03 23:14:00 +0000462extern void VG_(sanity_check_malloc_all) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000463
nethercote3a42fb82004-08-03 18:08:50 +0000464extern void VG_(print_all_arena_stats) ( void );
nethercote885dd912004-08-03 23:14:00 +0000465
sewardjde4a1d02002-03-22 01:27:54 +0000466extern Bool VG_(is_empty_arena) ( ArenaId aid );
467
sewardjde4a1d02002-03-22 01:27:54 +0000468/* ---------------------------------------------------------------------
njn3e884182003-04-15 13:03:23 +0000469 Exports of vg_intercept.c
sewardj2e93c502002-04-12 11:12:52 +0000470 ------------------------------------------------------------------ */
471
472/* This doesn't export code or data that valgrind.so needs to link
473 against. However, the scheduler does need to know the following
474 request codes. A few, publically-visible, request codes are also
nethercote996901a2004-08-03 13:29:09 +0000475 defined in valgrind.h, and similar headers for some tools. */
sewardj2e93c502002-04-12 11:12:52 +0000476
njn4c791212003-05-02 17:53:54 +0000477#define VG_USERREQ__MALLOC 0x2001
478#define VG_USERREQ__FREE 0x2002
479
sewardj20917d82002-05-28 01:36:45 +0000480/* (Fn, Arg): Create a new thread and run Fn applied to Arg in it. Fn
481 MUST NOT return -- ever. Eventually it will do either __QUIT or
482 __WAIT_JOINER. */
483#define VG_USERREQ__APPLY_IN_NEW_THREAD 0x3001
484
485/* ( no-args ): calling thread disappears from the system forever.
486 Reclaim resources. */
487#define VG_USERREQ__QUIT 0x3002
488
489/* ( void* ): calling thread waits for joiner and returns the void* to
490 it. */
491#define VG_USERREQ__WAIT_JOINER 0x3003
492
493/* ( ThreadId, void** ): wait to join a thread. */
494#define VG_USERREQ__PTHREAD_JOIN 0x3004
495
496/* Set cancellation state and type for this thread. */
497#define VG_USERREQ__SET_CANCELSTATE 0x3005
498#define VG_USERREQ__SET_CANCELTYPE 0x3006
499
500/* ( no-args ): Test if we are at a cancellation point. */
501#define VG_USERREQ__TESTCANCEL 0x3007
502
503/* ( ThreadId, &thread_exit_wrapper is the only allowable arg ): call
504 with this arg to indicate that a cancel is now pending for the
505 specified thread. */
506#define VG_USERREQ__SET_CANCELPEND 0x3008
507
508/* Set/get detach state for this thread. */
509#define VG_USERREQ__SET_OR_GET_DETACH 0x3009
510
thughese321d492004-10-17 15:00:20 +0000511#define VG_USERREQ__PTHREAD_GET_THREADID 0x300A
512#define VG_USERREQ__PTHREAD_MUTEX_LOCK 0x300B
513#define VG_USERREQ__PTHREAD_MUTEX_TIMEDLOCK 0x300C
sewardj20917d82002-05-28 01:36:45 +0000514#define VG_USERREQ__PTHREAD_MUTEX_TRYLOCK 0x300D
515#define VG_USERREQ__PTHREAD_MUTEX_UNLOCK 0x300E
516#define VG_USERREQ__PTHREAD_COND_WAIT 0x300F
517#define VG_USERREQ__PTHREAD_COND_TIMEDWAIT 0x3010
518#define VG_USERREQ__PTHREAD_COND_SIGNAL 0x3011
519#define VG_USERREQ__PTHREAD_COND_BROADCAST 0x3012
520#define VG_USERREQ__PTHREAD_KEY_CREATE 0x3013
521#define VG_USERREQ__PTHREAD_KEY_DELETE 0x3014
sewardj00a66b12002-10-12 16:42:35 +0000522#define VG_USERREQ__PTHREAD_SETSPECIFIC_PTR 0x3015
523#define VG_USERREQ__PTHREAD_GETSPECIFIC_PTR 0x3016
sewardj20917d82002-05-28 01:36:45 +0000524#define VG_USERREQ__READ_MILLISECOND_TIMER 0x3017
525#define VG_USERREQ__PTHREAD_SIGMASK 0x3018
jsgf855d93d2003-10-13 22:26:55 +0000526#define VG_USERREQ__SIGWAIT 0x3019 /* unused */
sewardj20917d82002-05-28 01:36:45 +0000527#define VG_USERREQ__PTHREAD_KILL 0x301A
528#define VG_USERREQ__PTHREAD_YIELD 0x301B
sewardj00a66b12002-10-12 16:42:35 +0000529#define VG_USERREQ__PTHREAD_KEY_VALIDATE 0x301C
sewardj2e93c502002-04-12 11:12:52 +0000530
sewardj8ad94e12002-05-29 00:10:20 +0000531#define VG_USERREQ__CLEANUP_PUSH 0x3020
532#define VG_USERREQ__CLEANUP_POP 0x3021
sewardj870497a2002-05-29 01:06:47 +0000533#define VG_USERREQ__GET_KEY_D_AND_S 0x3022
sewardj8ad94e12002-05-29 00:10:20 +0000534
sewardjef037c72002-05-30 00:40:03 +0000535#define VG_USERREQ__NUKE_OTHER_THREADS 0x3023
sewardjefbfcdf2002-06-19 17:35:45 +0000536
537/* Ask how many signal handler returns have happened to this
538 thread. */
jsgf855d93d2003-10-13 22:26:55 +0000539#define VG_USERREQ__GET_N_SIGS_RETURNED 0x3024 /* unused */
sewardjef037c72002-05-30 00:40:03 +0000540
sewardj2cb00342002-06-28 01:46:26 +0000541/* Get/set entries for a thread's pthread_atfork stack. */
542#define VG_USERREQ__SET_FHSTACK_USED 0x3025
543#define VG_USERREQ__GET_FHSTACK_USED 0x3026
544#define VG_USERREQ__SET_FHSTACK_ENTRY 0x3027
545#define VG_USERREQ__GET_FHSTACK_ENTRY 0x3028
sewardjefbfcdf2002-06-19 17:35:45 +0000546
nethercotef971ab72004-08-02 16:27:40 +0000547/* Denote the finish of __libc_freeres_wrapper(). */
sewardj1fe7b002002-07-16 01:43:15 +0000548#define VG_USERREQ__LIBC_FREERES_DONE 0x3029
fitzhardinge98abfc72003-12-16 02:05:15 +0000549
550/* Allocate RT signals */
551#define VG_USERREQ__GET_SIGRT_MIN 0x302B
552#define VG_USERREQ__GET_SIGRT_MAX 0x302C
553#define VG_USERREQ__ALLOC_RTSIG 0x302D
554
555/* Hook for replace_malloc.o to get malloc functions */
556#define VG_USERREQ__GET_MALLOCFUNCS 0x3030
557
thughesdaa34562004-06-27 12:48:53 +0000558/* Get stack information for a thread. */
559#define VG_USERREQ__GET_STACK_INFO 0x3033
560
sewardj45b4b372002-04-16 22:50:32 +0000561/* Cosmetic ... */
562#define VG_USERREQ__GET_PTHREAD_TRACE_LEVEL 0x3101
sewardj4dced352002-06-04 22:54:20 +0000563/* Log a pthread error from client-space. Cosmetic. */
564#define VG_USERREQ__PTHREAD_ERROR 0x3102
fitzhardinge39de4b42003-10-31 07:12:21 +0000565/* Internal equivalent of VALGRIND_PRINTF . */
566#define VG_USERREQ__INTERNAL_PRINTF 0x3103
567/* Internal equivalent of VALGRIND_PRINTF_BACKTRACE . */
568#define VG_USERREQ__INTERNAL_PRINTF_BACKTRACE 0x3104
sewardj45b4b372002-04-16 22:50:32 +0000569
sewardj54cacf02002-04-12 23:24:59 +0000570/*
nethercote5a2664c2004-09-02 15:37:39 +0000571In core_asm.h:
sewardj54cacf02002-04-12 23:24:59 +0000572#define VG_USERREQ__SIGNAL_RETURNS 0x4001
sewardj54cacf02002-04-12 23:24:59 +0000573*/
574
rjwalshe4e779d2004-04-16 23:02:29 +0000575#define VG_INTERCEPT_PREFIX "_vgi__"
576#define VG_INTERCEPT_PREFIX_LEN 6
577#define VG_INTERCEPT(name) _vgi__##name
578#define VG_INTERCEPT_ALIAS(name) "_vgi__" #name
579
580#define VG_WRAPPER_PREFIX "_vgw__"
581#define VG_WRAPPER_PREFIX_LEN 6
582#define VG_WRAPPER(name) _vgw__##name
583#define VG_WRAPPER_ALIAS(name) "_vgw__" #name
584
njn4c791212003-05-02 17:53:54 +0000585
fitzhardinge98abfc72003-12-16 02:05:15 +0000586struct vg_mallocfunc_info {
587 /* things vg_replace_malloc.o needs to know about */
njnd2252832004-11-26 10:53:33 +0000588 Addr tl_malloc;
589 Addr tl_calloc;
590 Addr tl_realloc;
591 Addr tl_memalign;
592 Addr tl___builtin_new;
593 Addr tl___builtin_vec_new;
594 Addr tl_free;
595 Addr tl___builtin_delete;
596 Addr tl___builtin_vec_delete;
fitzhardinge98abfc72003-12-16 02:05:15 +0000597
598 Addr arena_payload_szB;
599
600 Bool clo_sloppy_malloc;
601 Bool clo_trace_malloc;
602};
sewardj1fe7b002002-07-16 01:43:15 +0000603
sewardj2e93c502002-04-12 11:12:52 +0000604/* ---------------------------------------------------------------------
njn3e884182003-04-15 13:03:23 +0000605 Exports of vg_defaults.c
606 ------------------------------------------------------------------ */
607
njnd2252832004-11-26 10:53:33 +0000608extern Bool VG_(tl_malloc_called_by_scheduler);
njn3e884182003-04-15 13:03:23 +0000609
nethercotef9b59412004-09-10 15:33:32 +0000610/* ---------------------------------------------------------------------
nethercote1f0173b2004-02-28 15:40:36 +0000611 Exports of vg_libpthread.c
612 ------------------------------------------------------------------ */
613
614/* Replacements for pthread types, shared between vg_libpthread.c and
615 vg_scheduler.c. See comment in vg_libpthread.c above the other
616 vg_pthread_*_t types for a description of how these are used. */
617
618struct _vg_pthread_fastlock
619{
620 long int __vg_status; /* "Free" or "taken" or head of waiting list */
621 int __vg_spinlock; /* Used by compare_and_swap emulation. Also,
622 adaptive SMP lock stores spin count here. */
623};
624
625typedef struct
626{
627 int __vg_m_reserved; /* Reserved for future use */
628 int __vg_m_count; /* Depth of recursive locking */
629 /*_pthread_descr*/ void* __vg_m_owner; /* Owner thread (if recursive or errcheck) */
630 int __vg_m_kind; /* Mutex kind: fast, recursive or errcheck */
631 struct _vg_pthread_fastlock __vg_m_lock; /* Underlying fast lock */
632} vg_pthread_mutex_t;
633
634typedef struct
635{
636 struct _vg_pthread_fastlock __vg_c_lock; /* Protect against concurrent access */
nethercotedffad082004-02-28 23:32:11 +0000637 /*_pthread_descr*/ void* __vg_c_waiting; /* Threads waiting on this condition */
638
639 // Nb: the following padding removed because it was missing from an
640 // earlier glibc, so the size test in the CONVERT macro was failing.
641 // --njn
642
nethercote1f0173b2004-02-28 15:40:36 +0000643 // Padding ensures the size is 48 bytes
nethercotedffad082004-02-28 23:32:11 +0000644 /*char __vg_padding[48 - sizeof(struct _vg_pthread_fastlock)
nethercote1f0173b2004-02-28 15:40:36 +0000645 - sizeof(void*) - sizeof(long long)];
nethercotedffad082004-02-28 23:32:11 +0000646 long long __vg_align;*/
nethercote1f0173b2004-02-28 15:40:36 +0000647} vg_pthread_cond_t;
648
649
650/* ---------------------------------------------------------------------
sewardj2e93c502002-04-12 11:12:52 +0000651 Exports of vg_scheduler.c
652 ------------------------------------------------------------------ */
653
sewardj2e93c502002-04-12 11:12:52 +0000654typedef
jsgf855d93d2003-10-13 22:26:55 +0000655 enum ThreadStatus {
sewardj2e93c502002-04-12 11:12:52 +0000656 VgTs_Empty, /* this slot is not in use */
657 VgTs_Runnable, /* waiting to be scheduled */
658 VgTs_WaitJoiner, /* waiting for someone to do join on me */
659 VgTs_WaitJoinee, /* waiting for the thread I did join on */
sewardj2e93c502002-04-12 11:12:52 +0000660 VgTs_WaitMX, /* waiting on a mutex */
sewardj3b5d8862002-04-20 13:53:23 +0000661 VgTs_WaitCV, /* waiting on a condition variable */
jsgf855d93d2003-10-13 22:26:55 +0000662 VgTs_WaitSys, /* waiting for a syscall to complete */
663 VgTs_Sleeping, /* sleeping for a while */
sewardj2e93c502002-04-12 11:12:52 +0000664 }
665 ThreadStatus;
sewardj8ad94e12002-05-29 00:10:20 +0000666
thughes11975ff2004-06-12 12:58:22 +0000667typedef
668 enum CleanupType {
669 VgCt_None, /* this cleanup entry is not initialised */
670 VgCt_Function, /* an old-style function pointer cleanup */
671 VgCt_Longjmp /* a new-style longjmp based cleanup */
672 }
673 CleanupType;
674
thughesdaa34562004-06-27 12:48:53 +0000675/* Information on a thread's stack. */
676typedef
677 struct {
678 Addr base;
679 UInt size;
680 UInt guardsize;
681 }
682 StackInfo;
683
sewardj8ad94e12002-05-29 00:10:20 +0000684/* An entry in a threads's cleanup stack. */
685typedef
686 struct {
thughes11975ff2004-06-12 12:58:22 +0000687 CleanupType type;
688 union {
689 struct {
690 void (*fn)(void*);
691 void* arg;
692 } function;
693 struct {
thughesebed9982004-06-12 17:25:25 +0000694 void *ub;
thughes11975ff2004-06-12 12:58:22 +0000695 int ctype;
696 } longjmp;
697 } data;
sewardj8ad94e12002-05-29 00:10:20 +0000698 }
699 CleanupEntry;
sewardj2cb00342002-06-28 01:46:26 +0000700
701/* An entry in a thread's fork-handler stack. */
702typedef
703 struct {
704 void (*prepare)(void);
705 void (*parent)(void);
706 void (*child)(void);
707 }
708 ForkHandlerEntry;
709
jsgf855d93d2003-10-13 22:26:55 +0000710typedef struct ProxyLWP ProxyLWP;
sewardj2cb00342002-06-28 01:46:26 +0000711
nethercote8ff888f2004-11-17 17:11:45 +0000712//typedef
njn72718642003-07-24 08:45:32 +0000713 struct _ThreadState {
njn25e49d8e72002-09-23 09:36:25 +0000714 /* ThreadId == 0 (and hence vg_threads[0]) is NEVER USED.
715 The thread identity is simply the index in vg_threads[].
716 ThreadId == 1 is the root thread and has the special property
717 that we don't try and allocate or deallocate its stack. For
718 convenience of generating error message, we also put the
719 ThreadId in this tid field, but be aware that it should
720 ALWAYS == the index in vg_threads[]. */
721 ThreadId tid;
sewardj2e93c502002-04-12 11:12:52 +0000722
njn25e49d8e72002-09-23 09:36:25 +0000723 /* Current scheduling status.
sewardj5f07b662002-04-23 16:52:51 +0000724
njn25e49d8e72002-09-23 09:36:25 +0000725 Complications: whenever this is set to VgTs_WaitMX, you
726 should also set .m_edx to whatever the required return value
727 is for pthread_mutex_lock / pthread_cond_timedwait for when
728 the mutex finally gets unblocked. */
729 ThreadStatus status;
sewardj2e93c502002-04-12 11:12:52 +0000730
njn25e49d8e72002-09-23 09:36:25 +0000731 /* When .status == WaitMX, points to the mutex I am waiting for.
732 When .status == WaitCV, points to the mutex associated with
733 the condition variable indicated by the .associated_cv field.
734 In all other cases, should be NULL. */
nethercote1f0173b2004-02-28 15:40:36 +0000735 vg_pthread_mutex_t* associated_mx;
sewardj3b5d8862002-04-20 13:53:23 +0000736
njn25e49d8e72002-09-23 09:36:25 +0000737 /* When .status == WaitCV, points to the condition variable I am
738 waiting for. In all other cases, should be NULL. */
739 void* /*pthread_cond_t* */ associated_cv;
sewardj2e93c502002-04-12 11:12:52 +0000740
njn25e49d8e72002-09-23 09:36:25 +0000741 /* If VgTs_Sleeping, this is when we should wake up, measured in
njn6c846552003-09-16 07:41:43 +0000742 milliseconds as supplied by VG_(read_millisecond_timer).
sewardj2e93c502002-04-12 11:12:52 +0000743
njn25e49d8e72002-09-23 09:36:25 +0000744 If VgTs_WaitCV, this indicates the time at which
745 pthread_cond_timedwait should wake up. If == 0xFFFFFFFF,
746 this means infinitely far in the future, viz,
747 pthread_cond_wait. */
748 UInt awaken_at;
sewardj20917d82002-05-28 01:36:45 +0000749
njn25e49d8e72002-09-23 09:36:25 +0000750 /* If VgTs_WaitJoiner, return value, as generated by joinees. */
751 void* joinee_retval;
sewardj20917d82002-05-28 01:36:45 +0000752
njn25e49d8e72002-09-23 09:36:25 +0000753 /* If VgTs_WaitJoinee, place to copy the return value to, and
754 the identity of the thread we're waiting for. */
755 void** joiner_thread_return;
756 ThreadId joiner_jee_tid;
sewardj8ad94e12002-05-29 00:10:20 +0000757
jsgf855d93d2003-10-13 22:26:55 +0000758 /* If VgTs_WaitSys, this is the syscall we're currently running */
759 Int syscallno;
760
thughesbaa46e52004-07-29 17:44:23 +0000761 /* If VgTs_WaitSys, this is the syscall flags */
762 UInt sys_flags;
763
jsgf855d93d2003-10-13 22:26:55 +0000764 /* Details about this thread's proxy LWP */
765 ProxyLWP *proxy;
766
njn25e49d8e72002-09-23 09:36:25 +0000767 /* Whether or not detached. */
768 Bool detached;
sewardj20917d82002-05-28 01:36:45 +0000769
njn25e49d8e72002-09-23 09:36:25 +0000770 /* Cancelability state and type. */
771 Bool cancel_st; /* False==PTH_CANCEL_DISABLE; True==.._ENABLE */
772 Bool cancel_ty; /* False==PTH_CANC_ASYNCH; True==..._DEFERRED */
773
774 /* Pointer to fn to call to do cancellation. Indicates whether
775 or not cancellation is pending. If NULL, not pending. Else
776 should be &thread_exit_wrapper(), indicating that
777 cancallation is pending. */
778 void (*cancel_pend)(void*);
sewardj2e93c502002-04-12 11:12:52 +0000779
njn25e49d8e72002-09-23 09:36:25 +0000780 /* The cleanup stack. */
781 Int custack_used;
782 CleanupEntry custack[VG_N_CLEANUPSTACK];
sewardj5f07b662002-04-23 16:52:51 +0000783
sewardj00a66b12002-10-12 16:42:35 +0000784 /* A pointer to the thread's-specific-data. This is handled almost
785 entirely from vg_libpthread.c. We just provide hooks to get and
786 set this ptr. This is either NULL, indicating the thread has
787 read/written none of its specifics so far, OR points to a
788 void*[VG_N_THREAD_KEYS], allocated and deallocated in
789 vg_libpthread.c. */
790 void** specifics_ptr;
sewardjb48e5002002-05-13 00:16:03 +0000791
njn25e49d8e72002-09-23 09:36:25 +0000792 /* This thread's blocked-signals mask. Semantics is that for a
793 signal to be delivered to this thread, the signal must not be
jsgf855d93d2003-10-13 22:26:55 +0000794 blocked by this signal mask. If more than one thread accepts a
795 signal, then it will be delivered to one at random. If all
796 threads block the signal, it will remain pending until either a
797 thread unblocks it or someone uses sigwaitsig/sigtimedwait.
798
799 sig_mask reflects what the client told us its signal mask should
800 be, but isn't necessarily the current signal mask of the proxy
801 LWP: it may have more signals blocked because of signal
802 handling, or it may be different because of sigsuspend.
803 */
nethercote73b526f2004-10-31 18:48:21 +0000804 vki_sigset_t sig_mask;
sewardjb48e5002002-05-13 00:16:03 +0000805
fitzhardingef0dd7e12004-01-16 02:17:30 +0000806 /* Effective signal mask. This is the mask which currently
807 applies; it may be different from sig_mask while a signal
jsgf855d93d2003-10-13 22:26:55 +0000808 handler is running.
809 */
nethercote73b526f2004-10-31 18:48:21 +0000810 vki_sigset_t eff_sig_mask;
sewardj2e93c502002-04-12 11:12:52 +0000811
thughes8abf3922004-10-16 10:59:49 +0000812 /* Signal queue. This is used when the kernel doesn't route
813 signals properly in order to remember the signal information
814 while we are routing the signal. It is a circular queue with
815 insertions performed at the head and removals at the tail.
816 */
nethercote73b526f2004-10-31 18:48:21 +0000817 vki_siginfo_t sigqueue[VG_N_SIGNALQUEUE];
thughes8abf3922004-10-16 10:59:49 +0000818 Int sigqueue_head;
819 Int sigqueue_tail;
820
njn25e49d8e72002-09-23 09:36:25 +0000821 /* Stacks. When a thread slot is freed, we don't deallocate its
822 stack; we just leave it lying around for the next use of the
823 slot. If the next use of the slot requires a larger stack,
824 only then is the old one deallocated and a new one
825 allocated.
sewardj2e93c502002-04-12 11:12:52 +0000826
njn25e49d8e72002-09-23 09:36:25 +0000827 For the main thread (threadid == 0), this mechanism doesn't
828 apply. We don't know the size of the stack since we didn't
829 allocate it, and furthermore we never reallocate it. */
sewardj2e93c502002-04-12 11:12:52 +0000830
njn25e49d8e72002-09-23 09:36:25 +0000831 /* The allocated size of this thread's stack (permanently zero
832 if this is ThreadId == 0, since we didn't allocate its stack) */
833 UInt stack_size;
sewardj1e8cdc92002-04-18 11:37:52 +0000834
njn25e49d8e72002-09-23 09:36:25 +0000835 /* Address of the lowest word in this thread's stack. NULL means
836 not allocated yet.
837 */
838 Addr stack_base;
sewardj2e93c502002-04-12 11:12:52 +0000839
thughesdaa34562004-06-27 12:48:53 +0000840 /* The allocated size of this thread's stack's guard area (permanently
841 zero if this is ThreadId == 0, since we didn't allocate its stack) */
842 UInt stack_guard_size;
843
sewardj92a59562002-09-30 00:53:10 +0000844 /* Address of the highest legitimate word in this stack. This is
845 used for error messages only -- not critical for execution
846 correctness. Is is set for all stacks, specifically including
847 ThreadId == 0 (the main thread). */
njn25e49d8e72002-09-23 09:36:25 +0000848 Addr stack_highest_word;
849
fitzhardinge98c4dc02004-03-16 08:27:29 +0000850 /* Alternate signal stack */
nethercote73b526f2004-10-31 18:48:21 +0000851 vki_stack_t altstack;
fitzhardinge98c4dc02004-03-16 08:27:29 +0000852
nethercotec06e2132004-09-03 13:45:29 +0000853 /* Architecture-specific thread state */
sewardj2a99cf62004-11-24 10:44:19 +0000854 ThreadArchState arch;
nethercote8ff888f2004-11-17 17:11:45 +0000855};
856//ThreadState;
sewardj2e93c502002-04-12 11:12:52 +0000857
858
sewardj018f7622002-05-15 21:13:39 +0000859/* The thread table. */
860extern ThreadState VG_(threads)[VG_N_THREADS];
861
862/* Check that tid is in range and denotes a non-Empty thread. */
sewardjb48e5002002-05-13 00:16:03 +0000863extern Bool VG_(is_valid_tid) ( ThreadId tid );
864
jsgf855d93d2003-10-13 22:26:55 +0000865/* Get the ThreadState for a particular thread */
866extern ThreadState *VG_(get_ThreadState)(ThreadId tid);
867
sewardjccef2e62002-05-29 19:26:32 +0000868/* Nuke all threads except tid. */
869extern void VG_(nuke_all_threads_except) ( ThreadId me );
870
jsgf855d93d2003-10-13 22:26:55 +0000871/* Give a hint to the scheduler that it may be a good time to find a
872 new runnable thread. If prefer_sched != VG_INVALID_THREADID, then
873 try to schedule that thread.
874*/
875extern void VG_(need_resched) ( ThreadId prefer_sched );
876
sewardj2e93c502002-04-12 11:12:52 +0000877/* Return codes from the scheduler. */
878typedef
sewardj7e87e382002-05-03 19:09:05 +0000879 enum {
880 VgSrc_Deadlock, /* no runnable threads and no prospect of any
881 even if we wait for a long time */
882 VgSrc_ExitSyscall, /* client called exit(). This is the normal
883 route out. */
jsgf855d93d2003-10-13 22:26:55 +0000884 VgSrc_FatalSig /* Killed by the default action of a fatal
885 signal */
sewardj7e87e382002-05-03 19:09:05 +0000886 }
sewardj2e93c502002-04-12 11:12:52 +0000887 VgSchedReturnCode;
888
sewardj7e87e382002-05-03 19:09:05 +0000889
nethercote238a3c32004-08-09 13:13:31 +0000890// The scheduler. 'fatal_sigNo' is only set if VgSrc_FatalSig is returned.
891extern VgSchedReturnCode VG_(scheduler)
892 ( Int* exit_code, ThreadId* last_run_thread, Int* fatal_sigNo );
sewardj2e93c502002-04-12 11:12:52 +0000893
894extern void VG_(scheduler_init) ( void );
895
sewardj15a43e12002-04-17 19:35:12 +0000896extern void VG_(pp_sched_status) ( void );
sewardj2e93c502002-04-12 11:12:52 +0000897
nethercote75d26242004-08-01 22:59:18 +0000898// Longjmp back to the scheduler and thus enter the sighandler immediately.
nethercote73b526f2004-10-31 18:48:21 +0000899extern void VG_(resume_scheduler) ( Int sigNo, vki_siginfo_t *info );
sewardj2e93c502002-04-12 11:12:52 +0000900
nethercote238a3c32004-08-09 13:13:31 +0000901// Longjmp, ending the scheduler, when a fatal signal occurs in the client.
902extern void VG_(scheduler_handle_fatal_signal)( Int sigNo );
903
sewardj2e93c502002-04-12 11:12:52 +0000904/* The red-zone size which we put at the bottom (highest address) of
905 thread stacks, for paranoia reasons. This can be arbitrary, and
906 doesn't really need to be set at compile time. */
nethercote6e4f9dc2004-07-30 23:36:37 +0000907#define VG_AR_CLIENT_STACKBASE_REDZONE_SZB 16
sewardj2e93c502002-04-12 11:12:52 +0000908
nethercoteaff1c772004-09-13 16:11:09 +0000909// Write a value to a client's thread register, and shadow (if necessary).
910// Note that there are some further similar macros in the arch- and
911// platform-specific parts; these ones are the totally generic ones.
njncf45fd42004-11-24 16:30:22 +0000912#define SET_THREAD_REG( zztid, zzval, zzGETREG, zzevent, zzargs... ) \
913 do { zzGETREG(VG_(threads)[zztid].arch) = (zzval); \
914 VG_TRACK( zzevent, ##zzargs ); \
sewardj018f7622002-05-15 21:13:39 +0000915 } while (0)
916
njnd3040452003-05-19 15:04:06 +0000917#define SET_CLREQ_RETVAL(zztid, zzval) \
njncf45fd42004-11-24 16:30:22 +0000918 SET_THREAD_REG(zztid, zzval, CLREQ_RET, post_reg_write, \
919 Vg_CoreClientReq, zztid, O_CLREQ_RET, sizeof(UWord))
njnd3040452003-05-19 15:04:06 +0000920
921#define SET_CLCALL_RETVAL(zztid, zzval, f) \
njncf45fd42004-11-24 16:30:22 +0000922 SET_THREAD_REG(zztid, zzval, CLREQ_RET, post_reg_write_clientcall_return, \
923 zztid, O_CLREQ_RET, sizeof(UWord), f)
njnd3040452003-05-19 15:04:06 +0000924
925#define SET_PTHREQ_ESP(zztid, zzval) \
njncf45fd42004-11-24 16:30:22 +0000926 SET_THREAD_REG(zztid, zzval, STACK_PTR, post_reg_write, \
927 Vg_CorePThread, zztid, O_STACK_PTR, sizeof(Addr))
njnd3040452003-05-19 15:04:06 +0000928
929#define SET_PTHREQ_RETVAL(zztid, zzval) \
njncf45fd42004-11-24 16:30:22 +0000930 SET_THREAD_REG(zztid, zzval, PTHREQ_RET, post_reg_write, \
931 Vg_CorePThread, zztid, O_PTHREQ_RET, sizeof(UWord))
sewardj018f7622002-05-15 21:13:39 +0000932
sewardj2e93c502002-04-12 11:12:52 +0000933
934/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +0000935 Exports of vg_signals.c
936 ------------------------------------------------------------------ */
937
jsgf855d93d2003-10-13 22:26:55 +0000938extern Bool VG_(do_signal_routing); /* whether scheduler LWP has to route signals */
939
940/* RT signal allocation */
941extern Int VG_(sig_rtmin);
942extern Int VG_(sig_rtmax);
943extern Int VG_(sig_alloc_rtsig) ( Int high );
944
sewardjde4a1d02002-03-22 01:27:54 +0000945extern void VG_(sigstartup_actions) ( void );
946
nethercote73b526f2004-10-31 18:48:21 +0000947extern void VG_(deliver_signal) ( ThreadId tid, const vki_siginfo_t *, Bool async );
sewardjde4a1d02002-03-22 01:27:54 +0000948extern void VG_(unblock_host_signal) ( Int sigNo );
sewardj018f7622002-05-15 21:13:39 +0000949
jsgf855d93d2003-10-13 22:26:55 +0000950extern Bool VG_(is_sig_ign) ( Int sigNo );
951
952/* Route pending signals from the scheduler LWP to the appropriate
953 thread LWP. */
954extern void VG_(route_signals) ( void );
sewardjde4a1d02002-03-22 01:27:54 +0000955
956/* Fake system calls for signal handling. */
nethercote93d9aa12004-11-10 19:08:31 +0000957extern void VG_(do_sys_sigaltstack) ( ThreadId tid );
958extern void VG_(do_sys_sigaction) ( ThreadId tid );
959extern void VG_(do_sys_sigprocmask) ( ThreadId tid, Int how,
nethercote73b526f2004-10-31 18:48:21 +0000960 vki_sigset_t* set,
961 vki_sigset_t* oldset );
nethercote85cdd342004-08-01 22:36:40 +0000962extern void VG_(do_pthread_sigmask_SCSS_upd) ( ThreadId tid, Int how,
nethercote73b526f2004-10-31 18:48:21 +0000963 vki_sigset_t* set,
964 vki_sigset_t* oldset );
sewardjefbfcdf2002-06-19 17:35:45 +0000965
sewardj2e93c502002-04-12 11:12:52 +0000966/* Modify the current thread's state once we have detected it is
967 returning from a signal handler. */
nethercoteaff1c772004-09-13 16:11:09 +0000968extern Bool VG_(signal_returns) ( ThreadId tid );
sewardjde4a1d02002-03-22 01:27:54 +0000969
sewardj2e93c502002-04-12 11:12:52 +0000970/* Handy utilities to block/restore all host signals. */
971extern void VG_(block_all_host_signals)
nethercote73b526f2004-10-31 18:48:21 +0000972 ( /* OUT */ vki_sigset_t* saved_mask );
sewardj018f7622002-05-15 21:13:39 +0000973extern void VG_(restore_all_host_signals)
nethercote73b526f2004-10-31 18:48:21 +0000974 ( /* IN */ vki_sigset_t* saved_mask );
sewardjde4a1d02002-03-22 01:27:54 +0000975
jsgf855d93d2003-10-13 22:26:55 +0000976extern void VG_(kill_self)(Int sigNo);
977
fitzhardingef1beb252004-03-16 09:49:08 +0000978/* These function synthesize a fault, as if the running instruction
979 had had a fault. These functions do not return - they longjmp back
980 into the scheduler so the signal can be delivered. */
981extern void VG_(synth_fault) (ThreadId tid);
982extern void VG_(synth_fault_mapping)(ThreadId tid, Addr addr);
983extern void VG_(synth_fault_perms) (ThreadId tid, Addr addr);
984
nethercote759dda32004-08-07 18:16:56 +0000985extern void VG_(get_sigstack_bounds)( Addr* low, Addr* high );
fitzhardingef1beb252004-03-16 09:49:08 +0000986
sewardjde4a1d02002-03-22 01:27:54 +0000987/* ---------------------------------------------------------------------
988 Exports of vg_mylibc.c
989 ------------------------------------------------------------------ */
990
njnca0518d2004-11-26 19:34:36 +0000991// Useful for making failing stubs, when certain things haven't yet been
992// implemented.
993#define I_die_here \
994 VG_(core_assert_fail) ("Unimplemented functionality", \
995 __FILE__, __LINE__, __PRETTY_FUNCTION__)
996
njne427a662002-10-02 11:08:25 +0000997#define vg_assert(expr) \
998 ((void) ((expr) ? 0 : \
999 (VG_(core_assert_fail) (VG__STRING(expr), \
1000 __FILE__, __LINE__, \
1001 __PRETTY_FUNCTION__), 0)))
1002__attribute__ ((__noreturn__))
daywalker3222e0a2003-09-18 01:39:50 +00001003extern void VG_(core_assert_fail) ( const Char* expr, const Char* file,
1004 Int line, const Char* fn );
njne427a662002-10-02 11:08:25 +00001005__attribute__ ((__noreturn__))
1006extern void VG_(core_panic) ( Char* str );
thughes5876d552004-09-26 18:44:06 +00001007__attribute__ ((__noreturn__))
1008extern void VG_(core_panic_at) ( Char* str, ExeContext *ec );
sewardjde4a1d02002-03-22 01:27:54 +00001009
nethercote05675c82004-08-04 10:37:49 +00001010/* Tools use VG_(strdup)() which doesn't expose ArenaId */
njn25e49d8e72002-09-23 09:36:25 +00001011extern Char* VG_(arena_strdup) ( ArenaId aid, const Char* s);
sewardjde4a1d02002-03-22 01:27:54 +00001012
njn25e49d8e72002-09-23 09:36:25 +00001013extern Int VG_(fcntl) ( Int fd, Int cmd, Int arg );
jsgf855d93d2003-10-13 22:26:55 +00001014extern Int VG_(poll)( struct vki_pollfd *, UInt nfds, Int timeout);
sewardj2e93c502002-04-12 11:12:52 +00001015
fitzhardinge98abfc72003-12-16 02:05:15 +00001016/* system/mman.h */
nethercote8b5f40c2004-11-02 13:29:50 +00001017extern void* VG_(mmap)( void* start, SizeT length, UInt prot, UInt flags,
nethercote5b9fafd2004-11-04 18:39:22 +00001018 UInt sf_flags, UInt fd, OffT offset );
nethercote8b5f40c2004-11-02 13:29:50 +00001019extern Int VG_(munmap)( void* start, SizeT length );
1020extern Int VG_(mprotect)( void *start, SizeT length, UInt prot );
fitzhardinge98abfc72003-12-16 02:05:15 +00001021
1022
jsgf855d93d2003-10-13 22:26:55 +00001023/* Move an fd into the Valgrind-safe range */
1024Int VG_(safe_fd)(Int oldfd);
1025
sewardj570f8902002-11-03 11:44:36 +00001026extern Int VG_(write_socket)( Int sd, void *msg, Int count );
sewardj73cf3bc2002-11-03 03:20:15 +00001027
1028/* --- Connecting over the network --- */
1029extern Int VG_(connect_via_socket)( UChar* str );
1030
fitzhardinge98abfc72003-12-16 02:05:15 +00001031/* Environment manipulations */
nethercote60a96c52004-08-03 13:08:31 +00001032extern Char **VG_(env_setenv) ( Char ***envp, const Char* varname,
1033 const Char *val );
1034extern void VG_(env_unsetenv) ( Char **env, const Char *varname );
1035extern void VG_(env_remove_valgrind_env_stuff) ( Char** env );
sewardj570f8902002-11-03 11:44:36 +00001036
1037/* ---------------------------------------------------------------------
1038 Exports of vg_message.c
1039 ------------------------------------------------------------------ */
1040
1041/* Low-level -- send bytes directly to the message sink. Do not
1042 use. */
1043extern void VG_(send_bytes_to_logging_sink) ( Char* msg, Int nbytes );
1044
nethercoted1da90e2004-08-03 17:26:39 +00001045// Functions for printing from code within Valgrind, but which runs on the
nethercotec91ce8d2004-08-09 11:15:10 +00001046// sim'd CPU. Defined here because needed for vg_libpthread.c,
1047// vg_replace_malloc.c, plus the rest of the core. The weak attribute
1048// ensures the multiple definitions are not a problem. They must be functions
1049// rather than macros so that va_list can be used.
1050
1051__attribute__((weak))
1052int
1053VALGRIND_INTERNAL_PRINTF(char *format, ...)
1054{
nethercotebe671db2004-10-26 11:44:46 +00001055 UWord _qzz_res = 0;
nethercotec91ce8d2004-08-09 11:15:10 +00001056 va_list vargs;
1057 va_start(vargs, format);
1058 VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0, VG_USERREQ__INTERNAL_PRINTF,
nethercotebe671db2004-10-26 11:44:46 +00001059 (UWord)format, (UWord)vargs, 0, 0);
nethercotec91ce8d2004-08-09 11:15:10 +00001060 va_end(vargs);
1061 return _qzz_res;
1062}
1063
1064__attribute__((weak))
1065int
1066VALGRIND_INTERNAL_PRINTF_BACKTRACE(char *format, ...)
1067{
nethercotebe671db2004-10-26 11:44:46 +00001068 UWord _qzz_res = 0;
nethercotec91ce8d2004-08-09 11:15:10 +00001069 va_list vargs;
1070 va_start(vargs, format);
1071 VALGRIND_MAGIC_SEQUENCE(_qzz_res, 0, VG_USERREQ__INTERNAL_PRINTF_BACKTRACE,
nethercotebe671db2004-10-26 11:44:46 +00001072 (UWord)format, (UWord)vargs, 0, 0);
nethercotec91ce8d2004-08-09 11:15:10 +00001073 va_end(vargs);
1074 return _qzz_res;
1075}
1076
nethercoted1da90e2004-08-03 17:26:39 +00001077
sewardjde4a1d02002-03-22 01:27:54 +00001078/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001079 Exports of vg_demangle.c
1080 ------------------------------------------------------------------ */
1081
1082extern void VG_(demangle) ( Char* orig, Char* result, Int result_size );
1083
sewardj4ccf7072004-11-28 16:58:05 +00001084
sewardjde4a1d02002-03-22 01:27:54 +00001085/* ---------------------------------------------------------------------
1086 Exports of vg_from_ucode.c
1087 ------------------------------------------------------------------ */
1088
njn25e49d8e72002-09-23 09:36:25 +00001089extern void VG_(print_ccall_stats) ( void );
1090extern void VG_(print_UInstr_histogram) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001091
sewardj22854b92002-11-30 14:00:47 +00001092
sewardjde4a1d02002-03-22 01:27:54 +00001093/* ---------------------------------------------------------------------
1094 Exports of vg_to_ucode.c
1095 ------------------------------------------------------------------ */
1096
fitzhardingec2dbbac2004-01-23 23:09:01 +00001097Bool VG_(cpu_has_feature)(UInt feat);
1098
sewardjde4a1d02002-03-22 01:27:54 +00001099
1100/* ---------------------------------------------------------------------
1101 Exports of vg_translate.c
1102 ------------------------------------------------------------------ */
1103
nethercote4d714382004-10-13 09:47:24 +00001104extern Bool VG_(translate) ( ThreadId tid, Addr orig_addr, Bool debugging );
sewardjde4a1d02002-03-22 01:27:54 +00001105
sewardjb5ff83e2002-12-01 19:40:49 +00001106
sewardjde4a1d02002-03-22 01:27:54 +00001107/* ---------------------------------------------------------------------
1108 Exports of vg_execontext.c.
1109 ------------------------------------------------------------------ */
1110
nethercote4ad74312004-10-26 09:59:49 +00001111/* Records the PC and a bit of the call chain. The first 4 IP
sewardjde4a1d02002-03-22 01:27:54 +00001112 values are used in comparisons do remove duplicate errors, and for
1113 comparing against suppression specifications. The rest are purely
1114 informational (but often important). */
1115
njn25e49d8e72002-09-23 09:36:25 +00001116struct _ExeContext {
1117 struct _ExeContext * next;
1118 /* Variable-length array. The size is VG_(clo_backtrace_size); at
nethercote86c5dcb2004-09-05 21:32:37 +00001119 least 1, at most VG_DEEPEST_BACKTRACE. [0] is the current IP,
njn25e49d8e72002-09-23 09:36:25 +00001120 [1] is its caller, [2] is the caller of [1], etc. */
nethercote86c5dcb2004-09-05 21:32:37 +00001121 Addr ips[0];
njn25e49d8e72002-09-23 09:36:25 +00001122};
sewardjde4a1d02002-03-22 01:27:54 +00001123
1124
sewardjde4a1d02002-03-22 01:27:54 +00001125/* Print stats (informational only). */
nethercote3a42fb82004-08-03 18:08:50 +00001126extern void VG_(print_ExeContext_stats) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001127
njn25e49d8e72002-09-23 09:36:25 +00001128/* Like VG_(get_ExeContext), but with a slightly different type */
nethercote3d4a0b12004-09-06 15:14:46 +00001129extern ExeContext* VG_(get_ExeContext2) ( Addr ip, Addr fp,
1130 Addr fp_min, Addr fp_max );
sewardjde4a1d02002-03-22 01:27:54 +00001131
1132
1133/* ---------------------------------------------------------------------
1134 Exports of vg_errcontext.c.
1135 ------------------------------------------------------------------ */
1136
njn25e49d8e72002-09-23 09:36:25 +00001137extern void VG_(load_suppressions) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001138
njn25e49d8e72002-09-23 09:36:25 +00001139extern void VG_(record_pthread_error) ( ThreadId tid, Char* msg );
sewardjde4a1d02002-03-22 01:27:54 +00001140
njn25e49d8e72002-09-23 09:36:25 +00001141extern void VG_(show_all_errors) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001142
nethercotef2b11482004-08-02 12:36:01 +00001143extern Bool VG_(is_action_requested) ( Char* action, Bool* clo );
njn43c799e2003-04-08 00:08:52 +00001144
nethercotef2b11482004-08-02 12:36:01 +00001145extern UInt VG_(get_n_errs_found) ( void );
njn47363ab2003-04-21 13:24:40 +00001146
sewardjde4a1d02002-03-22 01:27:54 +00001147/* ---------------------------------------------------------------------
1148 Exports of vg_procselfmaps.c
1149 ------------------------------------------------------------------ */
1150
njnfa1016e2003-09-25 17:54:11 +00001151/* Reads /proc/self/maps into a static buffer which can be parsed by
1152 VG_(parse_procselfmaps)(). */
1153extern void VG_(read_procselfmaps) ( void );
njn3e884182003-04-15 13:03:23 +00001154
1155/* Parses /proc/self/maps, calling `record_mapping' for each entry. If
1156 `read_from_file' is True, /proc/self/maps is read directly, otherwise
1157 it's read from the buffer filled by VG_(read_procselfmaps_contents)(). */
sewardjde4a1d02002-03-22 01:27:54 +00001158extern
njnfa1016e2003-09-25 17:54:11 +00001159void VG_(parse_procselfmaps) (
nethercote8991d5a2004-11-03 17:07:46 +00001160 void (*record_mapping)( Addr addr, SizeT len, Char rr, Char ww, Char xx,
nethercote85cdd342004-08-01 22:36:40 +00001161 UInt dev, UInt ino, ULong foff,
1162 const UChar *filename ) );
sewardjde4a1d02002-03-22 01:27:54 +00001163
1164
1165/* ---------------------------------------------------------------------
1166 Exports of vg_symtab2.c
1167 ------------------------------------------------------------------ */
1168
fitzhardinge98abfc72003-12-16 02:05:15 +00001169typedef struct _Segment Segment;
1170
1171extern Bool VG_(is_object_file) ( const void *hdr );
nethercote4ad74312004-10-26 09:59:49 +00001172extern void VG_(mini_stack_dump) ( Addr ips[], UInt n_ips );
fitzhardinge98abfc72003-12-16 02:05:15 +00001173extern SegInfo * VG_(read_seg_symbols) ( Segment *seg );
fitzhardinge98abfc72003-12-16 02:05:15 +00001174extern void VG_(symtab_incref) ( SegInfo * );
nethercote8991d5a2004-11-03 17:07:46 +00001175extern void VG_(symtab_decref) ( SegInfo *, Addr a );
sewardjde4a1d02002-03-22 01:27:54 +00001176
njn25e49d8e72002-09-23 09:36:25 +00001177extern Bool VG_(get_fnname_nodemangle)( Addr a, Char* fnname, Int n_fnname );
sewardj25c7c3a2003-07-10 00:17:58 +00001178
fitzhardinge98abfc72003-12-16 02:05:15 +00001179/* Set up some default redirects */
1180extern void VG_(setup_code_redirect_table) ( void );
sewardj25c7c3a2003-07-10 00:17:58 +00001181
fitzhardinge98abfc72003-12-16 02:05:15 +00001182/* Redirection machinery */
nethercote85cdd342004-08-01 22:36:40 +00001183extern Addr VG_(code_redirect) ( Addr orig );
sewardjde4a1d02002-03-22 01:27:54 +00001184
1185/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001186 Exports of vg_main.c
1187 ------------------------------------------------------------------ */
1188
sewardjb91ae7f2003-04-29 23:50:00 +00001189/* Is this a SSE/SSE2-capable CPU? If so, we had better save/restore
1190 the SSE state all over the place. This is set up very early, in
nethercote1d447092004-02-01 17:29:59 +00001191 main(). We have to determine it early since we can't even
sewardjb91ae7f2003-04-29 23:50:00 +00001192 correctly snapshot the startup machine state without it. */
1193extern Bool VG_(have_ssestate);
1194
sewardj73cf3bc2002-11-03 03:20:15 +00001195/* Tell the logging mechanism whether we are logging to a file
1196 descriptor or a socket descriptor. */
1197extern Bool VG_(logging_to_filedes);
1198
njn25e49d8e72002-09-23 09:36:25 +00001199/* Sanity checks which may be done at any time. The scheduler decides when. */
nethercote885dd912004-08-03 23:14:00 +00001200extern void VG_(sanity_check_general) ( Bool force_expensive );
njn25e49d8e72002-09-23 09:36:25 +00001201
fitzhardinge98abfc72003-12-16 02:05:15 +00001202/* Address space */
1203extern Addr VG_(client_base); /* client address space limits */
1204extern Addr VG_(client_end);
1205extern Addr VG_(client_mapbase); /* base of mappings */
1206extern Addr VG_(clstk_base); /* client stack range */
1207extern Addr VG_(clstk_end);
fitzhardinge92360792003-12-24 10:11:11 +00001208extern Addr VG_(client_trampoline_code);
1209
fitzhardinge98abfc72003-12-16 02:05:15 +00001210extern Addr VG_(brk_base); /* start of brk */
1211extern Addr VG_(brk_limit); /* current brk */
nethercote996901a2004-08-03 13:29:09 +00001212extern Addr VG_(shadow_base); /* tool's shadow memory */
fitzhardinge98abfc72003-12-16 02:05:15 +00001213extern Addr VG_(shadow_end);
1214extern Addr VG_(valgrind_base); /* valgrind's address range */
nethercote820bd8c2004-09-07 23:04:49 +00001215extern Addr VG_(valgrind_last); // Nb: last byte, rather than one past the end
fitzhardinge98abfc72003-12-16 02:05:15 +00001216
nethercote73b526f2004-10-31 18:48:21 +00001217extern struct vki_rlimit VG_(client_rlimit_data); /* client's original rlimit data */
1218extern struct vki_rlimit VG_(client_rlimit_stack); /* client's original rlimit stack */
fitzhardingeb50068f2004-02-24 23:42:55 +00001219
fitzhardingea49f9b52003-12-16 22:26:45 +00001220/* client executable file descriptor */
1221extern Int VG_(clexecfd);
fitzhardinge98abfc72003-12-16 02:05:15 +00001222
nethercotef6a1d502004-08-09 12:21:57 +00001223// Help set up the child used when doing execve() with --trace-children=yes
1224Char* VG_(build_child_VALGRINDCLO) ( Char* exename );
1225Char* VG_(build_child_exename) ( void );
1226
sewardjde4a1d02002-03-22 01:27:54 +00001227/* Called when some unhandleable client behaviour is detected.
1228 Prints a msg and aborts. */
njn25e49d8e72002-09-23 09:36:25 +00001229extern void VG_(unimplemented) ( Char* msg )
1230 __attribute__((__noreturn__));
sewardjde4a1d02002-03-22 01:27:54 +00001231
nethercote04d0fbc2004-01-26 16:48:06 +00001232/* Something of a function looking for a home ... start up debugger. */
njnc6168192004-11-29 13:54:10 +00001233extern void VG_(start_debugger) ( ThreadId tid );
sewardjde4a1d02002-03-22 01:27:54 +00001234
sewardjde4a1d02002-03-22 01:27:54 +00001235/* Counts downwards in vg_run_innerloop. */
1236extern UInt VG_(dispatch_ctr);
1237
sewardj4ccf7072004-11-28 16:58:05 +00001238/* Instruction pointer guest state offset, used by $VG_ARCH/dispatch.S. */
njn16de5572004-11-27 14:27:21 +00001239extern UInt VG_(instr_ptr_offset);
1240
sewardj4ccf7072004-11-28 16:58:05 +00001241/* Stats ... */
nethercote844e7122004-08-02 15:27:22 +00001242extern void VG_(print_scheduler_stats) ( void );
sewardj2e93c502002-04-12 11:12:52 +00001243
nethercote2e05c332004-09-06 16:43:37 +00001244
sewardjde4a1d02002-03-22 01:27:54 +00001245/* ---------------------------------------------------------------------
1246 Exports of vg_memory.c
1247 ------------------------------------------------------------------ */
1248
fitzhardinge98abfc72003-12-16 02:05:15 +00001249/* A Segment is mapped piece of client memory. This covers all kinds
1250 of mapped memory (exe, brk, mmap, .so, shm, stack, etc)
1251
1252 We try to encode everything we know about a particular segment here.
1253*/
nethercote85cdd342004-08-01 22:36:40 +00001254#define SF_FIXED (1 << 0) // client asked for MAP_FIXED
1255#define SF_SHARED (1 << 1) // shared
1256#define SF_SHM (1 << 2) // SYSV SHM (also SF_SHARED)
1257#define SF_MMAP (1 << 3) // mmap memory
1258#define SF_FILE (1 << 4) // mapping is backed by a file
1259#define SF_STACK (1 << 5) // is a stack
1260#define SF_GROWDOWN (1 << 6) // segment grows down
1261#define SF_GROWUP (1 << 7) // segment grows up
1262#define SF_EXEC (1 << 8) // segment created by exec
1263#define SF_DYNLIB (1 << 9) // mapped from dynamic library
1264#define SF_NOSYMS (1 << 10) // don't load syms, even if present
1265#define SF_BRK (1 << 11) // brk segment
1266#define SF_CORE (1 << 12) // allocated by core on behalf of the client
1267#define SF_VALGRIND (1 << 13) // a valgrind-internal mapping - not in client
1268#define SF_CODE (1 << 14) // segment contains cached code
fitzhardinge98abfc72003-12-16 02:05:15 +00001269
1270struct _Segment {
1271 UInt prot; /* VKI_PROT_* */
1272 UInt flags; /* SF_* */
1273
1274 Addr addr; /* mapped addr (page aligned) */
nethercote8991d5a2004-11-03 17:07:46 +00001275 SizeT len; /* size of mapping (page aligned) */
fitzhardinge98abfc72003-12-16 02:05:15 +00001276
1277 /* These are valid if (flags & SF_FILE) */
1278 ULong offset; /* file offset */
1279 const Char *filename; /* filename (NULL if unknown) */
1280 UInt dev; /* device */
1281 UInt ino; /* inode */
1282
1283 SegInfo *symtab; /* symbol table */
1284};
1285
1286/* segment mapped from a file descriptor */
nethercote8b5f40c2004-11-02 13:29:50 +00001287extern void VG_(map_fd_segment) (Addr addr, SizeT len, UInt prot, UInt flags,
fitzhardinge98abfc72003-12-16 02:05:15 +00001288 Int fd, ULong off, const Char *filename);
1289
1290/* segment mapped from a file */
nethercote8b5f40c2004-11-02 13:29:50 +00001291extern void VG_(map_file_segment)(Addr addr, SizeT len, UInt prot, UInt flags,
fitzhardinge98abfc72003-12-16 02:05:15 +00001292 UInt dev, UInt ino, ULong off, const Char *filename);
1293
1294/* simple segment */
nethercote8b5f40c2004-11-02 13:29:50 +00001295extern void VG_(map_segment) (Addr addr, SizeT len, UInt prot, UInt flags);
fitzhardinge98abfc72003-12-16 02:05:15 +00001296
nethercote8b5f40c2004-11-02 13:29:50 +00001297extern void VG_(unmap_range) (Addr addr, SizeT len);
1298extern void VG_(mprotect_range)(Addr addr, SizeT len, UInt prot);
1299extern Addr VG_(find_map_space)(Addr base, SizeT len, Bool for_client);
fitzhardinge98abfc72003-12-16 02:05:15 +00001300
1301extern Segment *VG_(find_segment)(Addr a);
fitzhardinged65dcad2004-03-13 02:06:58 +00001302extern Segment *VG_(first_segment)(void);
fitzhardinge98abfc72003-12-16 02:05:15 +00001303extern Segment *VG_(next_segment)(Segment *);
1304
nethercote8991d5a2004-11-03 17:07:46 +00001305extern Bool VG_(seg_contains)(const Segment *s, Addr ptr, SizeT size);
1306extern Bool VG_(seg_overlaps)(const Segment *s, Addr ptr, SizeT size);
fitzhardinge98abfc72003-12-16 02:05:15 +00001307
nethercote8991d5a2004-11-03 17:07:46 +00001308extern void VG_(pad_address_space) (void);
thughes9aaebc32004-07-15 23:13:37 +00001309extern void VG_(unpad_address_space)(void);
1310
sewardj2a99cf62004-11-24 10:44:19 +00001311extern REGPARM(2)
1312 void VG_(unknown_SP_update) ( Addr old_SP, Addr new_SP );
sewardjde4a1d02002-03-22 01:27:54 +00001313
jsgf855d93d2003-10-13 22:26:55 +00001314/* ---------------------------------------------------------------------
1315 Exports of vg_proxylwp.c
1316 ------------------------------------------------------------------ */
1317
1318/* Issue a syscall for thread tid */
njnc6168192004-11-29 13:54:10 +00001319extern Int VG_(sys_issue)(ThreadId tid);
jsgf855d93d2003-10-13 22:26:55 +00001320
1321extern void VG_(proxy_init) ( void );
1322extern void VG_(proxy_create) ( ThreadId tid );
1323extern void VG_(proxy_delete) ( ThreadId tid, Bool force );
1324extern void VG_(proxy_results) ( void );
sewardj0a785fd2004-11-24 21:24:24 +00001325extern void VG_(proxy_sendsig) ( ThreadId fromTid, ThreadId toTid, Int signo );
jsgf855d93d2003-10-13 22:26:55 +00001326extern void VG_(proxy_setsigmask)(ThreadId tid);
nethercote73b526f2004-10-31 18:48:21 +00001327extern void VG_(proxy_sigack) ( ThreadId tid, const vki_sigset_t *);
jsgf855d93d2003-10-13 22:26:55 +00001328extern void VG_(proxy_abort_syscall) ( ThreadId tid );
1329extern void VG_(proxy_waitsig) ( void );
fitzhardinge31ba9052004-01-16 02:15:23 +00001330extern void VG_(proxy_wait_sys) (ThreadId tid, Bool restart);
jsgf855d93d2003-10-13 22:26:55 +00001331
nethercote85cdd342004-08-01 22:36:40 +00001332extern void VG_(proxy_shutdown) ( void ); // shut down the syscall workers
1333extern Int VG_(proxy_resfd) ( void ); // FD something can select on to know
1334 // a syscall finished
jsgf855d93d2003-10-13 22:26:55 +00001335
1336/* Sanity-check the whole proxy-LWP machinery */
nethercote885dd912004-08-03 23:14:00 +00001337void VG_(sanity_check_proxy)(void);
jsgf855d93d2003-10-13 22:26:55 +00001338
1339/* Send a signal from a thread's proxy to the thread. This longjmps
1340 back into the proxy's main loop, so it doesn't return. */
1341__attribute__ ((__noreturn__))
nethercote73b526f2004-10-31 18:48:21 +00001342extern void VG_(proxy_handlesig)( const vki_siginfo_t *siginfo,
nethercotee5a3e2b2004-10-13 14:42:57 +00001343 Addr ip, Int sysnum );
jsgf855d93d2003-10-13 22:26:55 +00001344
sewardjde4a1d02002-03-22 01:27:54 +00001345/* ---------------------------------------------------------------------
njn25e49d8e72002-09-23 09:36:25 +00001346 Exports of vg_syscalls.c
sewardjde4a1d02002-03-22 01:27:54 +00001347 ------------------------------------------------------------------ */
1348
fitzhardinge98abfc72003-12-16 02:05:15 +00001349extern Char *VG_(resolve_filename)(Int fd);
njn25e49d8e72002-09-23 09:36:25 +00001350
jsgf855d93d2003-10-13 22:26:55 +00001351extern Bool VG_(pre_syscall) ( ThreadId tid );
fitzhardinge31ba9052004-01-16 02:15:23 +00001352extern void VG_(post_syscall)( ThreadId tid, Bool restart );
sewardjde4a1d02002-03-22 01:27:54 +00001353
nethercote5b9fafd2004-11-04 18:39:22 +00001354extern Bool VG_(is_kerror) ( Word res );
sewardjde4a1d02002-03-22 01:27:54 +00001355
jsgf855d93d2003-10-13 22:26:55 +00001356/* Internal atfork handlers */
1357typedef void (*vg_atfork_t)(ThreadId);
1358extern void VG_(atfork)(vg_atfork_t pre, vg_atfork_t parent, vg_atfork_t child);
sewardjde4a1d02002-03-22 01:27:54 +00001359
rjwalshf5f536f2003-11-17 17:45:00 +00001360/* fd leakage calls. */
1361extern void VG_(init_preopened_fds) ( void );
nethercote3a42fb82004-08-03 18:08:50 +00001362extern void VG_(show_open_fds) ( void );
rjwalshf5f536f2003-11-17 17:45:00 +00001363
nethercote8ff888f2004-11-17 17:11:45 +00001364// Return true if address range entirely contained within client
1365// address space.
1366Bool VG_(valid_client_addr)(Addr start, SizeT size, ThreadId tid,
1367 const Char *syscallname);
nethercote3d5e9102004-11-17 18:22:38 +00001368
1369// Return true if we're allowed to use or create this fd.
1370Bool VG_(fd_allowed)(Int fd, const Char *syscallname, ThreadId tid, Bool soft);
1371
njnc6168192004-11-29 13:54:10 +00001372void VG_(record_fd_open)(ThreadId tid, Int fd, char *pathname);
nethercote8ff888f2004-11-17 17:11:45 +00001373
1374// Flags describing syscall wrappers
1375#define Special (1 << 0)
1376#define MayBlock (1 << 1)
1377#define NBRunInLWP (1 << 2) // non-blocking, but must run in LWP context
1378#define PostOnFail (1 << 3)
1379
njn61fa0af2004-11-27 15:22:24 +00001380// Templates for generating the PRE and POST macros. For ones that must be
1381// publically visible, use an empty 'qual', 'prefix' should start with
1382// "vgArch_", and there should be corresponding global declarations (like
1383// the GEN_SYSCALL_WRAPPER ones below). Otherwise, use "static" for 'qual',
1384// and "vgArch_" should not be in the 'prefix'.
1385#define PRE_TEMPLATE(qual, prefix, name, f) \
1386 qual UInt prefix##_##name##_flags = f; \
1387 qual void prefix##_##name##_before(ThreadId tid, ThreadState *tst)
1388#define POST_TEMPLATE(qual, prefix, name) \
1389 qual void prefix##_##name##_after (ThreadId tid, ThreadState *tst)
1390
1391// This macro is used to write other macros which making writing syscall
1392// tables easier.
1393#define SYS_WRAPPER_ENTRY_X_(prefix, const, name) \
1394 [const] = { &prefix##_##name##_flags, \
1395 prefix##_##name##_before, NULL }
1396#define SYS_WRAPPER_ENTRY_XY(prefix, const, name) \
1397 [const] = { &prefix##_##name##_flags, \
1398 prefix##_##name##_before, \
1399 prefix##_##name##_after }
1400
1401// Macros for adding generic wrappers to a syscall table.
1402#define GENX_(const, name) SYS_WRAPPER_ENTRY_X_(vgArch_gen, const, name)
1403#define GENXY(const, name) SYS_WRAPPER_ENTRY_XY(vgArch_gen, const, name)
nethercote8ff888f2004-11-17 17:11:45 +00001404
njn22cfccb2004-11-27 16:10:23 +00001405// Space-saving macros for syscall wrappers
1406#define SYSNO SYSCALL_NUM(tst->arch) // in PRE(x)
1407#define RES SYSCALL_RET(tst->arch) // in POST(x)
1408#define ARG1 SYSCALL_ARG1(tst->arch)
1409#define ARG2 SYSCALL_ARG2(tst->arch)
1410#define ARG3 SYSCALL_ARG3(tst->arch)
1411#define ARG4 SYSCALL_ARG4(tst->arch)
1412#define ARG5 SYSCALL_ARG5(tst->arch)
1413#define ARG6 SYSCALL_ARG6(tst->arch)
1414
1415#define SET_RESULT(val) PLATFORM_SET_SYSCALL_RESULT(tst->arch, (val))
1416
1417#define PRINT(format, args...) \
1418 if (VG_(clo_trace_syscalls)) \
1419 VG_(printf)(format, ## args)
1420
nethercote8ff888f2004-11-17 17:11:45 +00001421// Generic (platform-independent) syscall wrappers. These are generally
1422// POSIX or something like that; those that are not POSIX are annotated
1423// with what standards they are part of, as stated in the Linux man pages.
nethercote3d5e9102004-11-17 18:22:38 +00001424// For many of them, it's unclear if they are generic, or Linux-specific, or
1425// x86/Linux-specific, or something else again.
nethercote8ff888f2004-11-17 17:11:45 +00001426//
1427// Nb: This list may change over time... ones thought at first to be generic
1428// may turn out not to be, and so be moved into OS-specific or
1429// platform-specific files. If there's any doubt, I'm leaving them in here.
1430//
1431// Nb 2: if porting to a new OS, you should really check all these generic
1432// wrappers to make sure they match your OS, painful as it might be.
njn61fa0af2004-11-27 15:22:24 +00001433//
1434// For each generic ("gen") wrapper, we declare the pre-wrapper, the
1435// post-wrapper (which is actually not always needed), and the associated
1436// flags.
1437#define GEN_SYSCALL_WRAPPER(x) \
1438 extern UInt VGA_(gen_##x##_flags); \
1439 extern void VGA_(gen_##x##_before)(ThreadId tid, ThreadState *tst); \
1440 extern void VGA_(gen_##x##_after) (ThreadId tid, ThreadState *tst)
nethercote8ff888f2004-11-17 17:11:45 +00001441
1442GEN_SYSCALL_WRAPPER(sys_ni_syscall); // * P -- unimplemented
1443GEN_SYSCALL_WRAPPER(sys_exit);
1444GEN_SYSCALL_WRAPPER(sys_fork);
1445GEN_SYSCALL_WRAPPER(sys_read);
1446GEN_SYSCALL_WRAPPER(sys_write);
1447GEN_SYSCALL_WRAPPER(sys_open);
1448GEN_SYSCALL_WRAPPER(sys_close);
1449GEN_SYSCALL_WRAPPER(sys_waitpid);
1450GEN_SYSCALL_WRAPPER(sys_creat);
1451GEN_SYSCALL_WRAPPER(sys_link);
1452GEN_SYSCALL_WRAPPER(sys_unlink);
nethercote3d5e9102004-11-17 18:22:38 +00001453GEN_SYSCALL_WRAPPER(sys_execve); // (*??) P
nethercote8ff888f2004-11-17 17:11:45 +00001454GEN_SYSCALL_WRAPPER(sys_chdir);
1455GEN_SYSCALL_WRAPPER(sys_time);
1456GEN_SYSCALL_WRAPPER(sys_mknod);
1457GEN_SYSCALL_WRAPPER(sys_chmod);
1458GEN_SYSCALL_WRAPPER(sys_lseek);
1459GEN_SYSCALL_WRAPPER(sys_getpid);
1460GEN_SYSCALL_WRAPPER(sys_alarm);
1461GEN_SYSCALL_WRAPPER(sys_pause);
1462GEN_SYSCALL_WRAPPER(sys_utime);
1463GEN_SYSCALL_WRAPPER(sys_access);
1464GEN_SYSCALL_WRAPPER(sys_kill);
1465GEN_SYSCALL_WRAPPER(sys_rename);
1466GEN_SYSCALL_WRAPPER(sys_mkdir);
1467GEN_SYSCALL_WRAPPER(sys_rmdir);
1468GEN_SYSCALL_WRAPPER(sys_dup);
1469GEN_SYSCALL_WRAPPER(sys_times);
1470GEN_SYSCALL_WRAPPER(sys_fcntl); // POSIX (but complicated)
1471GEN_SYSCALL_WRAPPER(sys_setpgid);
1472GEN_SYSCALL_WRAPPER(sys_umask);
1473GEN_SYSCALL_WRAPPER(sys_dup2);
1474GEN_SYSCALL_WRAPPER(sys_getppid);
1475GEN_SYSCALL_WRAPPER(sys_getpgrp);
1476GEN_SYSCALL_WRAPPER(sys_setsid);
1477GEN_SYSCALL_WRAPPER(sys_munmap);
1478GEN_SYSCALL_WRAPPER(sys_truncate);
1479GEN_SYSCALL_WRAPPER(sys_ftruncate);
1480GEN_SYSCALL_WRAPPER(sys_fchmod);
1481GEN_SYSCALL_WRAPPER(sys_msync);
1482GEN_SYSCALL_WRAPPER(sys_readv);
1483GEN_SYSCALL_WRAPPER(sys_writev);
1484GEN_SYSCALL_WRAPPER(sys_getsid);
1485GEN_SYSCALL_WRAPPER(sys_fdatasync);
1486GEN_SYSCALL_WRAPPER(sys_mlock);
1487GEN_SYSCALL_WRAPPER(sys_munlock);
1488GEN_SYSCALL_WRAPPER(sys_mlockall);
1489GEN_SYSCALL_WRAPPER(sys_munlockall);
1490GEN_SYSCALL_WRAPPER(sys_sched_setparam);
1491GEN_SYSCALL_WRAPPER(sys_sched_getparam);
1492GEN_SYSCALL_WRAPPER(sys_sched_setscheduler);
1493GEN_SYSCALL_WRAPPER(sys_sched_getscheduler);
1494GEN_SYSCALL_WRAPPER(sys_sched_yield);
1495GEN_SYSCALL_WRAPPER(sys_sched_get_priority_max);
1496GEN_SYSCALL_WRAPPER(sys_sched_get_priority_min);
1497GEN_SYSCALL_WRAPPER(sys_nanosleep);
1498GEN_SYSCALL_WRAPPER(sys_mremap); // POSIX, but Linux arg order may be odd
1499GEN_SYSCALL_WRAPPER(sys_getuid);
1500GEN_SYSCALL_WRAPPER(sys_getgid);
1501GEN_SYSCALL_WRAPPER(sys_geteuid);
1502GEN_SYSCALL_WRAPPER(sys_getegid);
nethercote3d5e9102004-11-17 18:22:38 +00001503GEN_SYSCALL_WRAPPER(sys_getpgid);
nethercote8ff888f2004-11-17 17:11:45 +00001504GEN_SYSCALL_WRAPPER(sys_fsync);
1505GEN_SYSCALL_WRAPPER(sys_wait4);
1506GEN_SYSCALL_WRAPPER(sys_mprotect);
1507GEN_SYSCALL_WRAPPER(sys_sigprocmask);
1508GEN_SYSCALL_WRAPPER(sys_timer_create); // Linux: varies across archs?
1509GEN_SYSCALL_WRAPPER(sys_timer_settime);
1510GEN_SYSCALL_WRAPPER(sys_timer_gettime);
1511GEN_SYSCALL_WRAPPER(sys_timer_getoverrun);
1512GEN_SYSCALL_WRAPPER(sys_timer_delete);
1513GEN_SYSCALL_WRAPPER(sys_clock_settime);
1514GEN_SYSCALL_WRAPPER(sys_clock_gettime);
1515GEN_SYSCALL_WRAPPER(sys_clock_getres);
1516GEN_SYSCALL_WRAPPER(sys_getcwd);
nethercote3d5e9102004-11-17 18:22:38 +00001517GEN_SYSCALL_WRAPPER(sys_symlink);
1518GEN_SYSCALL_WRAPPER(sys_getgroups);
1519GEN_SYSCALL_WRAPPER(sys_setgroups); // SVr4, SVID, X/OPEN, 4.3BSD
1520GEN_SYSCALL_WRAPPER(sys_chown);
1521GEN_SYSCALL_WRAPPER(sys_setuid);
1522GEN_SYSCALL_WRAPPER(sys_gettimeofday);
1523GEN_SYSCALL_WRAPPER(sys_madvise);
1524GEN_SYSCALL_WRAPPER(sys_sigpending);
nethercote8ff888f2004-11-17 17:11:45 +00001525
1526// These ones aren't POSIX, but are in some standard and look reasonably
1527// generic, and are the same for all architectures under Linux.
1528GEN_SYSCALL_WRAPPER(sys_nice); // SVr4, SVID EXT, AT&T, X/OPEN, BSD 4.3
1529GEN_SYSCALL_WRAPPER(sys_sync); // SVr4, SVID, X/OPEN, BSD 4.3
1530GEN_SYSCALL_WRAPPER(sys_brk); // 4.3BSD
1531GEN_SYSCALL_WRAPPER(sys_acct); // SVR4, non-POSIX
1532GEN_SYSCALL_WRAPPER(sys_chroot); // SVr4, SVID, 4.4BSD, X/OPEN
nethercote3d5e9102004-11-17 18:22:38 +00001533GEN_SYSCALL_WRAPPER(sys_readlink); // X/OPEN, 4.4BSD
1534GEN_SYSCALL_WRAPPER(sys_fchdir); // SVr4, SVID, POSIX, X/OPEN, 4.4BSD
1535GEN_SYSCALL_WRAPPER(sys_getdents); // SVr4,SVID
1536GEN_SYSCALL_WRAPPER(sys_select); // 4.4BSD
1537GEN_SYSCALL_WRAPPER(sys_flock); // 4.4BSD
1538GEN_SYSCALL_WRAPPER(sys_poll); // XPG4-UNIX
1539GEN_SYSCALL_WRAPPER(sys_getrusage); // SVr4, 4.3BSD
1540GEN_SYSCALL_WRAPPER(sys_settimeofday); // SVr4, 4.3BSD (non-POSIX)
1541GEN_SYSCALL_WRAPPER(sys_getpriority); // SVr4, 4.4BSD
1542GEN_SYSCALL_WRAPPER(sys_setpriority); // SVr4, 4.4BSD
1543GEN_SYSCALL_WRAPPER(sys_setitimer); // SVr4, 4.4BSD
1544GEN_SYSCALL_WRAPPER(sys_getitimer); // SVr4, 4.4BSD
1545GEN_SYSCALL_WRAPPER(sys_setreuid); // 4.3BSD
1546GEN_SYSCALL_WRAPPER(sys_setregid); // 4.3BSD
1547GEN_SYSCALL_WRAPPER(sys_fchown); // SVr4,4.3BSD
1548GEN_SYSCALL_WRAPPER(sys_setgid); // SVr4,SVID
1549GEN_SYSCALL_WRAPPER(sys_utimes); // 4.3BSD
nethercote8ff888f2004-11-17 17:11:45 +00001550
1551// These ones may be Linux specific... not sure. They use 16-bit gid_t and
1552// uid_t types. The similarly named (minus the "16" suffix) ones below use
1553// 32-bit versions of these types.
1554GEN_SYSCALL_WRAPPER(sys_setuid16); // ## P
1555GEN_SYSCALL_WRAPPER(sys_getuid16); // ## P
1556GEN_SYSCALL_WRAPPER(sys_setgid16); // ## SVr4,SVID
1557GEN_SYSCALL_WRAPPER(sys_getgid16); // ## P
1558GEN_SYSCALL_WRAPPER(sys_geteuid16); // ## P
1559GEN_SYSCALL_WRAPPER(sys_getegid16); // ## P
1560GEN_SYSCALL_WRAPPER(sys_setreuid16); // ## BSD4.3
1561GEN_SYSCALL_WRAPPER(sys_setregid16); // ## BSD4.3
1562GEN_SYSCALL_WRAPPER(sys_getgroups16); // ## P
1563GEN_SYSCALL_WRAPPER(sys_setgroups16); // ## SVr4, SVID, X/OPEN, 4.3BSD
1564GEN_SYSCALL_WRAPPER(sys_fchown16); // ## SVr4,BSD4.3
1565GEN_SYSCALL_WRAPPER(sys_chown16); // ## P
1566
nethercote8ff888f2004-11-17 17:11:45 +00001567// Linux's funny many-in-one socketcall is certainly not generic, but I
1568// didn't want to move it until necessary because it's big and has a lot of
1569// associated junk.
1570GEN_SYSCALL_WRAPPER(sys_socketcall);
1571
nethercote3d5e9102004-11-17 18:22:38 +00001572// Some archs on Linux do not match the generic wrapper for sys_pipe().
1573GEN_SYSCALL_WRAPPER(sys_pipe);
nethercote8ff888f2004-11-17 17:11:45 +00001574
nethercote3d5e9102004-11-17 18:22:38 +00001575// May not be generic for every architecture under Linux.
1576GEN_SYSCALL_WRAPPER(sys_sigaction); // (x86) P
1577
1578// Funny names, not sure...
nethercote8ff888f2004-11-17 17:11:45 +00001579GEN_SYSCALL_WRAPPER(sys_newstat); // * P
1580GEN_SYSCALL_WRAPPER(sys_newlstat); // *
1581GEN_SYSCALL_WRAPPER(sys_newfstat); // * P (SVr4,BSD4.3)
1582
nethercote3d5e9102004-11-17 18:22:38 +00001583// For the remainder, not really sure yet
1584GEN_SYSCALL_WRAPPER(old_mmap); // x86, weird arg passing
1585GEN_SYSCALL_WRAPPER(sys_ptrace); // (x86?) (almost-P)
1586GEN_SYSCALL_WRAPPER(sys_sigsuspend); // POSIX, but L (proto varies across archs)
1587GEN_SYSCALL_WRAPPER(sys_setrlimit); // SVr4, 4.3BSD
1588GEN_SYSCALL_WRAPPER(sys_ioctl); // x86? (various)
1589GEN_SYSCALL_WRAPPER(sys_old_getrlimit); // SVr4, 4.3BSD L?
1590GEN_SYSCALL_WRAPPER(sys_statfs); // * L?
1591GEN_SYSCALL_WRAPPER(sys_fstatfs); // * L?
nethercote8ff888f2004-11-17 17:11:45 +00001592GEN_SYSCALL_WRAPPER(sys_iopl); // (x86/amd64) L
1593GEN_SYSCALL_WRAPPER(sys_ipc); // (x86) L
nethercote8ff888f2004-11-17 17:11:45 +00001594GEN_SYSCALL_WRAPPER(sys_newuname); // * P
1595GEN_SYSCALL_WRAPPER(sys_init_module); // * L?
1596GEN_SYSCALL_WRAPPER(sys_quotactl); // * (?)
nethercote8ff888f2004-11-17 17:11:45 +00001597GEN_SYSCALL_WRAPPER(sys_rt_sigaction); // (x86) ()
1598GEN_SYSCALL_WRAPPER(sys_rt_sigprocmask); // * ?
1599GEN_SYSCALL_WRAPPER(sys_rt_sigpending); // * ?
1600GEN_SYSCALL_WRAPPER(sys_rt_sigtimedwait); // * ?
1601GEN_SYSCALL_WRAPPER(sys_rt_sigqueueinfo); // * ?
1602GEN_SYSCALL_WRAPPER(sys_rt_sigsuspend); // () ()
1603GEN_SYSCALL_WRAPPER(sys_pread64); // * (Unix98?)
1604GEN_SYSCALL_WRAPPER(sys_pwrite64); // * (Unix98?)
1605GEN_SYSCALL_WRAPPER(sys_capget); // * L?
1606GEN_SYSCALL_WRAPPER(sys_capset); // * L?
1607GEN_SYSCALL_WRAPPER(sys_sigaltstack); // (x86) (XPG4-UNIX)
nethercote8ff888f2004-11-17 17:11:45 +00001608GEN_SYSCALL_WRAPPER(sys_getpmsg); // (?) (?)
1609GEN_SYSCALL_WRAPPER(sys_putpmsg); // (?) (?)
1610GEN_SYSCALL_WRAPPER(sys_getrlimit); // * (?)
1611GEN_SYSCALL_WRAPPER(sys_mmap2); // (x86?) P?
1612GEN_SYSCALL_WRAPPER(sys_truncate64); // %% (P?)
1613GEN_SYSCALL_WRAPPER(sys_ftruncate64); // %% (P?)
1614GEN_SYSCALL_WRAPPER(sys_stat64); // %% (?)
1615GEN_SYSCALL_WRAPPER(sys_lstat64); // %% (?)
1616GEN_SYSCALL_WRAPPER(sys_fstat64); // %% (?)
1617GEN_SYSCALL_WRAPPER(sys_lchown); // * (L?)
nethercote3d5e9102004-11-17 18:22:38 +00001618GEN_SYSCALL_WRAPPER(sys_mincore); // * L?
nethercote8ff888f2004-11-17 17:11:45 +00001619GEN_SYSCALL_WRAPPER(sys_getdents64); // * (SVr4,SVID?)
1620GEN_SYSCALL_WRAPPER(sys_fcntl64); // * P?
1621GEN_SYSCALL_WRAPPER(sys_setxattr); // * L?
1622GEN_SYSCALL_WRAPPER(sys_lsetxattr); // * L?
1623GEN_SYSCALL_WRAPPER(sys_fsetxattr); // * L?
1624GEN_SYSCALL_WRAPPER(sys_getxattr); // * L?
1625GEN_SYSCALL_WRAPPER(sys_lgetxattr); // * L?
1626GEN_SYSCALL_WRAPPER(sys_fgetxattr); // * L?
1627GEN_SYSCALL_WRAPPER(sys_listxattr); // * L?
1628GEN_SYSCALL_WRAPPER(sys_llistxattr); // * L?
1629GEN_SYSCALL_WRAPPER(sys_flistxattr); // * L?
1630GEN_SYSCALL_WRAPPER(sys_removexattr); // * L?
1631GEN_SYSCALL_WRAPPER(sys_lremovexattr); // * L?
1632GEN_SYSCALL_WRAPPER(sys_fremovexattr); // * L?
nethercote8ff888f2004-11-17 17:11:45 +00001633GEN_SYSCALL_WRAPPER(sys_sched_setaffinity); // * L?
1634GEN_SYSCALL_WRAPPER(sys_sched_getaffinity); // * L?
nethercote3d5e9102004-11-17 18:22:38 +00001635GEN_SYSCALL_WRAPPER(sys_exit_group); // * ?
nethercote8ff888f2004-11-17 17:11:45 +00001636GEN_SYSCALL_WRAPPER(sys_lookup_dcookie); // (*/32/64) L
nethercote8ff888f2004-11-17 17:11:45 +00001637GEN_SYSCALL_WRAPPER(sys_set_tid_address); // * ?
1638GEN_SYSCALL_WRAPPER(sys_statfs64); // * (?)
1639GEN_SYSCALL_WRAPPER(sys_fstatfs64); // * (?)
nethercote8ff888f2004-11-17 17:11:45 +00001640GEN_SYSCALL_WRAPPER(sys_mq_open); // * P?
1641GEN_SYSCALL_WRAPPER(sys_mq_unlink); // * P?
1642GEN_SYSCALL_WRAPPER(sys_mq_timedsend); // * P?
1643GEN_SYSCALL_WRAPPER(sys_mq_timedreceive); // * P?
1644GEN_SYSCALL_WRAPPER(sys_mq_notify); // * P?
1645GEN_SYSCALL_WRAPPER(sys_mq_getsetattr); // * P?
1646
1647#undef GEN_SYSCALL_WRAPPER
1648
1649// Macros used in syscall wrappers
sewardj8b635a42004-11-22 19:01:47 +00001650/* PRRAn == "pre-register-read-argument"
1651 PRRSN == "pre-register-read-syscall"
1652*/
nethercote8ff888f2004-11-17 17:11:45 +00001653
1654#define PRRSN \
njn26f02512004-11-22 18:33:15 +00001655 TL_(pre_reg_read)(Vg_CoreSysCall, tid, "(syscallno)", \
njncf45fd42004-11-24 16:30:22 +00001656 O_SYSCALL_NUM, sizeof(UWord));
nethercote8ff888f2004-11-17 17:11:45 +00001657#define PRRAn(n,s,t,a) \
njn26f02512004-11-22 18:33:15 +00001658 TL_(pre_reg_read)(Vg_CoreSysCall, tid, s"("#a")", \
njncf45fd42004-11-24 16:30:22 +00001659 O_SYSCALL_ARG##n, sizeof(t));
nethercote8ff888f2004-11-17 17:11:45 +00001660#define PRE_REG_READ0(tr, s) \
1661 if (VG_(defined_pre_reg_read)()) { \
1662 PRRSN; \
1663 }
1664#define PRE_REG_READ1(tr, s, t1, a1) \
1665 if (VG_(defined_pre_reg_read)()) { \
1666 PRRSN; \
1667 PRRAn(1,s,t1,a1); \
1668 }
1669#define PRE_REG_READ2(tr, s, t1, a1, t2, a2) \
1670 if (VG_(defined_pre_reg_read)()) { \
1671 PRRSN; \
1672 PRRAn(1,s,t1,a1); PRRAn(2,s,t2,a2); \
1673 }
1674#define PRE_REG_READ3(tr, s, t1, a1, t2, a2, t3, a3) \
1675 if (VG_(defined_pre_reg_read)()) { \
1676 PRRSN; \
1677 PRRAn(1,s,t1,a1); PRRAn(2,s,t2,a2); PRRAn(3,s,t3,a3); \
1678 }
1679#define PRE_REG_READ4(tr, s, t1, a1, t2, a2, t3, a3, t4, a4) \
1680 if (VG_(defined_pre_reg_read)()) { \
1681 PRRSN; \
1682 PRRAn(1,s,t1,a1); PRRAn(2,s,t2,a2); PRRAn(3,s,t3,a3); \
1683 PRRAn(4,s,t4,a4); \
1684 }
1685#define PRE_REG_READ5(tr, s, t1, a1, t2, a2, t3, a3, t4, a4, t5, a5) \
1686 if (VG_(defined_pre_reg_read)()) { \
1687 PRRSN; \
1688 PRRAn(1,s,t1,a1); PRRAn(2,s,t2,a2); PRRAn(3,s,t3,a3); \
1689 PRRAn(4,s,t4,a4); PRRAn(5,s,t5,a5); \
1690 }
1691#define PRE_REG_READ6(tr, s, t1, a1, t2, a2, t3, a3, t4, a4, t5, a5, t6, a6) \
1692 if (VG_(defined_pre_reg_read)()) { \
1693 PRRSN; \
1694 PRRAn(1,s,t1,a1); PRRAn(2,s,t2,a2); PRRAn(3,s,t3,a3); \
1695 PRRAn(4,s,t4,a4); PRRAn(5,s,t5,a5); PRRAn(6,s,t6,a6); \
1696 }
1697
1698#define PRE_MEM_READ(zzname, zzaddr, zzlen) \
1699 VG_TRACK( pre_mem_read, Vg_CoreSysCall, tid, zzname, zzaddr, zzlen)
1700
1701#define PRE_MEM_RASCIIZ(zzname, zzaddr) \
1702 VG_TRACK( pre_mem_read_asciiz, Vg_CoreSysCall, tid, zzname, zzaddr)
1703
1704#define PRE_MEM_WRITE(zzname, zzaddr, zzlen) \
1705 VG_TRACK( pre_mem_write, Vg_CoreSysCall, tid, zzname, zzaddr, zzlen)
1706
1707#define POST_MEM_WRITE(zzaddr, zzlen) \
njncf45fd42004-11-24 16:30:22 +00001708 VG_TRACK( post_mem_write, Vg_CoreSysCall, tid, zzaddr, zzlen)
nethercote8ff888f2004-11-17 17:11:45 +00001709
sewardjde4a1d02002-03-22 01:27:54 +00001710/* ---------------------------------------------------------------------
1711 Exports of vg_transtab.c
1712 ------------------------------------------------------------------ */
1713
njn25e49d8e72002-09-23 09:36:25 +00001714/* The fast-cache for tt-lookup. */
1715extern Addr VG_(tt_fast)[VG_TT_FAST_SIZE];
1716
nethercote92e7b7f2004-08-07 17:52:25 +00001717extern void VG_(init_tt_tc) ( void );
sewardjc0d8f682002-11-30 00:49:43 +00001718extern void VG_(add_to_trans_tab) ( Addr orig_addr, Int orig_size,
sewardj8b635a42004-11-22 19:01:47 +00001719 Addr trans_addr, Int trans_size );
nethercote92e7b7f2004-08-07 17:52:25 +00001720extern Addr VG_(search_transtab) ( Addr original_addr );
sewardj6c3769f2002-11-29 01:02:45 +00001721
sewardj4ccf7072004-11-28 16:58:05 +00001722extern void VG_(invalidate_translations) ( Addr start, UInt range );
sewardjde4a1d02002-03-22 01:27:54 +00001723
sewardj4ccf7072004-11-28 16:58:05 +00001724extern void VG_(sanity_check_tt_tc) ( Char* caller );
sewardjde4a1d02002-03-22 01:27:54 +00001725
nethercote92e7b7f2004-08-07 17:52:25 +00001726extern void VG_(print_tt_tc_stats) ( void );
1727
1728extern Int VG_(get_bbs_translated) ( void );
sewardjde4a1d02002-03-22 01:27:54 +00001729
sewardjde4a1d02002-03-22 01:27:54 +00001730/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001731 Exports of vg_syscall.S
1732 ------------------------------------------------------------------ */
1733
njnca6fef02004-11-29 16:49:18 +00001734// We use a full prototype rather than "..." here to ensure that all
1735// arguments get converted to a UWord appropriately. Not doing so can
1736// cause problems when passing 32-bit integers on 64-bit platforms, because
1737// the top 32-bits might not be zeroed appropriately, eg. as would happen
1738// with the 6th arg on AMD64 which is passed on the stack.
1739extern Int VG_(do_syscall) ( UInt, UWord, UWord, UWord, UWord, UWord, UWord );
1740
1741// Macros make life easier.
1742#define vgPlain_do_syscall0(s) VG_(do_syscall)((s),0,0,0,0,0,0)
1743#define vgPlain_do_syscall1(s,a) VG_(do_syscall)((s),(a),0,0,0,0,0)
1744#define vgPlain_do_syscall2(s,a,b) VG_(do_syscall)((s),(a),(b),0,0,0,0)
1745#define vgPlain_do_syscall3(s,a,b,c) VG_(do_syscall)((s),(a),(b),(c),0,0,0)
1746#define vgPlain_do_syscall4(s,a,b,c,d) VG_(do_syscall)((s),(a),(b),(c),(d),0,0)
1747#define vgPlain_do_syscall5(s,a,b,c,d,e) VG_(do_syscall)((s),(a),(b),(c),(d),(e),0)
1748#define vgPlain_do_syscall6(s,a,b,c,d,e,f) VG_(do_syscall)((s),(a),(b),(c),(d),(e),(f))
1749
jsgf855d93d2003-10-13 22:26:55 +00001750extern Int VG_(clone) ( Int (*fn)(void *), void *stack, Int flags, void *arg,
1751 Int *child_tid, Int *parent_tid);
fitzhardinge4f10ada2004-06-03 10:00:42 +00001752extern void VG_(sigreturn)(void);
sewardjde4a1d02002-03-22 01:27:54 +00001753
1754/* ---------------------------------------------------------------------
sewardjde4a1d02002-03-22 01:27:54 +00001755 Exports of vg_dispatch.S
1756 ------------------------------------------------------------------ */
1757
sewardj2e93c502002-04-12 11:12:52 +00001758/* Run a thread for a (very short) while, until some event happens
sewardj2a99cf62004-11-24 10:44:19 +00001759 which means we need to defer to the scheduler. This is passed
1760 a pointer to the VEX guest state (arch.vex). */
1761extern UInt VG_(run_innerloop) ( void* guest_state );
sewardjde4a1d02002-03-22 01:27:54 +00001762
sewardjde4a1d02002-03-22 01:27:54 +00001763/* ---------------------------------------------------------------------
1764 Exports of vg_helpers.S
1765 ------------------------------------------------------------------ */
1766
fitzhardinge92360792003-12-24 10:11:11 +00001767/* Information about trampoline code (for signal return and syscalls) */
1768extern const Char VG_(trampoline_code_start);
1769extern const Int VG_(trampoline_code_length);
1770extern const Int VG_(tramp_sigreturn_offset);
1771extern const Int VG_(tramp_syscall_offset);
sewardj20917d82002-05-28 01:36:45 +00001772
njn4f9c9342002-04-29 16:03:24 +00001773/* ---------------------------------------------------------------------
nethercote996901a2004-08-03 13:29:09 +00001774 Things relating to the used tool
njn4f9c9342002-04-29 16:03:24 +00001775 ------------------------------------------------------------------ */
1776
fitzhardinge98abfc72003-12-16 02:05:15 +00001777#define VG_TRACK(fn, args...) \
1778 do { \
1779 if (VG_(defined_##fn)()) \
njn26f02512004-11-22 18:33:15 +00001780 TL_(fn)(args); \
fitzhardinge98abfc72003-12-16 02:05:15 +00001781 } while(0)
sewardj18d75132002-05-16 11:06:21 +00001782
fitzhardinge98abfc72003-12-16 02:05:15 +00001783__attribute__ ((noreturn))
1784extern void VG_(missing_tool_func) ( const Char* fn );
sewardj18d75132002-05-16 11:06:21 +00001785
nethercotec06e2132004-09-03 13:45:29 +00001786// ---------------------------------------------------------------------
1787// Architecture-specific things defined in eg. x86/*.c
1788// ---------------------------------------------------------------------
1789
njncf45fd42004-11-24 16:30:22 +00001790// Accessors for the ThreadArchState
1791#define INSTR_PTR(regs) ((regs).vex.ARCH_INSTR_PTR)
1792#define STACK_PTR(regs) ((regs).vex.ARCH_STACK_PTR)
1793#define FRAME_PTR(regs) ((regs).vex.ARCH_FRAME_PTR)
1794
1795#define CLREQ_ARGS(regs) ((regs).vex.ARCH_CLREQ_ARGS)
1796#define PTHREQ_RET(regs) ((regs).vex.ARCH_PTHREQ_RET)
1797#define CLREQ_RET(regs) ((regs).vex.ARCH_CLREQ_RET)
1798
njn16de5572004-11-27 14:27:21 +00001799// Offsets for the Vex state
njncf45fd42004-11-24 16:30:22 +00001800#define O_STACK_PTR (offsetof(VexGuestArchState, ARCH_STACK_PTR))
1801#define O_FRAME_PTR (offsetof(VexGuestArchState, ARCH_FRAME_PTR))
1802
1803#define O_CLREQ_RET (offsetof(VexGuestArchState, ARCH_CLREQ_RET))
1804#define O_PTHREQ_RET (offsetof(VexGuestArchState, ARCH_PTHREQ_RET))
1805
1806
sewardj2a99cf62004-11-24 10:44:19 +00001807// Setting up the initial thread (1) state
1808extern void
1809 VGA_(init_thread1state) ( Addr client_eip,
1810 Addr esp_at_startup,
1811 /*MOD*/ ThreadArchState* arch );
sewardjde4a1d02002-03-22 01:27:54 +00001812
nethercotec009ebe2004-09-13 11:05:11 +00001813// Thread stuff
sewardj2a99cf62004-11-24 10:44:19 +00001814extern void VGA_(clear_thread) ( ThreadArchState* );
1815extern void VGA_(cleanup_thread) ( ThreadArchState* );
1816extern void VGA_(setup_child) ( ThreadArchState*, ThreadArchState* );
nethercotef9b59412004-09-10 15:33:32 +00001817
nethercote6b9c8472004-09-13 13:16:40 +00001818extern void VGA_(set_arg_and_bogus_ret) ( ThreadId tid, UWord arg, Addr ret );
1819extern void VGA_(thread_initial_stack) ( ThreadId tid, UWord arg, Addr ret );
1820
nethercotec009ebe2004-09-13 11:05:11 +00001821// Symtab stuff
njncf45fd42004-11-24 16:30:22 +00001822extern UInt* VGA_(reg_addr_from_tst) ( Int regno, ThreadArchState* );
nethercotecd656042004-09-11 23:48:22 +00001823
nethercotefedd8102004-09-13 15:19:34 +00001824// Pointercheck
1825extern Bool VGA_(setup_pointercheck) ( void );
1826
1827// For attaching the debugger
sewardj2a99cf62004-11-24 10:44:19 +00001828extern Int VGA_(ptrace_setregs_from_tst) ( Int pid, ThreadArchState* arch );
nethercotefedd8102004-09-13 15:19:34 +00001829
nethercote6eec4602004-09-13 14:15:36 +00001830// Signal stuff
nethercote4ad74312004-10-26 09:59:49 +00001831extern void VGA_(push_signal_frame) ( ThreadId tid, Addr sp_top_of_frame,
nethercote73b526f2004-10-31 18:48:21 +00001832 const vki_siginfo_t *siginfo,
nethercote6eec4602004-09-13 14:15:36 +00001833 void *handler, UInt flags,
nethercote73b526f2004-10-31 18:48:21 +00001834 const vki_sigset_t *mask);
nethercote6eec4602004-09-13 14:15:36 +00001835extern Int VGA_(pop_signal_frame) ( ThreadId tid );
1836
nethercote9b3c7652004-10-19 13:18:00 +00001837// libpthread stuff
njne7da73c2004-11-26 12:44:19 +00001838typedef struct _ThreadArchAux ThreadArchAux;
nethercote9b3c7652004-10-19 13:18:00 +00001839
njne7da73c2004-11-26 12:44:19 +00001840void VGA_(thread_create) ( ThreadArchAux *aux );
1841void VGA_(thread_wrapper)( ThreadArchAux *aux );
nethercote9b3c7652004-10-19 13:18:00 +00001842void VGA_(thread_exit) ( void );
1843
1844Bool VGA_(has_tls) ( void );
1845
1846#define MY__STRING(__str) #__str
1847
1848// Assertion to use in code running on the simulated CPU.
1849#define my_assert(expr) \
1850 ((void) ((expr) ? 0 : \
1851 (VG_(user_assert_fail) (MY__STRING(expr), \
1852 __FILE__, __LINE__, \
1853 __PRETTY_FUNCTION__), 0)))
1854
1855extern void VG_(user_assert_fail) ( const Char* expr, const Char* file,
1856 Int line, const Char* fn );
1857
1858
nethercote41c75da2004-10-18 15:34:14 +00001859// ---------------------------------------------------------------------
1860// Platform-specific things defined in eg. x86/*.c
1861// ---------------------------------------------------------------------
nethercote775508a2004-09-07 22:38:23 +00001862
njncf45fd42004-11-24 16:30:22 +00001863// Accessors for the ThreadArchState
1864#define SYSCALL_NUM(regs) ((regs).vex.PLATFORM_SYSCALL_NUM)
1865#define SYSCALL_ARG1(regs) ((regs).vex.PLATFORM_SYSCALL_ARG1)
1866#define SYSCALL_ARG2(regs) ((regs).vex.PLATFORM_SYSCALL_ARG2)
1867#define SYSCALL_ARG3(regs) ((regs).vex.PLATFORM_SYSCALL_ARG3)
1868#define SYSCALL_ARG4(regs) ((regs).vex.PLATFORM_SYSCALL_ARG4)
1869#define SYSCALL_ARG5(regs) ((regs).vex.PLATFORM_SYSCALL_ARG5)
1870#define SYSCALL_ARG6(regs) ((regs).vex.PLATFORM_SYSCALL_ARG6)
1871#define SYSCALL_RET(regs) ((regs).vex.PLATFORM_SYSCALL_RET)
1872
1873// Offsets for the shadow state
njnfcd56362004-11-24 18:31:40 +00001874#define O_SYSCALL_NUM (offsetof(VexGuestArchState, PLATFORM_SYSCALL_NUM))
njncf45fd42004-11-24 16:30:22 +00001875#define O_SYSCALL_ARG1 (offsetof(VexGuestArchState, PLATFORM_SYSCALL_ARG1))
1876#define O_SYSCALL_ARG2 (offsetof(VexGuestArchState, PLATFORM_SYSCALL_ARG2))
1877#define O_SYSCALL_ARG3 (offsetof(VexGuestArchState, PLATFORM_SYSCALL_ARG3))
1878#define O_SYSCALL_ARG4 (offsetof(VexGuestArchState, PLATFORM_SYSCALL_ARG4))
1879#define O_SYSCALL_ARG5 (offsetof(VexGuestArchState, PLATFORM_SYSCALL_ARG5))
1880#define O_SYSCALL_ARG6 (offsetof(VexGuestArchState, PLATFORM_SYSCALL_ARG6))
1881#define O_SYSCALL_RET (offsetof(VexGuestArchState, PLATFORM_SYSCALL_RET))
1882
nethercote8ff888f2004-11-17 17:11:45 +00001883struct SyscallTableEntry {
1884 UInt *flags_ptr;
1885 void (*before)(ThreadId tid, ThreadState *tst);
1886 void (*after) (ThreadId tid, ThreadState *tst);
1887};
1888
1889/* This table is the mapping from __NR_xxx syscall numbers to the PRE/POST
1890 wrappers for the relevant syscalls used in the OS kernel for that number.
1891 Note that the constant names don't always match the wrapper names in a
1892 straightforward way. For example, on x86/Linux:
1893
1894 __NR_lchown --> sys_lchown16()
1895 __NR_lchown32 --> sys_lchown()
1896 __NR_select --> old_select()
1897 __NR__newselect --> sys_select()
1898*/
1899extern const struct SyscallTableEntry VGA_(syscall_table)[];
1900
1901extern const UInt VGA_(syscall_table_size);
1902
sewardj2a99cf62004-11-24 10:44:19 +00001903extern void VGA_(restart_syscall)(ThreadArchState* arch);
nethercote24e0d442004-10-18 17:36:40 +00001904
njn7be36952004-11-24 18:14:41 +00001905/* We need our own copy of VG_(do_syscall)() to handle a special
1906 race-condition. If we've got signals unblocked, and we take a
1907 signal in the gap either just before or after the syscall, we may
1908 end up not running the syscall at all, or running it more than
1909 once.
1910
1911 The solution is to make the signal handler derive the proxy's
1912 precise state by looking to see which eip it is executing at
1913 exception time.
1914
1915 Ranges:
1916
1917 VGA_(sys_before) ... VGA_(sys_restarted):
1918 Setting up register arguments and running state. If
1919 interrupted, then the syscall should be considered to return
1920 ERESTARTSYS.
1921
1922 VGA_(sys_restarted):
1923 If interrupted and eip==VGA_(sys_restarted), then either the syscall
1924 was about to start running, or it has run, was interrupted and
1925 the kernel wants to restart it. eax still contains the
1926 syscall number. If interrupted, then the syscall return value
1927 should be ERESTARTSYS.
1928
1929 VGA_(sys_after):
1930 If interrupted and eip==VGA_(sys_after), the syscall either just
1931 finished, or it was interrupted and the kernel doesn't want to
1932 restart it. Either way, eax equals the correct return value
1933 (either the actual return value, or EINTR).
1934
1935 VGA_(sys_after) ... VGA_(sys_done):
1936 System call is complete, but the state hasn't been updated,
1937 nor has the result been written back. eax contains the return
1938 value.
1939
1940 Freakin' horrible...
1941*/
1942extern const Addr VGA_(sys_before), VGA_(sys_restarted),
1943 VGA_(sys_after), VGA_(sys_done);
1944
1945extern void VGA_(do_thread_syscall)(UWord sys,
1946 UWord arg1, UWord arg2, UWord arg3,
1947 UWord arg4, UWord arg5, UWord arg6,
1948 UWord *result, /*enum PXState*/Int *statep,
1949 /*enum PXState*/Int poststate);
sewardj3b2736a2002-03-24 12:18:35 +00001950
1951/* ---------------------------------------------------------------------
1952 Finally - autoconf-generated settings
1953 ------------------------------------------------------------------ */
1954
1955#include "config.h"
1956
nethercotec06e2132004-09-03 13:45:29 +00001957#endif /* ndef __CORE_H */
1958
sewardjde4a1d02002-03-22 01:27:54 +00001959/*--------------------------------------------------------------------*/
nethercote109d0df2004-09-02 08:10:13 +00001960/*--- end ---*/
sewardjde4a1d02002-03-22 01:27:54 +00001961/*--------------------------------------------------------------------*/