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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
|
#!/usr/bin/env python3
#
# This file is open source software, licensed to you under the terms
# of the Apache License, Version 2.0 (the "License"). See the NOTICE file
# distributed with this work for additional information regarding copyright
# ownership. You may not use this file except in compliance with the License.
#
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# Copyright (C) 2017 ScyllaDB
import argparse
import collections
import re
import sys
import subprocess
from enum import Enum
from addr2line import BacktraceResolver
class StdinBacktraceIterator(object):
"""
Read stdin char-by-char and stop when when user pressed Ctrl+D or the
Enter twice. Altough reading char-by-char is slow this won't be a
problem here as backtraces shouldn't be huge.
"""
def __iter__(self):
linefeeds = 0
lines = []
line = []
while True:
char = sys.stdin.read(1)
if char == '\n':
linefeeds += 1
if len(line) > 0:
lines.append(''.join(line))
line = []
else:
line.append(char)
linefeeds = 0
if char == '' or linefeeds > 1:
break
return iter(lines)
description='Massage and pass addresses to the real addr2line for symbol lookup.'
epilog='''
There are three operational modes:
1) If -f is specified input will be read from FILE
2) If -f is omitted and there are ADDRESS args they will be read as input
3) If -f is omitted and there are no ADDRESS args input will be read from stdin
'''
cmdline_parser = argparse.ArgumentParser(
description=description,
epilog=epilog,
formatter_class=argparse.RawDescriptionHelpFormatter,
)
cmdline_parser.add_argument(
'-e',
'--executable',
type=str,
required=True,
metavar='EXECUTABLE',
dest='executable',
help='The executable where the addresses originate from')
cmdline_parser.add_argument(
'-f',
'--file',
type=str,
required=False,
metavar='FILE',
dest='file',
help='The file containing the addresses')
cmdline_parser.add_argument(
'-b',
'--before',
type=int,
metavar='BEFORE',
default=1,
help='Non-backtrace lines to print before resolved backtraces for context.'
' Set to 0 to print only resolved backtraces.'
' Set to -1 to print all non-backtrace lines. Default is 1.')
cmdline_parser.add_argument(
'-m',
'--match',
type=str,
metavar='MATCH',
help='Only resolve backtraces whose non-backtrace lines match the regular-expression.'
' The amount of non-backtrace lines considered can be set with --before.'
' By default no matching is performed.')
cmdline_parser.add_argument(
'-a',
'--addr2line',
type=str,
metavar='CMD_PATH',
default='addr2line',
help='The path or name of the addr2line command, which should behave as and '
'accept the same options as binutils addr2line or llvm-addr2line.')
cmdline_parser.add_argument(
'-v',
'--verbose',
action='store_true',
default=False,
help='Make resolved backtraces verbose, prepend to each line the module'
' it originates from, as well as the address being resolved')
cmdline_parser.add_argument(
'-t',
'--test',
action='store_true',
default=False,
help='Self-test')
cmdline_parser.add_argument(
'addresses',
type=str,
metavar='ADDRESS',
nargs='*',
help='Addresses to parse')
args = cmdline_parser.parse_args()
if args.test:
data = [
('---', {'type': BacktraceResolver.BacktraceParser.Type.SEPARATOR}),
('0x12f34', {'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': None, 'addresses': [{'path': None, 'addr': '0x12f34'}]}),
('0xa1234 0xb4567', {'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': None, 'addresses': [{'path': None, 'addr': '0xa1234'},{'path': None, 'addr': '0xb4567'}]}),
(' 0xa1234 /my/path+0xb4567', {'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': None, 'addresses': [{'path': None, 'addr': '0xa1234'},{'path': '/my/path', 'addr': '0xb4567'}]}),
('/my/path+0x12f34', {'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': None, 'addresses': [{'path': '/my/path', 'addr': '0x12f34'}]}),
(' /my/path+0x12f34', {'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': None, 'addresses': [{'path': '/my/path', 'addr': '0x12f34'}]}),
('Some prefix 0x12f34', {'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': None, 'addresses': [{'path': None, 'addr': '0x12f34'}]}),
('Some prefix /my/path+0x12f34', {'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': None, 'addresses': [{'path': '/my/path', 'addr': '0x12f34'}]}),
('Reactor stalled on shard 1. Backtrace: 0x12f34',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': 'Reactor stalled on shard 1. Backtrace:',
'addresses': [{'path': None, 'addr': '0x12f34'}]}),
('Reactor stalled on shard 1. Backtrace: 0xa1234 0xb5678',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': 'Reactor stalled on shard 1. Backtrace:',
'addresses': [{'path': None, 'addr': '0xa1234'}, {'path': None, 'addr': '0xb5678'}]}),
('Reactor stalled on shard 1. Backtrace: /my/path+0xabcd',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': 'Reactor stalled on shard 1. Backtrace:',
'addresses': [{'path': '/my/path', 'addr': '0xabcd'}]}),
('Expected partition_end(), but got end of stream, at 0xa1234 0xb5678 /my/path+0xabcd',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': 'Expected partition_end(), but got end of stream, at',
'addresses': [{'path': None, 'addr': '0xa1234'}, {'path': None, 'addr': '0xb5678'}, {'path': '/my/path', 'addr': '0xabcd'}]}),
('==16118==ERROR: AddressSanitizer: heap-use-after-free on address 0x60700019c710 at pc 0x000014d24643 bp 0x7ffc51f72220 sp 0x7ffc51f72218', None),
('READ of size 8 at 0x60700019c710 thread T0', None),
('#0 0x14d24642 (/jenkins/workspace/scylla-enterprise/dtest-debug/scylla/.ccm/scylla-repository/1a5173bd45d01697d98ba2a7645f5d86afb2d0be/scylla/libexec/scylla+0x14d24642)',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': None,
'addresses': [{'path': '/jenkins/workspace/scylla-enterprise/dtest-debug/scylla/.ccm/scylla-repository/1a5173bd45d01697d98ba2a7645f5d86afb2d0be/scylla/libexec/scylla', 'addr': '0x14d24642'}]}),
(' #1 0xd8d910f (/home/myhome/.dtest/dtest-84j9064d/test/node1/bin/scylla+0xd8d910f) (BuildId: 05a1d3d58d2b07e526decdad717e71a4590be2e0)',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': None,
'addresses': [{'path': '/home/myhome/.dtest/dtest-84j9064d/test/node1/bin/scylla', 'addr': '0xd8d910f'}]}),
('Apr 28 11:42:58 ip-172-31-2-154.ec2.internal scylla[10612]: Reactor stalled for 260 ms on shard 20.', None),
('Apr 28 11:42:58 ip-172-31-2-154.ec2.internal scylla[10612]: Backtrace:', None),
('Apr 28 11:42:58 ip-172-31-2-154.ec2.internal scylla[10612]: 0x0000000003163dc2',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': 'Apr 28 11:42:58 ip-172-31-2-154.ec2.internal scylla[10612]:',
'addresses': [{'path': None, 'addr': '0x0000000003163dc2'}]}),
('seastar::internal::backtraced<std::runtime_error> (throw_with_backtrace_exception_logging Backtrace: 0x42bc95 /lib64/libc.so.6+0x281e1 0x412cfd)',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': 'seastar::internal::backtraced<std::runtime_error> (throw_with_backtrace_exception_logging Backtrace:',
'addresses': [{'path': None, 'addr': '0x42bc95'}, {'path': '/lib64/libc.so.6', 'addr': '0x281e1'}, {'path': None, 'addr': '0x412cfd'}]}),
('seastar::nested_exception: seastar::internal::backtraced<std::runtime_error> (inner Backtrace: 0x42bc95 /lib64/libc.so.6+0x281e1 0x412cfd) (while cleaning up after unknown_obj)',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': 'seastar::nested_exception: seastar::internal::backtraced<std::runtime_error> (inner Backtrace:',
'addresses': [{'path': None, 'addr': '0x42bc95'}, {'path': '/lib64/libc.so.6', 'addr': '0x281e1'}, {'path': None, 'addr': '0x412cfd'}]}),
('seastar::nested_exception: seastar::internal::backtraced<std::runtime_error> (inner Backtrace: 0x42bc95 /lib64/libc.so.6+0x281e1 0x412cfd) '
'(while cleaning up after seastar::internal::backtraced<std::runtime_error> (outer Backtrace: 0x1234 /lib64/libc.so.6+0x5678 0xabcd))',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS,
'prefix': 'seastar::nested_exception: seastar::internal::backtraced<std::runtime_error> (inner Backtrace: 0x42bc95 /lib64/libc.so.6+0x281e1 0x412cfd)'
' (while cleaning up after seastar::internal::backtraced<std::runtime_error> (outer Backtrace:',
'addresses': [{'path': None, 'addr': '0x1234'}, {'path': '/lib64/libc.so.6', 'addr': '0x5678'}, {'path': None, 'addr': '0xabcd'}]}),
("2022-04-15T06:19:24+00:00 gemini-1tb-10h-master-db-node-c0c7fc43-4 ! INFO | "
"scylla: sstables/consumer.hh:610: future<> data_consumer::continuous_data_consumer"
"<sstables::index_consume_entry_context<sstables::index_consumer>>::fast_forward_to"
"(size_t, size_t) [StateProcessor = sstables::index_consume_entry_context"
"<sstables::index_consumer>]: Assertion `begin >= _stream_position.position' failed.", None),
('2022-04-15T06:19:24+00:00 gemini-1tb-10h-master-db-node-c0c7fc43-4 ! INFO | Backtrace:', None),
('2022-04-15T06:19:24+00:00 gemini-1tb-10h-master-db-node-c0c7fc43-4 ! INFO | 0x199d312',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS,
'prefix': None,
'addresses': [{'path': None, 'addr': '0x199d312'}]}),
('2022-04-15T06:19:24+00:00 gemini-1tb-10h-master-db-node-c0c7fc43-4 ! INFO | (throw_with_backtrace_exception_logging Backtrace: 0x42bc95 /lib64/libc.so.6+0x281e1 0x412cfd)',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS,
'prefix': '2022-04-15T06:19:24+00:00 gemini-1tb-10h-master-db-node-c0c7fc43-4 ! INFO | (throw_with_backtrace_exception_logging Backtrace:',
'addresses': [{'path': None, 'addr': '0x42bc95'}, {'path': '/lib64/libc.so.6', 'addr': '0x281e1'}, {'path': None, 'addr': '0x412cfd'}]}),
('[2022-04-19T23:09:28.311Z] Segmentation fault on shard 1.', None),
('[2022-04-19T23:09:28.311Z] Backtrace:', None),
('[2022-04-19T23:09:28.311Z] 0x461bbb8',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': None, 'addresses': [{'path': None, 'addr': '0x461bbb8'}]}),
('[2022-04-19T23:09:28.311Z] /lib64/libpthread.so.0+0x92a4',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': None, 'addresses': [{'path': '/lib64/libpthread.so.0', 'addr': '0x92a4'}]}),
('#0 0x19c01681 (/path/to/scylla+0xdeadbeef)',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': None, 'addresses': [{'path': '/path/to/scylla', 'addr': '0x19c01681'}]}),
('#1 0x00007fd2dab4f950 abort (libc.so.6 + 0x26950)',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': None, 'addresses': [{'path': 'libc.so.6', 'addr': '0x00007fd2dab4f950'}]}),
('#2 0x00000000015c4cd3 n/a (/path/to/scylla + 0x15c4cd3)',
{'type': BacktraceResolver.BacktraceParser.Type.ADDRESS, 'prefix': None, 'addresses': [{'path': '/path/to/scylla', 'addr': '0x00000000015c4cd3'}]}),
('kernel callstack: ', None),
('kernel callstack: 0xffffffffffffff80',
{
'type': BacktraceResolver.BacktraceParser.Type.ADDRESS,
'prefix': 'kernel callstack: ',
'addresses': [{'path': '<kernel>', 'addr': '0xffffffffffffff80'}]
}
),
('kernel callstack: 0xffffffffffffff80 0xffffffffaf15ccca',
{
'type': BacktraceResolver.BacktraceParser.Type.ADDRESS,
'prefix': 'kernel callstack: ',
'addresses': [{'path': '<kernel>', 'addr': '0xffffffffffffff80'}, {'path': '<kernel>', 'addr': '0xffffffffaf15ccca'}]
}
)
]
parser = BacktraceResolver.BacktraceParser()
for line, expected in data:
res = parser(line.strip() + '\n')
assert res == expected, f"{line}:\nExpected {expected}\nBut got {res}"
if args.verbose:
print(f'All {len(data)} tests passed successfully.')
exit(0)
if args.addresses and args.file:
print("Cannot use both -f and ADDRESS")
cmdline_parser.print_help()
if args.file:
lines = open(args.file, 'r')
elif args.addresses:
lines = args.addresses
else:
if sys.stdin.isatty():
lines = StdinBacktraceIterator()
else:
lines = sys.stdin
with BacktraceResolver(executable=args.executable, before_lines=args.before, context_re=args.match,
verbose=args.verbose, cmd_path=args.addr2line) as resolve:
p = re.compile(r'\W+')
for line in lines:
resolve(line.strip() + '\n')
|