2005-02-10 03:50:33 -05:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2010-02-14 14:40:18 -05:00
|
|
|
# Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2005-02-10 03:50:33 -05:00
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
|
|
|
# are also available at http://curl.haxx.se/docs/copyright.html.
|
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
|
|
|
###########################################################################
|
|
|
|
|
2007-10-31 14:32:06 -04:00
|
|
|
use File::Basename;
|
|
|
|
|
2005-02-10 03:50:33 -05:00
|
|
|
sub valgrindparse {
|
|
|
|
my ($srcdir, # the dir in which the runtests script resides
|
|
|
|
$sslenabled,
|
|
|
|
$file) = @_;
|
|
|
|
my $leak;
|
|
|
|
my $invalidread;
|
|
|
|
my $uninitedvar;
|
|
|
|
my $error;
|
|
|
|
my $partial;
|
|
|
|
my $us;
|
|
|
|
|
|
|
|
my @o;
|
|
|
|
|
|
|
|
my $bt=0;
|
2012-04-16 09:01:15 -04:00
|
|
|
my $nssinit=0;
|
2005-02-10 03:50:33 -05:00
|
|
|
|
|
|
|
open(VAL, "<$file");
|
|
|
|
while(<VAL>) {
|
|
|
|
if($bt) {
|
|
|
|
# back trace parsing
|
|
|
|
if($_ =~ /^==(\d+)== *(at|by) 0x([0-9A-F]+): (.*)/) {
|
|
|
|
my $w = $4;
|
|
|
|
if($w =~ /(.*) \(([^:]*):(\d+)/) {
|
|
|
|
my ($func, $source, $line)=($1, $2, $3);
|
2007-10-31 14:32:06 -04:00
|
|
|
my $sourcename = basename($source);
|
|
|
|
if(-f "$srcdir/../src/$sourcename" ||
|
|
|
|
-f "$srcdir/../lib/$sourcename") {
|
2005-02-10 03:50:33 -05:00
|
|
|
# this is our source
|
|
|
|
# print "$func() at $source:$line\n";
|
|
|
|
$us++;
|
2007-10-31 14:32:06 -04:00
|
|
|
} #else {print "Not our source: $func, $source, $line\n";}
|
2005-02-10 03:50:33 -05:00
|
|
|
}
|
2012-04-16 09:01:15 -04:00
|
|
|
|
|
|
|
# the memory leakage within NSS_InitContext is not a bug of curl
|
|
|
|
if($w =~ /NSS_InitContext/) {
|
|
|
|
$nssinit++;
|
|
|
|
}
|
2005-02-10 03:50:33 -05:00
|
|
|
}
|
|
|
|
else {
|
2012-04-16 09:01:15 -04:00
|
|
|
if($us and not $nssinit) {
|
2005-02-10 03:50:33 -05:00
|
|
|
# the stack trace included source details about us
|
|
|
|
|
|
|
|
$error++;
|
|
|
|
if($leak) {
|
|
|
|
push @o, "\n Leaked $leak bytes\n";
|
|
|
|
}
|
|
|
|
if($invalidread) {
|
|
|
|
push @o, "\n Read $invalidread invalid bytes\n";
|
|
|
|
}
|
|
|
|
if($uninitedvar) {
|
|
|
|
push @o, "\n Conditional jump or move depends on uninitialised value(s)\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$bt = 0; # no more backtrace
|
|
|
|
$us = 0;
|
2012-04-16 09:01:15 -04:00
|
|
|
$nssinit = 0;
|
2005-02-10 03:50:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if($_ =~ /(\d+) bytes in (\d+) blocks are definitely lost/) {
|
|
|
|
$leak = $1;
|
|
|
|
if($leak) {
|
|
|
|
$error++;
|
|
|
|
}
|
|
|
|
$bt = 1;
|
|
|
|
}
|
|
|
|
elsif($_ =~ /Invalid read of size (\d+)/) {
|
|
|
|
$invalidread = $1;
|
|
|
|
$error++;
|
|
|
|
$bt = 1;
|
|
|
|
}
|
|
|
|
elsif($_ =~ /Conditional jump or move/) {
|
|
|
|
# If we require SSL, this test case most probaly makes
|
|
|
|
# us use OpenSSL. OpenSSL produces numerous valgrind
|
|
|
|
# errors of this kind, rendering it impossible for us to
|
|
|
|
# detect (valid) reports on actual curl or libcurl code.
|
2010-02-14 14:40:18 -05:00
|
|
|
|
2005-02-10 03:50:33 -05:00
|
|
|
if(!$sslenabled) {
|
|
|
|
$uninitedvar = 1;
|
|
|
|
$error++;
|
|
|
|
$bt = 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$partial=1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(VAL);
|
|
|
|
return @o;
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|