summaryrefslogtreecommitdiffstats
path: root/src/Backtrace/parser.y
blob: 42ac2206d0f648b5c259d24422b75acd8eef1bf1 (plain)
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
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
%{ /* -*- 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);
}

int yylex();

%}
     
/* 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
%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
               identifier_braces
               identifier_braces_inside
               identifier_template
               identifier_template_inside
%type <c>      nondigit 
               digit 
               hexadecimal_digit 
               file_name_char 
               identifier_char 
               identifier_char_no_templates 
               identifier_first_char
               identifier_braces_inside_char
               identifier_template_inside_char
               variables_char
               variables_char_no_framestart
               ws
               ws_nonl
               '(' ')' '+' '-' '/' '.' '_' '~' '[' ']' '\r' '?' '{' '}'
               '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 */ %dprec 1 
             { $$ = g_backtrace = backtrace_new(); }
          | threads wsa %dprec 2
             { 
               $$ = g_backtrace = backtrace_new(); 
               $$->threads = $1; 
             }
          |  frame_head wss threads wsa %dprec 4
             { 
               $$ = g_backtrace = backtrace_new(); 
               $$->threads = $3; 
               $$->crash = $1;
             }
          | frame wss threads wsa %dprec 3
             { 
               $$ = g_backtrace = backtrace_new(); 
               $$->threads = $3; 
               $$->crash = $1;
             }
;

threads   : thread
          | threads '\n' 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 frame { $$ = frame_add_sibling($1, $2); }
;

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; 
                              }
                          | hexadecimal_number wss keyword_in wss keyword_vtable wss keyword_for wss function_call
                              {
                                strbuf_free($1); 
                                $$ = $9; 
                              }
;

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 wss_nonl '\n' 
          | variables_line wss_nonl END  
          | variables variables_line '\n' 
          | variables variables_line END  
          | variables variables_line wss_nonl '\n' 
          | variables variables_line wss_nonl END  
          | variables wss_nonl variables_line '\n'
          | variables wss_nonl variables_line END  
          | variables wss_nonl variables_line wss_nonl '\n' 
          | variables wss_nonl variables_line wss_nonl END  
;

variables_line : variables_char_no_framestart
               | variables_line variables_char
               | variables_line wss_nonl variables_char
;

variables_char : '#' | variables_char_no_framestart
;

/* Manually synchronized with function_args_char_base, except the first line. */
variables_char_no_framestart : digit | nondigit | '"' | '(' | ')' | '\\'
                             | '+' | '-' | '<' | '>' | '/' | '.' 
                             | '[' | ']' | '?' | '\'' | '`' | ',' 
                             | '=' | '{' | '}' | '^' | '&' | '$'
                             | ':' | ';' | '!' | '@' | '*' 
                             | '%' | '|' | '~'
;

function_call : function_name wss function_args %dprec 3
              | return_type wss_nonl function_name wss function_args %dprec 2
                  { $$ = $3; }
              | function_name wss_nonl identifier_template wss function_args %dprec 1
	      { $$ = $1; strbuf_free($3); }
;

return_type : identifier { strbuf_free($1); }
;

function_name : identifier
              | '?' '?' 
                { 
                  $$ = strbuf_new(); 
                  strbuf_append_str($$, "??"); 
                }
;

function_args : '(' wsa ')'
              | '(' wsa function_args_sequence wsa ')'
;

function_args_sequence : function_args_char
                       | function_args_sequence wsa '(' wsa ')'
                       | function_args_sequence wsa '(' wsa function_args_string wsa ')'
                       | function_args_sequence wsa '(' wsa function_args_sequence wsa ')'
                       | function_args_sequence wsa function_args_char
                       | function_args_sequence wsa function_args_string
;

function_args_string : '"' wsa function_args_string_sequence wsa '"'
                     | '"' wsa '"'
;

/* Manually synchronized with variables_char_no_framestart,
 * except the first line. 
 */
function_args_char_base : digit | nondigit | '#'
                   | '+' | '-' | '<' | '>' | '/' | '.' 
                   | '[' | ']' | '?' | '\'' | '`' | ',' 
                   | '=' | '{' | '}' | '^' | '&' | '$'
                   | ':' | ';' | '!' | '@' | '*' 
                   | '%' | '|' | '~'
;
function_args_escaped_char : '\\' function_args_char_base
                           | '\\' '\\'
                           | '\\' '"'
;
function_args_char : function_args_char_base
                   | function_args_escaped_char
;


function_args_string_sequence : function_args_string_char
                    | function_args_string_sequence function_args_string_char
                    | function_args_string_sequence wss_nonl 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 | '-' | '+' | '/' | '.'
