add_hardwired_spec for ld-linux-x86-64.so.2 strcmp
[valgrind.git] / coregrind / m_redir.c
blobce6073a62190a639e1651834730e77c5893cf0bb
2 /*--------------------------------------------------------------------*/
3 /*--- Function replacement and wrapping. m_redir.c ---*/
4 /*--------------------------------------------------------------------*/
6 /*
7 This file is part of Valgrind, a dynamic binary instrumentation
8 framework.
10 Copyright (C) 2000-2017 Julian Seward
11 jseward@acm.org
12 Copyright (C) 2003-2017 Jeremy Fitzhardinge
13 jeremy@goop.org
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, see <http://www.gnu.org/licenses/>.
28 The GNU General Public License is contained in the file COPYING.
31 #include "pub_core_basics.h"
32 #include "pub_core_debuglog.h"
33 #include "pub_core_debuginfo.h"
34 #include "pub_core_libcbase.h"
35 #include "pub_core_libcassert.h"
36 #include "pub_core_libcprint.h"
37 #include "pub_core_vki.h"
38 #include "pub_core_libcfile.h"
39 #include "pub_core_seqmatch.h"
40 #include "pub_core_mallocfree.h"
41 #include "pub_core_options.h"
42 #include "pub_core_oset.h"
43 #include "pub_core_redir.h"
44 #include "pub_core_trampoline.h"
45 #include "pub_core_transtab.h"
46 #include "pub_core_tooliface.h" // VG_(needs).malloc_replacement
47 #include "pub_core_machine.h" // VG_(fnptr_to_fnentry)
48 #include "pub_core_aspacemgr.h" // VG_(am_find_nsegment)
49 #include "pub_core_xarray.h"
50 #include "pub_core_clientstate.h" // VG_(client_freeres_wrapper)
51 #include "pub_core_demangle.h" // VG_(maybe_Z_demangle)
52 #include "pub_core_libcproc.h" // VG_(libdir)
54 #include "config.h" /* GLIBC_MANDATORY_*_REDIRECT */
57 /* This module is a critical part of the redirection/intercept system.
58 It keeps track of the current intercept state, cleans up the
59 translation caches when that state changes, and finally, answers
60 queries about the whether an address is currently redirected or
61 not. It doesn't do any of the control-flow trickery needed to put
62 the redirections into practice. That is the job of m_translate,
63 which calls here to find out which translations need to be
64 redirected.
66 The interface is simple. VG_(redir_initialise) initialises and
67 loads some hardwired redirects which never disappear; this is
68 platform-specific.
70 The module is notified of redirection state changes by m_debuginfo.
71 That calls VG_(redir_notify_new_DebugInfo) when a new DebugInfo
72 (shared object symbol table, basically) appears. Appearance of new
73 symbols can cause new (active) redirections to appear for two
74 reasons: the symbols in the new table may match existing
75 redirection specifications (see comments below), and because the
76 symbols in the new table may themselves supply new redirect
77 specifications which match existing symbols (or ones in the new
78 table).
80 Redirect specifications are really symbols with "funny" prefixes
81 (_vgrNNNNZU_ and _vgrNNNNZZ_). These names tell m_redir that the
82 associated code should replace the standard entry point for some
83 set of functions. The set of functions is specified by a (soname
84 pattern, function name pattern) pair which is encoded in the symbol
85 name following the prefix. The names use a Z-encoding scheme so
86 that they may contain punctuation characters and wildcards (*).
87 The encoding scheme is described in pub_tool_redir.h and is decoded
88 by VG_(maybe_Z_demangle). The NNNN are behavioural equivalence
89 class tags, and are used to by code in this module to resolve
90 situations where one address appears to be redirected to more than
91 one replacement/wrapper. This is also described in
92 pub_tool_redir.h.
94 When a shared object is unloaded, this module learns of it via a
95 call to VG_(redir_notify_delete_DebugInfo). It then removes from
96 its tables all active redirections in any way associated with that
97 object, and tidies up the translation caches accordingly.
99 That takes care of tracking the redirection state. When a
100 translation is actually to be made, m_translate calls to
101 VG_(redir_do_lookup) in this module to find out if the
102 translation's address should be redirected.
105 /*------------------------------------------------------------*/
106 /*--- Semantics ---*/
107 /*------------------------------------------------------------*/
109 /* The redirector holds two pieces of state:
111 Specs - a set of (soname pattern, fnname pattern) -> redir addr
112 Active - a set of orig addr -> (bool, redir addr)
114 Active is the currently active set of bindings that the translator
115 consults. Specs is the current set of specifications as harvested
116 from reading symbol tables of the currently loaded objects.
118 Active is a pure function of Specs and the current symbol table
119 state (maintained by m_debuginfo). Call the latter SyminfoState.
121 Therefore whenever either Specs or SyminfoState changes, Active
122 must be recomputed. [Inefficient if done naively, but this is a
123 spec].
125 Active is computed as follows:
127 Active = empty
128 for spec in Specs {
129 sopatt = spec.soname pattern
130 fnpatt = spec.fnname pattern
131 redir = spec.redir addr
132 for so matching sopatt in SyminfoState {
133 for fn matching fnpatt in fnnames_of(so) {
134 &fn -> redir is added to Active
139 [as an implementation detail, when a binding (orig -> redir) is
140 deleted from Active as a result of recomputing it, then all
141 translations intersecting redir must be deleted. However, this is
142 not part of the spec].
144 [Active also depends on where the aspacemgr has decided to put all
145 the pieces of code -- that affects the "orig addr" and "redir addr"
146 values.]
148 ---------------------
150 That completes the spec, apart from one difficult issue: duplicates.
152 Clearly we must impose the requirement that domain(Active) contains
153 no duplicates. The difficulty is how to constrain Specs enough to
154 avoid getting into that situation. It's easy to write specs which
155 could cause conflicting bindings in Active, eg:
157 (libpthread.so, pthread_mutex_lock) -> a1
158 (libpthread.so, pthread_*) -> a2
160 for a1 != a2. Or even hairier:
162 (libpthread.so, pthread_mutex_*) -> a1
163 (libpthread.so, pthread_*_lock) -> a2
165 I can't think of any sane way of detecting when an addition to
166 Specs would generate conflicts. However, considering we don't
167 actually want to have a system that allows this, I propose this:
168 all changes to Specs are acceptable. But, when recomputing Active
169 following the change, if the same orig is bound to more than one
170 redir, then the first binding for orig is retained, and all the
171 rest ignored.
173 ===========================================================
174 ===========================================================
175 Incremental implementation:
177 When a new DebugInfo appears:
178 - it may be the source of new specs
179 - it may be the source of new matches for existing specs
180 Therefore:
182 - (new Specs x existing DebugInfos): scan all symbols in the new
183 DebugInfo to find new specs. Each of these needs to be compared
184 against all symbols in all the existing DebugInfos to generate
185 new actives.
187 - (existing Specs x new DebugInfo): scan all symbols in the
188 DebugInfo, trying to match them to any existing specs, also
189 generating new actives.
191 - (new Specs x new DebugInfo): scan all symbols in the new
192 DebugInfo, trying to match them against the new specs, to
193 generate new actives.
195 - Finally, add new new specs to the current set of specs.
197 When adding a new active (s,d) to the Actives:
198 lookup s in Actives
199 if already bound to d, ignore
200 if already bound to something other than d, complain loudly and ignore
201 else add (s,d) to Actives
202 and discard (s,1) and (d,1) (maybe overly conservative)
204 When a DebugInfo disappears:
205 - delete all specs acquired from the seginfo
206 - delete all actives derived from the just-deleted specs
207 - if each active (s,d) deleted, discard (s,1) and (d,1)
211 /*------------------------------------------------------------*/
212 /*--- REDIRECTION SPECIFICATIONS ---*/
213 /*------------------------------------------------------------*/
215 /* A specification of a redirection we want to do. Note that because
216 both the "from" soname and function name may contain wildcards, the
217 spec can match an arbitrary number of times.
219 16 Nov 2007: Comments re .mandatory field: The initial motivation
220 for this is making Memcheck work sanely on glibc-2.6.X ppc32-linux.
221 We really need to intercept 'strlen' in ld.so right from startup.
222 If ld.so does not have a visible 'strlen' symbol, Memcheck
223 generates an impossible number of errors resulting from highly
224 tuned strlen implementation in ld.so, and is completely unusable
225 -- the resulting undefinedness eventually seeps everywhere. */
226 typedef
227 struct _Spec {
228 struct _Spec* next; /* linked list */
229 /* FIXED PARTS -- set when created and not changed */
230 HChar* from_sopatt; /* from soname pattern */
231 HChar* from_fnpatt; /* from fnname pattern */
232 Addr to_addr; /* where redirecting to */
233 Bool isWrap; /* wrap or replacement? */
234 Bool isGlobal; /* must the symbol to replace be global? */
235 Int becTag; /* 0 through 9999. Behavioural equivalance class tag.
236 If two wrappers have the same (non-zero) tag, they
237 are promising that they behave identically. */
238 Int becPrio; /* 0 through 9. Behavioural equivalence class prio.
239 Used to choose between competing wrappers with
240 the same (non-zero) tag. */
241 const HChar** mandatory; /* non-NULL ==> abort V and print the
242 strings if from_sopatt is loaded but
243 from_fnpatt cannot be found */
244 /* VARIABLE PARTS -- used transiently whilst processing redirections */
245 Bool mark; /* set if spec requires further processing */
246 Bool done; /* set if spec was successfully matched */
248 Spec;
250 /* Top-level data structure. It contains a pointer to a DebugInfo and
251 also a list of the specs harvested from that DebugInfo. Note that
252 seginfo is allowed to be NULL, meaning that the specs are
253 pre-loaded ones at startup and are not associated with any
254 particular seginfo. */
255 typedef
256 struct _TopSpec {
257 struct _TopSpec* next; /* linked list */
258 DebugInfo* seginfo; /* symbols etc */
259 Spec* specs; /* specs pulled out of seginfo */
260 Bool mark; /* transient temporary used during deletion */
262 TopSpec;
264 /* This is the top level list of redirections. m_debuginfo maintains
265 a list of DebugInfos, and the idea here is to maintain a list with
266 the same number of elements (in fact, with one more element, so as
267 to record abovementioned preloaded specifications.) */
268 static TopSpec* topSpecs = NULL;
271 /*------------------------------------------------------------*/
272 /*--- CURRENTLY ACTIVE REDIRECTIONS ---*/
273 /*------------------------------------------------------------*/
275 /* Represents a currently active binding. If either parent_spec or
276 parent_sym is NULL, then this binding was hardwired at startup and
277 should not be deleted. Same is true if either parent's seginfo
278 field is NULL. */
279 typedef
280 struct {
281 Addr from_addr; /* old addr -- MUST BE THE FIRST WORD! */
282 Addr to_addr; /* where redirecting to */
283 TopSpec* parent_spec; /* the TopSpec which supplied the Spec */
284 TopSpec* parent_sym; /* the TopSpec which supplied the symbol */
285 Int becTag; /* behavioural eclass tag for ::to_addr */
286 Int becPrio; /* and its priority */
287 Bool isWrap; /* wrap or replacement? */
288 Bool isIFunc; /* indirect function? */
290 Active;
292 /* The active set is a fast lookup table */
293 static OSet* activeSet = NULL;
295 /* Wrapper routine for indirect functions */
296 static Addr iFuncWrapper;
298 /*------------------------------------------------------------*/
299 /*--- FWDses ---*/
300 /*------------------------------------------------------------*/
302 static void maybe_add_active ( Active /*by value; callee copies*/ );
304 static void* dinfo_zalloc(const HChar* ec, SizeT);
305 static void dinfo_free(void*);
306 static HChar* dinfo_strdup(const HChar* ec, const HChar*);
307 static Bool is_plausible_guest_addr(Addr);
309 static void show_redir_state ( const HChar* who );
310 static void show_active ( const HChar* left, const Active* act );
312 static void handle_maybe_load_notifier( const HChar* soname,
313 const HChar* symbol, Addr addr );
315 static void handle_require_text_symbols ( DebugInfo* );
317 /*------------------------------------------------------------*/
318 /*--- NOTIFICATIONS ---*/
319 /*------------------------------------------------------------*/
321 static
322 void generate_and_add_actives (
323 /* spec list and the owning TopSpec */
324 Spec* specs,
325 TopSpec* parent_spec,
326 /* debuginfo and the owning TopSpec */
327 DebugInfo* di,
328 TopSpec* parent_sym
332 /* Copy all the names from a given symbol into an AR_DINFO allocated,
333 NULL terminated array, for easy iteration. Caller must pass also
334 the address of a 2-entry array which can be used in the common case
335 to avoid dynamic allocation. */
336 static const HChar** alloc_symname_array ( const HChar* pri_name,
337 const HChar** sec_names,
338 const HChar** twoslots )
340 /* Special-case the common case: only one name. We expect the
341 caller to supply a stack-allocated 2-entry array for this. */
342 if (sec_names == NULL) {
343 twoslots[0] = pri_name;
344 twoslots[1] = NULL;
345 return twoslots;
347 /* Else must use dynamic allocation. Figure out size .. */
348 Word n_req = 1;
349 const HChar** pp = sec_names;
350 while (*pp) { n_req++; pp++; }
351 /* .. allocate and copy in. */
352 const HChar** arr = dinfo_zalloc("redir.asa.1", (n_req+1) * sizeof(HChar*));
353 Word i = 0;
354 arr[i++] = pri_name;
355 pp = sec_names;
356 while (*pp) { arr[i++] = *pp; pp++; }
357 vg_assert(i == n_req);
358 vg_assert(arr[n_req] == NULL);
359 return arr;
363 /* Free the array allocated by alloc_symname_array, if any. */
364 static void free_symname_array ( const HChar** names, const HChar** twoslots )
366 if (names != twoslots)
367 dinfo_free(names);
370 static HChar const* advance_to_equal ( HChar const* c ) {
371 while (*c && *c != '=') {
372 ++c;
374 return c;
376 static HChar const* advance_to_comma ( HChar const* c ) {
377 while (*c && *c != ',') {
378 ++c;
380 return c;
383 /* Notify m_redir of the arrival of a new DebugInfo. This is fairly
384 complex, but the net effect is to (1) add a new entry to the
385 topspecs list, and (2) figure out what new binding are now active,
386 and, as a result, add them to the actives mapping. */
388 void VG_(redir_notify_new_DebugInfo)( DebugInfo* newdi )
390 Bool ok, isWrap, isGlobal;
391 Int i, nsyms, becTag, becPrio;
392 Spec* specList;
393 Spec* spec;
394 TopSpec* ts;
395 TopSpec* newts;
396 const HChar* sym_name_pri;
397 const HChar** sym_names_sec;
398 SymAVMAs sym_avmas;
399 const HChar* demangled_sopatt;
400 const HChar* demangled_fnpatt;
401 Bool check_ppcTOCs = False;
402 Bool isText;
403 const HChar* newdi_soname;
404 Bool dehacktivate_pthread_stack_cache_var_search = False;
405 const HChar* const pthread_soname = "libpthread.so.0";
406 const HChar* const pthread_stack_cache_actsize_varname
407 = "stack_cache_actsize";
408 const HChar* const libc_soname = "libc.so.6";
409 const HChar* const libc_gnu_get_libc_version_funcname = "gnu_get_libc_version";
410 #if defined(VGO_solaris)
411 Bool vg_vfork_fildes_var_search = False;
412 const HChar* const vg_preload_core_soname = "vgpreload_core.so.0";
413 const HChar* const vg_vfork_fildes_varname = "vg_vfork_fildes";
414 #endif
416 # if defined(VG_PLAT_USES_PPCTOC)
417 check_ppcTOCs = True;
418 # endif
420 vg_assert(newdi);
421 newdi_soname = VG_(DebugInfo_get_soname)(newdi);
422 vg_assert(newdi_soname != NULL);
424 /* libc is special, because it contains some of the core redirects.
425 Make sure it is fully loaded. */
426 if (0 == VG_(strcmp)(newdi_soname, libc_soname) ||
427 0 == VG_(strcmp)(newdi_soname, pthread_soname))
428 VG_(di_load_di)(newdi);
430 #ifdef ENABLE_INNER
432 /* When an outer Valgrind is executing an inner Valgrind, the
433 inner "sees" in its address space the mmap-ed vgpreload files
434 of the outer. The inner must avoid interpreting the
435 redirections given in the outer vgpreload mmap-ed files.
436 Otherwise, some tool combinations badly fail.
438 Example: outer memcheck tool executing an inner none tool.
440 If inner none interprets the outer malloc redirection, the
441 inner will redirect malloc to a memcheck function it does not
442 have (as the redirection target is from the outer). With
443 such a failed redirection, a call to malloc inside the inner
444 will then result in a "no-operation" (and so no memory will
445 be allocated).
447 When running as an inner, no redirection will be done
448 for a vgpreload file if this file is not located in the
449 inner VALGRIND_LIB directory.
451 Recognising a vgpreload file based on a filename pattern
452 is a kludge. An alternate solution would be to change
453 the _vgr prefix according to outer/inner/client.
455 const HChar* newdi_filename = VG_(DebugInfo_get_filename)(newdi);
456 const HChar* newdi_basename = VG_(basename) (newdi_filename);
457 if (VG_(strncmp) (newdi_basename, "vgpreload_", 10) == 0) {
458 /* This looks like a vgpreload file => check if this file
459 is from the inner VALGRIND_LIB.
460 We do this check using VG_(stat) + dev/inode comparison
461 as vg-in-place defines a VALGRIND_LIB with symlinks
462 pointing to files inside the valgrind build directories. */
463 struct vg_stat newdi_stat;
464 SysRes newdi_res;
465 struct vg_stat in_vglib_stat;
466 SysRes in_vglib_res;
468 newdi_res = VG_(stat)(newdi_filename, &newdi_stat);
470 HChar in_vglib_filename[VG_(strlen)(VG_(libdir)) + 1 +
471 VG_(strlen)(newdi_basename) + 1];
472 VG_(sprintf)(in_vglib_filename, "%s/%s", VG_(libdir), newdi_basename);
474 in_vglib_res = VG_(stat)(in_vglib_filename, &in_vglib_stat);
476 /* If we find newdi_basename in inner VALGRIND_LIB
477 but newdi_filename is not the same file, then we do
478 not execute the redirection. */
479 if (!sr_isError(in_vglib_res)
480 && !sr_isError(newdi_res)
481 && (newdi_stat.dev != in_vglib_stat.dev
482 || newdi_stat.ino != in_vglib_stat.ino)) {
483 /* <inner VALGRIND_LIB>/newdi_basename is an existing file
484 and is different of newdi_filename.
485 So, we do not execute newdi_filename redirection. */
486 if ( VG_(clo_verbosity) > 1 ) {
487 VG_(message)( Vg_DebugMsg,
488 "Skipping vgpreload redir in %s"
489 " (not from VALGRIND_LIB_INNER)\n",
490 newdi_filename);
492 return;
493 } else {
494 if ( VG_(clo_verbosity) > 1 ) {
495 VG_(message)( Vg_DebugMsg,
496 "Executing vgpreload redir in %s"
497 " (from VALGRIND_LIB_INNER)\n",
498 newdi_filename);
503 #endif
506 /* stay sane: we don't already have this. */
507 for (ts = topSpecs; ts; ts = ts->next)
508 vg_assert(ts->seginfo != newdi);
510 /* scan this DebugInfo's symbol table, pulling out and demangling
511 any specs found */
513 specList = NULL; /* the spec list we're building up */
515 dehacktivate_pthread_stack_cache_var_search =
516 SimHintiS(SimHint_no_nptl_pthread_stackcache, VG_(clo_sim_hints))
517 && (0 == VG_(strcmp)(newdi_soname, pthread_soname) ||
518 0 == VG_(strcmp)(newdi_soname, libc_soname));
520 #if defined(VGO_solaris)
521 vg_vfork_fildes_var_search =
522 0 == VG_(strcmp)(newdi_soname, vg_preload_core_soname);
523 #endif
525 nsyms = VG_(DebugInfo_syms_howmany)( newdi );
526 for (i = 0; i < nsyms; i++) {
527 VG_(DebugInfo_syms_getidx)( newdi, i, &sym_avmas,
528 NULL, &sym_name_pri, &sym_names_sec,
529 &isText, NULL, NULL );
530 /* Set up to conveniently iterate over all names for this symbol. */
531 const HChar* twoslots[2];
532 const HChar** names_init =
533 alloc_symname_array(sym_name_pri, sym_names_sec, &twoslots[0]);
534 const HChar** names;
535 for (names = names_init; *names; names++) {
536 isGlobal = False;
537 ok = VG_(maybe_Z_demangle)( *names,
538 &demangled_sopatt,
539 &demangled_fnpatt,
540 &isWrap, &becTag, &becPrio );
542 if (isText && dehacktivate_pthread_stack_cache_var_search) {
543 if (0 == VG_(strcmp)(*names, libc_gnu_get_libc_version_funcname)) {
544 if ( VG_(clo_verbosity) > 1 ) {
545 VG_(message)( Vg_DebugMsg,
546 "deactivate nptl pthread stackcache via tunable:"
547 " found symbol %s at addr %p\n",
548 *names, (void*) sym_avmas.main);
550 VG_(client__gnu_get_libc_version_addr) = (client__gnu_get_libc_version_type) sym_avmas.main;
551 dehacktivate_pthread_stack_cache_var_search = False;
555 /* ignore data symbols */
556 if (!isText) {
557 /* But search for dehacktivate stack cache var if needed. */
558 if (dehacktivate_pthread_stack_cache_var_search
559 && 0 == VG_(strcmp)(*names,
560 pthread_stack_cache_actsize_varname)) {
561 if ( VG_(clo_verbosity) > 1 ) {
562 VG_(message)( Vg_DebugMsg,
563 "deactivate nptl pthread stackcache via kludge:"
564 " found symbol %s at addr %p\n",
565 *names, (void*) sym_avmas.main);
567 VG_(client__stack_cache_actsize__addr) = (SizeT*) sym_avmas.main;
568 dehacktivate_pthread_stack_cache_var_search = False;
570 #if defined(VGO_solaris)
571 if (vg_vfork_fildes_var_search
572 && 0 == VG_(strcmp)(*names, vg_vfork_fildes_varname)) {
573 if ( VG_(clo_verbosity) > 1 ) {
574 VG_(message)( Vg_DebugMsg,
575 "vfork kludge: found symbol %s at addr %p\n",
576 *names, (void*) sym_avmas.main);
578 VG_(vfork_fildes_addr) = (Int*) sym_avmas.main;
579 vg_vfork_fildes_var_search = False;
581 #endif
582 continue;
584 if (!ok) {
585 /* It's not a full-scale redirect, but perhaps it is a load-notify
586 fn? Let the load-notify department see it. */
587 handle_maybe_load_notifier( newdi_soname, *names, sym_avmas.main );
588 continue;
590 if (check_ppcTOCs && GET_TOCPTR_AVMA(sym_avmas) == 0) {
591 /* This platform uses toc pointers, but none could be found
592 for this symbol, so we can't safely redirect/wrap to it.
593 Just skip it; we'll make a second pass over the symbols in
594 the following loop, and complain at that point. */
595 continue;
598 HChar *replaced_sopatt = NULL;
599 if (0 == VG_(strncmp) (demangled_sopatt,
600 VG_SO_SYN_PREFIX, VG_SO_SYN_PREFIX_LEN)) {
601 /* This is a redirection for handling lib so synonyms. If we
602 have a matching lib synonym, then replace the sopatt.
603 Otherwise, just ignore this redirection spec. */
605 /* Search for a matching synonym=newname*/
606 SizeT const sopatt_syn_len
607 = VG_(strlen)(demangled_sopatt+VG_SO_SYN_PREFIX_LEN);
608 HChar const* last = VG_(clo_soname_synonyms);
610 while (last != NULL && *last) {
611 HChar const* first = last;
612 last = advance_to_equal(first);
614 if ((last - first) == sopatt_syn_len
615 && 0 == VG_(strncmp)(demangled_sopatt+VG_SO_SYN_PREFIX_LEN,
616 first,
617 sopatt_syn_len)) {
618 // Found the demangle_sopatt synonym => replace it
619 first = last + 1;
620 last = advance_to_comma(first);
621 replaced_sopatt = dinfo_zalloc("redir.rnnD.5",
622 last - first + 1);
623 VG_(strncpy)(replaced_sopatt, first, last - first);
624 replaced_sopatt[last - first] = '\0';
625 demangled_sopatt = replaced_sopatt;
626 break;
629 last = advance_to_comma(last);
630 if (*last == ',')
631 last++;
634 // If the user didn't set it then somalloc is special. We
635 // want to match public/global symbols that match the
636 // fnpatt everywhere.
637 if (replaced_sopatt == NULL
638 && VG_(strcmp) ( demangled_sopatt, SO_SYN_MALLOC_NAME ) == 0)
640 replaced_sopatt = dinfo_strdup("m_redir.rnnD.1", "*");
641 demangled_sopatt = replaced_sopatt;
642 isGlobal = True;
645 // If we have not replaced the sopatt, then skip the redir.
646 if (replaced_sopatt == NULL)
647 continue;
650 spec = dinfo_zalloc("redir.rnnD.1", sizeof(Spec));
651 spec->from_sopatt = dinfo_strdup("redir.rnnD.2", demangled_sopatt);
652 spec->from_fnpatt = dinfo_strdup("redir.rnnD.3", demangled_fnpatt);
653 spec->to_addr = sym_avmas.main;
654 spec->isWrap = isWrap;
655 spec->isGlobal = isGlobal;
656 spec->becTag = becTag;
657 spec->becPrio = becPrio;
658 /* check we're not adding manifestly stupid destinations */
659 vg_assert(is_plausible_guest_addr(sym_avmas.main));
660 spec->next = specList;
661 spec->mark = False; /* not significant */
662 spec->done = False; /* not significant */
663 specList = spec;
664 /* The demangler is the owner of the demangled_sopatt memory,
665 unless it was replaced. In this case, we have to free the
666 replace_sopatt(==demangled_sopatt). We can free it,
667 because it was dinfo_strup-ed into spec->from_sopatt. */
668 if (replaced_sopatt != NULL) {
669 vg_assert(demangled_sopatt == replaced_sopatt);
670 dinfo_free(replaced_sopatt);
673 free_symname_array(names_init, &twoslots[0]);
675 if (dehacktivate_pthread_stack_cache_var_search) {
676 VG_(message)(Vg_DebugMsg,
677 "WARNING: could not find symbol for var %s in %s\n",
678 pthread_stack_cache_actsize_varname, pthread_soname);
679 VG_(message)(Vg_DebugMsg,
680 "=> pthread stack cache cannot be disabled!\n");
682 #if defined(VGO_solaris)
683 if (vg_vfork_fildes_var_search) {
684 VG_(message)(Vg_DebugMsg,
685 "WARNING: could not find symbol for var %s in %s\n",
686 vg_vfork_fildes_varname, vg_preload_core_soname);
687 VG_(message)(Vg_DebugMsg,
688 "=> posix_spawn() will not work correctly!\n");
690 #endif
692 if (check_ppcTOCs) {
693 for (i = 0; i < nsyms; i++) {
694 VG_(DebugInfo_syms_getidx)( newdi, i, &sym_avmas,
695 NULL, &sym_name_pri, &sym_names_sec,
696 &isText, NULL, NULL );
697 const HChar* twoslots[2];
698 const HChar** names_init =
699 alloc_symname_array(sym_name_pri, sym_names_sec, &twoslots[0]);
700 const HChar** names;
701 for (names = names_init; *names; names++) {
702 ok = isText
703 && VG_(maybe_Z_demangle)(
704 *names, &demangled_sopatt,
705 &demangled_fnpatt, &isWrap, NULL, NULL );
706 if (!ok)
707 /* not a redirect. Ignore. */
708 continue;
709 if (GET_TOCPTR_AVMA(sym_avmas) != 0)
710 /* has a valid toc pointer. Ignore. */
711 continue;
713 for (spec = specList; spec; spec = spec->next)
714 if (0 == VG_(strcmp)(spec->from_sopatt, demangled_sopatt)
715 && 0 == VG_(strcmp)(spec->from_fnpatt, demangled_fnpatt))
716 break;
717 if (spec)
718 /* a redirect to some other copy of that symbol, which
719 does have a TOC value, already exists */
720 continue;
722 /* Complain */
723 VG_(message)(Vg_DebugMsg,
724 "WARNING: no TOC ptr for redir/wrap to %s %s\n",
725 demangled_sopatt, demangled_fnpatt);
727 free_symname_array(names_init, &twoslots[0]);
731 /* Ok. Now specList holds the list of specs from the DebugInfo.
732 Build a new TopSpec, but don't add it to topSpecs yet. */
733 newts = dinfo_zalloc("redir.rnnD.4", sizeof(TopSpec));
734 newts->next = NULL; /* not significant */
735 newts->seginfo = newdi;
736 newts->specs = specList;
737 newts->mark = False; /* not significant */
739 /* We now need to augment the active set with the following partial
740 cross product:
742 (1) actives formed by matching the new specs in specList against
743 all symbols currently listed in topSpecs
745 (2) actives formed by matching the new symbols in newdi against
746 all specs currently listed in topSpecs
748 (3) actives formed by matching the new symbols in newdi against
749 the new specs in specList
751 This is necessary in order to maintain the invariant that
752 Actives contains all bindings generated by matching ALL specs in
753 topSpecs against ALL symbols in topSpecs (that is, a cross
754 product of ALL known specs against ALL known symbols).
756 /* Case (1) */
757 for (ts = topSpecs; ts; ts = ts->next) {
758 if (ts->seginfo)
759 generate_and_add_actives( specList, newts,
760 ts->seginfo, ts );
763 /* Case (2) */
764 for (ts = topSpecs; ts; ts = ts->next) {
765 generate_and_add_actives( ts->specs, ts,
766 newdi, newts );
769 /* Case (3) */
770 generate_and_add_actives( specList, newts,
771 newdi, newts );
773 /* Finally, add the new TopSpec. */
774 newts->next = topSpecs;
775 topSpecs = newts;
777 if (VG_(clo_trace_redir))
778 show_redir_state("after VG_(redir_notify_new_DebugInfo)");
780 /* Really finally (quite unrelated to all the above) check the
781 names in the module against any --require-text-symbol=
782 specifications we might have. */
783 handle_require_text_symbols(newdi);
786 /* Add a new target for an indirect function. Adds a new redirection
787 for the indirection function with address old_from that redirects
788 the ordinary function with address new_from to the target address
789 of the original redirection. */
791 void VG_(redir_add_ifunc_target)( Addr old_from, Addr new_from )
793 Active *old, new;
795 old = VG_(OSetGen_Lookup)(activeSet, &old_from);
796 vg_assert(old);
797 vg_assert(old->isIFunc);
799 new = *old;
800 new.from_addr = new_from;
801 new.isIFunc = False;
802 maybe_add_active (new);
804 if (VG_(clo_trace_redir)) {
805 VG_(message)( Vg_DebugMsg,
806 "Adding redirect for indirect function "
807 "0x%lx from 0x%lx -> 0x%lx\n",
808 old_from, new_from, new.to_addr );
812 /* Do one element of the basic cross product: add to the active set,
813 all matches resulting from comparing all the given specs against
814 all the symbols in the given seginfo. If a conflicting binding
815 would thereby arise, don't add it, but do complain. */
817 static
818 void generate_and_add_actives (
819 /* spec list and the owning TopSpec */
820 Spec* specs,
821 TopSpec* parent_spec,
822 /* seginfo and the owning TopSpec */
823 DebugInfo* di,
824 TopSpec* parent_sym
827 Spec* sp;
828 Bool anyMark, isText, isIFunc, isGlobal;
829 Active act;
830 Int nsyms, i;
831 SymAVMAs sym_avmas;
832 const HChar* sym_name_pri;
833 const HChar** sym_names_sec;
835 /* First figure out which of the specs match the seginfo's soname.
836 Also clear the 'done' bits, so that after the main loop below
837 tell which of the Specs really did get done. */
838 anyMark = False;
839 for (sp = specs; sp; sp = sp->next) {
840 sp->done = False;
841 const HChar *soname = VG_(DebugInfo_get_soname)(di);
843 /* When searching for global public symbols (like for the somalloc
844 synonym symbols), exclude the dynamic (runtime) linker as it is very
845 special. See https://bugs.kde.org/show_bug.cgi?id=355454 */
846 if ((VG_(strcmp)(sp->from_sopatt, "*") == 0) &&
847 (sp->isGlobal == True) &&
848 VG_(is_soname_ld_so)(soname)) {
849 sp->mark = False;
850 continue;
853 sp->mark = VG_(string_match)( sp->from_sopatt, soname );
854 anyMark = anyMark || sp->mark;
856 /* The symtab might be in a separate debuginfo file. Make sure the
857 debuginfo is fully loaded. */
858 if (sp->mark && sp->mandatory)
859 VG_(di_load_di)(di);
862 /* shortcut: if none of the sonames match, there will be no bindings. */
863 if (!anyMark)
864 return;
866 /* Iterate outermost over the symbols in the seginfo, in the hope
867 of trashing the caches less. */
868 nsyms = VG_(DebugInfo_syms_howmany)( di );
869 for (i = 0; i < nsyms; i++) {
870 VG_(DebugInfo_syms_getidx)( di, i, &sym_avmas,
871 NULL, &sym_name_pri, &sym_names_sec,
872 &isText, &isIFunc, &isGlobal );
873 const HChar* twoslots[2];
874 const HChar** names_init =
875 alloc_symname_array(sym_name_pri, sym_names_sec, &twoslots[0]);
876 const HChar** names;
877 for (names = names_init; *names; names++) {
879 /* ignore data symbols */
880 if (!isText)
881 continue;
883 for (sp = specs; sp; sp = sp->next) {
884 if (!sp->mark)
885 continue; /* soname doesn't match */
886 if (VG_(string_match)( sp->from_fnpatt, *names )
887 && (sp->isGlobal == False || isGlobal == True)) {
888 /* got a new binding. Add to collection. */
889 act.from_addr = sym_avmas.main;
890 act.to_addr = sp->to_addr;
891 act.parent_spec = parent_spec;
892 act.parent_sym = parent_sym;
893 act.becTag = sp->becTag;
894 act.becPrio = sp->becPrio;
895 act.isWrap = sp->isWrap;
896 act.isIFunc = isIFunc;
897 sp->done = True;
898 maybe_add_active( act );
900 /* If the function being wrapped has a local entry point
901 * redirect it to the global entry point. The redirection
902 * must save and setup r2 then setup r12 for the new function.
903 * On return, r2 must be restored. Local entry points used
904 * in PPC64 Little Endian.
906 if (GET_LOCAL_EP_AVMA(sym_avmas) != 0) {
907 act.from_addr = GET_LOCAL_EP_AVMA(sym_avmas);
908 maybe_add_active( act );
912 } /* for (sp = specs; sp; sp = sp->next) */
914 } /* iterating over names[] */
915 free_symname_array(names_init, &twoslots[0]);
916 } /* for (i = 0; i < nsyms; i++) */
918 /* Now, finally, look for Specs which were marked to be done, but
919 didn't get matched. If any such are mandatory we must abort the
920 system at this point. */
921 for (sp = specs; sp; sp = sp->next) {
922 if (!sp->mark)
923 continue;
924 if (sp->mark && (!sp->done) && sp->mandatory)
925 break;
927 if (sp) {
928 const HChar** strp;
929 const HChar* v = "valgrind: ";
930 vg_assert(sp->mark);
931 vg_assert(!sp->done);
932 vg_assert(sp->mandatory);
933 VG_(printf)("\n");
934 VG_(printf)(
935 "%sFatal error at startup: a function redirection\n", v);
936 VG_(printf)(
937 "%swhich is mandatory for this platform-tool combination\n", v);
938 VG_(printf)(
939 "%scannot be set up. Details of the redirection are:\n", v);
940 VG_(printf)(
941 "%s\n", v);
942 VG_(printf)(
943 "%sA must-be-redirected function\n", v);
944 VG_(printf)(
945 "%swhose name matches the pattern: %s\n", v, sp->from_fnpatt);
946 VG_(printf)(
947 "%sin an object with soname matching: %s\n", v, sp->from_sopatt);
948 VG_(printf)(
949 "%swas not found whilst processing\n", v);
950 VG_(printf)(
951 "%ssymbols from the object with soname: %s\n",
952 v, VG_(DebugInfo_get_soname)(di));
953 VG_(printf)(
954 "%s\n", v);
956 for (strp = sp->mandatory; *strp; strp++)
957 VG_(printf)(
958 "%s%s\n", v, *strp);
960 VG_(printf)(
961 "%s\n", v);
962 VG_(printf)(
963 "%sCannot continue -- exiting now. Sorry.\n", v);
964 VG_(printf)("\n");
965 VG_(exit)(1);
970 /* Add an act (passed by value; is copied here) and deal with
971 conflicting bindings. */
972 static void maybe_add_active ( Active act )
974 const HChar* what = NULL;
975 Active* old = NULL;
976 Bool add_act = False;
978 /* Complain and ignore manifestly bogus 'from' addresses.
980 Kludge: because this can get called befor the trampoline area (a
981 bunch of magic 'to' addresses) has its ownership changed from V
982 to C, we can't check the 'to' address similarly. Sigh.
984 amd64-linux hack: the vsysinfo pages appear to have no
985 permissions
986 ffffffffff600000-ffffffffffe00000 ---p 00000000 00:00 0
987 so skip the check for them. */
988 if (!is_plausible_guest_addr(act.from_addr)
989 # if defined(VGP_amd64_linux)
990 && act.from_addr != 0xFFFFFFFFFF600000ULL
991 && act.from_addr != 0xFFFFFFFFFF600400ULL
992 && act.from_addr != 0xFFFFFFFFFF600800ULL
993 # endif
995 what = "redirection from-address is in non-executable area";
996 goto bad;
999 old = VG_(OSetGen_Lookup)( activeSet, &act.from_addr );
1000 if (old) {
1001 /* Dodgy. Conflicting binding. */
1002 vg_assert(old->from_addr == act.from_addr);
1003 if (old->to_addr != act.to_addr) {
1004 /* We've got a conflicting binding -- that is, from_addr is
1005 specified to redirect to two different destinations,
1006 old->to_addr and act.to_addr. If we can prove that they
1007 are behaviourally equivalent then that's no problem. So
1008 we can look at the behavioural eclass tags for both
1009 functions to see if that's so. If they are equal, and
1010 nonzero, then that's fine. But if not, we can't show they
1011 are equivalent, so we have to complain, and ignore the new
1012 binding. */
1013 vg_assert(old->becTag >= 0 && old->becTag <= 9999);
1014 vg_assert(old->becPrio >= 0 && old->becPrio <= 9);
1015 vg_assert(act.becTag >= 0 && act.becTag <= 9999);
1016 vg_assert(act.becPrio >= 0 && act.becPrio <= 9);
1017 if (old->becTag == 0)
1018 vg_assert(old->becPrio == 0);
1019 if (act.becTag == 0)
1020 vg_assert(act.becPrio == 0);
1022 if (old->becTag == 0 || act.becTag == 0 || old->becTag != act.becTag) {
1023 /* We can't show that they are equivalent. Complain and
1024 ignore. */
1025 what = "new redirection conflicts with existing -- ignoring it";
1026 goto bad;
1028 /* They have the same eclass tag. Use the priorities to
1029 resolve the ambiguity. */
1030 if (act.becPrio <= old->becPrio) {
1031 /* The new one doesn't have a higher priority, so just
1032 ignore it. */
1033 if (VG_(clo_verbosity) > 2) {
1034 VG_(message)(Vg_UserMsg, "Ignoring %s redirection:\n",
1035 act.becPrio < old->becPrio ? "lower priority"
1036 : "duplicate");
1037 show_active( " old: ", old);
1038 show_active( " new: ", &act);
1040 } else {
1041 /* The tricky case. The new one has a higher priority, so
1042 we need to get the old one out of the OSet and install
1043 this one in its place. */
1044 if (VG_(clo_verbosity) > 1) {
1045 VG_(message)(Vg_UserMsg,
1046 "Preferring higher priority redirection:\n");
1047 show_active( " old: ", old);
1048 show_active( " new: ", &act);
1050 add_act = True;
1051 void* oldNd = VG_(OSetGen_Remove)( activeSet, &act.from_addr );
1052 vg_assert(oldNd == old);
1053 VG_(OSetGen_FreeNode)( activeSet, old );
1054 old = NULL;
1056 } else {
1057 /* This appears to be a duplicate of an existing binding.
1058 Safe(ish) -- ignore. */
1059 /* XXXXXXXXXXX COMPLAIN if new and old parents differ */
1062 } else {
1063 /* There's no previous binding for this from_addr, so we must
1064 add 'act' to the active set. */
1065 add_act = True;
1068 /* So, finally, actually add it. */
1069 if (add_act) {
1070 Active* a = VG_(OSetGen_AllocNode)(activeSet, sizeof(Active));
1071 vg_assert(a);
1072 *a = act;
1073 VG_(OSetGen_Insert)(activeSet, a);
1074 /* Now that a new from->to redirection is in force, we need to
1075 get rid of any translations intersecting 'from' in order that
1076 they get redirected to 'to'. So discard them. Just for
1077 paranoia (but, I believe, unnecessarily), discard 'to' as
1078 well. */
1079 VG_(discard_translations)( act.from_addr, 1,
1080 "redir_new_DebugInfo(from_addr)");
1081 VG_(discard_translations)( act.to_addr, 1,
1082 "redir_new_DebugInfo(to_addr)");
1083 if (VG_(clo_verbosity) > 2) {
1084 VG_(message)(Vg_UserMsg, "Adding active redirection:\n");
1085 show_active( " new: ", &act);
1088 return;
1090 bad:
1091 vg_assert(what);
1092 vg_assert(!add_act);
1093 if (VG_(clo_verbosity) > 1) {
1094 VG_(message)(Vg_UserMsg, "WARNING: %s\n", what);
1095 if (old) {
1096 show_active( " old: ", old);
1098 show_active( " new: ", &act);
1103 /* Notify m_redir of the deletion of a DebugInfo. This is relatively
1104 simple -- just get rid of all actives derived from it, and free up
1105 the associated list elements. */
1107 void VG_(redir_notify_delete_DebugInfo)( const DebugInfo* delsi )
1109 TopSpec* ts;
1110 TopSpec* tsPrev;
1111 Spec* sp;
1112 Spec* sp_next;
1113 OSet* tmpSet;
1114 Active* act;
1115 Bool delMe;
1116 Addr addr;
1118 vg_assert(delsi);
1120 /* Search for it, and make tsPrev point to the previous entry, if
1121 any. */
1122 tsPrev = NULL;
1123 ts = topSpecs;
1124 while (True) {
1125 if (ts == NULL) break;
1126 if (ts->seginfo == delsi) break;
1127 tsPrev = ts;
1128 ts = ts->next;
1131 vg_assert(ts); /* else we don't have the deleted DebugInfo */
1132 vg_assert(ts->seginfo == delsi);
1134 /* Traverse the actives, copying the addresses of those we intend
1135 to delete into tmpSet. */
1136 tmpSet = VG_(OSetWord_Create)(dinfo_zalloc, "redir.rndD.1", dinfo_free);
1138 ts->mark = True;
1140 VG_(OSetGen_ResetIter)( activeSet );
1141 while ( (act = VG_(OSetGen_Next)(activeSet)) ) {
1142 delMe = act->parent_spec != NULL
1143 && act->parent_sym != NULL
1144 && act->parent_spec->seginfo != NULL
1145 && act->parent_sym->seginfo != NULL
1146 && (act->parent_spec->mark || act->parent_sym->mark);
1148 /* While we're at it, a bit of paranoia: delete any actives
1149 which don't have both feet in valid client executable areas.
1150 But don't delete hardwired-at-startup ones; these are denoted
1151 by having parent_spec or parent_sym being NULL. */
1152 if ( (!delMe)
1153 && act->parent_spec != NULL
1154 && act->parent_sym != NULL ) {
1155 if (!is_plausible_guest_addr(act->from_addr))
1156 delMe = True;
1157 if (!is_plausible_guest_addr(act->to_addr))
1158 delMe = True;
1161 if (delMe) {
1162 VG_(OSetWord_Insert)( tmpSet, act->from_addr );
1163 /* While we have our hands on both the 'from' and 'to'
1164 of this Active, do paranoid stuff with tt/tc. */
1165 VG_(discard_translations)( act->from_addr, 1,
1166 "redir_del_DebugInfo(from_addr)");
1167 VG_(discard_translations)( act->to_addr, 1,
1168 "redir_del_DebugInfo(to_addr)");
1172 /* Now traverse tmpSet, deleting corresponding elements in activeSet. */
1173 VG_(OSetWord_ResetIter)( tmpSet );
1174 while ( VG_(OSetWord_Next)(tmpSet, &addr) ) {
1175 act = VG_(OSetGen_Remove)( activeSet, &addr );
1176 vg_assert(act);
1177 VG_(OSetGen_FreeNode)( activeSet, act );
1180 VG_(OSetWord_Destroy)( tmpSet );
1182 /* The Actives set is now cleaned up. Free up this TopSpec and
1183 everything hanging off it. */
1184 for (sp = ts->specs; sp; sp = sp_next) {
1185 if (sp->from_sopatt) dinfo_free(sp->from_sopatt);
1186 if (sp->from_fnpatt) dinfo_free(sp->from_fnpatt);
1187 sp_next = sp->next;
1188 dinfo_free(sp);
1191 if (tsPrev == NULL) {
1192 /* first in list */
1193 topSpecs = ts->next;
1194 } else {
1195 tsPrev->next = ts->next;
1197 dinfo_free(ts);
1199 if (VG_(clo_trace_redir))
1200 show_redir_state("after VG_(redir_notify_delete_DebugInfo)");
1204 /*------------------------------------------------------------*/
1205 /*--- QUERIES (really the whole point of this module) ---*/
1206 /*------------------------------------------------------------*/
1208 /* This is the crucial redirection function. It answers the question:
1209 should this code address be redirected somewhere else? It's used
1210 just before translating a basic block. */
1211 Addr VG_(redir_do_lookup) ( Addr orig, Bool* isWrap )
1213 Active* r = VG_(OSetGen_Lookup)(activeSet, &orig);
1214 if (r == NULL) {
1215 if (isWrap) *isWrap = False;
1216 return orig;
1219 vg_assert(r->to_addr != 0);
1220 if (isWrap)
1221 *isWrap = r->isWrap || r->isIFunc;
1222 if (r->isIFunc) {
1223 vg_assert(iFuncWrapper);
1224 return iFuncWrapper;
1226 return r->to_addr;
1229 /* Does the soname represent a dynamic (runtime) linker?
1230 Considers various VG_U_LD* entries from pub_tool_redir.h. */
1231 Bool VG_(is_soname_ld_so) (const HChar *soname)
1233 # if defined(VGO_linux)
1234 if (VG_STREQ(soname, VG_U_LD_LINUX_SO_3)) return True;
1235 if (VG_STREQ(soname, VG_U_LD_LINUX_SO_2)) return True;
1236 if (VG_STREQ(soname, VG_U_LD_LINUX_X86_64_SO_2)) return True;
1237 if (VG_STREQ(soname, VG_U_LD64_SO_1)) return True;
1238 if (VG_STREQ(soname, VG_U_LD64_SO_2)) return True;
1239 if (VG_STREQ(soname, VG_U_LD_SO_1)) return True;
1240 if (VG_STREQ(soname, VG_U_LD_LINUX_AARCH64_SO_1)) return True;
1241 if (VG_STREQ(soname, VG_U_LD_LINUX_ARMHF_SO_3)) return True;
1242 if (VG_STREQ(soname, VG_U_LD_LINUX_MIPSN8_S0_1)) return True;
1243 # elif defined(VGO_freebsd)
1244 if (VG_STREQ(soname, VG_U_LD_ELF_SO_1)) return True;
1245 if (VG_STREQ(soname, VG_U_LD_ELF32_SO_1)) return True;
1246 # elif defined(VGO_darwin)
1247 if (VG_STREQ(soname, VG_U_DYLD)) return True;
1248 # elif defined(VGO_solaris)
1249 if (VG_STREQ(soname, VG_U_LD_SO_1)) return True;
1250 # else
1251 # error "Unsupported OS"
1252 # endif
1254 return False;
1257 /*------------------------------------------------------------*/
1258 /*--- INITIALISATION ---*/
1259 /*------------------------------------------------------------*/
1261 /* Add a never-delete-me Active. */
1263 __attribute__((unused)) /* only used on amd64 */
1264 static void add_hardwired_active ( Addr from, Addr to )
1266 Active act;
1267 act.from_addr = from;
1268 act.to_addr = to;
1269 act.parent_spec = NULL;
1270 act.parent_sym = NULL;
1271 act.becTag = 0; /* "not equivalent to any other fn" */
1272 act.becPrio = 0; /* mandatory when becTag == 0 */
1273 act.isWrap = False;
1274 act.isIFunc = False;
1275 maybe_add_active( act );
1279 /* Add a never-delete-me Spec. This is a bit of a kludge. On the
1280 assumption that this is called only at startup, only handle the
1281 case where topSpecs is completely empty, or if it isn't, it has
1282 just one entry and that is the one with NULL seginfo -- that is the
1283 entry that holds these initial specs. */
1285 __attribute__((unused)) /* not used on all platforms */
1286 static void add_hardwired_spec (const HChar* sopatt, const HChar* fnpatt,
1287 Addr to_addr,
1288 const HChar** mandatory )
1290 Spec* spec = dinfo_zalloc("redir.ahs.1", sizeof(Spec));
1292 if (topSpecs == NULL) {
1293 topSpecs = dinfo_zalloc("redir.ahs.2", sizeof(TopSpec));
1294 /* symtab_zalloc sets all fields to zero */
1297 vg_assert(topSpecs != NULL);
1298 vg_assert(topSpecs->next == NULL);
1299 vg_assert(topSpecs->seginfo == NULL);
1300 /* FIXED PARTS */
1301 /* Note, that these CONST_CAST will not cause a problem, in the sense
1302 that VG_(redir_notify_delete_DebugInfo) will delete them. The reason
1303 is that the TopSpec here has seginfo == NULL and such a TopSpec will
1304 never be freed. See the asserts at the beginning of said function. */
1305 spec->from_sopatt = CONST_CAST(HChar *,sopatt);
1306 spec->from_fnpatt = CONST_CAST(HChar *,fnpatt);
1307 spec->to_addr = to_addr;
1308 spec->isWrap = False;
1309 spec->isGlobal = False;
1310 spec->mandatory = mandatory;
1311 /* VARIABLE PARTS */
1312 spec->mark = False; /* not significant */
1313 spec->done = False; /* not significant */
1315 spec->next = topSpecs->specs;
1316 topSpecs->specs = spec;
1320 __attribute__((unused)) /* not used on all platforms */
1321 static const HChar* complain_about_stripped_glibc_ldso[]
1322 = { "Possible fixes: (1, short term): install glibc's debuginfo",
1323 "package on this machine. (2, longer term): ask the packagers",
1324 "for your Linux distribution to please in future ship a non-",
1325 "stripped ld.so (or whatever the dynamic linker .so is called)",
1326 "that exports the above-named function using the standard",
1327 "calling conventions for this platform. The package you need",
1328 "to install for fix (1) is called",
1330 " On Debian, Ubuntu: libc6-dbg",
1331 " On SuSE, openSuSE, Fedora, RHEL: glibc-debuginfo",
1333 "Note that if you are debugging a 32 bit process on a",
1334 "64 bit system, you will need a corresponding 32 bit debuginfo",
1335 "package (e.g. libc6-dbg:i386).",
1336 NULL
1340 /* Initialise the redir system, and create the initial Spec list and
1341 for amd64-linux a couple of permanent active mappings. The initial
1342 Specs are not converted into Actives yet, on the (checked)
1343 assumption that no DebugInfos have so far been created, and so when
1344 they are created, that will happen. */
1346 void VG_(redir_initialise) ( void )
1348 // Assert that there are no DebugInfos so far
1349 vg_assert( VG_(next_DebugInfo)(NULL) == NULL );
1351 // Initialise active mapping.
1352 activeSet = VG_(OSetGen_Create)(offsetof(Active, from_addr),
1353 NULL, // Use fast comparison
1354 dinfo_zalloc,
1355 "redir.ri.1",
1356 dinfo_free);
1358 // The rest of this function just adds initial Specs.
1360 # if defined(VGP_x86_linux)
1361 /* If we're using memcheck, use this intercept right from the
1362 start, otherwise ld.so (glibc-2.3.5) makes a lot of noise. */
1363 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1364 const HChar** mandatory;
1365 # ifndef GLIBC_MANDATORY_INDEX_AND_STRLEN_REDIRECT
1366 mandatory = NULL;
1367 # else
1368 /* for glibc-2.12 and later, this is mandatory - can't sanely
1369 continue without it */
1370 mandatory = complain_about_stripped_glibc_ldso;
1371 # endif
1372 add_hardwired_spec(
1373 "ld-linux.so.2", "index",
1374 (Addr)&VG_(x86_linux_REDIR_FOR_index), mandatory);
1375 add_hardwired_spec(
1376 "ld-linux.so.2", "strlen",
1377 (Addr)&VG_(x86_linux_REDIR_FOR_strlen), mandatory);
1380 # elif defined(VGP_amd64_linux)
1381 /* Redirect vsyscalls to local versions */
1382 add_hardwired_active(
1383 0xFFFFFFFFFF600000ULL,
1384 (Addr)&VG_(amd64_linux_REDIR_FOR_vgettimeofday)
1386 add_hardwired_active(
1387 0xFFFFFFFFFF600400ULL,
1388 (Addr)&VG_(amd64_linux_REDIR_FOR_vtime)
1390 add_hardwired_active(
1391 0xFFFFFFFFFF600800ULL,
1392 (Addr)&VG_(amd64_linux_REDIR_FOR_vgetcpu)
1395 /* If we're using memcheck, use these intercepts right from
1396 the start, otherwise ld.so makes a lot of noise. */
1397 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1399 add_hardwired_spec(
1400 "ld-linux-x86-64.so.2", "index",
1401 (Addr)&VG_(amd64_linux_REDIR_FOR_index), NULL);
1402 add_hardwired_spec(
1403 "ld-linux-x86-64.so.2", "strlen",
1404 (Addr)&VG_(amd64_linux_REDIR_FOR_strlen),
1405 # ifndef GLIBC_MANDATORY_STRLEN_REDIRECT
1406 NULL
1407 # else
1408 /* for glibc-2.10 and later, this is mandatory - can't sanely
1409 continue without it */
1410 complain_about_stripped_glibc_ldso
1411 # endif
1413 add_hardwired_spec(
1414 "ld-linux-x86-64.so.2", "strcmp",
1415 (Addr)&VG_(amd64_linux_REDIR_FOR_strcmp),
1416 # ifndef GLIBC_MANDATORY_STRLEN_REDIRECT
1417 NULL
1418 # else
1419 complain_about_stripped_glibc_ldso
1420 # endif
1424 # elif defined(VGP_ppc32_linux)
1425 /* If we're using memcheck, use these intercepts right from
1426 the start, otherwise ld.so makes a lot of noise. */
1427 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1429 /* this is mandatory - can't sanely continue without it */
1430 add_hardwired_spec(
1431 "ld.so.1", "strlen",
1432 (Addr)&VG_(ppc32_linux_REDIR_FOR_strlen),
1433 complain_about_stripped_glibc_ldso
1435 add_hardwired_spec(
1436 "ld.so.1", "strcmp",
1437 (Addr)&VG_(ppc32_linux_REDIR_FOR_strcmp),
1438 NULL /* not mandatory - so why bother at all? */
1439 /* glibc-2.6.1 (openSUSE 10.3, ppc32) seems fine without it */
1441 add_hardwired_spec(
1442 "ld.so.1", "index",
1443 (Addr)&VG_(ppc32_linux_REDIR_FOR_strchr),
1444 NULL /* not mandatory - so why bother at all? */
1445 /* glibc-2.6.1 (openSUSE 10.3, ppc32) seems fine without it */
1449 # elif defined(VGP_ppc64be_linux)
1450 /* If we're using memcheck, use these intercepts right from
1451 the start, otherwise ld.so makes a lot of noise. */
1452 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1454 /* this is mandatory - can't sanely continue without it */
1455 add_hardwired_spec(
1456 "ld64.so.1", "strlen",
1457 (Addr)VG_(fnptr_to_fnentry)( &VG_(ppc64_linux_REDIR_FOR_strlen) ),
1458 complain_about_stripped_glibc_ldso
1461 add_hardwired_spec(
1462 "ld64.so.1", "index",
1463 (Addr)VG_(fnptr_to_fnentry)( &VG_(ppc64_linux_REDIR_FOR_strchr) ),
1464 NULL /* not mandatory - so why bother at all? */
1465 /* glibc-2.5 (FC6, ppc64) seems fine without it */
1469 # elif defined(VGP_ppc64le_linux)
1470 /* If we're using memcheck, use these intercepts right from
1471 * the start, otherwise ld.so makes a lot of noise.
1473 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1475 /* this is mandatory - can't sanely continue without it */
1476 add_hardwired_spec(
1477 "ld64.so.2", "strlen",
1478 (Addr)&VG_(ppc64_linux_REDIR_FOR_strlen),
1479 complain_about_stripped_glibc_ldso
1482 add_hardwired_spec(
1483 "ld64.so.2", "index",
1484 (Addr)&VG_(ppc64_linux_REDIR_FOR_strchr),
1485 NULL /* not mandatory - so why bother at all? */
1486 /* glibc-2.5 (FC6, ppc64) seems fine without it */
1490 # elif defined(VGP_arm_linux)
1491 /* If we're using memcheck, use these intercepts right from the
1492 start, otherwise ld.so makes a lot of noise. In most ARM-linux
1493 distros, ld.so's soname is ld-linux.so.3, but Ubuntu 14.04 on
1494 Odroid uses ld-linux-armhf.so.3 for some reason. */
1495 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1496 /* strlen */
1497 add_hardwired_spec(
1498 "ld-linux.so.3", "strlen",
1499 (Addr)&VG_(arm_linux_REDIR_FOR_strlen),
1500 complain_about_stripped_glibc_ldso
1502 add_hardwired_spec(
1503 "ld-linux-armhf.so.3", "strlen",
1504 (Addr)&VG_(arm_linux_REDIR_FOR_strlen),
1505 complain_about_stripped_glibc_ldso
1507 /* memcpy */
1508 add_hardwired_spec(
1509 "ld-linux.so.3", "memcpy",
1510 (Addr)&VG_(arm_linux_REDIR_FOR_memcpy),
1511 complain_about_stripped_glibc_ldso
1513 add_hardwired_spec(
1514 "ld-linux-armhf.so.3", "memcpy",
1515 (Addr)&VG_(arm_linux_REDIR_FOR_memcpy),
1516 complain_about_stripped_glibc_ldso
1518 /* strcmp */
1519 add_hardwired_spec(
1520 "ld-linux.so.3", "strcmp",
1521 (Addr)&VG_(arm_linux_REDIR_FOR_strcmp),
1522 complain_about_stripped_glibc_ldso
1524 add_hardwired_spec(
1525 "ld-linux-armhf.so.3", "strcmp",
1526 (Addr)&VG_(arm_linux_REDIR_FOR_strcmp),
1527 complain_about_stripped_glibc_ldso
1529 /* index */
1530 add_hardwired_spec(
1531 "ld-linux.so.3", "index",
1532 (Addr)&VG_(arm_linux_REDIR_FOR_index),
1533 complain_about_stripped_glibc_ldso
1535 add_hardwired_spec(
1536 "ld-linux-armhf.so.3", "index",
1537 (Addr)&VG_(arm_linux_REDIR_FOR_index),
1538 complain_about_stripped_glibc_ldso
1542 # elif defined(VGP_arm64_linux)
1543 /* If we're using memcheck, use these intercepts right from
1544 the start, otherwise ld.so makes a lot of noise. */
1545 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1546 add_hardwired_spec(
1547 "ld-linux-aarch64.so.1", "strlen",
1548 (Addr)&VG_(arm64_linux_REDIR_FOR_strlen),
1549 complain_about_stripped_glibc_ldso
1551 add_hardwired_spec(
1552 "ld-linux-aarch64.so.1", "index",
1553 (Addr)&VG_(arm64_linux_REDIR_FOR_index),
1554 NULL
1556 add_hardwired_spec(
1557 "ld-linux-aarch64.so.1", "strcmp",
1558 (Addr)&VG_(arm64_linux_REDIR_FOR_strcmp),
1559 NULL
1561 # if defined(VGPV_arm64_linux_android)
1562 add_hardwired_spec(
1563 "NONE", "__dl_strlen", // in /system/bin/linker64
1564 (Addr)&VG_(arm64_linux_REDIR_FOR_strlen),
1565 NULL
1567 # endif
1570 # elif defined(VGP_x86_freebsd) || defined(VGP_amd64_freebsd)
1571 /* XXX do something real if needed */
1572 # elif defined(VGP_x86_darwin)
1573 /* If we're using memcheck, use these intercepts right from
1574 the start, otherwise dyld makes a lot of noise. */
1575 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1576 add_hardwired_spec("dyld", "strcmp",
1577 (Addr)&VG_(x86_darwin_REDIR_FOR_strcmp), NULL);
1578 add_hardwired_spec("dyld", "strlen",
1579 (Addr)&VG_(x86_darwin_REDIR_FOR_strlen), NULL);
1580 add_hardwired_spec("dyld", "strcat",
1581 (Addr)&VG_(x86_darwin_REDIR_FOR_strcat), NULL);
1582 add_hardwired_spec("dyld", "strcpy",
1583 (Addr)&VG_(x86_darwin_REDIR_FOR_strcpy), NULL);
1584 add_hardwired_spec("dyld", "strlcat",
1585 (Addr)&VG_(x86_darwin_REDIR_FOR_strlcat), NULL);
1588 # elif defined(VGP_amd64_darwin)
1589 /* If we're using memcheck, use these intercepts right from
1590 the start, otherwise dyld makes a lot of noise. */
1591 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1592 add_hardwired_spec("dyld", "strcmp",
1593 (Addr)&VG_(amd64_darwin_REDIR_FOR_strcmp), NULL);
1594 add_hardwired_spec("dyld", "strlen",
1595 (Addr)&VG_(amd64_darwin_REDIR_FOR_strlen), NULL);
1596 add_hardwired_spec("dyld", "strcat",
1597 (Addr)&VG_(amd64_darwin_REDIR_FOR_strcat), NULL);
1598 add_hardwired_spec("dyld", "strcpy",
1599 (Addr)&VG_(amd64_darwin_REDIR_FOR_strcpy), NULL);
1600 add_hardwired_spec("dyld", "strlcat",
1601 (Addr)&VG_(amd64_darwin_REDIR_FOR_strlcat), NULL);
1602 // DDD: #warning fixme rdar://6166275
1603 add_hardwired_spec("dyld", "arc4random",
1604 (Addr)&VG_(amd64_darwin_REDIR_FOR_arc4random), NULL);
1605 # if DARWIN_VERS == DARWIN_10_9
1606 add_hardwired_spec("dyld", "strchr",
1607 (Addr)&VG_(amd64_darwin_REDIR_FOR_strchr), NULL);
1608 # endif
1611 # elif defined(VGP_s390x_linux)
1612 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1613 // added in rsponse to BZ 327943
1614 add_hardwired_spec("ld64.so.1", "index",
1615 (Addr)&VG_(s390x_linux_REDIR_FOR_index),
1616 complain_about_stripped_glibc_ldso);
1619 # elif defined(VGP_mips32_linux)
1620 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1621 /* this is mandatory - can't sanely continue without it */
1622 add_hardwired_spec(
1623 "ld.so.1", "strlen",
1624 (Addr)&VG_(mips32_linux_REDIR_FOR_strlen),
1625 complain_about_stripped_glibc_ldso
1627 add_hardwired_spec(
1628 "ld.so.1", "index",
1629 (Addr)&VG_(mips32_linux_REDIR_FOR_index),
1630 complain_about_stripped_glibc_ldso
1632 # if defined(VGPV_mips32_linux_android)
1633 add_hardwired_spec(
1634 "NONE", "__dl_strlen",
1635 (Addr)&VG_(mips32_linux_REDIR_FOR_strlen),
1636 NULL
1638 # endif
1641 # elif defined(VGP_mips64_linux)
1642 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1643 /* this is mandatory - can't sanely continue without it */
1644 add_hardwired_spec(
1645 "ld.so.1", "strlen",
1646 (Addr)&VG_(mips64_linux_REDIR_FOR_strlen),
1647 complain_about_stripped_glibc_ldso
1649 add_hardwired_spec(
1650 "ld.so.1", "index",
1651 (Addr)&VG_(mips64_linux_REDIR_FOR_index),
1652 complain_about_stripped_glibc_ldso
1654 # if defined(VGABI_64)
1655 add_hardwired_spec(
1656 "ld-linux-mipsn8.so.1", "strlen",
1657 (Addr)&VG_(mips64_linux_REDIR_FOR_strlen),
1658 complain_about_stripped_glibc_ldso
1660 add_hardwired_spec(
1661 "ld-linux-mipsn8.so.1", "index",
1662 (Addr)&VG_(mips64_linux_REDIR_FOR_index),
1663 complain_about_stripped_glibc_ldso
1665 # elif defined(VGABI_N32)
1666 add_hardwired_spec(
1667 "ld.so.1", "strchr",
1668 (Addr)&VG_(mips64_linux_REDIR_FOR_index),
1669 complain_about_stripped_glibc_ldso
1671 # else
1672 # error unknown mips64 ABI
1673 # endif
1676 # elif defined(VGP_nanomips_linux)
1677 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1679 add_hardwired_spec(
1680 "ld.so.1", "strlen",
1681 (Addr)&VG_(nanomips_linux_REDIR_FOR_strlen),
1682 complain_about_stripped_glibc_ldso
1684 add_hardwired_spec(
1685 "ld.so.1", "index",
1686 (Addr)&VG_(nanomips_linux_REDIR_FOR_index),
1687 complain_about_stripped_glibc_ldso
1691 # elif defined(VGP_x86_solaris)
1692 /* If we're using memcheck, use these intercepts right from
1693 the start, otherwise ld.so makes a lot of noise. */
1694 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1695 add_hardwired_spec("/lib/ld.so.1", "strcmp",
1696 (Addr)&VG_(x86_solaris_REDIR_FOR_strcmp), NULL);
1698 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1699 add_hardwired_spec("/lib/ld.so.1", "strlen",
1700 (Addr)&VG_(x86_solaris_REDIR_FOR_strlen), NULL);
1703 # elif defined(VGP_amd64_solaris)
1704 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1705 add_hardwired_spec("/lib/amd64/ld.so.1", "strcpy",
1706 (Addr)&VG_(amd64_solaris_REDIR_FOR_strcpy), NULL);
1708 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1709 add_hardwired_spec("/lib/amd64/ld.so.1", "strncpy",
1710 (Addr)&VG_(amd64_solaris_REDIR_FOR_strncpy), NULL);
1712 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1713 add_hardwired_spec("/lib/amd64/ld.so.1", "strcmp",
1714 (Addr)&VG_(amd64_solaris_REDIR_FOR_strcmp), NULL);
1716 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1717 add_hardwired_spec("/lib/amd64/ld.so.1", "strcat",
1718 (Addr)&VG_(amd64_solaris_REDIR_FOR_strcat), NULL);
1720 if (0==VG_(strcmp)("Memcheck", VG_(details).name)) {
1721 add_hardwired_spec("/lib/amd64/ld.so.1", "strlen",
1722 (Addr)&VG_(amd64_solaris_REDIR_FOR_strlen), NULL);
1725 # else
1726 # error Unknown platform
1727 # endif
1729 if (VG_(clo_trace_redir))
1730 show_redir_state("after VG_(redir_initialise)");
1734 /*------------------------------------------------------------*/
1735 /*--- MISC HELPERS ---*/
1736 /*------------------------------------------------------------*/
1738 static void* dinfo_zalloc(const HChar* ec, SizeT n) {
1739 void* p;
1740 vg_assert(n > 0);
1741 p = VG_(arena_malloc)(VG_AR_DINFO, ec, n);
1742 VG_(memset)(p, 0, n);
1743 return p;
1746 static void dinfo_free(void* p) {
1747 vg_assert(p);
1748 return VG_(arena_free)(VG_AR_DINFO, p);
1751 static HChar* dinfo_strdup(const HChar* ec, const HChar* str)
1753 return VG_(arena_strdup)(VG_AR_DINFO, ec, str);
1756 /* Really this should be merged with translations_allowable_from_seg
1757 in m_translate. */
1758 static Bool is_plausible_guest_addr(Addr a)
1760 NSegment const* seg = VG_(am_find_nsegment)(a);
1761 return seg != NULL
1762 && (seg->kind == SkAnonC || seg->kind == SkFileC ||
1763 seg->kind == SkShmC)
1764 && (seg->hasX || seg->hasR); /* crude x86-specific hack */
1768 /*------------------------------------------------------------*/
1769 /*--- NOTIFY-ON-LOAD FUNCTIONS ---*/
1770 /*------------------------------------------------------------*/
1772 static
1773 void handle_maybe_load_notifier( const HChar* soname,
1774 const HChar* symbol, Addr addr )
1776 # if defined(VGP_x86_linux)
1777 /* x86-linux only: if we see _dl_sysinfo_int80, note its address.
1778 See comment on declaration of VG_(client__dl_sysinfo_int80) for
1779 the reason. As far as I can tell, the relevant symbol is always
1780 in object with soname "ld-linux.so.2". */
1781 if (symbol && symbol[0] == '_'
1782 && 0 == VG_(strcmp)(symbol, "_dl_sysinfo_int80")
1783 && 0 == VG_(strcmp)(soname, "ld-linux.so.2")) {
1784 if (VG_(client__dl_sysinfo_int80) == 0)
1785 VG_(client__dl_sysinfo_int80) = addr;
1787 # endif
1789 /* Normal load-notifier handling after here. First, ignore all
1790 symbols lacking the right prefix. */
1791 vg_assert(symbol); // assert rather than segfault if it is NULL
1792 if (0 != VG_(strncmp)(symbol, VG_NOTIFY_ON_LOAD_PREFIX,
1793 VG_NOTIFY_ON_LOAD_PREFIX_LEN))
1794 /* Doesn't have the right prefix */
1795 return;
1797 if (VG_(strcmp)(symbol, VG_STRINGIFY(VG_NOTIFY_ON_LOAD(freeres))) == 0)
1798 VG_(client_freeres_wrapper) = addr;
1799 else
1800 if (VG_(strcmp)(symbol, VG_STRINGIFY(VG_NOTIFY_ON_LOAD(ifunc_wrapper))) == 0)
1801 iFuncWrapper = addr;
1802 else
1803 vg_assert2(0, "unrecognised load notification function: %s", symbol);
1807 /*------------------------------------------------------------*/
1808 /*--- REQUIRE-TEXT-SYMBOL HANDLING ---*/
1809 /*------------------------------------------------------------*/
1811 /* In short: check that the currently-being-loaded object has text
1812 symbols that satisfy any --require-text-symbol= specifications that
1813 apply to it, and abort the run with an error message if not.
1815 static void handle_require_text_symbols ( DebugInfo* di )
1817 /* First thing to do is figure out which, if any,
1818 --require-text-symbol specification strings apply to this
1819 object. Most likely none do, since it is not expected to
1820 frequently be used. Work through the list of specs and
1821 accumulate in fnpatts[] the fn patterns that pertain to this
1822 object. */
1823 XArray *fnpatts = VG_(newXA)( VG_(malloc), "m_redir.hrts.5",
1824 VG_(free), sizeof(HChar*) );
1826 Int i, j;
1827 const HChar* di_soname = VG_(DebugInfo_get_soname)(di);
1828 vg_assert(di_soname); // must be present
1830 for (i = 0; i < VG_(sizeXA)(VG_(clo_req_tsyms)); i++) {
1831 const HChar* clo_spec = *(HChar**) VG_(indexXA)(VG_(clo_req_tsyms), i);
1832 vg_assert(clo_spec && VG_(strlen)(clo_spec) >= 4);
1833 // clone the spec, so we can stick a zero at the end of the sopatt
1834 HChar *spec = VG_(strdup)("m_redir.hrts.1", clo_spec);
1835 HChar sep = spec[0];
1836 HChar* sopatt = &spec[1];
1837 HChar* fnpatt = VG_(strchr)(sopatt, sep);
1838 // the initial check at clo processing in time in m_main
1839 // should ensure this.
1840 vg_assert(fnpatt && *fnpatt == sep);
1841 *fnpatt = 0;
1842 fnpatt++;
1843 if (VG_(string_match)(sopatt, di_soname)) {
1844 HChar *pattern = VG_(strdup)("m_redir.hrts.2", fnpatt);
1845 VG_(addToXA)(fnpatts, &pattern);
1847 VG_(free)(spec);
1850 if (VG_(sizeXA)(fnpatts) == 0) {
1851 VG_(deleteXA)(fnpatts);
1852 return; /* no applicable spec strings */
1855 /* So finally, fnpatts contains the set of
1856 (patterns for) text symbol names that must be found in this
1857 object, in order to continue. That is, we must find at least
1858 one text symbol name that matches each pattern, else we must
1859 abort the run. */
1861 if (0) VG_(printf)("for %s\n", di_soname);
1862 for (i = 0; i < VG_(sizeXA)(fnpatts); i++)
1863 if (0) VG_(printf)(" fnpatt: %s\n",
1864 *(HChar**) VG_(indexXA)(fnpatts, i));
1866 /* For each spec, look through the syms to find one that matches.
1867 This isn't terribly efficient but it happens rarely, so no big
1868 deal. */
1869 for (i = 0; i < VG_(sizeXA)(fnpatts); i++) {
1870 Bool found = False;
1871 const HChar* fnpatt = *(HChar**) VG_(indexXA)(fnpatts, i);
1872 Int nsyms = VG_(DebugInfo_syms_howmany)(di);
1873 for (j = 0; j < nsyms; j++) {
1874 Bool isText = False;
1875 const HChar* sym_name_pri = NULL;
1876 const HChar** sym_names_sec = NULL;
1877 VG_(DebugInfo_syms_getidx)( di, j, NULL,
1878 NULL, &sym_name_pri, &sym_names_sec,
1879 &isText, NULL, NULL );
1880 const HChar* twoslots[2];
1881 const HChar** names_init =
1882 alloc_symname_array(sym_name_pri, sym_names_sec, &twoslots[0]);
1883 const HChar** names;
1884 for (names = names_init; *names; names++) {
1885 /* ignore data symbols */
1886 if (0) VG_(printf)("QQQ %s\n", *names);
1887 vg_assert(sym_name_pri);
1888 if (!isText)
1889 continue;
1890 if (VG_(string_match)(fnpatt, *names)) {
1891 found = True;
1892 break;
1895 free_symname_array(names_init, &twoslots[0]);
1896 if (found)
1897 break;
1900 if (!found) {
1901 const HChar* v = "valgrind: ";
1902 VG_(printf)("\n");
1903 VG_(printf)(
1904 "%sFatal error at when loading library with soname\n", v);
1905 VG_(printf)(
1906 "%s %s\n", v, di_soname);
1907 VG_(printf)(
1908 "%sCannot find any text symbol with a name "
1909 "that matches the pattern\n", v);
1910 VG_(printf)("%s %s\n", v, fnpatt);
1911 VG_(printf)("%sas required by a --require-text-symbol= "
1912 "specification.\n", v);
1913 VG_(printf)("\n");
1914 VG_(printf)(
1915 "%sCannot continue -- exiting now.\n", v);
1916 VG_(printf)("\n");
1917 VG_(exit)(1);
1921 /* All required specs were found. Just free memory and return. */
1922 for (i = 0; i < VG_(sizeXA)(fnpatts); i++)
1923 VG_(free)(*(HChar**) VG_(indexXA)(fnpatts, i));
1924 VG_(deleteXA)(fnpatts);
1928 /*------------------------------------------------------------*/
1929 /*--- SANITY/DEBUG ---*/
1930 /*------------------------------------------------------------*/
1932 static void show_spec ( const HChar* left, const Spec* spec )
1934 VG_(message)( Vg_DebugMsg,
1935 "%s%-25s %-30s %s%s-> (%04d.%d) 0x%08lx\n",
1936 left,
1937 spec->from_sopatt, spec->from_fnpatt,
1938 spec->isWrap ? "W" : "R",
1939 spec->isGlobal ? "G" : "L",
1940 spec->becTag, spec->becPrio,
1941 spec->to_addr );
1944 static void show_active ( const HChar* left, const Active* act )
1946 Bool ok;
1947 const HChar *buf;
1949 DiEpoch ep = VG_(current_DiEpoch)();
1950 ok = VG_(get_fnname_w_offset)(ep, act->from_addr, &buf);
1951 if (!ok) buf = "???";
1952 // Stash away name1
1953 HChar name1[VG_(strlen)(buf) + 1];
1954 VG_(strcpy)(name1, buf);
1956 const HChar *name2;
1957 ok = VG_(get_fnname_w_offset)(ep, act->to_addr, &name2);
1958 if (!ok) name2 = "???";
1960 VG_(message)(Vg_DebugMsg, "%s0x%08lx (%-20s) %s-> (%04d.%d) 0x%08lx %s\n",
1961 left,
1962 act->from_addr, name1,
1963 act->isWrap ? "W" : "R",
1964 act->becTag, act->becPrio,
1965 act->to_addr, name2 );
1968 static void show_redir_state ( const HChar* who )
1970 TopSpec* ts;
1971 Spec* sp;
1972 Active* act;
1973 VG_(message)(Vg_DebugMsg, "<<\n");
1974 VG_(message)(Vg_DebugMsg, " ------ REDIR STATE %s ------\n", who);
1975 for (ts = topSpecs; ts; ts = ts->next) {
1976 if (ts->seginfo)
1977 VG_(message)(Vg_DebugMsg,
1978 " TOPSPECS of soname %s filename %s\n",
1979 VG_(DebugInfo_get_soname)(ts->seginfo),
1980 VG_(DebugInfo_get_filename)(ts->seginfo));
1981 else
1982 VG_(message)(Vg_DebugMsg,
1983 " TOPSPECS of soname (hardwired)\n");
1985 for (sp = ts->specs; sp; sp = sp->next)
1986 show_spec(" ", sp);
1988 VG_(message)(Vg_DebugMsg, " ------ ACTIVE ------\n");
1989 VG_(OSetGen_ResetIter)( activeSet );
1990 while ( (act = VG_(OSetGen_Next)(activeSet)) ) {
1991 show_active(" ", act);
1994 VG_(message)(Vg_DebugMsg, ">>\n");
1997 /*--------------------------------------------------------------------*/
1998 /*--- end ---*/
1999 /*--------------------------------------------------------------------*/