2 /*--------------------------------------------------------------------*/
3 /*--- A home for miscellaneous bits of information which pertain ---*/
4 /*--- to the client's state. ---*/
5 /*--- m_clientstate.c ---*/
6 /*--------------------------------------------------------------------*/
9 This file is part of Valgrind, a dynamic binary instrumentation
12 Copyright (C) 2000-2015 Julian Seward
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.
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.
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
30 The GNU General Public License is contained in the file COPYING.
33 #include "pub_core_basics.h"
34 #include "pub_core_vki.h"
35 #include "pub_core_xarray.h"
36 #include "pub_core_clientstate.h"
38 /*-----------------------------------------------------------------*/
40 /*--- Basic globals about the address space. ---*/
42 /*-----------------------------------------------------------------*/
44 /* Client address space, lowest to highest (see top of ume.c) */
45 // TODO: get rid of as many of these as possible.
47 /* ***Initial*** lowest address of the stack segment of the main thread.
48 The main stack will grow if needed but VG_(clstk_start_base) will
49 not be changed according to the growth. */
50 Addr
VG_(clstk_start_base
) = 0;
51 /* Initial highest address of the stack segment of the main thread. */
52 Addr
VG_(clstk_end
) = 0;
53 UWord
VG_(clstk_id
) = 0;
54 /* Maximum size of the main thread's client stack. */
55 SizeT
VG_(clstk_max_size
) = 0;
57 /* Solaris and Linux only, specifies where the client auxv is.
59 This is set up as part of setup_client_stack() in
60 initimg-{linux,solaris}.c. */
61 UWord
* VG_(client_auxv
) = NULL
;
63 Addr
VG_(brk_base
) = 0; /* start of brk */
64 Addr
VG_(brk_limit
) = 0; /* current brk */
66 /* A fd which refers to the client executable. */
67 Int
VG_(cl_exec_fd
) = -1;
69 /* A fd which refers to the fake /proc/<pid>/cmdline in /tmp. */
70 Int
VG_(cl_cmdline_fd
) = -1;
72 /* A fd which refers to the fake /proc/<pid>/auxv in /tmp. */
73 Int
VG_(cl_auxv_fd
) = -1;
75 #if defined(VGO_solaris)
76 /* A fd which refers to the fake /proc/<pid>/psinfo in /tmp. */
77 Int
VG_(cl_psinfo_fd
) = -1;
78 #endif /* VGO_solaris */
80 // Command line pieces, after they have been extracted from argv in
81 // m_main.main(). The payload vectors are allocated in VG_AR_CORE
82 // (the default arena). They are never freed.
84 /* Args for the client. */
85 XArray
* /* of HChar* */ VG_(args_for_client
) = NULL
;
87 /* Args for V (augments, then those from the launcher). */
88 XArray
* /* of HChar* */ VG_(args_for_valgrind
) = NULL
;
90 /* How many of the above not to pass on at execve time? */
91 Int
VG_(args_for_valgrind_noexecpass
) = 0;
93 /* The name of the client executable, as specified on the command
95 const HChar
* VG_(args_the_exename
) = NULL
;
97 // Client's original rlimit data and rlimit stack
98 struct vki_rlimit
VG_(client_rlimit_data
);
99 struct vki_rlimit
VG_(client_rlimit_stack
);
101 // Name of the launcher, as extracted from VALGRIND_LAUNCHER at
103 HChar
* VG_(name_of_launcher
) = NULL
;
105 /* Application-visible file descriptor limits */
106 Int
VG_(fd_soft_limit
) = -1;
107 Int
VG_(fd_hard_limit
) = -1;
109 /* Useful addresses extracted from the client. */
110 /* Where is the freeres_wrapper routine we made? */
111 Addr
VG_(client_freeres_wrapper
) = 0;
113 /* x86-linux only: where is glibc's _dl_sysinfo_int80 function?
114 Finding it isn't essential, but knowing where it is does sometimes
115 help produce better back traces. See big comment in
116 VG_(get_StackTrace) in m_stacktrace.c for further info. */
117 Addr
VG_(client__dl_sysinfo_int80
) = 0;
119 /* Address of the (internal) glibc nptl pthread stack cache size,
121 static size_t stack_cache_actsize;
122 in nptl/allocatestack.c */
123 SizeT
* VG_(client__stack_cache_actsize__addr
) = 0;
125 #if defined(VGO_solaris)
126 /* Address of variable vg_vfork_fildes in vgpreload_core.so.0
128 Int
* VG_(vfork_fildes_addr
) = 0;
131 /*--------------------------------------------------------------------*/
133 /*--------------------------------------------------------------------*/