611 Commits

Author SHA1 Message Date
Nicholas Nethercote
5d5fbb5309 Fixed up docs a bit: did the core/skin split properly for suppressions.
Client requests still need to be fixed, though.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1647
2003-05-20 18:24:54 +00:00
Nicholas Nethercote
a2c7da2ae8 wibble
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1646
2003-05-20 17:42:26 +00:00
Nicholas Nethercote
c4e8c61d5a Minor docs fixups.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1644
2003-05-20 17:32:21 +00:00
Nicholas Nethercote
40571c6f66 Added VALGRIND_MALLOCLIKE_BLOCK and VALGRIND_FREELIKE_BLOCK which allow you to
use a custom-allocator and detect almost as many errors as you could detect if
you used malloc/new/new[].  (eg. leaks detected, free errors, free mismatch,
etc).

Had to fiddle with mac_malloc_wrappers.c a bit to factor out the appropriate
code to be called from the client request handling code.  Also had to add a
new element `MAC_AllocCustom' to the MAC_AllocKind type.

Also added a little documentation, and a regression test.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1643
2003-05-20 16:38:24 +00:00
Nicholas Nethercote
136a5e69d5 This commit fixes up the handling of shadow registers quite a bit.
Removed the SK_(written_shadow_regs_values)() function.  Instead, skins that
use shadow regs can track the `post_regs_write_init' event, and set the shadow
regs from within it.  This is much more flexible, since it allows each shadow
register to be set to a separate value if necessary.  It also matches the new
shadow-reg-change events described below.

In the core, there were some places where the shadow regs were changed, and
skins had no way of knowing about it, which was a problem for some skins.
So I added a bunch of new events to notify skins about these:

  post_reg_write_syscall_return
  post_reg_write_deliver_signal
  post_reg_write_pthread_return
  post_reg_write_clientreq_return
  post_reg_write_clientcall_return

Any skin that uses shadow regs should almost certainly track these events.  The
post_reg_write_clientcall_return allows a skin to tailor the shadow reg of the
return value of a CLIENTCALL'd function appropriately;  this is especially
useful when replacing malloc() et al.

Defined some macros that should be used *whenever the core changes the value of
a shadow register* :

  SET_SYSCALL_RETVAL
  SET_SIGNAL_EDX          (maybe should be SET_SIGNAL_RETVAL? ... not sure)
  SET_SIGNAL_ESP
  SET_CLREQ_RETVAL
  SET_CLCALL_RETVAL
  SET_PTHREQ_ESP
  SET_PTHREQ_RETVAL

These replace all the old SET_EAX and SET_EDX macros, and are added in a few
places where the shadow-reg update was missing.

Added shadow registers to the machine state saved/restored when signal handlers
are pushed/popped (they were missing).

Added skin-callable functions VG_(set_return_from_syscall_shadow)() and
VG_(get_exit_status_shadow)() which are useful and abstract away from which
registers the results are in.

