summaryrefslogtreecommitdiffstats
path: root/tapsets.cxx
blob: 0d51d8f0de113977e71e7bf67f3c6a469451cbae (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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
// tapset resolution
// Copyright (C) 2005 Red Hat Inc.
//
// This file is part of systemtap, and is free software.  You can
// redistribute it and/or modify it under the terms of the GNU General
// Public License (GPL); either version 2, or (at your option) any
// later version.

#include "config.h"
#include "staptree.h"
#include "elaborate.h"
#include "tapsets.h"
#include "translate.h"

#include <deque>
#include <iostream>
#include <map>
#include <set>
#include <sstream>
#include <stdexcept>
#include <vector>

#ifdef HAVE_ELFUTILS_LIBDWFL_H
extern "C" {
#include <elfutils/libdwfl.h>
}
#endif

#include <fnmatch.h>

using namespace std;

// ------------------------------------------------------------------------
// begin/end probes are run right during registration / deregistration
// ------------------------------------------------------------------------

struct be_derived_probe: public derived_probe
{
  bool begin;
  be_derived_probe (probe* p, bool b): derived_probe (p), begin (b) {}
  be_derived_probe (probe* p, probe_point* l, bool b):
    derived_probe (p, l), begin (b) {}

  void emit_registrations (translator_output* o, unsigned i);
  void emit_deregistrations (translator_output* o, unsigned i);
  void emit_probe_entries (translator_output* o, unsigned i);
};

struct
be_builder 
  : public derived_probe_builder
{
  bool begin;
  be_builder(bool b) : begin(b) {}
  virtual void build(systemtap_session & sess,
		     probe * base, 
		     probe_point * location,
		     std::map<std::string, literal *> const & parameters,
		     vector<probe *> & results_to_expand_further,
		     vector<derived_probe *> & finished_results)
  {
    finished_results.push_back(new be_derived_probe(base, location, begin));
  }
  virtual ~be_builder() {}
};


void 
be_derived_probe::emit_registrations (translator_output* o, unsigned j)
{
  if (begin)
    for (unsigned i=0; i<locations.size(); i++)
      o->newline() << "enter_" << j << "_" << i << " ();";
}


void 
be_derived_probe::emit_deregistrations (translator_output* o, unsigned j)
{
  if (!begin)
    for (unsigned i=0; i<locations.size(); i++)
      o->newline() << "enter_" << j << "_" << i << " ();";
}


void
be_derived_probe::emit_probe_entries (translator_output* o, unsigned j)
{
  for (unsigned i=0; i<locations.size(); i++)
    {
      probe_point *l = locations[i];
      o->newline() << "/* location " << i << ": " << *l << " */";
      o->newline() << "static void enter_" << j << "_" << i << " (void);";
      o->newline() << "void enter_" << j << "_" << i << " () {";

      // While begin/end probes are executed single-threaded, we 
      // still code defensively and use a per-cpu context.
      o->newline(1) << "struct context* c = & contexts [smp_processor_id()];";

      // A precondition for running a probe handler is that we're in STARTING
      // or STOPPING state (not ERROR), and that no one else is already using
      // this context.
      o->newline() << "if (atomic_read (&session_state) != ";
      if (begin) o->line() << "STAP_SESSION_STARTING)";
      else o->line() << "STAP_SESSION_STOPPING)";
      o->newline(1) << "return;";
      o->newline(-1) << "if (c->busy) {";
      o->newline(1) << "printk (KERN_ERR \"probe reentrancy\");";
      o->newline() << "atomic_set (& session_state, STAP_SESSION_ERROR);";
      o->newline() << "return;";
      o->newline(-1) << "}";
      o->newline();
      
      o->newline() << "c->busy ++;";
      o->newline() << "mb ();"; // for smp
      o->newline() << "c->errorcount = 0;";
      o->newline() << "c->actioncount = 0;";
      o->newline() << "c->nesting = 0;";

      // NB: locals are initialized by probe function itself
      o->newline() << "probe_" << j << " (c);";

      // see translate.cxx: visit_functioncall and elsewhere to see all the
      // possible context indications that a probe exited prematurely
      o->newline() << "if (c->errorcount || c->actioncount > MAXACTION";
      o->newline(1) << "|| c->nesting+2 >= MAXNESTING) {";
      o->newline() << "printk (KERN_ERR \"probe execution failure (e%d,n%d,a%d)\",";
      o->newline(1) << "c->errorcount, c->nesting, c->actioncount);";
      o->newline(-1) << "atomic_set (& session_state, STAP_SESSION_ERROR);";
      o->newline(-1) << "}";

      o->newline() << "c->busy --;";
      o->newline() << "mb ();";
      o->newline(-1) << "}" << endl;
    }
}


#ifdef HAVE_ELFUTILS_LIBDWFL_H
// ------------------------------------------------------------------------
//  Dwarf derived probes.
// ------------------------------------------------------------------------

// Helper for dealing with selected portions of libdwfl in a more readable
// fashion, and with specific cleanup / checking / logging options.

struct
dwflpp
{
  systemtap_session & sess;
  Dwfl * dwfl;

  // These are "current" values we focus on.
  Dwfl_Module * module;
  Dwarf * module_dwarf;
  Dwarf_Addr module_bias;
  Dwarf_Die * cu;
  Dwarf_Func * function;

  string module_name;
  string cu_name;
  string function_name;

  string const default_name(char const * in, 
			    char const * type)
  {
    if (in) 
      return in;
    if (sess.verbose)
      clog << "WARNING: no name found for " << type << endl;
    return string("default_anonymous_" ) + type;
  }

  void get_module_dwarf()
  {
    if (!module_dwarf)
      module_dwarf = dwfl_module_getdwarf(module, &module_bias);
  }

  void focus_on_module(Dwfl_Module * m)
  {
    assert(m);
    module = m;
    module_dwarf = NULL;
    module_name = default_name(dwfl_module_info(module, NULL, 
						NULL, NULL,
						NULL, NULL,
						NULL, NULL),
			       "module");
    if (sess.verbose)
      clog << "focused on module " << module_name << endl;
  }

  void focus_on_cu(Dwarf_Die * c)
  {
    assert(c);
    cu = c;
    cu_name = default_name(dwarf_diename(c), "cu");
    if (sess.verbose)
      clog << "focused on CU " << cu_name 
	   << ", in module " << module_name << endl;
  }

  void focus_on_function(Dwarf_Func * f)
  {
    assert(f);
    function = f;
    function_name = default_name(dwarf_func_name(function), 
				 "function");
    if (sess.verbose)
      clog << "focused on function " << function_name 
	   << ", in CU " << cu_name 
	   << ", module " << module_name << endl;
  }

  void focus_on_module_containing_global_address(Dwarf_Addr a)
  {
    assert(dwfl);
    if (sess.verbose)
      clog << "focusing on module containing global addr " << a << endl;
    focus_on_module(dwfl_addrmodule(dwfl, a));
  }

  void focus_on_cu_containing_module_address(Dwarf_Addr a)
  {
    assert(dwfl);
    assert(module);
    Dwarf_Addr bias;
    get_module_dwarf();
    if (sess.verbose)
      clog << "focusing on cu containing module addr " << a << endl;
    focus_on_cu(dwfl_module_addrdie(module, a, &bias));
    assert(bias == module_bias);
  }

  void focus_on_cu_containing_global_address(Dwarf_Addr a)
  {
    assert(dwfl);
    get_module_dwarf();
    if (sess.verbose)
      clog << "focusing on cu containing global addr " << a << endl;
    focus_on_module_containing_global_address(a);
    assert(a > module_bias);
    a = global_address_to_module(a);
    focus_on_cu_containing_module_address(a);
  }

  Dwarf_Addr module_address_to_global(Dwarf_Addr a)
  {
    assert(module);
    get_module_dwarf();
    if (sess.verbose)
      clog << "module addr " << a 
	   << " + bias " << module_bias 
	   << " -> global addr " << a + module_bias << endl;
    return a + module_bias;
  }

  Dwarf_Addr global_address_to_module(Dwarf_Addr a)
  {
    assert(module);
    get_module_dwarf();
    if (sess.verbose)
      clog << "global addr " << a 
	   << " - bias " << module_bias 
	   << " -> module addr " << a - module_bias << endl;
    return a - module_bias;
  }


  bool module_name_matches(string pattern)
  {
    assert(module);
    get_module_dwarf();
    bool t = (fnmatch(pattern.c_str(), module_name.c_str(), 0) == 0);
    if (sess.verbose)
      clog << "pattern '" << pattern << "' "
	   << (t ? "matches " : "does not match ") 
	   << "module '" << module_name << "'" << endl;
    return t;
  }

  bool function_name_matches(string pattern)
  {
    assert(function);
    bool t = (fnmatch(pattern.c_str(), function_name.c_str(), 0) == 0);
    if (sess.verbose)
      clog << "pattern '" << pattern << "' "
	   << (t ? "matches " : "does not match ") 
	   << "function '" << function_name << "'" << endl;
    return t;
  }

  bool cu_name_matches(string pattern)
  {
    assert(cu);
    bool t = (fnmatch(pattern.c_str(), cu_name.c_str(), 0) == 0);
    if (sess.verbose)
      clog << "pattern '" << pattern << "' "
	   << (t ? "matches " : "does not match ") 
	   << "CU '" << cu_name << "'" << endl;
    return t;
  }

  void dwflpp_assert(string desc, int rc)
  {
    if (rc != 0)
      throw semantic_error("dwfl failure (" + desc + "): " 
                           + dwfl_errmsg(rc));
  }

  dwflpp(systemtap_session & sess)
    :
    sess(sess),
    dwfl(NULL),
    module(NULL),
    module_dwarf(NULL),
    module_bias(0),
    cu(NULL),
    function(NULL)
  {}
  
  void setup(bool kernel)
  {
    static const Dwfl_Callbacks proc_callbacks =
      {
	dwfl_linux_proc_find_elf,
	dwfl_standard_find_debuginfo,
	NULL,
	NULL
      };
    
    static const Dwfl_Callbacks kernel_callbacks =
      {
	dwfl_linux_kernel_find_elf,
	dwfl_standard_find_debuginfo,
	dwfl_linux_kernel_module_section_address,
	NULL
      };

    if (kernel)
      {
	dwfl = dwfl_begin(&kernel_callbacks);
	if (!dwfl)
	  throw semantic_error("cannot open dwfl");
	dwfl_report_begin(dwfl);
	dwflpp_assert("report_kernel", dwfl_linux_kernel_report_kernel(dwfl));
	dwflpp_assert("report_modules", dwfl_linux_kernel_report_modules(dwfl));
      }
    else
      {
	dwfl = dwfl_begin(&proc_callbacks);
	dwfl_report_begin(dwfl);
	if (!dwfl)
	  throw semantic_error("cannot open dwfl");
	// XXX: Find pids or processes, do userspace stuff.
      }

    dwflpp_assert("report_end", dwfl_report_end(dwfl, NULL, NULL));
  }

  void iterate_over_modules(int (* callback)(Dwfl_Module *, void **,
					     const char *, Dwarf_Addr,
					     Dwarf *, Dwarf_Addr, void *),
			    void * data)
  {
    if (sess.verbose)
      clog << "iterating over modules" << endl;
    ptrdiff_t off = 0;
    do
      {
	off = dwfl_getdwarf(dwfl, callback, data, off);
      }
    while (off > 0);
    if (sess.verbose)
      clog << "finished iterating over modules" << endl;
    dwflpp_assert("getdwarf", off);
  }

  void iterate_over_cus (int (*callback)(Dwarf_Die * die, void * arg), 
			 void * data)
  {
    get_module_dwarf();

    if (!module_dwarf)
      {
	cerr << "WARNING: no dwarf info found for module " << module_name << endl;
	return;
      }

    if (sess.verbose)
      clog << "iterating over CUs in module " << module_name << endl;

    Dwarf *dw = module_dwarf;
    Dwarf_Off off = 0;
    size_t cuhl;
    Dwarf_Off noff;
    while (dwarf_nextcu(dw, off, &noff, &cuhl, NULL, NULL, NULL) == 0)
      {		  
	Dwarf_Die die_mem;
	Dwarf_Die *die;
	die = dwarf_offdie(dw, off + cuhl, &die_mem);
	if (callback(die, data) != DWARF_CB_OK)
	  break;
	off = noff;
      }
  }

  void iterate_over_functions(int (* callback)(Dwarf_Func * func, void * arg),
			      void * data)
  {
    assert(module);
    assert(cu);
    if (sess.verbose)
      clog << "iterating over functions in CU " << cu_name << endl;
    dwarf_getfuncs(cu, callback, data, 0);
  }

  bool function_entrypc(Dwarf_Addr * addr)
  {
    return (dwarf_func_entrypc(function, addr) == 0);
  }

  bool function_includes_global_addr(Dwarf_Addr addr)
  {
    assert(module_dwarf);
    assert(cu);
    assert(function);
    Dwarf_Addr lo, hi;
    if (dwarf_func_lowpc(function, &lo) != 0)
      {
	if (sess.verbose)
	  clog << "WARNING: cannot find low PC value for function " << function_name << endl;
	return false;
      }
    
    if (dwarf_func_highpc(function, &hi) != 0)
    {
      if (sess.verbose)
	clog << "WARNING: cannot find high PC value for function " << function_name << endl;
      return false;
    }
    
    bool t = lo <= addr && addr <= hi;
    if (sess.verbose)
      clog << "function " << function_name << " = [" << lo << "," << hi << "] "
	   << (t ? "contains " : "does not contain ") 
	   << " global addr " << addr << endl;
    return t;
  }

  bool function_includes_module_addr(Dwarf_Addr addr)
  {
    return function_includes_global_addr(module_address_to_global(addr));
  }

  Dwarf_Addr global_addr_of_line_in_cu(int line)
  {
    Dwarf_Lines * lines;
    size_t nlines;
    Dwarf_Addr addr;
    Dwarf_Line * linep;

    assert(module);
    assert(cu);
    dwflpp_assert("getsrclines", dwarf_getsrclines(cu, &lines, &nlines));
    linep = dwarf_onesrcline(lines, line);
    dwflpp_assert("lineaddr", dwarf_lineaddr(linep, &addr));
    if (sess.verbose)
      clog << "line " << line 
	   << " of cu " << cu_name 
	   << " has module address " << addr 
	   << " in " << module_name << endl;
    return module_address_to_global(addr);
  }


  ~dwflpp()
  {
    if (dwfl)
      dwfl_end(dwfl);
  }
};

static string TOK_PROCESS("process");
static string TOK_KERNEL("kernel");
static string TOK_MODULE("module");

static string TOK_FUNCTION("function");
static string TOK_RETURN("return");
static string TOK_CALLEES("callees");

static string TOK_STATEMENT("statement");
static string TOK_LABEL("label");
static string TOK_RELATIVE("relative");


enum 
function_spec_type
  { 
    function_alone,
    function_and_file,
    function_file_and_line 
  };

enum
dwarf_probe_type 
  { 
    probe_address,
    probe_function_return,
  };

struct dwarf_builder;
struct dwarf_derived_probe : public derived_probe
{
  dwarf_derived_probe (probe * p, 
		       probe_point * l, 
		       string const & module_name,
		       dwarf_probe_type type,
		       Dwarf_Addr addr);

  string module_name;
  dwarf_probe_type type;
  Dwarf_Addr addr;
  
  // Pattern registration helpers.
  static void register_relative_variants(match_node * root, 
					 dwarf_builder * dw);
  static void register_statement_variants(match_node * root, 
					  dwarf_builder * dw);
  static void register_callee_variants(match_node * root, 
				       dwarf_builder * dw);
  static void register_function_and_statement_variants(match_node * root, 
						       dwarf_builder * dw);
  static void register_patterns(match_node * root);
  
  virtual void emit_registrations (translator_output * o, unsigned i);
  virtual void emit_deregistrations (translator_output * o, unsigned i);
  virtual void emit_probe_entries (translator_output * o, unsigned i);
  virtual ~dwarf_derived_probe() {}
};

// Helper struct to thread through the dwfl callbacks.
struct 
dwarf_query
{
  dwarf_query(systemtap_session & sess,
	      probe * base_probe,
	      probe_point * base_loc,
	      dwflpp & dw,
	      map<string, literal *> const & params,
	      vector<derived_probe *> & results);

  systemtap_session & sess;

  // Parameter extractors.
  static bool has_null_param(map<string, literal *> const & params, 
			     string const & k);
  static bool get_string_param(map<string, literal *> const & params, 
			       string const & k, string & v);
  static bool get_number_param(map<string, literal *> const & params, 
			       string const & k, long & v);

  vector<derived_probe *> & results;
  void add_kernel_probe(dwarf_probe_type type, Dwarf_Addr addr);
  void add_module_probe(string const & module, 
			dwarf_probe_type type, Dwarf_Addr addr);

  bool has_kernel;
  bool has_process;
  bool has_module;
  string process_val; 
  string module_val; 
  string function_val; 

  bool has_function_str;
  bool has_statement_str;
  bool has_function_num;
  bool has_statement_num;
  string statement_str_val; 
  string function_str_val; 
  long statement_num_val; 
  long function_num_val; 

  bool has_callees;
  long callee_val; 

  bool has_return;

  bool has_label;
  string label_val;

  bool has_relative;
  long relative_val;

  function_spec_type parse_function_spec(string & spec);
  function_spec_type spec_type;
  string function;
  string file;
  int line;

  probe * base_probe;
  probe_point * base_loc;
  dwflpp & dw;
};

struct
dwarf_builder 
  : public derived_probe_builder
{
  dwarf_builder() {}
  virtual void build(systemtap_session & sess,
		     probe * base, 
		     probe_point * location,
		     std::map<std::string, literal *> const & parameters,
		     vector<probe *> & results_to_expand_further,
		     vector<derived_probe *> & finished_results);
  virtual ~dwarf_builder() {}
};

bool 
dwarf_query::has_null_param(map<string, literal *> const & params, 
			    string const & k)
{
  map<string, literal *>::const_iterator i = params.find(k);
  if (i != params.end() && i->second == NULL)
    return true;
  return false;
}

bool 
dwarf_query::get_string_param(map<string, literal *> const & params, 
			      string const & k, string & v)
{
  map<string, literal *>::const_iterator i = params.find(k);
  if (i == params.end())
    return false;
  literal_string * ls = dynamic_cast<literal_string *>(i->second);
  if (!ls)
    return false;
  v = ls->value;
  return true;
}

bool 
dwarf_query::get_number_param(map<string, literal *> const & params, 
			      string const & k, long & v)
{
  map<string, literal *>::const_iterator i = params.find(k);
  if (i == params.end())
    return false;
  if (i->second == NULL)
    return false;
  literal_number * ln = dynamic_cast<literal_number *>(i->second);
  if (!ln)
    return false;
  v = ln->value;
  return true;
}

void 
dwarf_query::add_kernel_probe(dwarf_probe_type type,
			      Dwarf_Addr addr)
{
  results.push_back(new dwarf_derived_probe(base_probe, base_loc,
					    "", type, addr));
}

void 
dwarf_query::add_module_probe(string const & module, 
			      dwarf_probe_type type,
			      Dwarf_Addr addr)
{
  results.push_back(new dwarf_derived_probe(base_probe, base_loc,
					    module, type, addr));
}


dwarf_query::dwarf_query(systemtap_session & sess,
			 probe * base_probe,
			 probe_point * base_loc,
			 dwflpp & dw,
			 map<string, literal *> const & params,
			 vector<derived_probe *> & results)
  : sess(sess),
    results(results),
    base_probe(base_probe), 
    base_loc(base_loc),
    dw(dw)
{

  // Reduce the query to more reasonable semantic values (booleans,
  // extracted strings, numbers, etc).

  has_kernel = has_null_param(params, TOK_KERNEL);
  has_module = get_string_param(params, TOK_MODULE, module_val);
  has_process = get_string_param(params, TOK_PROCESS, process_val);

  has_function_str = get_string_param(params, TOK_FUNCTION, function_str_val);
  has_function_num = get_number_param(params, TOK_FUNCTION, function_num_val);

  has_statement_str = get_string_param(params, TOK_STATEMENT, statement_str_val);
  has_statement_num = get_number_param(params, TOK_STATEMENT, statement_num_val);

  callee_val = 1;
  has_callees = (has_null_param(params, TOK_CALLEES) || 
		 get_number_param(params, TOK_CALLEES, callee_val));

  has_return = has_null_param(params, TOK_RETURN);

  has_label = get_string_param(params, TOK_LABEL, label_val);
  has_relative = get_number_param(params, TOK_RELATIVE, relative_val);
  
  if (has_function_str)
    spec_type = parse_function_spec(function_str_val);
  else if (has_statement_str)
    spec_type = parse_function_spec(statement_str_val);
}				  


template <typename OUT, typename IN> inline OUT 
lex_cast(IN const & in)
{
  stringstream ss;
  OUT out;
  if (!(ss << in && ss >> out))
    throw runtime_error("bad lexical cast");
  return out;
}

function_spec_type
dwarf_query::parse_function_spec(string & spec)
{
  string::const_iterator i = spec.begin(), e = spec.end();
  
  function.clear();
  file.clear();
  line = 0;

  while (i != e && *i != '@')
    {
      if (*i == ':')
	goto bad;
      function += *i++;
    }

  if (i == e)
    {
      if (sess.verbose)
	clog << "parsed '" << spec 
	     << "' -> func '" << function 
	     << "'" << endl;
      return function_alone;
    }

  if (i++ == e)
    goto bad;

  while (i != e && *i != ':')
    file += *i++;
  
  if (i == e)
    {
      if (sess.verbose)
	clog << "parsed '" << spec 
	     << "' -> func '"<< function 
	     << "', file '" << file 
	     << "'" << endl;
      return function_and_file;
    }

  if (i++ == e)
    goto bad;

  try
    {
      line = lex_cast<int>(string(i, e));
      if (sess.verbose)
	clog << "parsed '" << spec 
	     << "' -> func '"<< function 
	     << "', file '" << file 
	     << "', line " << line << endl;
      return function_file_and_line;
    }
  catch (runtime_error & exn)
    {
      goto bad;
    }

 bad:
    throw semantic_error("malformed specification '" + spec + "'", 
			 base_probe->tok);
}


static void
query_statement(Dwarf_Addr stmt_addr, dwarf_query * q)
{
  // XXX: implement 
  if (q->has_relative)
    throw semantic_error("incomplete: do not know how to interpret .relative", 
			 q->base_probe->tok);

  dwarf_probe_type ty = (((q->has_function_str || q->has_function_num) && q->has_return) 
			 ? probe_function_return 
			 : probe_address);

  if (q->has_module)
    q->add_module_probe(q->dw.module_name, 
			ty, q->dw.global_address_to_module(stmt_addr));
  else
    q->add_kernel_probe(ty, stmt_addr);
}

static int
query_function(Dwarf_Func * func, void * arg)
{
  
  dwarf_query * q = static_cast<dwarf_query *>(arg);

  // XXX: implement 
  if (q->has_callees)
    throw semantic_error("incomplete: do not know how to interpret .callees", 
			 q->base_probe->tok);

  if (q->has_label)
    throw semantic_error("incomplete: do not know how to interpret .label", 
			 q->base_probe->tok);

  q->dw.focus_on_function(func);

  // XXX: We assume addr is a global address here. Is it?
  Dwarf_Addr addr;
  if (!q->dw.function_entrypc(&addr))
    {
      if (q->sess.verbose)
	clog << "WARNING: cannot find entry PC for function " 
	     << q->dw.function_name << endl;
      return DWARF_CB_OK;
    }

  if ((q->has_statement_str || q->has_function_str) 
      && q->dw.function_name_matches(q->function))
    {
      // If this function's name matches a function or statement
      // pattern, we use its entry pc, but we do not abort iteration
      // since there might be other functions matching the pattern.
      query_statement(addr, q);
    }
  else if (q->has_kernel 
	   && q->has_function_num
	   && q->dw.function_includes_global_addr(q->function_num_val))
    {
      // If this function's address range matches a kernel-relative
      // function address, we use its entry pc and break out of the
      // iteration, since there can only be one such function.
      query_statement(addr, q);
      return DWARF_CB_ABORT;
    }
  else if (q->has_module
	   && q->has_function_num
	   && q->dw.function_includes_module_addr(q->function_num_val))
    {
      // If this function's address range matches a module-relative
      // function address, we use its entry pc and break out of the
      // iteration, since there can only be one such function.
      query_statement(addr, q);
      return DWARF_CB_ABORT;
    }

  return DWARF_CB_OK;
}

static int
query_cu (Dwarf_Die * cudie, void * arg)
{
  dwarf_query * q = static_cast<dwarf_query *>(arg);
  
  q->dw.focus_on_cu(cudie);

  // If we have enough information in the pattern to skip a CU
  // and the CU does not match that information, return early.
  if ((q->has_statement_str || q->has_function_str)
      && (q->spec_type == function_file_and_line ||
	  q->spec_type == function_and_file)
      && (!q->dw.cu_name_matches(q->file)))
    return DWARF_CB_OK;

  if (q->has_statement_str 
      && (q->spec_type == function_file_and_line) 
      && q->dw.cu_name_matches(q->file))
    {
      // If we have a complete file:line statement
      // functor (not function functor) landing on
      // this CU, we can look up a specific address
      // for the statement, and skip scanning
      // the remaining functions within the CU.
      query_statement(q->dw.global_addr_of_line_in_cu(q->line), q);
    }
  else
    {
      // Otherwise we need to scan all the functions in this CU.
      q->dw.iterate_over_functions(&query_function, q);
    }
  return DWARF_CB_OK;
}

static int
query_module (Dwfl_Module *mod __attribute__ ((unused)),
	      void **userdata __attribute__ ((unused)),
	      const char *name, Dwarf_Addr base,
	      Dwarf *dw, Dwarf_Addr bias,
	      void *arg __attribute__ ((unused)))
{

  dwarf_query * q = static_cast<dwarf_query *>(arg);

  q->dw.focus_on_module(mod);

  // If we have enough information in the pattern to skip a module and
  // the module does not match that information, return early.

  if (q->has_kernel && !q->dw.module_name_matches("kernel"))
    return DWARF_CB_OK;

  if (q->has_module && !q->dw.module_name_matches(q->module_val))
    return DWARF_CB_OK;

  if (q->has_function_num || q->has_statement_num)
    {
      // If we have module("foo").function(0xbeef) or
      // module("foo").statement(0xbeef), the address is relative
      // to the start of the module, so we seek the function
      // number plus the module's bias.
      Dwarf_Addr addr;
      if (q->has_function_num)
	addr = q->function_num_val;
      else
	addr = q->function_num_val;
      
      q->dw.focus_on_cu_containing_module_address(addr);
      q->dw.iterate_over_functions(&query_function, q);
    }  
  else 
    {
      // Otherwise if we have a function("foo") or statement("foo")
      // specifier, we have to scan over all the CUs looking for
      // the function in question
      assert(q->has_function_str || q->has_statement_str);
      q->dw.iterate_over_cus(&query_cu, q);
    }

  // If we just processed the module "kernel", and the user asked for
  // the kernel patterh, there's no need to iterate over any further
  // modules

  if (q->has_kernel && q->dw.module_name_matches("kernel"))
    return DWARF_CB_ABORT;

  return DWARF_CB_OK;
}

dwarf_derived_probe::dwarf_derived_probe (probe * p, 
					  probe_point * l, 
					  string const & module_name,
					  dwarf_probe_type type,
					  Dwarf_Addr addr)
  : derived_probe (p, l),
    module_name(module_name),
    type(type),
    addr(addr)
{
}

void 
dwarf_derived_probe::register_relative_variants(match_node * root,
						dwarf_builder * dw)
{
  // Here we match 2 forms:
  //
  // .
  // .relative(NN)

  root->bind(dw);
  root->bind_num(TOK_RELATIVE)->bind(dw);
}

void 
dwarf_derived_probe::register_statement_variants(match_node * root,
						 dwarf_builder * dw)
{
  // Here we match 3 forms:
  //
  // .
  // .return
  // .label("foo")
  
  register_relative_variants(root, dw);
  register_relative_variants(root->bind(TOK_RETURN), dw);
  register_relative_variants(root->bind_str(TOK_LABEL), dw);
}

void 
dwarf_derived_probe::register_callee_variants(match_node * root,						
					      dwarf_builder * dw)
{
  // Here we match 3 forms:
  //
  // .
  // .callees
  // .callees(N)
  //
  // The last form permits N-level callee resolving without any
  // recursive .callees.callees.callees... pattern-matching on our part.

  register_statement_variants(root, dw);
  register_statement_variants(root->bind(TOK_CALLEES), dw);
  register_statement_variants(root->bind_num(TOK_CALLEES), dw);
}

void 
dwarf_derived_probe::register_function_and_statement_variants(match_node * root,
							      dwarf_builder * dw)
{
  // Here we match 4 forms:
  //
  // .function("foo")
  // .function(0xdeadbeef)
  // .statement("foo")
  // .statement(0xdeadbeef)

  register_callee_variants(root->bind_str(TOK_FUNCTION), dw);  
  register_callee_variants(root->bind_num(TOK_FUNCTION), dw);
  register_statement_variants(root->bind_str(TOK_STATEMENT), dw);
  register_statement_variants(root->bind_num(TOK_STATEMENT), dw);
}

void
dwarf_derived_probe::register_patterns(match_node * root)
{
  dwarf_builder *dw = new dwarf_builder();

  // Here we match 3 forms:
  //
  // .kernel
  // .module("foo")
  // .process("foo")

  register_function_and_statement_variants(root->bind(TOK_KERNEL), dw);
  register_function_and_statement_variants(root->bind_str(TOK_MODULE), dw);
  register_function_and_statement_variants(root->bind_str(TOK_PROCESS), dw);
}

static string 
probe_entry_function_name(unsigned probenum)
{
  return "dwarf_kprobe_" + lex_cast<string>(probenum) + "_enter";
}

static string 
probe_entry_struct_kprobe_name(unsigned probenum)
{
  return "dwarf_kprobe_" + lex_cast<string>(probenum);
}

void 
dwarf_derived_probe::emit_registrations (translator_output* o, unsigned probenum)
{
  if (module_name.empty())
    {
      o->newline() << probe_entry_struct_kprobe_name(probenum) 
		   << ".addr = 0x" << hex << addr << ";";
      o->newline() << "register_probe (&" 
		   << probe_entry_struct_kprobe_name(probenum)
		   << ");";
    }
  else
    {
      o->newline() << "{";
      o->indent(1);
      o->newline() << "struct module *mod = get_module(\"" << module_name << "\");";
      o->newline() << "if (!mod)";
      o->indent(1);
      o->newline() << "rc++";
      o->indent(-1);
      o->newline() << "else";
      o->newline() << "{";
      o->indent(1);
      o->newline() << probe_entry_struct_kprobe_name(probenum) 
		   << ".addr = mod->module_core + 0x" << hex << addr << ";";
      o->newline() << "register_probe (&" 
		   << probe_entry_struct_kprobe_name(probenum)
		   << ");";
      o->indent(-1);
      o->newline() << "}";
      o->indent(-1);
      o->newline() << "}";
    }
}

void 
dwarf_derived_probe::emit_deregistrations (translator_output* o, unsigned probenum)
{
  o->newline();
  o->newline() << "deregister_probe (&" 
	       << probe_entry_struct_kprobe_name(probenum)
	       << ");";  
}

void 
dwarf_derived_probe::emit_probe_entries (translator_output* o, unsigned probenum)
{

  // Construct a single entry function, and a struct kprobe pointing into 
  // the entry function. The entry function will call the probe function.
  o->newline();
  o->newline() << "static void ";
  o->newline() << probe_entry_function_name(probenum) << " (void);";
  o->newline() << "void ";
  o->newline() << probe_entry_function_name(probenum) << " ()";
  o->newline() << "{";
  o->newline(1) << "struct context* c = & contexts [smp_processor_id()];";
  o->newline();

  // A precondition for running a probe handler is that we're in RUNNING
  // state (not ERROR), and that no one else is already using this context.
  o->newline() << "if (atomic_read (&session_state) != STAP_SESSION_RUNNING)";
  o->newline(1) << "return;";
  o->newline(-1) << "if (c->busy) {";
  o->newline(1) << "printk (KERN_ERR \"probe reentrancy\");";
  o->newline() << "atomic_set (& session_state, STAP_SESSION_ERROR);";
  o->newline() << "return;";
  o->newline(-1) << "}";
  o->newline();

  o->newline() << "c->busy ++;";
  o->newline() << "mb ();"; // for smp
  o->newline() << "c->errorcount = 0;";
  o->newline() << "c->actioncount = 0;";
  o->newline() << "c->nesting = 0;";
  // NB: locals are initialized by probe function itself
  o->newline() << "probe_" << probenum << " (c);";

  // see translate.cxx: visit_functioncall and elsewhere to see all the
  // possible context indications that a probe exited prematurely
  o->newline() << "if (c->errorcount || c->actioncount > MAXACTION";
  o->newline(1) << "|| c->nesting+2 >= MAXNESTING) {";
  o->newline() << "printk (KERN_ERR \"probe execution failure (e%d,n%d,a%d)\",";
  o->newline(1) << "c->errorcount, c->nesting, c->actioncount);";
  o->newline(-1) << "atomic_set (& session_state, STAP_SESSION_ERROR);";
  o->newline(-1) << "}";

  o->newline() << "c->busy --;";
  o->newline() << "mb ();";

  o->newline(-1) << "}" << endl;

  o->newline();
  o->newline() << "static struct kprobe " 
	       << probe_entry_struct_kprobe_name(probenum);
  o->newline() << "{";
  o->indent(1);
  o->newline() << ".addr        = 0x0, /* filled in during module init */" ;
  o->newline() << ".pre_handler = &" << probe_entry_function_name(probenum) << ",";
  o->indent(-1);
  o->newline() << "}";
  o->newline();
}


void
dwarf_builder::build(systemtap_session & sess,
		     probe * base, 
		     probe_point * location,
		     std::map<std::string, literal *> const & parameters,
		     vector<probe *> & results_to_expand_further,
		     vector<derived_probe *> & finished_results)
{

  dwflpp dw(sess);
  dwarf_query q(sess, base, location, dw, parameters, finished_results);

  dw.setup(q.has_kernel || q.has_module);

  if (q.has_kernel && q.has_statement_num)
    {
      // If we have kernel.statement(0xbeef), the address is global
      // (relative to the kernel) and we can seek directly to the
      // statement in question.
      query_statement(q.statement_num_val, &q);
    }
  else if (q.has_kernel && q.has_function_num)
    {
      // If we have kernel.function(0xbeef), the address is global
      // (relative to the kernel) and we can seek directly to the
      // cudie in question.
      dw.focus_on_cu_containing_global_address(q.function_num_val);
      dw.iterate_over_functions(&query_function, &q);
    }
  else 
    {
      // Otherwise we have module("foo"), kernel.statement("foo"), or
      // kernel.function("foo"); in these cases we need to scan all
      // the modules.
      assert((q.has_kernel && q.has_function_str) || 
	     (q.has_kernel && q.has_statement_str) ||
	     (q.has_module));
      dw.iterate_over_modules(&query_module, &q);
    }
}

#endif /* HAVE_ELFUTILS_LIBDWFL_H */


// ------------------------------------------------------------------------
//  Standard tapset registry.
// ------------------------------------------------------------------------

void 
register_standard_tapsets(systemtap_session & s)
{
  // Rudimentary binders for begin and end targets
  s.pattern_root->bind("begin")->bind(new be_builder(true));
  s.pattern_root->bind("end")->bind(new be_builder(false));

#ifdef HAVE_ELFUTILS_LIBDWFL_H
  dwarf_derived_probe::register_patterns(s.pattern_root);
#endif /* HAVE_ELFUTILS_LIBDWFL_H */
}