;

 /* Function name, sometimes mangled.  
  * Example: something@GLIB_2_2
  * CClass::operator=
  */
identifier : identifier_first_char %dprec 1
              {
		$$ = strbuf_new(); 
		strbuf_append_char($$, $1); 
	      }
           | identifier_braces %dprec 1 /* e.g. (anonymous namespace)::WorkerThread */
           | identifier identifier_char %dprec 1
	      { $$ = strbuf_append_char($1, $2); }
           | identifier identifier_braces %dprec 1
              { 
		$$ = strbuf_append_str($1, $2->buf); 
		strbuf_free($2);
	      }
           | identifier identifier_template %dprec 2
              { 
		$$ = strbuf_append_str($1, $2->buf); 
		strbuf_free($2);
	      }
;

identifier_first_char: nondigit 
                     | '~' /* destructor */
                     | '*'
;

identifier_char_no_templates : digit | nondigit | '@' | '.' | ':' | '=' 
	                     | '!' | '*' | '+' | '-' | '[' | ']'
                             | '~' | '&' | '/' | '%' | '^'
                             | '|' | ','
;

/* Most of the special characters are required to support C++ 
 * operator overloading.
 */
identifier_char : identifier_char_no_templates | '<'| '>'
;

identifier_braces : '(' ')'
                      {
			$$ = strbuf_new();
			strbuf_append_char($$, $1);
			strbuf_append_char($$, $2);
		      }
                  | '(' identifier_braces_inside ')' 
                      {
			$$ = strbuf_new();
			strbuf_append_char($$, $1);
			strbuf_append_str($$, $2->buf);
			strbuf_free($2);
			strbuf_append_char($$, $3);
                      }
;

identifier_braces_inside : identifier_braces_inside_char %dprec 1
                            {
	                      $$ = strbuf_new(); 
		              strbuf_append_char($$, $1); 
	                    }                         
                         | identifier_braces_inside identifier_braces_inside_char %dprec 1
			    { $$ = strbuf_append_char($1, $2); }
                         | identifier_braces_inside '(' identifier_braces_inside ')' %dprec 1
			    { 
			      $$ = strbuf_append_char($1, $2); 
			      $$ = strbuf_append_str($1, $3->buf); 
			      strbuf_free($3);
			      $$ = strbuf_append_char($1, $4); 
			    }
                         | identifier_braces_inside '(' ')' %dprec 1
			    { 
			      $$ = strbuf_append_char($1, $2); 
			      $$ = strbuf_append_char($1, $3); 
			    }
                         | identifier_braces_inside identifier_template %dprec 2
			    {
			      $$ = strbuf_append_str($1, $2->buf); 
			      strbuf_free($2);
			    }	
;

identifier_braces_inside_char : identifier_char | ws_nonl
;

identifier_template : '<' identifier_template_inside '>'
                      {
			$$ = strbuf_new();
			strbuf_append_char($$, $1);
			strbuf_append_str($$, $2->buf);
			strbuf_free($2);
			strbuf_append_char($$, $3);
		      }
;

identifier_template_inside : identifier_template_inside_char
                              {
	                        $$ = strbuf_new(); 
		                strbuf_append_char($$, $1); 
	                      }           
                           | identifier_template_inside identifier_template_inside_char
			      { $$ = strbuf_append_char($1, $2); }
                           | identifier_template_inside '<' identifier_template_inside '>'
			      { 
				$$ = strbuf_append_char($1, $2); 
				$$ = strbuf_append_str($1, $3->buf); 
				strbuf_free($3);
				$$ = strbuf_append_char($1, $4); 
			      }
                           | identifier_template_inside identifier_braces
			      {
				$$ = strbuf_append_str($1, $2->buf); 
				strbuf_free($2);
			      }			
;

identifier_template_inside_char : identifier_char_no_templates | ws_nonl
;

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 : ws_nonl | '\n' | '\r'
;

 /* No newline.*/
ws_nonl : '\t' | ' '
;

 /* whitespace sequence without a newline */
wss_nonl : ws_nonl
         | wss_nonl ws_nonl
;

 /* whitespace sequence */
wss : ws
    | wss ws
;
 
 /* whitespace sequence allowed */
wsa : 
    | wss
;

keyword_in : 'i' 'n'
;

keyword_at : 'a' 't'
;

keyword_for : 'f' 'o' 'r'
;

keyword_vtable : 'v' 't' 'a' 'b' 'l' 'e'
;

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 char *yyin;

int yylex()
{
  char c = *yyin;
  if (c == '\0')
    return END;
  ++yyin;

  /* 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(char *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;
}