Also, poll() changes %ebx (it's first argument) sometimes, I don't know why.
So we notify skins about that too (with the `post_reg_write_syscall_return'
event, which isn't ideal I guess...)


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1642
2003-05-19 15:04:06 +00:00
Julian Seward
07258f73de gcc-3.3 as supplied with SuSE 8.2 ("gcc version 3.3 20030226
(prerelease) (SuSE Linux)") seems to complain about signed-vs-unsigned
comparisons, when -Wall is on.  This commit fixes (most of) those
complaints.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1638
2003-05-18 10:05:38 +00:00
Julian Seward
b9f41dceee Back out symlinking of libpthread.so in coregrind; it causes build
problems on many modern distros.  Not sure how to resolve this properly.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1637
2003-05-17 11:53:46 +00:00
Nicholas Nethercote
32791c71c1 Minor type fixups.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1636
2003-05-14 14:04:39 +00:00
Nicholas Nethercote
33b4e7c995 undo last change (stupid)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1635
2003-05-14 12:56:36 +00:00
Nicholas Nethercote
7e375f4bcc wibble
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1634
2003-05-14 12:54:47 +00:00
Nicholas Nethercote
2a20132bc9 Removed statement with no effect.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1633
2003-05-14 12:52:21 +00:00
Nicholas Nethercote
a0c31b6f2f wibble
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1632
2003-05-14 12:42:14 +00:00
Nicholas Nethercote
d7f0b75201 wibble
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1631
2003-05-14 09:11:53 +00:00
Nicholas Nethercote
975948b452 wibble
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1630
2003-05-14 09:08:49 +00:00
Nicholas Nethercote
97ea509cc9 wibble
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1629
2003-05-12 21:41:30 +00:00
Nicholas Nethercote
96c3404d77 Fixed suppression reading so that you can specify up to four "fun:" or "obj:"
lines (it was 3 due to a bug).

Also removed VG_(get_suppressions)() which wasn't being used, and changed
VG_(exitcode) to an Int, as it should be.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1628
2003-05-12 20:40:13 +00:00
Julian Seward
ecee893b06 Improve threaded handling of errno:
- Change various incorrect direct references to errno into
  *(__errno_location()).

- In __errno_location and __h_errno_location, treat the tid==1 case
  (root thread) specially, as with __res_state().

This seems to fix a bug in threaded handling of errno on R H 9 and SuSE8.2,
and almost makes OpenOffice work again on R H 9.

MERGE TO STABLE, if it doesn't break anything.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1625
2003-05-09 23:40:34 +00:00
Julian Seward
2cdb93b219 Merge patch from JosefW:
Hi,

recently I found that there is sometimes cost attributed to some
strange lines (with cachegrind/calltree) with GCC 3.x (using the
DWARF2 debug info format).

I had time to look at this. There is a bug in the DWARF2 debug line
info loader when instructions following each other have source lines
far from each other (e.g. with inlined functions).

MERGE TO STABLE


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1619
2003-05-05 22:18:17 +00:00
Nicholas Nethercote
ba72812e02 This commit allows Valgrind to be run in-place from the source tree, without
requiring "make install".  This is good for two reasons:

1. shorter compile times ("make" instead of "make install")
2. don't need to install before running the regression tests

Changes:
 - root Makefile now builds a libpthread.so.0 symlink to libpthread.so, which
   was needed.

 - startup script accepts a --in-place=<dir> option for running a non-installed
   version, where <dir> is the root of the src tree

 - VG_(mash_LD_PRELOAD_and_LD_LIBRARY_PATH) had to be fiddled with a bit

 - tests/vg_regtest now uses the --in-place option to test the non-installed
   version


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1614
2003-05-05 12:47:25 +00:00
Julian Seward
c82b1c580f Increase VG_N_CLEANUPSTACK to 16.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1588
2003-05-04 13:02:10 +00:00
Julian Seward
e455ba148d Fix interception of pthread_atfork with glibc-2.3.2.
MERGE TO STABLE


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1587
2003-05-04 12:35:54 +00:00
Julian Seward
c873dac6c4 Unchain translations when doing VALGRIND_DISCARD_TRANSLATIONS. Otherwise
the tt/tc are left in an inconsistent state afterwards.  (Adam Gundy
<arg@cyberscience.com>)


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1586
2003-05-04 12:32:56 +00:00
Nicholas Nethercote
90ef0ac1d6 Moved the CLIENT_tstCALL[0123] requests out of valgrind.h into vg_skin.h,
because there was no point exposing them to clients, as they don't know the
ThreadState type.

Also, removed the LOGMESSAGE request type, replaced it with calls to
VG_(message) via the generic VALGRIND_NON_SIMD_CALL2.

In fact, almost every single pthread client request could be removed in this
same way.  That would result in less code, which would be nice... yeah, real
nice.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1584
2003-05-02 17:53:54 +00:00
Nicholas Nethercote
8c22ec62d9 Made memcpy()-et-al-overlap errors fully fledged errors, suppressible,
recordable, etc.  Thanks to Tom Hughes <thh@cyberscience.com> for the patch.

Also fixed a minor bug in the reporting -- the src/dst pointers given for
strncat(), strcpy(), strcat().

And I updated the relevent regression test.

And I even added relevant documentation.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1582
2003-05-02 17:24:29 +00:00
Nicholas Nethercote
8c12eaeb63 Minor fix for lookup_dcookie
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1580
2003-05-02 16:18:06 +00:00
Nicholas Nethercote
694c3ee614 Fixed some syscalls a little bit:
- getcwd() now uses the result for the post_mem_write length rather than
   the argument, which would have over-estimated

 - accept(), recvfrom() and getsockopt() can now all take NULL buffers (which
   are quite legitimate) without Memcheck giving spurious errors

MERGE TO STABLE


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1579
2003-05-02 16:00:34 +00:00
Nicholas Nethercote
4bf271eb18 Added "_W" suffix to stack sizes to indicate they are in words.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1578
2003-05-01 08:06:41 +00:00
Nicholas Nethercote
d2457b59af Removed magic numbers for VG_(stack) size and VG_(sigstack) size, made into
#defined constants.  I hope I got all the right places.  I also hope that they
can be different sizes;  experiments seem to indicate so.  Also if I reduce the
size of the main stack at all below its current 10000 I get problems, but that
was happening before anyway, I think.

Julian, you may want to sanity check this.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1577
2003-04-30 20:49:10 +00:00
Nicholas Nethercote
8dd1a0138c Fixed a bug in Cachegrind -- if the profiled program changes working directory,
the output file wouldn't get written.  No longer creating the file at startup
and then writing it at the end;  just writing it at the end.  Also recording
the start directory at the start so that the output ends up in it even if the
program does change directory.

Had to add VG_(getcwd)() to vg_mylibc.c for this.

Added a regression test for it too.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1576
2003-04-30 20:23:58 +00:00
Nicholas Nethercote
4f5104dded 1. No longer printing the "MMX-only" or "SSE-capable" string at startup
("if (0)"'d it out).

2. Fixed the SSE state alignment in the baseBlock -- it worked for Memcheck,
   Nulgrind and Corecheck, but not for Addrcheck, Cachegrind, Lackey, Helgrind,
   due to variable numbers of shadow registers and registered compact helpers
   coming before the SSE/FPU state.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1575
2003-04-30 09:00:33 +00:00
Julian Seward
23ae8adf30 Extend the state components in VG_(m_state_static) and VG_(baseBlock)
to include the SSE/SSE2 architectural state.  Automagically detect
at startup, in vg_startup.S, whether or not this is a SSE-enabled
CPU and act accordingly.  All subsequent FPU/SSE state transfers
between the simulated and real machine are then done either with
fsave/frstor (as before) or fxsave/fxrstor (the SSE equivalents).

Fragile and fiddly; (1) the SSE state needs to be stored on a 16-byte
boundary, and (2) certain bits in the saved MXCSR reg in a state
written by fxsave need to be anded out before we can safely restore
using fxrstor.

It does appear to work.  I'd appreciate people trying it out on
various CPUs to establish whether the SSE / not-SSE check works
right, and/or anything else is broken.

Unfortunately makes some programs run significantly slower.
I don't know why.  Perhaps due to copying around more processor
state than there was before (SSE state is 512 bytes, FPU state
was only 108).  I will look into this.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1574
2003-04-29 23:50:00 +00:00
Julian Seward
72e5cd5ce5 Add \n in failure message.
MERGE TO STABLE


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1571
2003-04-27 23:46:21 +00:00
Julian Seward
fbf2533776 Don't trash %eflags before snapshotting the state of the machine at
startup.  I don't know if this is actually of interest, since surely
the flags are not live at the point where the section's .init function
is called, but still, it's a form of state pollution.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1570
2003-04-27 22:23:23 +00:00
Julian Seward
284654f749 Add __NR_prctl.
MERGE TO STABLE


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1569
2003-04-26 22:55:12 +00:00
Julian Seward
14a09cb25e report_and_quit: Tell people to look at the FAQ.txt for advice.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1568
2003-04-26 22:36:42 +00:00
Julian Seward
89b48351b8 Don't call VG_(mash_LD_PRELOAD_and_LD_LIBRARY_PATH) if all we're doing
is exiting normally.  There's no point, and it causes breakage when
programs which write their environment variables, finish normally.

MERGE TO STABLE


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1567
2003-04-26 22:29:25 +00:00
Julian Seward
85291a44d9 Support kernels >= 2.5.68 (Anders Gustafsson <andersg@0x63.nu>)
MERGE TO STABLE


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1564
2003-04-26 21:49:40 +00:00
Julian Seward
a6194ccaea Add __NR_lookup_dcookie, whatever that might be.
MERGE TO STABLE


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1563
2003-04-26 21:46:16 +00:00
Julian Seward
c1be97aff0 Merge patch from Josef Weidendorfer <Josef.Weidendorfer@gmx.de>:
Read symbols from both "symtab" and "dynsym" sections, rather than
merely from the one that comes last in the file.

MERGE TO STABLE


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1562
2003-04-26 21:42:09 +00:00
Julian Seward
76ffe12471 Add possibly-bogus implementations for __libc_current_sigrtmin,
__libc_current_sigrtmax and __libc_allocate_rtsig.

MERGE TO STABLE


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1561
2003-04-26 21:19:53 +00:00
Julian Seward
ac403fbc41 Fix compilation on glibc-2.1.X.
MERGE TO STABLE


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1560
2003-04-26 21:04:42 +00:00
Julian Seward
4efd705c4b Fix threading problems on glibc-2.3.2 or later. Note this is *not*
NPTL support.

The behaviour of weak vs strong symbols seems to have changed in
glibc-2.3.2.  This caused problems in coregrind/vg_intercept.c,
wherein strong symbols in vg_libpthread.c were intended to
override weak symbols in vg_intercept.c, in order to give alternative
thread-safe implementations of some functions, poll(), select(), etc.

The change involves moving the nonblocking implementations of poll, etc
into vg_intercept.c, renaming them to (eg)  VGR_(poll), and routing
all calls to poll to VGR_(poll) [dually for other such fns].  This
means even single-threaded programs now use these functions, but
that doesn't strike me as harmful.

MERGE TO STABLE, if it doesn't break anything


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1559
2003-04-26 20:11:15 +00:00
Nicholas Nethercote
4e3c15f4a6 Added a return value (0) for the LOGMESSAGE request, since it's now visible to
skins.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1556
2003-04-25 16:07:11 +00:00
Nicholas Nethercote
4f1b2c3adc Added syscall creat(), courtesy of Tom Hughes <thh@cyberscience.com>.
Weird that it's never come up before, everyone must use open() in preference.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1555
2003-04-24 18:14:11 +00:00
Julian Seward
68c23c28d2 Record the correct address of the initial thread's stack, as determined
by the initial scan of /proc/self/maps, so that we correctly identify
addresses in it.  This fix is thanks to Dirk Mueller.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1550
2003-04-23 21:18:52 +00:00
Nicholas Nethercote
64ece9aa70 wibbles
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1548
2003-04-23 17:49:09 +00:00
Nicholas Nethercote
e7b23faa99 Implemented malloc_usable_size(), which was used in a program written by
Frederic Delley <fdelley@cisco.com>.

This required also adding VG_(arena_payload_szB)().


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1540
2003-04-22 22:45:55 +00:00
Nicholas Nethercote
092c9b944b Added "Int exitcode" argument to SK_(fini)(), because it could be useful
for skins.

Changed lackey to print out the exit code.

Changed AUTOMAKE_OPTIONS back to 1.5 (whoops)


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1538
2003-04-22 21:41:40 +00:00
Nicholas Nethercote
2b1c838711 Renamed VG_NON_SIMD_CALL1 (and friends) as VALGRIND_NON_SIMD_CALL1 to be
consistent with the names of the other client requests.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1534
2003-04-21 13:30:55 +00:00
Nicholas Nethercote
1b48c55fc5 Added two client requests: VALGRIND_COUNT_ERRORS and VALGRIND_COUNT_LEAKS.
The first returns the number of errors found so far, and is a core request.
The second returns the number of bytes found
reachable/dubious/leaked/suppressed by all leak checks so far, for Memcheck and
Addrcheck.

Both are useful for using Valgrind in regression test suites where multiple
tests are present in a single file -- one can run Valgrind with no output
(using --logfile-fd=-1) and use the requests after each test to determine if
any errors happened.

Had to rename and make public vg_n_errs_found --> VG_(n_errs_found) to do so.
Nb: leak errors are not counted as errors for the purposes of
VALGRIND_COUNT_ERRORS.  This was decided as the best thing to do after
discussion with Olly Betts, who original suggested these changes.

Pulled out common client request code shared between Memcheck and Addrcheck.

Added a regression test for this.

Added some documentation too.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1533
2003-04-21 13:24:40 +00:00