1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
# Copyright (C) 2008-2010 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
# USA
package GenTest::Reporter::Backtrace;
require Exporter;
@ISA = qw(GenTest::Reporter);
use strict;
use GenTest;
use GenTest::Constants;
use GenTest::Reporter;
use GenTest::Incident;
sub report {
my $reporter = shift;
my $datadir = $reporter->serverVariable('datadir');
say("datadir is $datadir");
my $binary = $reporter->serverInfo('binary');
say("binary is $binary");
my $bindir = $reporter->serverInfo('bindir');
say("bindir is $bindir");
my $pid = $reporter->serverInfo('pid');
my $core = <$datadir/core*>;
$core = </cores/core.$pid> if $^O eq 'darwin';
say("core is $core");
my @commands;
if (osWindows()) {
$bindir =~ s{/}{\\}sgio;
my $cdb_cmd = "!sym prompts off; !analyze -v; .ecxr; !for_each_frame dv /t;~*k;q";
push @commands, 'cdb -i "'.$bindir.'" -y "'.$bindir.';srv*C:\\cdb_symbols*http://msdl.microsoft.com/download/symbols" -z "'.$datadir.'\mysqld.dmp" -lines -c "'.$cdb_cmd.'"';
} elsif (osSolaris()) {
## We don't want to run gdb on solaris since it may core-dump
## if the executable was generated with SunStudio.
## 1) First try to do it with dbx. dbx should work for both
## Sunstudio and GNU CC. This is a bit complicated since we
## need to first ask dbx which threads we have, and then dump
## the stack for each thread.
## The code below is "inspired by MTR
`echo | dbx - $core 2>&1` =~ m/Corefile specified executable: "([^"]+)"/;
if ($1) {
## We do apparently have a working dbx
# First, identify all threads
my @threads = `echo threads | dbx $binary $core 2>&1` =~ m/t@\d+/g;
## Then we make a command for each thread (It would be
## more efficient and get nicer output to have all
## commands in one dbx-batch, TODO!)
my $traces = join("; ",map{"where ".$_} @threads);
push @commands, "echo \"$traces\" | dbx $binary $core";
} elsif ($core) {
## We'll attempt pstack and c++filt which should allways
## work and show all threads. c++filt from SunStudio
## should even be able to demangle GNU CC-compiled
## executables.
push @commands, "pstack $core | c++filt";
} else {
say ("No core available");
}
} else {
## Assume all other systems are gdb-"friendly" ;-)
push @commands, "gdb --batch --se=$binary --core=$core --command=backtrace.gdb";
push @commands, "gdb --batch --se=$binary --core=$core --command=backtrace-all.gdb";
}
my @debugs;
foreach my $command (@commands) {
my $output = `$command`;
say("$output");
push @debugs, [$command, $output];
}
my $incident = GenTest::Incident->new(
result => 'fail',
corefile => $core,
debugs => \@debugs
);
return STATUS_OK, $incident;
}
sub type {
return REPORTER_TYPE_CRASH | REPORTER_TYPE_DEADLOCK;
}
1;
|