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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
|
%{ /* -*- mode: yacc -*-
/*
Copyright (C) 2009 RedHat inc.
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; either version 2 of the License, or
(at your option) any later version.
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 Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <math.h>
#include <stdio.h>
#include <stdlib.h>
#include "backtrace.h"
#include "strbuf.h"
struct backtrace *g_backtrace;
#define YYDEBUG 1
#define YYMAXDEPTH 10000000
void yyerror(char const *s)
{
fprintf (stderr, "\nParser error: %s\n", s);
}
%}
/* This defines the type of yylval */
%union {
struct backtrace *backtrace;
struct thread *thread;
struct frame *frame;
char *str;
int num;
char c;
struct strbuf *strbuf;
}
/* Bison declarations. */
%token END 0 "end of file"
%type <backtrace> backtrace ignoredpart_backtrace
%type <thread> threads thread
%type <frame> frames frame frame_head frame_head_1 frame_head_2 frame_head_3 frame_head_4 frame_head_5
%type <strbuf> identifier hexadecimal_digit_sequence hexadecimal_number file_name file_location function_call function_name digit_sequence frame_address_in_function
%type <c> nondigit digit hexadecimal_digit file_name_char
'(' ')' '+' '-' '/' '.' '_' '~'
'a' 'b' 'c' 'd' 'e' 'f' 'g' 'h' 'i' 'j' 'k' 'l'
'm' 'n' 'o' 'p' 'q' 'r' 's' 't' 'u' 'v' 'w' 'x' 'y' 'z'
'A' 'B' 'C' 'D' 'E' 'F' 'G' 'H' 'I' 'J' 'K' 'L' 'M' 'N'
'O' 'P' 'Q' 'R' 'S' 'T' 'U' 'V' 'W' 'X' 'Y' 'Z'
'0' '1' '2' '3' '4' '5' '6' '7' '8' '9'
'\'' '`' ',' '#' '@' '<' '>' '=' ':' '"' ';' ' '
'\n' '\t' '\\' '!' '*' '%' '|' '^' '&' '$'
%type <num> frame_start
%destructor { thread_free($$); } <thread>
%destructor { frame_free($$); } <frame>
%destructor { strbuf_free($$); } <strbuf>
%start backtrace
%glr-parser
%error-verbose
%locations
%% /* The grammar follows. */
backtrace : /* empty */ { $$ = g_backtrace = backtrace_new(); }
| ignoredpart_backtrace wsa { $$ = g_backtrace = $1; }
;
/**/
ignoredpart_backtrace : threads %dprec 2
{
$$ = backtrace_new();
$$->threads = $1;
}
| frame_head wss threads %dprec 4
{
$$ = backtrace_new();
$$->threads = $3;
$$->crash = $1;
}
| frame wss threads %dprec 3
{
$$ = backtrace_new();
$$->threads = $3;
$$->crash = $1;
}
| anychar ignoredpart_backtrace %dprec 1 { $$ = $2; }
;
anychar : ws | digit | nondigit | '(' | ')' | '+' | '-' | '#' | '=' | ':' | ';'
| '/' | '.' | '[' | ']' | '?' | '\'' | '`' | ',' | '<' | '>' | '"'
;
threads : thread { $$ = $1; }
| threads wsa thread { $$ = thread_add_sibling($1, $3); }
;
thread : keyword_thread wss digit_sequence wsa '(' keyword_thread wss digit_sequence wsa ')' ':' wsa frames
{
$$ = thread_new();
$$->frames = $13;
if (sscanf($3->buf, "%d", &$$->number) != 1)
{
printf("Error while parsing thread number '%s'", $3->buf);
exit(5);
}
strbuf_free($3);
strbuf_free($8);
}
;
frames : frame { $$ = $1; }
| frames wsa frame { $$ = frame_add_sibling($1, $3); }
;
frame : frame_head_1 wss variables %dprec 3
| frame_head_2 wss variables %dprec 4
| frame_head_3 wss variables %dprec 5
| frame_head_4 wss variables %dprec 2
| frame_head_5 wss variables %dprec 1
;
frame_head : frame_head_1 %dprec 3
| frame_head_2 %dprec 4
| frame_head_3 %dprec 5
| frame_head_4 %dprec 2
| frame_head_5 %dprec 1
;
frame_head_1 : frame_start wss function_call wsa keyword_at wss file_location
{
$$ = frame_new();
$$->number = $1;
$$->function = $3->buf;
strbuf_free_nobuf($3);
$$->sourcefile = $7->buf;
strbuf_free_nobuf($7);
}
;
frame_head_2 : frame_start wss frame_address_in_function wss keyword_at wss file_location
{
$$ = frame_new();
$$->number = $1;
$$->function = $3->buf;
strbuf_free_nobuf($3);
$$->sourcefile = $7->buf;
strbuf_free_nobuf($7);
}
;
frame_head_3 : frame_start wss frame_address_in_function wss keyword_from wss file_location
{
$$ = frame_new();
$$->number = $1;
$$->function = $3->buf;
strbuf_free_nobuf($3);
$$->sourcefile = $7->buf;
strbuf_free_nobuf($7);
}
;
frame_head_4 : frame_start wss frame_address_in_function
{
$$ = frame_new();
$$->number = $1;
$$->function = $3->buf;
strbuf_free_nobuf($3);
}
;
frame_head_5 : frame_start wss keyword_sighandler
{
$$ = frame_new();
$$->number = $1;
$$->signal_handler_called = true;
}
frame_start: '#' digit_sequence
{
if (sscanf($2->buf, "%d", &$$) != 1)
{
printf("Error while parsing frame number '%s'.\n", $2->buf);
exit(5);
}
strbuf_free($2);
}
;
frame_address_in_function : hexadecimal_number wss keyword_in wss function_call
{
strbuf_free($1);
$$ = $5;
}
;
file_location : file_name ':' digit_sequence
{
$$ = $1;
strbuf_free($3); /* line number not needed for now */
}
| file_name
;
variables : variables_line '\n'
| variables_line END
| variables_line variables_wss '\n'
| variables_line variables_wss END
| variables variables_line '\n'
| variables variables_line END
| variables variables_wss variables_line '\n'
| variables variables_wss variables_line END
| variables variables_wss variables_line variables_wss '\n'
| variables variables_wss variables_line variables_wss END
;
variables_line : variables_char_no_framestart
| variables_line variables_char
| variables_line variables_wss variables_char
;
variables_ws : '\t' | ' '
;
variables_wss : variables_ws
| variables_wss variables_ws
;
variables_char : '#' | variables_char_no_framestart
;
variables_char_no_framestart : digit | nondigit | '(' | ')' | '+' | '-' | '<'
| '>' | '"' | '/' | '.' | '[' | ']' | '?' | '\''
| '`' | ',' | '=' | '{' | '}' | '^' | '&' | '$'
| ':' | ';' | '\\' | '!' | '@' | '*' | '%' | '|'
| '~'
function_call : function_name wsa function_args
;
function_name : identifier
| '?' '?'
{
$$ = strbuf_new();
strbuf_append_str($$, "??");
}
;
function_args : '(' wsa ')'
| '(' wsa function_args_sequence wsa ')'
;
/* TODO: function arguments can contain strings in "". As the string can
contain any ascii-visible character (nonvisible chars are escaped),
this must be somehow handled, especially characters ( and ). */
function_args_sequence : function_args_char
| function_args_sequence wsa function_args_char
| function_args_sequence wsa function_args_string
;
function_args_string : '"' function_args_string_sequence '"'
;
function_args_char : digit | nondigit | '{' | '}' | '<' | '>' | ':' | '~'
| '=' | '-' | '+' | '@' | ',' | '.' | '[' | ']' | '/' | '%'
| '\\' | '&'
;
function_args_string_sequence : function_args_string_char
| function_args_string_sequence function_args_string_char
| function_args_string_sequence '\t' function_args_string_char
| function_args_string_sequence ' ' function_args_string_char
;
function_args_string_char : function_args_char | '(' | ')'
;
file_name : file_name_char { $$ = strbuf_new(); strbuf_append_char($$, $1); }
| file_name file_name_char { $$ = strbuf_append_char($1, $2); }
;
file_name_char : digit | nondigit | '-' | '+' | '/' | '.'
;
/* Mangled function name. */
identifier : nondigit { $$ = strbuf_new(); strbuf_append_char($$, $1); }
| identifier nondigit { $$ = strbuf_append_char($1, $2); }
| identifier digit { $$ = strbuf_append_char($1, $2); }
| identifier '@' { $$ = strbuf_append_char($1, $2); }
| identifier '.' { $$ = strbuf_append_char($1, $2); }
| identifier ':' { $$ = strbuf_append_char($1, $2); }
;
digit_sequence : digit { $$ = strbuf_new(); strbuf_append_char($$, $1); }
| digit_sequence digit { $$ = strbuf_append_char($1, $2); }
;
hexadecimal_number : '0' 'x' hexadecimal_digit_sequence
{
$$ = $3;
strbuf_prepend_str($$, "0x");
}
| '0' 'X' hexadecimal_digit_sequence
{
$$ = $3;
strbuf_prepend_str($$, "0X");
}
;
hexadecimal_digit_sequence : hexadecimal_digit
{
$$ = strbuf_new();
strbuf_append_char($$, $1);
}
| hexadecimal_digit_sequence hexadecimal_digit
{ $$ = strbuf_append_char($1, $2); }
;
hexadecimal_digit : digit
| 'a' | 'b' | 'c' | 'd' | 'e' | 'f'
| 'A' | 'B' | 'C' | 'D' | 'E' | 'F'
;
digit : '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9'
;
nondigit : 'a' | 'b' | 'c' | 'd' | 'e' | 'f' | 'g' | 'h' | 'i' | 'j' | 'k'
| 'l' | 'm' | 'n' | 'o' | 'p' | 'q' | 'r' | 's' | 't' | 'u' | 'v' | 'w'
| 'x' | 'y' | 'z'
| 'A' | 'B' | 'C' | 'D' | 'E' | 'F' | 'G' | 'H' | 'I' | 'J' | 'K'
| 'L' | 'M' | 'N' | 'O' | 'P' | 'Q' | 'R' | 'S' | 'T' | 'U' | 'V' | 'W'
| 'X' | 'Y' | 'Z'
| '_'
;
/* whitespace */
ws : '\t' | ' ' | '\n' | '\r'
;
/* whitespace sequence */
wss : ws
| wss ws
;
/* whitespace sequence allowed */
wsa :
| wss
;
keyword_in : 'i' 'n'
;
keyword_at : 'a' 't'
;
keyword_from : 'f' 'r' 'o' 'm'
;
keyword_thread: 'T' 'h' 'r' 'e' 'a' 'd'
;
keyword_sighandler: '<' 's' 'i' 'g' 'n' 'a' 'l' ' ' 'h' 'a' 'n' 'd' 'l' 'e' 'r' ' ' 'c' 'a' 'l' 'l' 'e' 'd' '>'
;
%%
static bool scanner_echo = false;
static FILE *yyin;
int yylex()
{
int c = fgetc(yyin);
if (c == EOF)
return 0;
/* Debug output. */
if (scanner_echo)
putchar(c);
yylval.c = c;
/* Return a single char. */
return c;
}
/* This is the function that is actually called from outside.
* @returns
* Backtrace structure. Caller is responsible for calling
* backtrace_free() on this.
* Returns NULL when parsing failed.
*/
struct backtrace *do_parse(FILE *input, bool debug_parser, bool debug_scanner)
{
/* Prepare for running parser. */
g_backtrace = 0;
yyin = input;
#if YYDEBUG == 1
if (debug_parser)
yydebug = 1;
#endif
scanner_echo = debug_scanner;
/* Parse. */
int failure = yyparse();
/* Separate debugging output. */
if (scanner_echo)
putchar('\n');
if (failure)
{
if (g_backtrace)
{
backtrace_free(g_backtrace);
g_backtrace = NULL;
}
fprintf(stderr, "Error while parsing backtrace.\n");
}
return g_backtrace;
}
|