]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/dtrace-probe.c
RX Assembler: Ensure that the internal limit on the number of relaxation iterations...
[thirdparty/binutils-gdb.git] / gdb / dtrace-probe.c
CommitLineData
d4777acb
JM
1/* DTrace probe support for GDB.
2
42a4f53d 3 Copyright (C) 2014-2019 Free Software Foundation, Inc.
d4777acb
JM
4
5 Contributed by Oracle, Inc.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22#include "defs.h"
4de283e4 23#include "probe.h"
0747795c 24#include "common/vec.h"
d4777acb
JM
25#include "elf-bfd.h"
26#include "gdbtypes.h"
d55e5aa6 27#include "obstack.h"
4de283e4
TT
28#include "objfiles.h"
29#include "complaints.h"
d55e5aa6 30#include "value.h"
4de283e4
TT
31#include "ax.h"
32#include "ax-gdb.h"
33#include "language.h"
34#include "parser-defs.h"
35#include "inferior.h"
d4777acb
JM
36
37/* The type of the ELF sections where we will find the DOF programs
38 with information about probes. */
39
40#ifndef SHT_SUNW_dof
41# define SHT_SUNW_dof 0x6ffffff4
42#endif
43
d4777acb
JM
44/* The following structure represents a single argument for the
45 probe. */
46
47struct dtrace_probe_arg
48{
9c23b42f
SDJ
49 dtrace_probe_arg (struct type *type_, std::string &&type_str_,
50 expression_up &&expr_)
51 : type (type_), type_str (std::move (type_str_)),
52 expr (std::move (expr_))
53 {}
54
d4777acb
JM
55 /* The type of the probe argument. */
56 struct type *type;
57
58 /* A string describing the type. */
9c23b42f 59 std::string type_str;
d4777acb
JM
60
61 /* The argument converted to an internal GDB expression. */
9c23b42f 62 expression_up expr;
d4777acb
JM
63};
64
d4777acb
JM
65/* The following structure represents an enabler for a probe. */
66
67struct dtrace_probe_enabler
68{
69 /* Program counter where the is-enabled probe is installed. The
70 contents (nops, whatever...) stored at this address are
71 architecture dependent. */
72 CORE_ADDR address;
73};
74
9c23b42f
SDJ
75/* Class that implements the static probe methods for "stap" probes. */
76
77class dtrace_static_probe_ops : public static_probe_ops
78{
79public:
80 /* See probe.h. */
81 bool is_linespec (const char **linespecp) const override;
82
83 /* See probe.h. */
84 void get_probes (std::vector<probe *> *probesp,
85 struct objfile *objfile) const override;
86
87 /* See probe.h. */
88 const char *type_name () const override;
89
90 /* See probe.h. */
91 bool can_enable () const override
92 {
93 return true;
94 }
95
96 /* See probe.h. */
97 std::vector<struct info_probe_column> gen_info_probes_table_header
98 () const override;
99};
100
101/* DTrace static_probe_ops. */
102
3dcfdc58 103const dtrace_static_probe_ops dtrace_static_probe_ops {};
d4777acb
JM
104
105/* The following structure represents a dtrace probe. */
106
9c23b42f 107class dtrace_probe : public probe
d4777acb 108{
9c23b42f
SDJ
109public:
110 /* Constructor for dtrace_probe. */
111 dtrace_probe (std::string &&name_, std::string &&provider_, CORE_ADDR address_,
112 struct gdbarch *arch_,
113 std::vector<struct dtrace_probe_arg> &&args_,
114 std::vector<struct dtrace_probe_enabler> &&enablers_)
115 : probe (std::move (name_), std::move (provider_), address_, arch_),
116 m_args (std::move (args_)),
117 m_enablers (std::move (enablers_)),
118 m_args_expr_built (false)
119 {}
120
121 /* See probe.h. */
122 CORE_ADDR get_relocated_address (struct objfile *objfile) override;
123
124 /* See probe.h. */
125 unsigned get_argument_count (struct frame_info *frame) override;
126
127 /* See probe.h. */
128 bool can_evaluate_arguments () const override;
129
130 /* See probe.h. */
131 struct value *evaluate_argument (unsigned n,
132 struct frame_info *frame) override;
133
134 /* See probe.h. */
135 void compile_to_ax (struct agent_expr *aexpr,
136 struct axs_value *axs_value,
137 unsigned n) override;
138
139 /* See probe.h. */
140 const static_probe_ops *get_static_ops () const override;
141
142 /* See probe.h. */
143 std::vector<const char *> gen_info_probes_table_values () const override;
144
145 /* See probe.h. */
146 void enable () override;
147
148 /* See probe.h. */
149 void disable () override;
150
151 /* Return the Nth argument of the probe. */
152 struct dtrace_probe_arg *get_arg_by_number (unsigned n,
153 struct gdbarch *gdbarch);
154
155 /* Build the GDB internal expressiosn that, once evaluated, will
156 calculate the values of the arguments of the probe. */
157 void build_arg_exprs (struct gdbarch *gdbarch);
158
159 /* Determine whether the probe is "enabled" or "disabled". A
160 disabled probe is a probe in which one or more enablers are
161 disabled. */
162 bool is_enabled () const;
163
164private:
d4777acb 165 /* A probe can have zero or more arguments. */
9c23b42f 166 std::vector<struct dtrace_probe_arg> m_args;
d4777acb
JM
167
168 /* A probe can have zero or more "enablers" associated with it. */
9c23b42f 169 std::vector<struct dtrace_probe_enabler> m_enablers;
d4777acb
JM
170
171 /* Whether the expressions for the arguments have been built. */
9c23b42f 172 bool m_args_expr_built;
d4777acb
JM
173};
174
d4777acb
JM
175/* DOF programs can contain an arbitrary number of sections of 26
176 different types. In order to support DTrace USDT probes we only
177 need to handle a subset of these section types, fortunately. These
178 section types are defined in the following enumeration.
179
180 See linux/dtrace/dof_defines.h for a complete list of section types
181 along with their values. */
182
183enum dtrace_dof_sect_type
184{
185 /* Null section. */
186 DTRACE_DOF_SECT_TYPE_NONE = 0,
187 /* A dof_ecbdesc_t. */
188 DTRACE_DOF_SECT_TYPE_ECBDESC = 3,
189 /* A string table. */
190 DTRACE_DOF_SECT_TYPE_STRTAB = 8,
191 /* A dof_provider_t */
192 DTRACE_DOF_SECT_TYPE_PROVIDER = 15,
193 /* Array of dof_probe_t */
194 DTRACE_DOF_SECT_TYPE_PROBES = 16,
195 /* An array of probe arg mappings. */
196 DTRACE_DOF_SECT_TYPE_PRARGS = 17,
197 /* An array of probe arg offsets. */
198 DTRACE_DOF_SECT_TYPE_PROFFS = 18,
199 /* An array of probe is-enabled offsets. */
200 DTRACE_DOF_SECT_TYPE_PRENOFFS = 26
201};
202
203/* The following collection of data structures map the structure of
204 DOF entities. Again, we only cover the subset of DOF used to
205 implement USDT probes.
206
207 See linux/dtrace/dof.h header for a complete list of data
208 structures. */
209
210/* Offsets to index the dofh_ident[] array defined below. */
211
212enum dtrace_dof_ident
213{
214 /* First byte of the magic number. */
215 DTRACE_DOF_ID_MAG0 = 0,
216 /* Second byte of the magic number. */
217 DTRACE_DOF_ID_MAG1 = 1,
218 /* Third byte of the magic number. */
219 DTRACE_DOF_ID_MAG2 = 2,
220 /* Fourth byte of the magic number. */
221 DTRACE_DOF_ID_MAG3 = 3,
222 /* An enum_dof_encoding value. */
223 DTRACE_DOF_ID_ENCODING = 5
224};
225
226/* Possible values for dofh_ident[DOF_ID_ENCODING]. */
227
228enum dtrace_dof_encoding
229{
230 /* The DOF program is little-endian. */
231 DTRACE_DOF_ENCODE_LSB = 1,
232 /* The DOF program is big-endian. */
233 DTRACE_DOF_ENCODE_MSB = 2
234};
235
236/* A DOF header, which describes the contents of a DOF program: number
237 of sections, size, etc. */
238
239struct dtrace_dof_hdr
240{
241 /* Identification bytes (see above). */
242 uint8_t dofh_ident[16];
243 /* File attribute flags (if any). */
244 uint32_t dofh_flags;
245 /* Size of file header in bytes. */
246 uint32_t dofh_hdrsize;
247 /* Size of section header in bytes. */
248 uint32_t dofh_secsize;
249 /* Number of section headers. */
250 uint32_t dofh_secnum;
251 /* File offset of section headers. */
252 uint64_t dofh_secoff;
253 /* File size of loadable portion. */
254 uint64_t dofh_loadsz;
255 /* File size of entire DOF file. */
256 uint64_t dofh_filesz;
257 /* Reserved for future use. */
258 uint64_t dofh_pad;
259};
260
261/* A DOF section, whose contents depend on its type. The several
262 supported section types are described in the enum
263 dtrace_dof_sect_type above. */
264
265struct dtrace_dof_sect
266{
267 /* Section type (see the define above). */
268 uint32_t dofs_type;
269 /* Section data memory alignment. */
270 uint32_t dofs_align;
271 /* Section flags (if any). */
272 uint32_t dofs_flags;
273 /* Size of section entry (if table). */
274 uint32_t dofs_entsize;
275 /* DOF + offset points to the section data. */
276 uint64_t dofs_offset;
277 /* Size of section data in bytes. */
278 uint64_t dofs_size;
279};
280
281/* A DOF provider, which is the provider of a probe. */
282
283struct dtrace_dof_provider
284{
285 /* Link to a DTRACE_DOF_SECT_TYPE_STRTAB section. */
286 uint32_t dofpv_strtab;
287 /* Link to a DTRACE_DOF_SECT_TYPE_PROBES section. */
288 uint32_t dofpv_probes;
289 /* Link to a DTRACE_DOF_SECT_TYPE_PRARGS section. */
290 uint32_t dofpv_prargs;
291 /* Link to a DTRACE_DOF_SECT_TYPE_PROFFS section. */
292 uint32_t dofpv_proffs;
293 /* Provider name string. */
294 uint32_t dofpv_name;
295 /* Provider attributes. */
296 uint32_t dofpv_provattr;
297 /* Module attributes. */
298 uint32_t dofpv_modattr;
299 /* Function attributes. */
300 uint32_t dofpv_funcattr;
301 /* Name attributes. */
302 uint32_t dofpv_nameattr;
303 /* Args attributes. */
304 uint32_t dofpv_argsattr;
305 /* Link to a DTRACE_DOF_SECT_PRENOFFS section. */
306 uint32_t dofpv_prenoffs;
307};
308
309/* A set of DOF probes and is-enabled probes sharing a base address
310 and several attributes. The particular locations and attributes of
311 each probe are maintained in arrays in several other DOF sections.
312 See the comment in dtrace_process_dof_probe for details on how
313 these attributes are stored. */
314
315struct dtrace_dof_probe
316{
317 /* Probe base address or offset. */
318 uint64_t dofpr_addr;
319 /* Probe function string. */
320 uint32_t dofpr_func;
321 /* Probe name string. */
322 uint32_t dofpr_name;
323 /* Native argument type strings. */
324 uint32_t dofpr_nargv;
325 /* Translated argument type strings. */
326 uint32_t dofpr_xargv;
327 /* Index of first argument mapping. */
328 uint32_t dofpr_argidx;
329 /* Index of first offset entry. */
330 uint32_t dofpr_offidx;
331 /* Native argument count. */
332 uint8_t dofpr_nargc;
333 /* Translated argument count. */
334 uint8_t dofpr_xargc;
335 /* Number of offset entries for probe. */
336 uint16_t dofpr_noffs;
337 /* Index of first is-enabled offset. */
338 uint32_t dofpr_enoffidx;
339 /* Number of is-enabled offsets. */
340 uint16_t dofpr_nenoffs;
341 /* Reserved for future use. */
342 uint16_t dofpr_pad1;
343 /* Reserved for future use. */
344 uint32_t dofpr_pad2;
345};
346
347/* DOF supports two different encodings: MSB (big-endian) and LSB
348 (little-endian). The encoding is itself encoded in the DOF header.
349 The following function returns an unsigned value in the host
350 endianness. */
351
352#define DOF_UINT(dof, field) \
353 extract_unsigned_integer ((gdb_byte *) &(field), \
354 sizeof ((field)), \
355 (((dof)->dofh_ident[DTRACE_DOF_ID_ENCODING] \
356 == DTRACE_DOF_ENCODE_MSB) \
357 ? BFD_ENDIAN_BIG : BFD_ENDIAN_LITTLE))
358
359/* The following macro applies a given byte offset to a DOF (a pointer
360 to a dtrace_dof_hdr structure) and returns the resulting
361 address. */
362
363#define DTRACE_DOF_PTR(dof, offset) (&((char *) (dof))[(offset)])
364
365/* The following macro returns a pointer to the beginning of a given
366 section in a DOF object. The section is referred to by its index
367 in the sections array. */
368
369#define DTRACE_DOF_SECT(dof, idx) \
370 ((struct dtrace_dof_sect *) \
371 DTRACE_DOF_PTR ((dof), \
372 DOF_UINT ((dof), (dof)->dofh_secoff) \
373 + ((idx) * DOF_UINT ((dof), (dof)->dofh_secsize))))
374
375/* Helper function to examine the probe described by the given PROBE
376 and PROVIDER data structures and add it to the PROBESP vector.
377 STRTAB, OFFTAB, EOFFTAB and ARGTAB are pointers to tables in the
378 DOF program containing the attributes for the probe. */
379
380static void
381dtrace_process_dof_probe (struct objfile *objfile,
aaa63a31
SM
382 struct gdbarch *gdbarch,
383 std::vector<probe *> *probesp,
d4777acb
JM
384 struct dtrace_dof_hdr *dof,
385 struct dtrace_dof_probe *probe,
386 struct dtrace_dof_provider *provider,
387 char *strtab, char *offtab, char *eofftab,
388 char *argtab, uint64_t strtab_size)
389{
390 int i, j, num_probes, num_enablers;
d4777acb
JM
391 char *p;
392
393 /* Each probe section can define zero or more probes of two
394 different types:
395
396 - probe->dofpr_noffs regular probes whose program counters are
397 stored in 32bit words starting at probe->dofpr_addr +
398 offtab[probe->dofpr_offidx].
399
400 - probe->dofpr_nenoffs is-enabled probes whose program counters
401 are stored in 32bit words starting at probe->dofpr_addr +
402 eofftab[probe->dofpr_enoffidx].
403
404 However is-enabled probes are not probes per-se, but an
405 optimization hack that is implemented in the kernel in a very
406 similar way than normal probes. This is how we support
407 is-enabled probes on GDB:
408
409 - Our probes are always DTrace regular probes.
410
411 - Our probes can be associated with zero or more "enablers". The
412 list of enablers is built from the is-enabled probes defined in
413 the Probe section.
414
415 - Probes having a non-empty list of enablers can be enabled or
416 disabled using the `enable probe' and `disable probe' commands
417 respectively. The `Enabled' column in the output of `info
418 probes' will read `yes' if the enablers are activated, `no'
419 otherwise.
420
421 - Probes having an empty list of enablers are always enabled.
422 The `Enabled' column in the output of `info probes' will
423 read `always'.
424
425 It follows that if there are DTrace is-enabled probes defined for
426 some provider/name but no DTrace regular probes defined then the
427 GDB user wont be able to enable/disable these conditionals. */
428
429 num_probes = DOF_UINT (dof, probe->dofpr_noffs);
430 if (num_probes == 0)
431 return;
432
433 /* Build the list of enablers for the probes defined in this Probe
434 DOF section. */
9c23b42f 435 std::vector<struct dtrace_probe_enabler> enablers;
d4777acb
JM
436 num_enablers = DOF_UINT (dof, probe->dofpr_nenoffs);
437 for (i = 0; i < num_enablers; i++)
438 {
439 struct dtrace_probe_enabler enabler;
440 uint32_t enabler_offset
441 = ((uint32_t *) eofftab)[DOF_UINT (dof, probe->dofpr_enoffidx) + i];
442
443 enabler.address = DOF_UINT (dof, probe->dofpr_addr)
444 + DOF_UINT (dof, enabler_offset);
9c23b42f 445 enablers.push_back (enabler);
d4777acb
JM
446 }
447
448 for (i = 0; i < num_probes; i++)
449 {
450 uint32_t probe_offset
451 = ((uint32_t *) offtab)[DOF_UINT (dof, probe->dofpr_offidx) + i];
d4777acb
JM
452
453 /* Set the provider and the name of the probe. */
9c23b42f
SDJ
454 const char *probe_provider
455 = strtab + DOF_UINT (dof, provider->dofpv_name);
456 const char *name = strtab + DOF_UINT (dof, probe->dofpr_name);
d4777acb
JM
457
458 /* The probe address. */
9c23b42f 459 CORE_ADDR address
d4777acb
JM
460 = DOF_UINT (dof, probe->dofpr_addr) + DOF_UINT (dof, probe_offset);
461
462 /* Number of arguments in the probe. */
9c23b42f 463 int probe_argc = DOF_UINT (dof, probe->dofpr_nargc);
d4777acb
JM
464
465 /* Store argument type descriptions. A description of the type
466 of the argument is in the (J+1)th null-terminated string
467 starting at 'strtab' + 'probe->dofpr_nargv'. */
9c23b42f 468 std::vector<struct dtrace_probe_arg> args;
d4777acb 469 p = strtab + DOF_UINT (dof, probe->dofpr_nargv);
9c23b42f 470 for (j = 0; j < probe_argc; j++)
d4777acb 471 {
4d01a485 472 expression_up expr;
d4777acb 473
ffdf88ec
SE
474 /* Set arg.expr to ensure all fields in expr are initialized and
475 the compiler will not warn when arg is used. */
9c23b42f 476 std::string type_str (p);
d4777acb
JM
477
478 /* Use strtab_size as a sentinel. */
07809eaf
SM
479 while (*p++ != '\0' && p - strtab < strtab_size)
480 ;
d4777acb
JM
481
482 /* Try to parse a type expression from the type string. If
483 this does not work then we set the type to `long
484 int'. */
9c23b42f 485 struct type *type = builtin_type (gdbarch)->builtin_long;
429e1e81 486
a70b8144 487 try
429e1e81 488 {
92469284
SDJ
489 expr = parse_expression_with_language (type_str.c_str (),
490 language_c);
429e1e81 491 }
230d2906 492 catch (const gdb_exception_error &ex)
429e1e81 493 {
429e1e81 494 }
429e1e81 495
92469284
SDJ
496 if (expr != NULL && expr.get ()->elts[0].opcode == OP_TYPE)
497 type = expr.get ()->elts[1].type;
d4777acb 498
9c23b42f 499 args.emplace_back (type, std::move (type_str), std::move (expr));
d4777acb
JM
500 }
501
9c23b42f
SDJ
502 std::vector<struct dtrace_probe_enabler> enablers_copy = enablers;
503 dtrace_probe *ret = new dtrace_probe (std::string (name),
504 std::string (probe_provider),
505 address, gdbarch,
506 std::move (args),
507 std::move (enablers_copy));
d4777acb
JM
508
509 /* Successfully created probe. */
9c23b42f 510 probesp->push_back (ret);
d4777acb 511 }
d4777acb
JM
512}
513
514/* Helper function to collect the probes described in the DOF program
515 whose header is pointed by DOF and add them to the PROBESP vector.
516 SECT is the ELF section containing the DOF program and OBJFILE is
517 its containing object file. */
518
519static void
520dtrace_process_dof (asection *sect, struct objfile *objfile,
aaa63a31 521 std::vector<probe *> *probesp, struct dtrace_dof_hdr *dof)
d4777acb 522{
d4777acb
JM
523 struct gdbarch *gdbarch = get_objfile_arch (objfile);
524 struct dtrace_dof_sect *section;
525 int i;
526
527 /* The first step is to check for the DOF magic number. If no valid
528 DOF data is found in the section then a complaint is issued to
529 the user and the section skipped. */
530 if (dof->dofh_ident[DTRACE_DOF_ID_MAG0] != 0x7F
531 || dof->dofh_ident[DTRACE_DOF_ID_MAG1] != 'D'
532 || dof->dofh_ident[DTRACE_DOF_ID_MAG2] != 'O'
533 || dof->dofh_ident[DTRACE_DOF_ID_MAG3] != 'F')
534 goto invalid_dof_data;
535
536 /* Make sure the encoding mark is either DTRACE_DOF_ENCODE_LSB or
537 DTRACE_DOF_ENCODE_MSB. */
538 if (dof->dofh_ident[DTRACE_DOF_ID_ENCODING] != DTRACE_DOF_ENCODE_LSB
539 && dof->dofh_ident[DTRACE_DOF_ID_ENCODING] != DTRACE_DOF_ENCODE_MSB)
540 goto invalid_dof_data;
541
542 /* Make sure this DOF is not an enabling DOF, i.e. there are no ECB
543 Description sections. */
544 section = (struct dtrace_dof_sect *) DTRACE_DOF_PTR (dof,
545 DOF_UINT (dof, dof->dofh_secoff));
546 for (i = 0; i < DOF_UINT (dof, dof->dofh_secnum); i++, section++)
547 if (section->dofs_type == DTRACE_DOF_SECT_TYPE_ECBDESC)
548 return;
549
550 /* Iterate over any section of type Provider and extract the probe
551 information from them. If there are no "provider" sections on
552 the DOF then we just return. */
553 section = (struct dtrace_dof_sect *) DTRACE_DOF_PTR (dof,
554 DOF_UINT (dof, dof->dofh_secoff));
555 for (i = 0; i < DOF_UINT (dof, dof->dofh_secnum); i++, section++)
556 if (DOF_UINT (dof, section->dofs_type) == DTRACE_DOF_SECT_TYPE_PROVIDER)
557 {
558 struct dtrace_dof_provider *provider = (struct dtrace_dof_provider *)
559 DTRACE_DOF_PTR (dof, DOF_UINT (dof, section->dofs_offset));
560 struct dtrace_dof_sect *strtab_s
561 = DTRACE_DOF_SECT (dof, DOF_UINT (dof, provider->dofpv_strtab));
562 struct dtrace_dof_sect *probes_s
563 = DTRACE_DOF_SECT (dof, DOF_UINT (dof, provider->dofpv_probes));
564 struct dtrace_dof_sect *args_s
565 = DTRACE_DOF_SECT (dof, DOF_UINT (dof, provider->dofpv_prargs));
566 struct dtrace_dof_sect *offsets_s
567 = DTRACE_DOF_SECT (dof, DOF_UINT (dof, provider->dofpv_proffs));
568 struct dtrace_dof_sect *eoffsets_s
569 = DTRACE_DOF_SECT (dof, DOF_UINT (dof, provider->dofpv_prenoffs));
570 char *strtab = DTRACE_DOF_PTR (dof, DOF_UINT (dof, strtab_s->dofs_offset));
571 char *offtab = DTRACE_DOF_PTR (dof, DOF_UINT (dof, offsets_s->dofs_offset));
572 char *eofftab = DTRACE_DOF_PTR (dof, DOF_UINT (dof, eoffsets_s->dofs_offset));
573 char *argtab = DTRACE_DOF_PTR (dof, DOF_UINT (dof, args_s->dofs_offset));
574 unsigned int entsize = DOF_UINT (dof, probes_s->dofs_entsize);
575 int num_probes;
576
47e9c225
JB
577 if (DOF_UINT (dof, section->dofs_size)
578 < sizeof (struct dtrace_dof_provider))
579 {
580 /* The section is smaller than expected, so do not use it.
581 This has been observed on x86-solaris 10. */
582 goto invalid_dof_data;
583 }
584
d4777acb
JM
585 /* Very, unlikely, but could crash gdb if not handled
586 properly. */
587 if (entsize == 0)
588 goto invalid_dof_data;
589
590 num_probes = DOF_UINT (dof, probes_s->dofs_size) / entsize;
591
592 for (i = 0; i < num_probes; i++)
593 {
594 struct dtrace_dof_probe *probe = (struct dtrace_dof_probe *)
595 DTRACE_DOF_PTR (dof, DOF_UINT (dof, probes_s->dofs_offset)
596 + (i * DOF_UINT (dof, probes_s->dofs_entsize)));
597
598 dtrace_process_dof_probe (objfile,
599 gdbarch, probesp,
600 dof, probe,
601 provider, strtab, offtab, eofftab, argtab,
602 DOF_UINT (dof, strtab_s->dofs_size));
603 }
604 }
605
606 return;
607
608 invalid_dof_data:
b98664d3 609 complaint (_("skipping section '%s' which does not contain valid DOF data."),
d4777acb
JM
610 sect->name);
611}
612
9c23b42f 613/* Implementation of 'build_arg_exprs' method. */
d4777acb 614
9c23b42f
SDJ
615void
616dtrace_probe::build_arg_exprs (struct gdbarch *gdbarch)
d4777acb 617{
9c23b42f
SDJ
618 size_t argc = 0;
619 m_args_expr_built = true;
d4777acb
JM
620
621 /* Iterate over the arguments in the probe and build the
622 corresponding GDB internal expression that will generate the
623 value of the argument when executed at the PC of the probe. */
30649c14 624 for (dtrace_probe_arg &arg : m_args)
d4777acb 625 {
37eedb39
TT
626 /* Initialize the expression builder. The language does not
627 matter, since we are using our own parser. */
628 expr_builder builder (current_language, gdbarch);
d4777acb
JM
629
630 /* The argument value, which is ABI dependent and casted to
631 `long int'. */
37eedb39 632 gdbarch_dtrace_parse_probe_argument (gdbarch, &builder, argc);
d4777acb 633
d4777acb
JM
634 /* Casting to the expected type, but only if the type was
635 recognized at probe load time. Otherwise the argument will
636 be evaluated as the long integer passed to the probe. */
9c23b42f 637 if (arg.type != NULL)
d4777acb 638 {
37eedb39
TT
639 write_exp_elt_opcode (&builder, UNOP_CAST);
640 write_exp_elt_type (&builder, arg.type);
641 write_exp_elt_opcode (&builder, UNOP_CAST);
d4777acb
JM
642 }
643
37eedb39 644 arg.expr = builder.release ();
9c23b42f
SDJ
645 prefixify_expression (arg.expr.get ());
646 ++argc;
d4777acb
JM
647 }
648}
649
9c23b42f 650/* Implementation of 'get_arg_by_number' method. */
d4777acb 651
9c23b42f
SDJ
652struct dtrace_probe_arg *
653dtrace_probe::get_arg_by_number (unsigned n, struct gdbarch *gdbarch)
d4777acb 654{
9c23b42f
SDJ
655 if (!m_args_expr_built)
656 this->build_arg_exprs (gdbarch);
657
658 if (n > m_args.size ())
659 internal_error (__FILE__, __LINE__,
660 _("Probe '%s' has %d arguments, but GDB is requesting\n"
661 "argument %u. This should not happen. Please\n"
662 "report this bug."),
663 this->get_name ().c_str (),
664 (int) m_args.size (), n);
665
666 return &m_args[n];
d4777acb
JM
667}
668
9c23b42f 669/* Implementation of the probe is_enabled method. */
d4777acb 670
9c23b42f
SDJ
671bool
672dtrace_probe::is_enabled () const
d4777acb 673{
9c23b42f 674 struct gdbarch *gdbarch = this->get_gdbarch ();
d4777acb 675
30649c14 676 for (const dtrace_probe_enabler &enabler : m_enablers)
9c23b42f
SDJ
677 if (!gdbarch_dtrace_probe_is_enabled (gdbarch, enabler.address))
678 return false;
d4777acb 679
9c23b42f 680 return true;
d4777acb
JM
681}
682
683/* Implementation of the get_probe_address method. */
684
9c23b42f
SDJ
685CORE_ADDR
686dtrace_probe::get_relocated_address (struct objfile *objfile)
d4777acb 687{
9c23b42f
SDJ
688 return this->get_address () + ANOFFSET (objfile->section_offsets,
689 SECT_OFF_DATA (objfile));
d4777acb
JM
690}
691
9c23b42f 692/* Implementation of the get_argument_count method. */
d4777acb 693
9c23b42f
SDJ
694unsigned
695dtrace_probe::get_argument_count (struct frame_info *frame)
d4777acb 696{
9c23b42f 697 return m_args.size ();
d4777acb
JM
698}
699
9c23b42f 700/* Implementation of the can_evaluate_arguments method. */
d4777acb 701
9c23b42f
SDJ
702bool
703dtrace_probe::can_evaluate_arguments () const
d4777acb 704{
9c23b42f 705 struct gdbarch *gdbarch = this->get_gdbarch ();
d4777acb 706
d4777acb
JM
707 return gdbarch_dtrace_parse_probe_argument_p (gdbarch);
708}
709
9c23b42f 710/* Implementation of the evaluate_argument method. */
d4777acb 711
9c23b42f
SDJ
712struct value *
713dtrace_probe::evaluate_argument (unsigned n,
714 struct frame_info *frame)
d4777acb 715{
9c23b42f 716 struct gdbarch *gdbarch = this->get_gdbarch ();
d4777acb
JM
717 struct dtrace_probe_arg *arg;
718 int pos = 0;
719
9c23b42f
SDJ
720 arg = this->get_arg_by_number (n, gdbarch);
721 return evaluate_subexp_standard (arg->type, arg->expr.get (), &pos,
722 EVAL_NORMAL);
d4777acb
JM
723}
724
725/* Implementation of the compile_to_ax method. */
726
9c23b42f
SDJ
727void
728dtrace_probe::compile_to_ax (struct agent_expr *expr, struct axs_value *value,
729 unsigned n)
d4777acb 730{
d4777acb
JM
731 struct dtrace_probe_arg *arg;
732 union exp_element *pc;
733
9c23b42f 734 arg = this->get_arg_by_number (n, expr->gdbarch);
d4777acb
JM
735
736 pc = arg->expr->elts;
9c23b42f 737 gen_expr (arg->expr.get (), &pc, expr, value);
d4777acb
JM
738
739 require_rvalue (expr, value);
740 value->type = arg->type;
741}
742
9c23b42f 743/* Implementation of the 'get_static_ops' method. */
d4777acb 744
9c23b42f
SDJ
745const static_probe_ops *
746dtrace_probe::get_static_ops () const
d4777acb 747{
9c23b42f 748 return &dtrace_static_probe_ops;
d4777acb
JM
749}
750
751/* Implementation of the gen_info_probes_table_values method. */
752
9c23b42f
SDJ
753std::vector<const char *>
754dtrace_probe::gen_info_probes_table_values () const
d4777acb 755{
d4777acb
JM
756 const char *val = NULL;
757
9c23b42f 758 if (m_enablers.empty ())
d4777acb 759 val = "always";
9c23b42f 760 else if (!gdbarch_dtrace_probe_is_enabled_p (this->get_gdbarch ()))
d4777acb 761 val = "unknown";
9c23b42f 762 else if (this->is_enabled ())
d4777acb
JM
763 val = "yes";
764 else
765 val = "no";
766
9c23b42f 767 return std::vector<const char *> { val };
d4777acb
JM
768}
769
9c23b42f 770/* Implementation of the enable method. */
d4777acb 771
9c23b42f
SDJ
772void
773dtrace_probe::enable ()
d4777acb 774{
9c23b42f 775 struct gdbarch *gdbarch = this->get_gdbarch ();
d4777acb
JM
776
777 /* Enabling a dtrace probe implies patching the text section of the
778 running process, so make sure the inferior is indeed running. */
d7e15655 779 if (inferior_ptid == null_ptid)
d4777acb
JM
780 error (_("No inferior running"));
781
782 /* Fast path. */
9c23b42f 783 if (this->is_enabled ())
d4777acb
JM
784 return;
785
786 /* Iterate over all defined enabler in the given probe and enable
787 them all using the corresponding gdbarch hook. */
30649c14 788 for (const dtrace_probe_enabler &enabler : m_enablers)
d4777acb 789 if (gdbarch_dtrace_enable_probe_p (gdbarch))
9c23b42f 790 gdbarch_dtrace_enable_probe (gdbarch, enabler.address);
d4777acb
JM
791}
792
793
794/* Implementation of the disable_probe method. */
795
9c23b42f
SDJ
796void
797dtrace_probe::disable ()
d4777acb 798{
9c23b42f 799 struct gdbarch *gdbarch = this->get_gdbarch ();
d4777acb
JM
800
801 /* Disabling a dtrace probe implies patching the text section of the
802 running process, so make sure the inferior is indeed running. */
d7e15655 803 if (inferior_ptid == null_ptid)
d4777acb
JM
804 error (_("No inferior running"));
805
806 /* Fast path. */
9c23b42f 807 if (!this->is_enabled ())
d4777acb
JM
808 return;
809
810 /* Are we trying to disable a probe that does not have any enabler
811 associated? */
9c23b42f
SDJ
812 if (m_enablers.empty ())
813 error (_("Probe %s:%s cannot be disabled: no enablers."),
814 this->get_provider ().c_str (), this->get_name ().c_str ());
d4777acb
JM
815
816 /* Iterate over all defined enabler in the given probe and disable
817 them all using the corresponding gdbarch hook. */
30649c14 818 for (dtrace_probe_enabler &enabler : m_enablers)
d4777acb 819 if (gdbarch_dtrace_disable_probe_p (gdbarch))
9c23b42f 820 gdbarch_dtrace_disable_probe (gdbarch, enabler.address);
d4777acb
JM
821}
822
9c23b42f 823/* Implementation of the is_linespec method. */
d4777acb 824
9c23b42f
SDJ
825bool
826dtrace_static_probe_ops::is_linespec (const char **linespecp) const
d4777acb 827{
9c23b42f
SDJ
828 static const char *const keywords[] = { "-pdtrace", "-probe-dtrace", NULL };
829
830 return probe_is_linespec_by_keyword (linespecp, keywords);
831}
832
833/* Implementation of the get_probes method. */
834
835void
836dtrace_static_probe_ops::get_probes (std::vector<probe *> *probesp,
837 struct objfile *objfile) const
838{
839 bfd *abfd = objfile->obfd;
840 asection *sect = NULL;
841
842 /* Do nothing in case this is a .debug file, instead of the objfile
843 itself. */
844 if (objfile->separate_debug_objfile_backlink != NULL)
845 return;
846
847 /* Iterate over the sections in OBJFILE looking for DTrace
848 information. */
849 for (sect = abfd->sections; sect != NULL; sect = sect->next)
850 {
851 if (elf_section_data (sect)->this_hdr.sh_type == SHT_SUNW_dof)
852 {
853 bfd_byte *dof;
854
855 /* Read the contents of the DOF section and then process it to
856 extract the information of any probe defined into it. */
857 if (!bfd_malloc_and_get_section (abfd, sect, &dof))
b98664d3 858 complaint (_("could not obtain the contents of"
9c23b42f
SDJ
859 "section '%s' in objfile `%s'."),
860 sect->name, abfd->filename);
861
862 dtrace_process_dof (sect, objfile, probesp,
863 (struct dtrace_dof_hdr *) dof);
864 xfree (dof);
865 }
866 }
867}
868
869/* Implementation of the type_name method. */
870
871const char *
872dtrace_static_probe_ops::type_name () const
873{
874 return "dtrace";
875}
876
877/* Implementation of the gen_info_probes_table_header method. */
878
879std::vector<struct info_probe_column>
880dtrace_static_probe_ops::gen_info_probes_table_header () const
881{
882 struct info_probe_column dtrace_probe_column;
883
884 dtrace_probe_column.field_name = "enabled";
885 dtrace_probe_column.print_name = _("Enabled");
886
887 return std::vector<struct info_probe_column> { dtrace_probe_column };
888}
d4777acb
JM
889
890/* Implementation of the `info probes dtrace' command. */
891
892static void
8d97dc1c 893info_probes_dtrace_command (const char *arg, int from_tty)
d4777acb 894{
9c23b42f 895 info_probes_for_spops (arg, from_tty, &dtrace_static_probe_ops);
d4777acb
JM
896}
897
d4777acb
JM
898void
899_initialize_dtrace_probe (void)
900{
9c23b42f 901 all_static_probe_ops.push_back (&dtrace_static_probe_ops);
d4777acb
JM
902
903 add_cmd ("dtrace", class_info, info_probes_dtrace_command,
904 _("\
905Show information about DTrace static probes.\n\
906Usage: info probes dtrace [PROVIDER [NAME [OBJECT]]]\n\
907Each argument is a regular expression, used to select probes.\n\
908PROVIDER matches probe provider names.\n\
909NAME matches the probe names.\n\
910OBJECT matches the executable or shared library name."),
911 info_probes_cmdlist_get ());
912}